pax_global_header00006660000000000000000000000064131707517320014520gustar00rootroot0000000000000052 comment=b9a6c322cdadc08fcdb794cec6f4e8d26e8a7d91 golang-gogoprotobuf-0.5/000077500000000000000000000000001317075173200153455ustar00rootroot00000000000000golang-gogoprotobuf-0.5/.gitignore000066400000000000000000000000221317075173200173270ustar00rootroot00000000000000._* *.js *.js.map golang-gogoprotobuf-0.5/.mailmap000066400000000000000000000010471317075173200167700ustar00rootroot00000000000000Walter Schulze Walter Schulze Walter Schulze Walter Schulze awalterschulze Walter Schulze awalterschulze@gmail.com John Tuley Anton Povarov Denis Smirnov dennwc DongYun Kang golang-gogoprotobuf-0.5/.travis.yml000066400000000000000000000007121317075173200174560ustar00rootroot00000000000000env: - PROTOBUF_VERSION=2.6.1 - PROTOBUF_VERSION=3.0.2 - PROTOBUF_VERSION=3.4.0 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 [ "$TRAVIS_GO_VERSION" == 1.9 ] && [[ "$PROTOBUF_VERSION" == 3.4.0 ]]; then ! git status --porcelain | read || (git status; git diff; exit 1); fi language: go go: - 1.8.3 - 1.9 golang-gogoprotobuf-0.5/AUTHORS000066400000000000000000000010621317075173200164140ustar00rootroot00000000000000# This is the official list of GoGo authors for copyright purposes. # This file is distinct from the CONTRIBUTORS file, which # lists people. For example, employees are listed in CONTRIBUTORS, # but not in AUTHORS, because the employer holds the copyright. # Names should be added to this file as one of # Organization's name # Individual's name # Individual's name # Please keep the list sorted. Sendgrid, Inc Vastech SA (PTY) LTD Walter Schulze golang-gogoprotobuf-0.5/CONTRIBUTORS000066400000000000000000000014531317075173200172300ustar00rootroot00000000000000Anton Povarov Brian Goff Clayton Coleman Denis Smirnov DongYun Kang Dwayne Schultz Georg Apitz Gustav Paul Johan Brandhorst John Shahid John Tuley Laurent Patrick Lee Roger Johansson Sam Nguyen Sergio Arbeo Stephen J Day Tamir Duberstein Todd Eisenberger Tormod Erevik Lea Vyacheslav Kim Walter Schulze golang-gogoprotobuf-0.5/GOLANG_CONTRIBUTORS000066400000000000000000000003321317075173200202520ustar00rootroot00000000000000The contributors to the Go protobuf repository: # This source code was written by the Go contributors. # The master list of contributors is in the main Go distribution, # visible at http://tip.golang.org/CONTRIBUTORS.golang-gogoprotobuf-0.5/LICENSE000066400000000000000000000032611317075173200163540ustar00rootroot00000000000000Protocol Buffers for Go with Gadgets Copyright (c) 2013, The GoGo Authors. All rights reserved. http://github.com/gogo/protobuf 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. golang-gogoprotobuf-0.5/Makefile000066400000000000000000000117301317075173200170070ustar00rootroot00000000000000# 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/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) golang-gogoprotobuf-0.5/README000066400000000000000000000242771317075173200162410ustar00rootroot00000000000000GoGoProtobuf 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 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. golang-gogoprotobuf-0.5/Readme.md000066400000000000000000000177701317075173200171000ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets [![Build Status](https://travis-ci.org/gogo/protobuf.svg?branch=master)](https://travis-ci.org/gogo/protobuf) gogoprotobuf is a fork of golang/protobuf with extra code generation features. This code generation is used to achieve: - fast marshalling and unmarshalling - more canonical Go structures - goprotobuf compatibility - less typing by optionally generating extra helper code - peace of mind by optionally generating test and benchmark code - other serialization formats Keeping track of how up to date gogoprotobuf is relative to golang/protobuf is done in this issue ## Users These projects use gogoprotobuf: - etcd - blog - sample proto file - spacemonkey - blog - badoo - sample proto file - mesos-go - sample proto file - heka - the switch from golang/protobuf to gogo/protobuf when it was still on code.google.com - cockroachdb - sample proto file - go-ipfs - sample proto file - rkive-go - sample proto file - dropbox - srclib - sample proto file - adyoulike - cloudfoundry - sample proto file - kubernetes - go2idl built on top of gogoprotobuf - dgraph - release notes - benchmarks - centrifugo - release notes - blog - docker swarmkit - sample proto file - nats.io - go-nats-streaming - tidb - Communication between tidb and tikv - protoactor-go - vanity command that also generates actors from service definitions - containerd - vanity command with custom field names that conforms to the golang convention. - nakama - proteus - carbonzipper stack - SendGrid Please let us know if you are using gogoprotobuf by posting on our GoogleGroup. ### Mentioned - Cloudflare - go serialization talk - Albert Strasheim - GopherCon 2014 Writing High Performance Databases in Go by Ben Johnson - alecthomas' go serialization benchmarks ## 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)). Go 1.8.3 and 1.9 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.4.0 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 using gogoprotobuf [extensions](https://github.com/gogo/protobuf/blob/master/extensions.md). ### 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 golang-gogoprotobuf-0.5/_conformance/000077500000000000000000000000001317075173200177765ustar00rootroot00000000000000golang-gogoprotobuf-0.5/_conformance/Makefile000066400000000000000000000042421317075173200214400ustar00rootroot00000000000000# Go support for Protocol Buffers - Google's data interchange format # # Copyright 2016 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: protoc-min-version --version="3.0.0" --proto_path=$(GOPATH)/src:$(GOPATH)/src/github.com/gogo/protobuf/protobuf:. --gogo_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,\ Mgoogle/protobuf/field_mask.proto=github.com/gogo/protobuf/types\ :. conformance_proto/conformance.proto golang-gogoprotobuf-0.5/_conformance/conformance.go000066400000000000000000000116031317075173200226200ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. // conformance implements the conformance test subprocess protocol as // documented in conformance.proto. package main import ( "encoding/binary" "fmt" "io" "os" pb "github.com/gogo/protobuf/_conformance/conformance_proto" "github.com/gogo/protobuf/jsonpb" "github.com/gogo/protobuf/proto" ) func main() { var sizeBuf [4]byte inbuf := make([]byte, 0, 4096) outbuf := proto.NewBuffer(nil) for { if _, err := io.ReadFull(os.Stdin, sizeBuf[:]); err == io.EOF { break } else if err != nil { fmt.Fprintln(os.Stderr, "go conformance: read request:", err) os.Exit(1) } size := binary.LittleEndian.Uint32(sizeBuf[:]) if int(size) > cap(inbuf) { inbuf = make([]byte, size) } inbuf = inbuf[:size] if _, err := io.ReadFull(os.Stdin, inbuf); err != nil { fmt.Fprintln(os.Stderr, "go conformance: read request:", err) os.Exit(1) } req := new(pb.ConformanceRequest) if err := proto.Unmarshal(inbuf, req); err != nil { fmt.Fprintln(os.Stderr, "go conformance: parse request:", err) os.Exit(1) } res := handle(req) if err := outbuf.Marshal(res); err != nil { fmt.Fprintln(os.Stderr, "go conformance: marshal response:", err) os.Exit(1) } binary.LittleEndian.PutUint32(sizeBuf[:], uint32(len(outbuf.Bytes()))) if _, err := os.Stdout.Write(sizeBuf[:]); err != nil { fmt.Fprintln(os.Stderr, "go conformance: write response:", err) os.Exit(1) } if _, err := os.Stdout.Write(outbuf.Bytes()); err != nil { fmt.Fprintln(os.Stderr, "go conformance: write response:", err) os.Exit(1) } outbuf.Reset() } } var jsonMarshaler = jsonpb.Marshaler{ OrigName: true, } func handle(req *pb.ConformanceRequest) *pb.ConformanceResponse { var err error var msg pb.TestAllTypes switch p := req.Payload.(type) { case *pb.ConformanceRequest_ProtobufPayload: err = proto.Unmarshal(p.ProtobufPayload, &msg) case *pb.ConformanceRequest_JsonPayload: err = jsonpb.UnmarshalString(p.JsonPayload, &msg) if err != nil && err.Error() == "unmarshaling Any not supported yet" { return &pb.ConformanceResponse{ Result: &pb.ConformanceResponse_Skipped{ Skipped: err.Error(), }, } } default: return &pb.ConformanceResponse{ Result: &pb.ConformanceResponse_RuntimeError{ RuntimeError: "unknown request payload type", }, } } if err != nil { return &pb.ConformanceResponse{ Result: &pb.ConformanceResponse_ParseError{ ParseError: err.Error(), }, } } switch req.RequestedOutputFormat { case pb.WireFormat_PROTOBUF: p, err := proto.Marshal(&msg) if err != nil { return &pb.ConformanceResponse{ Result: &pb.ConformanceResponse_SerializeError{ SerializeError: err.Error(), }, } } return &pb.ConformanceResponse{ Result: &pb.ConformanceResponse_ProtobufPayload{ ProtobufPayload: p, }, } case pb.WireFormat_JSON: p, err := jsonMarshaler.MarshalToString(&msg) if err != nil { return &pb.ConformanceResponse{ Result: &pb.ConformanceResponse_SerializeError{ SerializeError: err.Error(), }, } } return &pb.ConformanceResponse{ Result: &pb.ConformanceResponse_JsonPayload{ JsonPayload: p, }, } default: return &pb.ConformanceResponse{ Result: &pb.ConformanceResponse_RuntimeError{ RuntimeError: "unknown output format", }, } } } golang-gogoprotobuf-0.5/_conformance/conformance_proto/000077500000000000000000000000001317075173200235135ustar00rootroot00000000000000golang-gogoprotobuf-0.5/_conformance/conformance_proto/conformance.pb.go000066400000000000000000002273251317075173200267470ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: conformance_proto/conformance.proto /* Package conformance is a generated protocol buffer package. It is generated from these files: conformance_proto/conformance.proto It has these top-level messages: ConformanceRequest ConformanceResponse TestAllTypes ForeignMessage */ package conformance import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import google_protobuf "github.com/gogo/protobuf/types" import google_protobuf1 "github.com/gogo/protobuf/types" import google_protobuf2 "github.com/gogo/protobuf/types" import google_protobuf3 "github.com/gogo/protobuf/types" import google_protobuf4 "github.com/gogo/protobuf/types" import google_protobuf5 "github.com/gogo/protobuf/types" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type WireFormat int32 const ( WireFormat_UNSPECIFIED WireFormat = 0 WireFormat_PROTOBUF WireFormat = 1 WireFormat_JSON WireFormat = 2 ) var WireFormat_name = map[int32]string{ 0: "UNSPECIFIED", 1: "PROTOBUF", 2: "JSON", } var WireFormat_value = map[string]int32{ "UNSPECIFIED": 0, "PROTOBUF": 1, "JSON": 2, } func (x WireFormat) String() string { return proto.EnumName(WireFormat_name, int32(x)) } func (WireFormat) EnumDescriptor() ([]byte, []int) { return fileDescriptorConformance, []int{0} } type ForeignEnum int32 const ( ForeignEnum_FOREIGN_FOO ForeignEnum = 0 ForeignEnum_FOREIGN_BAR ForeignEnum = 1 ForeignEnum_FOREIGN_BAZ ForeignEnum = 2 ) var ForeignEnum_name = map[int32]string{ 0: "FOREIGN_FOO", 1: "FOREIGN_BAR", 2: "FOREIGN_BAZ", } var ForeignEnum_value = map[string]int32{ "FOREIGN_FOO": 0, "FOREIGN_BAR": 1, "FOREIGN_BAZ": 2, } func (x ForeignEnum) String() string { return proto.EnumName(ForeignEnum_name, int32(x)) } func (ForeignEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorConformance, []int{1} } type TestAllTypes_NestedEnum int32 const ( TestAllTypes_FOO TestAllTypes_NestedEnum = 0 TestAllTypes_BAR TestAllTypes_NestedEnum = 1 TestAllTypes_BAZ TestAllTypes_NestedEnum = 2 TestAllTypes_NEG TestAllTypes_NestedEnum = -1 ) var TestAllTypes_NestedEnum_name = map[int32]string{ 0: "FOO", 1: "BAR", 2: "BAZ", -1: "NEG", } var TestAllTypes_NestedEnum_value = map[string]int32{ "FOO": 0, "BAR": 1, "BAZ": 2, "NEG": -1, } func (x TestAllTypes_NestedEnum) String() string { return proto.EnumName(TestAllTypes_NestedEnum_name, int32(x)) } func (TestAllTypes_NestedEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorConformance, []int{2, 0} } // Represents a single test case's input. The testee should: // // 1. parse this proto (which should always succeed) // 2. parse the protobuf or JSON payload in "payload" (which may fail) // 3. if the parse succeeded, serialize the message in the requested format. type ConformanceRequest struct { // The payload (whether protobuf of JSON) is always for a TestAllTypes proto // (see below). // // Types that are valid to be assigned to Payload: // *ConformanceRequest_ProtobufPayload // *ConformanceRequest_JsonPayload Payload isConformanceRequest_Payload `protobuf_oneof:"payload"` // Which format should the testee serialize its message to? RequestedOutputFormat WireFormat `protobuf:"varint,3,opt,name=requested_output_format,json=requestedOutputFormat,proto3,enum=conformance.WireFormat" json:"requested_output_format,omitempty"` } func (m *ConformanceRequest) Reset() { *m = ConformanceRequest{} } func (m *ConformanceRequest) String() string { return proto.CompactTextString(m) } func (*ConformanceRequest) ProtoMessage() {} func (*ConformanceRequest) Descriptor() ([]byte, []int) { return fileDescriptorConformance, []int{0} } type isConformanceRequest_Payload interface { isConformanceRequest_Payload() } type ConformanceRequest_ProtobufPayload struct { ProtobufPayload []byte `protobuf:"bytes,1,opt,name=protobuf_payload,json=protobufPayload,proto3,oneof"` } type ConformanceRequest_JsonPayload struct { JsonPayload string `protobuf:"bytes,2,opt,name=json_payload,json=jsonPayload,proto3,oneof"` } func (*ConformanceRequest_ProtobufPayload) isConformanceRequest_Payload() {} func (*ConformanceRequest_JsonPayload) isConformanceRequest_Payload() {} func (m *ConformanceRequest) GetPayload() isConformanceRequest_Payload { if m != nil { return m.Payload } return nil } func (m *ConformanceRequest) GetProtobufPayload() []byte { if x, ok := m.GetPayload().(*ConformanceRequest_ProtobufPayload); ok { return x.ProtobufPayload } return nil } func (m *ConformanceRequest) GetJsonPayload() string { if x, ok := m.GetPayload().(*ConformanceRequest_JsonPayload); ok { return x.JsonPayload } return "" } func (m *ConformanceRequest) GetRequestedOutputFormat() WireFormat { if m != nil { return m.RequestedOutputFormat } return WireFormat_UNSPECIFIED } // XXX_OneofFuncs is for the internal use of the proto package. func (*ConformanceRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _ConformanceRequest_OneofMarshaler, _ConformanceRequest_OneofUnmarshaler, _ConformanceRequest_OneofSizer, []interface{}{ (*ConformanceRequest_ProtobufPayload)(nil), (*ConformanceRequest_JsonPayload)(nil), } } func _ConformanceRequest_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*ConformanceRequest) // payload switch x := m.Payload.(type) { case *ConformanceRequest_ProtobufPayload: _ = b.EncodeVarint(1<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.ProtobufPayload) case *ConformanceRequest_JsonPayload: _ = b.EncodeVarint(2<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.JsonPayload) case nil: default: return fmt.Errorf("ConformanceRequest.Payload has unexpected type %T", x) } return nil } func _ConformanceRequest_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*ConformanceRequest) switch tag { case 1: // payload.protobuf_payload if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.Payload = &ConformanceRequest_ProtobufPayload{x} return true, err case 2: // payload.json_payload if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Payload = &ConformanceRequest_JsonPayload{x} return true, err default: return false, nil } } func _ConformanceRequest_OneofSizer(msg proto.Message) (n int) { m := msg.(*ConformanceRequest) // payload switch x := m.Payload.(type) { case *ConformanceRequest_ProtobufPayload: n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.ProtobufPayload))) n += len(x.ProtobufPayload) case *ConformanceRequest_JsonPayload: n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.JsonPayload))) n += len(x.JsonPayload) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } // Represents a single test case's output. type ConformanceResponse struct { // Types that are valid to be assigned to Result: // *ConformanceResponse_ParseError // *ConformanceResponse_SerializeError // *ConformanceResponse_RuntimeError // *ConformanceResponse_ProtobufPayload // *ConformanceResponse_JsonPayload // *ConformanceResponse_Skipped Result isConformanceResponse_Result `protobuf_oneof:"result"` } func (m *ConformanceResponse) Reset() { *m = ConformanceResponse{} } func (m *ConformanceResponse) String() string { return proto.CompactTextString(m) } func (*ConformanceResponse) ProtoMessage() {} func (*ConformanceResponse) Descriptor() ([]byte, []int) { return fileDescriptorConformance, []int{1} } type isConformanceResponse_Result interface { isConformanceResponse_Result() } type ConformanceResponse_ParseError struct { ParseError string `protobuf:"bytes,1,opt,name=parse_error,json=parseError,proto3,oneof"` } type ConformanceResponse_SerializeError struct { SerializeError string `protobuf:"bytes,6,opt,name=serialize_error,json=serializeError,proto3,oneof"` } type ConformanceResponse_RuntimeError struct { RuntimeError string `protobuf:"bytes,2,opt,name=runtime_error,json=runtimeError,proto3,oneof"` } type ConformanceResponse_ProtobufPayload struct { ProtobufPayload []byte `protobuf:"bytes,3,opt,name=protobuf_payload,json=protobufPayload,proto3,oneof"` } type ConformanceResponse_JsonPayload struct { JsonPayload string `protobuf:"bytes,4,opt,name=json_payload,json=jsonPayload,proto3,oneof"` } type ConformanceResponse_Skipped struct { Skipped string `protobuf:"bytes,5,opt,name=skipped,proto3,oneof"` } func (*ConformanceResponse_ParseError) isConformanceResponse_Result() {} func (*ConformanceResponse_SerializeError) isConformanceResponse_Result() {} func (*ConformanceResponse_RuntimeError) isConformanceResponse_Result() {} func (*ConformanceResponse_ProtobufPayload) isConformanceResponse_Result() {} func (*ConformanceResponse_JsonPayload) isConformanceResponse_Result() {} func (*ConformanceResponse_Skipped) isConformanceResponse_Result() {} func (m *ConformanceResponse) GetResult() isConformanceResponse_Result { if m != nil { return m.Result } return nil } func (m *ConformanceResponse) GetParseError() string { if x, ok := m.GetResult().(*ConformanceResponse_ParseError); ok { return x.ParseError } return "" } func (m *ConformanceResponse) GetSerializeError() string { if x, ok := m.GetResult().(*ConformanceResponse_SerializeError); ok { return x.SerializeError } return "" } func (m *ConformanceResponse) GetRuntimeError() string { if x, ok := m.GetResult().(*ConformanceResponse_RuntimeError); ok { return x.RuntimeError } return "" } func (m *ConformanceResponse) GetProtobufPayload() []byte { if x, ok := m.GetResult().(*ConformanceResponse_ProtobufPayload); ok { return x.ProtobufPayload } return nil } func (m *ConformanceResponse) GetJsonPayload() string { if x, ok := m.GetResult().(*ConformanceResponse_JsonPayload); ok { return x.JsonPayload } return "" } func (m *ConformanceResponse) GetSkipped() string { if x, ok := m.GetResult().(*ConformanceResponse_Skipped); ok { return x.Skipped } return "" } // XXX_OneofFuncs is for the internal use of the proto package. func (*ConformanceResponse) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _ConformanceResponse_OneofMarshaler, _ConformanceResponse_OneofUnmarshaler, _ConformanceResponse_OneofSizer, []interface{}{ (*ConformanceResponse_ParseError)(nil), (*ConformanceResponse_SerializeError)(nil), (*ConformanceResponse_RuntimeError)(nil), (*ConformanceResponse_ProtobufPayload)(nil), (*ConformanceResponse_JsonPayload)(nil), (*ConformanceResponse_Skipped)(nil), } } func _ConformanceResponse_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*ConformanceResponse) // result switch x := m.Result.(type) { case *ConformanceResponse_ParseError: _ = b.EncodeVarint(1<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.ParseError) case *ConformanceResponse_SerializeError: _ = b.EncodeVarint(6<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.SerializeError) case *ConformanceResponse_RuntimeError: _ = b.EncodeVarint(2<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.RuntimeError) case *ConformanceResponse_ProtobufPayload: _ = b.EncodeVarint(3<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.ProtobufPayload) case *ConformanceResponse_JsonPayload: _ = b.EncodeVarint(4<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.JsonPayload) case *ConformanceResponse_Skipped: _ = b.EncodeVarint(5<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Skipped) case nil: default: return fmt.Errorf("ConformanceResponse.Result has unexpected type %T", x) } return nil } func _ConformanceResponse_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*ConformanceResponse) switch tag { case 1: // result.parse_error if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Result = &ConformanceResponse_ParseError{x} return true, err case 6: // result.serialize_error if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Result = &ConformanceResponse_SerializeError{x} return true, err case 2: // result.runtime_error if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Result = &ConformanceResponse_RuntimeError{x} return true, err case 3: // result.protobuf_payload if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.Result = &ConformanceResponse_ProtobufPayload{x} return true, err case 4: // result.json_payload if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Result = &ConformanceResponse_JsonPayload{x} return true, err case 5: // result.skipped if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Result = &ConformanceResponse_Skipped{x} return true, err default: return false, nil } } func _ConformanceResponse_OneofSizer(msg proto.Message) (n int) { m := msg.(*ConformanceResponse) // result switch x := m.Result.(type) { case *ConformanceResponse_ParseError: n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.ParseError))) n += len(x.ParseError) case *ConformanceResponse_SerializeError: n += proto.SizeVarint(6<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.SerializeError))) n += len(x.SerializeError) case *ConformanceResponse_RuntimeError: n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.RuntimeError))) n += len(x.RuntimeError) case *ConformanceResponse_ProtobufPayload: n += proto.SizeVarint(3<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.ProtobufPayload))) n += len(x.ProtobufPayload) case *ConformanceResponse_JsonPayload: n += proto.SizeVarint(4<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.JsonPayload))) n += len(x.JsonPayload) case *ConformanceResponse_Skipped: n += proto.SizeVarint(5<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Skipped))) n += len(x.Skipped) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } // This proto includes every type of field in both singular and repeated // forms. type TestAllTypes struct { // Singular OptionalInt32 int32 `protobuf:"varint,1,opt,name=optional_int32,json=optionalInt32,proto3" json:"optional_int32,omitempty"` OptionalInt64 int64 `protobuf:"varint,2,opt,name=optional_int64,json=optionalInt64,proto3" json:"optional_int64,omitempty"` OptionalUint32 uint32 `protobuf:"varint,3,opt,name=optional_uint32,json=optionalUint32,proto3" json:"optional_uint32,omitempty"` OptionalUint64 uint64 `protobuf:"varint,4,opt,name=optional_uint64,json=optionalUint64,proto3" json:"optional_uint64,omitempty"` OptionalSint32 int32 `protobuf:"zigzag32,5,opt,name=optional_sint32,json=optionalSint32,proto3" json:"optional_sint32,omitempty"` OptionalSint64 int64 `protobuf:"zigzag64,6,opt,name=optional_sint64,json=optionalSint64,proto3" json:"optional_sint64,omitempty"` OptionalFixed32 uint32 `protobuf:"fixed32,7,opt,name=optional_fixed32,json=optionalFixed32,proto3" json:"optional_fixed32,omitempty"` OptionalFixed64 uint64 `protobuf:"fixed64,8,opt,name=optional_fixed64,json=optionalFixed64,proto3" json:"optional_fixed64,omitempty"` OptionalSfixed32 int32 `protobuf:"fixed32,9,opt,name=optional_sfixed32,json=optionalSfixed32,proto3" json:"optional_sfixed32,omitempty"` OptionalSfixed64 int64 `protobuf:"fixed64,10,opt,name=optional_sfixed64,json=optionalSfixed64,proto3" json:"optional_sfixed64,omitempty"` OptionalFloat float32 `protobuf:"fixed32,11,opt,name=optional_float,json=optionalFloat,proto3" json:"optional_float,omitempty"` OptionalDouble float64 `protobuf:"fixed64,12,opt,name=optional_double,json=optionalDouble,proto3" json:"optional_double,omitempty"` OptionalBool bool `protobuf:"varint,13,opt,name=optional_bool,json=optionalBool,proto3" json:"optional_bool,omitempty"` OptionalString string `protobuf:"bytes,14,opt,name=optional_string,json=optionalString,proto3" json:"optional_string,omitempty"` OptionalBytes []byte `protobuf:"bytes,15,opt,name=optional_bytes,json=optionalBytes,proto3" json:"optional_bytes,omitempty"` OptionalNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,18,opt,name=optional_nested_message,json=optionalNestedMessage" json:"optional_nested_message,omitempty"` OptionalForeignMessage *ForeignMessage `protobuf:"bytes,19,opt,name=optional_foreign_message,json=optionalForeignMessage" json:"optional_foreign_message,omitempty"` OptionalNestedEnum TestAllTypes_NestedEnum `protobuf:"varint,21,opt,name=optional_nested_enum,json=optionalNestedEnum,proto3,enum=conformance.TestAllTypes_NestedEnum" json:"optional_nested_enum,omitempty"` OptionalForeignEnum ForeignEnum `protobuf:"varint,22,opt,name=optional_foreign_enum,json=optionalForeignEnum,proto3,enum=conformance.ForeignEnum" json:"optional_foreign_enum,omitempty"` OptionalStringPiece string `protobuf:"bytes,24,opt,name=optional_string_piece,json=optionalStringPiece,proto3" json:"optional_string_piece,omitempty"` OptionalCord string `protobuf:"bytes,25,opt,name=optional_cord,json=optionalCord,proto3" json:"optional_cord,omitempty"` RecursiveMessage *TestAllTypes `protobuf:"bytes,27,opt,name=recursive_message,json=recursiveMessage" json:"recursive_message,omitempty"` // Repeated RepeatedInt32 []int32 `protobuf:"varint,31,rep,packed,name=repeated_int32,json=repeatedInt32" json:"repeated_int32,omitempty"` RepeatedInt64 []int64 `protobuf:"varint,32,rep,packed,name=repeated_int64,json=repeatedInt64" json:"repeated_int64,omitempty"` RepeatedUint32 []uint32 `protobuf:"varint,33,rep,packed,name=repeated_uint32,json=repeatedUint32" json:"repeated_uint32,omitempty"` RepeatedUint64 []uint64 `protobuf:"varint,34,rep,packed,name=repeated_uint64,json=repeatedUint64" json:"repeated_uint64,omitempty"` RepeatedSint32 []int32 `protobuf:"zigzag32,35,rep,packed,name=repeated_sint32,json=repeatedSint32" json:"repeated_sint32,omitempty"` RepeatedSint64 []int64 `protobuf:"zigzag64,36,rep,packed,name=repeated_sint64,json=repeatedSint64" json:"repeated_sint64,omitempty"` RepeatedFixed32 []uint32 `protobuf:"fixed32,37,rep,packed,name=repeated_fixed32,json=repeatedFixed32" json:"repeated_fixed32,omitempty"` RepeatedFixed64 []uint64 `protobuf:"fixed64,38,rep,packed,name=repeated_fixed64,json=repeatedFixed64" json:"repeated_fixed64,omitempty"` RepeatedSfixed32 []int32 `protobuf:"fixed32,39,rep,packed,name=repeated_sfixed32,json=repeatedSfixed32" json:"repeated_sfixed32,omitempty"` RepeatedSfixed64 []int64 `protobuf:"fixed64,40,rep,packed,name=repeated_sfixed64,json=repeatedSfixed64" json:"repeated_sfixed64,omitempty"` RepeatedFloat []float32 `protobuf:"fixed32,41,rep,packed,name=repeated_float,json=repeatedFloat" json:"repeated_float,omitempty"` RepeatedDouble []float64 `protobuf:"fixed64,42,rep,packed,name=repeated_double,json=repeatedDouble" json:"repeated_double,omitempty"` RepeatedBool []bool `protobuf:"varint,43,rep,packed,name=repeated_bool,json=repeatedBool" json:"repeated_bool,omitempty"` RepeatedString []string `protobuf:"bytes,44,rep,name=repeated_string,json=repeatedString" json:"repeated_string,omitempty"` RepeatedBytes [][]byte `protobuf:"bytes,45,rep,name=repeated_bytes,json=repeatedBytes" json:"repeated_bytes,omitempty"` RepeatedNestedMessage []*TestAllTypes_NestedMessage `protobuf:"bytes,48,rep,name=repeated_nested_message,json=repeatedNestedMessage" json:"repeated_nested_message,omitempty"` RepeatedForeignMessage []*ForeignMessage `protobuf:"bytes,49,rep,name=repeated_foreign_message,json=repeatedForeignMessage" json:"repeated_foreign_message,omitempty"` RepeatedNestedEnum []TestAllTypes_NestedEnum `protobuf:"varint,51,rep,packed,name=repeated_nested_enum,json=repeatedNestedEnum,enum=conformance.TestAllTypes_NestedEnum" json:"repeated_nested_enum,omitempty"` RepeatedForeignEnum []ForeignEnum `protobuf:"varint,52,rep,packed,name=repeated_foreign_enum,json=repeatedForeignEnum,enum=conformance.ForeignEnum" json:"repeated_foreign_enum,omitempty"` RepeatedStringPiece []string `protobuf:"bytes,54,rep,name=repeated_string_piece,json=repeatedStringPiece" json:"repeated_string_piece,omitempty"` RepeatedCord []string `protobuf:"bytes,55,rep,name=repeated_cord,json=repeatedCord" json:"repeated_cord,omitempty"` // Map MapInt32Int32 map[int32]int32 `protobuf:"bytes,56,rep,name=map_int32_int32,json=mapInt32Int32" json:"map_int32_int32,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` MapInt64Int64 map[int64]int64 `protobuf:"bytes,57,rep,name=map_int64_int64,json=mapInt64Int64" json:"map_int64_int64,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` MapUint32Uint32 map[uint32]uint32 `protobuf:"bytes,58,rep,name=map_uint32_uint32,json=mapUint32Uint32" json:"map_uint32_uint32,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` MapUint64Uint64 map[uint64]uint64 `protobuf:"bytes,59,rep,name=map_uint64_uint64,json=mapUint64Uint64" json:"map_uint64_uint64,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` MapSint32Sint32 map[int32]int32 `protobuf:"bytes,60,rep,name=map_sint32_sint32,json=mapSint32Sint32" json:"map_sint32_sint32,omitempty" protobuf_key:"zigzag32,1,opt,name=key,proto3" protobuf_val:"zigzag32,2,opt,name=value,proto3"` MapSint64Sint64 map[int64]int64 `protobuf:"bytes,61,rep,name=map_sint64_sint64,json=mapSint64Sint64" json:"map_sint64_sint64,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"zigzag64,2,opt,name=value,proto3"` MapFixed32Fixed32 map[uint32]uint32 `protobuf:"bytes,62,rep,name=map_fixed32_fixed32,json=mapFixed32Fixed32" json:"map_fixed32_fixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` MapFixed64Fixed64 map[uint64]uint64 `protobuf:"bytes,63,rep,name=map_fixed64_fixed64,json=mapFixed64Fixed64" json:"map_fixed64_fixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` MapSfixed32Sfixed32 map[int32]int32 `protobuf:"bytes,64,rep,name=map_sfixed32_sfixed32,json=mapSfixed32Sfixed32" json:"map_sfixed32_sfixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` MapSfixed64Sfixed64 map[int64]int64 `protobuf:"bytes,65,rep,name=map_sfixed64_sfixed64,json=mapSfixed64Sfixed64" json:"map_sfixed64_sfixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` MapInt32Float map[int32]float32 `protobuf:"bytes,66,rep,name=map_int32_float,json=mapInt32Float" json:"map_int32_float,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` MapInt32Double map[int32]float64 `protobuf:"bytes,67,rep,name=map_int32_double,json=mapInt32Double" json:"map_int32_double,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` MapBoolBool map[bool]bool `protobuf:"bytes,68,rep,name=map_bool_bool,json=mapBoolBool" json:"map_bool_bool,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` MapStringString map[string]string `protobuf:"bytes,69,rep,name=map_string_string,json=mapStringString" json:"map_string_string,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` MapStringBytes map[string][]byte `protobuf:"bytes,70,rep,name=map_string_bytes,json=mapStringBytes" json:"map_string_bytes,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` MapStringNestedMessage map[string]*TestAllTypes_NestedMessage `protobuf:"bytes,71,rep,name=map_string_nested_message,json=mapStringNestedMessage" json:"map_string_nested_message,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` MapStringForeignMessage map[string]*ForeignMessage `protobuf:"bytes,72,rep,name=map_string_foreign_message,json=mapStringForeignMessage" json:"map_string_foreign_message,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` MapStringNestedEnum map[string]TestAllTypes_NestedEnum `protobuf:"bytes,73,rep,name=map_string_nested_enum,json=mapStringNestedEnum" json:"map_string_nested_enum,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=conformance.TestAllTypes_NestedEnum"` MapStringForeignEnum map[string]ForeignEnum `protobuf:"bytes,74,rep,name=map_string_foreign_enum,json=mapStringForeignEnum" json:"map_string_foreign_enum,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=conformance.ForeignEnum"` // Types that are valid to be assigned to OneofField: // *TestAllTypes_OneofUint32 // *TestAllTypes_OneofNestedMessage // *TestAllTypes_OneofString // *TestAllTypes_OneofBytes // *TestAllTypes_OneofBool // *TestAllTypes_OneofUint64 // *TestAllTypes_OneofFloat // *TestAllTypes_OneofDouble // *TestAllTypes_OneofEnum OneofField isTestAllTypes_OneofField `protobuf_oneof:"oneof_field"` // Well-known types OptionalBoolWrapper *google_protobuf5.BoolValue `protobuf:"bytes,201,opt,name=optional_bool_wrapper,json=optionalBoolWrapper" json:"optional_bool_wrapper,omitempty"` OptionalInt32Wrapper *google_protobuf5.Int32Value `protobuf:"bytes,202,opt,name=optional_int32_wrapper,json=optionalInt32Wrapper" json:"optional_int32_wrapper,omitempty"` OptionalInt64Wrapper *google_protobuf5.Int64Value `protobuf:"bytes,203,opt,name=optional_int64_wrapper,json=optionalInt64Wrapper" json:"optional_int64_wrapper,omitempty"` OptionalUint32Wrapper *google_protobuf5.UInt32Value `protobuf:"bytes,204,opt,name=optional_uint32_wrapper,json=optionalUint32Wrapper" json:"optional_uint32_wrapper,omitempty"` OptionalUint64Wrapper *google_protobuf5.UInt64Value `protobuf:"bytes,205,opt,name=optional_uint64_wrapper,json=optionalUint64Wrapper" json:"optional_uint64_wrapper,omitempty"` OptionalFloatWrapper *google_protobuf5.FloatValue `protobuf:"bytes,206,opt,name=optional_float_wrapper,json=optionalFloatWrapper" json:"optional_float_wrapper,omitempty"` OptionalDoubleWrapper *google_protobuf5.DoubleValue `protobuf:"bytes,207,opt,name=optional_double_wrapper,json=optionalDoubleWrapper" json:"optional_double_wrapper,omitempty"` OptionalStringWrapper *google_protobuf5.StringValue `protobuf:"bytes,208,opt,name=optional_string_wrapper,json=optionalStringWrapper" json:"optional_string_wrapper,omitempty"` OptionalBytesWrapper *google_protobuf5.BytesValue `protobuf:"bytes,209,opt,name=optional_bytes_wrapper,json=optionalBytesWrapper" json:"optional_bytes_wrapper,omitempty"` RepeatedBoolWrapper []*google_protobuf5.BoolValue `protobuf:"bytes,211,rep,name=repeated_bool_wrapper,json=repeatedBoolWrapper" json:"repeated_bool_wrapper,omitempty"` RepeatedInt32Wrapper []*google_protobuf5.Int32Value `protobuf:"bytes,212,rep,name=repeated_int32_wrapper,json=repeatedInt32Wrapper" json:"repeated_int32_wrapper,omitempty"` RepeatedInt64Wrapper []*google_protobuf5.Int64Value `protobuf:"bytes,213,rep,name=repeated_int64_wrapper,json=repeatedInt64Wrapper" json:"repeated_int64_wrapper,omitempty"` RepeatedUint32Wrapper []*google_protobuf5.UInt32Value `protobuf:"bytes,214,rep,name=repeated_uint32_wrapper,json=repeatedUint32Wrapper" json:"repeated_uint32_wrapper,omitempty"` RepeatedUint64Wrapper []*google_protobuf5.UInt64Value `protobuf:"bytes,215,rep,name=repeated_uint64_wrapper,json=repeatedUint64Wrapper" json:"repeated_uint64_wrapper,omitempty"` RepeatedFloatWrapper []*google_protobuf5.FloatValue `protobuf:"bytes,216,rep,name=repeated_float_wrapper,json=repeatedFloatWrapper" json:"repeated_float_wrapper,omitempty"` RepeatedDoubleWrapper []*google_protobuf5.DoubleValue `protobuf:"bytes,217,rep,name=repeated_double_wrapper,json=repeatedDoubleWrapper" json:"repeated_double_wrapper,omitempty"` RepeatedStringWrapper []*google_protobuf5.StringValue `protobuf:"bytes,218,rep,name=repeated_string_wrapper,json=repeatedStringWrapper" json:"repeated_string_wrapper,omitempty"` RepeatedBytesWrapper []*google_protobuf5.BytesValue `protobuf:"bytes,219,rep,name=repeated_bytes_wrapper,json=repeatedBytesWrapper" json:"repeated_bytes_wrapper,omitempty"` OptionalDuration *google_protobuf1.Duration `protobuf:"bytes,301,opt,name=optional_duration,json=optionalDuration" json:"optional_duration,omitempty"` OptionalTimestamp *google_protobuf4.Timestamp `protobuf:"bytes,302,opt,name=optional_timestamp,json=optionalTimestamp" json:"optional_timestamp,omitempty"` OptionalFieldMask *google_protobuf2.FieldMask `protobuf:"bytes,303,opt,name=optional_field_mask,json=optionalFieldMask" json:"optional_field_mask,omitempty"` OptionalStruct *google_protobuf3.Struct `protobuf:"bytes,304,opt,name=optional_struct,json=optionalStruct" json:"optional_struct,omitempty"` OptionalAny *google_protobuf.Any `protobuf:"bytes,305,opt,name=optional_any,json=optionalAny" json:"optional_any,omitempty"` OptionalValue *google_protobuf3.Value `protobuf:"bytes,306,opt,name=optional_value,json=optionalValue" json:"optional_value,omitempty"` RepeatedDuration []*google_protobuf1.Duration `protobuf:"bytes,311,rep,name=repeated_duration,json=repeatedDuration" json:"repeated_duration,omitempty"` RepeatedTimestamp []*google_protobuf4.Timestamp `protobuf:"bytes,312,rep,name=repeated_timestamp,json=repeatedTimestamp" json:"repeated_timestamp,omitempty"` RepeatedFieldmask []*google_protobuf2.FieldMask `protobuf:"bytes,313,rep,name=repeated_fieldmask,json=repeatedFieldmask" json:"repeated_fieldmask,omitempty"` RepeatedStruct []*google_protobuf3.Struct `protobuf:"bytes,324,rep,name=repeated_struct,json=repeatedStruct" json:"repeated_struct,omitempty"` RepeatedAny []*google_protobuf.Any `protobuf:"bytes,315,rep,name=repeated_any,json=repeatedAny" json:"repeated_any,omitempty"` RepeatedValue []*google_protobuf3.Value `protobuf:"bytes,316,rep,name=repeated_value,json=repeatedValue" json:"repeated_value,omitempty"` // Test field-name-to-JSON-name convention. // (protobuf says names can be any valid C/C++ identifier.) Fieldname1 int32 `protobuf:"varint,401,opt,name=fieldname1,proto3" json:"fieldname1,omitempty"` FieldName2 int32 `protobuf:"varint,402,opt,name=field_name2,json=fieldName2,proto3" json:"field_name2,omitempty"` XFieldName3 int32 `protobuf:"varint,403,opt,name=_field_name3,json=FieldName3,proto3" json:"_field_name3,omitempty"` Field_Name4_ int32 `protobuf:"varint,404,opt,name=field__name4_,json=fieldName4,proto3" json:"field__name4_,omitempty"` Field0Name5 int32 `protobuf:"varint,405,opt,name=field0name5,proto3" json:"field0name5,omitempty"` Field_0Name6 int32 `protobuf:"varint,406,opt,name=field_0_name6,json=field0Name6,proto3" json:"field_0_name6,omitempty"` FieldName7 int32 `protobuf:"varint,407,opt,name=fieldName7,proto3" json:"fieldName7,omitempty"` FieldName8 int32 `protobuf:"varint,408,opt,name=FieldName8,proto3" json:"FieldName8,omitempty"` Field_Name9 int32 `protobuf:"varint,409,opt,name=field_Name9,json=fieldName9,proto3" json:"field_Name9,omitempty"` Field_Name10 int32 `protobuf:"varint,410,opt,name=Field_Name10,json=FieldName10,proto3" json:"Field_Name10,omitempty"` FIELD_NAME11 int32 `protobuf:"varint,411,opt,name=FIELD_NAME11,json=FIELDNAME11,proto3" json:"FIELD_NAME11,omitempty"` FIELDName12 int32 `protobuf:"varint,412,opt,name=FIELD_name12,json=FIELDName12,proto3" json:"FIELD_name12,omitempty"` XFieldName13 int32 `protobuf:"varint,413,opt,name=__field_name13,json=FieldName13,proto3" json:"__field_name13,omitempty"` X_FieldName14 int32 `protobuf:"varint,414,opt,name=__Field_name14,json=FieldName14,proto3" json:"__Field_name14,omitempty"` Field_Name15 int32 `protobuf:"varint,415,opt,name=field__name15,json=fieldName15,proto3" json:"field__name15,omitempty"` Field__Name16 int32 `protobuf:"varint,416,opt,name=field__Name16,json=fieldName16,proto3" json:"field__Name16,omitempty"` FieldName17__ int32 `protobuf:"varint,417,opt,name=field_name17__,json=fieldName17,proto3" json:"field_name17__,omitempty"` FieldName18__ int32 `protobuf:"varint,418,opt,name=Field_name18__,json=FieldName18,proto3" json:"Field_name18__,omitempty"` } func (m *TestAllTypes) Reset() { *m = TestAllTypes{} } func (m *TestAllTypes) String() string { return proto.CompactTextString(m) } func (*TestAllTypes) ProtoMessage() {} func (*TestAllTypes) Descriptor() ([]byte, []int) { return fileDescriptorConformance, []int{2} } type isTestAllTypes_OneofField interface { isTestAllTypes_OneofField() } type TestAllTypes_OneofUint32 struct { OneofUint32 uint32 `protobuf:"varint,111,opt,name=oneof_uint32,json=oneofUint32,proto3,oneof"` } type TestAllTypes_OneofNestedMessage struct { OneofNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,112,opt,name=oneof_nested_message,json=oneofNestedMessage,oneof"` } type TestAllTypes_OneofString struct { OneofString string `protobuf:"bytes,113,opt,name=oneof_string,json=oneofString,proto3,oneof"` } type TestAllTypes_OneofBytes struct { OneofBytes []byte `protobuf:"bytes,114,opt,name=oneof_bytes,json=oneofBytes,proto3,oneof"` } type TestAllTypes_OneofBool struct { OneofBool bool `protobuf:"varint,115,opt,name=oneof_bool,json=oneofBool,proto3,oneof"` } type TestAllTypes_OneofUint64 struct { OneofUint64 uint64 `protobuf:"varint,116,opt,name=oneof_uint64,json=oneofUint64,proto3,oneof"` } type TestAllTypes_OneofFloat struct { OneofFloat float32 `protobuf:"fixed32,117,opt,name=oneof_float,json=oneofFloat,proto3,oneof"` } type TestAllTypes_OneofDouble struct { OneofDouble float64 `protobuf:"fixed64,118,opt,name=oneof_double,json=oneofDouble,proto3,oneof"` } type TestAllTypes_OneofEnum struct { OneofEnum TestAllTypes_NestedEnum `protobuf:"varint,119,opt,name=oneof_enum,json=oneofEnum,proto3,enum=conformance.TestAllTypes_NestedEnum,oneof"` } func (*TestAllTypes_OneofUint32) isTestAllTypes_OneofField() {} func (*TestAllTypes_OneofNestedMessage) isTestAllTypes_OneofField() {} func (*TestAllTypes_OneofString) isTestAllTypes_OneofField() {} func (*TestAllTypes_OneofBytes) isTestAllTypes_OneofField() {} func (*TestAllTypes_OneofBool) isTestAllTypes_OneofField() {} func (*TestAllTypes_OneofUint64) isTestAllTypes_OneofField() {} func (*TestAllTypes_OneofFloat) isTestAllTypes_OneofField() {} func (*TestAllTypes_OneofDouble) isTestAllTypes_OneofField() {} func (*TestAllTypes_OneofEnum) isTestAllTypes_OneofField() {} func (m *TestAllTypes) GetOneofField() isTestAllTypes_OneofField { if m != nil { return m.OneofField } return nil } func (m *TestAllTypes) GetOptionalInt32() int32 { if m != nil { return m.OptionalInt32 } return 0 } func (m *TestAllTypes) GetOptionalInt64() int64 { if m != nil { return m.OptionalInt64 } return 0 } func (m *TestAllTypes) GetOptionalUint32() uint32 { if m != nil { return m.OptionalUint32 } return 0 } func (m *TestAllTypes) GetOptionalUint64() uint64 { if m != nil { return m.OptionalUint64 } return 0 } func (m *TestAllTypes) GetOptionalSint32() int32 { if m != nil { return m.OptionalSint32 } return 0 } func (m *TestAllTypes) GetOptionalSint64() int64 { if m != nil { return m.OptionalSint64 } return 0 } func (m *TestAllTypes) GetOptionalFixed32() uint32 { if m != nil { return m.OptionalFixed32 } return 0 } func (m *TestAllTypes) GetOptionalFixed64() uint64 { if m != nil { return m.OptionalFixed64 } return 0 } func (m *TestAllTypes) GetOptionalSfixed32() int32 { if m != nil { return m.OptionalSfixed32 } return 0 } func (m *TestAllTypes) GetOptionalSfixed64() int64 { if m != nil { return m.OptionalSfixed64 } return 0 } func (m *TestAllTypes) GetOptionalFloat() float32 { if m != nil { return m.OptionalFloat } return 0 } func (m *TestAllTypes) GetOptionalDouble() float64 { if m != nil { return m.OptionalDouble } return 0 } func (m *TestAllTypes) GetOptionalBool() bool { if m != nil { return m.OptionalBool } return false } func (m *TestAllTypes) GetOptionalString() string { if m != nil { return m.OptionalString } return "" } func (m *TestAllTypes) GetOptionalBytes() []byte { if m != nil { return m.OptionalBytes } return nil } func (m *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage { if m != nil { return m.OptionalNestedMessage } return nil } func (m *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage { if m != nil { return m.OptionalForeignMessage } return nil } func (m *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum { if m != nil { return m.OptionalNestedEnum } return TestAllTypes_FOO } func (m *TestAllTypes) GetOptionalForeignEnum() ForeignEnum { if m != nil { return m.OptionalForeignEnum } return ForeignEnum_FOREIGN_FOO } func (m *TestAllTypes) GetOptionalStringPiece() string { if m != nil { return m.OptionalStringPiece } return "" } func (m *TestAllTypes) GetOptionalCord() string { if m != nil { return m.OptionalCord } return "" } func (m *TestAllTypes) GetRecursiveMessage() *TestAllTypes { if m != nil { return m.RecursiveMessage } return nil } func (m *TestAllTypes) GetRepeatedInt32() []int32 { if m != nil { return m.RepeatedInt32 } return nil } func (m *TestAllTypes) GetRepeatedInt64() []int64 { if m != nil { return m.RepeatedInt64 } return nil } func (m *TestAllTypes) GetRepeatedUint32() []uint32 { if m != nil { return m.RepeatedUint32 } return nil } func (m *TestAllTypes) GetRepeatedUint64() []uint64 { if m != nil { return m.RepeatedUint64 } return nil } func (m *TestAllTypes) GetRepeatedSint32() []int32 { if m != nil { return m.RepeatedSint32 } return nil } func (m *TestAllTypes) GetRepeatedSint64() []int64 { if m != nil { return m.RepeatedSint64 } return nil } func (m *TestAllTypes) GetRepeatedFixed32() []uint32 { if m != nil { return m.RepeatedFixed32 } return nil } func (m *TestAllTypes) GetRepeatedFixed64() []uint64 { if m != nil { return m.RepeatedFixed64 } return nil } func (m *TestAllTypes) GetRepeatedSfixed32() []int32 { if m != nil { return m.RepeatedSfixed32 } return nil } func (m *TestAllTypes) GetRepeatedSfixed64() []int64 { if m != nil { return m.RepeatedSfixed64 } return nil } func (m *TestAllTypes) GetRepeatedFloat() []float32 { if m != nil { return m.RepeatedFloat } return nil } func (m *TestAllTypes) GetRepeatedDouble() []float64 { if m != nil { return m.RepeatedDouble } return nil } func (m *TestAllTypes) GetRepeatedBool() []bool { if m != nil { return m.RepeatedBool } return nil } func (m *TestAllTypes) GetRepeatedString() []string { if m != nil { return m.RepeatedString } return nil } func (m *TestAllTypes) GetRepeatedBytes() [][]byte { if m != nil { return m.RepeatedBytes } return nil } func (m *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage { if m != nil { return m.RepeatedNestedMessage } return nil } func (m *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage { if m != nil { return m.RepeatedForeignMessage } return nil } func (m *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum { if m != nil { return m.RepeatedNestedEnum } return nil } func (m *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum { if m != nil { return m.RepeatedForeignEnum } return nil } func (m *TestAllTypes) GetRepeatedStringPiece() []string { if m != nil { return m.RepeatedStringPiece } return nil } func (m *TestAllTypes) GetRepeatedCord() []string { if m != nil { return m.RepeatedCord } return nil } func (m *TestAllTypes) GetMapInt32Int32() map[int32]int32 { if m != nil { return m.MapInt32Int32 } return nil } func (m *TestAllTypes) GetMapInt64Int64() map[int64]int64 { if m != nil { return m.MapInt64Int64 } return nil } func (m *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 { if m != nil { return m.MapUint32Uint32 } return nil } func (m *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 { if m != nil { return m.MapUint64Uint64 } return nil } func (m *TestAllTypes) GetMapSint32Sint32() map[int32]int32 { if m != nil { return m.MapSint32Sint32 } return nil } func (m *TestAllTypes) GetMapSint64Sint64() map[int64]int64 { if m != nil { return m.MapSint64Sint64 } return nil } func (m *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 { if m != nil { return m.MapFixed32Fixed32 } return nil } func (m *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 { if m != nil { return m.MapFixed64Fixed64 } return nil } func (m *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 { if m != nil { return m.MapSfixed32Sfixed32 } return nil } func (m *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 { if m != nil { return m.MapSfixed64Sfixed64 } return nil } func (m *TestAllTypes) GetMapInt32Float() map[int32]float32 { if m != nil { return m.MapInt32Float } return nil } func (m *TestAllTypes) GetMapInt32Double() map[int32]float64 { if m != nil { return m.MapInt32Double } return nil } func (m *TestAllTypes) GetMapBoolBool() map[bool]bool { if m != nil { return m.MapBoolBool } return nil } func (m *TestAllTypes) GetMapStringString() map[string]string { if m != nil { return m.MapStringString } return nil } func (m *TestAllTypes) GetMapStringBytes() map[string][]byte { if m != nil { return m.MapStringBytes } return nil } func (m *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage { if m != nil { return m.MapStringNestedMessage } return nil } func (m *TestAllTypes) GetMapStringForeignMessage() map[string]*ForeignMessage { if m != nil { return m.MapStringForeignMessage } return nil } func (m *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum { if m != nil { return m.MapStringNestedEnum } return nil } func (m *TestAllTypes) GetMapStringForeignEnum() map[string]ForeignEnum { if m != nil { return m.MapStringForeignEnum } return nil } func (m *TestAllTypes) GetOneofUint32() uint32 { if x, ok := m.GetOneofField().(*TestAllTypes_OneofUint32); ok { return x.OneofUint32 } return 0 } func (m *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage { if x, ok := m.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok { return x.OneofNestedMessage } return nil } func (m *TestAllTypes) GetOneofString() string { if x, ok := m.GetOneofField().(*TestAllTypes_OneofString); ok { return x.OneofString } return "" } func (m *TestAllTypes) GetOneofBytes() []byte { if x, ok := m.GetOneofField().(*TestAllTypes_OneofBytes); ok { return x.OneofBytes } return nil } func (m *TestAllTypes) GetOneofBool() bool { if x, ok := m.GetOneofField().(*TestAllTypes_OneofBool); ok { return x.OneofBool } return false } func (m *TestAllTypes) GetOneofUint64() uint64 { if x, ok := m.GetOneofField().(*TestAllTypes_OneofUint64); ok { return x.OneofUint64 } return 0 } func (m *TestAllTypes) GetOneofFloat() float32 { if x, ok := m.GetOneofField().(*TestAllTypes_OneofFloat); ok { return x.OneofFloat } return 0 } func (m *TestAllTypes) GetOneofDouble() float64 { if x, ok := m.GetOneofField().(*TestAllTypes_OneofDouble); ok { return x.OneofDouble } return 0 } func (m *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum { if x, ok := m.GetOneofField().(*TestAllTypes_OneofEnum); ok { return x.OneofEnum } return TestAllTypes_FOO } func (m *TestAllTypes) GetOptionalBoolWrapper() *google_protobuf5.BoolValue { if m != nil { return m.OptionalBoolWrapper } return nil } func (m *TestAllTypes) GetOptionalInt32Wrapper() *google_protobuf5.Int32Value { if m != nil { return m.OptionalInt32Wrapper } return nil } func (m *TestAllTypes) GetOptionalInt64Wrapper() *google_protobuf5.Int64Value { if m != nil { return m.OptionalInt64Wrapper } return nil } func (m *TestAllTypes) GetOptionalUint32Wrapper() *google_protobuf5.UInt32Value { if m != nil { return m.OptionalUint32Wrapper } return nil } func (m *TestAllTypes) GetOptionalUint64Wrapper() *google_protobuf5.UInt64Value { if m != nil { return m.OptionalUint64Wrapper } return nil } func (m *TestAllTypes) GetOptionalFloatWrapper() *google_protobuf5.FloatValue { if m != nil { return m.OptionalFloatWrapper } return nil } func (m *TestAllTypes) GetOptionalDoubleWrapper() *google_protobuf5.DoubleValue { if m != nil { return m.OptionalDoubleWrapper } return nil } func (m *TestAllTypes) GetOptionalStringWrapper() *google_protobuf5.StringValue { if m != nil { return m.OptionalStringWrapper } return nil } func (m *TestAllTypes) GetOptionalBytesWrapper() *google_protobuf5.BytesValue { if m != nil { return m.OptionalBytesWrapper } return nil } func (m *TestAllTypes) GetRepeatedBoolWrapper() []*google_protobuf5.BoolValue { if m != nil { return m.RepeatedBoolWrapper } return nil } func (m *TestAllTypes) GetRepeatedInt32Wrapper() []*google_protobuf5.Int32Value { if m != nil { return m.RepeatedInt32Wrapper } return nil } func (m *TestAllTypes) GetRepeatedInt64Wrapper() []*google_protobuf5.Int64Value { if m != nil { return m.RepeatedInt64Wrapper } return nil } func (m *TestAllTypes) GetRepeatedUint32Wrapper() []*google_protobuf5.UInt32Value { if m != nil { return m.RepeatedUint32Wrapper } return nil } func (m *TestAllTypes) GetRepeatedUint64Wrapper() []*google_protobuf5.UInt64Value { if m != nil { return m.RepeatedUint64Wrapper } return nil } func (m *TestAllTypes) GetRepeatedFloatWrapper() []*google_protobuf5.FloatValue { if m != nil { return m.RepeatedFloatWrapper } return nil } func (m *TestAllTypes) GetRepeatedDoubleWrapper() []*google_protobuf5.DoubleValue { if m != nil { return m.RepeatedDoubleWrapper } return nil } func (m *TestAllTypes) GetRepeatedStringWrapper() []*google_protobuf5.StringValue { if m != nil { return m.RepeatedStringWrapper } return nil } func (m *TestAllTypes) GetRepeatedBytesWrapper() []*google_protobuf5.BytesValue { if m != nil { return m.RepeatedBytesWrapper } return nil } func (m *TestAllTypes) GetOptionalDuration() *google_protobuf1.Duration { if m != nil { return m.OptionalDuration } return nil } func (m *TestAllTypes) GetOptionalTimestamp() *google_protobuf4.Timestamp { if m != nil { return m.OptionalTimestamp } return nil } func (m *TestAllTypes) GetOptionalFieldMask() *google_protobuf2.FieldMask { if m != nil { return m.OptionalFieldMask } return nil } func (m *TestAllTypes) GetOptionalStruct() *google_protobuf3.Struct { if m != nil { return m.OptionalStruct } return nil } func (m *TestAllTypes) GetOptionalAny() *google_protobuf.Any { if m != nil { return m.OptionalAny } return nil } func (m *TestAllTypes) GetOptionalValue() *google_protobuf3.Value { if m != nil { return m.OptionalValue } return nil } func (m *TestAllTypes) GetRepeatedDuration() []*google_protobuf1.Duration { if m != nil { return m.RepeatedDuration } return nil } func (m *TestAllTypes) GetRepeatedTimestamp() []*google_protobuf4.Timestamp { if m != nil { return m.RepeatedTimestamp } return nil } func (m *TestAllTypes) GetRepeatedFieldmask() []*google_protobuf2.FieldMask { if m != nil { return m.RepeatedFieldmask } return nil } func (m *TestAllTypes) GetRepeatedStruct() []*google_protobuf3.Struct { if m != nil { return m.RepeatedStruct } return nil } func (m *TestAllTypes) GetRepeatedAny() []*google_protobuf.Any { if m != nil { return m.RepeatedAny } return nil } func (m *TestAllTypes) GetRepeatedValue() []*google_protobuf3.Value { if m != nil { return m.RepeatedValue } return nil } func (m *TestAllTypes) GetFieldname1() int32 { if m != nil { return m.Fieldname1 } return 0 } func (m *TestAllTypes) GetFieldName2() int32 { if m != nil { return m.FieldName2 } return 0 } func (m *TestAllTypes) GetXFieldName3() int32 { if m != nil { return m.XFieldName3 } return 0 } func (m *TestAllTypes) GetField_Name4_() int32 { if m != nil { return m.Field_Name4_ } return 0 } func (m *TestAllTypes) GetField0Name5() int32 { if m != nil { return m.Field0Name5 } return 0 } func (m *TestAllTypes) GetField_0Name6() int32 { if m != nil { return m.Field_0Name6 } return 0 } func (m *TestAllTypes) GetFieldName7() int32 { if m != nil { return m.FieldName7 } return 0 } func (m *TestAllTypes) GetFieldName8() int32 { if m != nil { return m.FieldName8 } return 0 } func (m *TestAllTypes) GetField_Name9() int32 { if m != nil { return m.Field_Name9 } return 0 } func (m *TestAllTypes) GetField_Name10() int32 { if m != nil { return m.Field_Name10 } return 0 } func (m *TestAllTypes) GetFIELD_NAME11() int32 { if m != nil { return m.FIELD_NAME11 } return 0 } func (m *TestAllTypes) GetFIELDName12() int32 { if m != nil { return m.FIELDName12 } return 0 } func (m *TestAllTypes) GetXFieldName13() int32 { if m != nil { return m.XFieldName13 } return 0 } func (m *TestAllTypes) GetX_FieldName14() int32 { if m != nil { return m.X_FieldName14 } return 0 } func (m *TestAllTypes) GetField_Name15() int32 { if m != nil { return m.Field_Name15 } return 0 } func (m *TestAllTypes) GetField__Name16() int32 { if m != nil { return m.Field__Name16 } return 0 } func (m *TestAllTypes) GetFieldName17__() int32 { if m != nil { return m.FieldName17__ } return 0 } func (m *TestAllTypes) GetFieldName18__() int32 { if m != nil { return m.FieldName18__ } return 0 } // XXX_OneofFuncs is for the internal use of the proto package. func (*TestAllTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _TestAllTypes_OneofMarshaler, _TestAllTypes_OneofUnmarshaler, _TestAllTypes_OneofSizer, []interface{}{ (*TestAllTypes_OneofUint32)(nil), (*TestAllTypes_OneofNestedMessage)(nil), (*TestAllTypes_OneofString)(nil), (*TestAllTypes_OneofBytes)(nil), (*TestAllTypes_OneofBool)(nil), (*TestAllTypes_OneofUint64)(nil), (*TestAllTypes_OneofFloat)(nil), (*TestAllTypes_OneofDouble)(nil), (*TestAllTypes_OneofEnum)(nil), } } func _TestAllTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*TestAllTypes) // oneof_field switch x := m.OneofField.(type) { case *TestAllTypes_OneofUint32: _ = b.EncodeVarint(111<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.OneofUint32)) case *TestAllTypes_OneofNestedMessage: _ = b.EncodeVarint(112<<3 | proto.WireBytes) if err := b.EncodeMessage(x.OneofNestedMessage); err != nil { return err } case *TestAllTypes_OneofString: _ = b.EncodeVarint(113<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.OneofString) case *TestAllTypes_OneofBytes: _ = b.EncodeVarint(114<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.OneofBytes) case *TestAllTypes_OneofBool: t := uint64(0) if x.OneofBool { t = 1 } _ = b.EncodeVarint(115<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *TestAllTypes_OneofUint64: _ = b.EncodeVarint(116<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.OneofUint64)) case *TestAllTypes_OneofFloat: _ = b.EncodeVarint(117<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.OneofFloat))) case *TestAllTypes_OneofDouble: _ = b.EncodeVarint(118<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.OneofDouble)) case *TestAllTypes_OneofEnum: _ = b.EncodeVarint(119<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.OneofEnum)) case nil: default: return fmt.Errorf("TestAllTypes.OneofField has unexpected type %T", x) } return nil } func _TestAllTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*TestAllTypes) switch tag { case 111: // oneof_field.oneof_uint32 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.OneofField = &TestAllTypes_OneofUint32{uint32(x)} return true, err case 112: // oneof_field.oneof_nested_message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(TestAllTypes_NestedMessage) err := b.DecodeMessage(msg) m.OneofField = &TestAllTypes_OneofNestedMessage{msg} return true, err case 113: // oneof_field.oneof_string if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.OneofField = &TestAllTypes_OneofString{x} return true, err case 114: // oneof_field.oneof_bytes if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.OneofField = &TestAllTypes_OneofBytes{x} return true, err case 115: // oneof_field.oneof_bool if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.OneofField = &TestAllTypes_OneofBool{x != 0} return true, err case 116: // oneof_field.oneof_uint64 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.OneofField = &TestAllTypes_OneofUint64{x} return true, err case 117: // oneof_field.oneof_float if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.OneofField = &TestAllTypes_OneofFloat{math.Float32frombits(uint32(x))} return true, err case 118: // oneof_field.oneof_double if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.OneofField = &TestAllTypes_OneofDouble{math.Float64frombits(x)} return true, err case 119: // oneof_field.oneof_enum if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.OneofField = &TestAllTypes_OneofEnum{TestAllTypes_NestedEnum(x)} return true, err default: return false, nil } } func _TestAllTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*TestAllTypes) // oneof_field switch x := m.OneofField.(type) { case *TestAllTypes_OneofUint32: n += proto.SizeVarint(111<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.OneofUint32)) case *TestAllTypes_OneofNestedMessage: s := proto.Size(x.OneofNestedMessage) n += proto.SizeVarint(112<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *TestAllTypes_OneofString: n += proto.SizeVarint(113<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.OneofString))) n += len(x.OneofString) case *TestAllTypes_OneofBytes: n += proto.SizeVarint(114<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.OneofBytes))) n += len(x.OneofBytes) case *TestAllTypes_OneofBool: n += proto.SizeVarint(115<<3 | proto.WireVarint) n += 1 case *TestAllTypes_OneofUint64: n += proto.SizeVarint(116<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.OneofUint64)) case *TestAllTypes_OneofFloat: n += proto.SizeVarint(117<<3 | proto.WireFixed32) n += 4 case *TestAllTypes_OneofDouble: n += proto.SizeVarint(118<<3 | proto.WireFixed64) n += 8 case *TestAllTypes_OneofEnum: n += proto.SizeVarint(119<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.OneofEnum)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type TestAllTypes_NestedMessage struct { A int32 `protobuf:"varint,1,opt,name=a,proto3" json:"a,omitempty"` Corecursive *TestAllTypes `protobuf:"bytes,2,opt,name=corecursive" json:"corecursive,omitempty"` } func (m *TestAllTypes_NestedMessage) Reset() { *m = TestAllTypes_NestedMessage{} } func (m *TestAllTypes_NestedMessage) String() string { return proto.CompactTextString(m) } func (*TestAllTypes_NestedMessage) ProtoMessage() {} func (*TestAllTypes_NestedMessage) Descriptor() ([]byte, []int) { return fileDescriptorConformance, []int{2, 0} } func (m *TestAllTypes_NestedMessage) GetA() int32 { if m != nil { return m.A } return 0 } func (m *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes { if m != nil { return m.Corecursive } return nil } type ForeignMessage struct { C int32 `protobuf:"varint,1,opt,name=c,proto3" json:"c,omitempty"` } func (m *ForeignMessage) Reset() { *m = ForeignMessage{} } func (m *ForeignMessage) String() string { return proto.CompactTextString(m) } func (*ForeignMessage) ProtoMessage() {} func (*ForeignMessage) Descriptor() ([]byte, []int) { return fileDescriptorConformance, []int{3} } func (m *ForeignMessage) GetC() int32 { if m != nil { return m.C } return 0 } func init() { proto.RegisterType((*ConformanceRequest)(nil), "conformance.ConformanceRequest") proto.RegisterType((*ConformanceResponse)(nil), "conformance.ConformanceResponse") proto.RegisterType((*TestAllTypes)(nil), "conformance.TestAllTypes") proto.RegisterType((*TestAllTypes_NestedMessage)(nil), "conformance.TestAllTypes.NestedMessage") proto.RegisterType((*ForeignMessage)(nil), "conformance.ForeignMessage") proto.RegisterEnum("conformance.WireFormat", WireFormat_name, WireFormat_value) proto.RegisterEnum("conformance.ForeignEnum", ForeignEnum_name, ForeignEnum_value) proto.RegisterEnum("conformance.TestAllTypes_NestedEnum", TestAllTypes_NestedEnum_name, TestAllTypes_NestedEnum_value) } func init() { proto.RegisterFile("conformance_proto/conformance.proto", fileDescriptorConformance) } var fileDescriptorConformance = []byte{ // 2737 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x5a, 0xd9, 0x72, 0xdb, 0xc8, 0xd5, 0x16, 0x08, 0x59, 0x4b, 0x93, 0x92, 0xa8, 0xd6, 0xd6, 0x96, 0x5d, 0x63, 0x58, 0xb2, 0x7f, 0xd3, 0xf6, 0x8c, 0xac, 0x05, 0x86, 0x65, 0xcf, 0x3f, 0x8e, 0x45, 0x9b, 0xb4, 0xe4, 0x8c, 0x25, 0x17, 0x64, 0x8d, 0xab, 0x9c, 0x0b, 0x06, 0xa6, 0x20, 0x15, 0xc7, 0x24, 0xc1, 0x01, 0x48, 0x4f, 0x94, 0xcb, 0xbc, 0x41, 0xf6, 0x7d, 0xbd, 0xcf, 0x7a, 0x93, 0xa4, 0x92, 0xab, 0x54, 0x6e, 0xb2, 0x27, 0x95, 0x3d, 0x79, 0x85, 0xbc, 0x43, 0x52, 0xbd, 0xa2, 0xbb, 0x01, 0x50, 0xf4, 0x54, 0x0d, 0x25, 0x1e, 0x7c, 0xfd, 0x9d, 0xd3, 0xe7, 0x1c, 0x7c, 0x2d, 0x1c, 0x18, 0x2c, 0xd7, 0x83, 0xf6, 0x51, 0x10, 0xb6, 0xbc, 0x76, 0xdd, 0xaf, 0x75, 0xc2, 0xa0, 0x1b, 0xdc, 0x90, 0x2c, 0x2b, 0xc4, 0x02, 0xf3, 0x92, 0x69, 0xf1, 0xec, 0x71, 0x10, 0x1c, 0x37, 0xfd, 0x1b, 0xe4, 0xd2, 0x8b, 0xde, 0xd1, 0x0d, 0xaf, 0x7d, 0x42, 0x71, 0x8b, 0x6f, 0xe8, 0x97, 0x0e, 0x7b, 0xa1, 0xd7, 0x6d, 0x04, 0x6d, 0x76, 0xdd, 0xd2, 0xaf, 0x1f, 0x35, 0xfc, 0xe6, 0x61, 0xad, 0xe5, 0x45, 0x2f, 0x19, 0xe2, 0xbc, 0x8e, 0x88, 0xba, 0x61, 0xaf, 0xde, 0x65, 0x57, 0x2f, 0xe8, 0x57, 0xbb, 0x8d, 0x96, 0x1f, 0x75, 0xbd, 0x56, 0x27, 0x2b, 0x80, 0x0f, 0x43, 0xaf, 0xd3, 0xf1, 0xc3, 0x88, 0x5e, 0x5f, 0xfa, 0x85, 0x01, 0xe0, 0xfd, 0x78, 0x2f, 0xae, 0xff, 0x41, 0xcf, 0x8f, 0xba, 0xf0, 0x3a, 0x28, 0xf2, 0x15, 0xb5, 0x8e, 0x77, 0xd2, 0x0c, 0xbc, 0x43, 0x64, 0x58, 0x46, 0xa9, 0xb0, 0x3d, 0xe4, 0x4e, 0xf1, 0x2b, 0x4f, 0xe8, 0x05, 0xb8, 0x0c, 0x0a, 0xef, 0x47, 0x41, 0x5b, 0x00, 0x73, 0x96, 0x51, 0x1a, 0xdf, 0x1e, 0x72, 0xf3, 0xd8, 0xca, 0x41, 0x7b, 0x60, 0x21, 0xa4, 0xe4, 0xfe, 0x61, 0x2d, 0xe8, 0x75, 0x3b, 0xbd, 0x6e, 0x8d, 0x78, 0xed, 0x22, 0xd3, 0x32, 0x4a, 0x93, 0xeb, 0x0b, 0x2b, 0x72, 0x9a, 0x9f, 0x35, 0x42, 0xbf, 0x4a, 0x2e, 0xbb, 0x73, 0x62, 0xdd, 0x1e, 0x59, 0x46, 0xcd, 0xe5, 0x71, 0x30, 0xca, 0x1c, 0x2e, 0x7d, 0x2a, 0x07, 0x66, 0x94, 0x4d, 0x44, 0x9d, 0xa0, 0x1d, 0xf9, 0xf0, 0x22, 0xc8, 0x77, 0xbc, 0x30, 0xf2, 0x6b, 0x7e, 0x18, 0x06, 0x21, 0xd9, 0x00, 0x8e, 0x0b, 0x10, 0x63, 0x05, 0xdb, 0xe0, 0x55, 0x30, 0x15, 0xf9, 0x61, 0xc3, 0x6b, 0x36, 0x3e, 0xc9, 0x61, 0x23, 0x0c, 0x36, 0x29, 0x2e, 0x50, 0xe8, 0x65, 0x30, 0x11, 0xf6, 0xda, 0x38, 0xc1, 0x0c, 0xc8, 0xf7, 0x59, 0x60, 0x66, 0x0a, 0x4b, 0x4b, 0x9d, 0x39, 0x68, 0xea, 0x86, 0xd3, 0x52, 0xb7, 0x08, 0x46, 0xa3, 0x97, 0x8d, 0x4e, 0xc7, 0x3f, 0x44, 0x67, 0xd8, 0x75, 0x6e, 0x28, 0x8f, 0x81, 0x91, 0xd0, 0x8f, 0x7a, 0xcd, 0xee, 0xd2, 0x7f, 0xaa, 0xa0, 0xf0, 0xd4, 0x8f, 0xba, 0x5b, 0xcd, 0xe6, 0xd3, 0x93, 0x8e, 0x1f, 0xc1, 0xcb, 0x60, 0x32, 0xe8, 0xe0, 0x5e, 0xf3, 0x9a, 0xb5, 0x46, 0xbb, 0xbb, 0xb1, 0x4e, 0x12, 0x70, 0xc6, 0x9d, 0xe0, 0xd6, 0x1d, 0x6c, 0xd4, 0x61, 0x8e, 0x4d, 0xf6, 0x65, 0x2a, 0x30, 0xc7, 0x86, 0x57, 0xc0, 0x94, 0x80, 0xf5, 0x28, 0x1d, 0xde, 0xd5, 0x84, 0x2b, 0x56, 0x1f, 0x10, 0x6b, 0x02, 0xe8, 0xd8, 0x64, 0x57, 0xc3, 0x2a, 0x50, 0x63, 0x8c, 0x28, 0x23, 0xde, 0xde, 0x74, 0x0c, 0xdc, 0x4f, 0x32, 0x46, 0x94, 0x11, 0xd7, 0x08, 0xaa, 0x40, 0xc7, 0x86, 0x57, 0x41, 0x51, 0x00, 0x8f, 0x1a, 0x9f, 0xf0, 0x0f, 0x37, 0xd6, 0xd1, 0xa8, 0x65, 0x94, 0x46, 0x5d, 0x41, 0x50, 0xa5, 0xe6, 0x24, 0xd4, 0xb1, 0xd1, 0x98, 0x65, 0x94, 0x46, 0x34, 0xa8, 0x63, 0xc3, 0xeb, 0x60, 0x3a, 0x76, 0xcf, 0x69, 0xc7, 0x2d, 0xa3, 0x34, 0xe5, 0x0a, 0x8e, 0x7d, 0x66, 0x4f, 0x01, 0x3b, 0x36, 0x02, 0x96, 0x51, 0x2a, 0xea, 0x60, 0xc7, 0x56, 0x52, 0x7f, 0xd4, 0x0c, 0xbc, 0x2e, 0xca, 0x5b, 0x46, 0x29, 0x17, 0xa7, 0xbe, 0x8a, 0x8d, 0xca, 0xfe, 0x0f, 0x83, 0xde, 0x8b, 0xa6, 0x8f, 0x0a, 0x96, 0x51, 0x32, 0xe2, 0xfd, 0x3f, 0x20, 0x56, 0xb8, 0x0c, 0xc4, 0xca, 0xda, 0x8b, 0x20, 0x68, 0xa2, 0x09, 0xcb, 0x28, 0x8d, 0xb9, 0x05, 0x6e, 0x2c, 0x07, 0x41, 0x53, 0xcd, 0x66, 0x37, 0x6c, 0xb4, 0x8f, 0xd1, 0x24, 0xee, 0x2a, 0x29, 0x9b, 0xc4, 0xaa, 0x44, 0xf7, 0xe2, 0xa4, 0xeb, 0x47, 0x68, 0x0a, 0xb7, 0x71, 0x1c, 0x5d, 0x19, 0x1b, 0x61, 0x0d, 0x2c, 0x08, 0x58, 0x9b, 0xde, 0xde, 0x2d, 0x3f, 0x8a, 0xbc, 0x63, 0x1f, 0x41, 0xcb, 0x28, 0xe5, 0xd7, 0xaf, 0x28, 0x37, 0xb6, 0xdc, 0xa2, 0x2b, 0xbb, 0x04, 0xff, 0x98, 0xc2, 0xdd, 0x39, 0xce, 0xa3, 0x98, 0xe1, 0x01, 0x40, 0x71, 0x96, 0x82, 0xd0, 0x6f, 0x1c, 0xb7, 0x85, 0x87, 0x19, 0xe2, 0xe1, 0x9c, 0xe2, 0xa1, 0x4a, 0x31, 0x9c, 0x75, 0x5e, 0x24, 0x53, 0xb1, 0xc3, 0xf7, 0xc0, 0xac, 0x1e, 0xb7, 0xdf, 0xee, 0xb5, 0xd0, 0x1c, 0x51, 0xa3, 0x4b, 0xa7, 0x05, 0x5d, 0x69, 0xf7, 0x5a, 0x2e, 0x54, 0x23, 0xc6, 0x36, 0xf8, 0x2e, 0x98, 0x4b, 0x84, 0x4b, 0x88, 0xe7, 0x09, 0x31, 0x4a, 0x8b, 0x95, 0x90, 0xcd, 0x68, 0x81, 0x12, 0x36, 0x47, 0x62, 0xa3, 0xd5, 0xaa, 0x75, 0x1a, 0x7e, 0xdd, 0x47, 0x08, 0xd7, 0xac, 0x9c, 0x1b, 0xcb, 0xc5, 0xeb, 0x68, 0xdd, 0x9e, 0xe0, 0xcb, 0xf0, 0x8a, 0xd4, 0x0a, 0xf5, 0x20, 0x3c, 0x44, 0x67, 0x19, 0xde, 0x88, 0xdb, 0xe1, 0x7e, 0x10, 0x1e, 0xc2, 0x2a, 0x98, 0x0e, 0xfd, 0x7a, 0x2f, 0x8c, 0x1a, 0xaf, 0x7c, 0x91, 0xd6, 0x73, 0x24, 0xad, 0x67, 0x33, 0x73, 0xe0, 0x16, 0xc5, 0x1a, 0x9e, 0xce, 0xcb, 0x60, 0x32, 0xf4, 0x3b, 0xbe, 0x87, 0xf3, 0x48, 0x6f, 0xe6, 0x0b, 0x96, 0x89, 0xd5, 0x86, 0x5b, 0x85, 0xda, 0xc8, 0x30, 0xc7, 0x46, 0x96, 0x65, 0x62, 0xb5, 0x91, 0x60, 0x54, 0x1b, 0x04, 0x8c, 0xa9, 0xcd, 0x45, 0xcb, 0xc4, 0x6a, 0xc3, 0xcd, 0xb1, 0xda, 0x28, 0x40, 0xc7, 0x46, 0x4b, 0x96, 0x89, 0xd5, 0x46, 0x06, 0x6a, 0x8c, 0x4c, 0x6d, 0x96, 0x2d, 0x13, 0xab, 0x0d, 0x37, 0xef, 0x27, 0x19, 0x99, 0xda, 0x5c, 0xb2, 0x4c, 0xac, 0x36, 0x32, 0x90, 0xaa, 0x8d, 0x00, 0x72, 0x59, 0xb8, 0x6c, 0x99, 0x58, 0x6d, 0xb8, 0x5d, 0x52, 0x1b, 0x15, 0xea, 0xd8, 0xe8, 0xff, 0x2c, 0x13, 0xab, 0x8d, 0x02, 0xa5, 0x6a, 0x13, 0xbb, 0xe7, 0xb4, 0x57, 0x2c, 0x13, 0xab, 0x8d, 0x08, 0x40, 0x52, 0x1b, 0x0d, 0xec, 0xd8, 0xa8, 0x64, 0x99, 0x58, 0x6d, 0x54, 0x30, 0x55, 0x9b, 0x38, 0x08, 0xa2, 0x36, 0x57, 0x2d, 0x13, 0xab, 0x8d, 0x08, 0x81, 0xab, 0x8d, 0x80, 0x31, 0xb5, 0xb9, 0x66, 0x99, 0x58, 0x6d, 0xb8, 0x39, 0x56, 0x1b, 0x01, 0x24, 0x6a, 0x73, 0xdd, 0x32, 0xb1, 0xda, 0x70, 0x23, 0x57, 0x9b, 0x38, 0x42, 0xaa, 0x36, 0x6f, 0x5a, 0x26, 0x56, 0x1b, 0x11, 0x9f, 0x50, 0x9b, 0x98, 0x8d, 0xa8, 0xcd, 0x5b, 0x96, 0x89, 0xd5, 0x46, 0xd0, 0x71, 0xb5, 0x11, 0x30, 0x4d, 0x6d, 0x56, 0x2d, 0xf3, 0xb5, 0xd4, 0x86, 0xf3, 0x24, 0xd4, 0x26, 0xce, 0x92, 0xa6, 0x36, 0x6b, 0xc4, 0x43, 0x7f, 0xb5, 0x11, 0xc9, 0x4c, 0xa8, 0x8d, 0x1e, 0x37, 0x11, 0x85, 0x0d, 0xcb, 0x1c, 0x5c, 0x6d, 0xd4, 0x88, 0xb9, 0xda, 0x24, 0xc2, 0x25, 0xc4, 0x36, 0x21, 0xee, 0xa3, 0x36, 0x5a, 0xa0, 0x5c, 0x6d, 0xb4, 0x6a, 0x31, 0xb5, 0x71, 0x70, 0xcd, 0xa8, 0xda, 0xa8, 0x75, 0x13, 0x6a, 0x23, 0xd6, 0x11, 0xb5, 0xb9, 0xc5, 0xf0, 0x46, 0xdc, 0x0e, 0x44, 0x6d, 0x9e, 0x82, 0xa9, 0x96, 0xd7, 0xa1, 0x02, 0xc1, 0x64, 0x62, 0x93, 0x24, 0xf5, 0xcd, 0xec, 0x0c, 0x3c, 0xf6, 0x3a, 0x44, 0x3b, 0xc8, 0x47, 0xa5, 0xdd, 0x0d, 0x4f, 0xdc, 0x89, 0x96, 0x6c, 0x93, 0x58, 0x1d, 0x9b, 0xa9, 0xca, 0xed, 0xc1, 0x58, 0x1d, 0x9b, 0x7c, 0x28, 0xac, 0xcc, 0x06, 0x9f, 0x83, 0x69, 0xcc, 0x4a, 0xe5, 0x87, 0xab, 0xd0, 0x1d, 0xc2, 0xbb, 0xd2, 0x97, 0x97, 0x4a, 0x13, 0xfd, 0xa4, 0xcc, 0x38, 0x3c, 0xd9, 0x2a, 0x73, 0x3b, 0x36, 0x17, 0xae, 0xb7, 0x07, 0xe4, 0x76, 0x6c, 0xfa, 0xa9, 0x72, 0x73, 0x2b, 0xe7, 0xa6, 0x22, 0xc7, 0xb5, 0xee, 0xff, 0x07, 0xe0, 0xa6, 0x02, 0xb8, 0xaf, 0xc5, 0x2d, 0x5b, 0x65, 0x6e, 0xc7, 0xe6, 0xf2, 0xf8, 0xce, 0x80, 0xdc, 0x8e, 0xbd, 0xaf, 0xc5, 0x2d, 0x5b, 0xe1, 0xc7, 0xc1, 0x0c, 0xe6, 0x66, 0xda, 0x26, 0x24, 0xf5, 0x2e, 0x61, 0x5f, 0xed, 0xcb, 0xce, 0x74, 0x96, 0xfd, 0xa0, 0xfc, 0x38, 0x50, 0xd5, 0xae, 0x78, 0x70, 0x6c, 0xa1, 0xc4, 0x1f, 0x19, 0xd4, 0x83, 0x63, 0xb3, 0x1f, 0x9a, 0x07, 0x61, 0x87, 0x47, 0x60, 0x8e, 0xe4, 0x87, 0x6f, 0x42, 0x28, 0xf8, 0x3d, 0xe2, 0x63, 0xbd, 0x7f, 0x8e, 0x18, 0x98, 0xff, 0xa4, 0x5e, 0x70, 0xc8, 0xfa, 0x15, 0xd5, 0x0f, 0xae, 0x04, 0xdf, 0xcb, 0xd6, 0xc0, 0x7e, 0x1c, 0x9b, 0xff, 0xd4, 0xfd, 0xc4, 0x57, 0xd4, 0xfb, 0x95, 0x1e, 0x1a, 0xe5, 0x41, 0xef, 0x57, 0x72, 0x9c, 0x68, 0xf7, 0x2b, 0x3d, 0x62, 0x9e, 0x81, 0x62, 0xcc, 0xca, 0xce, 0x98, 0xfb, 0x84, 0xf6, 0xad, 0xd3, 0x69, 0xe9, 0xe9, 0x43, 0x79, 0x27, 0x5b, 0x8a, 0x11, 0xee, 0x02, 0xec, 0x89, 0x9c, 0x46, 0xf4, 0x48, 0x7a, 0x40, 0x58, 0xaf, 0xf5, 0x65, 0xc5, 0xe7, 0x14, 0xfe, 0x9f, 0x52, 0xe6, 0x5b, 0xb1, 0x45, 0xb4, 0x3b, 0x95, 0x42, 0x76, 0x7e, 0x55, 0x06, 0x69, 0x77, 0x02, 0xa5, 0x9f, 0x52, 0xbb, 0x4b, 0x56, 0x9e, 0x04, 0xc6, 0x4d, 0x8f, 0xbc, 0xea, 0x00, 0x49, 0xa0, 0xcb, 0xc9, 0x69, 0x18, 0x27, 0x41, 0x32, 0xc2, 0x0e, 0x38, 0x2b, 0x11, 0x6b, 0x87, 0xe4, 0x43, 0xe2, 0xe1, 0xe6, 0x00, 0x1e, 0x94, 0x63, 0x91, 0x7a, 0x9a, 0x6f, 0xa5, 0x5e, 0x84, 0x11, 0x58, 0x94, 0x3c, 0xea, 0xa7, 0xe6, 0x36, 0x71, 0xe9, 0x0c, 0xe0, 0x52, 0x3d, 0x33, 0xa9, 0xcf, 0x85, 0x56, 0xfa, 0x55, 0x78, 0x0c, 0xe6, 0x93, 0xdb, 0x24, 0x47, 0xdf, 0xce, 0x20, 0xf7, 0x80, 0xb4, 0x0d, 0x7c, 0xf4, 0x49, 0xf7, 0x80, 0x76, 0x05, 0xbe, 0x0f, 0x16, 0x52, 0x76, 0x47, 0x3c, 0x3d, 0x22, 0x9e, 0x36, 0x06, 0xdf, 0x5a, 0xec, 0x6a, 0xb6, 0x95, 0x72, 0x09, 0x2e, 0x83, 0x42, 0xd0, 0xf6, 0x83, 0x23, 0x7e, 0xdc, 0x04, 0xf8, 0x11, 0x7b, 0x7b, 0xc8, 0xcd, 0x13, 0x2b, 0x3b, 0x3c, 0x3e, 0x06, 0x66, 0x29, 0x48, 0xab, 0x6d, 0xe7, 0xb5, 0x1e, 0xb7, 0xb6, 0x87, 0x5c, 0x48, 0x68, 0xd4, 0x5a, 0x8a, 0x08, 0x58, 0xb7, 0x7f, 0xc0, 0x27, 0x12, 0xc4, 0xca, 0x7a, 0xf7, 0x22, 0xa0, 0x5f, 0x59, 0xdb, 0x86, 0x6c, 0xbc, 0x01, 0x88, 0x91, 0x76, 0xe1, 0x05, 0x00, 0x18, 0x04, 0xdf, 0x87, 0x11, 0x7e, 0x10, 0xdd, 0x1e, 0x72, 0xc7, 0x29, 0x02, 0xdf, 0x5b, 0xca, 0x56, 0x1d, 0x1b, 0x75, 0x2d, 0xa3, 0x34, 0xac, 0x6c, 0xd5, 0xb1, 0x63, 0x47, 0x54, 0x7b, 0x7a, 0xf8, 0xf1, 0x58, 0x38, 0xa2, 0x62, 0x22, 0x78, 0x98, 0x90, 0xbc, 0xc2, 0x8f, 0xc6, 0x82, 0x87, 0x09, 0x43, 0x85, 0x47, 0x43, 0xca, 0xf6, 0xe1, 0xe0, 0x8f, 0x78, 0x22, 0x66, 0x52, 0x9e, 0x3d, 0xe9, 0x69, 0x8c, 0x88, 0x0c, 0x9b, 0xa6, 0xa1, 0x5f, 0x19, 0x24, 0xf7, 0x8b, 0x2b, 0x74, 0xdc, 0xb6, 0xc2, 0xe7, 0x3c, 0x2b, 0x78, 0xab, 0xef, 0x79, 0xcd, 0x9e, 0x1f, 0x3f, 0xa6, 0x61, 0xd3, 0x33, 0xba, 0x0e, 0xba, 0x60, 0x5e, 0x9d, 0xd1, 0x08, 0xc6, 0x5f, 0x1b, 0xec, 0xd1, 0x56, 0x67, 0x24, 0x7a, 0x47, 0x29, 0x67, 0x95, 0x49, 0x4e, 0x06, 0xa7, 0x63, 0x0b, 0xce, 0xdf, 0xf4, 0xe1, 0x74, 0xec, 0x24, 0xa7, 0x63, 0x73, 0xce, 0x03, 0xe9, 0x21, 0xbf, 0xa7, 0x06, 0xfa, 0x5b, 0x4a, 0x7a, 0x3e, 0x41, 0x7a, 0x20, 0x45, 0x3a, 0xa7, 0x0e, 0x89, 0xb2, 0x68, 0xa5, 0x58, 0x7f, 0xd7, 0x8f, 0x96, 0x07, 0x3b, 0xa7, 0x8e, 0x94, 0xd2, 0x32, 0x40, 0x1a, 0x47, 0xb0, 0xfe, 0x3e, 0x2b, 0x03, 0xa4, 0x97, 0xb4, 0x0c, 0x10, 0x5b, 0x5a, 0xa8, 0xb4, 0xd3, 0x04, 0xe9, 0x1f, 0xb2, 0x42, 0xa5, 0xcd, 0xa7, 0x85, 0x4a, 0x8d, 0x69, 0xb4, 0x4c, 0x61, 0x38, 0xed, 0x1f, 0xb3, 0x68, 0xe9, 0x4d, 0xa8, 0xd1, 0x52, 0x63, 0x5a, 0x06, 0xc8, 0x3d, 0x2a, 0x58, 0xff, 0x94, 0x95, 0x01, 0x72, 0xdb, 0x6a, 0x19, 0x20, 0x36, 0xce, 0xb9, 0x27, 0x3d, 0x1c, 0x28, 0xcd, 0xff, 0x67, 0x83, 0xc8, 0x60, 0xdf, 0xe6, 0x97, 0x1f, 0x0a, 0xa5, 0x20, 0xd5, 0x91, 0x81, 0x60, 0xfc, 0x8b, 0xc1, 0x9e, 0xb4, 0xfa, 0x35, 0xbf, 0x32, 0x58, 0xc8, 0xe0, 0x94, 0x1a, 0xea, 0xaf, 0x7d, 0x38, 0x45, 0xf3, 0x2b, 0x53, 0x08, 0xa9, 0x46, 0xda, 0x30, 0x42, 0x90, 0xfe, 0x8d, 0x92, 0x9e, 0xd2, 0xfc, 0xea, 0xcc, 0x22, 0x8b, 0x56, 0x8a, 0xf5, 0xef, 0xfd, 0x68, 0x45, 0xf3, 0xab, 0x13, 0x8e, 0xb4, 0x0c, 0xa8, 0xcd, 0xff, 0x8f, 0xac, 0x0c, 0xc8, 0xcd, 0xaf, 0x0c, 0x03, 0xd2, 0x42, 0xd5, 0x9a, 0xff, 0x9f, 0x59, 0xa1, 0x2a, 0xcd, 0xaf, 0x8e, 0x0e, 0xd2, 0x68, 0xb5, 0xe6, 0xff, 0x57, 0x16, 0xad, 0xd2, 0xfc, 0xea, 0xb3, 0x68, 0x5a, 0x06, 0xd4, 0xe6, 0xff, 0x77, 0x56, 0x06, 0xe4, 0xe6, 0x57, 0x06, 0x0e, 0x9c, 0xf3, 0xa1, 0x34, 0xd7, 0xe5, 0xef, 0x70, 0xd0, 0x77, 0x73, 0x6c, 0x4e, 0x96, 0xd8, 0x3b, 0x43, 0xc4, 0x33, 0x5f, 0x6e, 0x81, 0x8f, 0x80, 0x18, 0x1a, 0xd6, 0xc4, 0xcb, 0x1a, 0xf4, 0xbd, 0x5c, 0xc6, 0xf9, 0xf1, 0x94, 0x43, 0x5c, 0xe1, 0x5f, 0x98, 0xe0, 0x47, 0xc1, 0x8c, 0x34, 0xc4, 0xe6, 0x2f, 0x8e, 0xd0, 0xf7, 0xb3, 0xc8, 0xaa, 0x18, 0xf3, 0xd8, 0x8b, 0x5e, 0xc6, 0x64, 0xc2, 0x04, 0xb7, 0xd4, 0xb9, 0x70, 0xaf, 0xde, 0x45, 0x3f, 0xa0, 0x44, 0x0b, 0x69, 0x45, 0xe8, 0xd5, 0xbb, 0xca, 0xc4, 0xb8, 0x57, 0xef, 0xc2, 0x4d, 0x20, 0x66, 0x8b, 0x35, 0xaf, 0x7d, 0x82, 0x7e, 0x48, 0xd7, 0xcf, 0x26, 0xd6, 0x6f, 0xb5, 0x4f, 0xdc, 0x3c, 0x87, 0x6e, 0xb5, 0x4f, 0xe0, 0x5d, 0x69, 0xd6, 0xfc, 0x0a, 0x97, 0x01, 0xfd, 0x88, 0xae, 0x9d, 0x4f, 0xac, 0xa5, 0x55, 0x12, 0xd3, 0x4d, 0xf2, 0x15, 0x97, 0x27, 0x6e, 0x50, 0x5e, 0x9e, 0x1f, 0xe7, 0x48, 0xb5, 0xfb, 0x95, 0x47, 0xf4, 0xa5, 0x54, 0x1e, 0x41, 0x14, 0x97, 0xe7, 0x27, 0xb9, 0x0c, 0x85, 0x93, 0xca, 0xc3, 0x97, 0xc5, 0xe5, 0x91, 0xb9, 0x48, 0x79, 0x48, 0x75, 0x7e, 0x9a, 0xc5, 0x25, 0x55, 0x27, 0x1e, 0x0a, 0xb2, 0x55, 0xb8, 0x3a, 0xf2, 0xad, 0x82, 0xab, 0xf3, 0x4b, 0x4a, 0x94, 0x5d, 0x1d, 0xe9, 0xee, 0x60, 0xd5, 0x11, 0x14, 0xb8, 0x3a, 0x3f, 0xa3, 0xeb, 0x33, 0xaa, 0xc3, 0xa1, 0xac, 0x3a, 0x62, 0x25, 0xad, 0xce, 0xcf, 0xe9, 0xda, 0xcc, 0xea, 0x70, 0x38, 0xad, 0xce, 0x05, 0x00, 0xc8, 0xfe, 0xdb, 0x5e, 0xcb, 0x5f, 0x43, 0x9f, 0x36, 0xc9, 0x6b, 0x28, 0xc9, 0x04, 0x2d, 0x90, 0xa7, 0xfd, 0x8b, 0xbf, 0xae, 0xa3, 0xcf, 0xc8, 0x88, 0x5d, 0x6c, 0x82, 0x17, 0x41, 0xa1, 0x16, 0x43, 0x36, 0xd0, 0x67, 0x19, 0xa4, 0xca, 0x21, 0x1b, 0x70, 0x09, 0x4c, 0x50, 0x04, 0x81, 0xd8, 0x35, 0xf4, 0x39, 0x9d, 0x86, 0xfc, 0x3d, 0x49, 0xbe, 0xad, 0x62, 0xc8, 0x4d, 0xf4, 0x79, 0x8a, 0x90, 0x6d, 0x70, 0x99, 0xd3, 0xac, 0x12, 0x1e, 0x07, 0x7d, 0x41, 0x01, 0x61, 0x1e, 0x47, 0xec, 0x08, 0x7f, 0xbb, 0x85, 0xbe, 0xa8, 0x3b, 0xba, 0x85, 0x01, 0x22, 0xb4, 0x4d, 0xf4, 0x25, 0x3d, 0xda, 0xcd, 0x78, 0xcb, 0xf8, 0xeb, 0x6d, 0xf4, 0x65, 0x9d, 0xe2, 0x36, 0x5c, 0x02, 0x85, 0xaa, 0x40, 0xac, 0xad, 0xa2, 0xaf, 0xb0, 0x38, 0x04, 0xc9, 0xda, 0x2a, 0xc1, 0xec, 0x54, 0xde, 0x7d, 0x50, 0xdb, 0xdd, 0x7a, 0x5c, 0x59, 0x5b, 0x43, 0x5f, 0xe5, 0x18, 0x6c, 0xa4, 0xb6, 0x18, 0x43, 0x72, 0xbd, 0x8e, 0xbe, 0xa6, 0x60, 0x88, 0x0d, 0x5e, 0x02, 0x93, 0x35, 0x29, 0xbf, 0x6b, 0x1b, 0xe8, 0xeb, 0x09, 0x6f, 0x1b, 0x14, 0x55, 0x8d, 0x51, 0x36, 0xfa, 0x46, 0x02, 0x65, 0xc7, 0x09, 0xa4, 0xa0, 0x9b, 0xe8, 0x9b, 0x72, 0x02, 0x09, 0x48, 0xca, 0x32, 0xdd, 0x9d, 0x83, 0xbe, 0x95, 0x00, 0x39, 0xd8, 0x9f, 0x14, 0xd3, 0xad, 0x5a, 0x0d, 0x7d, 0x3b, 0x81, 0xba, 0x85, 0x51, 0x52, 0x4c, 0x9b, 0xb5, 0x1a, 0xfa, 0x4e, 0x22, 0xaa, 0xcd, 0xc5, 0xe7, 0x60, 0x42, 0x7d, 0xd0, 0x29, 0x00, 0xc3, 0x63, 0x6f, 0x44, 0x0d, 0x0f, 0xbe, 0x0d, 0xf2, 0xf5, 0x40, 0xbc, 0xd4, 0x40, 0xb9, 0xd3, 0x5e, 0x80, 0xc8, 0xe8, 0xc5, 0x7b, 0x00, 0x26, 0x87, 0x94, 0xb0, 0x08, 0xcc, 0x97, 0xfe, 0x09, 0x73, 0x81, 0x7f, 0x85, 0xb3, 0xe0, 0x0c, 0xbd, 0x7d, 0x72, 0xc4, 0x46, 0xbf, 0xdc, 0xc9, 0x6d, 0x1a, 0x31, 0x83, 0x3c, 0x90, 0x94, 0x19, 0xcc, 0x14, 0x06, 0x53, 0x66, 0x28, 0x83, 0xd9, 0xb4, 0xd1, 0xa3, 0xcc, 0x31, 0x91, 0xc2, 0x31, 0x91, 0xce, 0xa1, 0x8c, 0x18, 0x65, 0x8e, 0xe1, 0x14, 0x8e, 0xe1, 0x24, 0x47, 0x62, 0x94, 0x28, 0x73, 0x4c, 0xa7, 0x70, 0x4c, 0xa7, 0x73, 0x28, 0x23, 0x43, 0x99, 0x03, 0xa6, 0x70, 0x40, 0x99, 0xe3, 0x01, 0x98, 0x4f, 0x1f, 0x0c, 0xca, 0x2c, 0xa3, 0x29, 0x2c, 0xa3, 0x19, 0x2c, 0xea, 0xf0, 0x4f, 0x66, 0x19, 0x49, 0x61, 0x19, 0x91, 0x59, 0xaa, 0x00, 0x65, 0x8d, 0xf7, 0x64, 0x9e, 0xa9, 0x14, 0x9e, 0xa9, 0x2c, 0x1e, 0x6d, 0x7c, 0x27, 0xf3, 0x14, 0x53, 0x78, 0x8a, 0xa9, 0xdd, 0x26, 0x0f, 0xe9, 0x4e, 0xeb, 0xd7, 0x9c, 0xcc, 0xb0, 0x05, 0x66, 0x52, 0xe6, 0x71, 0xa7, 0x51, 0x18, 0x32, 0xc5, 0x5d, 0x50, 0xd4, 0x87, 0x6f, 0xf2, 0xfa, 0xb1, 0x94, 0xf5, 0x63, 0x29, 0x4d, 0xa2, 0x0f, 0xda, 0x64, 0x8e, 0xf1, 0x14, 0x8e, 0xf1, 0xe4, 0x36, 0xf4, 0x89, 0xda, 0x69, 0x14, 0x05, 0x99, 0x22, 0x04, 0xe7, 0xfa, 0x8c, 0xcc, 0x52, 0xa8, 0xde, 0x91, 0xa9, 0x5e, 0xe3, 0x7d, 0x95, 0xe4, 0xf3, 0x18, 0x9c, 0xef, 0x37, 0x33, 0x4b, 0x71, 0xba, 0xa6, 0x3a, 0xed, 0xfb, 0x0a, 0x4b, 0x72, 0xd4, 0xa4, 0x0d, 0x97, 0x36, 0x2b, 0x4b, 0x71, 0x72, 0x47, 0x76, 0x32, 0xe8, 0x4b, 0x2d, 0xc9, 0x9b, 0x07, 0xce, 0x66, 0xce, 0xcb, 0x52, 0xdc, 0xad, 0xa8, 0xee, 0xb2, 0x5f, 0x75, 0xc5, 0x2e, 0x96, 0x6e, 0x03, 0x20, 0x4d, 0xf6, 0x46, 0x81, 0x59, 0xdd, 0xdb, 0x2b, 0x0e, 0xe1, 0x5f, 0xca, 0x5b, 0x6e, 0xd1, 0xa0, 0xbf, 0x3c, 0x2f, 0xe6, 0xb0, 0xbb, 0xdd, 0xca, 0xc3, 0xe2, 0x7f, 0xf9, 0x7f, 0x46, 0x79, 0x42, 0x8c, 0xa2, 0xf0, 0xa9, 0xb2, 0xf4, 0x06, 0x98, 0xd4, 0x06, 0x92, 0x05, 0x60, 0xd4, 0xf9, 0x81, 0x52, 0xbf, 0x76, 0x13, 0x80, 0xf8, 0xdf, 0x30, 0xc1, 0x29, 0x90, 0x3f, 0xd8, 0xdd, 0x7f, 0x52, 0xb9, 0xbf, 0x53, 0xdd, 0xa9, 0x3c, 0x28, 0x0e, 0xc1, 0x02, 0x18, 0x7b, 0xe2, 0xee, 0x3d, 0xdd, 0x2b, 0x1f, 0x54, 0x8b, 0x06, 0x1c, 0x03, 0xc3, 0x8f, 0xf6, 0xf7, 0x76, 0x8b, 0xb9, 0x6b, 0xf7, 0x40, 0x5e, 0x9e, 0x07, 0x4e, 0x81, 0x7c, 0x75, 0xcf, 0xad, 0xec, 0x3c, 0xdc, 0xad, 0xd1, 0x48, 0x25, 0x03, 0x8d, 0x58, 0x31, 0x3c, 0x2f, 0xe6, 0xca, 0x17, 0xc1, 0x85, 0x7a, 0xd0, 0x4a, 0xfc, 0x61, 0x26, 0x25, 0xe7, 0xc5, 0x08, 0xb1, 0x6e, 0xfc, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x33, 0xc2, 0x0c, 0xb6, 0xeb, 0x26, 0x00, 0x00, } golang-gogoprotobuf-0.5/_conformance/conformance_proto/conformance.proto000066400000000000000000000254051317075173200271000ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. syntax = "proto3"; package conformance; option java_package = "com.google.protobuf.conformance"; import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/field_mask.proto"; import "google/protobuf/struct.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/wrappers.proto"; // This defines the conformance testing protocol. This protocol exists between // the conformance test suite itself and the code being tested. For each test, // the suite will send a ConformanceRequest message and expect a // ConformanceResponse message. // // You can either run the tests in two different ways: // // 1. in-process (using the interface in conformance_test.h). // // 2. as a sub-process communicating over a pipe. Information about how to // do this is in conformance_test_runner.cc. // // Pros/cons of the two approaches: // // - running as a sub-process is much simpler for languages other than C/C++. // // - running as a sub-process may be more tricky in unusual environments like // iOS apps, where fork/stdin/stdout are not available. enum WireFormat { UNSPECIFIED = 0; PROTOBUF = 1; JSON = 2; } // Represents a single test case's input. The testee should: // // 1. parse this proto (which should always succeed) // 2. parse the protobuf or JSON payload in "payload" (which may fail) // 3. if the parse succeeded, serialize the message in the requested format. message ConformanceRequest { // The payload (whether protobuf of JSON) is always for a TestAllTypes proto // (see below). oneof payload { bytes protobuf_payload = 1; string json_payload = 2; } // Which format should the testee serialize its message to? WireFormat requested_output_format = 3; } // Represents a single test case's output. message ConformanceResponse { oneof result { // This string should be set to indicate parsing failed. The string can // provide more information about the parse error if it is available. // // Setting this string does not necessarily mean the testee failed the // test. Some of the test cases are intentionally invalid input. string parse_error = 1; // If the input was successfully parsed but errors occurred when // serializing it to the requested output format, set the error message in // this field. string serialize_error = 6; // This should be set if some other error occurred. This will always // indicate that the test failed. The string can provide more information // about the failure. string runtime_error = 2; // If the input was successfully parsed and the requested output was // protobuf, serialize it to protobuf and set it in this field. bytes protobuf_payload = 3; // If the input was successfully parsed and the requested output was JSON, // serialize to JSON and set it in this field. string json_payload = 4; // For when the testee skipped the test, likely because a certain feature // wasn't supported, like JSON input/output. string skipped = 5; } } // This proto includes every type of field in both singular and repeated // forms. message TestAllTypes { message NestedMessage { int32 a = 1; TestAllTypes corecursive = 2; } enum NestedEnum { FOO = 0; BAR = 1; BAZ = 2; NEG = -1; // Intentionally negative. } // Singular int32 optional_int32 = 1; int64 optional_int64 = 2; uint32 optional_uint32 = 3; uint64 optional_uint64 = 4; sint32 optional_sint32 = 5; sint64 optional_sint64 = 6; fixed32 optional_fixed32 = 7; fixed64 optional_fixed64 = 8; sfixed32 optional_sfixed32 = 9; sfixed64 optional_sfixed64 = 10; float optional_float = 11; double optional_double = 12; bool optional_bool = 13; string optional_string = 14; bytes optional_bytes = 15; NestedMessage optional_nested_message = 18; ForeignMessage optional_foreign_message = 19; NestedEnum optional_nested_enum = 21; ForeignEnum optional_foreign_enum = 22; string optional_string_piece = 24 [ctype=STRING_PIECE]; string optional_cord = 25 [ctype=CORD]; TestAllTypes recursive_message = 27; // Repeated repeated int32 repeated_int32 = 31; repeated int64 repeated_int64 = 32; repeated uint32 repeated_uint32 = 33; repeated uint64 repeated_uint64 = 34; repeated sint32 repeated_sint32 = 35; repeated sint64 repeated_sint64 = 36; repeated fixed32 repeated_fixed32 = 37; repeated fixed64 repeated_fixed64 = 38; repeated sfixed32 repeated_sfixed32 = 39; repeated sfixed64 repeated_sfixed64 = 40; repeated float repeated_float = 41; repeated double repeated_double = 42; repeated bool repeated_bool = 43; repeated string repeated_string = 44; repeated bytes repeated_bytes = 45; repeated NestedMessage repeated_nested_message = 48; repeated ForeignMessage repeated_foreign_message = 49; repeated NestedEnum repeated_nested_enum = 51; repeated ForeignEnum repeated_foreign_enum = 52; repeated string repeated_string_piece = 54 [ctype=STRING_PIECE]; repeated string repeated_cord = 55 [ctype=CORD]; // Map map < int32, int32> map_int32_int32 = 56; map < int64, int64> map_int64_int64 = 57; map < uint32, uint32> map_uint32_uint32 = 58; map < uint64, uint64> map_uint64_uint64 = 59; map < sint32, sint32> map_sint32_sint32 = 60; map < sint64, sint64> map_sint64_sint64 = 61; map < fixed32, fixed32> map_fixed32_fixed32 = 62; map < fixed64, fixed64> map_fixed64_fixed64 = 63; map map_sfixed32_sfixed32 = 64; map map_sfixed64_sfixed64 = 65; map < int32, float> map_int32_float = 66; map < int32, double> map_int32_double = 67; map < bool, bool> map_bool_bool = 68; map < string, string> map_string_string = 69; map < string, bytes> map_string_bytes = 70; map < string, NestedMessage> map_string_nested_message = 71; map < string, ForeignMessage> map_string_foreign_message = 72; map < string, NestedEnum> map_string_nested_enum = 73; map < string, ForeignEnum> map_string_foreign_enum = 74; oneof oneof_field { uint32 oneof_uint32 = 111; NestedMessage oneof_nested_message = 112; string oneof_string = 113; bytes oneof_bytes = 114; bool oneof_bool = 115; uint64 oneof_uint64 = 116; float oneof_float = 117; double oneof_double = 118; NestedEnum oneof_enum = 119; } // Well-known types google.protobuf.BoolValue optional_bool_wrapper = 201; google.protobuf.Int32Value optional_int32_wrapper = 202; google.protobuf.Int64Value optional_int64_wrapper = 203; google.protobuf.UInt32Value optional_uint32_wrapper = 204; google.protobuf.UInt64Value optional_uint64_wrapper = 205; google.protobuf.FloatValue optional_float_wrapper = 206; google.protobuf.DoubleValue optional_double_wrapper = 207; google.protobuf.StringValue optional_string_wrapper = 208; google.protobuf.BytesValue optional_bytes_wrapper = 209; repeated google.protobuf.BoolValue repeated_bool_wrapper = 211; repeated google.protobuf.Int32Value repeated_int32_wrapper = 212; repeated google.protobuf.Int64Value repeated_int64_wrapper = 213; repeated google.protobuf.UInt32Value repeated_uint32_wrapper = 214; repeated google.protobuf.UInt64Value repeated_uint64_wrapper = 215; repeated google.protobuf.FloatValue repeated_float_wrapper = 216; repeated google.protobuf.DoubleValue repeated_double_wrapper = 217; repeated google.protobuf.StringValue repeated_string_wrapper = 218; repeated google.protobuf.BytesValue repeated_bytes_wrapper = 219; google.protobuf.Duration optional_duration = 301; google.protobuf.Timestamp optional_timestamp = 302; google.protobuf.FieldMask optional_field_mask = 303; google.protobuf.Struct optional_struct = 304; google.protobuf.Any optional_any = 305; google.protobuf.Value optional_value = 306; repeated google.protobuf.Duration repeated_duration = 311; repeated google.protobuf.Timestamp repeated_timestamp = 312; repeated google.protobuf.FieldMask repeated_fieldmask = 313; repeated google.protobuf.Struct repeated_struct = 324; repeated google.protobuf.Any repeated_any = 315; repeated google.protobuf.Value repeated_value = 316; // Test field-name-to-JSON-name convention. // (protobuf says names can be any valid C/C++ identifier.) int32 fieldname1 = 401; int32 field_name2 = 402; int32 _field_name3 = 403; int32 field__name4_ = 404; int32 field0name5 = 405; int32 field_0_name6 = 406; int32 fieldName7 = 407; int32 FieldName8 = 408; int32 field_Name9 = 409; int32 Field_Name10 = 410; int32 FIELD_NAME11 = 411; int32 FIELD_name12 = 412; int32 __field_name13 = 413; int32 __Field_name14 = 414; int32 field__name15 = 415; int32 field__Name16 = 416; int32 field_name17__ = 417; int32 Field_name18__ = 418; } message ForeignMessage { int32 c = 1; } enum ForeignEnum { FOREIGN_FOO = 0; FOREIGN_BAR = 1; FOREIGN_BAZ = 2; } golang-gogoprotobuf-0.5/bench.md000066400000000000000000000360321317075173200167520ustar00rootroot00000000000000# 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
benchmarkold ns/opnew ns/opdelta
BenchmarkNidOptNativeProtoMarshal2656889-66.53%
BenchmarkNinOptNativeProtoMarshal26511015-61.71%
BenchmarkNidRepNativeProtoMarshal4266112519-70.65%
BenchmarkNinRepNativeProtoMarshal4230612354-70.80%
BenchmarkNidRepPackedNativeProtoMarshal3414811902-65.15%
BenchmarkNinRepPackedNativeProtoMarshal3337511969-64.14%
BenchmarkNidOptStructProtoMarshal71483727-47.86%
BenchmarkNinOptStructProtoMarshal69563481-49.96%
BenchmarkNidRepStructProtoMarshal4655119492-58.13%
BenchmarkNinRepStructProtoMarshal4671519043-59.24%
BenchmarkNidEmbeddedStructProtoMarshal52312050-60.81%
BenchmarkNinEmbeddedStructProtoMarshal46652000-57.13%
BenchmarkNidNestedStructProtoMarshal181106103604-42.79%
BenchmarkNinNestedStructProtoMarshal182053102069-43.93%
BenchmarkNidOptCustomProtoMarshal1209310-74.36%
BenchmarkNinOptCustomProtoMarshal1435277-80.70%
BenchmarkNidRepCustomProtoMarshal4126763-81.51%
BenchmarkNinRepCustomProtoMarshal3972769-80.64%
BenchmarkNinOptNativeUnionProtoMarshal973303-68.86%
BenchmarkNinOptStructUnionProtoMarshal1536521-66.08%
BenchmarkNinEmbeddedStructUnionProtoMarshal2327884-62.01%
BenchmarkNinNestedStructUnionProtoMarshal2070743-64.11%
BenchmarkTreeProtoMarshal1554838-46.07%
BenchmarkOrBranchProtoMarshal31562012-36.25%
BenchmarkAndBranchProtoMarshal31831996-37.29%
BenchmarkLeafProtoMarshal965606-37.20%
BenchmarkDeepTreeProtoMarshal23161283-44.60%
BenchmarkADeepBranchProtoMarshal27191492-45.13%
BenchmarkAndDeepBranchProtoMarshal46632922-37.34%
BenchmarkDeepLeafProtoMarshal18491016-45.05%
BenchmarkNilProtoMarshal43976-82.53%
BenchmarkNidOptEnumProtoMarshal514152-70.43%
BenchmarkNinOptEnumProtoMarshal550158-71.27%
BenchmarkNidRepEnumProtoMarshal647207-68.01%
BenchmarkNinRepEnumProtoMarshal662213-67.82%
BenchmarkTimerProtoMarshal934271-70.99%
BenchmarkMyExtendableProtoMarshal608185-69.57%
BenchmarkOtherExtenableProtoMarshal1112332-70.14%
benchmarkold MB/snew MB/sspeedup
BenchmarkNidOptNativeProtoMarshal126.86378.862.99x
BenchmarkNinOptNativeProtoMarshal114.27298.422.61x
BenchmarkNidRepNativeProtoMarshal164.25561.203.42x
BenchmarkNinRepNativeProtoMarshal166.10568.233.42x
BenchmarkNidRepPackedNativeProtoMarshal99.10283.972.87x
BenchmarkNinRepPackedNativeProtoMarshal101.30282.312.79x
BenchmarkNidOptStructProtoMarshal176.83339.071.92x
BenchmarkNinOptStructProtoMarshal163.59326.572.00x
BenchmarkNidRepStructProtoMarshal178.84427.492.39x
BenchmarkNinRepStructProtoMarshal178.70437.692.45x
BenchmarkNidEmbeddedStructProtoMarshal124.24317.562.56x
BenchmarkNinEmbeddedStructProtoMarshal132.03307.992.33x
BenchmarkNidNestedStructProtoMarshal192.91337.861.75x
BenchmarkNinNestedStructProtoMarshal192.44344.451.79x
BenchmarkNidOptCustomProtoMarshal29.77116.033.90x
BenchmarkNinOptCustomProtoMarshal22.29115.385.18x
BenchmarkNidRepCustomProtoMarshal35.14189.805.40x
BenchmarkNinRepCustomProtoMarshal36.50188.405.16x
BenchmarkNinOptNativeUnionProtoMarshal32.87105.393.21x
BenchmarkNinOptStructUnionProtoMarshal66.40195.762.95x
BenchmarkNinEmbeddedStructUnionProtoMarshal93.24245.262.63x
BenchmarkNinNestedStructUnionProtoMarshal57.49160.062.78x
BenchmarkTreeProtoMarshal137.64255.121.85x
BenchmarkOrBranchProtoMarshal137.80216.101.57x
BenchmarkAndBranchProtoMarshal136.64217.891.59x
BenchmarkLeafProtoMarshal214.48341.531.59x
BenchmarkDeepTreeProtoMarshal95.85173.031.81x
BenchmarkADeepBranchProtoMarshal82.73150.781.82x
BenchmarkAndDeepBranchProtoMarshal96.72153.981.59x
BenchmarkDeepLeafProtoMarshal117.34213.411.82x
BenchmarkNidOptEnumProtoMarshal3.8913.163.38x
BenchmarkNinOptEnumProtoMarshal1.826.303.46x
BenchmarkNidRepEnumProtoMarshal12.3638.503.11x
BenchmarkNinRepEnumProtoMarshal12.0837.533.11x
BenchmarkTimerProtoMarshal73.81253.873.44x
BenchmarkMyExtendableProtoMarshal13.1543.083.28x
BenchmarkOtherExtenableProtoMarshal24.2881.093.34x
## Unmarshaler
benchmarkold ns/opnew ns/opdelta
BenchmarkNidOptNativeProtoUnmarshal25211006-60.10%
BenchmarkNinOptNativeProtoUnmarshal25291750-30.80%
BenchmarkNidRepNativeProtoUnmarshal4906735299-28.06%
BenchmarkNinRepNativeProtoUnmarshal4799035456-26.12%
BenchmarkNidRepPackedNativeProtoUnmarshal2645623950-9.47%
BenchmarkNinRepPackedNativeProtoUnmarshal2649924037-9.29%
BenchmarkNidOptStructProtoUnmarshal68033873-43.07%
BenchmarkNinOptStructProtoUnmarshal67864154-38.79%
BenchmarkNidRepStructProtoUnmarshal5627631970-43.19%
BenchmarkNinRepStructProtoUnmarshal4875031832-34.70%
BenchmarkNidEmbeddedStructProtoUnmarshal45561973-56.69%
BenchmarkNinEmbeddedStructProtoUnmarshal44851975-55.96%
BenchmarkNidNestedStructProtoUnmarshal223395135844-39.19%
BenchmarkNinNestedStructProtoUnmarshal226446134022-40.82%
BenchmarkNidOptCustomProtoUnmarshal1859300-83.86%
BenchmarkNinOptCustomProtoUnmarshal1486402-72.95%
BenchmarkNidRepCustomProtoUnmarshal82291669-79.72%
BenchmarkNinRepCustomProtoUnmarshal82531649-80.02%
BenchmarkNinOptNativeUnionProtoUnmarshal840307-63.45%
BenchmarkNinOptStructUnionProtoUnmarshal1395639-54.19%
BenchmarkNinEmbeddedStructUnionProtoUnmarshal22971167-49.19%
BenchmarkNinNestedStructUnionProtoUnmarshal1820889-51.15%
BenchmarkTreeProtoUnmarshal1521720-52.66%
BenchmarkOrBranchProtoUnmarshal26691385-48.11%
BenchmarkAndBranchProtoUnmarshal26671420-46.76%
BenchmarkLeafProtoUnmarshal1171584-50.13%
BenchmarkDeepTreeProtoUnmarshal20651081-47.65%
BenchmarkADeepBranchProtoUnmarshal26951178-56.29%
BenchmarkAndDeepBranchProtoUnmarshal40551918-52.70%
BenchmarkDeepLeafProtoUnmarshal1758865-50.80%
BenchmarkNilProtoUnmarshal56463-88.79%
BenchmarkNidOptEnumProtoUnmarshal76273-90.34%
BenchmarkNinOptEnumProtoUnmarshal764163-78.66%
BenchmarkNidRepEnumProtoUnmarshal1078447-58.53%
BenchmarkNinRepEnumProtoUnmarshal1071479-55.28%
BenchmarkTimerProtoUnmarshal1128362-67.91%
BenchmarkMyExtendableProtoUnmarshal808217-73.14%
BenchmarkOtherExtenableProtoUnmarshal1233517-58.07%
benchmarkold MB/snew MB/sspeedup
BenchmarkNidOptNativeProtoUnmarshal133.67334.982.51x
BenchmarkNinOptNativeProtoUnmarshal119.77173.081.45x
BenchmarkNidRepNativeProtoUnmarshal143.23199.121.39x
BenchmarkNinRepNativeProtoUnmarshal146.07198.161.36x
BenchmarkNidRepPackedNativeProtoUnmarshal127.80141.041.10x
BenchmarkNinRepPackedNativeProtoUnmarshal127.55140.781.10x
BenchmarkNidOptStructProtoUnmarshal185.79326.311.76x
BenchmarkNinOptStructProtoUnmarshal167.68273.661.63x
BenchmarkNidRepStructProtoUnmarshal147.88260.391.76x
BenchmarkNinRepStructProtoUnmarshal171.20261.971.53x
BenchmarkNidEmbeddedStructProtoUnmarshal142.86329.422.31x
BenchmarkNinEmbeddedStructProtoUnmarshal137.33311.832.27x
BenchmarkNidNestedStructProtoUnmarshal154.97259.471.67x
BenchmarkNinNestedStructProtoUnmarshal154.32258.421.67x
BenchmarkNidOptCustomProtoUnmarshal19.36119.666.18x
BenchmarkNinOptCustomProtoUnmarshal21.5279.503.69x
BenchmarkNidRepCustomProtoUnmarshal17.6286.864.93x
BenchmarkNinRepCustomProtoUnmarshal17.5787.925.00x
BenchmarkNinOptNativeUnionProtoUnmarshal38.07104.122.73x
BenchmarkNinOptStructUnionProtoUnmarshal73.08159.542.18x
BenchmarkNinEmbeddedStructUnionProtoUnmarshal94.00185.921.98x
BenchmarkNinNestedStructUnionProtoUnmarshal65.35133.752.05x
BenchmarkTreeProtoUnmarshal141.28297.132.10x
BenchmarkOrBranchProtoUnmarshal162.56313.961.93x
BenchmarkAndBranchProtoUnmarshal163.06306.151.88x
BenchmarkLeafProtoUnmarshal176.72354.192.00x
BenchmarkDeepTreeProtoUnmarshal107.50205.301.91x
BenchmarkADeepBranchProtoUnmarshal83.48190.882.29x
BenchmarkAndDeepBranchProtoUnmarshal110.97234.602.11x
BenchmarkDeepLeafProtoUnmarshal123.40250.732.03x
BenchmarkNidOptEnumProtoUnmarshal2.6227.1610.37x
BenchmarkNinOptEnumProtoUnmarshal1.316.114.66x
BenchmarkNidRepEnumProtoUnmarshal7.4217.882.41x
BenchmarkNinRepEnumProtoUnmarshal7.4716.692.23x
BenchmarkTimerProtoUnmarshal61.12190.343.11x
BenchmarkMyExtendableProtoUnmarshal9.9036.713.71x
BenchmarkOtherExtenableProtoUnmarshal21.9052.132.38x
golang-gogoprotobuf-0.5/codec/000077500000000000000000000000001317075173200164225ustar00rootroot00000000000000golang-gogoprotobuf-0.5/codec/codec.go000066400000000000000000000050721317075173200200320ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package codec import ( "github.com/gogo/protobuf/proto" ) type Codec interface { Marshal(v interface{}) ([]byte, error) Unmarshal(data []byte, v interface{}) error String() string } type marshaler interface { MarshalTo(data []byte) (n int, err error) } func getSize(v interface{}) (int, bool) { if sz, ok := v.(interface { Size() (n int) }); ok { return sz.Size(), true } else if sz, ok := v.(interface { ProtoSize() (n int) }); ok { return sz.ProtoSize(), true } else { return 0, false } } type codec struct { buf []byte } func (this *codec) String() string { return "proto" } func New(size int) Codec { return &codec{make([]byte, size)} } func (this *codec) Marshal(v interface{}) ([]byte, error) { if m, ok := v.(marshaler); ok { n, ok := getSize(v) if !ok { return proto.Marshal(v.(proto.Message)) } if n > len(this.buf) { this.buf = make([]byte, n) } _, err := m.MarshalTo(this.buf) if err != nil { return nil, err } return this.buf[:n], nil } return proto.Marshal(v.(proto.Message)) } func (this *codec) Unmarshal(data []byte, v interface{}) error { return proto.Unmarshal(data, v.(proto.Message)) } golang-gogoprotobuf-0.5/codec/codec_test.go000066400000000000000000000035761317075173200211000ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package codec import ( "github.com/gogo/protobuf/test" "math/rand" "testing" "time" ) func TestCodec(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) in := test.NewPopulatedNinOptStruct(r, true) c := New(r.Intn(1024)) data, err := c.Marshal(in) if err != nil { t.Fatal(err) } out := &test.NinOptStruct{} err = c.Unmarshal(data, out) if err != nil { t.Fatal(err) } if err := in.VerboseEqual(out); err != nil { t.Fatal(err) } } golang-gogoprotobuf-0.5/custom_types.md000066400000000000000000000046251317075173200204340ustar00rootroot00000000000000# 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 Bytes method is not allowed. * Defining a customtype as a fake proto message is broken. * proto.Clone is broken. * Using a proto message as a customtype is not allowed. * cusomtype of type map can not UnmarshalText * customtype of type struct cannot jsonpb unmarshal golang-gogoprotobuf-0.5/extensions.md000066400000000000000000000401071317075173200200700ustar00rootroot00000000000000# 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.
NameOptionTypeDescriptionDefault
marshalerMessageboolif true, a Marshal and MarshalTo method is generated for the specific messagefalse
sizerMessageboolif true, a Size method is generated for the specific messagefalse
unmarshaler Message bool if true, an Unmarshal method is generated for the specific message false
protosizerMessageboolif true, a ProtoSize method is generated for the specific messagefalse
unsafe_marshaler (deprecated) Message bool if true, a Marshal and MarshalTo method is generated. false
unsafe_unmarshaler (deprecated) Message bool if true, an Unmarshal method is generated. false
stable_marshaler Message bool 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 false
typedecl (beta) Message bool if false, type declaration of the message is excluded from the generated output. Requires the marshaler and unmarshaler to be generated. true
# 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.
NameOptionTypeDescriptionDefault
nullable Field bool if false, a field is generated without a pointer (see warning below). true
embed Field bool if true, the field is generated as an embedded field. false
customtype Field string 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 CustomTypes document goprotobuf type
customname (beta) Field string Changes the generated fieldname. This is especially useful when generated methods conflict with fieldnames. goprotobuf field name
casttype (beta) Field string 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. goprotobuf field type
castkey (beta) Field string 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. goprotobuf field type
castvalue (beta) Field string 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. goprotobuf field type
enum_customname (beta) Enum string 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.goprotobuf enum type name. Helps with golint issues.
enumdecl (beta) Enum bool if false, type declaration of the enum is excluded from the generated output. Requires the marshaler and unmarshaler to be generated. true
enumvalue_customname (beta) Enum Value string Changes the generated enum name. Helps with golint issues.goprotobuf enum value name
stdtime Timestamp Field bool Changes the Well Known Timestamp Type to time.TimeTimestamp
stdduration Duration Field bool Changes the Well Known Duration Type to time.DurationDuration
`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.
NameOptionTypeDescriptionDefault
gogoproto_import File bool if false, the generated code imports github.com/golang/protobuf/proto instead of github.com/gogo/protobuf/proto. true
goproto_enum_prefix Enum bool if false, generates the enum constant names without the messagetype prefix true
goproto_getters Message bool if false, the message is generated without get methods, this is useful when you would rather want to use face true
goproto_stringer Message bool if false, the message is generated without the default string method, this is useful for rather using stringer true
goproto_enum_stringer (experimental) Enum bool if false, the enum is generated without the default string method, this is useful for rather using enum_stringer true
goproto_extensions_map (beta) Message bool if false, the extensions field is generated as type []byte instead of type map[int32]proto.Extension true
goproto_unrecognized (beta) Message bool if false, XXX_unrecognized field is not generated. This is useful to reduce GC pressure at the cost of losing information about unrecognized fields. true
goproto_registration (beta) File bool 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). false
# 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.
NameOptionTypeDescriptionDefault
gostring Message bool if true, a `GoString` method is generated. This returns a string representing valid go code to reproduce the current state of the struct. false
onlyone (deprecated) Message bool 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. false
equal Message bool if true, an Equal method is generated false
compare Message bool if true, a Compare method is generated. This is very useful for quickly implementing sort on a list of protobuf structs false
verbose_equal Message bool 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. false
stringer Message bool if true, a String method is generated for the message. false
face Message bool 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. false
description (beta) Message bool if true, a Description method is generated for the message. false
populate Message bool if true, a `NewPopulated` function is generated. This is necessary for generated tests. false
enum_stringer (experimental) Enum bool if true, a String method is generated for an Enum false
Issues with Compare include: * Oneof is not supported yet * Not all Well Known Types are supported yet * Maps are not supported #Peace of Mind Test and Benchmark generation is done with the following extensions:
testgen Message bool if true, tests are generated for proto, json and prototext marshalling as well as for some of the other enabled plugins false
benchgen Message bool if true, benchmarks are generated for proto, json and prototext marshalling as well as for some of the other enabled plugins false
# 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.
jsontag (beta) Field string if set, the json tag value between the double quotes is replaced with this string fieldname
moretags (beta) Field string if set, this string is appended to the tag string empty
Here is a longer explanation of jsontag and moretags # 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). golang-gogoprotobuf-0.5/gogoproto/000077500000000000000000000000001317075173200173645ustar00rootroot00000000000000golang-gogoprotobuf-0.5/gogoproto/Makefile000066400000000000000000000032731317075173200210310ustar00rootroot00000000000000# 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 golang-gogoprotobuf-0.5/gogoproto/doc.go000066400000000000000000000213211317075173200204570ustar00rootroot00000000000000// 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. /* Package gogoproto provides extensions for protocol buffers to achieve: - fast marshalling and unmarshalling. - peace of mind by optionally generating test and benchmark code. - more canonical Go structures. - less typing by optionally generating extra helper code. - goprotobuf compatibility More Canonical Go Structures A lot of time 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 parallel struct. Gogoprotobuf tries to fix these problems with the nullable, embed, customtype and customname field extensions. - nullable, if false, a field is generated without a pointer (see warning below). - embed, if true, the field is generated as an embedded field. - customtype, 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 - customname (beta), Changes the generated fieldname. This is especially useful when generated methods conflict with fieldnames. - casttype (beta), Changes the generated fieldtype. All generated code assumes that this type is castable to the protocol buffer field type. It does not work for structs or enums. - castkey (beta), 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. - castvalue (beta), 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. 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. It can be seen as a layer on top of Protocol Buffers, where before and after marshalling all non-nullable fields are set and they cannot be unset. Let us look at: github.com/gogo/protobuf/test/example/example.proto for a quicker overview. The following message: package test; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message A { optional string Description = 1 [(gogoproto.nullable) = false]; optional int64 Number = 2 [(gogoproto.nullable) = false]; optional bytes Id = 3 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uuid", (gogoproto.nullable) = false]; } Will generate a go struct which looks a lot like this: type A struct { Description string Number int64 Id github_com_gogo_protobuf_test_custom.Uuid } You will see there are no pointers, since all fields are non-nullable. You will also see a custom type which marshals to a string. Be warned it is your responsibility to test your custom types thoroughly. You should think of every possible empty and nil case for your marshaling, unmarshaling and size methods. Next we will embed the message A in message B. message B { optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } See below that A is embedded in B. type B struct { A G []github_com_gogo_protobuf_test_custom.Uint128 } Also see the repeated custom type. type Uint128 [2]uint64 Next we will create a custom name for one of our fields. message C { optional int64 size = 1 [(gogoproto.customname) = "MySize"]; } See below that the field's name is MySize and not Size. type C struct { MySize *int64 } The is useful when having a protocol buffer message with a field name which conflicts with a generated method. As an example, having a field name size and using the sizer plugin to generate a Size method will cause a go compiler error. Using customname you can fix this error without changing the field name. This is typically useful when working with a protocol buffer that was designed before these methods and/or the go language were avialable. Gogoprotobuf also has some more subtle changes, these could be changed back: - the generated package name for imports do not have the extra /filename.pb, but are actually the imports specified in the .proto file. Gogoprotobuf also has lost some features which should be brought back with time: - Marshalling and unmarshalling with reflect and without the unsafe package, this requires work in pointer_reflect.go Why does nullable break protocol buffer specifications: The protocol buffer specification states, somewhere, that 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. It can be seen as a layer on top of protocol buffers, where before and after marshalling all non-nullable fields are set and they cannot be unset. Goprotobuf Compatibility: Gogoprotobuf is compatible with Goprotobuf, because it is compatible with protocol buffers. 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: - gogoproto_import, if false, the generated code imports github.com/golang/protobuf/proto instead of github.com/gogo/protobuf/proto. - goproto_enum_prefix, if false, generates the enum constant names without the messagetype prefix - goproto_enum_stringer (experimental), if false, the enum is generated without the default string method, this is useful for rather using enum_stringer, or allowing you to write your own string method. - goproto_getters, if false, the message is generated without get methods, this is useful when you would rather want to use face - goproto_stringer, if false, the message is generated without the default string method, this is useful for rather using stringer, or allowing you to write your own string method. - goproto_extensions_map (beta), if false, the extensions field is generated as type []byte instead of type map[int32]proto.Extension - goproto_unrecognized (beta), if false, XXX_unrecognized field is not generated. This is useful in conjunction with gogoproto.nullable=false, to generate structures completely devoid of pointers and reduce GC pressure at the cost of losing information about unrecognized fields. - goproto_registration (beta), 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). Less Typing and Peace of Mind is explained in their specific plugin folders godoc: - github.com/gogo/protobuf/plugin/ If you do not use any of these extension the code that is generated will be the same as if goprotobuf has generated it. The most complete way to see examples is to look at github.com/gogo/protobuf/test/thetest.proto Gogoprototest is a seperate project, because we want to keep gogoprotobuf independant of goprotobuf, but we still want to test it thoroughly. */ package gogoproto golang-gogoprotobuf-0.5/gogoproto/gogo.pb.go000066400000000000000000000753131317075173200212570ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: gogo.proto /* Package gogoproto is a generated protocol buffer package. It is generated from these files: gogo.proto It has these top-level messages: */ package gogoproto import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import google_protobuf "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package var E_GoprotoEnumPrefix = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.EnumOptions)(nil), ExtensionType: (*bool)(nil), Field: 62001, Name: "gogoproto.goproto_enum_prefix", Tag: "varint,62001,opt,name=goproto_enum_prefix,json=goprotoEnumPrefix", Filename: "gogo.proto", } var E_GoprotoEnumStringer = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.EnumOptions)(nil), ExtensionType: (*bool)(nil), Field: 62021, Name: "gogoproto.goproto_enum_stringer", Tag: "varint,62021,opt,name=goproto_enum_stringer,json=goprotoEnumStringer", Filename: "gogo.proto", } var E_EnumStringer = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.EnumOptions)(nil), ExtensionType: (*bool)(nil), Field: 62022, Name: "gogoproto.enum_stringer", Tag: "varint,62022,opt,name=enum_stringer,json=enumStringer", Filename: "gogo.proto", } var E_EnumCustomname = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.EnumOptions)(nil), ExtensionType: (*string)(nil), Field: 62023, Name: "gogoproto.enum_customname", Tag: "bytes,62023,opt,name=enum_customname,json=enumCustomname", Filename: "gogo.proto", } var E_Enumdecl = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.EnumOptions)(nil), ExtensionType: (*bool)(nil), Field: 62024, Name: "gogoproto.enumdecl", Tag: "varint,62024,opt,name=enumdecl", Filename: "gogo.proto", } var E_EnumvalueCustomname = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.EnumValueOptions)(nil), ExtensionType: (*string)(nil), Field: 66001, Name: "gogoproto.enumvalue_customname", Tag: "bytes,66001,opt,name=enumvalue_customname,json=enumvalueCustomname", Filename: "gogo.proto", } var E_GoprotoGettersAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63001, Name: "gogoproto.goproto_getters_all", Tag: "varint,63001,opt,name=goproto_getters_all,json=goprotoGettersAll", Filename: "gogo.proto", } var E_GoprotoEnumPrefixAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63002, Name: "gogoproto.goproto_enum_prefix_all", Tag: "varint,63002,opt,name=goproto_enum_prefix_all,json=goprotoEnumPrefixAll", Filename: "gogo.proto", } var E_GoprotoStringerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63003, Name: "gogoproto.goproto_stringer_all", Tag: "varint,63003,opt,name=goproto_stringer_all,json=goprotoStringerAll", Filename: "gogo.proto", } var E_VerboseEqualAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63004, Name: "gogoproto.verbose_equal_all", Tag: "varint,63004,opt,name=verbose_equal_all,json=verboseEqualAll", Filename: "gogo.proto", } var E_FaceAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63005, Name: "gogoproto.face_all", Tag: "varint,63005,opt,name=face_all,json=faceAll", Filename: "gogo.proto", } var E_GostringAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63006, Name: "gogoproto.gostring_all", Tag: "varint,63006,opt,name=gostring_all,json=gostringAll", Filename: "gogo.proto", } var E_PopulateAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63007, Name: "gogoproto.populate_all", Tag: "varint,63007,opt,name=populate_all,json=populateAll", Filename: "gogo.proto", } var E_StringerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63008, Name: "gogoproto.stringer_all", Tag: "varint,63008,opt,name=stringer_all,json=stringerAll", Filename: "gogo.proto", } var E_OnlyoneAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63009, Name: "gogoproto.onlyone_all", Tag: "varint,63009,opt,name=onlyone_all,json=onlyoneAll", Filename: "gogo.proto", } var E_EqualAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63013, Name: "gogoproto.equal_all", Tag: "varint,63013,opt,name=equal_all,json=equalAll", Filename: "gogo.proto", } var E_DescriptionAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63014, Name: "gogoproto.description_all", Tag: "varint,63014,opt,name=description_all,json=descriptionAll", Filename: "gogo.proto", } var E_TestgenAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63015, Name: "gogoproto.testgen_all", Tag: "varint,63015,opt,name=testgen_all,json=testgenAll", Filename: "gogo.proto", } var E_BenchgenAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63016, Name: "gogoproto.benchgen_all", Tag: "varint,63016,opt,name=benchgen_all,json=benchgenAll", Filename: "gogo.proto", } var E_MarshalerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63017, Name: "gogoproto.marshaler_all", Tag: "varint,63017,opt,name=marshaler_all,json=marshalerAll", Filename: "gogo.proto", } var E_UnmarshalerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63018, Name: "gogoproto.unmarshaler_all", Tag: "varint,63018,opt,name=unmarshaler_all,json=unmarshalerAll", Filename: "gogo.proto", } var E_StableMarshalerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63019, Name: "gogoproto.stable_marshaler_all", Tag: "varint,63019,opt,name=stable_marshaler_all,json=stableMarshalerAll", Filename: "gogo.proto", } var E_SizerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63020, Name: "gogoproto.sizer_all", Tag: "varint,63020,opt,name=sizer_all,json=sizerAll", Filename: "gogo.proto", } var E_GoprotoEnumStringerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63021, Name: "gogoproto.goproto_enum_stringer_all", Tag: "varint,63021,opt,name=goproto_enum_stringer_all,json=goprotoEnumStringerAll", Filename: "gogo.proto", } var E_EnumStringerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63022, Name: "gogoproto.enum_stringer_all", Tag: "varint,63022,opt,name=enum_stringer_all,json=enumStringerAll", Filename: "gogo.proto", } var E_UnsafeMarshalerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63023, Name: "gogoproto.unsafe_marshaler_all", Tag: "varint,63023,opt,name=unsafe_marshaler_all,json=unsafeMarshalerAll", Filename: "gogo.proto", } var E_UnsafeUnmarshalerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63024, Name: "gogoproto.unsafe_unmarshaler_all", Tag: "varint,63024,opt,name=unsafe_unmarshaler_all,json=unsafeUnmarshalerAll", Filename: "gogo.proto", } var E_GoprotoExtensionsMapAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63025, Name: "gogoproto.goproto_extensions_map_all", Tag: "varint,63025,opt,name=goproto_extensions_map_all,json=goprotoExtensionsMapAll", Filename: "gogo.proto", } var E_GoprotoUnrecognizedAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63026, Name: "gogoproto.goproto_unrecognized_all", Tag: "varint,63026,opt,name=goproto_unrecognized_all,json=goprotoUnrecognizedAll", Filename: "gogo.proto", } var E_GogoprotoImport = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63027, Name: "gogoproto.gogoproto_import", Tag: "varint,63027,opt,name=gogoproto_import,json=gogoprotoImport", Filename: "gogo.proto", } var E_ProtosizerAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63028, Name: "gogoproto.protosizer_all", Tag: "varint,63028,opt,name=protosizer_all,json=protosizerAll", Filename: "gogo.proto", } var E_CompareAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63029, Name: "gogoproto.compare_all", Tag: "varint,63029,opt,name=compare_all,json=compareAll", Filename: "gogo.proto", } var E_TypedeclAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63030, Name: "gogoproto.typedecl_all", Tag: "varint,63030,opt,name=typedecl_all,json=typedeclAll", Filename: "gogo.proto", } var E_EnumdeclAll = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63031, Name: "gogoproto.enumdecl_all", Tag: "varint,63031,opt,name=enumdecl_all,json=enumdeclAll", Filename: "gogo.proto", } var E_GoprotoRegistration = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FileOptions)(nil), ExtensionType: (*bool)(nil), Field: 63032, Name: "gogoproto.goproto_registration", Tag: "varint,63032,opt,name=goproto_registration,json=goprotoRegistration", Filename: "gogo.proto", } var E_GoprotoGetters = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64001, Name: "gogoproto.goproto_getters", Tag: "varint,64001,opt,name=goproto_getters,json=goprotoGetters", Filename: "gogo.proto", } var E_GoprotoStringer = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64003, Name: "gogoproto.goproto_stringer", Tag: "varint,64003,opt,name=goproto_stringer,json=goprotoStringer", Filename: "gogo.proto", } var E_VerboseEqual = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64004, Name: "gogoproto.verbose_equal", Tag: "varint,64004,opt,name=verbose_equal,json=verboseEqual", Filename: "gogo.proto", } var E_Face = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64005, Name: "gogoproto.face", Tag: "varint,64005,opt,name=face", Filename: "gogo.proto", } var E_Gostring = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64006, Name: "gogoproto.gostring", Tag: "varint,64006,opt,name=gostring", Filename: "gogo.proto", } var E_Populate = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64007, Name: "gogoproto.populate", Tag: "varint,64007,opt,name=populate", Filename: "gogo.proto", } var E_Stringer = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 67008, Name: "gogoproto.stringer", Tag: "varint,67008,opt,name=stringer", Filename: "gogo.proto", } var E_Onlyone = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64009, Name: "gogoproto.onlyone", Tag: "varint,64009,opt,name=onlyone", Filename: "gogo.proto", } var E_Equal = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64013, Name: "gogoproto.equal", Tag: "varint,64013,opt,name=equal", Filename: "gogo.proto", } var E_Description = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64014, Name: "gogoproto.description", Tag: "varint,64014,opt,name=description", Filename: "gogo.proto", } var E_Testgen = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64015, Name: "gogoproto.testgen", Tag: "varint,64015,opt,name=testgen", Filename: "gogo.proto", } var E_Benchgen = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64016, Name: "gogoproto.benchgen", Tag: "varint,64016,opt,name=benchgen", Filename: "gogo.proto", } var E_Marshaler = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64017, Name: "gogoproto.marshaler", Tag: "varint,64017,opt,name=marshaler", Filename: "gogo.proto", } var E_Unmarshaler = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64018, Name: "gogoproto.unmarshaler", Tag: "varint,64018,opt,name=unmarshaler", Filename: "gogo.proto", } var E_StableMarshaler = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64019, Name: "gogoproto.stable_marshaler", Tag: "varint,64019,opt,name=stable_marshaler,json=stableMarshaler", Filename: "gogo.proto", } var E_Sizer = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64020, Name: "gogoproto.sizer", Tag: "varint,64020,opt,name=sizer", Filename: "gogo.proto", } var E_UnsafeMarshaler = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64023, Name: "gogoproto.unsafe_marshaler", Tag: "varint,64023,opt,name=unsafe_marshaler,json=unsafeMarshaler", Filename: "gogo.proto", } var E_UnsafeUnmarshaler = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64024, Name: "gogoproto.unsafe_unmarshaler", Tag: "varint,64024,opt,name=unsafe_unmarshaler,json=unsafeUnmarshaler", Filename: "gogo.proto", } var E_GoprotoExtensionsMap = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64025, Name: "gogoproto.goproto_extensions_map", Tag: "varint,64025,opt,name=goproto_extensions_map,json=goprotoExtensionsMap", Filename: "gogo.proto", } var E_GoprotoUnrecognized = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64026, Name: "gogoproto.goproto_unrecognized", Tag: "varint,64026,opt,name=goproto_unrecognized,json=goprotoUnrecognized", Filename: "gogo.proto", } var E_Protosizer = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64028, Name: "gogoproto.protosizer", Tag: "varint,64028,opt,name=protosizer", Filename: "gogo.proto", } var E_Compare = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64029, Name: "gogoproto.compare", Tag: "varint,64029,opt,name=compare", Filename: "gogo.proto", } var E_Typedecl = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.MessageOptions)(nil), ExtensionType: (*bool)(nil), Field: 64030, Name: "gogoproto.typedecl", Tag: "varint,64030,opt,name=typedecl", Filename: "gogo.proto", } var E_Nullable = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*bool)(nil), Field: 65001, Name: "gogoproto.nullable", Tag: "varint,65001,opt,name=nullable", Filename: "gogo.proto", } var E_Embed = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*bool)(nil), Field: 65002, Name: "gogoproto.embed", Tag: "varint,65002,opt,name=embed", Filename: "gogo.proto", } var E_Customtype = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*string)(nil), Field: 65003, Name: "gogoproto.customtype", Tag: "bytes,65003,opt,name=customtype", Filename: "gogo.proto", } var E_Customname = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*string)(nil), Field: 65004, Name: "gogoproto.customname", Tag: "bytes,65004,opt,name=customname", Filename: "gogo.proto", } var E_Jsontag = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*string)(nil), Field: 65005, Name: "gogoproto.jsontag", Tag: "bytes,65005,opt,name=jsontag", Filename: "gogo.proto", } var E_Moretags = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*string)(nil), Field: 65006, Name: "gogoproto.moretags", Tag: "bytes,65006,opt,name=moretags", Filename: "gogo.proto", } var E_Casttype = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*string)(nil), Field: 65007, Name: "gogoproto.casttype", Tag: "bytes,65007,opt,name=casttype", Filename: "gogo.proto", } var E_Castkey = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*string)(nil), Field: 65008, Name: "gogoproto.castkey", Tag: "bytes,65008,opt,name=castkey", Filename: "gogo.proto", } var E_Castvalue = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*string)(nil), Field: 65009, Name: "gogoproto.castvalue", Tag: "bytes,65009,opt,name=castvalue", Filename: "gogo.proto", } var E_Stdtime = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*bool)(nil), Field: 65010, Name: "gogoproto.stdtime", Tag: "varint,65010,opt,name=stdtime", Filename: "gogo.proto", } var E_Stdduration = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*bool)(nil), Field: 65011, Name: "gogoproto.stdduration", Tag: "varint,65011,opt,name=stdduration", Filename: "gogo.proto", } func init() { proto.RegisterExtension(E_GoprotoEnumPrefix) proto.RegisterExtension(E_GoprotoEnumStringer) proto.RegisterExtension(E_EnumStringer) proto.RegisterExtension(E_EnumCustomname) proto.RegisterExtension(E_Enumdecl) proto.RegisterExtension(E_EnumvalueCustomname) proto.RegisterExtension(E_GoprotoGettersAll) proto.RegisterExtension(E_GoprotoEnumPrefixAll) proto.RegisterExtension(E_GoprotoStringerAll) proto.RegisterExtension(E_VerboseEqualAll) proto.RegisterExtension(E_FaceAll) proto.RegisterExtension(E_GostringAll) proto.RegisterExtension(E_PopulateAll) proto.RegisterExtension(E_StringerAll) proto.RegisterExtension(E_OnlyoneAll) proto.RegisterExtension(E_EqualAll) proto.RegisterExtension(E_DescriptionAll) proto.RegisterExtension(E_TestgenAll) proto.RegisterExtension(E_BenchgenAll) proto.RegisterExtension(E_MarshalerAll) proto.RegisterExtension(E_UnmarshalerAll) proto.RegisterExtension(E_StableMarshalerAll) proto.RegisterExtension(E_SizerAll) proto.RegisterExtension(E_GoprotoEnumStringerAll) proto.RegisterExtension(E_EnumStringerAll) proto.RegisterExtension(E_UnsafeMarshalerAll) proto.RegisterExtension(E_UnsafeUnmarshalerAll) proto.RegisterExtension(E_GoprotoExtensionsMapAll) proto.RegisterExtension(E_GoprotoUnrecognizedAll) proto.RegisterExtension(E_GogoprotoImport) proto.RegisterExtension(E_ProtosizerAll) proto.RegisterExtension(E_CompareAll) proto.RegisterExtension(E_TypedeclAll) proto.RegisterExtension(E_EnumdeclAll) proto.RegisterExtension(E_GoprotoRegistration) proto.RegisterExtension(E_GoprotoGetters) proto.RegisterExtension(E_GoprotoStringer) proto.RegisterExtension(E_VerboseEqual) proto.RegisterExtension(E_Face) proto.RegisterExtension(E_Gostring) proto.RegisterExtension(E_Populate) proto.RegisterExtension(E_Stringer) proto.RegisterExtension(E_Onlyone) proto.RegisterExtension(E_Equal) proto.RegisterExtension(E_Description) proto.RegisterExtension(E_Testgen) proto.RegisterExtension(E_Benchgen) proto.RegisterExtension(E_Marshaler) proto.RegisterExtension(E_Unmarshaler) proto.RegisterExtension(E_StableMarshaler) proto.RegisterExtension(E_Sizer) proto.RegisterExtension(E_UnsafeMarshaler) proto.RegisterExtension(E_UnsafeUnmarshaler) proto.RegisterExtension(E_GoprotoExtensionsMap) proto.RegisterExtension(E_GoprotoUnrecognized) proto.RegisterExtension(E_Protosizer) proto.RegisterExtension(E_Compare) proto.RegisterExtension(E_Typedecl) proto.RegisterExtension(E_Nullable) proto.RegisterExtension(E_Embed) proto.RegisterExtension(E_Customtype) proto.RegisterExtension(E_Customname) proto.RegisterExtension(E_Jsontag) proto.RegisterExtension(E_Moretags) proto.RegisterExtension(E_Casttype) proto.RegisterExtension(E_Castkey) proto.RegisterExtension(E_Castvalue) proto.RegisterExtension(E_Stdtime) proto.RegisterExtension(E_Stdduration) } func init() { proto.RegisterFile("gogo.proto", fileDescriptorGogo) } var fileDescriptorGogo = []byte{ // 1201 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x98, 0xcb, 0x6f, 0x1c, 0x45, 0x13, 0xc0, 0xf5, 0xe9, 0x73, 0x64, 0x6f, 0xf9, 0x85, 0xd7, 0xc6, 0x84, 0x08, 0x44, 0x72, 0xe3, 0xe4, 0x9c, 0x22, 0x94, 0xb6, 0x22, 0xcb, 0xb1, 0x1c, 0x2b, 0x11, 0x06, 0x63, 0xe2, 0x00, 0xe2, 0xb0, 0x9a, 0xdd, 0x6d, 0x4f, 0x06, 0x66, 0xa6, 0x87, 0x99, 0x9e, 0x28, 0xce, 0x0d, 0x85, 0x87, 0x10, 0xe2, 0x8d, 0x04, 0x09, 0x49, 0x80, 0x03, 0xef, 0x67, 0x78, 0x1f, 0xb9, 0xf0, 0xb8, 0xf2, 0x3f, 0x70, 0x01, 0xcc, 0xdb, 0x37, 0x5f, 0x50, 0xcd, 0x56, 0xcd, 0xf6, 0xac, 0x57, 0xea, 0xde, 0xdb, 0xec, 0xba, 0x7f, 0xbf, 0xad, 0xa9, 0x9a, 0xae, 0xea, 0x31, 0x80, 0xaf, 0x7c, 0x35, 0x97, 0xa4, 0x4a, 0xab, 0x7a, 0x0d, 0xaf, 0x8b, 0xcb, 0x03, 0x07, 0x7d, 0xa5, 0xfc, 0x50, 0x1e, 0x2e, 0x3e, 0x35, 0xf3, 0xcd, 0xc3, 0x6d, 0x99, 0xb5, 0xd2, 0x20, 0xd1, 0x2a, 0xed, 0x2c, 0x16, 0x77, 0xc1, 0x34, 0x2d, 0x6e, 0xc8, 0x38, 0x8f, 0x1a, 0x49, 0x2a, 0x37, 0x83, 0xf3, 0xf5, 0x5b, 0xe6, 0x3a, 0xe4, 0x1c, 0x93, 0x73, 0xcb, 0x71, 0x1e, 0xdd, 0x9d, 0xe8, 0x40, 0xc5, 0xd9, 0xfe, 0xeb, 0x3f, 0xff, 0xff, 0xe0, 0xff, 0x6e, 0x1f, 0x59, 0x9f, 0x22, 0x14, 0xff, 0xb6, 0x56, 0x80, 0x62, 0x1d, 0x6e, 0xac, 0xf8, 0x32, 0x9d, 0x06, 0xb1, 0x2f, 0x53, 0x8b, 0xf1, 0x3b, 0x32, 0x4e, 0x1b, 0xc6, 0x7b, 0x09, 0x15, 0x4b, 0x30, 0x3e, 0x88, 0xeb, 0x7b, 0x72, 0x8d, 0x49, 0x53, 0xb2, 0x02, 0x93, 0x85, 0xa4, 0x95, 0x67, 0x5a, 0x45, 0xb1, 0x17, 0x49, 0x8b, 0xe6, 0x87, 0x42, 0x53, 0x5b, 0x9f, 0x40, 0x6c, 0xa9, 0xa4, 0x84, 0x80, 0x11, 0xfc, 0xa6, 0x2d, 0x5b, 0xa1, 0xc5, 0xf0, 0x23, 0x05, 0x52, 0xae, 0x17, 0x67, 0x60, 0x06, 0xaf, 0xcf, 0x79, 0x61, 0x2e, 0xcd, 0x48, 0x0e, 0xf5, 0xf5, 0x9c, 0xc1, 0x65, 0x2c, 0xfb, 0xe9, 0xe2, 0x50, 0x11, 0xce, 0x74, 0x29, 0x30, 0x62, 0x32, 0xaa, 0xe8, 0x4b, 0xad, 0x65, 0x9a, 0x35, 0xbc, 0xb0, 0x5f, 0x78, 0x27, 0x82, 0xb0, 0x34, 0x5e, 0xda, 0xae, 0x56, 0x71, 0xa5, 0x43, 0x2e, 0x86, 0xa1, 0xd8, 0x80, 0x9b, 0xfa, 0x3c, 0x15, 0x0e, 0xce, 0xcb, 0xe4, 0x9c, 0xd9, 0xf3, 0x64, 0xa0, 0x76, 0x0d, 0xf8, 0xfb, 0xb2, 0x96, 0x0e, 0xce, 0xd7, 0xc8, 0x59, 0x27, 0x96, 0x4b, 0x8a, 0xc6, 0x53, 0x30, 0x75, 0x4e, 0xa6, 0x4d, 0x95, 0xc9, 0x86, 0x7c, 0x24, 0xf7, 0x42, 0x07, 0xdd, 0x15, 0xd2, 0x4d, 0x12, 0xb8, 0x8c, 0x1c, 0xba, 0x8e, 0xc2, 0xc8, 0xa6, 0xd7, 0x92, 0x0e, 0x8a, 0xab, 0xa4, 0x18, 0xc6, 0xf5, 0x88, 0x2e, 0xc2, 0x98, 0xaf, 0x3a, 0xb7, 0xe4, 0x80, 0x5f, 0x23, 0x7c, 0x94, 0x19, 0x52, 0x24, 0x2a, 0xc9, 0x43, 0x4f, 0xbb, 0x44, 0xf0, 0x3a, 0x2b, 0x98, 0x21, 0xc5, 0x00, 0x69, 0x7d, 0x83, 0x15, 0x99, 0x91, 0xcf, 0x05, 0x18, 0x55, 0x71, 0xb8, 0xa5, 0x62, 0x97, 0x20, 0xde, 0x24, 0x03, 0x10, 0x82, 0x82, 0x79, 0xa8, 0xb9, 0x16, 0xe2, 0xad, 0x6d, 0xde, 0x1e, 0x5c, 0x81, 0x15, 0x98, 0xe4, 0x06, 0x15, 0xa8, 0xd8, 0x41, 0xf1, 0x36, 0x29, 0x26, 0x0c, 0x8c, 0x6e, 0x43, 0xcb, 0x4c, 0xfb, 0xd2, 0x45, 0xf2, 0x0e, 0xdf, 0x06, 0x21, 0x94, 0xca, 0xa6, 0x8c, 0x5b, 0x67, 0xdd, 0x0c, 0xef, 0x72, 0x2a, 0x99, 0x41, 0xc5, 0x12, 0x8c, 0x47, 0x5e, 0x9a, 0x9d, 0xf5, 0x42, 0xa7, 0x72, 0xbc, 0x47, 0x8e, 0xb1, 0x12, 0xa2, 0x8c, 0xe4, 0xf1, 0x20, 0x9a, 0xf7, 0x39, 0x23, 0x06, 0x46, 0x5b, 0x2f, 0xd3, 0x5e, 0x33, 0x94, 0x8d, 0x41, 0x6c, 0x1f, 0xf0, 0xd6, 0xeb, 0xb0, 0xab, 0xa6, 0x71, 0x1e, 0x6a, 0x59, 0x70, 0xc1, 0x49, 0xf3, 0x21, 0x57, 0xba, 0x00, 0x10, 0x7e, 0x00, 0x6e, 0xee, 0x3b, 0x26, 0x1c, 0x64, 0x1f, 0x91, 0x6c, 0xb6, 0xcf, 0xa8, 0xa0, 0x96, 0x30, 0xa8, 0xf2, 0x63, 0x6e, 0x09, 0xb2, 0xc7, 0xb5, 0x06, 0x33, 0x79, 0x9c, 0x79, 0x9b, 0x83, 0x65, 0xed, 0x13, 0xce, 0x5a, 0x87, 0xad, 0x64, 0xed, 0x34, 0xcc, 0x92, 0x71, 0xb0, 0xba, 0x7e, 0xca, 0x8d, 0xb5, 0x43, 0x6f, 0x54, 0xab, 0xfb, 0x20, 0x1c, 0x28, 0xd3, 0x79, 0x5e, 0xcb, 0x38, 0x43, 0xa6, 0x11, 0x79, 0x89, 0x83, 0xf9, 0x3a, 0x99, 0xb9, 0xe3, 0x2f, 0x97, 0x82, 0x55, 0x2f, 0x41, 0xf9, 0xfd, 0xb0, 0x9f, 0xe5, 0x79, 0x9c, 0xca, 0x96, 0xf2, 0xe3, 0xe0, 0x82, 0x6c, 0x3b, 0xa8, 0x3f, 0xeb, 0x29, 0xd5, 0x86, 0x81, 0xa3, 0xf9, 0x24, 0xdc, 0x50, 0x9e, 0x55, 0x1a, 0x41, 0x94, 0xa8, 0x54, 0x5b, 0x8c, 0x9f, 0x73, 0xa5, 0x4a, 0xee, 0x64, 0x81, 0x89, 0x65, 0x98, 0x28, 0x3e, 0xba, 0x3e, 0x92, 0x5f, 0x90, 0x68, 0xbc, 0x4b, 0x51, 0xe3, 0x68, 0xa9, 0x28, 0xf1, 0x52, 0x97, 0xfe, 0xf7, 0x25, 0x37, 0x0e, 0x42, 0xa8, 0x71, 0xe8, 0xad, 0x44, 0xe2, 0xb4, 0x77, 0x30, 0x7c, 0xc5, 0x8d, 0x83, 0x19, 0x52, 0xf0, 0x81, 0xc1, 0x41, 0xf1, 0x35, 0x2b, 0x98, 0x41, 0xc5, 0x3d, 0xdd, 0x41, 0x9b, 0x4a, 0x3f, 0xc8, 0x74, 0xea, 0xe1, 0x6a, 0x8b, 0xea, 0x9b, 0xed, 0xea, 0x21, 0x6c, 0xdd, 0x40, 0xc5, 0x29, 0x98, 0xec, 0x39, 0x62, 0xd4, 0x6f, 0xdb, 0x63, 0x5b, 0x95, 0x59, 0xe6, 0xf9, 0xa5, 0xf0, 0xd1, 0x1d, 0x6a, 0x46, 0xd5, 0x13, 0x86, 0xb8, 0x13, 0xeb, 0x5e, 0x3d, 0x07, 0xd8, 0x65, 0x17, 0x77, 0xca, 0xd2, 0x57, 0x8e, 0x01, 0xe2, 0x04, 0x8c, 0x57, 0xce, 0x00, 0x76, 0xd5, 0x63, 0xa4, 0x1a, 0x33, 0x8f, 0x00, 0xe2, 0x08, 0x0c, 0xe1, 0x3c, 0xb7, 0xe3, 0x8f, 0x13, 0x5e, 0x2c, 0x17, 0xc7, 0x60, 0x84, 0xe7, 0xb8, 0x1d, 0x7d, 0x82, 0xd0, 0x12, 0x41, 0x9c, 0x67, 0xb8, 0x1d, 0x7f, 0x92, 0x71, 0x46, 0x10, 0x77, 0x4f, 0xe1, 0xb7, 0x4f, 0x0f, 0x51, 0x1f, 0xe6, 0xdc, 0xcd, 0xc3, 0x30, 0x0d, 0x6f, 0x3b, 0xfd, 0x14, 0xfd, 0x38, 0x13, 0xe2, 0x0e, 0xd8, 0xe7, 0x98, 0xf0, 0x67, 0x08, 0xed, 0xac, 0x17, 0x4b, 0x30, 0x6a, 0x0c, 0x6c, 0x3b, 0xfe, 0x2c, 0xe1, 0x26, 0x85, 0xa1, 0xd3, 0xc0, 0xb6, 0x0b, 0x9e, 0xe3, 0xd0, 0x89, 0xc0, 0xb4, 0xf1, 0xac, 0xb6, 0xd3, 0xcf, 0x73, 0xd6, 0x19, 0x11, 0x0b, 0x50, 0x2b, 0xfb, 0xaf, 0x9d, 0x7f, 0x81, 0xf8, 0x2e, 0x83, 0x19, 0x30, 0xfa, 0xbf, 0x5d, 0xf1, 0x22, 0x67, 0xc0, 0xa0, 0x70, 0x1b, 0xf5, 0xce, 0x74, 0xbb, 0xe9, 0x25, 0xde, 0x46, 0x3d, 0x23, 0x1d, 0xab, 0x59, 0xb4, 0x41, 0xbb, 0xe2, 0x65, 0xae, 0x66, 0xb1, 0x1e, 0xc3, 0xe8, 0x1d, 0x92, 0x76, 0xc7, 0x2b, 0x1c, 0x46, 0xcf, 0x8c, 0x14, 0x6b, 0x50, 0xdf, 0x3b, 0x20, 0xed, 0xbe, 0x57, 0xc9, 0x37, 0xb5, 0x67, 0x3e, 0x8a, 0xfb, 0x60, 0xb6, 0xff, 0x70, 0xb4, 0x5b, 0x2f, 0xed, 0xf4, 0xbc, 0xce, 0x98, 0xb3, 0x51, 0x9c, 0xee, 0x76, 0x59, 0x73, 0x30, 0xda, 0xb5, 0x97, 0x77, 0xaa, 0x8d, 0xd6, 0x9c, 0x8b, 0x62, 0x11, 0xa0, 0x3b, 0x93, 0xec, 0xae, 0x2b, 0xe4, 0x32, 0x20, 0xdc, 0x1a, 0x34, 0x92, 0xec, 0xfc, 0x55, 0xde, 0x1a, 0x44, 0xe0, 0xd6, 0xe0, 0x69, 0x64, 0xa7, 0xaf, 0xf1, 0xd6, 0x60, 0x44, 0xcc, 0xc3, 0x48, 0x9c, 0x87, 0x21, 0x3e, 0x5b, 0xf5, 0x5b, 0xfb, 0x8c, 0x1b, 0x19, 0xb6, 0x19, 0xfe, 0x65, 0x97, 0x60, 0x06, 0xc4, 0x11, 0xd8, 0x27, 0xa3, 0xa6, 0x6c, 0xdb, 0xc8, 0x5f, 0x77, 0xb9, 0x9f, 0xe0, 0x6a, 0xb1, 0x00, 0xd0, 0x79, 0x99, 0xc6, 0x28, 0x6c, 0xec, 0x6f, 0xbb, 0x9d, 0xf7, 0x7a, 0x03, 0xe9, 0x0a, 0x8a, 0xb7, 0x71, 0x8b, 0x60, 0xbb, 0x2a, 0x28, 0x5e, 0xc0, 0x8f, 0xc2, 0xf0, 0x43, 0x99, 0x8a, 0xb5, 0xe7, 0xdb, 0xe8, 0xdf, 0x89, 0xe6, 0xf5, 0x98, 0xb0, 0x48, 0xa5, 0x52, 0x7b, 0x7e, 0x66, 0x63, 0xff, 0x20, 0xb6, 0x04, 0x10, 0x6e, 0x79, 0x99, 0x76, 0xb9, 0xef, 0x3f, 0x19, 0x66, 0x00, 0x83, 0xc6, 0xeb, 0x87, 0xe5, 0x96, 0x8d, 0xfd, 0x8b, 0x83, 0xa6, 0xf5, 0xe2, 0x18, 0xd4, 0xf0, 0xb2, 0xf8, 0x3f, 0x84, 0x0d, 0xfe, 0x9b, 0xe0, 0x2e, 0x81, 0xbf, 0x9c, 0xe9, 0xb6, 0x0e, 0xec, 0xc9, 0xfe, 0x87, 0x2a, 0xcd, 0xeb, 0xc5, 0x22, 0x8c, 0x66, 0xba, 0xdd, 0xce, 0xe9, 0x44, 0x63, 0xc1, 0xff, 0xdd, 0x2d, 0x5f, 0x72, 0x4b, 0xe6, 0xf8, 0x21, 0x98, 0x6e, 0xa9, 0xa8, 0x17, 0x3c, 0x0e, 0x2b, 0x6a, 0x45, 0xad, 0x15, 0xbb, 0xe8, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x9c, 0xec, 0xd8, 0x50, 0x13, 0x00, 0x00, } golang-gogoprotobuf-0.5/gogoproto/gogo.pb.golden000066400000000000000000000023551317075173200221160ustar00rootroot00000000000000// 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) } golang-gogoprotobuf-0.5/gogoproto/gogo.proto000066400000000000000000000106061317075173200214070ustar00rootroot00000000000000// 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"; 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; } golang-gogoprotobuf-0.5/gogoproto/helper.go000066400000000000000000000314041317075173200211740ustar00rootroot00000000000000// 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. package gogoproto import google_protobuf "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import proto "github.com/gogo/protobuf/proto" func IsEmbed(field *google_protobuf.FieldDescriptorProto) bool { return proto.GetBoolExtension(field.Options, E_Embed, false) } func IsNullable(field *google_protobuf.FieldDescriptorProto) bool { return proto.GetBoolExtension(field.Options, E_Nullable, true) } func IsStdTime(field *google_protobuf.FieldDescriptorProto) bool { return proto.GetBoolExtension(field.Options, E_Stdtime, false) } func IsStdDuration(field *google_protobuf.FieldDescriptorProto) bool { return proto.GetBoolExtension(field.Options, E_Stdduration, false) } func NeedsNilCheck(proto3 bool, field *google_protobuf.FieldDescriptorProto) bool { nullable := IsNullable(field) if field.IsMessage() || IsCustomType(field) { return nullable } if proto3 { return false } return nullable || *field.Type == google_protobuf.FieldDescriptorProto_TYPE_BYTES } func IsCustomType(field *google_protobuf.FieldDescriptorProto) bool { typ := GetCustomType(field) if len(typ) > 0 { return true } return false } func IsCastType(field *google_protobuf.FieldDescriptorProto) bool { typ := GetCastType(field) if len(typ) > 0 { return true } return false } func IsCastKey(field *google_protobuf.FieldDescriptorProto) bool { typ := GetCastKey(field) if len(typ) > 0 { return true } return false } func IsCastValue(field *google_protobuf.FieldDescriptorProto) bool { typ := GetCastValue(field) if len(typ) > 0 { return true } return false } func HasEnumDecl(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool { return proto.GetBoolExtension(enum.Options, E_Enumdecl, proto.GetBoolExtension(file.Options, E_EnumdeclAll, true)) } func HasTypeDecl(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Typedecl, proto.GetBoolExtension(file.Options, E_TypedeclAll, true)) } func GetCustomType(field *google_protobuf.FieldDescriptorProto) string { if field == nil { return "" } if field.Options != nil { v, err := proto.GetExtension(field.Options, E_Customtype) if err == nil && v.(*string) != nil { return *(v.(*string)) } } return "" } func GetCastType(field *google_protobuf.FieldDescriptorProto) string { if field == nil { return "" } if field.Options != nil { v, err := proto.GetExtension(field.Options, E_Casttype) if err == nil && v.(*string) != nil { return *(v.(*string)) } } return "" } func GetCastKey(field *google_protobuf.FieldDescriptorProto) string { if field == nil { return "" } if field.Options != nil { v, err := proto.GetExtension(field.Options, E_Castkey) if err == nil && v.(*string) != nil { return *(v.(*string)) } } return "" } func GetCastValue(field *google_protobuf.FieldDescriptorProto) string { if field == nil { return "" } if field.Options != nil { v, err := proto.GetExtension(field.Options, E_Castvalue) if err == nil && v.(*string) != nil { return *(v.(*string)) } } return "" } func IsCustomName(field *google_protobuf.FieldDescriptorProto) bool { name := GetCustomName(field) if len(name) > 0 { return true } return false } func IsEnumCustomName(field *google_protobuf.EnumDescriptorProto) bool { name := GetEnumCustomName(field) if len(name) > 0 { return true } return false } func IsEnumValueCustomName(field *google_protobuf.EnumValueDescriptorProto) bool { name := GetEnumValueCustomName(field) if len(name) > 0 { return true } return false } func GetCustomName(field *google_protobuf.FieldDescriptorProto) string { if field == nil { return "" } if field.Options != nil { v, err := proto.GetExtension(field.Options, E_Customname) if err == nil && v.(*string) != nil { return *(v.(*string)) } } return "" } func GetEnumCustomName(field *google_protobuf.EnumDescriptorProto) string { if field == nil { return "" } if field.Options != nil { v, err := proto.GetExtension(field.Options, E_EnumCustomname) if err == nil && v.(*string) != nil { return *(v.(*string)) } } return "" } func GetEnumValueCustomName(field *google_protobuf.EnumValueDescriptorProto) string { if field == nil { return "" } if field.Options != nil { v, err := proto.GetExtension(field.Options, E_EnumvalueCustomname) if err == nil && v.(*string) != nil { return *(v.(*string)) } } return "" } func GetJsonTag(field *google_protobuf.FieldDescriptorProto) *string { if field == nil { return nil } if field.Options != nil { v, err := proto.GetExtension(field.Options, E_Jsontag) if err == nil && v.(*string) != nil { return (v.(*string)) } } return nil } func GetMoreTags(field *google_protobuf.FieldDescriptorProto) *string { if field == nil { return nil } if field.Options != nil { v, err := proto.GetExtension(field.Options, E_Moretags) if err == nil && v.(*string) != nil { return (v.(*string)) } } return nil } type EnableFunc func(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool func EnabledGoEnumPrefix(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool { return proto.GetBoolExtension(enum.Options, E_GoprotoEnumPrefix, proto.GetBoolExtension(file.Options, E_GoprotoEnumPrefixAll, true)) } func EnabledGoStringer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_GoprotoStringer, proto.GetBoolExtension(file.Options, E_GoprotoStringerAll, true)) } func HasGoGetters(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_GoprotoGetters, proto.GetBoolExtension(file.Options, E_GoprotoGettersAll, true)) } func IsUnion(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Onlyone, proto.GetBoolExtension(file.Options, E_OnlyoneAll, false)) } func HasGoString(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Gostring, proto.GetBoolExtension(file.Options, E_GostringAll, false)) } func HasEqual(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Equal, proto.GetBoolExtension(file.Options, E_EqualAll, false)) } func HasVerboseEqual(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_VerboseEqual, proto.GetBoolExtension(file.Options, E_VerboseEqualAll, false)) } func IsStringer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Stringer, proto.GetBoolExtension(file.Options, E_StringerAll, false)) } func IsFace(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Face, proto.GetBoolExtension(file.Options, E_FaceAll, false)) } func HasDescription(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Description, proto.GetBoolExtension(file.Options, E_DescriptionAll, false)) } func HasPopulate(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Populate, proto.GetBoolExtension(file.Options, E_PopulateAll, false)) } func HasTestGen(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Testgen, proto.GetBoolExtension(file.Options, E_TestgenAll, false)) } func HasBenchGen(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Benchgen, proto.GetBoolExtension(file.Options, E_BenchgenAll, false)) } func IsMarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Marshaler, proto.GetBoolExtension(file.Options, E_MarshalerAll, false)) } func IsUnmarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Unmarshaler, proto.GetBoolExtension(file.Options, E_UnmarshalerAll, false)) } func IsStableMarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_StableMarshaler, proto.GetBoolExtension(file.Options, E_StableMarshalerAll, false)) } func IsSizer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Sizer, proto.GetBoolExtension(file.Options, E_SizerAll, false)) } func IsProtoSizer(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Protosizer, proto.GetBoolExtension(file.Options, E_ProtosizerAll, false)) } func IsGoEnumStringer(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool { return proto.GetBoolExtension(enum.Options, E_GoprotoEnumStringer, proto.GetBoolExtension(file.Options, E_GoprotoEnumStringerAll, true)) } func IsEnumStringer(file *google_protobuf.FileDescriptorProto, enum *google_protobuf.EnumDescriptorProto) bool { return proto.GetBoolExtension(enum.Options, E_EnumStringer, proto.GetBoolExtension(file.Options, E_EnumStringerAll, false)) } func IsUnsafeMarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_UnsafeMarshaler, proto.GetBoolExtension(file.Options, E_UnsafeMarshalerAll, false)) } func IsUnsafeUnmarshaler(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_UnsafeUnmarshaler, proto.GetBoolExtension(file.Options, E_UnsafeUnmarshalerAll, false)) } func HasExtensionsMap(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_GoprotoExtensionsMap, proto.GetBoolExtension(file.Options, E_GoprotoExtensionsMapAll, true)) } func HasUnrecognized(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { if IsProto3(file) { return false } return proto.GetBoolExtension(message.Options, E_GoprotoUnrecognized, proto.GetBoolExtension(file.Options, E_GoprotoUnrecognizedAll, true)) } func IsProto3(file *google_protobuf.FileDescriptorProto) bool { return file.GetSyntax() == "proto3" } func ImportsGoGoProto(file *google_protobuf.FileDescriptorProto) bool { return proto.GetBoolExtension(file.Options, E_GogoprotoImport, true) } func HasCompare(file *google_protobuf.FileDescriptorProto, message *google_protobuf.DescriptorProto) bool { return proto.GetBoolExtension(message.Options, E_Compare, proto.GetBoolExtension(file.Options, E_CompareAll, false)) } func RegistersGolangProto(file *google_protobuf.FileDescriptorProto) bool { return proto.GetBoolExtension(file.Options, E_GoprotoRegistration, false) } golang-gogoprotobuf-0.5/gogoreplace/000077500000000000000000000000001317075173200176345ustar00rootroot00000000000000golang-gogoprotobuf-0.5/gogoreplace/main.go000066400000000000000000000007201317075173200211060ustar00rootroot00000000000000package main import ( "bytes" "fmt" "io/ioutil" "os" ) func main() { args := os.Args if len(args) != 4 { fmt.Println("gogoreplace wants three arguments") fmt.Println(" gogoreplace oldsubstring newsubstring filename") os.Exit(1) } data, err := ioutil.ReadFile(args[3]) if err != nil { panic(err) } data = bytes.Replace(data, []byte(args[1]), []byte(args[2]), -1) if err := ioutil.WriteFile(args[3], data, 0666); err != nil { panic(err) } } golang-gogoprotobuf-0.5/install-protobuf.sh000077500000000000000000000012071317075173200212100ustar00rootroot00000000000000#!/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 golang-gogoprotobuf-0.5/io/000077500000000000000000000000001317075173200157545ustar00rootroot00000000000000golang-gogoprotobuf-0.5/io/full.go000066400000000000000000000053071317075173200172520ustar00rootroot00000000000000// 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. package io import ( "github.com/gogo/protobuf/proto" "io" ) func NewFullWriter(w io.Writer) WriteCloser { return &fullWriter{w, nil} } type fullWriter struct { w io.Writer buffer []byte } func (this *fullWriter) WriteMsg(msg proto.Message) (err error) { var data []byte if m, ok := msg.(marshaler); ok { n, ok := getSize(m) if !ok { data, err = proto.Marshal(msg) if err != nil { return err } } if n >= len(this.buffer) { this.buffer = make([]byte, n) } _, err = m.MarshalTo(this.buffer) if err != nil { return err } data = this.buffer[:n] } else { data, err = proto.Marshal(msg) if err != nil { return err } } _, err = this.w.Write(data) return err } func (this *fullWriter) Close() error { if closer, ok := this.w.(io.Closer); ok { return closer.Close() } return nil } type fullReader struct { r io.Reader buf []byte } func NewFullReader(r io.Reader, maxSize int) ReadCloser { return &fullReader{r, make([]byte, maxSize)} } func (this *fullReader) ReadMsg(msg proto.Message) error { length, err := this.r.Read(this.buf) if err != nil { return err } return proto.Unmarshal(this.buf[:length], msg) } func (this *fullReader) Close() error { if closer, ok := this.r.(io.Closer); ok { return closer.Close() } return nil } golang-gogoprotobuf-0.5/io/io.go000066400000000000000000000040131317075173200167100ustar00rootroot00000000000000// 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. package io import ( "github.com/gogo/protobuf/proto" "io" ) type Writer interface { WriteMsg(proto.Message) error } type WriteCloser interface { Writer io.Closer } type Reader interface { ReadMsg(msg proto.Message) error } type ReadCloser interface { Reader io.Closer } type marshaler interface { MarshalTo(data []byte) (n int, err error) } func getSize(v interface{}) (int, bool) { if sz, ok := v.(interface { Size() (n int) }); ok { return sz.Size(), true } else if sz, ok := v.(interface { ProtoSize() (n int) }); ok { return sz.ProtoSize(), true } else { return 0, false } } golang-gogoprotobuf-0.5/io/io_test.go000066400000000000000000000131241317075173200177520ustar00rootroot00000000000000// 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. package io_test import ( "bytes" "encoding/binary" "github.com/gogo/protobuf/io" "github.com/gogo/protobuf/test" goio "io" "math/rand" "testing" "time" ) func iotest(writer io.WriteCloser, reader io.ReadCloser) error { size := 1000 msgs := make([]*test.NinOptNative, size) r := rand.New(rand.NewSource(time.Now().UnixNano())) for i := range msgs { msgs[i] = test.NewPopulatedNinOptNative(r, true) //issue 31 if i == 5 { msgs[i] = &test.NinOptNative{} } //issue 31 if i == 999 { msgs[i] = &test.NinOptNative{} } err := writer.WriteMsg(msgs[i]) if err != nil { return err } } if err := writer.Close(); err != nil { return err } i := 0 for { msg := &test.NinOptNative{} if err := reader.ReadMsg(msg); err != nil { if err == goio.EOF { break } return err } if err := msg.VerboseEqual(msgs[i]); err != nil { return err } i++ } if i != size { panic("not enough messages read") } if err := reader.Close(); err != nil { return err } return nil } type buffer struct { *bytes.Buffer closed bool } func (this *buffer) Close() error { this.closed = true return nil } func newBuffer() *buffer { return &buffer{bytes.NewBuffer(nil), false} } func TestBigUint32Normal(t *testing.T) { buf := newBuffer() writer := io.NewUint32DelimitedWriter(buf, binary.BigEndian) reader := io.NewUint32DelimitedReader(buf, binary.BigEndian, 1024*1024) if err := iotest(writer, reader); err != nil { t.Error(err) } if !buf.closed { t.Fatalf("did not close buffer") } } func TestBigUint32MaxSize(t *testing.T) { buf := newBuffer() writer := io.NewUint32DelimitedWriter(buf, binary.BigEndian) reader := io.NewUint32DelimitedReader(buf, binary.BigEndian, 20) if err := iotest(writer, reader); err != goio.ErrShortBuffer { t.Error(err) } else { t.Logf("%s", err) } } func TestLittleUint32Normal(t *testing.T) { buf := newBuffer() writer := io.NewUint32DelimitedWriter(buf, binary.LittleEndian) reader := io.NewUint32DelimitedReader(buf, binary.LittleEndian, 1024*1024) if err := iotest(writer, reader); err != nil { t.Error(err) } if !buf.closed { t.Fatalf("did not close buffer") } } func TestLittleUint32MaxSize(t *testing.T) { buf := newBuffer() writer := io.NewUint32DelimitedWriter(buf, binary.LittleEndian) reader := io.NewUint32DelimitedReader(buf, binary.LittleEndian, 20) if err := iotest(writer, reader); err != goio.ErrShortBuffer { t.Error(err) } else { t.Logf("%s", err) } } func TestVarintNormal(t *testing.T) { buf := newBuffer() writer := io.NewDelimitedWriter(buf) reader := io.NewDelimitedReader(buf, 1024*1024) if err := iotest(writer, reader); err != nil { t.Error(err) } if !buf.closed { t.Fatalf("did not close buffer") } } func TestVarintNoClose(t *testing.T) { buf := bytes.NewBuffer(nil) writer := io.NewDelimitedWriter(buf) reader := io.NewDelimitedReader(buf, 1024*1024) if err := iotest(writer, reader); err != nil { t.Error(err) } } //issue 32 func TestVarintMaxSize(t *testing.T) { buf := newBuffer() writer := io.NewDelimitedWriter(buf) reader := io.NewDelimitedReader(buf, 20) if err := iotest(writer, reader); err != goio.ErrShortBuffer { t.Error(err) } else { t.Logf("%s", err) } } func TestVarintError(t *testing.T) { buf := newBuffer() buf.Write([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f}) reader := io.NewDelimitedReader(buf, 1024*1024) msg := &test.NinOptNative{} err := reader.ReadMsg(msg) if err == nil { t.Fatalf("Expected error") } } func TestFull(t *testing.T) { buf := newBuffer() writer := io.NewFullWriter(buf) reader := io.NewFullReader(buf, 1024*1024) r := rand.New(rand.NewSource(time.Now().UnixNano())) msgIn := test.NewPopulatedNinOptNative(r, true) if err := writer.WriteMsg(msgIn); err != nil { panic(err) } if err := writer.Close(); err != nil { panic(err) } msgOut := &test.NinOptNative{} if err := reader.ReadMsg(msgOut); err != nil { panic(err) } if err := msgIn.VerboseEqual(msgOut); err != nil { panic(err) } if err := reader.ReadMsg(msgOut); err != nil { if err != goio.EOF { panic(err) } } if err := reader.Close(); err != nil { panic(err) } if !buf.closed { t.Fatalf("did not close buffer") } } golang-gogoprotobuf-0.5/io/uint32.go000066400000000000000000000074461317075173200174420ustar00rootroot00000000000000// 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. package io import ( "encoding/binary" "io" "github.com/gogo/protobuf/proto" ) const uint32BinaryLen = 4 func NewUint32DelimitedWriter(w io.Writer, byteOrder binary.ByteOrder) WriteCloser { return &uint32Writer{w, byteOrder, nil, make([]byte, uint32BinaryLen)} } func NewSizeUint32DelimitedWriter(w io.Writer, byteOrder binary.ByteOrder, size int) WriteCloser { return &uint32Writer{w, byteOrder, make([]byte, size), make([]byte, uint32BinaryLen)} } type uint32Writer struct { w io.Writer byteOrder binary.ByteOrder buffer []byte lenBuf []byte } func (this *uint32Writer) writeFallback(msg proto.Message) error { data, err := proto.Marshal(msg) if err != nil { return err } length := uint32(len(data)) this.byteOrder.PutUint32(this.lenBuf, length) if _, err = this.w.Write(this.lenBuf); err != nil { return err } _, err = this.w.Write(data) return err } func (this *uint32Writer) WriteMsg(msg proto.Message) error { m, ok := msg.(marshaler) if !ok { return this.writeFallback(msg) } n, ok := getSize(m) if !ok { return this.writeFallback(msg) } size := n + uint32BinaryLen if size > len(this.buffer) { this.buffer = make([]byte, size) } this.byteOrder.PutUint32(this.buffer, uint32(n)) if _, err := m.MarshalTo(this.buffer[uint32BinaryLen:]); err != nil { return err } _, err := this.w.Write(this.buffer[:size]) return err } func (this *uint32Writer) Close() error { if closer, ok := this.w.(io.Closer); ok { return closer.Close() } return nil } type uint32Reader struct { r io.Reader byteOrder binary.ByteOrder lenBuf []byte buf []byte maxSize int } func NewUint32DelimitedReader(r io.Reader, byteOrder binary.ByteOrder, maxSize int) ReadCloser { return &uint32Reader{r, byteOrder, make([]byte, 4), nil, maxSize} } func (this *uint32Reader) ReadMsg(msg proto.Message) error { if _, err := io.ReadFull(this.r, this.lenBuf); err != nil { return err } length32 := this.byteOrder.Uint32(this.lenBuf) length := int(length32) if length < 0 || length > this.maxSize { return io.ErrShortBuffer } if length >= len(this.buf) { this.buf = make([]byte, length) } _, err := io.ReadFull(this.r, this.buf[:length]) if err != nil { return err } return proto.Unmarshal(this.buf[:length], msg) } func (this *uint32Reader) Close() error { if closer, ok := this.r.(io.Closer); ok { return closer.Close() } return nil } golang-gogoprotobuf-0.5/io/uint32_test.go000066400000000000000000000015151317075173200204700ustar00rootroot00000000000000package io_test import ( "encoding/binary" "io/ioutil" "math/rand" "testing" "time" "github.com/gogo/protobuf/test" example "github.com/gogo/protobuf/test/example" "github.com/gogo/protobuf/io" ) func BenchmarkUint32DelimWriterMarshaller(b *testing.B) { w := io.NewUint32DelimitedWriter(ioutil.Discard, binary.BigEndian) r := rand.New(rand.NewSource(time.Now().UnixNano())) msg := example.NewPopulatedA(r, true) for i := 0; i < b.N; i++ { if err := w.WriteMsg(msg); err != nil { b.Fatal(err) } } } func BenchmarkUint32DelimWriterFallback(b *testing.B) { w := io.NewUint32DelimitedWriter(ioutil.Discard, binary.BigEndian) r := rand.New(rand.NewSource(time.Now().UnixNano())) msg := test.NewPopulatedNinOptNative(r, true) for i := 0; i < b.N; i++ { if err := w.WriteMsg(msg); err != nil { b.Fatal(err) } } } golang-gogoprotobuf-0.5/io/varint.go000066400000000000000000000066431317075173200176170ustar00rootroot00000000000000// 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. package io import ( "bufio" "encoding/binary" "errors" "github.com/gogo/protobuf/proto" "io" ) var ( errSmallBuffer = errors.New("Buffer Too Small") errLargeValue = errors.New("Value is Larger than 64 bits") ) func NewDelimitedWriter(w io.Writer) WriteCloser { return &varintWriter{w, make([]byte, 10), nil} } type varintWriter struct { w io.Writer lenBuf []byte buffer []byte } func (this *varintWriter) WriteMsg(msg proto.Message) (err error) { var data []byte if m, ok := msg.(marshaler); ok { n, ok := getSize(m) if !ok { data, err = proto.Marshal(msg) if err != nil { return err } } if n >= len(this.buffer) { this.buffer = make([]byte, n) } _, err = m.MarshalTo(this.buffer) if err != nil { return err } data = this.buffer[:n] } else { data, err = proto.Marshal(msg) if err != nil { return err } } length := uint64(len(data)) n := binary.PutUvarint(this.lenBuf, length) _, err = this.w.Write(this.lenBuf[:n]) if err != nil { return err } _, err = this.w.Write(data) return err } func (this *varintWriter) Close() error { if closer, ok := this.w.(io.Closer); ok { return closer.Close() } return nil } func NewDelimitedReader(r io.Reader, maxSize int) ReadCloser { var closer io.Closer if c, ok := r.(io.Closer); ok { closer = c } return &varintReader{bufio.NewReader(r), nil, maxSize, closer} } type varintReader struct { r *bufio.Reader buf []byte maxSize int closer io.Closer } func (this *varintReader) ReadMsg(msg proto.Message) error { length64, err := binary.ReadUvarint(this.r) if err != nil { return err } length := int(length64) if length < 0 || length > this.maxSize { return io.ErrShortBuffer } if len(this.buf) < length { this.buf = make([]byte, length) } buf := this.buf[:length] if _, err := io.ReadFull(this.r, buf); err != nil { return err } return proto.Unmarshal(buf, msg) } func (this *varintReader) Close() error { if this.closer != nil { return this.closer.Close() } return nil } golang-gogoprotobuf-0.5/jsonpb/000077500000000000000000000000001317075173200166405ustar00rootroot00000000000000golang-gogoprotobuf-0.5/jsonpb/jsonpb.go000066400000000000000000001027101317075173200204630ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2015 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. /* Package jsonpb provides marshaling and unmarshaling between protocol buffers and JSON. It follows the specification at https://developers.google.com/protocol-buffers/docs/proto3#json. This package produces a different output than the standard "encoding/json" package, which does not operate correctly on protocol buffers. */ package jsonpb import ( "bytes" "encoding/json" "errors" "fmt" "io" "math" "reflect" "sort" "strconv" "strings" "time" "github.com/gogo/protobuf/proto" "github.com/gogo/protobuf/types" ) // Marshaler is a configurable object for converting between // protocol buffer objects and a JSON representation for them. type Marshaler struct { // Whether to render enum values as integers, as opposed to string values. EnumsAsInts bool // Whether to render fields with zero values. EmitDefaults bool // A string to indent each level by. The presence of this field will // also cause a space to appear between the field separator and // value, and for newlines to be appear between fields and array // elements. Indent string // Whether to use the original (.proto) name for fields. OrigName bool } // JSONPBMarshaler is implemented by protobuf messages that customize the // way they are marshaled to JSON. Messages that implement this should // also implement JSONPBUnmarshaler so that the custom format can be // parsed. type JSONPBMarshaler interface { MarshalJSONPB(*Marshaler) ([]byte, error) } // JSONPBUnmarshaler is implemented by protobuf messages that customize // the way they are unmarshaled from JSON. Messages that implement this // should also implement JSONPBMarshaler so that the custom format can be // produced. type JSONPBUnmarshaler interface { UnmarshalJSONPB(*Unmarshaler, []byte) error } // Marshal marshals a protocol buffer into JSON. func (m *Marshaler) Marshal(out io.Writer, pb proto.Message) error { writer := &errWriter{writer: out} return m.marshalObject(writer, pb, "", "") } // MarshalToString converts a protocol buffer object to JSON string. func (m *Marshaler) MarshalToString(pb proto.Message) (string, error) { var buf bytes.Buffer if err := m.Marshal(&buf, pb); err != nil { return "", err } return buf.String(), nil } type int32Slice []int32 var nonFinite = map[string]float64{ `"NaN"`: math.NaN(), `"Infinity"`: math.Inf(1), `"-Infinity"`: math.Inf(-1), } // For sorting extensions ids to ensure stable output. func (s int32Slice) Len() int { return len(s) } func (s int32Slice) Less(i, j int) bool { return s[i] < s[j] } func (s int32Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } type isWkt interface { XXX_WellKnownType() string } // marshalObject writes a struct to the Writer. func (m *Marshaler) marshalObject(out *errWriter, v proto.Message, indent, typeURL string) error { if jsm, ok := v.(JSONPBMarshaler); ok { b, err := jsm.MarshalJSONPB(m) if err != nil { return err } if typeURL != "" { // we are marshaling this object to an Any type var js map[string]*json.RawMessage if err = json.Unmarshal(b, &js); err != nil { return fmt.Errorf("type %T produced invalid JSON: %v", v, err) } turl, err := json.Marshal(typeURL) if err != nil { return fmt.Errorf("failed to marshal type URL %q to JSON: %v", typeURL, err) } js["@type"] = (*json.RawMessage)(&turl) if b, err = json.Marshal(js); err != nil { return err } } out.write(string(b)) return out.err } s := reflect.ValueOf(v).Elem() // Handle well-known types. if wkt, ok := v.(isWkt); ok { switch wkt.XXX_WellKnownType() { case "DoubleValue", "FloatValue", "Int64Value", "UInt64Value", "Int32Value", "UInt32Value", "BoolValue", "StringValue", "BytesValue": // "Wrappers use the same representation in JSON // as the wrapped primitive type, ..." sprop := proto.GetProperties(s.Type()) return m.marshalValue(out, sprop.Prop[0], s.Field(0), indent) case "Any": // Any is a bit more involved. return m.marshalAny(out, v, indent) case "Duration": // "Generated output always contains 3, 6, or 9 fractional digits, // depending on required precision." s, ns := s.Field(0).Int(), s.Field(1).Int() d := time.Duration(s)*time.Second + time.Duration(ns)*time.Nanosecond x := fmt.Sprintf("%.9f", d.Seconds()) x = strings.TrimSuffix(x, "000") x = strings.TrimSuffix(x, "000") out.write(`"`) out.write(x) out.write(`s"`) return out.err case "Struct", "ListValue": // Let marshalValue handle the `Struct.fields` map or the `ListValue.values` slice. // TODO: pass the correct Properties if needed. return m.marshalValue(out, &proto.Properties{}, s.Field(0), indent) case "Timestamp": // "RFC 3339, where generated output will always be Z-normalized // and uses 3, 6 or 9 fractional digits." s, ns := s.Field(0).Int(), s.Field(1).Int() t := time.Unix(s, ns).UTC() // time.RFC3339Nano isn't exactly right (we need to get 3/6/9 fractional digits). x := t.Format("2006-01-02T15:04:05.000000000") x = strings.TrimSuffix(x, "000") x = strings.TrimSuffix(x, "000") out.write(`"`) out.write(x) out.write(`Z"`) return out.err case "Value": // Value has a single oneof. kind := s.Field(0) if kind.IsNil() { // "absence of any variant indicates an error" return errors.New("nil Value") } // oneof -> *T -> T -> T.F x := kind.Elem().Elem().Field(0) // TODO: pass the correct Properties if needed. return m.marshalValue(out, &proto.Properties{}, x, indent) } } out.write("{") if m.Indent != "" { out.write("\n") } firstField := true if typeURL != "" { if err := m.marshalTypeURL(out, indent, typeURL); err != nil { return err } firstField = false } for i := 0; i < s.NumField(); i++ { value := s.Field(i) valueField := s.Type().Field(i) if strings.HasPrefix(valueField.Name, "XXX_") { continue } //this is not a protobuf field if valueField.Tag.Get("protobuf") == "" && valueField.Tag.Get("protobuf_oneof") == "" { continue } // IsNil will panic on most value kinds. switch value.Kind() { case reflect.Chan, reflect.Func, reflect.Interface: if value.IsNil() { continue } } if !m.EmitDefaults { switch value.Kind() { case reflect.Bool: if !value.Bool() { continue } case reflect.Int32, reflect.Int64: if value.Int() == 0 { continue } case reflect.Uint32, reflect.Uint64: if value.Uint() == 0 { continue } case reflect.Float32, reflect.Float64: if value.Float() == 0 { continue } case reflect.String: if value.Len() == 0 { continue } case reflect.Map, reflect.Ptr, reflect.Slice: if value.IsNil() { continue } } } // Oneof fields need special handling. if valueField.Tag.Get("protobuf_oneof") != "" { // value is an interface containing &T{real_value}. sv := value.Elem().Elem() // interface -> *T -> T value = sv.Field(0) valueField = sv.Type().Field(0) } prop := jsonProperties(valueField, m.OrigName) if !firstField { m.writeSep(out) } // If the map value is a cast type, it may not implement proto.Message, therefore // allow the struct tag to declare the underlying message type. Instead of changing // the signatures of the child types (and because prop.mvalue is not public), use // CustomType as a passer. if value.Kind() == reflect.Map { if tag := valueField.Tag.Get("protobuf"); tag != "" { for _, v := range strings.Split(tag, ",") { if !strings.HasPrefix(v, "castvaluetype=") { continue } v = strings.TrimPrefix(v, "castvaluetype=") prop.CustomType = v break } } } if err := m.marshalField(out, prop, value, indent); err != nil { return err } firstField = false } // Handle proto2 extensions. if ep, ok := v.(proto.Message); ok { extensions := proto.RegisteredExtensions(v) // Sort extensions for stable output. ids := make([]int32, 0, len(extensions)) for id, desc := range extensions { if !proto.HasExtension(ep, desc) { continue } ids = append(ids, id) } sort.Sort(int32Slice(ids)) for _, id := range ids { desc := extensions[id] if desc == nil { // unknown extension continue } ext, extErr := proto.GetExtension(ep, desc) if extErr != nil { return extErr } value := reflect.ValueOf(ext) var prop proto.Properties prop.Parse(desc.Tag) prop.JSONName = fmt.Sprintf("[%s]", desc.Name) if !firstField { m.writeSep(out) } if err := m.marshalField(out, &prop, value, indent); err != nil { return err } firstField = false } } if m.Indent != "" { out.write("\n") out.write(indent) } out.write("}") return out.err } func (m *Marshaler) writeSep(out *errWriter) { if m.Indent != "" { out.write(",\n") } else { out.write(",") } } func (m *Marshaler) marshalAny(out *errWriter, any proto.Message, indent string) error { // "If the Any contains a value that has a special JSON mapping, // it will be converted as follows: {"@type": xxx, "value": yyy}. // Otherwise, the value will be converted into a JSON object, // and the "@type" field will be inserted to indicate the actual data type." v := reflect.ValueOf(any).Elem() turl := v.Field(0).String() val := v.Field(1).Bytes() // Only the part of type_url after the last slash is relevant. mname := turl if slash := strings.LastIndex(mname, "/"); slash >= 0 { mname = mname[slash+1:] } mt := proto.MessageType(mname) if mt == nil { return fmt.Errorf("unknown message type %q", mname) } msg := reflect.New(mt.Elem()).Interface().(proto.Message) if err := proto.Unmarshal(val, msg); err != nil { return err } if _, ok := msg.(isWkt); ok { out.write("{") if m.Indent != "" { out.write("\n") } if err := m.marshalTypeURL(out, indent, turl); err != nil { return err } m.writeSep(out) if m.Indent != "" { out.write(indent) out.write(m.Indent) out.write(`"value": `) } else { out.write(`"value":`) } if err := m.marshalObject(out, msg, indent+m.Indent, ""); err != nil { return err } if m.Indent != "" { out.write("\n") out.write(indent) } out.write("}") return out.err } return m.marshalObject(out, msg, indent, turl) } func (m *Marshaler) marshalTypeURL(out *errWriter, indent, typeURL string) error { if m.Indent != "" { out.write(indent) out.write(m.Indent) } out.write(`"@type":`) if m.Indent != "" { out.write(" ") } b, err := json.Marshal(typeURL) if err != nil { return err } out.write(string(b)) return out.err } // marshalField writes field description and value to the Writer. func (m *Marshaler) marshalField(out *errWriter, prop *proto.Properties, v reflect.Value, indent string) error { if m.Indent != "" { out.write(indent) out.write(m.Indent) } out.write(`"`) out.write(prop.JSONName) out.write(`":`) if m.Indent != "" { out.write(" ") } if err := m.marshalValue(out, prop, v, indent); err != nil { return err } return nil } // marshalValue writes the value to the Writer. func (m *Marshaler) marshalValue(out *errWriter, prop *proto.Properties, v reflect.Value, indent string) error { v = reflect.Indirect(v) // Handle nil pointer if v.Kind() == reflect.Invalid { out.write("null") return out.err } // Handle repeated elements. if v.Kind() == reflect.Slice && v.Type().Elem().Kind() != reflect.Uint8 { out.write("[") comma := "" for i := 0; i < v.Len(); i++ { sliceVal := v.Index(i) out.write(comma) if m.Indent != "" { out.write("\n") out.write(indent) out.write(m.Indent) out.write(m.Indent) } if err := m.marshalValue(out, prop, sliceVal, indent+m.Indent); err != nil { return err } comma = "," } if m.Indent != "" { out.write("\n") out.write(indent) out.write(m.Indent) } out.write("]") return out.err } // Handle well-known types. // Most are handled up in marshalObject (because 99% are messages). if wkt, ok := v.Interface().(isWkt); ok { switch wkt.XXX_WellKnownType() { case "NullValue": out.write("null") return out.err } } if t, ok := v.Interface().(time.Time); ok { ts, err := types.TimestampProto(t) if err != nil { return err } return m.marshalValue(out, prop, reflect.ValueOf(ts), indent) } if d, ok := v.Interface().(time.Duration); ok { dur := types.DurationProto(d) return m.marshalValue(out, prop, reflect.ValueOf(dur), indent) } // Handle enumerations. if !m.EnumsAsInts && prop.Enum != "" { // Unknown enum values will are stringified by the proto library as their // value. Such values should _not_ be quoted or they will be interpreted // as an enum string instead of their value. enumStr := v.Interface().(fmt.Stringer).String() var valStr string if v.Kind() == reflect.Ptr { valStr = strconv.Itoa(int(v.Elem().Int())) } else { valStr = strconv.Itoa(int(v.Int())) } if m, ok := v.Interface().(interface { MarshalJSON() ([]byte, error) }); ok { data, err := m.MarshalJSON() if err != nil { return err } enumStr = string(data) enumStr, err = strconv.Unquote(enumStr) if err != nil { return err } } isKnownEnum := enumStr != valStr if isKnownEnum { out.write(`"`) } out.write(enumStr) if isKnownEnum { out.write(`"`) } return out.err } // Handle nested messages. if v.Kind() == reflect.Struct { i := v if v.CanAddr() { i = v.Addr() } else { i = reflect.New(v.Type()) i.Elem().Set(v) } iface := i.Interface() if iface == nil { out.write(`null`) return out.err } if m, ok := v.Interface().(interface { MarshalJSON() ([]byte, error) }); ok { data, err := m.MarshalJSON() if err != nil { return err } out.write(string(data)) return nil } pm, ok := iface.(proto.Message) if !ok { if prop.CustomType == "" { return fmt.Errorf("%v does not implement proto.Message", v.Type()) } t := proto.MessageType(prop.CustomType) if t == nil || !i.Type().ConvertibleTo(t) { return fmt.Errorf("%v declared custom type %s but it is not convertible to %v", v.Type(), prop.CustomType, t) } pm = i.Convert(t).Interface().(proto.Message) } return m.marshalObject(out, pm, indent+m.Indent, "") } // Handle maps. // Since Go randomizes map iteration, we sort keys for stable output. if v.Kind() == reflect.Map { out.write(`{`) keys := v.MapKeys() sort.Sort(mapKeys(keys)) for i, k := range keys { if i > 0 { out.write(`,`) } if m.Indent != "" { out.write("\n") out.write(indent) out.write(m.Indent) out.write(m.Indent) } b, err := json.Marshal(k.Interface()) if err != nil { return err } s := string(b) // If the JSON is not a string value, encode it again to make it one. if !strings.HasPrefix(s, `"`) { b, err := json.Marshal(s) if err != nil { return err } s = string(b) } out.write(s) out.write(`:`) if m.Indent != "" { out.write(` `) } if err := m.marshalValue(out, prop, v.MapIndex(k), indent+m.Indent); err != nil { return err } } if m.Indent != "" { out.write("\n") out.write(indent) out.write(m.Indent) } out.write(`}`) return out.err } // Handle non-finite floats, e.g. NaN, Infinity and -Infinity. if v.Kind() == reflect.Float32 || v.Kind() == reflect.Float64 { f := v.Float() var sval string switch { case math.IsInf(f, 1): sval = `"Infinity"` case math.IsInf(f, -1): sval = `"-Infinity"` case math.IsNaN(f): sval = `"NaN"` } if sval != "" { out.write(sval) return out.err } } // Default handling defers to the encoding/json library. b, err := json.Marshal(v.Interface()) if err != nil { return err } needToQuote := string(b[0]) != `"` && (v.Kind() == reflect.Int64 || v.Kind() == reflect.Uint64) if needToQuote { out.write(`"`) } out.write(string(b)) if needToQuote { out.write(`"`) } return out.err } // Unmarshaler is a configurable object for converting from a JSON // representation to a protocol buffer object. type Unmarshaler struct { // Whether to allow messages to contain unknown fields, as opposed to // failing to unmarshal. AllowUnknownFields bool } // UnmarshalNext unmarshals the next protocol buffer from a JSON object stream. // This function is lenient and will decode any options permutations of the // related Marshaler. func (u *Unmarshaler) UnmarshalNext(dec *json.Decoder, pb proto.Message) error { inputValue := json.RawMessage{} if err := dec.Decode(&inputValue); err != nil { return err } return u.unmarshalValue(reflect.ValueOf(pb).Elem(), inputValue, nil) } // Unmarshal unmarshals a JSON object stream into a protocol // buffer. This function is lenient and will decode any options // permutations of the related Marshaler. func (u *Unmarshaler) Unmarshal(r io.Reader, pb proto.Message) error { dec := json.NewDecoder(r) return u.UnmarshalNext(dec, pb) } // UnmarshalNext unmarshals the next protocol buffer from a JSON object stream. // This function is lenient and will decode any options permutations of the // related Marshaler. func UnmarshalNext(dec *json.Decoder, pb proto.Message) error { return new(Unmarshaler).UnmarshalNext(dec, pb) } // Unmarshal unmarshals a JSON object stream into a protocol // buffer. This function is lenient and will decode any options // permutations of the related Marshaler. func Unmarshal(r io.Reader, pb proto.Message) error { return new(Unmarshaler).Unmarshal(r, pb) } // UnmarshalString will populate the fields of a protocol buffer based // on a JSON string. This function is lenient and will decode any options // permutations of the related Marshaler. func UnmarshalString(str string, pb proto.Message) error { return new(Unmarshaler).Unmarshal(strings.NewReader(str), pb) } // unmarshalValue converts/copies a value into the target. // prop may be nil. func (u *Unmarshaler) unmarshalValue(target reflect.Value, inputValue json.RawMessage, prop *proto.Properties) error { targetType := target.Type() // Allocate memory for pointer fields. if targetType.Kind() == reflect.Ptr { // If input value is "null" and target is a pointer type, then the field should be treated as not set // UNLESS the target is structpb.Value, in which case it should be set to structpb.NullValue. if string(inputValue) == "null" && targetType != reflect.TypeOf(&types.Value{}) { return nil } target.Set(reflect.New(targetType.Elem())) return u.unmarshalValue(target.Elem(), inputValue, prop) } if jsu, ok := target.Addr().Interface().(JSONPBUnmarshaler); ok { return jsu.UnmarshalJSONPB(u, []byte(inputValue)) } // Handle well-known types that are not pointers. if w, ok := target.Addr().Interface().(isWkt); ok { switch w.XXX_WellKnownType() { case "DoubleValue", "FloatValue", "Int64Value", "UInt64Value", "Int32Value", "UInt32Value", "BoolValue", "StringValue", "BytesValue": return u.unmarshalValue(target.Field(0), inputValue, prop) case "Any": // Use json.RawMessage pointer type instead of value to support pre-1.8 version. // 1.8 changed RawMessage.MarshalJSON from pointer type to value type, see // https://github.com/golang/go/issues/14493 var jsonFields map[string]*json.RawMessage if err := json.Unmarshal(inputValue, &jsonFields); err != nil { return err } val, ok := jsonFields["@type"] if !ok || val == nil { return errors.New("Any JSON doesn't have '@type'") } var turl string if err := json.Unmarshal([]byte(*val), &turl); err != nil { return fmt.Errorf("can't unmarshal Any's '@type': %q", *val) } target.Field(0).SetString(turl) mname := turl if slash := strings.LastIndex(mname, "/"); slash >= 0 { mname = mname[slash+1:] } mt := proto.MessageType(mname) if mt == nil { return fmt.Errorf("unknown message type %q", mname) } m := reflect.New(mt.Elem()).Interface().(proto.Message) if _, ok := m.(isWkt); ok { val, ok := jsonFields["value"] if !ok { return errors.New("Any JSON doesn't have 'value'") } if err := u.unmarshalValue(reflect.ValueOf(m).Elem(), *val, nil); err != nil { return fmt.Errorf("can't unmarshal Any nested proto %T: %v", m, err) } } else { delete(jsonFields, "@type") nestedProto, err := json.Marshal(jsonFields) if err != nil { return fmt.Errorf("can't generate JSON for Any's nested proto to be unmarshaled: %v", err) } if err = u.unmarshalValue(reflect.ValueOf(m).Elem(), nestedProto, nil); err != nil { return fmt.Errorf("can't unmarshal Any nested proto %T: %v", m, err) } } b, err := proto.Marshal(m) if err != nil { return fmt.Errorf("can't marshal proto %T into Any.Value: %v", m, err) } target.Field(1).SetBytes(b) return nil case "Duration": unq, err := strconv.Unquote(string(inputValue)) if err != nil { return err } d, err := time.ParseDuration(unq) if err != nil { return fmt.Errorf("bad Duration: %v", err) } ns := d.Nanoseconds() s := ns / 1e9 ns %= 1e9 target.Field(0).SetInt(s) target.Field(1).SetInt(ns) return nil case "Timestamp": unq, err := strconv.Unquote(string(inputValue)) if err != nil { return err } t, err := time.Parse(time.RFC3339Nano, unq) if err != nil { return fmt.Errorf("bad Timestamp: %v", err) } target.Field(0).SetInt(t.Unix()) target.Field(1).SetInt(int64(t.Nanosecond())) return nil case "Struct": var m map[string]json.RawMessage if err := json.Unmarshal(inputValue, &m); err != nil { return fmt.Errorf("bad StructValue: %v", err) } target.Field(0).Set(reflect.ValueOf(map[string]*types.Value{})) for k, jv := range m { pv := &types.Value{} if err := u.unmarshalValue(reflect.ValueOf(pv).Elem(), jv, prop); err != nil { return fmt.Errorf("bad value in StructValue for key %q: %v", k, err) } target.Field(0).SetMapIndex(reflect.ValueOf(k), reflect.ValueOf(pv)) } return nil case "ListValue": var s []json.RawMessage if err := json.Unmarshal(inputValue, &s); err != nil { return fmt.Errorf("bad ListValue: %v", err) } target.Field(0).Set(reflect.ValueOf(make([]*types.Value, len(s), len(s)))) for i, sv := range s { if err := u.unmarshalValue(target.Field(0).Index(i), sv, prop); err != nil { return err } } return nil case "Value": ivStr := string(inputValue) if ivStr == "null" { target.Field(0).Set(reflect.ValueOf(&types.Value_NullValue{})) } else if v, err := strconv.ParseFloat(ivStr, 0); err == nil { target.Field(0).Set(reflect.ValueOf(&types.Value_NumberValue{NumberValue: v})) } else if v, err := strconv.Unquote(ivStr); err == nil { target.Field(0).Set(reflect.ValueOf(&types.Value_StringValue{StringValue: v})) } else if v, err := strconv.ParseBool(ivStr); err == nil { target.Field(0).Set(reflect.ValueOf(&types.Value_BoolValue{BoolValue: v})) } else if err := json.Unmarshal(inputValue, &[]json.RawMessage{}); err == nil { lv := &types.ListValue{} target.Field(0).Set(reflect.ValueOf(&types.Value_ListValue{ListValue: lv})) return u.unmarshalValue(reflect.ValueOf(lv).Elem(), inputValue, prop) } else if err := json.Unmarshal(inputValue, &map[string]json.RawMessage{}); err == nil { sv := &types.Struct{} target.Field(0).Set(reflect.ValueOf(&types.Value_StructValue{StructValue: sv})) return u.unmarshalValue(reflect.ValueOf(sv).Elem(), inputValue, prop) } else { return fmt.Errorf("unrecognized type for Value %q", ivStr) } return nil } } if t, ok := target.Addr().Interface().(*time.Time); ok { ts := &types.Timestamp{} if err := u.unmarshalValue(reflect.ValueOf(ts).Elem(), inputValue, prop); err != nil { return err } tt, err := types.TimestampFromProto(ts) if err != nil { return err } *t = tt return nil } if d, ok := target.Addr().Interface().(*time.Duration); ok { dur := &types.Duration{} if err := u.unmarshalValue(reflect.ValueOf(dur).Elem(), inputValue, prop); err != nil { return err } dd, err := types.DurationFromProto(dur) if err != nil { return err } *d = dd return nil } // Handle enums, which have an underlying type of int32, // and may appear as strings. // The case of an enum appearing as a number is handled // at the bottom of this function. if inputValue[0] == '"' && prop != nil && prop.Enum != "" { vmap := proto.EnumValueMap(prop.Enum) // Don't need to do unquoting; valid enum names // are from a limited character set. s := inputValue[1 : len(inputValue)-1] n, ok := vmap[string(s)] if !ok { return fmt.Errorf("unknown value %q for enum %s", s, prop.Enum) } if target.Kind() == reflect.Ptr { // proto2 target.Set(reflect.New(targetType.Elem())) target = target.Elem() } target.SetInt(int64(n)) return nil } // Handle nested messages. if targetType.Kind() == reflect.Struct { if prop != nil && len(prop.CustomType) > 0 && target.CanAddr() { if m, ok := target.Addr().Interface().(interface { UnmarshalJSON([]byte) error }); ok { return json.Unmarshal(inputValue, m) } } var jsonFields map[string]json.RawMessage if err := json.Unmarshal(inputValue, &jsonFields); err != nil { return err } consumeField := func(prop *proto.Properties) (json.RawMessage, bool) { // Be liberal in what names we accept; both orig_name and camelName are okay. fieldNames := acceptedJSONFieldNames(prop) vOrig, okOrig := jsonFields[fieldNames.orig] vCamel, okCamel := jsonFields[fieldNames.camel] if !okOrig && !okCamel { return nil, false } // If, for some reason, both are present in the data, favour the camelName. var raw json.RawMessage if okOrig { raw = vOrig delete(jsonFields, fieldNames.orig) } if okCamel { raw = vCamel delete(jsonFields, fieldNames.camel) } return raw, true } sprops := proto.GetProperties(targetType) for i := 0; i < target.NumField(); i++ { ft := target.Type().Field(i) if strings.HasPrefix(ft.Name, "XXX_") { continue } valueForField, ok := consumeField(sprops.Prop[i]) if !ok { continue } if err := u.unmarshalValue(target.Field(i), valueForField, sprops.Prop[i]); err != nil { return err } } // Check for any oneof fields. if len(jsonFields) > 0 { for _, oop := range sprops.OneofTypes { raw, ok := consumeField(oop.Prop) if !ok { continue } nv := reflect.New(oop.Type.Elem()) target.Field(oop.Field).Set(nv) if err := u.unmarshalValue(nv.Elem().Field(0), raw, oop.Prop); err != nil { return err } } } // Handle proto2 extensions. if len(jsonFields) > 0 { if ep, ok := target.Addr().Interface().(proto.Message); ok { for _, ext := range proto.RegisteredExtensions(ep) { name := fmt.Sprintf("[%s]", ext.Name) raw, ok := jsonFields[name] if !ok { continue } delete(jsonFields, name) nv := reflect.New(reflect.TypeOf(ext.ExtensionType).Elem()) if err := u.unmarshalValue(nv.Elem(), raw, nil); err != nil { return err } if err := proto.SetExtension(ep, ext, nv.Interface()); err != nil { return err } } } } if !u.AllowUnknownFields && len(jsonFields) > 0 { // Pick any field to be the scapegoat. var f string for fname := range jsonFields { f = fname break } return fmt.Errorf("unknown field %q in %v", f, targetType) } return nil } // Handle arrays if targetType.Kind() == reflect.Slice { if targetType.Elem().Kind() == reflect.Uint8 { outRef := reflect.New(targetType) outVal := outRef.Interface() //CustomType with underlying type []byte if _, ok := outVal.(interface { UnmarshalJSON([]byte) error }); ok { if err := json.Unmarshal(inputValue, outVal); err != nil { return err } target.Set(outRef.Elem()) return nil } // Special case for encoded bytes. Pre-go1.5 doesn't support unmarshalling // strings into aliased []byte types. // https://github.com/golang/go/commit/4302fd0409da5e4f1d71471a6770dacdc3301197 // https://github.com/golang/go/commit/c60707b14d6be26bf4213114d13070bff00d0b0a var out []byte if err := json.Unmarshal(inputValue, &out); err != nil { return err } target.SetBytes(out) return nil } var slc []json.RawMessage if err := json.Unmarshal(inputValue, &slc); err != nil { return err } if slc != nil { l := len(slc) target.Set(reflect.MakeSlice(targetType, l, l)) for i := 0; i < l; i++ { if err := u.unmarshalValue(target.Index(i), slc[i], prop); err != nil { return err } } } return nil } // Handle maps (whose keys are always strings) if targetType.Kind() == reflect.Map { var mp map[string]json.RawMessage if err := json.Unmarshal(inputValue, &mp); err != nil { return err } if mp != nil { target.Set(reflect.MakeMap(targetType)) var keyprop, valprop *proto.Properties if prop != nil { // These could still be nil if the protobuf metadata is broken somehow. // TODO: This won't work because the fields are unexported. // We should probably just reparse them. //keyprop, valprop = prop.mkeyprop, prop.mvalprop } for ks, raw := range mp { // Unmarshal map key. The core json library already decoded the key into a // string, so we handle that specially. Other types were quoted post-serialization. var k reflect.Value if targetType.Key().Kind() == reflect.String { k = reflect.ValueOf(ks) } else { k = reflect.New(targetType.Key()).Elem() if err := u.unmarshalValue(k, json.RawMessage(ks), keyprop); err != nil { return err } } if !k.Type().AssignableTo(targetType.Key()) { k = k.Convert(targetType.Key()) } // Unmarshal map value. v := reflect.New(targetType.Elem()).Elem() if err := u.unmarshalValue(v, raw, valprop); err != nil { return err } target.SetMapIndex(k, v) } } return nil } // 64-bit integers can be encoded as strings. In this case we drop // the quotes and proceed as normal. isNum := targetType.Kind() == reflect.Int64 || targetType.Kind() == reflect.Uint64 if isNum && strings.HasPrefix(string(inputValue), `"`) { inputValue = inputValue[1 : len(inputValue)-1] } // Non-finite numbers can be encoded as strings. isFloat := targetType.Kind() == reflect.Float32 || targetType.Kind() == reflect.Float64 if isFloat { if num, ok := nonFinite[string(inputValue)]; ok { target.SetFloat(num) return nil } } // Use the encoding/json for parsing other value types. return json.Unmarshal(inputValue, target.Addr().Interface()) } // jsonProperties returns parsed proto.Properties for the field and corrects JSONName attribute. func jsonProperties(f reflect.StructField, origName bool) *proto.Properties { var prop proto.Properties prop.Init(f.Type, f.Name, f.Tag.Get("protobuf"), &f) if origName || prop.JSONName == "" { prop.JSONName = prop.OrigName } return &prop } type fieldNames struct { orig, camel string } func acceptedJSONFieldNames(prop *proto.Properties) fieldNames { opts := fieldNames{orig: prop.OrigName, camel: prop.OrigName} if prop.JSONName != "" { opts.camel = prop.JSONName } return opts } // Writer wrapper inspired by https://blog.golang.org/errors-are-values type errWriter struct { writer io.Writer err error } func (w *errWriter) write(str string) { if w.err != nil { return } _, w.err = w.writer.Write([]byte(str)) } // Map fields may have key types of non-float scalars, strings and enums. // The easiest way to sort them in some deterministic order is to use fmt. // If this turns out to be inefficient we can always consider other options, // such as doing a Schwartzian transform. // // Numeric keys are sorted in numeric order per // https://developers.google.com/protocol-buffers/docs/proto#maps. type mapKeys []reflect.Value func (s mapKeys) Len() int { return len(s) } func (s mapKeys) Swap(i, j int) { s[i], s[j] = s[j], s[i] } func (s mapKeys) Less(i, j int) bool { if k := s[i].Kind(); k == s[j].Kind() { switch k { case reflect.Int32, reflect.Int64: return s[i].Int() < s[j].Int() case reflect.Uint32, reflect.Uint64: return s[i].Uint() < s[j].Uint() } } return fmt.Sprint(s[i].Interface()) < fmt.Sprint(s[j].Interface()) } golang-gogoprotobuf-0.5/jsonpb/jsonpb_test.go000066400000000000000000000761051317075173200215320ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2015 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. package jsonpb import ( "bytes" "encoding/json" "io" "math" "reflect" "strings" "testing" pb "github.com/gogo/protobuf/jsonpb/jsonpb_test_proto" "github.com/gogo/protobuf/proto" proto3pb "github.com/gogo/protobuf/proto/proto3_proto" "github.com/gogo/protobuf/types" ) var ( marshaler = Marshaler{} marshalerAllOptions = Marshaler{ Indent: " ", } simpleObject = &pb.Simple{ OInt32: proto.Int32(-32), OInt64: proto.Int64(-6400000000), OUint32: proto.Uint32(32), OUint64: proto.Uint64(6400000000), OSint32: proto.Int32(-13), OSint64: proto.Int64(-2600000000), OFloat: proto.Float32(3.14), ODouble: proto.Float64(6.02214179e23), OBool: proto.Bool(true), OString: proto.String("hello \"there\""), OBytes: []byte("beep boop"), OCastBytes: pb.Bytes("wow"), } simpleObjectJSON = `{` + `"oBool":true,` + `"oInt32":-32,` + `"oInt64":"-6400000000",` + `"oUint32":32,` + `"oUint64":"6400000000",` + `"oSint32":-13,` + `"oSint64":"-2600000000",` + `"oFloat":3.14,` + `"oDouble":6.02214179e+23,` + `"oString":"hello \"there\"",` + `"oBytes":"YmVlcCBib29w",` + `"oCastBytes":"d293"` + `}` simpleObjectPrettyJSON = `{ "oBool": true, "oInt32": -32, "oInt64": "-6400000000", "oUint32": 32, "oUint64": "6400000000", "oSint32": -13, "oSint64": "-2600000000", "oFloat": 3.14, "oDouble": 6.02214179e+23, "oString": "hello \"there\"", "oBytes": "YmVlcCBib29w", "oCastBytes": "d293" }` repeatsObject = &pb.Repeats{ RBool: []bool{true, false, true}, RInt32: []int32{-3, -4, -5}, RInt64: []int64{-123456789, -987654321}, RUint32: []uint32{1, 2, 3}, RUint64: []uint64{6789012345, 3456789012}, RSint32: []int32{-1, -2, -3}, RSint64: []int64{-6789012345, -3456789012}, RFloat: []float32{3.14, 6.28}, RDouble: []float64{299792458 * 1e20, 6.62606957e-34}, RString: []string{"happy", "days"}, RBytes: [][]byte{[]byte("skittles"), []byte("m&m's")}, } repeatsObjectJSON = `{` + `"rBool":[true,false,true],` + `"rInt32":[-3,-4,-5],` + `"rInt64":["-123456789","-987654321"],` + `"rUint32":[1,2,3],` + `"rUint64":["6789012345","3456789012"],` + `"rSint32":[-1,-2,-3],` + `"rSint64":["-6789012345","-3456789012"],` + `"rFloat":[3.14,6.28],` + `"rDouble":[2.99792458e+28,6.62606957e-34],` + `"rString":["happy","days"],` + `"rBytes":["c2tpdHRsZXM=","bSZtJ3M="]` + `}` repeatsObjectPrettyJSON = `{ "rBool": [ true, false, true ], "rInt32": [ -3, -4, -5 ], "rInt64": [ "-123456789", "-987654321" ], "rUint32": [ 1, 2, 3 ], "rUint64": [ "6789012345", "3456789012" ], "rSint32": [ -1, -2, -3 ], "rSint64": [ "-6789012345", "-3456789012" ], "rFloat": [ 3.14, 6.28 ], "rDouble": [ 2.99792458e+28, 6.62606957e-34 ], "rString": [ "happy", "days" ], "rBytes": [ "c2tpdHRsZXM=", "bSZtJ3M=" ] }` innerSimple = &pb.Simple{OInt32: proto.Int32(-32)} innerSimple2 = &pb.Simple{OInt64: proto.Int64(25)} innerRepeats = &pb.Repeats{RString: []string{"roses", "red"}} innerRepeats2 = &pb.Repeats{RString: []string{"violets", "blue"}} complexObject = &pb.Widget{ Color: pb.Widget_GREEN.Enum(), RColor: []pb.Widget_Color{pb.Widget_RED, pb.Widget_GREEN, pb.Widget_BLUE}, Simple: innerSimple, RSimple: []*pb.Simple{innerSimple, innerSimple2}, Repeats: innerRepeats, RRepeats: []*pb.Repeats{innerRepeats, innerRepeats2}, } complexObjectJSON = `{"color":"GREEN",` + `"rColor":["RED","GREEN","BLUE"],` + `"simple":{"oInt32":-32},` + `"rSimple":[{"oInt32":-32},{"oInt64":"25"}],` + `"repeats":{"rString":["roses","red"]},` + `"rRepeats":[{"rString":["roses","red"]},{"rString":["violets","blue"]}]` + `}` complexObjectPrettyJSON = `{ "color": "GREEN", "rColor": [ "RED", "GREEN", "BLUE" ], "simple": { "oInt32": -32 }, "rSimple": [ { "oInt32": -32 }, { "oInt64": "25" } ], "repeats": { "rString": [ "roses", "red" ] }, "rRepeats": [ { "rString": [ "roses", "red" ] }, { "rString": [ "violets", "blue" ] } ] }` colorPrettyJSON = `{ "color": 2 }` colorListPrettyJSON = `{ "color": 1000, "rColor": [ "RED" ] }` nummyPrettyJSON = `{ "nummy": { "1": 2, "3": 4 } }` objjyPrettyJSON = `{ "objjy": { "1": { "dub": 1 } } }` realNumber = &pb.Real{Value: proto.Float64(3.14159265359)} realNumberName = "Pi" complexNumber = &pb.Complex{Imaginary: proto.Float64(0.5772156649)} realNumberJSON = `{` + `"value":3.14159265359,` + `"[jsonpb.Complex.real_extension]":{"imaginary":0.5772156649},` + `"[jsonpb.name]":"Pi"` + `}` anySimple = &pb.KnownTypes{ An: &types.Any{ TypeUrl: "something.example.com/jsonpb.Simple", Value: []byte{ // &pb.Simple{OBool:true} 1 << 3, 1, }, }, } anySimpleJSON = `{"an":{"@type":"something.example.com/jsonpb.Simple","oBool":true}}` anySimplePrettyJSON = `{ "an": { "@type": "something.example.com/jsonpb.Simple", "oBool": true } }` anyWellKnown = &pb.KnownTypes{ An: &types.Any{ TypeUrl: "type.googleapis.com/google.protobuf.Duration", Value: []byte{ // &durpb.Duration{Seconds: 1, Nanos: 212000000 } 1 << 3, 1, // seconds 2 << 3, 0x80, 0xba, 0x8b, 0x65, // nanos }, }, } anyWellKnownJSON = `{"an":{"@type":"type.googleapis.com/google.protobuf.Duration","value":"1.212s"}}` anyWellKnownPrettyJSON = `{ "an": { "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } }` nonFinites = &pb.NonFinites{ FNan: proto.Float32(float32(math.NaN())), FPinf: proto.Float32(float32(math.Inf(1))), FNinf: proto.Float32(float32(math.Inf(-1))), DNan: proto.Float64(float64(math.NaN())), DPinf: proto.Float64(float64(math.Inf(1))), DNinf: proto.Float64(float64(math.Inf(-1))), } nonFinitesJSON = `{` + `"fNan":"NaN",` + `"fPinf":"Infinity",` + `"fNinf":"-Infinity",` + `"dNan":"NaN",` + `"dPinf":"Infinity",` + `"dNinf":"-Infinity"` + `}` ) func init() { if err := proto.SetExtension(realNumber, pb.E_Name, &realNumberName); err != nil { panic(err) } if err := proto.SetExtension(realNumber, pb.E_Complex_RealExtension, complexNumber); err != nil { panic(err) } } var marshalingTests = []struct { desc string marshaler Marshaler pb proto.Message json string }{ {"simple flat object", marshaler, simpleObject, simpleObjectJSON}, {"simple pretty object", marshalerAllOptions, simpleObject, simpleObjectPrettyJSON}, {"non-finite floats fields object", marshaler, nonFinites, nonFinitesJSON}, {"repeated fields flat object", marshaler, repeatsObject, repeatsObjectJSON}, {"repeated fields pretty object", marshalerAllOptions, repeatsObject, repeatsObjectPrettyJSON}, {"nested message/enum flat object", marshaler, complexObject, complexObjectJSON}, {"nested message/enum pretty object", marshalerAllOptions, complexObject, complexObjectPrettyJSON}, {"enum-string flat object", Marshaler{}, &pb.Widget{Color: pb.Widget_BLUE.Enum()}, `{"color":"BLUE"}`}, {"enum-value pretty object", Marshaler{EnumsAsInts: true, Indent: " "}, &pb.Widget{Color: pb.Widget_BLUE.Enum()}, colorPrettyJSON}, {"unknown enum value object", marshalerAllOptions, &pb.Widget{Color: pb.Widget_Color(1000).Enum(), RColor: []pb.Widget_Color{pb.Widget_RED}}, colorListPrettyJSON}, {"repeated proto3 enum", Marshaler{}, &proto3pb.Message{RFunny: []proto3pb.Message_Humour{ proto3pb.Message_PUNS, proto3pb.Message_SLAPSTICK, }}, `{"rFunny":["PUNS","SLAPSTICK"]}`}, {"repeated proto3 enum as int", Marshaler{EnumsAsInts: true}, &proto3pb.Message{RFunny: []proto3pb.Message_Humour{ proto3pb.Message_PUNS, proto3pb.Message_SLAPSTICK, }}, `{"rFunny":[1,2]}`}, {"empty value", marshaler, &pb.Simple3{}, `{}`}, {"empty value emitted", Marshaler{EmitDefaults: true}, &pb.Simple3{}, `{"dub":0}`}, {"empty repeated emitted", Marshaler{EmitDefaults: true}, &pb.SimpleSlice3{}, `{"slices":[]}`}, {"empty map emitted", Marshaler{EmitDefaults: true}, &pb.SimpleMap3{}, `{"stringy":{}}`}, {"nested struct null", Marshaler{EmitDefaults: true}, &pb.SimpleNull3{}, `{"simple":null}`}, {"map", marshaler, &pb.Mappy{Nummy: map[int64]int32{1: 2, 3: 4}}, `{"nummy":{"1":2,"3":4}}`}, {"map", marshalerAllOptions, &pb.Mappy{Nummy: map[int64]int32{1: 2, 3: 4}}, nummyPrettyJSON}, {"map", marshaler, &pb.Mappy{Strry: map[string]string{`"one"`: "two", "three": "four"}}, `{"strry":{"\"one\"":"two","three":"four"}}`}, {"map", marshaler, &pb.Mappy{Objjy: map[int32]*pb.Simple3{1: {Dub: 1}}}, `{"objjy":{"1":{"dub":1}}}`}, {"map", marshalerAllOptions, &pb.Mappy{Objjy: map[int32]*pb.Simple3{1: {Dub: 1}}}, objjyPrettyJSON}, {"map", marshaler, &pb.Mappy{Buggy: map[int64]string{1234: "yup"}}, `{"buggy":{"1234":"yup"}}`}, {"map", marshaler, &pb.Mappy{Booly: map[bool]bool{false: true}}, `{"booly":{"false":true}}`}, // TODO: This is broken. //{"map", marshaler, &pb.Mappy{Enumy: map[string]pb.Numeral{"XIV": pb.Numeral_ROMAN}}, `{"enumy":{"XIV":"ROMAN"}`}, {"map", Marshaler{EnumsAsInts: true}, &pb.Mappy{Enumy: map[string]pb.Numeral{"XIV": pb.Numeral_ROMAN}}, `{"enumy":{"XIV":2}}`}, {"map", marshaler, &pb.Mappy{S32Booly: map[int32]bool{1: true, 3: false, 10: true, 12: false}}, `{"s32booly":{"1":true,"3":false,"10":true,"12":false}}`}, {"map", marshaler, &pb.Mappy{S64Booly: map[int64]bool{1: true, 3: false, 10: true, 12: false}}, `{"s64booly":{"1":true,"3":false,"10":true,"12":false}}`}, {"map", marshaler, &pb.Mappy{U32Booly: map[uint32]bool{1: true, 3: false, 10: true, 12: false}}, `{"u32booly":{"1":true,"3":false,"10":true,"12":false}}`}, {"map", marshaler, &pb.Mappy{U64Booly: map[uint64]bool{1: true, 3: false, 10: true, 12: false}}, `{"u64booly":{"1":true,"3":false,"10":true,"12":false}}`}, {"proto2 map", marshaler, &pb.Maps{MInt64Str: map[int64]string{213: "cat"}}, `{"mInt64Str":{"213":"cat"}}`}, {"proto2 map", marshaler, &pb.Maps{MBoolSimple: map[bool]*pb.Simple{true: {OInt32: proto.Int32(1)}}}, `{"mBoolSimple":{"true":{"oInt32":1}}}`}, {"oneof, not set", marshaler, &pb.MsgWithOneof{}, `{}`}, {"oneof, set", marshaler, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_Title{Title: "Grand Poobah"}}, `{"title":"Grand Poobah"}`}, {"force orig_name", Marshaler{OrigName: true}, &pb.Simple{OInt32: proto.Int32(4)}, `{"o_int32":4}`}, {"proto2 extension", marshaler, realNumber, realNumberJSON}, {"Any with message", marshaler, anySimple, anySimpleJSON}, {"Any with message and indent", marshalerAllOptions, anySimple, anySimplePrettyJSON}, {"Any with WKT", marshaler, anyWellKnown, anyWellKnownJSON}, {"Any with WKT and indent", marshalerAllOptions, anyWellKnown, anyWellKnownPrettyJSON}, {"Duration", marshaler, &pb.KnownTypes{Dur: &types.Duration{Seconds: 3}}, `{"dur":"3.000s"}`}, {"Struct", marshaler, &pb.KnownTypes{St: &types.Struct{ Fields: map[string]*types.Value{ "one": {Kind: &types.Value_StringValue{StringValue: "loneliest number"}}, "two": {Kind: &types.Value_NullValue{NullValue: types.NULL_VALUE}}, }, }}, `{"st":{"one":"loneliest number","two":null}}`}, {"empty ListValue", marshaler, &pb.KnownTypes{Lv: &types.ListValue{}}, `{"lv":[]}`}, {"basic ListValue", marshaler, &pb.KnownTypes{Lv: &types.ListValue{Values: []*types.Value{ {Kind: &types.Value_StringValue{StringValue: "x"}}, {Kind: &types.Value_NullValue{}}, {Kind: &types.Value_NumberValue{NumberValue: 3}}, {Kind: &types.Value_BoolValue{BoolValue: true}}, }}}, `{"lv":["x",null,3,true]}`}, {"Timestamp", marshaler, &pb.KnownTypes{Ts: &types.Timestamp{Seconds: 14e8, Nanos: 21e6}}, `{"ts":"2014-05-13T16:53:20.021Z"}`}, {"number Value", marshaler, &pb.KnownTypes{Val: &types.Value{Kind: &types.Value_NumberValue{NumberValue: 1}}}, `{"val":1}`}, {"null Value", marshaler, &pb.KnownTypes{Val: &types.Value{Kind: &types.Value_NullValue{NullValue: types.NULL_VALUE}}}, `{"val":null}`}, {"string number value", marshaler, &pb.KnownTypes{Val: &types.Value{Kind: &types.Value_StringValue{StringValue: "9223372036854775807"}}}, `{"val":"9223372036854775807"}`}, {"list of lists Value", marshaler, &pb.KnownTypes{Val: &types.Value{ Kind: &types.Value_ListValue{ListValue: &types.ListValue{ Values: []*types.Value{ {Kind: &types.Value_StringValue{StringValue: "x"}}, {Kind: &types.Value_ListValue{ListValue: &types.ListValue{ Values: []*types.Value{ {Kind: &types.Value_ListValue{ListValue: &types.ListValue{ Values: []*types.Value{{Kind: &types.Value_StringValue{StringValue: "y"}}}, }}}, {Kind: &types.Value_StringValue{StringValue: "z"}}, }, }}}, }, }}, }}, `{"val":["x",[["y"],"z"]]}`}, {"DoubleValue", marshaler, &pb.KnownTypes{Dbl: &types.DoubleValue{Value: 1.2}}, `{"dbl":1.2}`}, {"FloatValue", marshaler, &pb.KnownTypes{Flt: &types.FloatValue{Value: 1.2}}, `{"flt":1.2}`}, {"Int64Value", marshaler, &pb.KnownTypes{I64: &types.Int64Value{Value: -3}}, `{"i64":"-3"}`}, {"UInt64Value", marshaler, &pb.KnownTypes{U64: &types.UInt64Value{Value: 3}}, `{"u64":"3"}`}, {"Int32Value", marshaler, &pb.KnownTypes{I32: &types.Int32Value{Value: -4}}, `{"i32":-4}`}, {"UInt32Value", marshaler, &pb.KnownTypes{U32: &types.UInt32Value{Value: 4}}, `{"u32":4}`}, {"BoolValue", marshaler, &pb.KnownTypes{Bool: &types.BoolValue{Value: true}}, `{"bool":true}`}, {"StringValue", marshaler, &pb.KnownTypes{Str: &types.StringValue{Value: "plush"}}, `{"str":"plush"}`}, {"BytesValue", marshaler, &pb.KnownTypes{Bytes: &types.BytesValue{Value: []byte("wow")}}, `{"bytes":"d293"}`}, } func TestMarshaling(t *testing.T) { for _, tt := range marshalingTests { json, err := tt.marshaler.MarshalToString(tt.pb) if err != nil { t.Errorf("%s: marshaling error: %v", tt.desc, err) } else if tt.json != json { t.Errorf("%s: got [%v] want [%v]", tt.desc, json, tt.json) } } } func TestMarshalJSONPBMarshaler(t *testing.T) { rawJson := `{ "foo": "bar", "baz": [0, 1, 2, 3] }` msg := dynamicMessage{rawJson: rawJson} str, err := new(Marshaler).MarshalToString(&msg) if err != nil { t.Errorf("an unexpected error occurred when marshalling JSONPBMarshaler: %v", err) } if str != rawJson { t.Errorf("marshalling JSON produced incorrect output: got %s, wanted %s", str, rawJson) } } func TestMarshalAnyJSONPBMarshaler(t *testing.T) { msg := dynamicMessage{rawJson: `{ "foo": "bar", "baz": [0, 1, 2, 3] }`} a, err := types.MarshalAny(&msg) if err != nil { t.Errorf("an unexpected error occurred when marshalling to Any: %v", err) } str, err := new(Marshaler).MarshalToString(a) if err != nil { t.Errorf("an unexpected error occurred when marshalling Any to JSON: %v", err) } // after custom marshaling, it's round-tripped through JSON decoding/encoding already, // so the keys are sorted, whitespace is compacted, and "@type" key has been added expected := `{"@type":"type.googleapis.com/` + dynamicMessageName + `","baz":[0,1,2,3],"foo":"bar"}` if str != expected { t.Errorf("marshalling JSON produced incorrect output: got %s, wanted %s", str, expected) } } var unmarshalingTests = []struct { desc string unmarshaler Unmarshaler json string pb proto.Message }{ {"simple flat object", Unmarshaler{}, simpleObjectJSON, simpleObject}, {"simple pretty object", Unmarshaler{}, simpleObjectPrettyJSON, simpleObject}, {"repeated fields flat object", Unmarshaler{}, repeatsObjectJSON, repeatsObject}, {"repeated fields pretty object", Unmarshaler{}, repeatsObjectPrettyJSON, repeatsObject}, {"nested message/enum flat object", Unmarshaler{}, complexObjectJSON, complexObject}, {"nested message/enum pretty object", Unmarshaler{}, complexObjectPrettyJSON, complexObject}, {"enum-string object", Unmarshaler{}, `{"color":"BLUE"}`, &pb.Widget{Color: pb.Widget_BLUE.Enum()}}, {"enum-value object", Unmarshaler{}, "{\n \"color\": 2\n}", &pb.Widget{Color: pb.Widget_BLUE.Enum()}}, {"unknown field with allowed option", Unmarshaler{AllowUnknownFields: true}, `{"unknown": "foo"}`, new(pb.Simple)}, {"proto3 enum string", Unmarshaler{}, `{"hilarity":"PUNS"}`, &proto3pb.Message{Hilarity: proto3pb.Message_PUNS}}, {"proto3 enum value", Unmarshaler{}, `{"hilarity":1}`, &proto3pb.Message{Hilarity: proto3pb.Message_PUNS}}, {"unknown enum value object", Unmarshaler{}, "{\n \"color\": 1000,\n \"r_color\": [\n \"RED\"\n ]\n}", &pb.Widget{Color: pb.Widget_Color(1000).Enum(), RColor: []pb.Widget_Color{pb.Widget_RED}}}, {"repeated proto3 enum", Unmarshaler{}, `{"rFunny":["PUNS","SLAPSTICK"]}`, &proto3pb.Message{RFunny: []proto3pb.Message_Humour{ proto3pb.Message_PUNS, proto3pb.Message_SLAPSTICK, }}}, {"repeated proto3 enum as int", Unmarshaler{}, `{"rFunny":[1,2]}`, &proto3pb.Message{RFunny: []proto3pb.Message_Humour{ proto3pb.Message_PUNS, proto3pb.Message_SLAPSTICK, }}}, {"repeated proto3 enum as mix of strings and ints", Unmarshaler{}, `{"rFunny":["PUNS",2]}`, &proto3pb.Message{RFunny: []proto3pb.Message_Humour{ proto3pb.Message_PUNS, proto3pb.Message_SLAPSTICK, }}}, {"unquoted int64 object", Unmarshaler{}, `{"oInt64":-314}`, &pb.Simple{OInt64: proto.Int64(-314)}}, {"unquoted uint64 object", Unmarshaler{}, `{"oUint64":123}`, &pb.Simple{OUint64: proto.Uint64(123)}}, {"NaN", Unmarshaler{}, `{"oDouble":"NaN"}`, &pb.Simple{ODouble: proto.Float64(math.NaN())}}, {"Inf", Unmarshaler{}, `{"oFloat":"Infinity"}`, &pb.Simple{OFloat: proto.Float32(float32(math.Inf(1)))}}, {"-Inf", Unmarshaler{}, `{"oDouble":"-Infinity"}`, &pb.Simple{ODouble: proto.Float64(math.Inf(-1))}}, {"map", Unmarshaler{}, `{"nummy":{"1":2,"3":4}}`, &pb.Mappy{Nummy: map[int64]int32{1: 2, 3: 4}}}, {"map", Unmarshaler{}, `{"strry":{"\"one\"":"two","three":"four"}}`, &pb.Mappy{Strry: map[string]string{`"one"`: "two", "three": "four"}}}, {"map", Unmarshaler{}, `{"objjy":{"1":{"dub":1}}}`, &pb.Mappy{Objjy: map[int32]*pb.Simple3{1: {Dub: 1}}}}, {"proto2 extension", Unmarshaler{}, realNumberJSON, realNumber}, // TODO does not work with go version 1.7, but works with go version 1.8 {"Any with message", Unmarshaler{}, anySimpleJSON, anySimple}, // TODO does not work with go version 1.7, but works with go version 1.8 {"Any with message and indent", Unmarshaler{}, anySimplePrettyJSON, anySimple}, {"Any with WKT", Unmarshaler{}, anyWellKnownJSON, anyWellKnown}, {"Any with WKT and indent", Unmarshaler{}, anyWellKnownPrettyJSON, anyWellKnown}, // TODO: This is broken. //{"map", Unmarshaler{}, `{"enumy":{"XIV":"ROMAN"}`, &pb.Mappy{Enumy: map[string]pb.Numeral{"XIV": pb.Numeral_ROMAN}}}, {"map", Unmarshaler{}, `{"enumy":{"XIV":2}}`, &pb.Mappy{Enumy: map[string]pb.Numeral{"XIV": pb.Numeral_ROMAN}}}, {"oneof", Unmarshaler{}, `{"salary":31000}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_Salary{Salary: 31000}}}, {"oneof spec name", Unmarshaler{}, `{"Country":"Australia"}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_Country{Country: "Australia"}}}, {"oneof orig_name", Unmarshaler{}, `{"Country":"Australia"}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_Country{Country: "Australia"}}}, {"oneof spec name2", Unmarshaler{}, `{"homeAddress":"Australia"}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_HomeAddress{HomeAddress: "Australia"}}}, {"oneof orig_name2", Unmarshaler{}, `{"home_address":"Australia"}`, &pb.MsgWithOneof{Union: &pb.MsgWithOneof_HomeAddress{HomeAddress: "Australia"}}}, {"orig_name input", Unmarshaler{}, `{"o_bool":true}`, &pb.Simple{OBool: proto.Bool(true)}}, {"camelName input", Unmarshaler{}, `{"oBool":true}`, &pb.Simple{OBool: proto.Bool(true)}}, {"Duration", Unmarshaler{}, `{"dur":"3.000s"}`, &pb.KnownTypes{Dur: &types.Duration{Seconds: 3}}}, {"null Duration", Unmarshaler{}, `{"dur":null}`, &pb.KnownTypes{Dur: nil}}, {"Timestamp", Unmarshaler{}, `{"ts":"2014-05-13T16:53:20.021Z"}`, &pb.KnownTypes{Ts: &types.Timestamp{Seconds: 14e8, Nanos: 21e6}}}, {"PreEpochTimestamp", Unmarshaler{}, `{"ts":"1969-12-31T23:59:58.999999995Z"}`, &pb.KnownTypes{Ts: &types.Timestamp{Seconds: -2, Nanos: 999999995}}}, {"ZeroTimeTimestamp", Unmarshaler{}, `{"ts":"0001-01-01T00:00:00Z"}`, &pb.KnownTypes{Ts: &types.Timestamp{Seconds: -62135596800, Nanos: 0}}}, {"null Timestamp", Unmarshaler{}, `{"ts":null}`, &pb.KnownTypes{Ts: nil}}, {"null Struct", Unmarshaler{}, `{"st": null}`, &pb.KnownTypes{St: nil}}, {"empty Struct", Unmarshaler{}, `{"st": {}}`, &pb.KnownTypes{St: &types.Struct{}}}, {"basic Struct", Unmarshaler{}, `{"st": {"a": "x", "b": null, "c": 3, "d": true}}`, &pb.KnownTypes{St: &types.Struct{Fields: map[string]*types.Value{ "a": {Kind: &types.Value_StringValue{StringValue: "x"}}, "b": {Kind: &types.Value_NullValue{}}, "c": {Kind: &types.Value_NumberValue{NumberValue: 3}}, "d": {Kind: &types.Value_BoolValue{BoolValue: true}}, }}}}, {"nested Struct", Unmarshaler{}, `{"st": {"a": {"b": 1, "c": [{"d": true}, "f"]}}}`, &pb.KnownTypes{St: &types.Struct{Fields: map[string]*types.Value{ "a": {Kind: &types.Value_StructValue{StructValue: &types.Struct{Fields: map[string]*types.Value{ "b": {Kind: &types.Value_NumberValue{NumberValue: 1}}, "c": {Kind: &types.Value_ListValue{ListValue: &types.ListValue{Values: []*types.Value{ {Kind: &types.Value_StructValue{StructValue: &types.Struct{Fields: map[string]*types.Value{"d": {Kind: &types.Value_BoolValue{BoolValue: true}}}}}}, {Kind: &types.Value_StringValue{StringValue: "f"}}, }}}}, }}}}, }}}}, {"null ListValue", Unmarshaler{}, `{"lv": null}`, &pb.KnownTypes{Lv: nil}}, {"empty ListValue", Unmarshaler{}, `{"lv": []}`, &pb.KnownTypes{Lv: &types.ListValue{}}}, {"basic ListValue", Unmarshaler{}, `{"lv": ["x", null, 3, true]}`, &pb.KnownTypes{Lv: &types.ListValue{Values: []*types.Value{ {Kind: &types.Value_StringValue{StringValue: "x"}}, {Kind: &types.Value_NullValue{}}, {Kind: &types.Value_NumberValue{NumberValue: 3}}, {Kind: &types.Value_BoolValue{BoolValue: true}}, }}}}, {"number Value", Unmarshaler{}, `{"val":1}`, &pb.KnownTypes{Val: &types.Value{Kind: &types.Value_NumberValue{NumberValue: 1}}}}, {"null Value", Unmarshaler{}, `{"val":null}`, &pb.KnownTypes{Val: &types.Value{Kind: &types.Value_NullValue{NullValue: types.NULL_VALUE}}}}, {"bool Value", Unmarshaler{}, `{"val":true}`, &pb.KnownTypes{Val: &types.Value{Kind: &types.Value_BoolValue{BoolValue: true}}}}, {"string Value", Unmarshaler{}, `{"val":"x"}`, &pb.KnownTypes{Val: &types.Value{Kind: &types.Value_StringValue{StringValue: "x"}}}}, {"string number value", Unmarshaler{}, `{"val":"9223372036854775807"}`, &pb.KnownTypes{Val: &types.Value{Kind: &types.Value_StringValue{StringValue: "9223372036854775807"}}}}, {"list of lists Value", Unmarshaler{}, `{"val":["x", [["y"], "z"]]}`, &pb.KnownTypes{Val: &types.Value{ Kind: &types.Value_ListValue{ListValue: &types.ListValue{ Values: []*types.Value{ {Kind: &types.Value_StringValue{StringValue: "x"}}, {Kind: &types.Value_ListValue{ListValue: &types.ListValue{ Values: []*types.Value{ {Kind: &types.Value_ListValue{ListValue: &types.ListValue{ Values: []*types.Value{{Kind: &types.Value_StringValue{StringValue: "y"}}}, }}}, {Kind: &types.Value_StringValue{StringValue: "z"}}, }, }}}, }, }}}}}, {"DoubleValue", Unmarshaler{}, `{"dbl":1.2}`, &pb.KnownTypes{Dbl: &types.DoubleValue{Value: 1.2}}}, {"FloatValue", Unmarshaler{}, `{"flt":1.2}`, &pb.KnownTypes{Flt: &types.FloatValue{Value: 1.2}}}, {"Int64Value", Unmarshaler{}, `{"i64":"-3"}`, &pb.KnownTypes{I64: &types.Int64Value{Value: -3}}}, {"UInt64Value", Unmarshaler{}, `{"u64":"3"}`, &pb.KnownTypes{U64: &types.UInt64Value{Value: 3}}}, {"Int32Value", Unmarshaler{}, `{"i32":-4}`, &pb.KnownTypes{I32: &types.Int32Value{Value: -4}}}, {"UInt32Value", Unmarshaler{}, `{"u32":4}`, &pb.KnownTypes{U32: &types.UInt32Value{Value: 4}}}, {"BoolValue", Unmarshaler{}, `{"bool":true}`, &pb.KnownTypes{Bool: &types.BoolValue{Value: true}}}, {"StringValue", Unmarshaler{}, `{"str":"plush"}`, &pb.KnownTypes{Str: &types.StringValue{Value: "plush"}}}, {"BytesValue", Unmarshaler{}, `{"bytes":"d293"}`, &pb.KnownTypes{Bytes: &types.BytesValue{Value: []byte("wow")}}}, // Ensure that `null` as a value ends up with a nil pointer instead of a [type]Value struct. {"null DoubleValue", Unmarshaler{}, `{"dbl":null}`, &pb.KnownTypes{Dbl: nil}}, {"null FloatValue", Unmarshaler{}, `{"flt":null}`, &pb.KnownTypes{Flt: nil}}, {"null Int64Value", Unmarshaler{}, `{"i64":null}`, &pb.KnownTypes{I64: nil}}, {"null UInt64Value", Unmarshaler{}, `{"u64":null}`, &pb.KnownTypes{U64: nil}}, {"null Int32Value", Unmarshaler{}, `{"i32":null}`, &pb.KnownTypes{I32: nil}}, {"null UInt32Value", Unmarshaler{}, `{"u32":null}`, &pb.KnownTypes{U32: nil}}, {"null BoolValue", Unmarshaler{}, `{"bool":null}`, &pb.KnownTypes{Bool: nil}}, {"null StringValue", Unmarshaler{}, `{"str":null}`, &pb.KnownTypes{Str: nil}}, {"null BytesValue", Unmarshaler{}, `{"bytes":null}`, &pb.KnownTypes{Bytes: nil}}, } func TestUnmarshaling(t *testing.T) { for _, tt := range unmarshalingTests { // Make a new instance of the type of our expected object. p := reflect.New(reflect.TypeOf(tt.pb).Elem()).Interface().(proto.Message) err := tt.unmarshaler.Unmarshal(strings.NewReader(tt.json), p) if err != nil { t.Errorf("%s: %v", tt.desc, err) continue } // For easier diffs, compare text strings of the protos. exp := proto.MarshalTextString(tt.pb) act := proto.MarshalTextString(p) if string(exp) != string(act) { t.Errorf("%s: got [%s] want [%s]", tt.desc, act, exp) } } } func TestUnmarshalNullArray(t *testing.T) { var repeats pb.Repeats if err := UnmarshalString(`{"rBool":null}`, &repeats); err != nil { t.Fatal(err) } if !reflect.DeepEqual(repeats, pb.Repeats{}) { t.Errorf("got non-nil fields in [%#v]", repeats) } } func TestUnmarshalNullObject(t *testing.T) { var maps pb.Maps if err := UnmarshalString(`{"mInt64Str":null}`, &maps); err != nil { t.Fatal(err) } if !reflect.DeepEqual(maps, pb.Maps{}) { t.Errorf("got non-nil fields in [%#v]", maps) } } func TestUnmarshalNext(t *testing.T) { // We only need to check against a few, not all of them. tests := unmarshalingTests[:5] // Create a buffer with many concatenated JSON objects. var b bytes.Buffer for _, tt := range tests { b.WriteString(tt.json) } dec := json.NewDecoder(&b) for _, tt := range tests { // Make a new instance of the type of our expected object. p := reflect.New(reflect.TypeOf(tt.pb).Elem()).Interface().(proto.Message) err := tt.unmarshaler.UnmarshalNext(dec, p) if err != nil { t.Errorf("%s: %v", tt.desc, err) continue } // For easier diffs, compare text strings of the protos. exp := proto.MarshalTextString(tt.pb) act := proto.MarshalTextString(p) if string(exp) != string(act) { t.Errorf("%s: got [%s] want [%s]", tt.desc, act, exp) } } p := &pb.Simple{} err := new(Unmarshaler).UnmarshalNext(dec, p) if err != io.EOF { t.Errorf("eof: got %v, expected io.EOF", err) } } var unmarshalingShouldError = []struct { desc string in string pb proto.Message }{ {"a value", "666", new(pb.Simple)}, {"gibberish", "{adskja123;l23=-=", new(pb.Simple)}, {"unknown field", `{"unknown": "foo"}`, new(pb.Simple)}, {"unknown enum name", `{"hilarity":"DAVE"}`, new(proto3pb.Message)}, } func TestUnmarshalingBadInput(t *testing.T) { for _, tt := range unmarshalingShouldError { err := UnmarshalString(tt.in, tt.pb) if err == nil { t.Errorf("an error was expected when parsing %q instead of an object", tt.desc) } } } func TestUnmarshalJSONPBUnmarshaler(t *testing.T) { rawJson := `{ "foo": "bar", "baz": [0, 1, 2, 3] }` var msg dynamicMessage if err := Unmarshal(strings.NewReader(rawJson), &msg); err != nil { t.Errorf("an unexpected error occurred when parsing into JSONPBUnmarshaler: %v", err) } if msg.rawJson != rawJson { t.Errorf("message contents not set correctly after unmarshalling JSON: got %s, wanted %s", msg.rawJson, rawJson) } } func TestUnmarshalAnyJSONPBUnmarshaler(t *testing.T) { rawJson := `{ "@type": "blah.com/` + dynamicMessageName + `", "foo": "bar", "baz": [0, 1, 2, 3] }` var got types.Any if err := Unmarshal(strings.NewReader(rawJson), &got); err != nil { t.Errorf("an unexpected error occurred when parsing into JSONPBUnmarshaler: %v", err) } dm := &dynamicMessage{rawJson: `{"baz":[0,1,2,3],"foo":"bar"}`} var want types.Any if b, err := proto.Marshal(dm); err != nil { t.Errorf("an unexpected error occurred when marshaling message: %v", err) } else { want.TypeUrl = "blah.com/" + dynamicMessageName want.Value = b } if !proto.Equal(&got, &want) { t.Errorf("message contents not set correctly after unmarshalling JSON: got %s, wanted %s", got, want) } } const ( dynamicMessageName = "google.protobuf.jsonpb.testing.dynamicMessage" ) func init() { // we register the custom type below so that we can use it in Any types proto.RegisterType((*dynamicMessage)(nil), dynamicMessageName) } // dynamicMessage implements protobuf.Message but is not a normal generated message type. // It provides implementations of JSONPBMarshaler and JSONPBUnmarshaler for JSON support. type dynamicMessage struct { rawJson string `protobuf:"bytes,1,opt,name=rawJson"` } func (m *dynamicMessage) Reset() { m.rawJson = "{}" } func (m *dynamicMessage) String() string { return m.rawJson } func (m *dynamicMessage) ProtoMessage() { } func (m *dynamicMessage) MarshalJSONPB(jm *Marshaler) ([]byte, error) { return []byte(m.rawJson), nil } func (m *dynamicMessage) UnmarshalJSONPB(jum *Unmarshaler, js []byte) error { m.rawJson = string(js) return nil } golang-gogoprotobuf-0.5/jsonpb/jsonpb_test_proto/000077500000000000000000000000001317075173200224155ustar00rootroot00000000000000golang-gogoprotobuf-0.5/jsonpb/jsonpb_test_proto/Makefile000066400000000000000000000040051317075173200240540ustar00rootroot00000000000000# Go support for Protocol Buffers - Google's data interchange format # # Copyright 2015 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: protoc-min-version --version="3.0.0" --gogo_out=Mgoogle/protobuf/any.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/duration.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/wrappers.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/struct.proto=github.com/gogo/protobuf/types:. *.proto -I . -I ../../ -I ../../protobuf/ golang-gogoprotobuf-0.5/jsonpb/jsonpb_test_proto/bytes.go000066400000000000000000000003111317075173200240650ustar00rootroot00000000000000package jsonpb // Byte is used to test that []byte type aliases are serialized to base64. type Byte byte // Bytes is used to test that []byte type aliases are serialized to base64. type Bytes []Byte golang-gogoprotobuf-0.5/jsonpb/jsonpb_test_proto/more_test_objects.pb.go000066400000000000000000000242521317075173200270630ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: more_test_objects.proto /* Package jsonpb is a generated protocol buffer package. It is generated from these files: more_test_objects.proto test_objects.proto It has these top-level messages: Simple3 SimpleSlice3 SimpleMap3 SimpleNull3 Mappy Simple NonFinites Repeats Widget Maps MsgWithOneof Real Complex KnownTypes */ package jsonpb import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Numeral int32 const ( Numeral_UNKNOWN Numeral = 0 Numeral_ARABIC Numeral = 1 Numeral_ROMAN Numeral = 2 ) var Numeral_name = map[int32]string{ 0: "UNKNOWN", 1: "ARABIC", 2: "ROMAN", } var Numeral_value = map[string]int32{ "UNKNOWN": 0, "ARABIC": 1, "ROMAN": 2, } func (x Numeral) String() string { return proto.EnumName(Numeral_name, int32(x)) } func (Numeral) EnumDescriptor() ([]byte, []int) { return fileDescriptorMoreTestObjects, []int{0} } type Simple3 struct { Dub float64 `protobuf:"fixed64,1,opt,name=dub,proto3" json:"dub,omitempty"` } func (m *Simple3) Reset() { *m = Simple3{} } func (m *Simple3) String() string { return proto.CompactTextString(m) } func (*Simple3) ProtoMessage() {} func (*Simple3) Descriptor() ([]byte, []int) { return fileDescriptorMoreTestObjects, []int{0} } func (m *Simple3) GetDub() float64 { if m != nil { return m.Dub } return 0 } type SimpleSlice3 struct { Slices []string `protobuf:"bytes,1,rep,name=slices" json:"slices,omitempty"` } func (m *SimpleSlice3) Reset() { *m = SimpleSlice3{} } func (m *SimpleSlice3) String() string { return proto.CompactTextString(m) } func (*SimpleSlice3) ProtoMessage() {} func (*SimpleSlice3) Descriptor() ([]byte, []int) { return fileDescriptorMoreTestObjects, []int{1} } func (m *SimpleSlice3) GetSlices() []string { if m != nil { return m.Slices } return nil } type SimpleMap3 struct { Stringy map[string]string `protobuf:"bytes,1,rep,name=stringy" json:"stringy,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *SimpleMap3) Reset() { *m = SimpleMap3{} } func (m *SimpleMap3) String() string { return proto.CompactTextString(m) } func (*SimpleMap3) ProtoMessage() {} func (*SimpleMap3) Descriptor() ([]byte, []int) { return fileDescriptorMoreTestObjects, []int{2} } func (m *SimpleMap3) GetStringy() map[string]string { if m != nil { return m.Stringy } return nil } type SimpleNull3 struct { Simple *Simple3 `protobuf:"bytes,1,opt,name=simple" json:"simple,omitempty"` } func (m *SimpleNull3) Reset() { *m = SimpleNull3{} } func (m *SimpleNull3) String() string { return proto.CompactTextString(m) } func (*SimpleNull3) ProtoMessage() {} func (*SimpleNull3) Descriptor() ([]byte, []int) { return fileDescriptorMoreTestObjects, []int{3} } func (m *SimpleNull3) GetSimple() *Simple3 { if m != nil { return m.Simple } return nil } type Mappy struct { Nummy map[int64]int32 `protobuf:"bytes,1,rep,name=nummy" json:"nummy,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Strry map[string]string `protobuf:"bytes,2,rep,name=strry" json:"strry,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` Objjy map[int32]*Simple3 `protobuf:"bytes,3,rep,name=objjy" json:"objjy,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Buggy map[int64]string `protobuf:"bytes,4,rep,name=buggy" json:"buggy,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` Booly map[bool]bool `protobuf:"bytes,5,rep,name=booly" json:"booly,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Enumy map[string]Numeral `protobuf:"bytes,6,rep,name=enumy" json:"enumy,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=jsonpb.Numeral"` S32Booly map[int32]bool `protobuf:"bytes,7,rep,name=s32booly" json:"s32booly,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` S64Booly map[int64]bool `protobuf:"bytes,8,rep,name=s64booly" json:"s64booly,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` U32Booly map[uint32]bool `protobuf:"bytes,9,rep,name=u32booly" json:"u32booly,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` U64Booly map[uint64]bool `protobuf:"bytes,10,rep,name=u64booly" json:"u64booly,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` } func (m *Mappy) Reset() { *m = Mappy{} } func (m *Mappy) String() string { return proto.CompactTextString(m) } func (*Mappy) ProtoMessage() {} func (*Mappy) Descriptor() ([]byte, []int) { return fileDescriptorMoreTestObjects, []int{4} } func (m *Mappy) GetNummy() map[int64]int32 { if m != nil { return m.Nummy } return nil } func (m *Mappy) GetStrry() map[string]string { if m != nil { return m.Strry } return nil } func (m *Mappy) GetObjjy() map[int32]*Simple3 { if m != nil { return m.Objjy } return nil } func (m *Mappy) GetBuggy() map[int64]string { if m != nil { return m.Buggy } return nil } func (m *Mappy) GetBooly() map[bool]bool { if m != nil { return m.Booly } return nil } func (m *Mappy) GetEnumy() map[string]Numeral { if m != nil { return m.Enumy } return nil } func (m *Mappy) GetS32Booly() map[int32]bool { if m != nil { return m.S32Booly } return nil } func (m *Mappy) GetS64Booly() map[int64]bool { if m != nil { return m.S64Booly } return nil } func (m *Mappy) GetU32Booly() map[uint32]bool { if m != nil { return m.U32Booly } return nil } func (m *Mappy) GetU64Booly() map[uint64]bool { if m != nil { return m.U64Booly } return nil } func init() { proto.RegisterType((*Simple3)(nil), "jsonpb.Simple3") proto.RegisterType((*SimpleSlice3)(nil), "jsonpb.SimpleSlice3") proto.RegisterType((*SimpleMap3)(nil), "jsonpb.SimpleMap3") proto.RegisterType((*SimpleNull3)(nil), "jsonpb.SimpleNull3") proto.RegisterType((*Mappy)(nil), "jsonpb.Mappy") proto.RegisterEnum("jsonpb.Numeral", Numeral_name, Numeral_value) } func init() { proto.RegisterFile("more_test_objects.proto", fileDescriptorMoreTestObjects) } var fileDescriptorMoreTestObjects = []byte{ // 526 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0xdd, 0x6b, 0xdb, 0x3c, 0x14, 0x87, 0x5f, 0x27, 0xf5, 0xd7, 0x49, 0xfb, 0x2e, 0x88, 0xb1, 0x99, 0xf4, 0x62, 0xc5, 0xb0, 0xad, 0x0c, 0xe6, 0x8b, 0x78, 0x74, 0x5d, 0x77, 0x95, 0x8e, 0x5e, 0x94, 0x11, 0x07, 0x1c, 0xc2, 0x2e, 0x4b, 0xdc, 0x99, 0x90, 0xcc, 0x5f, 0xd8, 0xd6, 0xc0, 0xd7, 0xfb, 0xbb, 0x07, 0xe3, 0x48, 0x72, 0x2d, 0x07, 0x85, 0x6c, 0x77, 0x52, 0x7e, 0xcf, 0xe3, 0x73, 0x24, 0x1d, 0x02, 0x2f, 0xd3, 0xbc, 0x8c, 0x1f, 0xea, 0xb8, 0xaa, 0x1f, 0xf2, 0x68, 0x17, 0x3f, 0xd6, 0x95, 0x57, 0x94, 0x79, 0x9d, 0x13, 0x63, 0x57, 0xe5, 0x59, 0x11, 0xb9, 0xe7, 0x60, 0x2e, 0xb7, 0x69, 0x91, 0xc4, 0x3e, 0x19, 0xc3, 0xf0, 0x3b, 0x8d, 0x1c, 0xed, 0x42, 0xbb, 0xd4, 0x42, 0x5c, 0xba, 0x6f, 0xe0, 0x94, 0x87, 0xcb, 0x64, 0xfb, 0x18, 0xfb, 0xe4, 0x05, 0x18, 0x15, 0xae, 0x2a, 0x47, 0xbb, 0x18, 0x5e, 0xda, 0xa1, 0xd8, 0xb9, 0xbf, 0x34, 0x00, 0x0e, 0xce, 0xd7, 0x85, 0x4f, 0x3e, 0x81, 0x59, 0xd5, 0xe5, 0x36, 0xdb, 0x34, 0x8c, 0x1b, 0x4d, 0x5f, 0x79, 0xbc, 0x9a, 0xd7, 0x41, 0xde, 0x92, 0x13, 0x77, 0x59, 0x5d, 0x36, 0x61, 0xcb, 0x4f, 0x6e, 0xe0, 0x54, 0x0e, 0xb0, 0xa7, 0x1f, 0x71, 0xc3, 0x7a, 0xb2, 0x43, 0x5c, 0x92, 0xe7, 0xa0, 0xff, 0x5c, 0x27, 0x34, 0x76, 0x06, 0xec, 0x37, 0xbe, 0xb9, 0x19, 0x5c, 0x6b, 0xee, 0x15, 0x8c, 0xf8, 0xf7, 0x03, 0x9a, 0x24, 0x3e, 0x79, 0x0b, 0x46, 0xc5, 0xb6, 0xcc, 0x1e, 0x4d, 0x9f, 0xf5, 0x9b, 0xf0, 0x43, 0x11, 0xbb, 0xbf, 0x2d, 0xd0, 0xe7, 0xeb, 0xa2, 0x68, 0x88, 0x07, 0x7a, 0x46, 0xd3, 0xb4, 0x6d, 0xdb, 0x69, 0x0d, 0x96, 0x7a, 0x01, 0x46, 0xbc, 0x5f, 0x8e, 0x21, 0x5f, 0xd5, 0x65, 0xd9, 0x38, 0x03, 0x15, 0xbf, 0xc4, 0x48, 0xf0, 0x0c, 0x43, 0x3e, 0x8f, 0x76, 0xbb, 0xc6, 0x19, 0xaa, 0xf8, 0x05, 0x46, 0x82, 0x67, 0x18, 0xf2, 0x11, 0xdd, 0x6c, 0x1a, 0xe7, 0x44, 0xc5, 0xdf, 0x62, 0x24, 0x78, 0x86, 0x31, 0x3e, 0xcf, 0x93, 0xc6, 0xd1, 0x95, 0x3c, 0x46, 0x2d, 0x8f, 0x6b, 0xe4, 0xe3, 0x8c, 0xa6, 0x8d, 0x63, 0xa8, 0xf8, 0x3b, 0x8c, 0x04, 0xcf, 0x30, 0xf2, 0x11, 0xac, 0xca, 0x9f, 0xf2, 0x12, 0x26, 0x53, 0xce, 0xf7, 0x8e, 0x2c, 0x52, 0x6e, 0x3d, 0xc1, 0x4c, 0xbc, 0xfa, 0xc0, 0x45, 0x4b, 0x29, 0x8a, 0xb4, 0x15, 0xc5, 0x16, 0x45, 0xda, 0x56, 0xb4, 0x55, 0xe2, 0xaa, 0x5f, 0x91, 0x4a, 0x15, 0x69, 0x5b, 0x11, 0x94, 0x62, 0xbf, 0x62, 0x0b, 0x4f, 0xae, 0x01, 0xba, 0x87, 0x96, 0xe7, 0x6f, 0xa8, 0x98, 0x3f, 0x5d, 0x9a, 0x3f, 0x34, 0xbb, 0x27, 0xff, 0x97, 0xc9, 0x9d, 0xdc, 0x03, 0x74, 0x8f, 0x2f, 0x9b, 0x3a, 0x37, 0x5f, 0xcb, 0xa6, 0x62, 0x92, 0xfb, 0x4d, 0x74, 0x73, 0x71, 0xac, 0x7d, 0x7b, 0xdf, 0x7c, 0xba, 0x10, 0xd9, 0xb4, 0x14, 0xa6, 0xb5, 0xd7, 0x7e, 0x37, 0x2b, 0x8a, 0x83, 0xf7, 0xda, 0xff, 0xbf, 0x6b, 0x3f, 0xa0, 0x69, 0x5c, 0xae, 0x13, 0xf9, 0x53, 0x9f, 0xe1, 0xac, 0x37, 0x43, 0x8a, 0xcb, 0x38, 0xdc, 0x07, 0xca, 0xf2, 0xab, 0x1e, 0x3b, 0xfe, 0xbe, 0xbc, 0x3a, 0x54, 0xf9, 0xec, 0x6f, 0xe4, 0x43, 0x95, 0x4f, 0x8e, 0xc8, 0xef, 0xde, 0x83, 0x29, 0x6e, 0x82, 0x8c, 0xc0, 0x5c, 0x05, 0x5f, 0x83, 0xc5, 0xb7, 0x60, 0xfc, 0x1f, 0x01, 0x30, 0x66, 0xe1, 0xec, 0xf6, 0xfe, 0xcb, 0x58, 0x23, 0x36, 0xe8, 0xe1, 0x62, 0x3e, 0x0b, 0xc6, 0x83, 0xc8, 0x60, 0x7f, 0xe0, 0xfe, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdc, 0x84, 0x34, 0xaf, 0xdb, 0x05, 0x00, 0x00, } golang-gogoprotobuf-0.5/jsonpb/jsonpb_test_proto/more_test_objects.proto000066400000000000000000000044071317075173200272210ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2015 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. syntax = "proto3"; package jsonpb; message Simple3 { double dub = 1; } message SimpleSlice3 { repeated string slices = 1; } message SimpleMap3 { map stringy = 1; } message SimpleNull3 { Simple3 simple = 1; } enum Numeral { UNKNOWN = 0; ARABIC = 1; ROMAN = 2; } message Mappy { map nummy = 1; map strry = 2; map objjy = 3; map buggy = 4; map booly = 5; map enumy = 6; map s32booly = 7; map s64booly = 8; map u32booly = 9; map u64booly = 10; } golang-gogoprotobuf-0.5/jsonpb/jsonpb_test_proto/test_objects.pb.go000066400000000000000000000725071317075173200260470ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: test_objects.proto package jsonpb import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import google_protobuf "github.com/gogo/protobuf/types" import google_protobuf1 "github.com/gogo/protobuf/types" import google_protobuf2 "github.com/gogo/protobuf/types" import google_protobuf3 "github.com/gogo/protobuf/types" import google_protobuf4 "github.com/gogo/protobuf/types" // skipping weak import gogoproto "gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf type Widget_Color int32 const ( Widget_RED Widget_Color = 0 Widget_GREEN Widget_Color = 1 Widget_BLUE Widget_Color = 2 ) var Widget_Color_name = map[int32]string{ 0: "RED", 1: "GREEN", 2: "BLUE", } var Widget_Color_value = map[string]int32{ "RED": 0, "GREEN": 1, "BLUE": 2, } func (x Widget_Color) Enum() *Widget_Color { p := new(Widget_Color) *p = x return p } func (x Widget_Color) String() string { return proto.EnumName(Widget_Color_name, int32(x)) } func (x *Widget_Color) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(Widget_Color_value, data, "Widget_Color") if err != nil { return err } *x = Widget_Color(value) return nil } func (Widget_Color) EnumDescriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{3, 0} } // Test message for holding primitive types. type Simple struct { OBool *bool `protobuf:"varint,1,opt,name=o_bool,json=oBool" json:"o_bool,omitempty"` OInt32 *int32 `protobuf:"varint,2,opt,name=o_int32,json=oInt32" json:"o_int32,omitempty"` OInt64 *int64 `protobuf:"varint,3,opt,name=o_int64,json=oInt64" json:"o_int64,omitempty"` OUint32 *uint32 `protobuf:"varint,4,opt,name=o_uint32,json=oUint32" json:"o_uint32,omitempty"` OUint64 *uint64 `protobuf:"varint,5,opt,name=o_uint64,json=oUint64" json:"o_uint64,omitempty"` OSint32 *int32 `protobuf:"zigzag32,6,opt,name=o_sint32,json=oSint32" json:"o_sint32,omitempty"` OSint64 *int64 `protobuf:"zigzag64,7,opt,name=o_sint64,json=oSint64" json:"o_sint64,omitempty"` OFloat *float32 `protobuf:"fixed32,8,opt,name=o_float,json=oFloat" json:"o_float,omitempty"` ODouble *float64 `protobuf:"fixed64,9,opt,name=o_double,json=oDouble" json:"o_double,omitempty"` OString *string `protobuf:"bytes,10,opt,name=o_string,json=oString" json:"o_string,omitempty"` OBytes []byte `protobuf:"bytes,11,opt,name=o_bytes,json=oBytes" json:"o_bytes,omitempty"` OCastBytes Bytes `protobuf:"bytes,12,opt,name=o_cast_bytes,json=oCastBytes,casttype=Bytes" json:"o_cast_bytes,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Simple) Reset() { *m = Simple{} } func (m *Simple) String() string { return proto.CompactTextString(m) } func (*Simple) ProtoMessage() {} func (*Simple) Descriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{0} } func (m *Simple) GetOBool() bool { if m != nil && m.OBool != nil { return *m.OBool } return false } func (m *Simple) GetOInt32() int32 { if m != nil && m.OInt32 != nil { return *m.OInt32 } return 0 } func (m *Simple) GetOInt64() int64 { if m != nil && m.OInt64 != nil { return *m.OInt64 } return 0 } func (m *Simple) GetOUint32() uint32 { if m != nil && m.OUint32 != nil { return *m.OUint32 } return 0 } func (m *Simple) GetOUint64() uint64 { if m != nil && m.OUint64 != nil { return *m.OUint64 } return 0 } func (m *Simple) GetOSint32() int32 { if m != nil && m.OSint32 != nil { return *m.OSint32 } return 0 } func (m *Simple) GetOSint64() int64 { if m != nil && m.OSint64 != nil { return *m.OSint64 } return 0 } func (m *Simple) GetOFloat() float32 { if m != nil && m.OFloat != nil { return *m.OFloat } return 0 } func (m *Simple) GetODouble() float64 { if m != nil && m.ODouble != nil { return *m.ODouble } return 0 } func (m *Simple) GetOString() string { if m != nil && m.OString != nil { return *m.OString } return "" } func (m *Simple) GetOBytes() []byte { if m != nil { return m.OBytes } return nil } func (m *Simple) GetOCastBytes() Bytes { if m != nil { return m.OCastBytes } return nil } // Test message for holding special non-finites primitives. type NonFinites struct { FNan *float32 `protobuf:"fixed32,1,opt,name=f_nan,json=fNan" json:"f_nan,omitempty"` FPinf *float32 `protobuf:"fixed32,2,opt,name=f_pinf,json=fPinf" json:"f_pinf,omitempty"` FNinf *float32 `protobuf:"fixed32,3,opt,name=f_ninf,json=fNinf" json:"f_ninf,omitempty"` DNan *float64 `protobuf:"fixed64,4,opt,name=d_nan,json=dNan" json:"d_nan,omitempty"` DPinf *float64 `protobuf:"fixed64,5,opt,name=d_pinf,json=dPinf" json:"d_pinf,omitempty"` DNinf *float64 `protobuf:"fixed64,6,opt,name=d_ninf,json=dNinf" json:"d_ninf,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NonFinites) Reset() { *m = NonFinites{} } func (m *NonFinites) String() string { return proto.CompactTextString(m) } func (*NonFinites) ProtoMessage() {} func (*NonFinites) Descriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{1} } func (m *NonFinites) GetFNan() float32 { if m != nil && m.FNan != nil { return *m.FNan } return 0 } func (m *NonFinites) GetFPinf() float32 { if m != nil && m.FPinf != nil { return *m.FPinf } return 0 } func (m *NonFinites) GetFNinf() float32 { if m != nil && m.FNinf != nil { return *m.FNinf } return 0 } func (m *NonFinites) GetDNan() float64 { if m != nil && m.DNan != nil { return *m.DNan } return 0 } func (m *NonFinites) GetDPinf() float64 { if m != nil && m.DPinf != nil { return *m.DPinf } return 0 } func (m *NonFinites) GetDNinf() float64 { if m != nil && m.DNinf != nil { return *m.DNinf } return 0 } // Test message for holding repeated primitives. type Repeats struct { RBool []bool `protobuf:"varint,1,rep,name=r_bool,json=rBool" json:"r_bool,omitempty"` RInt32 []int32 `protobuf:"varint,2,rep,name=r_int32,json=rInt32" json:"r_int32,omitempty"` RInt64 []int64 `protobuf:"varint,3,rep,name=r_int64,json=rInt64" json:"r_int64,omitempty"` RUint32 []uint32 `protobuf:"varint,4,rep,name=r_uint32,json=rUint32" json:"r_uint32,omitempty"` RUint64 []uint64 `protobuf:"varint,5,rep,name=r_uint64,json=rUint64" json:"r_uint64,omitempty"` RSint32 []int32 `protobuf:"zigzag32,6,rep,name=r_sint32,json=rSint32" json:"r_sint32,omitempty"` RSint64 []int64 `protobuf:"zigzag64,7,rep,name=r_sint64,json=rSint64" json:"r_sint64,omitempty"` RFloat []float32 `protobuf:"fixed32,8,rep,name=r_float,json=rFloat" json:"r_float,omitempty"` RDouble []float64 `protobuf:"fixed64,9,rep,name=r_double,json=rDouble" json:"r_double,omitempty"` RString []string `protobuf:"bytes,10,rep,name=r_string,json=rString" json:"r_string,omitempty"` RBytes [][]byte `protobuf:"bytes,11,rep,name=r_bytes,json=rBytes" json:"r_bytes,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Repeats) Reset() { *m = Repeats{} } func (m *Repeats) String() string { return proto.CompactTextString(m) } func (*Repeats) ProtoMessage() {} func (*Repeats) Descriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{2} } func (m *Repeats) GetRBool() []bool { if m != nil { return m.RBool } return nil } func (m *Repeats) GetRInt32() []int32 { if m != nil { return m.RInt32 } return nil } func (m *Repeats) GetRInt64() []int64 { if m != nil { return m.RInt64 } return nil } func (m *Repeats) GetRUint32() []uint32 { if m != nil { return m.RUint32 } return nil } func (m *Repeats) GetRUint64() []uint64 { if m != nil { return m.RUint64 } return nil } func (m *Repeats) GetRSint32() []int32 { if m != nil { return m.RSint32 } return nil } func (m *Repeats) GetRSint64() []int64 { if m != nil { return m.RSint64 } return nil } func (m *Repeats) GetRFloat() []float32 { if m != nil { return m.RFloat } return nil } func (m *Repeats) GetRDouble() []float64 { if m != nil { return m.RDouble } return nil } func (m *Repeats) GetRString() []string { if m != nil { return m.RString } return nil } func (m *Repeats) GetRBytes() [][]byte { if m != nil { return m.RBytes } return nil } // Test message for holding enums and nested messages. type Widget struct { Color *Widget_Color `protobuf:"varint,1,opt,name=color,enum=jsonpb.Widget_Color" json:"color,omitempty"` RColor []Widget_Color `protobuf:"varint,2,rep,name=r_color,json=rColor,enum=jsonpb.Widget_Color" json:"r_color,omitempty"` Simple *Simple `protobuf:"bytes,10,opt,name=simple" json:"simple,omitempty"` RSimple []*Simple `protobuf:"bytes,11,rep,name=r_simple,json=rSimple" json:"r_simple,omitempty"` Repeats *Repeats `protobuf:"bytes,20,opt,name=repeats" json:"repeats,omitempty"` RRepeats []*Repeats `protobuf:"bytes,21,rep,name=r_repeats,json=rRepeats" json:"r_repeats,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Widget) Reset() { *m = Widget{} } func (m *Widget) String() string { return proto.CompactTextString(m) } func (*Widget) ProtoMessage() {} func (*Widget) Descriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{3} } func (m *Widget) GetColor() Widget_Color { if m != nil && m.Color != nil { return *m.Color } return Widget_RED } func (m *Widget) GetRColor() []Widget_Color { if m != nil { return m.RColor } return nil } func (m *Widget) GetSimple() *Simple { if m != nil { return m.Simple } return nil } func (m *Widget) GetRSimple() []*Simple { if m != nil { return m.RSimple } return nil } func (m *Widget) GetRepeats() *Repeats { if m != nil { return m.Repeats } return nil } func (m *Widget) GetRRepeats() []*Repeats { if m != nil { return m.RRepeats } return nil } type Maps struct { MInt64Str map[int64]string `protobuf:"bytes,1,rep,name=m_int64_str,json=mInt64Str" json:"m_int64_str,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` MBoolSimple map[bool]*Simple `protobuf:"bytes,2,rep,name=m_bool_simple,json=mBoolSimple" json:"m_bool_simple,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *Maps) Reset() { *m = Maps{} } func (m *Maps) String() string { return proto.CompactTextString(m) } func (*Maps) ProtoMessage() {} func (*Maps) Descriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{4} } func (m *Maps) GetMInt64Str() map[int64]string { if m != nil { return m.MInt64Str } return nil } func (m *Maps) GetMBoolSimple() map[bool]*Simple { if m != nil { return m.MBoolSimple } return nil } type MsgWithOneof struct { // Types that are valid to be assigned to Union: // *MsgWithOneof_Title // *MsgWithOneof_Salary // *MsgWithOneof_Country // *MsgWithOneof_HomeAddress Union isMsgWithOneof_Union `protobuf_oneof:"union"` XXX_unrecognized []byte `json:"-"` } func (m *MsgWithOneof) Reset() { *m = MsgWithOneof{} } func (m *MsgWithOneof) String() string { return proto.CompactTextString(m) } func (*MsgWithOneof) ProtoMessage() {} func (*MsgWithOneof) Descriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{5} } type isMsgWithOneof_Union interface { isMsgWithOneof_Union() } type MsgWithOneof_Title struct { Title string `protobuf:"bytes,1,opt,name=title,oneof"` } type MsgWithOneof_Salary struct { Salary int64 `protobuf:"varint,2,opt,name=salary,oneof"` } type MsgWithOneof_Country struct { Country string `protobuf:"bytes,3,opt,name=Country,oneof"` } type MsgWithOneof_HomeAddress struct { HomeAddress string `protobuf:"bytes,4,opt,name=home_address,json=homeAddress,oneof"` } func (*MsgWithOneof_Title) isMsgWithOneof_Union() {} func (*MsgWithOneof_Salary) isMsgWithOneof_Union() {} func (*MsgWithOneof_Country) isMsgWithOneof_Union() {} func (*MsgWithOneof_HomeAddress) isMsgWithOneof_Union() {} func (m *MsgWithOneof) GetUnion() isMsgWithOneof_Union { if m != nil { return m.Union } return nil } func (m *MsgWithOneof) GetTitle() string { if x, ok := m.GetUnion().(*MsgWithOneof_Title); ok { return x.Title } return "" } func (m *MsgWithOneof) GetSalary() int64 { if x, ok := m.GetUnion().(*MsgWithOneof_Salary); ok { return x.Salary } return 0 } func (m *MsgWithOneof) GetCountry() string { if x, ok := m.GetUnion().(*MsgWithOneof_Country); ok { return x.Country } return "" } func (m *MsgWithOneof) GetHomeAddress() string { if x, ok := m.GetUnion().(*MsgWithOneof_HomeAddress); ok { return x.HomeAddress } return "" } // XXX_OneofFuncs is for the internal use of the proto package. func (*MsgWithOneof) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _MsgWithOneof_OneofMarshaler, _MsgWithOneof_OneofUnmarshaler, _MsgWithOneof_OneofSizer, []interface{}{ (*MsgWithOneof_Title)(nil), (*MsgWithOneof_Salary)(nil), (*MsgWithOneof_Country)(nil), (*MsgWithOneof_HomeAddress)(nil), } } func _MsgWithOneof_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*MsgWithOneof) // union switch x := m.Union.(type) { case *MsgWithOneof_Title: _ = b.EncodeVarint(1<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Title) case *MsgWithOneof_Salary: _ = b.EncodeVarint(2<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Salary)) case *MsgWithOneof_Country: _ = b.EncodeVarint(3<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Country) case *MsgWithOneof_HomeAddress: _ = b.EncodeVarint(4<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.HomeAddress) case nil: default: return fmt.Errorf("MsgWithOneof.Union has unexpected type %T", x) } return nil } func _MsgWithOneof_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*MsgWithOneof) switch tag { case 1: // union.title if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Union = &MsgWithOneof_Title{x} return true, err case 2: // union.salary if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &MsgWithOneof_Salary{int64(x)} return true, err case 3: // union.Country if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Union = &MsgWithOneof_Country{x} return true, err case 4: // union.home_address if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Union = &MsgWithOneof_HomeAddress{x} return true, err default: return false, nil } } func _MsgWithOneof_OneofSizer(msg proto.Message) (n int) { m := msg.(*MsgWithOneof) // union switch x := m.Union.(type) { case *MsgWithOneof_Title: n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Title))) n += len(x.Title) case *MsgWithOneof_Salary: n += proto.SizeVarint(2<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Salary)) case *MsgWithOneof_Country: n += proto.SizeVarint(3<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Country))) n += len(x.Country) case *MsgWithOneof_HomeAddress: n += proto.SizeVarint(4<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.HomeAddress))) n += len(x.HomeAddress) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type Real struct { Value *float64 `protobuf:"fixed64,1,opt,name=value" json:"value,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *Real) Reset() { *m = Real{} } func (m *Real) String() string { return proto.CompactTextString(m) } func (*Real) ProtoMessage() {} func (*Real) Descriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{6} } var extRange_Real = []proto.ExtensionRange{ {Start: 100, End: 536870911}, } func (*Real) ExtensionRangeArray() []proto.ExtensionRange { return extRange_Real } func (m *Real) GetValue() float64 { if m != nil && m.Value != nil { return *m.Value } return 0 } type Complex struct { Imaginary *float64 `protobuf:"fixed64,1,opt,name=imaginary" json:"imaginary,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *Complex) Reset() { *m = Complex{} } func (m *Complex) String() string { return proto.CompactTextString(m) } func (*Complex) ProtoMessage() {} func (*Complex) Descriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{7} } var extRange_Complex = []proto.ExtensionRange{ {Start: 100, End: 536870911}, } func (*Complex) ExtensionRangeArray() []proto.ExtensionRange { return extRange_Complex } func (m *Complex) GetImaginary() float64 { if m != nil && m.Imaginary != nil { return *m.Imaginary } return 0 } var E_Complex_RealExtension = &proto.ExtensionDesc{ ExtendedType: (*Real)(nil), ExtensionType: (*Complex)(nil), Field: 123, Name: "jsonpb.Complex.real_extension", Tag: "bytes,123,opt,name=real_extension,json=realExtension", Filename: "test_objects.proto", } type KnownTypes struct { An *google_protobuf.Any `protobuf:"bytes,14,opt,name=an" json:"an,omitempty"` Dur *google_protobuf1.Duration `protobuf:"bytes,1,opt,name=dur" json:"dur,omitempty"` St *google_protobuf2.Struct `protobuf:"bytes,12,opt,name=st" json:"st,omitempty"` Ts *google_protobuf3.Timestamp `protobuf:"bytes,2,opt,name=ts" json:"ts,omitempty"` Lv *google_protobuf2.ListValue `protobuf:"bytes,15,opt,name=lv" json:"lv,omitempty"` Val *google_protobuf2.Value `protobuf:"bytes,16,opt,name=val" json:"val,omitempty"` Dbl *google_protobuf4.DoubleValue `protobuf:"bytes,3,opt,name=dbl" json:"dbl,omitempty"` Flt *google_protobuf4.FloatValue `protobuf:"bytes,4,opt,name=flt" json:"flt,omitempty"` I64 *google_protobuf4.Int64Value `protobuf:"bytes,5,opt,name=i64" json:"i64,omitempty"` U64 *google_protobuf4.UInt64Value `protobuf:"bytes,6,opt,name=u64" json:"u64,omitempty"` I32 *google_protobuf4.Int32Value `protobuf:"bytes,7,opt,name=i32" json:"i32,omitempty"` U32 *google_protobuf4.UInt32Value `protobuf:"bytes,8,opt,name=u32" json:"u32,omitempty"` Bool *google_protobuf4.BoolValue `protobuf:"bytes,9,opt,name=bool" json:"bool,omitempty"` Str *google_protobuf4.StringValue `protobuf:"bytes,10,opt,name=str" json:"str,omitempty"` Bytes *google_protobuf4.BytesValue `protobuf:"bytes,11,opt,name=bytes" json:"bytes,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *KnownTypes) Reset() { *m = KnownTypes{} } func (m *KnownTypes) String() string { return proto.CompactTextString(m) } func (*KnownTypes) ProtoMessage() {} func (*KnownTypes) Descriptor() ([]byte, []int) { return fileDescriptorTestObjects, []int{8} } func (m *KnownTypes) GetAn() *google_protobuf.Any { if m != nil { return m.An } return nil } func (m *KnownTypes) GetDur() *google_protobuf1.Duration { if m != nil { return m.Dur } return nil } func (m *KnownTypes) GetSt() *google_protobuf2.Struct { if m != nil { return m.St } return nil } func (m *KnownTypes) GetTs() *google_protobuf3.Timestamp { if m != nil { return m.Ts } return nil } func (m *KnownTypes) GetLv() *google_protobuf2.ListValue { if m != nil { return m.Lv } return nil } func (m *KnownTypes) GetVal() *google_protobuf2.Value { if m != nil { return m.Val } return nil } func (m *KnownTypes) GetDbl() *google_protobuf4.DoubleValue { if m != nil { return m.Dbl } return nil } func (m *KnownTypes) GetFlt() *google_protobuf4.FloatValue { if m != nil { return m.Flt } return nil } func (m *KnownTypes) GetI64() *google_protobuf4.Int64Value { if m != nil { return m.I64 } return nil } func (m *KnownTypes) GetU64() *google_protobuf4.UInt64Value { if m != nil { return m.U64 } return nil } func (m *KnownTypes) GetI32() *google_protobuf4.Int32Value { if m != nil { return m.I32 } return nil } func (m *KnownTypes) GetU32() *google_protobuf4.UInt32Value { if m != nil { return m.U32 } return nil } func (m *KnownTypes) GetBool() *google_protobuf4.BoolValue { if m != nil { return m.Bool } return nil } func (m *KnownTypes) GetStr() *google_protobuf4.StringValue { if m != nil { return m.Str } return nil } func (m *KnownTypes) GetBytes() *google_protobuf4.BytesValue { if m != nil { return m.Bytes } return nil } var E_Name = &proto.ExtensionDesc{ ExtendedType: (*Real)(nil), ExtensionType: (*string)(nil), Field: 124, Name: "jsonpb.name", Tag: "bytes,124,opt,name=name", Filename: "test_objects.proto", } func init() { proto.RegisterType((*Simple)(nil), "jsonpb.Simple") proto.RegisterType((*NonFinites)(nil), "jsonpb.NonFinites") proto.RegisterType((*Repeats)(nil), "jsonpb.Repeats") proto.RegisterType((*Widget)(nil), "jsonpb.Widget") proto.RegisterType((*Maps)(nil), "jsonpb.Maps") proto.RegisterType((*MsgWithOneof)(nil), "jsonpb.MsgWithOneof") proto.RegisterType((*Real)(nil), "jsonpb.Real") proto.RegisterType((*Complex)(nil), "jsonpb.Complex") proto.RegisterType((*KnownTypes)(nil), "jsonpb.KnownTypes") proto.RegisterEnum("jsonpb.Widget_Color", Widget_Color_name, Widget_Color_value) proto.RegisterExtension(E_Complex_RealExtension) proto.RegisterExtension(E_Name) } func init() { proto.RegisterFile("test_objects.proto", fileDescriptorTestObjects) } var fileDescriptorTestObjects = []byte{ // 1206 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x56, 0xcf, 0x72, 0x13, 0xc7, 0x13, 0x66, 0x77, 0xb5, 0xfa, 0xd3, 0x32, 0x46, 0xbf, 0xc1, 0xc0, 0xa2, 0x1f, 0x09, 0x2a, 0x85, 0x10, 0x05, 0x82, 0xa8, 0xc8, 0x2a, 0x55, 0x8a, 0xe4, 0x82, 0xb1, 0x09, 0xa9, 0x80, 0x93, 0x1a, 0x43, 0xc8, 0x4d, 0xb5, 0xf2, 0xae, 0xc4, 0x92, 0xd5, 0x8c, 0x6a, 0x66, 0xd6, 0xa0, 0x4a, 0x0e, 0x3e, 0xe7, 0x98, 0xca, 0x33, 0xe4, 0x11, 0x72, 0xc8, 0x63, 0xe4, 0x01, 0xf2, 0x20, 0x39, 0xa5, 0xba, 0x67, 0x57, 0x6b, 0x2c, 0x74, 0xf2, 0x76, 0xf7, 0xf7, 0x7d, 0x9e, 0x99, 0xaf, 0x67, 0x5a, 0xc0, 0x4c, 0xac, 0xcd, 0x58, 0x4e, 0x5e, 0xc7, 0xc7, 0x46, 0xf7, 0x17, 0x4a, 0x1a, 0xc9, 0xaa, 0xaf, 0xb5, 0x14, 0x8b, 0x49, 0xfb, 0xfa, 0x4c, 0xca, 0x59, 0x1a, 0xdf, 0xa7, 0xec, 0x24, 0x9b, 0xde, 0x0f, 0xc5, 0xd2, 0x42, 0xda, 0x1f, 0x9e, 0x2f, 0x45, 0x99, 0x0a, 0x4d, 0x22, 0x45, 0x5e, 0xbf, 0x71, 0xbe, 0xae, 0x8d, 0xca, 0x8e, 0x4d, 0x5e, 0xbd, 0x79, 0xbe, 0x6a, 0x92, 0x79, 0xac, 0x4d, 0x38, 0x5f, 0x6c, 0x92, 0x7f, 0xa3, 0xc2, 0xc5, 0x22, 0x56, 0xf9, 0x0a, 0xdb, 0x3b, 0x33, 0x39, 0x93, 0xf4, 0x79, 0x1f, 0xbf, 0x6c, 0xb6, 0xfb, 0xb7, 0x0b, 0xd5, 0xa3, 0x64, 0xbe, 0x48, 0x63, 0x76, 0x05, 0xaa, 0x72, 0x3c, 0x91, 0x32, 0x0d, 0x9c, 0x8e, 0xd3, 0xab, 0x73, 0x5f, 0xee, 0x49, 0x99, 0xb2, 0x6b, 0x50, 0x93, 0xe3, 0x44, 0x98, 0xdd, 0x41, 0xe0, 0x76, 0x9c, 0x9e, 0xcf, 0xab, 0xf2, 0x1b, 0x8c, 0x56, 0x85, 0xd1, 0x30, 0xf0, 0x3a, 0x4e, 0xcf, 0xb3, 0x85, 0xd1, 0x90, 0x5d, 0x87, 0xba, 0x1c, 0x67, 0x96, 0x52, 0xe9, 0x38, 0xbd, 0x8b, 0xbc, 0x26, 0x5f, 0x50, 0x58, 0x96, 0x46, 0xc3, 0xc0, 0xef, 0x38, 0xbd, 0x4a, 0x5e, 0x2a, 0x58, 0xda, 0xb2, 0xaa, 0x1d, 0xa7, 0xf7, 0x3f, 0x5e, 0x93, 0x47, 0x67, 0x58, 0xda, 0xb2, 0x6a, 0x1d, 0xa7, 0xc7, 0xf2, 0xd2, 0x68, 0x68, 0x17, 0x31, 0x4d, 0x65, 0x68, 0x82, 0x7a, 0xc7, 0xe9, 0xb9, 0xbc, 0x2a, 0x1f, 0x63, 0x64, 0x39, 0x91, 0xcc, 0x26, 0x69, 0x1c, 0x34, 0x3a, 0x4e, 0xcf, 0xe1, 0x35, 0xb9, 0x4f, 0x61, 0x2e, 0x67, 0x54, 0x22, 0x66, 0x01, 0x74, 0x9c, 0x5e, 0x03, 0xe5, 0x28, 0xb4, 0x72, 0x93, 0xa5, 0x89, 0x75, 0xd0, 0xec, 0x38, 0xbd, 0x2d, 0x5e, 0x95, 0x7b, 0x18, 0xb1, 0xbb, 0xb0, 0x25, 0xc7, 0xc7, 0xa1, 0x36, 0x79, 0x75, 0x0b, 0xab, 0x7b, 0x8d, 0x7f, 0xff, 0xb9, 0xe9, 0x13, 0x80, 0x83, 0x7c, 0x14, 0x6a, 0x43, 0xdf, 0xdd, 0xdf, 0x1c, 0x80, 0x43, 0x29, 0x1e, 0x27, 0x22, 0x41, 0xee, 0x65, 0xf0, 0xa7, 0x63, 0x11, 0x0a, 0x3a, 0x57, 0x97, 0x57, 0xa6, 0x87, 0xa1, 0xc0, 0xd3, 0x9e, 0x8e, 0x17, 0x89, 0x98, 0xd2, 0xa9, 0xba, 0xdc, 0x9f, 0x7e, 0x9f, 0x88, 0xa9, 0x4d, 0x0b, 0x4c, 0x7b, 0x79, 0xfa, 0x10, 0xd3, 0x97, 0xc1, 0x8f, 0x48, 0xa2, 0x42, 0x5b, 0xa9, 0x44, 0xb9, 0x44, 0x64, 0x25, 0x7c, 0xca, 0xfa, 0x51, 0x21, 0x11, 0x59, 0x89, 0x6a, 0x9e, 0x46, 0x89, 0xee, 0x1f, 0x2e, 0xd4, 0x78, 0xbc, 0x88, 0x43, 0xa3, 0x11, 0xa2, 0x0a, 0xab, 0x3d, 0xb4, 0x5a, 0x15, 0x56, 0xab, 0x95, 0xd5, 0x1e, 0x5a, 0xad, 0x56, 0x56, 0xab, 0x95, 0xd5, 0x1e, 0x5a, 0xad, 0x56, 0x56, 0xab, 0xd2, 0x6a, 0x0f, 0xad, 0x56, 0xa5, 0xd5, 0xaa, 0xb4, 0xda, 0x43, 0xab, 0x55, 0x69, 0xb5, 0x2a, 0xad, 0xf6, 0xd0, 0x6a, 0x75, 0x74, 0x86, 0xb5, 0xb2, 0xda, 0x43, 0xab, 0x55, 0x69, 0xb5, 0x5a, 0x59, 0xed, 0xa1, 0xd5, 0x6a, 0x65, 0xb5, 0x2a, 0xad, 0xf6, 0xd0, 0x6a, 0x55, 0x5a, 0xad, 0x4a, 0xab, 0x3d, 0xb4, 0x5a, 0x95, 0x56, 0xab, 0x95, 0xd5, 0x1e, 0x5a, 0xad, 0xac, 0x7b, 0x7f, 0xba, 0x50, 0x7d, 0x99, 0x44, 0xb3, 0xd8, 0xb0, 0x3b, 0xe0, 0x1f, 0xcb, 0x54, 0x2a, 0x72, 0x6e, 0x7b, 0xb0, 0xd3, 0xb7, 0xb7, 0xbc, 0x6f, 0xcb, 0xfd, 0x47, 0x58, 0xe3, 0x16, 0xc2, 0xee, 0xa1, 0x9e, 0x45, 0xe3, 0xe1, 0x6d, 0x42, 0x57, 0x15, 0xfd, 0x65, 0xb7, 0xa1, 0xaa, 0xe9, 0xde, 0x51, 0x0b, 0x36, 0x07, 0xdb, 0x05, 0xda, 0xde, 0x46, 0x9e, 0x57, 0xd9, 0xa7, 0xf6, 0x40, 0x08, 0x89, 0xeb, 0x5c, 0x47, 0xe2, 0x01, 0xe5, 0xd0, 0x9a, 0xb2, 0x06, 0x07, 0x3b, 0xa4, 0x79, 0xa9, 0x40, 0xe6, 0xbe, 0xf3, 0xa2, 0xce, 0x3e, 0x83, 0x86, 0x1a, 0x17, 0xe0, 0x2b, 0x24, 0xbb, 0x06, 0xae, 0xab, 0xfc, 0xab, 0xfb, 0x31, 0xf8, 0x76, 0xd1, 0x35, 0xf0, 0xf8, 0xc1, 0x7e, 0xeb, 0x02, 0x6b, 0x80, 0xff, 0x35, 0x3f, 0x38, 0x38, 0x6c, 0x39, 0xac, 0x0e, 0x95, 0xbd, 0xa7, 0x2f, 0x0e, 0x5a, 0x6e, 0xf7, 0x77, 0x17, 0x2a, 0xcf, 0xc2, 0x85, 0x66, 0x5f, 0x42, 0x73, 0x6e, 0xdb, 0x05, 0xcf, 0x9e, 0x7a, 0xac, 0x39, 0xf8, 0x7f, 0xa1, 0x8f, 0x90, 0xfe, 0x33, 0xea, 0x9f, 0x23, 0xa3, 0x0e, 0x84, 0x51, 0x4b, 0xde, 0x98, 0x17, 0x31, 0x7b, 0x08, 0x17, 0xe7, 0xd4, 0x9b, 0xc5, 0xae, 0x5d, 0xa2, 0x7f, 0xf0, 0x2e, 0x1d, 0xfb, 0xd5, 0x6e, 0xdb, 0x0a, 0x34, 0xe7, 0x65, 0xa6, 0xfd, 0x15, 0x6c, 0xbf, 0xab, 0xcf, 0x5a, 0xe0, 0xfd, 0x14, 0x2f, 0xc9, 0x46, 0x8f, 0xe3, 0x27, 0xdb, 0x01, 0xff, 0x24, 0x4c, 0xb3, 0x98, 0xae, 0x5f, 0x83, 0xdb, 0xe0, 0x81, 0xfb, 0x85, 0xd3, 0x3e, 0x84, 0xd6, 0x79, 0xf9, 0xb3, 0xfc, 0xba, 0xe5, 0xdf, 0x3a, 0xcb, 0x5f, 0x37, 0xa5, 0xd4, 0xeb, 0xfe, 0xea, 0xc0, 0xd6, 0x33, 0x3d, 0x7b, 0x99, 0x98, 0x57, 0xdf, 0x89, 0x58, 0x4e, 0xd9, 0x55, 0xf0, 0x4d, 0x62, 0xd2, 0x98, 0xe4, 0x1a, 0x4f, 0x2e, 0x70, 0x1b, 0xb2, 0x00, 0xaa, 0x3a, 0x4c, 0x43, 0xb5, 0x24, 0x4d, 0xef, 0xc9, 0x05, 0x9e, 0xc7, 0xac, 0x0d, 0xb5, 0x47, 0x32, 0xc3, 0x95, 0xd0, 0xb3, 0x80, 0x9c, 0x22, 0xc1, 0x3e, 0x82, 0xad, 0x57, 0x72, 0x1e, 0x8f, 0xc3, 0x28, 0x52, 0xb1, 0xd6, 0xf4, 0x42, 0x20, 0xa0, 0x89, 0xd9, 0x87, 0x36, 0xb9, 0x57, 0x03, 0x3f, 0x13, 0x89, 0x14, 0xdd, 0xdb, 0x50, 0xe1, 0x71, 0x98, 0x96, 0xdb, 0x77, 0xec, 0x1b, 0x41, 0xc1, 0x9d, 0x7a, 0x3d, 0x6a, 0x9d, 0x9e, 0x9e, 0x9e, 0xba, 0xdd, 0x37, 0xf8, 0x1f, 0x71, 0x27, 0x6f, 0xd9, 0x0d, 0x68, 0x24, 0xf3, 0x70, 0x96, 0x08, 0x5c, 0x99, 0x85, 0x97, 0x89, 0x92, 0x32, 0xd8, 0x87, 0x6d, 0x15, 0x87, 0xe9, 0x38, 0x7e, 0x6b, 0x62, 0xa1, 0x13, 0x29, 0xd8, 0x56, 0xd9, 0x52, 0x61, 0x1a, 0xfc, 0xfc, 0x6e, 0x4f, 0xe6, 0xf2, 0xfc, 0x22, 0x92, 0x0e, 0x0a, 0x4e, 0xf7, 0x2f, 0x1f, 0xe0, 0x5b, 0x21, 0xdf, 0x88, 0xe7, 0xcb, 0x45, 0xac, 0xd9, 0x2d, 0x70, 0x43, 0x11, 0x6c, 0x13, 0x75, 0xa7, 0x6f, 0x47, 0x5c, 0xbf, 0x18, 0x71, 0xfd, 0x87, 0x62, 0xc9, 0xdd, 0x50, 0xb0, 0xbb, 0xe0, 0x45, 0x99, 0xbd, 0xa5, 0xcd, 0xc1, 0xf5, 0x35, 0xd8, 0x7e, 0x3e, 0x68, 0x39, 0xa2, 0xd8, 0x27, 0xe0, 0x6a, 0x43, 0x0f, 0x78, 0x73, 0x70, 0x6d, 0x0d, 0x7b, 0x44, 0x43, 0x97, 0xbb, 0x1a, 0x6f, 0xbf, 0x6b, 0x74, 0xee, 0x6f, 0x7b, 0x0d, 0xf8, 0xbc, 0x98, 0xbf, 0xdc, 0x35, 0x1a, 0xb1, 0xe9, 0x49, 0x70, 0x69, 0x03, 0xf6, 0x69, 0xa2, 0xcd, 0x0f, 0x78, 0xc2, 0xdc, 0x4d, 0x4f, 0x58, 0x0f, 0xbc, 0x93, 0x30, 0x0d, 0x5a, 0x04, 0xbe, 0xba, 0x06, 0xb6, 0x40, 0x84, 0xb0, 0x3e, 0x78, 0xd1, 0x24, 0x25, 0xcf, 0x9b, 0x83, 0x1b, 0xeb, 0xfb, 0xa2, 0x47, 0x2e, 0xc7, 0x47, 0x93, 0x94, 0xdd, 0x03, 0x6f, 0x9a, 0x1a, 0x6a, 0x01, 0xbc, 0x70, 0xe7, 0xf1, 0xf4, 0x5c, 0xe6, 0xf0, 0x69, 0x6a, 0x10, 0x9e, 0xe4, 0x83, 0xf8, 0x7d, 0x70, 0xba, 0x42, 0x39, 0x3c, 0x19, 0x0d, 0x71, 0x35, 0xd9, 0x68, 0x48, 0x53, 0xe5, 0x7d, 0xab, 0x79, 0x71, 0x16, 0x9f, 0x8d, 0x86, 0x24, 0xbf, 0x3b, 0xa0, 0x89, 0xbd, 0x41, 0x7e, 0x77, 0x50, 0xc8, 0xef, 0x0e, 0x48, 0x7e, 0x77, 0x40, 0x63, 0x7c, 0x93, 0xfc, 0x0a, 0x9f, 0x11, 0xbe, 0x42, 0x23, 0xac, 0xb1, 0xe1, 0xd0, 0xf1, 0x0e, 0x5b, 0x38, 0xe1, 0x50, 0x1f, 0x5f, 0x23, 0xd8, 0xa0, 0x6f, 0xc7, 0x42, 0xae, 0xaf, 0x8d, 0x62, 0x9f, 0x83, 0x5f, 0xfe, 0x12, 0x78, 0xdf, 0x06, 0x68, 0x5c, 0x58, 0x82, 0x45, 0x3e, 0xe8, 0x40, 0x45, 0x84, 0xf3, 0xf8, 0x5c, 0xe3, 0xff, 0x42, 0x2f, 0x0c, 0x55, 0x7e, 0xf4, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x9a, 0xa6, 0x21, 0x68, 0x3e, 0x0a, 0x00, 0x00, } golang-gogoprotobuf-0.5/jsonpb/jsonpb_test_proto/test_objects.proto000066400000000000000000000110501317075173200261670ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2015 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. syntax = "proto2"; import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/struct.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/wrappers.proto"; package jsonpb; import weak "gogoproto/gogo.proto"; // Test message for holding primitive types. message Simple { optional bool o_bool = 1; optional int32 o_int32 = 2; optional int64 o_int64 = 3; optional uint32 o_uint32 = 4; optional uint64 o_uint64 = 5; optional sint32 o_sint32 = 6; optional sint64 o_sint64 = 7; optional float o_float = 8; optional double o_double = 9; optional string o_string = 10; optional bytes o_bytes = 11; optional bytes o_cast_bytes = 12 [(gogoproto.casttype) = "Bytes"]; } // Test message for holding special non-finites primitives. message NonFinites { optional float f_nan = 1; optional float f_pinf = 2; optional float f_ninf = 3; optional double d_nan = 4; optional double d_pinf = 5; optional double d_ninf = 6; } // Test message for holding repeated primitives. message Repeats { repeated bool r_bool = 1; repeated int32 r_int32 = 2; repeated int64 r_int64 = 3; repeated uint32 r_uint32 = 4; repeated uint64 r_uint64 = 5; repeated sint32 r_sint32 = 6; repeated sint64 r_sint64 = 7; repeated float r_float = 8; repeated double r_double = 9; repeated string r_string = 10; repeated bytes r_bytes = 11; } // Test message for holding enums and nested messages. message Widget { enum Color { RED = 0; GREEN = 1; BLUE = 2; }; optional Color color = 1; repeated Color r_color = 2; optional Simple simple = 10; repeated Simple r_simple = 11; optional Repeats repeats = 20; repeated Repeats r_repeats = 21; } message Maps { map m_int64_str = 1; map m_bool_simple = 2; } message MsgWithOneof { oneof union { string title = 1; int64 salary = 2; string Country = 3; string home_address = 4; } } message Real { optional double value = 1; extensions 100 to max; } extend Real { optional string name = 124; } message Complex { extend Real { optional Complex real_extension = 123; } optional double imaginary = 1; extensions 100 to max; } message KnownTypes { optional google.protobuf.Any an = 14; optional google.protobuf.Duration dur = 1; optional google.protobuf.Struct st = 12; optional google.protobuf.Timestamp ts = 2; optional google.protobuf.ListValue lv = 15; optional google.protobuf.Value val = 16; optional google.protobuf.DoubleValue dbl = 3; optional google.protobuf.FloatValue flt = 4; optional google.protobuf.Int64Value i64 = 5; optional google.protobuf.UInt64Value u64 = 6; optional google.protobuf.Int32Value i32 = 7; optional google.protobuf.UInt32Value u32 = 8; optional google.protobuf.BoolValue bool = 9; optional google.protobuf.StringValue str = 10; optional google.protobuf.BytesValue bytes = 11; } golang-gogoprotobuf-0.5/plugin/000077500000000000000000000000001317075173200166435ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/compare/000077500000000000000000000000001317075173200202715ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/compare/compare.go000066400000000000000000000327671317075173200222650ustar00rootroot00000000000000// 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. package compare import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" "github.com/gogo/protobuf/protoc-gen-gogo/generator" "github.com/gogo/protobuf/vanity" ) type plugin struct { *generator.Generator generator.PluginImports fmtPkg generator.Single bytesPkg generator.Single sortkeysPkg generator.Single protoPkg generator.Single } func NewPlugin() *plugin { return &plugin{} } func (p *plugin) Name() string { return "compare" } func (p *plugin) Init(g *generator.Generator) { p.Generator = g } func (p *plugin) Generate(file *generator.FileDescriptor) { p.PluginImports = generator.NewPluginImports(p.Generator) p.fmtPkg = p.NewImport("fmt") p.bytesPkg = p.NewImport("bytes") p.sortkeysPkg = p.NewImport("github.com/gogo/protobuf/sortkeys") p.protoPkg = p.NewImport("github.com/gogo/protobuf/proto") for _, msg := range file.Messages() { if msg.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasCompare(file.FileDescriptorProto, msg.DescriptorProto) { p.generateMessage(file, msg) } } } func (p *plugin) generateNullableField(fieldname string) { p.P(`if this.`, fieldname, ` != nil && that1.`, fieldname, ` != nil {`) p.In() p.P(`if *this.`, fieldname, ` != *that1.`, fieldname, `{`) p.In() p.P(`if *this.`, fieldname, ` < *that1.`, fieldname, `{`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) p.Out() p.P(`} else if this.`, fieldname, ` != nil {`) p.In() p.P(`return 1`) p.Out() p.P(`} else if that1.`, fieldname, ` != nil {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) } func (p *plugin) generateMsgNullAndTypeCheck(ccTypeName string) { p.P(`if that == nil {`) p.In() p.P(`if this == nil {`) p.In() p.P(`return 0`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) p.P(``) p.P(`that1, ok := that.(*`, ccTypeName, `)`) p.P(`if !ok {`) p.In() p.P(`that2, ok := that.(`, ccTypeName, `)`) p.P(`if ok {`) p.In() p.P(`that1 = &that2`) p.Out() p.P(`} else {`) p.In() p.P(`return 1`) p.Out() p.P(`}`) p.Out() p.P(`}`) p.P(`if that1 == nil {`) p.In() p.P(`if this == nil {`) p.In() p.P(`return 0`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`} else if this == nil {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) } func (p *plugin) generateField(file *generator.FileDescriptor, message *generator.Descriptor, field *descriptor.FieldDescriptorProto) { proto3 := gogoproto.IsProto3(file.FileDescriptorProto) fieldname := p.GetOneOfFieldName(message, field) repeated := field.IsRepeated() ctype := gogoproto.IsCustomType(field) nullable := gogoproto.IsNullable(field) // oneof := field.OneofIndex != nil if !repeated { if ctype { if nullable { p.P(`if that1.`, fieldname, ` == nil {`) p.In() p.P(`if this.`, fieldname, ` != nil {`) p.In() p.P(`return 1`) p.Out() p.P(`}`) p.Out() p.P(`} else if this.`, fieldname, ` == nil {`) p.In() p.P(`return -1`) p.Out() p.P(`} else if c := this.`, fieldname, `.Compare(*that1.`, fieldname, `); c != 0 {`) } else { p.P(`if c := this.`, fieldname, `.Compare(that1.`, fieldname, `); c != 0 {`) } p.In() p.P(`return c`) p.Out() p.P(`}`) } else { if field.IsMessage() || p.IsGroup(field) { if nullable { p.P(`if c := this.`, fieldname, `.Compare(that1.`, fieldname, `); c != 0 {`) } else { p.P(`if c := this.`, fieldname, `.Compare(&that1.`, fieldname, `); c != 0 {`) } p.In() p.P(`return c`) p.Out() p.P(`}`) } else if field.IsBytes() { p.P(`if c := `, p.bytesPkg.Use(), `.Compare(this.`, fieldname, `, that1.`, fieldname, `); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) } else if field.IsString() { if nullable && !proto3 { p.generateNullableField(fieldname) } else { p.P(`if this.`, fieldname, ` != that1.`, fieldname, `{`) p.In() p.P(`if this.`, fieldname, ` < that1.`, fieldname, `{`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) } } else if field.IsBool() { if nullable && !proto3 { p.P(`if this.`, fieldname, ` != nil && that1.`, fieldname, ` != nil {`) p.In() p.P(`if *this.`, fieldname, ` != *that1.`, fieldname, `{`) p.In() p.P(`if !*this.`, fieldname, ` {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) p.Out() p.P(`} else if this.`, fieldname, ` != nil {`) p.In() p.P(`return 1`) p.Out() p.P(`} else if that1.`, fieldname, ` != nil {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) } else { p.P(`if this.`, fieldname, ` != that1.`, fieldname, `{`) p.In() p.P(`if !this.`, fieldname, ` {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) } } else { if nullable && !proto3 { p.generateNullableField(fieldname) } else { p.P(`if this.`, fieldname, ` != that1.`, fieldname, `{`) p.In() p.P(`if this.`, fieldname, ` < that1.`, fieldname, `{`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) } } } } else { p.P(`if len(this.`, fieldname, `) != len(that1.`, fieldname, `) {`) p.In() p.P(`if len(this.`, fieldname, `) < len(that1.`, fieldname, `) {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) p.P(`for i := range this.`, fieldname, ` {`) p.In() if ctype { p.P(`if c := this.`, fieldname, `[i].Compare(that1.`, fieldname, `[i]); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) } else { if p.IsMap(field) { m := p.GoMapType(nil, field) valuegoTyp, _ := p.GoType(nil, m.ValueField) valuegoAliasTyp, _ := p.GoType(nil, m.ValueAliasField) nullable, valuegoTyp, valuegoAliasTyp = generator.GoMapValueTypes(field, m.ValueField, valuegoTyp, valuegoAliasTyp) mapValue := m.ValueAliasField if mapValue.IsMessage() || p.IsGroup(mapValue) { if nullable && valuegoTyp == valuegoAliasTyp { p.P(`if c := this.`, fieldname, `[i].Compare(that1.`, fieldname, `[i]); c != 0 {`) } else { // Compare() has a pointer receiver, but map value is a value type a := `this.` + fieldname + `[i]` b := `that1.` + fieldname + `[i]` if valuegoTyp != valuegoAliasTyp { // cast back to the type that has the generated methods on it a = `(` + valuegoTyp + `)(` + a + `)` b = `(` + valuegoTyp + `)(` + b + `)` } p.P(`a := `, a) p.P(`b := `, b) if nullable { p.P(`if c := a.Compare(b); c != 0 {`) } else { p.P(`if c := (&a).Compare(&b); c != 0 {`) } } p.In() p.P(`return c`) p.Out() p.P(`}`) } else if mapValue.IsBytes() { p.P(`if c := `, p.bytesPkg.Use(), `.Compare(this.`, fieldname, `[i], that1.`, fieldname, `[i]); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) } else if mapValue.IsString() { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) p.In() p.P(`if this.`, fieldname, `[i] < that1.`, fieldname, `[i] {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) } else { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) p.In() p.P(`if this.`, fieldname, `[i] < that1.`, fieldname, `[i] {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) } } else if field.IsMessage() || p.IsGroup(field) { if nullable { p.P(`if c := this.`, fieldname, `[i].Compare(that1.`, fieldname, `[i]); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) } else { p.P(`if c := this.`, fieldname, `[i].Compare(&that1.`, fieldname, `[i]); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) } } else if field.IsBytes() { p.P(`if c := `, p.bytesPkg.Use(), `.Compare(this.`, fieldname, `[i], that1.`, fieldname, `[i]); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) } else if field.IsString() { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) p.In() p.P(`if this.`, fieldname, `[i] < that1.`, fieldname, `[i] {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) } else if field.IsBool() { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) p.In() p.P(`if !this.`, fieldname, `[i] {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) } else { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) p.In() p.P(`if this.`, fieldname, `[i] < that1.`, fieldname, `[i] {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.P(`return 1`) p.Out() p.P(`}`) } } p.Out() p.P(`}`) } } func (p *plugin) generateMessage(file *generator.FileDescriptor, message *generator.Descriptor) { ccTypeName := generator.CamelCaseSlice(message.TypeName()) p.P(`func (this *`, ccTypeName, `) Compare(that interface{}) int {`) p.In() p.generateMsgNullAndTypeCheck(ccTypeName) oneofs := make(map[string]struct{}) for _, field := range message.Field { oneof := field.OneofIndex != nil if oneof { fieldname := p.GetFieldName(message, field) if _, ok := oneofs[fieldname]; ok { continue } else { oneofs[fieldname] = struct{}{} } p.P(`if that1.`, fieldname, ` == nil {`) p.In() p.P(`if this.`, fieldname, ` != nil {`) p.In() p.P(`return 1`) p.Out() p.P(`}`) p.Out() p.P(`} else if this.`, fieldname, ` == nil {`) p.In() p.P(`return -1`) p.Out() p.P(`} else if c := this.`, fieldname, `.Compare(that1.`, fieldname, `); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) } else { p.generateField(file, message, field) } } if message.DescriptorProto.HasExtension() { if gogoproto.HasExtensionsMap(file.FileDescriptorProto, message.DescriptorProto) { p.P(`thismap := `, p.protoPkg.Use(), `.GetUnsafeExtensionsMap(this)`) p.P(`thatmap := `, p.protoPkg.Use(), `.GetUnsafeExtensionsMap(that1)`) p.P(`extkeys := make([]int32, 0, len(thismap)+len(thatmap))`) p.P(`for k, _ := range thismap {`) p.In() p.P(`extkeys = append(extkeys, k)`) p.Out() p.P(`}`) p.P(`for k, _ := range thatmap {`) p.In() p.P(`if _, ok := thismap[k]; !ok {`) p.In() p.P(`extkeys = append(extkeys, k)`) p.Out() p.P(`}`) p.Out() p.P(`}`) p.P(p.sortkeysPkg.Use(), `.Int32s(extkeys)`) p.P(`for _, k := range extkeys {`) p.In() p.P(`if v, ok := thismap[k]; ok {`) p.In() p.P(`if v2, ok := thatmap[k]; ok {`) p.In() p.P(`if c := v.Compare(&v2); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) p.Out() p.P(`} else {`) p.In() p.P(`return 1`) p.Out() p.P(`}`) p.Out() p.P(`} else {`) p.In() p.P(`return -1`) p.Out() p.P(`}`) p.Out() p.P(`}`) } else { fieldname := "XXX_extensions" p.P(`if c := `, p.bytesPkg.Use(), `.Compare(this.`, fieldname, `, that1.`, fieldname, `); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) } } if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) { fieldname := "XXX_unrecognized" p.P(`if c := `, p.bytesPkg.Use(), `.Compare(this.`, fieldname, `, that1.`, fieldname, `); c != 0 {`) p.In() p.P(`return c`) p.Out() p.P(`}`) } p.P(`return 0`) p.Out() p.P(`}`) //Generate Compare methods for oneof fields m := proto.Clone(message.DescriptorProto).(*descriptor.DescriptorProto) for _, field := range m.Field { oneof := field.OneofIndex != nil if !oneof { continue } ccTypeName := p.OneOfTypeName(message, field) p.P(`func (this *`, ccTypeName, `) Compare(that interface{}) int {`) p.In() p.generateMsgNullAndTypeCheck(ccTypeName) vanity.TurnOffNullableForNativeTypes(field) p.generateField(file, message, field) p.P(`return 0`) p.Out() p.P(`}`) } } func init() { generator.RegisterPlugin(NewPlugin()) } golang-gogoprotobuf-0.5/plugin/compare/comparetest.go000066400000000000000000000100451317075173200231460ustar00rootroot00000000000000// 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. package compare import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/plugin/testgen" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type test struct { *generator.Generator } func NewTest(g *generator.Generator) testgen.TestPlugin { return &test{g} } func (p *test) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") testingPkg := imports.NewImport("testing") protoPkg := imports.NewImport("github.com/gogo/protobuf/proto") unsafePkg := imports.NewImport("unsafe") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = imports.NewImport("github.com/golang/protobuf/proto") } for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if !gogoproto.HasCompare(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { used = true hasUnsafe := gogoproto.IsUnsafeMarshaler(file.FileDescriptorProto, message.DescriptorProto) || gogoproto.IsUnsafeUnmarshaler(file.FileDescriptorProto, message.DescriptorProto) p.P(`func Test`, ccTypeName, `Compare(t *`, testingPkg.Use(), `.T) {`) p.In() if hasUnsafe { p.P(`var bigendian uint32 = 0x01020304`) p.P(`if *(*byte)(`, unsafePkg.Use(), `.Pointer(&bigendian)) == 1 {`) p.In() p.P(`t.Skip("unsafe does not work on big endian architectures")`) p.Out() p.P(`}`) } p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(`, timePkg.Use(), `.Now().UnixNano()))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, false)`) p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(p)`) p.P(`if err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.P(`msg := &`, ccTypeName, `{}`) p.P(`if err := `, protoPkg.Use(), `.Unmarshal(dAtA, msg); err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.P(`if c := p.Compare(msg); c != 0 {`) p.In() p.P(`t.Fatalf("%#v !Compare %#v, since %d", msg, p, c)`) p.Out() p.P(`}`) p.P(`p2 := NewPopulated`, ccTypeName, `(popr, false)`) p.P(`c := p.Compare(p2)`) p.P(`c2 := p2.Compare(p)`) p.P(`if c != (-1 * c2) {`) p.In() p.P(`t.Errorf("p.Compare(p2) = %d", c)`) p.P(`t.Errorf("p2.Compare(p) = %d", c2)`) p.P(`t.Errorf("p = %#v", p)`) p.P(`t.Errorf("p2 = %#v", p2)`) p.Out() p.P(`}`) p.Out() p.P(`}`) } } return used } func init() { testgen.RegisterTestPlugin(NewTest) } golang-gogoprotobuf-0.5/plugin/defaultcheck/000077500000000000000000000000001317075173200212655ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/defaultcheck/defaultcheck.go000066400000000000000000000116601317075173200242420ustar00rootroot00000000000000// 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. /* The defaultcheck plugin is used to check whether nullable is not used incorrectly. For instance: An error is caused if a nullable field: - has a default value, - is an enum which does not start at zero, - is used for an extension, - is used for a native proto3 type, - is used for a repeated native type. An error is also caused if a field with a default value is used in a message: - which is a face. - without getters. It is enabled by the following extensions: - nullable For incorrect usage of nullable with tests see: github.com/gogo/protobuf/test/nullableconflict */ package defaultcheck import ( "fmt" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" "os" ) type plugin struct { *generator.Generator } func NewPlugin() *plugin { return &plugin{} } func (p *plugin) Name() string { return "defaultcheck" } func (p *plugin) Init(g *generator.Generator) { p.Generator = g } func (p *plugin) Generate(file *generator.FileDescriptor) { proto3 := gogoproto.IsProto3(file.FileDescriptorProto) for _, msg := range file.Messages() { getters := gogoproto.HasGoGetters(file.FileDescriptorProto, msg.DescriptorProto) face := gogoproto.IsFace(file.FileDescriptorProto, msg.DescriptorProto) for _, field := range msg.GetField() { if len(field.GetDefaultValue()) > 0 { if !getters { fmt.Fprintf(os.Stderr, "ERROR: field %v.%v cannot have a default value and not have a getter method", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) os.Exit(1) } if face { fmt.Fprintf(os.Stderr, "ERROR: field %v.%v cannot have a default value be in a face", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) os.Exit(1) } } if gogoproto.IsNullable(field) { continue } if len(field.GetDefaultValue()) > 0 { fmt.Fprintf(os.Stderr, "ERROR: field %v.%v cannot be non-nullable and have a default value", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) os.Exit(1) } if !field.IsMessage() && !gogoproto.IsCustomType(field) { if field.IsRepeated() { fmt.Fprintf(os.Stderr, "WARNING: field %v.%v is a repeated non-nullable native type, nullable=false has no effect\n", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) } else if proto3 { fmt.Fprintf(os.Stderr, "ERROR: field %v.%v is a native type and in proto3 syntax with nullable=false there exists conflicting implementations when encoding zero values", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) os.Exit(1) } if field.IsBytes() { fmt.Fprintf(os.Stderr, "WARNING: field %v.%v is a non-nullable bytes type, nullable=false has no effect\n", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) } } if !field.IsEnum() { continue } enum := p.ObjectNamed(field.GetTypeName()).(*generator.EnumDescriptor) if len(enum.Value) == 0 || enum.Value[0].GetNumber() != 0 { fmt.Fprintf(os.Stderr, "ERROR: field %v.%v cannot be non-nullable and be an enum type %v which does not start with zero", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name), enum.GetName()) os.Exit(1) } } } for _, e := range file.GetExtension() { if !gogoproto.IsNullable(e) { fmt.Fprintf(os.Stderr, "ERROR: extended field %v cannot be nullable %v", generator.CamelCase(e.GetName()), generator.CamelCase(*e.Name)) os.Exit(1) } } } func (p *plugin) GenerateImports(*generator.FileDescriptor) {} func init() { generator.RegisterPlugin(NewPlugin()) } golang-gogoprotobuf-0.5/plugin/description/000077500000000000000000000000001317075173200211665ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/description/description.go000066400000000000000000000131671317075173200240500ustar00rootroot00000000000000// 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. /* The description (experimental) plugin generates a Description method for each message. The Description method returns a populated google_protobuf.FileDescriptorSet struct. This contains the description of the files used to generate this message. It is enabled by the following extensions: - description - description_all The description plugin also generates a test given it is enabled using one of the following extensions: - testgen - testgen_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: message B { option (gogoproto.description) = true; optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } given to the description plugin, will generate the following code: func (this *B) Description() (desc *google_protobuf.FileDescriptorSet) { return ExampleDescription() } and the following test code: func TestDescription(t *testing9.T) { ExampleDescription() } The hope is to use this struct in some way instead of reflect. This package is subject to change, since a use has not been figured out yet. */ package description import ( "bytes" "compress/gzip" "fmt" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type plugin struct { *generator.Generator generator.PluginImports } func NewPlugin() *plugin { return &plugin{} } func (p *plugin) Name() string { return "description" } func (p *plugin) Init(g *generator.Generator) { p.Generator = g } func (p *plugin) Generate(file *generator.FileDescriptor) { used := false localName := generator.FileName(file) p.PluginImports = generator.NewPluginImports(p.Generator) descriptorPkg := p.NewImport("github.com/gogo/protobuf/protoc-gen-gogo/descriptor") protoPkg := p.NewImport("github.com/gogo/protobuf/proto") gzipPkg := p.NewImport("compress/gzip") bytesPkg := p.NewImport("bytes") ioutilPkg := p.NewImport("io/ioutil") for _, message := range file.Messages() { if !gogoproto.HasDescription(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } used = true ccTypeName := generator.CamelCaseSlice(message.TypeName()) p.P(`func (this *`, ccTypeName, `) Description() (desc *`, descriptorPkg.Use(), `.FileDescriptorSet) {`) p.In() p.P(`return `, localName, `Description()`) p.Out() p.P(`}`) } if used { p.P(`func `, localName, `Description() (desc *`, descriptorPkg.Use(), `.FileDescriptorSet) {`) p.In() //Don't generate SourceCodeInfo, since it will create too much code. ss := make([]*descriptor.SourceCodeInfo, 0) for _, f := range p.Generator.AllFiles().GetFile() { ss = append(ss, f.SourceCodeInfo) f.SourceCodeInfo = nil } b, err := proto.Marshal(p.Generator.AllFiles()) if err != nil { panic(err) } for i, f := range p.Generator.AllFiles().GetFile() { f.SourceCodeInfo = ss[i] } p.P(`d := &`, descriptorPkg.Use(), `.FileDescriptorSet{}`) var buf bytes.Buffer w, _ := gzip.NewWriterLevel(&buf, gzip.BestCompression) w.Write(b) w.Close() b = buf.Bytes() p.P("var gzipped = []byte{") p.In() p.P("// ", len(b), " bytes of a gzipped FileDescriptorSet") for len(b) > 0 { n := 16 if n > len(b) { n = len(b) } s := "" for _, c := range b[:n] { s += fmt.Sprintf("0x%02x,", c) } p.P(s) b = b[n:] } p.Out() p.P("}") p.P(`r := `, bytesPkg.Use(), `.NewReader(gzipped)`) p.P(`gzipr, err := `, gzipPkg.Use(), `.NewReader(r)`) p.P(`if err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.P(`ungzipped, err := `, ioutilPkg.Use(), `.ReadAll(gzipr)`) p.P(`if err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.P(`if err := `, protoPkg.Use(), `.Unmarshal(ungzipped, d); err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.P(`return d`) p.Out() p.P(`}`) } } func init() { generator.RegisterPlugin(NewPlugin()) } golang-gogoprotobuf-0.5/plugin/description/descriptiontest.go000066400000000000000000000046471317075173200247530ustar00rootroot00000000000000// 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. package description import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/plugin/testgen" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type test struct { *generator.Generator } func NewTest(g *generator.Generator) testgen.TestPlugin { return &test{g} } func (p *test) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false testingPkg := imports.NewImport("testing") for _, message := range file.Messages() { if !gogoproto.HasDescription(file.FileDescriptorProto, message.DescriptorProto) || !gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } used = true } if used { localName := generator.FileName(file) p.P(`func Test`, localName, `Description(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(localName, `Description()`) p.Out() p.P(`}`) } return used } func init() { testgen.RegisterTestPlugin(NewTest) } golang-gogoprotobuf-0.5/plugin/embedcheck/000077500000000000000000000000001317075173200207155ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/embedcheck/embedcheck.go000066400000000000000000000135411317075173200233220ustar00rootroot00000000000000// 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. /* The embedcheck plugin is used to check whether embed is not used incorrectly. For instance: An embedded message has a generated string method, but the is a member of a message which does not. This causes a warning. An error is caused by a namespace conflict. It is enabled by the following extensions: - embed - embed_all For incorrect usage of embed with tests see: github.com/gogo/protobuf/test/embedconflict */ package embedcheck import ( "fmt" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" "os" ) type plugin struct { *generator.Generator } func NewPlugin() *plugin { return &plugin{} } func (p *plugin) Name() string { return "embedcheck" } func (p *plugin) Init(g *generator.Generator) { p.Generator = g } var overwriters []map[string]gogoproto.EnableFunc = []map[string]gogoproto.EnableFunc{ { "stringer": gogoproto.IsStringer, }, { "gostring": gogoproto.HasGoString, }, { "equal": gogoproto.HasEqual, }, { "verboseequal": gogoproto.HasVerboseEqual, }, { "size": gogoproto.IsSizer, "protosizer": gogoproto.IsProtoSizer, }, { "unmarshaler": gogoproto.IsUnmarshaler, "unsafe_unmarshaler": gogoproto.IsUnsafeUnmarshaler, }, { "marshaler": gogoproto.IsMarshaler, "unsafe_marshaler": gogoproto.IsUnsafeMarshaler, }, } func (p *plugin) Generate(file *generator.FileDescriptor) { for _, msg := range file.Messages() { for _, os := range overwriters { possible := true for _, overwriter := range os { if overwriter(file.FileDescriptorProto, msg.DescriptorProto) { possible = false } } if possible { p.checkOverwrite(msg, os) } } p.checkNameSpace(msg) for _, field := range msg.GetField() { if gogoproto.IsEmbed(field) && gogoproto.IsCustomName(field) { fmt.Fprintf(os.Stderr, "ERROR: field %v with custom name %v cannot be embedded", *field.Name, gogoproto.GetCustomName(field)) os.Exit(1) } } p.checkRepeated(msg) } for _, e := range file.GetExtension() { if gogoproto.IsEmbed(e) { fmt.Fprintf(os.Stderr, "ERROR: extended field %v cannot be embedded", generator.CamelCase(*e.Name)) os.Exit(1) } } } func (p *plugin) checkNameSpace(message *generator.Descriptor) map[string]bool { ccTypeName := generator.CamelCaseSlice(message.TypeName()) names := make(map[string]bool) for _, field := range message.Field { fieldname := generator.CamelCase(*field.Name) if field.IsMessage() && gogoproto.IsEmbed(field) { desc := p.ObjectNamed(field.GetTypeName()) moreNames := p.checkNameSpace(desc.(*generator.Descriptor)) for another := range moreNames { if names[another] { fmt.Fprintf(os.Stderr, "ERROR: duplicate embedded fieldname %v in type %v\n", fieldname, ccTypeName) os.Exit(1) } names[another] = true } } else { if names[fieldname] { fmt.Fprintf(os.Stderr, "ERROR: duplicate embedded fieldname %v in type %v\n", fieldname, ccTypeName) os.Exit(1) } names[fieldname] = true } } return names } func (p *plugin) checkOverwrite(message *generator.Descriptor, enablers map[string]gogoproto.EnableFunc) { ccTypeName := generator.CamelCaseSlice(message.TypeName()) names := []string{} for name := range enablers { names = append(names, name) } for _, field := range message.Field { if field.IsMessage() && gogoproto.IsEmbed(field) { fieldname := generator.CamelCase(*field.Name) desc := p.ObjectNamed(field.GetTypeName()) msg := desc.(*generator.Descriptor) for errStr, enabled := range enablers { if enabled(msg.File(), msg.DescriptorProto) { fmt.Fprintf(os.Stderr, "WARNING: found non-%v %v with embedded %v %v\n", names, ccTypeName, errStr, fieldname) } } p.checkOverwrite(msg, enablers) } } } func (p *plugin) checkRepeated(message *generator.Descriptor) { ccTypeName := generator.CamelCaseSlice(message.TypeName()) for _, field := range message.Field { if !gogoproto.IsEmbed(field) { continue } if field.IsBytes() { fieldname := generator.CamelCase(*field.Name) fmt.Fprintf(os.Stderr, "ERROR: found embedded bytes field %s in message %s\n", fieldname, ccTypeName) os.Exit(1) } if !field.IsRepeated() { continue } fieldname := generator.CamelCase(*field.Name) fmt.Fprintf(os.Stderr, "ERROR: found repeated embedded field %s in message %s\n", fieldname, ccTypeName) os.Exit(1) } } func (p *plugin) GenerateImports(*generator.FileDescriptor) {} func init() { generator.RegisterPlugin(NewPlugin()) } golang-gogoprotobuf-0.5/plugin/enumstringer/000077500000000000000000000000001317075173200213655ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/enumstringer/enumstringer.go000066400000000000000000000061241317075173200244410ustar00rootroot00000000000000// 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. /* The enumstringer (experimental) plugin generates a String method for each enum. It is enabled by the following extensions: - enum_stringer - enum_stringer_all This package is subject to change. */ package enumstringer import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type enumstringer struct { *generator.Generator generator.PluginImports atleastOne bool localName string } func NewEnumStringer() *enumstringer { return &enumstringer{} } func (p *enumstringer) Name() string { return "enumstringer" } func (p *enumstringer) Init(g *generator.Generator) { p.Generator = g } func (p *enumstringer) Generate(file *generator.FileDescriptor) { p.PluginImports = generator.NewPluginImports(p.Generator) p.atleastOne = false p.localName = generator.FileName(file) strconvPkg := p.NewImport("strconv") for _, enum := range file.Enums() { if !gogoproto.IsEnumStringer(file.FileDescriptorProto, enum.EnumDescriptorProto) { continue } if gogoproto.IsGoEnumStringer(file.FileDescriptorProto, enum.EnumDescriptorProto) { panic("Go enum stringer conflicts with new enumstringer plugin: please use gogoproto.goproto_enum_stringer or gogoproto.goproto_enum_string_all and set it to false") } p.atleastOne = true ccTypeName := generator.CamelCaseSlice(enum.TypeName()) p.P("func (x ", ccTypeName, ") String() string {") p.In() p.P(`s, ok := `, ccTypeName, `_name[int32(x)]`) p.P(`if ok {`) p.In() p.P(`return s`) p.Out() p.P(`}`) p.P(`return `, strconvPkg.Use(), `.Itoa(int(x))`) p.Out() p.P(`}`) } if !p.atleastOne { return } } func init() { generator.RegisterPlugin(NewEnumStringer()) } golang-gogoprotobuf-0.5/plugin/equal/000077500000000000000000000000001317075173200177525ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/equal/equal.go000066400000000000000000000441301317075173200214120ustar00rootroot00000000000000// 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. /* The equal plugin generates an Equal and a VerboseEqual method for each message. These equal methods are quite obvious. The only difference is that VerboseEqual returns a non nil error if it is not equal. This error contains more detail on exactly which part of the message was not equal to the other message. The idea is that this is useful for debugging. Equal is enabled using the following extensions: - equal - equal_all While VerboseEqual is enable dusing the following extensions: - verbose_equal - verbose_equal_all The equal plugin also generates a test given it is enabled using one of the following extensions: - testgen - testgen_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; message B { optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } given to the equal plugin, will generate the following code: func (this *B) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt2.Errorf("that == nil && this != nil") } that1, ok := that.(*B) if !ok { return fmt2.Errorf("that is not of type *B") } if that1 == nil { if this == nil { return nil } return fmt2.Errorf("that is type *B but is nil && this != nil") } else if this == nil { return fmt2.Errorf("that is type *B but is not nil && this == nil") } if !this.A.Equal(&that1.A) { return fmt2.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A) } if len(this.G) != len(that1.G) { return fmt2.Errorf("G this(%v) Not Equal that(%v)", len(this.G), len(that1.G)) } for i := range this.G { if !this.G[i].Equal(that1.G[i]) { return fmt2.Errorf("G this[%v](%v) Not Equal that[%v](%v)", i, this.G[i], i, that1.G[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt2.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *B) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*B) if !ok { return false } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.A.Equal(&that1.A) { return false } if len(this.G) != len(that1.G) { return false } for i := range this.G { if !this.G[i].Equal(that1.G[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } and the following test code: func TestBVerboseEqual(t *testing8.T) { popr := math_rand8.New(math_rand8.NewSource(time8.Now().UnixNano())) p := NewPopulatedB(popr, false) dAtA, err := github_com_gogo_protobuf_proto2.Marshal(p) if err != nil { panic(err) } msg := &B{} if err := github_com_gogo_protobuf_proto2.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } */ package equal import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" "github.com/gogo/protobuf/protoc-gen-gogo/generator" "github.com/gogo/protobuf/vanity" ) type plugin struct { *generator.Generator generator.PluginImports fmtPkg generator.Single bytesPkg generator.Single protoPkg generator.Single } func NewPlugin() *plugin { return &plugin{} } func (p *plugin) Name() string { return "equal" } func (p *plugin) Init(g *generator.Generator) { p.Generator = g } func (p *plugin) Generate(file *generator.FileDescriptor) { p.PluginImports = generator.NewPluginImports(p.Generator) p.fmtPkg = p.NewImport("fmt") p.bytesPkg = p.NewImport("bytes") p.protoPkg = p.NewImport("github.com/gogo/protobuf/proto") for _, msg := range file.Messages() { if msg.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasVerboseEqual(file.FileDescriptorProto, msg.DescriptorProto) { p.generateMessage(file, msg, true) } if gogoproto.HasEqual(file.FileDescriptorProto, msg.DescriptorProto) { p.generateMessage(file, msg, false) } } } func (p *plugin) generateNullableField(fieldname string, verbose bool) { p.P(`if this.`, fieldname, ` != nil && that1.`, fieldname, ` != nil {`) p.In() p.P(`if *this.`, fieldname, ` != *that1.`, fieldname, `{`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", *this.`, fieldname, `, *that1.`, fieldname, `)`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.Out() p.P(`} else if this.`, fieldname, ` != nil {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("this.`, fieldname, ` == nil && that.`, fieldname, ` != nil")`) } else { p.P(`return false`) } p.Out() p.P(`} else if that1.`, fieldname, ` != nil {`) } func (p *plugin) generateMsgNullAndTypeCheck(ccTypeName string, verbose bool) { p.P(`if that == nil {`) p.In() p.P(`if this == nil {`) p.In() if verbose { p.P(`return nil`) } else { p.P(`return true`) } p.Out() p.P(`}`) if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("that == nil && this != nil")`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.P(``) p.P(`that1, ok := that.(*`, ccTypeName, `)`) p.P(`if !ok {`) p.In() p.P(`that2, ok := that.(`, ccTypeName, `)`) p.P(`if ok {`) p.In() p.P(`that1 = &that2`) p.Out() p.P(`} else {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("that is not of type *`, ccTypeName, `")`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.Out() p.P(`}`) p.P(`if that1 == nil {`) p.In() p.P(`if this == nil {`) p.In() if verbose { p.P(`return nil`) } else { p.P(`return true`) } p.Out() p.P(`}`) if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("that is type *`, ccTypeName, ` but is nil && this != nil")`) } else { p.P(`return false`) } p.Out() p.P(`} else if this == nil {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("that is type *`, ccTypeName, ` but is not nil && this == nil")`) } else { p.P(`return false`) } p.Out() p.P(`}`) } func (p *plugin) generateField(file *generator.FileDescriptor, message *generator.Descriptor, field *descriptor.FieldDescriptorProto, verbose bool) { proto3 := gogoproto.IsProto3(file.FileDescriptorProto) fieldname := p.GetOneOfFieldName(message, field) repeated := field.IsRepeated() ctype := gogoproto.IsCustomType(field) nullable := gogoproto.IsNullable(field) isDuration := gogoproto.IsStdDuration(field) isTimestamp := gogoproto.IsStdTime(field) // oneof := field.OneofIndex != nil if !repeated { if ctype || isTimestamp { if nullable { p.P(`if that1.`, fieldname, ` == nil {`) p.In() p.P(`if this.`, fieldname, ` != nil {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("this.`, fieldname, ` != nil && that1.`, fieldname, ` == nil")`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.Out() p.P(`} else if !this.`, fieldname, `.Equal(*that1.`, fieldname, `) {`) } else { p.P(`if !this.`, fieldname, `.Equal(that1.`, fieldname, `) {`) } p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`) } else { p.P(`return false`) } p.Out() p.P(`}`) } else if isDuration { if nullable { p.generateNullableField(fieldname, verbose) } else { p.P(`if this.`, fieldname, ` != that1.`, fieldname, `{`) } p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`) } else { p.P(`return false`) } p.Out() p.P(`}`) } else { if field.IsMessage() || p.IsGroup(field) { if nullable { p.P(`if !this.`, fieldname, `.Equal(that1.`, fieldname, `) {`) } else { p.P(`if !this.`, fieldname, `.Equal(&that1.`, fieldname, `) {`) } } else if field.IsBytes() { p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `, that1.`, fieldname, `) {`) } else if field.IsString() { if nullable && !proto3 { p.generateNullableField(fieldname, verbose) } else { p.P(`if this.`, fieldname, ` != that1.`, fieldname, `{`) } } else { if nullable && !proto3 { p.generateNullableField(fieldname, verbose) } else { p.P(`if this.`, fieldname, ` != that1.`, fieldname, `{`) } } p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`) } else { p.P(`return false`) } p.Out() p.P(`}`) } } else { p.P(`if len(this.`, fieldname, `) != len(that1.`, fieldname, `) {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", len(this.`, fieldname, `), len(that1.`, fieldname, `))`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.P(`for i := range this.`, fieldname, ` {`) p.In() if ctype && !p.IsMap(field) { p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) {`) } else if isTimestamp { if nullable { p.P(`if !this.`, fieldname, `[i].Equal(*that1.`, fieldname, `[i]) {`) } else { p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) {`) } } else if isDuration { if nullable { p.P(`if dthis, dthat := this.`, fieldname, `[i], that1.`, fieldname, `[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) {`) } else { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) } } else { if p.IsMap(field) { m := p.GoMapType(nil, field) valuegoTyp, _ := p.GoType(nil, m.ValueField) valuegoAliasTyp, _ := p.GoType(nil, m.ValueAliasField) nullable, valuegoTyp, valuegoAliasTyp = generator.GoMapValueTypes(field, m.ValueField, valuegoTyp, valuegoAliasTyp) mapValue := m.ValueAliasField if mapValue.IsMessage() || p.IsGroup(mapValue) { if nullable && valuegoTyp == valuegoAliasTyp { p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) {`) } else { // Equal() has a pointer receiver, but map value is a value type a := `this.` + fieldname + `[i]` b := `that1.` + fieldname + `[i]` if valuegoTyp != valuegoAliasTyp { // cast back to the type that has the generated methods on it a = `(` + valuegoTyp + `)(` + a + `)` b = `(` + valuegoTyp + `)(` + b + `)` } p.P(`a := `, a) p.P(`b := `, b) if nullable { p.P(`if !a.Equal(b) {`) } else { p.P(`if !(&a).Equal(&b) {`) } } } else if mapValue.IsBytes() { if ctype { if nullable { p.P(`if !this.`, fieldname, `[i].Equal(*that1.`, fieldname, `[i]) { //nullable`) } else { p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) { //not nullable`) } } else { p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `[i], that1.`, fieldname, `[i]) {`) } } else if mapValue.IsString() { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) } else { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) } } else if field.IsMessage() || p.IsGroup(field) { if nullable { p.P(`if !this.`, fieldname, `[i].Equal(that1.`, fieldname, `[i]) {`) } else { p.P(`if !this.`, fieldname, `[i].Equal(&that1.`, fieldname, `[i]) {`) } } else if field.IsBytes() { p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `[i], that1.`, fieldname, `[i]) {`) } else if field.IsString() { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) } else { p.P(`if this.`, fieldname, `[i] != that1.`, fieldname, `[i] {`) } } p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this[%v](%v) Not Equal that[%v](%v)", i, this.`, fieldname, `[i], i, that1.`, fieldname, `[i])`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.Out() p.P(`}`) } } func (p *plugin) generateMessage(file *generator.FileDescriptor, message *generator.Descriptor, verbose bool) { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if verbose { p.P(`func (this *`, ccTypeName, `) VerboseEqual(that interface{}) error {`) } else { p.P(`func (this *`, ccTypeName, `) Equal(that interface{}) bool {`) } p.In() p.generateMsgNullAndTypeCheck(ccTypeName, verbose) oneofs := make(map[string]struct{}) for _, field := range message.Field { oneof := field.OneofIndex != nil if oneof { fieldname := p.GetFieldName(message, field) if _, ok := oneofs[fieldname]; ok { continue } else { oneofs[fieldname] = struct{}{} } p.P(`if that1.`, fieldname, ` == nil {`) p.In() p.P(`if this.`, fieldname, ` != nil {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("this.`, fieldname, ` != nil && that1.`, fieldname, ` == nil")`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.Out() p.P(`} else if this.`, fieldname, ` == nil {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("this.`, fieldname, ` == nil && that1.`, fieldname, ` != nil")`) } else { p.P(`return false`) } p.Out() if verbose { p.P(`} else if err := this.`, fieldname, `.VerboseEqual(that1.`, fieldname, `); err != nil {`) } else { p.P(`} else if !this.`, fieldname, `.Equal(that1.`, fieldname, `) {`) } p.In() if verbose { p.P(`return err`) } else { p.P(`return false`) } p.Out() p.P(`}`) } else { p.generateField(file, message, field, verbose) } } if message.DescriptorProto.HasExtension() { if gogoproto.HasExtensionsMap(file.FileDescriptorProto, message.DescriptorProto) { fieldname := "XXX_InternalExtensions" p.P(`thismap := `, p.protoPkg.Use(), `.GetUnsafeExtensionsMap(this)`) p.P(`thatmap := `, p.protoPkg.Use(), `.GetUnsafeExtensionsMap(that1)`) p.P(`for k, v := range thismap {`) p.In() p.P(`if v2, ok := thatmap[k]; ok {`) p.In() p.P(`if !v.Equal(&v2) {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k])`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.Out() p.P(`} else {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, `[%v] Not In that", k)`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.Out() p.P(`}`) p.P(`for k, _ := range thatmap {`) p.In() p.P(`if _, ok := thismap[k]; !ok {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, `[%v] Not In this", k)`) } else { p.P(`return false`) } p.Out() p.P(`}`) p.Out() p.P(`}`) } else { fieldname := "XXX_extensions" p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `, that1.`, fieldname, `) {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`) } else { p.P(`return false`) } p.Out() p.P(`}`) } } if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) { fieldname := "XXX_unrecognized" p.P(`if !`, p.bytesPkg.Use(), `.Equal(this.`, fieldname, `, that1.`, fieldname, `) {`) p.In() if verbose { p.P(`return `, p.fmtPkg.Use(), `.Errorf("`, fieldname, ` this(%v) Not Equal that(%v)", this.`, fieldname, `, that1.`, fieldname, `)`) } else { p.P(`return false`) } p.Out() p.P(`}`) } if verbose { p.P(`return nil`) } else { p.P(`return true`) } p.Out() p.P(`}`) //Generate Equal methods for oneof fields m := proto.Clone(message.DescriptorProto).(*descriptor.DescriptorProto) for _, field := range m.Field { oneof := field.OneofIndex != nil if !oneof { continue } ccTypeName := p.OneOfTypeName(message, field) if verbose { p.P(`func (this *`, ccTypeName, `) VerboseEqual(that interface{}) error {`) } else { p.P(`func (this *`, ccTypeName, `) Equal(that interface{}) bool {`) } p.In() p.generateMsgNullAndTypeCheck(ccTypeName, verbose) vanity.TurnOffNullableForNativeTypes(field) p.generateField(file, message, field, verbose) if verbose { p.P(`return nil`) } else { p.P(`return true`) } p.Out() p.P(`}`) } } func init() { generator.RegisterPlugin(NewPlugin()) } golang-gogoprotobuf-0.5/plugin/equal/equaltest.go000066400000000000000000000074151317075173200223170ustar00rootroot00000000000000// 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. package equal import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/plugin/testgen" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type test struct { *generator.Generator } func NewTest(g *generator.Generator) testgen.TestPlugin { return &test{g} } func (p *test) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") testingPkg := imports.NewImport("testing") protoPkg := imports.NewImport("github.com/gogo/protobuf/proto") unsafePkg := imports.NewImport("unsafe") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = imports.NewImport("github.com/golang/protobuf/proto") } for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if !gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { used = true hasUnsafe := gogoproto.IsUnsafeMarshaler(file.FileDescriptorProto, message.DescriptorProto) || gogoproto.IsUnsafeUnmarshaler(file.FileDescriptorProto, message.DescriptorProto) p.P(`func Test`, ccTypeName, `VerboseEqual(t *`, testingPkg.Use(), `.T) {`) p.In() if hasUnsafe { if hasUnsafe { p.P(`var bigendian uint32 = 0x01020304`) p.P(`if *(*byte)(`, unsafePkg.Use(), `.Pointer(&bigendian)) == 1 {`) p.In() p.P(`t.Skip("unsafe does not work on big endian architectures")`) p.Out() p.P(`}`) } } p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(`, timePkg.Use(), `.Now().UnixNano()))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, false)`) p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(p)`) p.P(`if err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.P(`msg := &`, ccTypeName, `{}`) p.P(`if err := `, protoPkg.Use(), `.Unmarshal(dAtA, msg); err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.P(`if err := p.VerboseEqual(msg); err != nil {`) p.In() p.P(`t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err)`) p.Out() p.P(`}`) p.Out() p.P(`}`) } } return used } func init() { testgen.RegisterTestPlugin(NewTest) } golang-gogoprotobuf-0.5/plugin/face/000077500000000000000000000000001317075173200175415ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/face/face.go000066400000000000000000000154121317075173200207710ustar00rootroot00000000000000// 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. /* The face plugin generates 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 means that getters should be turned off so as not to conflict with face getters. This allows it to satisfy its own face. It is enabled by the following extensions: - face - face_all Turn off getters by using the following extensions: - getters - getters_all The face plugin also generates a test given it is enabled using one of the following extensions: - testgen - testgen_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: message A { option (gogoproto.face) = true; option (gogoproto.goproto_getters) = false; optional string Description = 1 [(gogoproto.nullable) = false]; optional int64 Number = 2 [(gogoproto.nullable) = false]; optional bytes Id = 3 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uuid", (gogoproto.nullable) = false]; } given to the face plugin, will generate the following code: type AFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDescription() string GetNumber() int64 GetId() github_com_gogo_protobuf_test_custom.Uuid } func (this *A) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *A) TestProto() github_com_gogo_protobuf_proto.Message { return NewAFromFace(this) } func (this *A) GetDescription() string { return this.Description } func (this *A) GetNumber() int64 { return this.Number } func (this *A) GetId() github_com_gogo_protobuf_test_custom.Uuid { return this.Id } func NewAFromFace(that AFace) *A { this := &A{} this.Description = that.GetDescription() this.Number = that.GetNumber() this.Id = that.GetId() return this } and the following test code: func TestAFace(t *testing7.T) { popr := math_rand7.New(math_rand7.NewSource(time7.Now().UnixNano())) p := NewPopulatedA(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } The struct A, representing the message, will also be generated just like always. As you can see A satisfies its own Face, AFace. Creating another struct which satisfies AFace is very easy. Simply create all these methods specified in AFace. Implementing The Proto method is done with the helper function NewAFromFace: func (this *MyStruct) Proto() proto.Message { return NewAFromFace(this) } just the like TestProto method which is used to test the NewAFromFace function. */ package face import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type plugin struct { *generator.Generator generator.PluginImports } func NewPlugin() *plugin { return &plugin{} } func (p *plugin) Name() string { return "face" } func (p *plugin) Init(g *generator.Generator) { p.Generator = g } func (p *plugin) Generate(file *generator.FileDescriptor) { p.PluginImports = generator.NewPluginImports(p.Generator) protoPkg := p.NewImport("github.com/gogo/protobuf/proto") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = p.NewImport("github.com/golang/protobuf/proto") } for _, message := range file.Messages() { if !gogoproto.IsFace(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if message.DescriptorProto.HasExtension() { panic("face does not support message with extensions") } if gogoproto.HasGoGetters(file.FileDescriptorProto, message.DescriptorProto) { panic("face requires getters to be disabled please use gogoproto.getters or gogoproto.getters_all and set it to false") } ccTypeName := generator.CamelCaseSlice(message.TypeName()) p.P(`type `, ccTypeName, `Face interface{`) p.In() p.P(`Proto() `, protoPkg.Use(), `.Message`) for _, field := range message.Field { fieldname := p.GetFieldName(message, field) goTyp, _ := p.GoType(message, field) if p.IsMap(field) { m := p.GoMapType(nil, field) goTyp = m.GoType } p.P(`Get`, fieldname, `() `, goTyp) } p.Out() p.P(`}`) p.P(``) p.P(`func (this *`, ccTypeName, `) Proto() `, protoPkg.Use(), `.Message {`) p.In() p.P(`return this`) p.Out() p.P(`}`) p.P(``) p.P(`func (this *`, ccTypeName, `) TestProto() `, protoPkg.Use(), `.Message {`) p.In() p.P(`return New`, ccTypeName, `FromFace(this)`) p.Out() p.P(`}`) p.P(``) for _, field := range message.Field { fieldname := p.GetFieldName(message, field) goTyp, _ := p.GoType(message, field) if p.IsMap(field) { m := p.GoMapType(nil, field) goTyp = m.GoType } p.P(`func (this *`, ccTypeName, `) Get`, fieldname, `() `, goTyp, `{`) p.In() p.P(` return this.`, fieldname) p.Out() p.P(`}`) p.P(``) } p.P(``) p.P(`func New`, ccTypeName, `FromFace(that `, ccTypeName, `Face) *`, ccTypeName, ` {`) p.In() p.P(`this := &`, ccTypeName, `{}`) for _, field := range message.Field { fieldname := p.GetFieldName(message, field) p.P(`this.`, fieldname, ` = that.Get`, fieldname, `()`) } p.P(`return this`) p.Out() p.P(`}`) p.P(``) } } func init() { generator.RegisterPlugin(NewPlugin()) } golang-gogoprotobuf-0.5/plugin/face/facetest.go000066400000000000000000000054101317075173200216660ustar00rootroot00000000000000// 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. package face import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/plugin/testgen" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type test struct { *generator.Generator } func NewTest(g *generator.Generator) testgen.TestPlugin { return &test{g} } func (p *test) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") testingPkg := imports.NewImport("testing") for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if !gogoproto.IsFace(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { used = true p.P(`func Test`, ccTypeName, `Face(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(`, timePkg.Use(), `.Now().UnixNano()))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`) p.P(`msg := p.TestProto()`) p.P(`if !p.Equal(msg) {`) p.In() p.P(`t.Fatalf("%#v !Face Equal %#v", msg, p)`) p.Out() p.P(`}`) p.Out() p.P(`}`) } } return used } func init() { testgen.RegisterTestPlugin(NewTest) } golang-gogoprotobuf-0.5/plugin/gostring/000077500000000000000000000000001317075173200204775ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/gostring/gostring.go000066400000000000000000000304241317075173200226650ustar00rootroot00000000000000// 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. /* The gostring plugin generates a GoString method for each message. The GoString method is called whenever you use a fmt.Printf as such: fmt.Printf("%#v", mymessage) or whenever you actually call GoString() The output produced by the GoString method can be copied from the output into code and used to set a variable. It is totally valid Go Code and is populated exactly as the struct that was printed out. It is enabled by the following extensions: - gostring - gostring_all The gostring plugin also generates a test given it is enabled using one of the following extensions: - testgen - testgen_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: option (gogoproto.gostring_all) = true; message A { optional string Description = 1 [(gogoproto.nullable) = false]; optional int64 Number = 2 [(gogoproto.nullable) = false]; optional bytes Id = 3 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uuid", (gogoproto.nullable) = false]; } given to the gostring plugin, will generate the following code: func (this *A) GoString() string { if this == nil { return "nil" } s := strings1.Join([]string{`&test.A{` + `Description:` + fmt1.Sprintf("%#v", this.Description), `Number:` + fmt1.Sprintf("%#v", this.Number), `Id:` + fmt1.Sprintf("%#v", this.Id), `XXX_unrecognized:` + fmt1.Sprintf("%#v", this.XXX_unrecognized) + `}`}, ", ") return s } and the following test code: func TestAGoString(t *testing6.T) { popr := math_rand6.New(math_rand6.NewSource(time6.Now().UnixNano())) p := NewPopulatedA(popr, false) s1 := p.GoString() s2 := fmt2.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { panic(err) } } Typically fmt.Printf("%#v") will stop to print when it reaches a pointer and not print their values, while the generated GoString method will always print all values, recursively. */ package gostring import ( "fmt" "os" "strconv" "strings" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type gostring struct { *generator.Generator generator.PluginImports atleastOne bool localName string overwrite bool } func NewGoString() *gostring { return &gostring{} } func (p *gostring) Name() string { return "gostring" } func (p *gostring) Overwrite() { p.overwrite = true } func (p *gostring) Init(g *generator.Generator) { p.Generator = g } func (p *gostring) Generate(file *generator.FileDescriptor) { proto3 := gogoproto.IsProto3(file.FileDescriptorProto) p.PluginImports = generator.NewPluginImports(p.Generator) p.atleastOne = false p.localName = generator.FileName(file) fmtPkg := p.NewImport("fmt") stringsPkg := p.NewImport("strings") protoPkg := p.NewImport("github.com/gogo/protobuf/proto") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = p.NewImport("github.com/golang/protobuf/proto") } sortPkg := p.NewImport("sort") strconvPkg := p.NewImport("strconv") reflectPkg := p.NewImport("reflect") sortKeysPkg := p.NewImport("github.com/gogo/protobuf/sortkeys") extensionToGoStringUsed := false for _, message := range file.Messages() { if !p.overwrite && !gogoproto.HasGoString(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } p.atleastOne = true packageName := file.PackageName() ccTypeName := generator.CamelCaseSlice(message.TypeName()) p.P(`func (this *`, ccTypeName, `) GoString() string {`) p.In() p.P(`if this == nil {`) p.In() p.P(`return "nil"`) p.Out() p.P(`}`) p.P(`s := make([]string, 0, `, strconv.Itoa(len(message.Field)+4), `)`) p.P(`s = append(s, "&`, packageName, ".", ccTypeName, `{")`) oneofs := make(map[string]struct{}) for _, field := range message.Field { nullable := gogoproto.IsNullable(field) repeated := field.IsRepeated() fieldname := p.GetFieldName(message, field) oneof := field.OneofIndex != nil if oneof { if _, ok := oneofs[fieldname]; ok { continue } else { oneofs[fieldname] = struct{}{} } p.P(`if this.`, fieldname, ` != nil {`) p.In() p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`) p.Out() p.P(`}`) } else if p.IsMap(field) { m := p.GoMapType(nil, field) mapgoTyp, keyField, keyAliasField := m.GoType, m.KeyField, m.KeyAliasField keysName := `keysFor` + fieldname keygoTyp, _ := p.GoType(nil, keyField) keygoTyp = strings.Replace(keygoTyp, "*", "", 1) keygoAliasTyp, _ := p.GoType(nil, keyAliasField) keygoAliasTyp = strings.Replace(keygoAliasTyp, "*", "", 1) keyCapTyp := generator.CamelCase(keygoTyp) p.P(keysName, ` := make([]`, keygoTyp, `, 0, len(this.`, fieldname, `))`) p.P(`for k, _ := range this.`, fieldname, ` {`) p.In() if keygoAliasTyp == keygoTyp { p.P(keysName, ` = append(`, keysName, `, k)`) } else { p.P(keysName, ` = append(`, keysName, `, `, keygoTyp, `(k))`) } p.Out() p.P(`}`) p.P(sortKeysPkg.Use(), `.`, keyCapTyp, `s(`, keysName, `)`) mapName := `mapStringFor` + fieldname p.P(mapName, ` := "`, mapgoTyp, `{"`) p.P(`for _, k := range `, keysName, ` {`) p.In() if keygoAliasTyp == keygoTyp { p.P(mapName, ` += fmt.Sprintf("%#v: %#v,", k, this.`, fieldname, `[k])`) } else { p.P(mapName, ` += fmt.Sprintf("%#v: %#v,", k, this.`, fieldname, `[`, keygoAliasTyp, `(k)])`) } p.Out() p.P(`}`) p.P(mapName, ` += "}"`) p.P(`if this.`, fieldname, ` != nil {`) p.In() p.P(`s = append(s, "`, fieldname, `: " + `, mapName, `+ ",\n")`) p.Out() p.P(`}`) } else if (field.IsMessage() && !gogoproto.IsCustomType(field) && !gogoproto.IsStdTime(field) && !gogoproto.IsStdDuration(field)) || p.IsGroup(field) { if nullable || repeated { p.P(`if this.`, fieldname, ` != nil {`) p.In() } if nullable { p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`) } else if repeated { if nullable { p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`) } else { goTyp, _ := p.GoType(message, field) goTyp = strings.Replace(goTyp, "[]", "", 1) p.P("vs := make([]*", goTyp, ", len(this.", fieldname, "))") p.P("for i := range vs {") p.In() p.P("vs[i] = &this.", fieldname, "[i]") p.Out() p.P("}") p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", vs) + ",\n")`) } } else { p.P(`s = append(s, "`, fieldname, `: " + `, stringsPkg.Use(), `.Replace(this.`, fieldname, `.GoString()`, ",`&`,``,1)", ` + ",\n")`) } if nullable || repeated { p.Out() p.P(`}`) } } else { if !proto3 && (nullable || repeated) { p.P(`if this.`, fieldname, ` != nil {`) p.In() } if field.IsEnum() { if nullable && !repeated && !proto3 { goTyp, _ := p.GoType(message, field) p.P(`s = append(s, "`, fieldname, `: " + valueToGoString`, p.localName, `(this.`, fieldname, `,"`, generator.GoTypeToName(goTyp), `"`, `) + ",\n")`) } else { p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`) } } else { if nullable && !repeated && !proto3 { goTyp, _ := p.GoType(message, field) p.P(`s = append(s, "`, fieldname, `: " + valueToGoString`, p.localName, `(this.`, fieldname, `,"`, generator.GoTypeToName(goTyp), `"`, `) + ",\n")`) } else { p.P(`s = append(s, "`, fieldname, `: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `) + ",\n")`) } } if !proto3 && (nullable || repeated) { p.Out() p.P(`}`) } } } if message.DescriptorProto.HasExtension() { if gogoproto.HasExtensionsMap(file.FileDescriptorProto, message.DescriptorProto) { p.P(`s = append(s, "XXX_InternalExtensions: " + extensionToGoString`, p.localName, `(this) + ",\n")`) extensionToGoStringUsed = true } else { p.P(`if this.XXX_extensions != nil {`) p.In() p.P(`s = append(s, "XXX_extensions: " + `, fmtPkg.Use(), `.Sprintf("%#v", this.XXX_extensions) + ",\n")`) p.Out() p.P(`}`) } } if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) { p.P(`if this.XXX_unrecognized != nil {`) p.In() p.P(`s = append(s, "XXX_unrecognized:" + `, fmtPkg.Use(), `.Sprintf("%#v", this.XXX_unrecognized) + ",\n")`) p.Out() p.P(`}`) } p.P(`s = append(s, "}")`) p.P(`return `, stringsPkg.Use(), `.Join(s, "")`) p.Out() p.P(`}`) //Generate GoString methods for oneof fields for _, field := range message.Field { oneof := field.OneofIndex != nil if !oneof { continue } ccTypeName := p.OneOfTypeName(message, field) p.P(`func (this *`, ccTypeName, `) GoString() string {`) p.In() p.P(`if this == nil {`) p.In() p.P(`return "nil"`) p.Out() p.P(`}`) fieldname := p.GetOneOfFieldName(message, field) outStr := strings.Join([]string{ "s := ", stringsPkg.Use(), ".Join([]string{`&", packageName, ".", ccTypeName, "{` + \n", "`", fieldname, ":` + ", fmtPkg.Use(), `.Sprintf("%#v", this.`, fieldname, `)`, " + `}`", `}`, `,", "`, `)`}, "") p.P(outStr) p.P(`return s`) p.Out() p.P(`}`) } } if !p.atleastOne { return } p.P(`func valueToGoString`, p.localName, `(v interface{}, typ string) string {`) p.In() p.P(`rv := `, reflectPkg.Use(), `.ValueOf(v)`) p.P(`if rv.IsNil() {`) p.In() p.P(`return "nil"`) p.Out() p.P(`}`) p.P(`pv := `, reflectPkg.Use(), `.Indirect(rv).Interface()`) p.P(`return `, fmtPkg.Use(), `.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv)`) p.Out() p.P(`}`) if extensionToGoStringUsed { if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { fmt.Fprintf(os.Stderr, "The GoString plugin for messages with extensions requires importing gogoprotobuf. Please see file %s", file.GetName()) os.Exit(1) } p.P(`func extensionToGoString`, p.localName, `(m `, protoPkg.Use(), `.Message) string {`) p.In() p.P(`e := `, protoPkg.Use(), `.GetUnsafeExtensionsMap(m)`) p.P(`if e == nil { return "nil" }`) p.P(`s := "proto.NewUnsafeXXX_InternalExtensions(map[int32]proto.Extension{"`) p.P(`keys := make([]int, 0, len(e))`) p.P(`for k := range e {`) p.In() p.P(`keys = append(keys, int(k))`) p.Out() p.P(`}`) p.P(sortPkg.Use(), `.Ints(keys)`) p.P(`ss := []string{}`) p.P(`for _, k := range keys {`) p.In() p.P(`ss = append(ss, `, strconvPkg.Use(), `.Itoa(k) + ": " + e[int32(k)].GoString())`) p.Out() p.P(`}`) p.P(`s+=`, stringsPkg.Use(), `.Join(ss, ",") + "})"`) p.P(`return s`) p.Out() p.P(`}`) } } func init() { generator.RegisterPlugin(NewGoString()) } golang-gogoprotobuf-0.5/plugin/gostring/gostringtest.go000066400000000000000000000060421317075173200235640ustar00rootroot00000000000000// 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. package gostring import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/plugin/testgen" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type test struct { *generator.Generator } func NewTest(g *generator.Generator) testgen.TestPlugin { return &test{g} } func (p *test) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") testingPkg := imports.NewImport("testing") fmtPkg := imports.NewImport("fmt") parserPkg := imports.NewImport("go/parser") for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if !gogoproto.HasGoString(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { used = true p.P(`func Test`, ccTypeName, `GoString(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(`, timePkg.Use(), `.Now().UnixNano()))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, false)`) p.P(`s1 := p.GoString()`) p.P(`s2 := `, fmtPkg.Use(), `.Sprintf("%#v", p)`) p.P(`if s1 != s2 {`) p.In() p.P(`t.Fatalf("GoString want %v got %v", s1, s2)`) p.Out() p.P(`}`) p.P(`_, err := `, parserPkg.Use(), `.ParseExpr(s1)`) p.P(`if err != nil {`) p.In() p.P(`t.Fatal(err)`) p.Out() p.P(`}`) p.Out() p.P(`}`) } } return used } func init() { testgen.RegisterTestPlugin(NewTest) } golang-gogoprotobuf-0.5/plugin/marshalto/000077500000000000000000000000001317075173200206355ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/marshalto/marshalto.go000066400000000000000000001074201317075173200231620ustar00rootroot00000000000000// 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. /* The marshalto plugin generates a Marshal and MarshalTo method for each message. The `Marshal() ([]byte, error)` method results in the fact that the message implements the Marshaler interface. This allows proto.Marshal to be faster by calling the generated Marshal method rather than using reflect to Marshal the struct. If is enabled by the following extensions: - marshaler - marshaler_all Or the following extensions: - unsafe_marshaler - unsafe_marshaler_all That is if you want to use the unsafe package in your generated code. The speed up using the unsafe package is not very significant. The generation of marshalling tests are enabled using one of the following extensions: - testgen - testgen_all And benchmarks given it is enabled using one of the following extensions: - benchgen - benchgen_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: option (gogoproto.marshaler_all) = true; message B { option (gogoproto.description) = true; optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } given to the marshalto plugin, will generate the following code: func (m *B) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *B) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintExample(dAtA, i, uint64(m.A.Size())) n2, err := m.A.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 if len(m.G) > 0 { for _, msg := range m.G { dAtA[i] = 0x12 i++ i = encodeVarintExample(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } As shown above Marshal calculates the size of the not yet marshalled message and allocates the appropriate buffer. This is followed by calling the MarshalTo method which requires a preallocated buffer. The MarshalTo method allows a user to rather preallocated a reusable buffer. The Size method is generated using the size plugin and the gogoproto.sizer, gogoproto.sizer_all extensions. The user can also using the generated Size method to check that his reusable buffer is still big enough. The generated tests and benchmarks will keep you safe and show that this is really a significant speed improvement. An additional message-level option `stable_marshaler` (and the file-level option `stable_marshaler_all`) exists which causes the generated marshalling code to behave deterministically. Today, this only changes the serialization of maps; they are serialized in sort order. */ package marshalto import ( "fmt" "sort" "strconv" "strings" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" "github.com/gogo/protobuf/protoc-gen-gogo/generator" "github.com/gogo/protobuf/vanity" ) type NumGen interface { Next() string Current() string } type numGen struct { index int } func NewNumGen() NumGen { return &numGen{0} } func (this *numGen) Next() string { this.index++ return this.Current() } func (this *numGen) Current() string { return strconv.Itoa(this.index) } type marshalto struct { *generator.Generator generator.PluginImports atleastOne bool errorsPkg generator.Single protoPkg generator.Single sortKeysPkg generator.Single mathPkg generator.Single typesPkg generator.Single binaryPkg generator.Single localName string } func NewMarshal() *marshalto { return &marshalto{} } func (p *marshalto) Name() string { return "marshalto" } func (p *marshalto) Init(g *generator.Generator) { p.Generator = g } func (p *marshalto) callFixed64(varName ...string) { p.P(p.binaryPkg.Use(), `.LittleEndian.PutUint64(dAtA[i:], uint64(`, strings.Join(varName, ""), `))`) p.P(`i += 8`) } func (p *marshalto) callFixed32(varName ...string) { p.P(p.binaryPkg.Use(), `.LittleEndian.PutUint32(dAtA[i:], uint32(`, strings.Join(varName, ""), `))`) p.P(`i += 4`) } func (p *marshalto) callVarint(varName ...string) { p.P(`i = encodeVarint`, p.localName, `(dAtA, i, uint64(`, strings.Join(varName, ""), `))`) } func (p *marshalto) encodeVarint(varName string) { p.P(`for `, varName, ` >= 1<<7 {`) p.In() p.P(`dAtA[i] = uint8(uint64(`, varName, `)&0x7f|0x80)`) p.P(varName, ` >>= 7`) p.P(`i++`) p.Out() p.P(`}`) p.P(`dAtA[i] = uint8(`, varName, `)`) p.P(`i++`) } func (p *marshalto) encodeKey(fieldNumber int32, wireType int) { x := uint32(fieldNumber)<<3 | uint32(wireType) i := 0 keybuf := make([]byte, 0) for i = 0; x > 127; i++ { keybuf = append(keybuf, 0x80|uint8(x&0x7F)) x >>= 7 } keybuf = append(keybuf, uint8(x)) for _, b := range keybuf { p.P(`dAtA[i] = `, fmt.Sprintf("%#v", b)) p.P(`i++`) } } func keySize(fieldNumber int32, wireType int) int { x := uint32(fieldNumber)<<3 | uint32(wireType) size := 0 for size = 0; x > 127; size++ { x >>= 7 } size++ return size } func wireToType(wire string) int { switch wire { case "fixed64": return proto.WireFixed64 case "fixed32": return proto.WireFixed32 case "varint": return proto.WireVarint case "bytes": return proto.WireBytes case "group": return proto.WireBytes case "zigzag32": return proto.WireVarint case "zigzag64": return proto.WireVarint } panic("unreachable") } func (p *marshalto) mapField(numGen NumGen, field *descriptor.FieldDescriptorProto, kvField *descriptor.FieldDescriptorProto, varName string, protoSizer bool) { switch kvField.GetType() { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: p.callFixed64(p.mathPkg.Use(), `.Float64bits(float64(`, varName, `))`) case descriptor.FieldDescriptorProto_TYPE_FLOAT: p.callFixed32(p.mathPkg.Use(), `.Float32bits(float32(`, varName, `))`) case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_INT32, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM: p.callVarint(varName) case descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64: p.callFixed64(varName) case descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32: p.callFixed32(varName) case descriptor.FieldDescriptorProto_TYPE_BOOL: p.P(`if `, varName, ` {`) p.In() p.P(`dAtA[i] = 1`) p.Out() p.P(`} else {`) p.In() p.P(`dAtA[i] = 0`) p.Out() p.P(`}`) p.P(`i++`) case descriptor.FieldDescriptorProto_TYPE_STRING, descriptor.FieldDescriptorProto_TYPE_BYTES: if gogoproto.IsCustomType(field) && kvField.IsBytes() { p.callVarint(varName, `.Size()`) p.P(`n`, numGen.Next(), `, err := `, varName, `.MarshalTo(dAtA[i:])`) p.P(`if err != nil {`) p.In() p.P(`return 0, err`) p.Out() p.P(`}`) p.P(`i+=n`, numGen.Current()) } else { p.callVarint(`len(`, varName, `)`) p.P(`i+=copy(dAtA[i:], `, varName, `)`) } case descriptor.FieldDescriptorProto_TYPE_SINT32: p.callVarint(`(uint32(`, varName, `) << 1) ^ uint32((`, varName, ` >> 31))`) case descriptor.FieldDescriptorProto_TYPE_SINT64: p.callVarint(`(uint64(`, varName, `) << 1) ^ uint64((`, varName, ` >> 63))`) case descriptor.FieldDescriptorProto_TYPE_MESSAGE: if gogoproto.IsStdTime(field) { p.callVarint(p.typesPkg.Use(), `.SizeOfStdTime(*`, varName, `)`) p.P(`n`, numGen.Next(), `, err := `, p.typesPkg.Use(), `.StdTimeMarshalTo(*`, varName, `, dAtA[i:])`) } else if gogoproto.IsStdDuration(field) { p.callVarint(p.typesPkg.Use(), `.SizeOfStdDuration(*`, varName, `)`) p.P(`n`, numGen.Next(), `, err := `, p.typesPkg.Use(), `.StdDurationMarshalTo(*`, varName, `, dAtA[i:])`) } else if protoSizer { p.callVarint(varName, `.ProtoSize()`) p.P(`n`, numGen.Next(), `, err := `, varName, `.MarshalTo(dAtA[i:])`) } else { p.callVarint(varName, `.Size()`) p.P(`n`, numGen.Next(), `, err := `, varName, `.MarshalTo(dAtA[i:])`) } p.P(`if err != nil {`) p.In() p.P(`return 0, err`) p.Out() p.P(`}`) p.P(`i+=n`, numGen.Current()) } } type orderFields []*descriptor.FieldDescriptorProto func (this orderFields) Len() int { return len(this) } func (this orderFields) Less(i, j int) bool { return this[i].GetNumber() < this[j].GetNumber() } func (this orderFields) Swap(i, j int) { this[i], this[j] = this[j], this[i] } func (p *marshalto) generateField(proto3 bool, numGen NumGen, file *generator.FileDescriptor, message *generator.Descriptor, field *descriptor.FieldDescriptorProto) { fieldname := p.GetOneOfFieldName(message, field) nullable := gogoproto.IsNullable(field) repeated := field.IsRepeated() required := field.IsRequired() protoSizer := gogoproto.IsProtoSizer(file.FileDescriptorProto, message.DescriptorProto) doNilCheck := gogoproto.NeedsNilCheck(proto3, field) if required && nullable { p.P(`if m.`, fieldname, `== nil {`) p.In() if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { p.P(`return 0, new(`, p.protoPkg.Use(), `.RequiredNotSetError)`) } else { p.P(`return 0, `, p.protoPkg.Use(), `.NewRequiredNotSetError("`, field.GetName(), `")`) } p.Out() p.P(`} else {`) } else if repeated { p.P(`if len(m.`, fieldname, `) > 0 {`) p.In() } else if doNilCheck { p.P(`if m.`, fieldname, ` != nil {`) p.In() } packed := field.IsPacked() || (proto3 && field.IsPacked3()) wireType := field.WireType() fieldNumber := field.GetNumber() if packed { wireType = proto.WireBytes } switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: if packed { p.encodeKey(fieldNumber, wireType) p.callVarint(`len(m.`, fieldname, `) * 8`) p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.P(`f`, numGen.Next(), ` := `, p.mathPkg.Use(), `.Float64bits(float64(num))`) p.callFixed64("f" + numGen.Current()) p.Out() p.P(`}`) } else if repeated { p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.P(`f`, numGen.Next(), ` := `, p.mathPkg.Use(), `.Float64bits(float64(num))`) p.callFixed64("f" + numGen.Current()) p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.encodeKey(fieldNumber, wireType) p.callFixed64(p.mathPkg.Use(), `.Float64bits(float64(m.`+fieldname, `))`) p.Out() p.P(`}`) } else if !nullable { p.encodeKey(fieldNumber, wireType) p.callFixed64(p.mathPkg.Use(), `.Float64bits(float64(m.`+fieldname, `))`) } else { p.encodeKey(fieldNumber, wireType) p.callFixed64(p.mathPkg.Use(), `.Float64bits(float64(*m.`+fieldname, `))`) } case descriptor.FieldDescriptorProto_TYPE_FLOAT: if packed { p.encodeKey(fieldNumber, wireType) p.callVarint(`len(m.`, fieldname, `) * 4`) p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.P(`f`, numGen.Next(), ` := `, p.mathPkg.Use(), `.Float32bits(float32(num))`) p.callFixed32("f" + numGen.Current()) p.Out() p.P(`}`) } else if repeated { p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.P(`f`, numGen.Next(), ` := `, p.mathPkg.Use(), `.Float32bits(float32(num))`) p.callFixed32("f" + numGen.Current()) p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.encodeKey(fieldNumber, wireType) p.callFixed32(p.mathPkg.Use(), `.Float32bits(float32(m.`+fieldname, `))`) p.Out() p.P(`}`) } else if !nullable { p.encodeKey(fieldNumber, wireType) p.callFixed32(p.mathPkg.Use(), `.Float32bits(float32(m.`+fieldname, `))`) } else { p.encodeKey(fieldNumber, wireType) p.callFixed32(p.mathPkg.Use(), `.Float32bits(float32(*m.`+fieldname, `))`) } case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_INT32, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM: if packed { jvar := "j" + numGen.Next() p.P(`dAtA`, numGen.Next(), ` := make([]byte, len(m.`, fieldname, `)*10)`) p.P(`var `, jvar, ` int`) if *field.Type == descriptor.FieldDescriptorProto_TYPE_INT64 || *field.Type == descriptor.FieldDescriptorProto_TYPE_INT32 { p.P(`for _, num1 := range m.`, fieldname, ` {`) p.In() p.P(`num := uint64(num1)`) } else { p.P(`for _, num := range m.`, fieldname, ` {`) p.In() } p.P(`for num >= 1<<7 {`) p.In() p.P(`dAtA`, numGen.Current(), `[`, jvar, `] = uint8(uint64(num)&0x7f|0x80)`) p.P(`num >>= 7`) p.P(jvar, `++`) p.Out() p.P(`}`) p.P(`dAtA`, numGen.Current(), `[`, jvar, `] = uint8(num)`) p.P(jvar, `++`) p.Out() p.P(`}`) p.encodeKey(fieldNumber, wireType) p.callVarint(jvar) p.P(`i += copy(dAtA[i:], dAtA`, numGen.Current(), `[:`, jvar, `])`) } else if repeated { p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.callVarint("num") p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.encodeKey(fieldNumber, wireType) p.callVarint(`m.`, fieldname) p.Out() p.P(`}`) } else if !nullable { p.encodeKey(fieldNumber, wireType) p.callVarint(`m.`, fieldname) } else { p.encodeKey(fieldNumber, wireType) p.callVarint(`*m.`, fieldname) } case descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64: if packed { p.encodeKey(fieldNumber, wireType) p.callVarint(`len(m.`, fieldname, `) * 8`) p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.callFixed64("num") p.Out() p.P(`}`) } else if repeated { p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.callFixed64("num") p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.encodeKey(fieldNumber, wireType) p.callFixed64("m." + fieldname) p.Out() p.P(`}`) } else if !nullable { p.encodeKey(fieldNumber, wireType) p.callFixed64("m." + fieldname) } else { p.encodeKey(fieldNumber, wireType) p.callFixed64("*m." + fieldname) } case descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32: if packed { p.encodeKey(fieldNumber, wireType) p.callVarint(`len(m.`, fieldname, `) * 4`) p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.callFixed32("num") p.Out() p.P(`}`) } else if repeated { p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.callFixed32("num") p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.encodeKey(fieldNumber, wireType) p.callFixed32("m." + fieldname) p.Out() p.P(`}`) } else if !nullable { p.encodeKey(fieldNumber, wireType) p.callFixed32("m." + fieldname) } else { p.encodeKey(fieldNumber, wireType) p.callFixed32("*m." + fieldname) } case descriptor.FieldDescriptorProto_TYPE_BOOL: if packed { p.encodeKey(fieldNumber, wireType) p.callVarint(`len(m.`, fieldname, `)`) p.P(`for _, b := range m.`, fieldname, ` {`) p.In() p.P(`if b {`) p.In() p.P(`dAtA[i] = 1`) p.Out() p.P(`} else {`) p.In() p.P(`dAtA[i] = 0`) p.Out() p.P(`}`) p.P(`i++`) p.Out() p.P(`}`) } else if repeated { p.P(`for _, b := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.P(`if b {`) p.In() p.P(`dAtA[i] = 1`) p.Out() p.P(`} else {`) p.In() p.P(`dAtA[i] = 0`) p.Out() p.P(`}`) p.P(`i++`) p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.P(`if m.`, fieldname, ` {`) p.In() p.P(`dAtA[i] = 1`) p.Out() p.P(`} else {`) p.In() p.P(`dAtA[i] = 0`) p.Out() p.P(`}`) p.P(`i++`) p.Out() p.P(`}`) } else if !nullable { p.encodeKey(fieldNumber, wireType) p.P(`if m.`, fieldname, ` {`) p.In() p.P(`dAtA[i] = 1`) p.Out() p.P(`} else {`) p.In() p.P(`dAtA[i] = 0`) p.Out() p.P(`}`) p.P(`i++`) } else { p.encodeKey(fieldNumber, wireType) p.P(`if *m.`, fieldname, ` {`) p.In() p.P(`dAtA[i] = 1`) p.Out() p.P(`} else {`) p.In() p.P(`dAtA[i] = 0`) p.Out() p.P(`}`) p.P(`i++`) } case descriptor.FieldDescriptorProto_TYPE_STRING: if repeated { p.P(`for _, s := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.P(`l = len(s)`) p.encodeVarint("l") p.P(`i+=copy(dAtA[i:], s)`) p.Out() p.P(`}`) } else if proto3 { p.P(`if len(m.`, fieldname, `) > 0 {`) p.In() p.encodeKey(fieldNumber, wireType) p.callVarint(`len(m.`, fieldname, `)`) p.P(`i+=copy(dAtA[i:], m.`, fieldname, `)`) p.Out() p.P(`}`) } else if !nullable { p.encodeKey(fieldNumber, wireType) p.callVarint(`len(m.`, fieldname, `)`) p.P(`i+=copy(dAtA[i:], m.`, fieldname, `)`) } else { p.encodeKey(fieldNumber, wireType) p.callVarint(`len(*m.`, fieldname, `)`) p.P(`i+=copy(dAtA[i:], *m.`, fieldname, `)`) } case descriptor.FieldDescriptorProto_TYPE_GROUP: panic(fmt.Errorf("marshaler does not support group %v", fieldname)) case descriptor.FieldDescriptorProto_TYPE_MESSAGE: if p.IsMap(field) { m := p.GoMapType(nil, field) keygoTyp, keywire := p.GoType(nil, m.KeyField) keygoAliasTyp, _ := p.GoType(nil, m.KeyAliasField) // keys may not be pointers keygoTyp = strings.Replace(keygoTyp, "*", "", 1) keygoAliasTyp = strings.Replace(keygoAliasTyp, "*", "", 1) keyCapTyp := generator.CamelCase(keygoTyp) valuegoTyp, valuewire := p.GoType(nil, m.ValueField) valuegoAliasTyp, _ := p.GoType(nil, m.ValueAliasField) nullable, valuegoTyp, valuegoAliasTyp = generator.GoMapValueTypes(field, m.ValueField, valuegoTyp, valuegoAliasTyp) keyKeySize := keySize(1, wireToType(keywire)) valueKeySize := keySize(2, wireToType(valuewire)) if gogoproto.IsStableMarshaler(file.FileDescriptorProto, message.DescriptorProto) { keysName := `keysFor` + fieldname p.P(keysName, ` := make([]`, keygoTyp, `, 0, len(m.`, fieldname, `))`) p.P(`for k, _ := range m.`, fieldname, ` {`) p.In() p.P(keysName, ` = append(`, keysName, `, `, keygoTyp, `(k))`) p.Out() p.P(`}`) p.P(p.sortKeysPkg.Use(), `.`, keyCapTyp, `s(`, keysName, `)`) p.P(`for _, k := range `, keysName, ` {`) } else { p.P(`for k, _ := range m.`, fieldname, ` {`) } p.In() p.encodeKey(fieldNumber, wireType) sum := []string{strconv.Itoa(keyKeySize)} switch m.KeyField.GetType() { case descriptor.FieldDescriptorProto_TYPE_DOUBLE, descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64: sum = append(sum, `8`) case descriptor.FieldDescriptorProto_TYPE_FLOAT, descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32: sum = append(sum, `4`) case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM, descriptor.FieldDescriptorProto_TYPE_INT32: sum = append(sum, `sov`+p.localName+`(uint64(k))`) case descriptor.FieldDescriptorProto_TYPE_BOOL: sum = append(sum, `1`) case descriptor.FieldDescriptorProto_TYPE_STRING, descriptor.FieldDescriptorProto_TYPE_BYTES: sum = append(sum, `len(k)+sov`+p.localName+`(uint64(len(k)))`) case descriptor.FieldDescriptorProto_TYPE_SINT32, descriptor.FieldDescriptorProto_TYPE_SINT64: sum = append(sum, `soz`+p.localName+`(uint64(k))`) } if gogoproto.IsStableMarshaler(file.FileDescriptorProto, message.DescriptorProto) { p.P(`v := m.`, fieldname, `[`, keygoAliasTyp, `(k)]`) } else { p.P(`v := m.`, fieldname, `[k]`) } accessor := `v` switch m.ValueField.GetType() { case descriptor.FieldDescriptorProto_TYPE_DOUBLE, descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, strconv.Itoa(8)) case descriptor.FieldDescriptorProto_TYPE_FLOAT, descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, strconv.Itoa(4)) case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM, descriptor.FieldDescriptorProto_TYPE_INT32: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, `sov`+p.localName+`(uint64(v))`) case descriptor.FieldDescriptorProto_TYPE_BOOL: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, `1`) case descriptor.FieldDescriptorProto_TYPE_STRING: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, `len(v)+sov`+p.localName+`(uint64(len(v)))`) case descriptor.FieldDescriptorProto_TYPE_BYTES: if gogoproto.IsCustomType(field) { p.P(`cSize := 0`) if gogoproto.IsNullable(field) { p.P(`if `, accessor, ` != nil {`) p.In() } p.P(`cSize = `, accessor, `.Size()`) p.P(`cSize += `, strconv.Itoa(valueKeySize), ` + sov`+p.localName+`(uint64(cSize))`) if gogoproto.IsNullable(field) { p.Out() p.P(`}`) } sum = append(sum, `cSize`) } else { p.P(`byteSize := 0`) if proto3 { p.P(`if len(v) > 0 {`) } else { p.P(`if v != nil {`) } p.In() p.P(`byteSize = `, strconv.Itoa(valueKeySize), ` + len(v)+sov`+p.localName+`(uint64(len(v)))`) p.Out() p.P(`}`) sum = append(sum, `byteSize`) } case descriptor.FieldDescriptorProto_TYPE_SINT32, descriptor.FieldDescriptorProto_TYPE_SINT64: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, `soz`+p.localName+`(uint64(v))`) case descriptor.FieldDescriptorProto_TYPE_MESSAGE: if valuegoTyp != valuegoAliasTyp && !gogoproto.IsStdTime(field) && !gogoproto.IsStdDuration(field) { if nullable { // cast back to the type that has the generated methods on it accessor = `((` + valuegoTyp + `)(` + accessor + `))` } else { accessor = `((*` + valuegoTyp + `)(&` + accessor + `))` } } else if !nullable { accessor = `(&v)` } p.P(`msgSize := 0`) p.P(`if `, accessor, ` != nil {`) p.In() if gogoproto.IsStdTime(field) { p.P(`msgSize = `, p.typesPkg.Use(), `.SizeOfStdTime(*`, accessor, `)`) } else if gogoproto.IsStdDuration(field) { p.P(`msgSize = `, p.typesPkg.Use(), `.SizeOfStdDuration(*`, accessor, `)`) } else if protoSizer { p.P(`msgSize = `, accessor, `.ProtoSize()`) } else { p.P(`msgSize = `, accessor, `.Size()`) } p.P(`msgSize += `, strconv.Itoa(valueKeySize), ` + sov`+p.localName+`(uint64(msgSize))`) p.Out() p.P(`}`) sum = append(sum, `msgSize`) } p.P(`mapSize := `, strings.Join(sum, " + ")) p.callVarint("mapSize") p.encodeKey(1, wireToType(keywire)) p.mapField(numGen, field, m.KeyField, "k", protoSizer) nullableMsg := nullable && (m.ValueField.GetType() == descriptor.FieldDescriptorProto_TYPE_MESSAGE || gogoproto.IsCustomType(field) && m.ValueField.IsBytes()) plainBytes := m.ValueField.IsBytes() && !gogoproto.IsCustomType(field) if nullableMsg { p.P(`if `, accessor, ` != nil { `) p.In() } else if plainBytes { if proto3 { p.P(`if len(`, accessor, `) > 0 {`) } else { p.P(`if `, accessor, ` != nil {`) } p.In() } p.encodeKey(2, wireToType(valuewire)) p.mapField(numGen, field, m.ValueField, accessor, protoSizer) if nullableMsg || plainBytes { p.Out() p.P(`}`) } p.Out() p.P(`}`) } else if repeated { p.P(`for _, msg := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) varName := "msg" if gogoproto.IsStdTime(field) { if gogoproto.IsNullable(field) { varName = "*" + varName } p.callVarint(p.typesPkg.Use(), `.SizeOfStdTime(`, varName, `)`) p.P(`n, err := `, p.typesPkg.Use(), `.StdTimeMarshalTo(`, varName, `, dAtA[i:])`) } else if gogoproto.IsStdDuration(field) { if gogoproto.IsNullable(field) { varName = "*" + varName } p.callVarint(p.typesPkg.Use(), `.SizeOfStdDuration(`, varName, `)`) p.P(`n, err := `, p.typesPkg.Use(), `.StdDurationMarshalTo(`, varName, `, dAtA[i:])`) } else if protoSizer { p.callVarint(varName, ".ProtoSize()") p.P(`n, err := `, varName, `.MarshalTo(dAtA[i:])`) } else { p.callVarint(varName, ".Size()") p.P(`n, err := `, varName, `.MarshalTo(dAtA[i:])`) } p.P(`if err != nil {`) p.In() p.P(`return 0, err`) p.Out() p.P(`}`) p.P(`i+=n`) p.Out() p.P(`}`) } else { p.encodeKey(fieldNumber, wireType) varName := `m.` + fieldname if gogoproto.IsStdTime(field) { if gogoproto.IsNullable(field) { varName = "*" + varName } p.callVarint(p.typesPkg.Use(), `.SizeOfStdTime(`, varName, `)`) p.P(`n`, numGen.Next(), `, err := `, p.typesPkg.Use(), `.StdTimeMarshalTo(`, varName, `, dAtA[i:])`) } else if gogoproto.IsStdDuration(field) { if gogoproto.IsNullable(field) { varName = "*" + varName } p.callVarint(p.typesPkg.Use(), `.SizeOfStdDuration(`, varName, `)`) p.P(`n`, numGen.Next(), `, err := `, p.typesPkg.Use(), `.StdDurationMarshalTo(`, varName, `, dAtA[i:])`) } else if protoSizer { p.callVarint(varName, `.ProtoSize()`) p.P(`n`, numGen.Next(), `, err := `, varName, `.MarshalTo(dAtA[i:])`) } else { p.callVarint(varName, `.Size()`) p.P(`n`, numGen.Next(), `, err := `, varName, `.MarshalTo(dAtA[i:])`) } p.P(`if err != nil {`) p.In() p.P(`return 0, err`) p.Out() p.P(`}`) p.P(`i+=n`, numGen.Current()) } case descriptor.FieldDescriptorProto_TYPE_BYTES: if !gogoproto.IsCustomType(field) { if repeated { p.P(`for _, b := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.callVarint("len(b)") p.P(`i+=copy(dAtA[i:], b)`) p.Out() p.P(`}`) } else if proto3 { p.P(`if len(m.`, fieldname, `) > 0 {`) p.In() p.encodeKey(fieldNumber, wireType) p.callVarint(`len(m.`, fieldname, `)`) p.P(`i+=copy(dAtA[i:], m.`, fieldname, `)`) p.Out() p.P(`}`) } else { p.encodeKey(fieldNumber, wireType) p.callVarint(`len(m.`, fieldname, `)`) p.P(`i+=copy(dAtA[i:], m.`, fieldname, `)`) } } else { if repeated { p.P(`for _, msg := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) if protoSizer { p.callVarint(`msg.ProtoSize()`) } else { p.callVarint(`msg.Size()`) } p.P(`n, err := msg.MarshalTo(dAtA[i:])`) p.P(`if err != nil {`) p.In() p.P(`return 0, err`) p.Out() p.P(`}`) p.P(`i+=n`) p.Out() p.P(`}`) } else { p.encodeKey(fieldNumber, wireType) if protoSizer { p.callVarint(`m.`, fieldname, `.ProtoSize()`) } else { p.callVarint(`m.`, fieldname, `.Size()`) } p.P(`n`, numGen.Next(), `, err := m.`, fieldname, `.MarshalTo(dAtA[i:])`) p.P(`if err != nil {`) p.In() p.P(`return 0, err`) p.Out() p.P(`}`) p.P(`i+=n`, numGen.Current()) } } case descriptor.FieldDescriptorProto_TYPE_SINT32: if packed { datavar := "dAtA" + numGen.Next() jvar := "j" + numGen.Next() p.P(datavar, ` := make([]byte, len(m.`, fieldname, ")*5)") p.P(`var `, jvar, ` int`) p.P(`for _, num := range m.`, fieldname, ` {`) p.In() xvar := "x" + numGen.Next() p.P(xvar, ` := (uint32(num) << 1) ^ uint32((num >> 31))`) p.P(`for `, xvar, ` >= 1<<7 {`) p.In() p.P(datavar, `[`, jvar, `] = uint8(uint64(`, xvar, `)&0x7f|0x80)`) p.P(jvar, `++`) p.P(xvar, ` >>= 7`) p.Out() p.P(`}`) p.P(datavar, `[`, jvar, `] = uint8(`, xvar, `)`) p.P(jvar, `++`) p.Out() p.P(`}`) p.encodeKey(fieldNumber, wireType) p.callVarint(jvar) p.P(`i+=copy(dAtA[i:], `, datavar, `[:`, jvar, `])`) } else if repeated { p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.P(`x`, numGen.Next(), ` := (uint32(num) << 1) ^ uint32((num >> 31))`) p.encodeVarint("x" + numGen.Current()) p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.encodeKey(fieldNumber, wireType) p.callVarint(`(uint32(m.`, fieldname, `) << 1) ^ uint32((m.`, fieldname, ` >> 31))`) p.Out() p.P(`}`) } else if !nullable { p.encodeKey(fieldNumber, wireType) p.callVarint(`(uint32(m.`, fieldname, `) << 1) ^ uint32((m.`, fieldname, ` >> 31))`) } else { p.encodeKey(fieldNumber, wireType) p.callVarint(`(uint32(*m.`, fieldname, `) << 1) ^ uint32((*m.`, fieldname, ` >> 31))`) } case descriptor.FieldDescriptorProto_TYPE_SINT64: if packed { jvar := "j" + numGen.Next() xvar := "x" + numGen.Next() datavar := "dAtA" + numGen.Next() p.P(`var `, jvar, ` int`) p.P(datavar, ` := make([]byte, len(m.`, fieldname, `)*10)`) p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.P(xvar, ` := (uint64(num) << 1) ^ uint64((num >> 63))`) p.P(`for `, xvar, ` >= 1<<7 {`) p.In() p.P(datavar, `[`, jvar, `] = uint8(uint64(`, xvar, `)&0x7f|0x80)`) p.P(jvar, `++`) p.P(xvar, ` >>= 7`) p.Out() p.P(`}`) p.P(datavar, `[`, jvar, `] = uint8(`, xvar, `)`) p.P(jvar, `++`) p.Out() p.P(`}`) p.encodeKey(fieldNumber, wireType) p.callVarint(jvar) p.P(`i+=copy(dAtA[i:], `, datavar, `[:`, jvar, `])`) } else if repeated { p.P(`for _, num := range m.`, fieldname, ` {`) p.In() p.encodeKey(fieldNumber, wireType) p.P(`x`, numGen.Next(), ` := (uint64(num) << 1) ^ uint64((num >> 63))`) p.encodeVarint("x" + numGen.Current()) p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.encodeKey(fieldNumber, wireType) p.callVarint(`(uint64(m.`, fieldname, `) << 1) ^ uint64((m.`, fieldname, ` >> 63))`) p.Out() p.P(`}`) } else if !nullable { p.encodeKey(fieldNumber, wireType) p.callVarint(`(uint64(m.`, fieldname, `) << 1) ^ uint64((m.`, fieldname, ` >> 63))`) } else { p.encodeKey(fieldNumber, wireType) p.callVarint(`(uint64(*m.`, fieldname, `) << 1) ^ uint64((*m.`, fieldname, ` >> 63))`) } default: panic("not implemented") } if (required && nullable) || repeated || doNilCheck { p.Out() p.P(`}`) } } func (p *marshalto) Generate(file *generator.FileDescriptor) { numGen := NewNumGen() p.PluginImports = generator.NewPluginImports(p.Generator) p.atleastOne = false p.localName = generator.FileName(file) p.mathPkg = p.NewImport("math") p.sortKeysPkg = p.NewImport("github.com/gogo/protobuf/sortkeys") p.protoPkg = p.NewImport("github.com/gogo/protobuf/proto") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { p.protoPkg = p.NewImport("github.com/golang/protobuf/proto") } p.errorsPkg = p.NewImport("errors") p.binaryPkg = p.NewImport("encoding/binary") p.typesPkg = p.NewImport("github.com/gogo/protobuf/types") for _, message := range file.Messages() { if message.DescriptorProto.GetOptions().GetMapEntry() { continue } ccTypeName := generator.CamelCaseSlice(message.TypeName()) if !gogoproto.IsMarshaler(file.FileDescriptorProto, message.DescriptorProto) && !gogoproto.IsUnsafeMarshaler(file.FileDescriptorProto, message.DescriptorProto) { continue } p.atleastOne = true p.P(`func (m *`, ccTypeName, `) Marshal() (dAtA []byte, err error) {`) p.In() if gogoproto.IsProtoSizer(file.FileDescriptorProto, message.DescriptorProto) { p.P(`size := m.ProtoSize()`) } else { p.P(`size := m.Size()`) } p.P(`dAtA = make([]byte, size)`) p.P(`n, err := m.MarshalTo(dAtA)`) p.P(`if err != nil {`) p.In() p.P(`return nil, err`) p.Out() p.P(`}`) p.P(`return dAtA[:n], nil`) p.Out() p.P(`}`) p.P(``) p.P(`func (m *`, ccTypeName, `) MarshalTo(dAtA []byte) (int, error) {`) p.In() p.P(`var i int`) p.P(`_ = i`) p.P(`var l int`) p.P(`_ = l`) fields := orderFields(message.GetField()) sort.Sort(fields) oneofs := make(map[string]struct{}) for _, field := range message.Field { oneof := field.OneofIndex != nil if !oneof { proto3 := gogoproto.IsProto3(file.FileDescriptorProto) p.generateField(proto3, numGen, file, message, field) } else { fieldname := p.GetFieldName(message, field) if _, ok := oneofs[fieldname]; !ok { oneofs[fieldname] = struct{}{} p.P(`if m.`, fieldname, ` != nil {`) p.In() p.P(`nn`, numGen.Next(), `, err := m.`, fieldname, `.MarshalTo(dAtA[i:])`) p.P(`if err != nil {`) p.In() p.P(`return 0, err`) p.Out() p.P(`}`) p.P(`i+=nn`, numGen.Current()) p.Out() p.P(`}`) } } } if message.DescriptorProto.HasExtension() { if gogoproto.HasExtensionsMap(file.FileDescriptorProto, message.DescriptorProto) { p.P(`n, err := `, p.protoPkg.Use(), `.EncodeInternalExtension(m, dAtA[i:])`) p.P(`if err != nil {`) p.In() p.P(`return 0, err`) p.Out() p.P(`}`) p.P(`i+=n`) } else { p.P(`if m.XXX_extensions != nil {`) p.In() p.P(`i+=copy(dAtA[i:], m.XXX_extensions)`) p.Out() p.P(`}`) } } if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) { p.P(`if m.XXX_unrecognized != nil {`) p.In() p.P(`i+=copy(dAtA[i:], m.XXX_unrecognized)`) p.Out() p.P(`}`) } p.P(`return i, nil`) p.Out() p.P(`}`) p.P() //Generate MarshalTo methods for oneof fields m := proto.Clone(message.DescriptorProto).(*descriptor.DescriptorProto) for _, field := range m.Field { oneof := field.OneofIndex != nil if !oneof { continue } ccTypeName := p.OneOfTypeName(message, field) p.P(`func (m *`, ccTypeName, `) MarshalTo(dAtA []byte) (int, error) {`) p.In() p.P(`i := 0`) vanity.TurnOffNullableForNativeTypes(field) p.generateField(false, numGen, file, message, field) p.P(`return i, nil`) p.Out() p.P(`}`) } } if p.atleastOne { p.P(`func encodeVarint`, p.localName, `(dAtA []byte, offset int, v uint64) int {`) p.In() p.P(`for v >= 1<<7 {`) p.In() p.P(`dAtA[offset] = uint8(v&0x7f|0x80)`) p.P(`v >>= 7`) p.P(`offset++`) p.Out() p.P(`}`) p.P(`dAtA[offset] = uint8(v)`) p.P(`return offset+1`) p.Out() p.P(`}`) } } func init() { generator.RegisterPlugin(NewMarshal()) } golang-gogoprotobuf-0.5/plugin/oneofcheck/000077500000000000000000000000001317075173200207475ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/oneofcheck/oneofcheck.go000066400000000000000000000062701317075173200234070ustar00rootroot00000000000000// 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. /* The oneofcheck plugin is used to check whether oneof is not used incorrectly. For instance: An error is caused if a oneof field: - is used in a face - is an embedded field */ package oneofcheck import ( "fmt" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" "os" ) type plugin struct { *generator.Generator } func NewPlugin() *plugin { return &plugin{} } func (p *plugin) Name() string { return "oneofcheck" } func (p *plugin) Init(g *generator.Generator) { p.Generator = g } func (p *plugin) Generate(file *generator.FileDescriptor) { for _, msg := range file.Messages() { face := gogoproto.IsFace(file.FileDescriptorProto, msg.DescriptorProto) for _, field := range msg.GetField() { if field.OneofIndex == nil { continue } if face { fmt.Fprintf(os.Stderr, "ERROR: field %v.%v cannot be in a face and oneof\n", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) os.Exit(1) } if gogoproto.IsEmbed(field) { fmt.Fprintf(os.Stderr, "ERROR: field %v.%v cannot be in an oneof and an embedded field\n", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) os.Exit(1) } if !gogoproto.IsNullable(field) { fmt.Fprintf(os.Stderr, "ERROR: field %v.%v cannot be in an oneof and a non-nullable field\n", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) os.Exit(1) } if gogoproto.IsUnion(file.FileDescriptorProto, msg.DescriptorProto) { fmt.Fprintf(os.Stderr, "ERROR: field %v.%v cannot be in an oneof and in an union (deprecated)\n", generator.CamelCase(*msg.Name), generator.CamelCase(*field.Name)) os.Exit(1) } } } } func (p *plugin) GenerateImports(*generator.FileDescriptor) {} func init() { generator.RegisterPlugin(NewPlugin()) } golang-gogoprotobuf-0.5/plugin/populate/000077500000000000000000000000001317075173200204745ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/populate/populate.go000066400000000000000000000607051317075173200226640ustar00rootroot00000000000000// 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. /* The populate plugin generates a NewPopulated function. This function returns a newly populated structure. It is enabled by the following extensions: - populate - populate_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: option (gogoproto.populate_all) = true; message B { optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } given to the populate plugin, will generate code the following code: func NewPopulatedB(r randyExample, easy bool) *B { this := &B{} v2 := NewPopulatedA(r, easy) this.A = *v2 if r.Intn(10) != 0 { v3 := r.Intn(10) this.G = make([]github_com_gogo_protobuf_test_custom.Uint128, v3) for i := 0; i < v3; i++ { v4 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.G[i] = *v4 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedExample(r, 3) } return this } The idea that is useful for testing. Most of the other plugins' generated test code uses it. You will still be able to use the generated test code of other packages if you turn off the popluate plugin and write your own custom NewPopulated function. If the easy flag is not set the XXX_unrecognized and XXX_extensions fields are also populated. These have caused problems with JSON marshalling and unmarshalling tests. */ package populate import ( "fmt" "math" "strconv" "strings" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" "github.com/gogo/protobuf/protoc-gen-gogo/generator" "github.com/gogo/protobuf/vanity" ) type VarGen interface { Next() string Current() string } type varGen struct { index int64 } func NewVarGen() VarGen { return &varGen{0} } func (this *varGen) Next() string { this.index++ return fmt.Sprintf("v%d", this.index) } func (this *varGen) Current() string { return fmt.Sprintf("v%d", this.index) } type plugin struct { *generator.Generator generator.PluginImports varGen VarGen atleastOne bool localName string typesPkg generator.Single } func NewPlugin() *plugin { return &plugin{} } func (p *plugin) Name() string { return "populate" } func (p *plugin) Init(g *generator.Generator) { p.Generator = g } func value(typeName string, fieldType descriptor.FieldDescriptorProto_Type) string { switch fieldType { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: return typeName + "(r.Float64())" case descriptor.FieldDescriptorProto_TYPE_FLOAT: return typeName + "(r.Float32())" case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_SFIXED64, descriptor.FieldDescriptorProto_TYPE_SINT64: return typeName + "(r.Int63())" case descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_FIXED64: return typeName + "(uint64(r.Uint32()))" case descriptor.FieldDescriptorProto_TYPE_INT32, descriptor.FieldDescriptorProto_TYPE_SINT32, descriptor.FieldDescriptorProto_TYPE_SFIXED32, descriptor.FieldDescriptorProto_TYPE_ENUM: return typeName + "(r.Int31())" case descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_FIXED32: return typeName + "(r.Uint32())" case descriptor.FieldDescriptorProto_TYPE_BOOL: return typeName + `(bool(r.Intn(2) == 0))` case descriptor.FieldDescriptorProto_TYPE_STRING, descriptor.FieldDescriptorProto_TYPE_GROUP, descriptor.FieldDescriptorProto_TYPE_MESSAGE, descriptor.FieldDescriptorProto_TYPE_BYTES: } panic(fmt.Errorf("unexpected type %v", typeName)) } func negative(fieldType descriptor.FieldDescriptorProto_Type) bool { switch fieldType { case descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_BOOL: return false } return true } func (p *plugin) getFuncName(goTypName string) string { funcName := "NewPopulated" + goTypName goTypNames := strings.Split(goTypName, ".") if len(goTypNames) == 2 { funcName = goTypNames[0] + ".NewPopulated" + goTypNames[1] } else if len(goTypNames) != 1 { panic(fmt.Errorf("unreachable: too many dots in %v", goTypName)) } switch funcName { case "time.NewPopulatedTime": funcName = p.typesPkg.Use() + ".NewPopulatedStdTime" case "time.NewPopulatedDuration": funcName = p.typesPkg.Use() + ".NewPopulatedStdDuration" } return funcName } func (p *plugin) getFuncCall(goTypName string) string { funcName := p.getFuncName(goTypName) funcCall := funcName + "(r, easy)" return funcCall } func (p *plugin) getCustomFuncCall(goTypName string) string { funcName := p.getFuncName(goTypName) funcCall := funcName + "(r)" return funcCall } func (p *plugin) getEnumVal(field *descriptor.FieldDescriptorProto, goTyp string) string { enum := p.ObjectNamed(field.GetTypeName()).(*generator.EnumDescriptor) l := len(enum.Value) values := make([]string, l) for i := range enum.Value { values[i] = strconv.Itoa(int(*enum.Value[i].Number)) } arr := "[]int32{" + strings.Join(values, ",") + "}" val := strings.Join([]string{generator.GoTypeToName(goTyp), `(`, arr, `[r.Intn(`, fmt.Sprintf("%d", l), `)])`}, "") return val } func (p *plugin) GenerateField(file *generator.FileDescriptor, message *generator.Descriptor, field *descriptor.FieldDescriptorProto) { proto3 := gogoproto.IsProto3(file.FileDescriptorProto) goTyp, _ := p.GoType(message, field) fieldname := p.GetOneOfFieldName(message, field) goTypName := generator.GoTypeToName(goTyp) if p.IsMap(field) { m := p.GoMapType(nil, field) keygoTyp, _ := p.GoType(nil, m.KeyField) keygoTyp = strings.Replace(keygoTyp, "*", "", 1) keygoAliasTyp, _ := p.GoType(nil, m.KeyAliasField) keygoAliasTyp = strings.Replace(keygoAliasTyp, "*", "", 1) valuegoTyp, _ := p.GoType(nil, m.ValueField) valuegoAliasTyp, _ := p.GoType(nil, m.ValueAliasField) keytypName := generator.GoTypeToName(keygoTyp) keygoAliasTyp = generator.GoTypeToName(keygoAliasTyp) valuetypAliasName := generator.GoTypeToName(valuegoAliasTyp) nullable, valuegoTyp, valuegoAliasTyp := generator.GoMapValueTypes(field, m.ValueField, valuegoTyp, valuegoAliasTyp) p.P(p.varGen.Next(), ` := r.Intn(10)`) p.P(`this.`, fieldname, ` = make(`, m.GoType, `)`) p.P(`for i := 0; i < `, p.varGen.Current(), `; i++ {`) p.In() keyval := "" if m.KeyField.IsString() { keyval = fmt.Sprintf("randString%v(r)", p.localName) } else { keyval = value(keytypName, m.KeyField.GetType()) } if keygoAliasTyp != keygoTyp { keyval = keygoAliasTyp + `(` + keyval + `)` } if m.ValueField.IsMessage() || p.IsGroup(field) || (m.ValueField.IsBytes() && gogoproto.IsCustomType(field)) { s := `this.` + fieldname + `[` + keyval + `] = ` if gogoproto.IsStdTime(field) || gogoproto.IsStdDuration(field) { valuegoTyp = valuegoAliasTyp } funcCall := p.getCustomFuncCall(goTypName) if !gogoproto.IsCustomType(field) { goTypName = generator.GoTypeToName(valuegoTyp) funcCall = p.getFuncCall(goTypName) } if !nullable { funcCall = `*` + funcCall } if valuegoTyp != valuegoAliasTyp { funcCall = `(` + valuegoAliasTyp + `)(` + funcCall + `)` } s += funcCall p.P(s) } else if m.ValueField.IsEnum() { s := `this.` + fieldname + `[` + keyval + `]` + ` = ` + p.getEnumVal(m.ValueField, valuegoTyp) p.P(s) } else if m.ValueField.IsBytes() { count := p.varGen.Next() p.P(count, ` := r.Intn(100)`) p.P(p.varGen.Next(), ` := `, keyval) p.P(`this.`, fieldname, `[`, p.varGen.Current(), `] = make(`, valuegoTyp, `, `, count, `)`) p.P(`for i := 0; i < `, count, `; i++ {`) p.In() p.P(`this.`, fieldname, `[`, p.varGen.Current(), `][i] = byte(r.Intn(256))`) p.Out() p.P(`}`) } else if m.ValueField.IsString() { s := `this.` + fieldname + `[` + keyval + `]` + ` = ` + fmt.Sprintf("randString%v(r)", p.localName) p.P(s) } else { p.P(p.varGen.Next(), ` := `, keyval) p.P(`this.`, fieldname, `[`, p.varGen.Current(), `] = `, value(valuetypAliasName, m.ValueField.GetType())) if negative(m.ValueField.GetType()) { p.P(`if r.Intn(2) == 0 {`) p.In() p.P(`this.`, fieldname, `[`, p.varGen.Current(), `] *= -1`) p.Out() p.P(`}`) } } p.Out() p.P(`}`) } else if gogoproto.IsCustomType(field) { funcCall := p.getCustomFuncCall(goTypName) if field.IsRepeated() { p.P(p.varGen.Next(), ` := r.Intn(10)`) p.P(`this.`, fieldname, ` = make(`, goTyp, `, `, p.varGen.Current(), `)`) p.P(`for i := 0; i < `, p.varGen.Current(), `; i++ {`) p.In() p.P(p.varGen.Next(), `:= `, funcCall) p.P(`this.`, fieldname, `[i] = *`, p.varGen.Current()) p.Out() p.P(`}`) } else if gogoproto.IsNullable(field) { p.P(`this.`, fieldname, ` = `, funcCall) } else { p.P(p.varGen.Next(), `:= `, funcCall) p.P(`this.`, fieldname, ` = *`, p.varGen.Current()) } } else if field.IsMessage() || p.IsGroup(field) { funcCall := p.getFuncCall(goTypName) if field.IsRepeated() { p.P(p.varGen.Next(), ` := r.Intn(5)`) p.P(`this.`, fieldname, ` = make(`, goTyp, `, `, p.varGen.Current(), `)`) p.P(`for i := 0; i < `, p.varGen.Current(), `; i++ {`) p.In() if gogoproto.IsNullable(field) { p.P(`this.`, fieldname, `[i] = `, funcCall) } else { p.P(p.varGen.Next(), `:= `, funcCall) p.P(`this.`, fieldname, `[i] = *`, p.varGen.Current()) } p.Out() p.P(`}`) } else { if gogoproto.IsNullable(field) { p.P(`this.`, fieldname, ` = `, funcCall) } else { p.P(p.varGen.Next(), `:= `, funcCall) p.P(`this.`, fieldname, ` = *`, p.varGen.Current()) } } } else { if field.IsEnum() { val := p.getEnumVal(field, goTyp) if field.IsRepeated() { p.P(p.varGen.Next(), ` := r.Intn(10)`) p.P(`this.`, fieldname, ` = make(`, goTyp, `, `, p.varGen.Current(), `)`) p.P(`for i := 0; i < `, p.varGen.Current(), `; i++ {`) p.In() p.P(`this.`, fieldname, `[i] = `, val) p.Out() p.P(`}`) } else if !gogoproto.IsNullable(field) || proto3 { p.P(`this.`, fieldname, ` = `, val) } else { p.P(p.varGen.Next(), ` := `, val) p.P(`this.`, fieldname, ` = &`, p.varGen.Current()) } } else if field.IsBytes() { if field.IsRepeated() { p.P(p.varGen.Next(), ` := r.Intn(10)`) p.P(`this.`, fieldname, ` = make(`, goTyp, `, `, p.varGen.Current(), `)`) p.P(`for i := 0; i < `, p.varGen.Current(), `; i++ {`) p.In() p.P(p.varGen.Next(), ` := r.Intn(100)`) p.P(`this.`, fieldname, `[i] = make([]byte,`, p.varGen.Current(), `)`) p.P(`for j := 0; j < `, p.varGen.Current(), `; j++ {`) p.In() p.P(`this.`, fieldname, `[i][j] = byte(r.Intn(256))`) p.Out() p.P(`}`) p.Out() p.P(`}`) } else { p.P(p.varGen.Next(), ` := r.Intn(100)`) p.P(`this.`, fieldname, ` = make(`, goTyp, `, `, p.varGen.Current(), `)`) p.P(`for i := 0; i < `, p.varGen.Current(), `; i++ {`) p.In() p.P(`this.`, fieldname, `[i] = byte(r.Intn(256))`) p.Out() p.P(`}`) } } else if field.IsString() { typName := generator.GoTypeToName(goTyp) val := fmt.Sprintf("%s(randString%v(r))", typName, p.localName) if field.IsRepeated() { p.P(p.varGen.Next(), ` := r.Intn(10)`) p.P(`this.`, fieldname, ` = make(`, goTyp, `, `, p.varGen.Current(), `)`) p.P(`for i := 0; i < `, p.varGen.Current(), `; i++ {`) p.In() p.P(`this.`, fieldname, `[i] = `, val) p.Out() p.P(`}`) } else if !gogoproto.IsNullable(field) || proto3 { p.P(`this.`, fieldname, ` = `, val) } else { p.P(p.varGen.Next(), `:= `, val) p.P(`this.`, fieldname, ` = &`, p.varGen.Current()) } } else { typName := generator.GoTypeToName(goTyp) if field.IsRepeated() { p.P(p.varGen.Next(), ` := r.Intn(10)`) p.P(`this.`, fieldname, ` = make(`, goTyp, `, `, p.varGen.Current(), `)`) p.P(`for i := 0; i < `, p.varGen.Current(), `; i++ {`) p.In() p.P(`this.`, fieldname, `[i] = `, value(typName, field.GetType())) if negative(field.GetType()) { p.P(`if r.Intn(2) == 0 {`) p.In() p.P(`this.`, fieldname, `[i] *= -1`) p.Out() p.P(`}`) } p.Out() p.P(`}`) } else if !gogoproto.IsNullable(field) || proto3 { p.P(`this.`, fieldname, ` = `, value(typName, field.GetType())) if negative(field.GetType()) { p.P(`if r.Intn(2) == 0 {`) p.In() p.P(`this.`, fieldname, ` *= -1`) p.Out() p.P(`}`) } } else { p.P(p.varGen.Next(), ` := `, value(typName, field.GetType())) if negative(field.GetType()) { p.P(`if r.Intn(2) == 0 {`) p.In() p.P(p.varGen.Current(), ` *= -1`) p.Out() p.P(`}`) } p.P(`this.`, fieldname, ` = &`, p.varGen.Current()) } } } } func (p *plugin) hasLoop(field *descriptor.FieldDescriptorProto, visited []*generator.Descriptor, excludes []*generator.Descriptor) *generator.Descriptor { if field.IsMessage() || p.IsGroup(field) || p.IsMap(field) { var fieldMessage *generator.Descriptor if p.IsMap(field) { m := p.GoMapType(nil, field) if !m.ValueField.IsMessage() { return nil } fieldMessage = p.ObjectNamed(m.ValueField.GetTypeName()).(*generator.Descriptor) } else { fieldMessage = p.ObjectNamed(field.GetTypeName()).(*generator.Descriptor) } fieldTypeName := generator.CamelCaseSlice(fieldMessage.TypeName()) for _, message := range visited { messageTypeName := generator.CamelCaseSlice(message.TypeName()) if fieldTypeName == messageTypeName { for _, e := range excludes { if fieldTypeName == generator.CamelCaseSlice(e.TypeName()) { return nil } } return fieldMessage } } pkg := strings.Split(field.GetTypeName(), ".")[1] for _, f := range fieldMessage.Field { if strings.HasPrefix(f.GetTypeName(), "."+pkg+".") { visited = append(visited, fieldMessage) loopTo := p.hasLoop(f, visited, excludes) if loopTo != nil { return loopTo } } } } return nil } func (p *plugin) loops(field *descriptor.FieldDescriptorProto, message *generator.Descriptor) int { //fmt.Fprintf(os.Stderr, "loops %v %v\n", field.GetTypeName(), generator.CamelCaseSlice(message.TypeName())) excludes := []*generator.Descriptor{} loops := 0 for { visited := []*generator.Descriptor{} loopTo := p.hasLoop(field, visited, excludes) if loopTo == nil { break } //fmt.Fprintf(os.Stderr, "loopTo %v\n", generator.CamelCaseSlice(loopTo.TypeName())) excludes = append(excludes, loopTo) loops++ } return loops } func (p *plugin) Generate(file *generator.FileDescriptor) { p.atleastOne = false p.PluginImports = generator.NewPluginImports(p.Generator) p.varGen = NewVarGen() proto3 := gogoproto.IsProto3(file.FileDescriptorProto) p.typesPkg = p.NewImport("github.com/gogo/protobuf/types") p.localName = generator.FileName(file) protoPkg := p.NewImport("github.com/gogo/protobuf/proto") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = p.NewImport("github.com/golang/protobuf/proto") } for _, message := range file.Messages() { if !gogoproto.HasPopulate(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } p.atleastOne = true ccTypeName := generator.CamelCaseSlice(message.TypeName()) loopLevels := make([]int, len(message.Field)) maxLoopLevel := 0 for i, field := range message.Field { loopLevels[i] = p.loops(field, message) if loopLevels[i] > maxLoopLevel { maxLoopLevel = loopLevels[i] } } ranTotal := 0 for i := range loopLevels { ranTotal += int(math.Pow10(maxLoopLevel - loopLevels[i])) } p.P(`func NewPopulated`, ccTypeName, `(r randy`, p.localName, `, easy bool) *`, ccTypeName, ` {`) p.In() p.P(`this := &`, ccTypeName, `{}`) if gogoproto.IsUnion(message.File(), message.DescriptorProto) && len(message.Field) > 0 { p.P(`fieldNum := r.Intn(`, fmt.Sprintf("%d", ranTotal), `)`) p.P(`switch fieldNum {`) k := 0 for i, field := range message.Field { is := []string{} ran := int(math.Pow10(maxLoopLevel - loopLevels[i])) for j := 0; j < ran; j++ { is = append(is, fmt.Sprintf("%d", j+k)) } k += ran p.P(`case `, strings.Join(is, ","), `:`) p.In() p.GenerateField(file, message, field) p.Out() } p.P(`}`) } else { var maxFieldNumber int32 oneofs := make(map[string]struct{}) for fieldIndex, field := range message.Field { if field.GetNumber() > maxFieldNumber { maxFieldNumber = field.GetNumber() } oneof := field.OneofIndex != nil if !oneof { if field.IsRequired() || (!gogoproto.IsNullable(field) && !field.IsRepeated()) || (proto3 && !field.IsMessage()) { p.GenerateField(file, message, field) } else { if loopLevels[fieldIndex] > 0 { p.P(`if r.Intn(10) == 0 {`) } else { p.P(`if r.Intn(10) != 0 {`) } p.In() p.GenerateField(file, message, field) p.Out() p.P(`}`) } } else { fieldname := p.GetFieldName(message, field) if _, ok := oneofs[fieldname]; ok { continue } else { oneofs[fieldname] = struct{}{} } fieldNumbers := []int32{} for _, f := range message.Field { fname := p.GetFieldName(message, f) if fname == fieldname { fieldNumbers = append(fieldNumbers, f.GetNumber()) } } p.P(`oneofNumber_`, fieldname, ` := `, fmt.Sprintf("%#v", fieldNumbers), `[r.Intn(`, strconv.Itoa(len(fieldNumbers)), `)]`) p.P(`switch oneofNumber_`, fieldname, ` {`) for _, f := range message.Field { fname := p.GetFieldName(message, f) if fname != fieldname { continue } p.P(`case `, strconv.Itoa(int(f.GetNumber())), `:`) p.In() ccTypeName := p.OneOfTypeName(message, f) p.P(`this.`, fname, ` = NewPopulated`, ccTypeName, `(r, easy)`) p.Out() } p.P(`}`) } } if message.DescriptorProto.HasExtension() { p.P(`if !easy && r.Intn(10) != 0 {`) p.In() p.P(`l := r.Intn(5)`) p.P(`for i := 0; i < l; i++ {`) p.In() if len(message.DescriptorProto.GetExtensionRange()) > 1 { p.P(`eIndex := r.Intn(`, strconv.Itoa(len(message.DescriptorProto.GetExtensionRange())), `)`) p.P(`fieldNumber := 0`) p.P(`switch eIndex {`) for i, e := range message.DescriptorProto.GetExtensionRange() { p.P(`case `, strconv.Itoa(i), `:`) p.In() p.P(`fieldNumber = r.Intn(`, strconv.Itoa(int(e.GetEnd()-e.GetStart())), `) + `, strconv.Itoa(int(e.GetStart()))) p.Out() if e.GetEnd() > maxFieldNumber { maxFieldNumber = e.GetEnd() } } p.P(`}`) } else { e := message.DescriptorProto.GetExtensionRange()[0] p.P(`fieldNumber := r.Intn(`, strconv.Itoa(int(e.GetEnd()-e.GetStart())), `) + `, strconv.Itoa(int(e.GetStart()))) if e.GetEnd() > maxFieldNumber { maxFieldNumber = e.GetEnd() } } p.P(`wire := r.Intn(4)`) p.P(`if wire == 3 { wire = 5 }`) p.P(`dAtA := randField`, p.localName, `(nil, r, fieldNumber, wire)`) p.P(protoPkg.Use(), `.SetRawExtension(this, int32(fieldNumber), dAtA)`) p.Out() p.P(`}`) p.Out() p.P(`}`) } if maxFieldNumber < (1 << 10) { p.P(`if !easy && r.Intn(10) != 0 {`) p.In() if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) { p.P(`this.XXX_unrecognized = randUnrecognized`, p.localName, `(r, `, strconv.Itoa(int(maxFieldNumber+1)), `)`) } p.Out() p.P(`}`) } } p.P(`return this`) p.Out() p.P(`}`) p.P(``) //Generate NewPopulated functions for oneof fields m := proto.Clone(message.DescriptorProto).(*descriptor.DescriptorProto) for _, f := range m.Field { oneof := f.OneofIndex != nil if !oneof { continue } ccTypeName := p.OneOfTypeName(message, f) p.P(`func NewPopulated`, ccTypeName, `(r randy`, p.localName, `, easy bool) *`, ccTypeName, ` {`) p.In() p.P(`this := &`, ccTypeName, `{}`) vanity.TurnOffNullableForNativeTypes(f) p.GenerateField(file, message, f) p.P(`return this`) p.Out() p.P(`}`) } } if !p.atleastOne { return } p.P(`type randy`, p.localName, ` interface {`) p.In() p.P(`Float32() float32`) p.P(`Float64() float64`) p.P(`Int63() int64`) p.P(`Int31() int32`) p.P(`Uint32() uint32`) p.P(`Intn(n int) int`) p.Out() p.P(`}`) p.P(`func randUTF8Rune`, p.localName, `(r randy`, p.localName, `) rune {`) p.In() p.P(`ru := r.Intn(62)`) p.P(`if ru < 10 {`) p.In() p.P(`return rune(ru+48)`) p.Out() p.P(`} else if ru < 36 {`) p.In() p.P(`return rune(ru+55)`) p.Out() p.P(`}`) p.P(`return rune(ru+61)`) p.Out() p.P(`}`) p.P(`func randString`, p.localName, `(r randy`, p.localName, `) string {`) p.In() p.P(p.varGen.Next(), ` := r.Intn(100)`) p.P(`tmps := make([]rune, `, p.varGen.Current(), `)`) p.P(`for i := 0; i < `, p.varGen.Current(), `; i++ {`) p.In() p.P(`tmps[i] = randUTF8Rune`, p.localName, `(r)`) p.Out() p.P(`}`) p.P(`return string(tmps)`) p.Out() p.P(`}`) p.P(`func randUnrecognized`, p.localName, `(r randy`, p.localName, `, maxFieldNumber int) (dAtA []byte) {`) p.In() p.P(`l := r.Intn(5)`) p.P(`for i := 0; i < l; i++ {`) p.In() p.P(`wire := r.Intn(4)`) p.P(`if wire == 3 { wire = 5 }`) p.P(`fieldNumber := maxFieldNumber + r.Intn(100)`) p.P(`dAtA = randField`, p.localName, `(dAtA, r, fieldNumber, wire)`) p.Out() p.P(`}`) p.P(`return dAtA`) p.Out() p.P(`}`) p.P(`func randField`, p.localName, `(dAtA []byte, r randy`, p.localName, `, fieldNumber int, wire int) []byte {`) p.In() p.P(`key := uint32(fieldNumber)<<3 | uint32(wire)`) p.P(`switch wire {`) p.P(`case 0:`) p.In() p.P(`dAtA = encodeVarintPopulate`, p.localName, `(dAtA, uint64(key))`) p.P(p.varGen.Next(), ` := r.Int63()`) p.P(`if r.Intn(2) == 0 {`) p.In() p.P(p.varGen.Current(), ` *= -1`) p.Out() p.P(`}`) p.P(`dAtA = encodeVarintPopulate`, p.localName, `(dAtA, uint64(`, p.varGen.Current(), `))`) p.Out() p.P(`case 1:`) p.In() p.P(`dAtA = encodeVarintPopulate`, p.localName, `(dAtA, uint64(key))`) p.P(`dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)))`) p.Out() p.P(`case 2:`) p.In() p.P(`dAtA = encodeVarintPopulate`, p.localName, `(dAtA, uint64(key))`) p.P(`ll := r.Intn(100)`) p.P(`dAtA = encodeVarintPopulate`, p.localName, `(dAtA, uint64(ll))`) p.P(`for j := 0; j < ll; j++ {`) p.In() p.P(`dAtA = append(dAtA, byte(r.Intn(256)))`) p.Out() p.P(`}`) p.Out() p.P(`default:`) p.In() p.P(`dAtA = encodeVarintPopulate`, p.localName, `(dAtA, uint64(key))`) p.P(`dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)))`) p.Out() p.P(`}`) p.P(`return dAtA`) p.Out() p.P(`}`) p.P(`func encodeVarintPopulate`, p.localName, `(dAtA []byte, v uint64) []byte {`) p.In() p.P(`for v >= 1<<7 {`) p.In() p.P(`dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80))`) p.P(`v >>= 7`) p.Out() p.P(`}`) p.P(`dAtA = append(dAtA, uint8(v))`) p.P(`return dAtA`) p.Out() p.P(`}`) } func init() { generator.RegisterPlugin(NewPlugin()) } golang-gogoprotobuf-0.5/plugin/size/000077500000000000000000000000001317075173200176155ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/size/size.go000066400000000000000000000475741317075173200211370ustar00rootroot00000000000000// 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. /* The size plugin generates a Size or ProtoSize method for each message. This is useful with the MarshalTo method generated by the marshalto plugin and the gogoproto.marshaler and gogoproto.marshaler_all extensions. It is enabled by the following extensions: - sizer - sizer_all - protosizer - protosizer_all The size plugin also generates a test given it is enabled using one of the following extensions: - testgen - testgen_all And a benchmark given it is enabled using one of the following extensions: - benchgen - benchgen_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: option (gogoproto.sizer_all) = true; message B { option (gogoproto.description) = true; optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } given to the size plugin, will generate the following code: func (m *B) Size() (n int) { var l int _ = l l = m.A.Size() n += 1 + l + sovExample(uint64(l)) if len(m.G) > 0 { for _, e := range m.G { l = e.Size() n += 1 + l + sovExample(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } and the following test code: func TestBSize(t *testing5.T) { popr := math_rand5.New(math_rand5.NewSource(time5.Now().UnixNano())) p := NewPopulatedB(popr, true) dAtA, err := github_com_gogo_protobuf_proto2.Marshal(p) if err != nil { panic(err) } size := p.Size() if len(dAtA) != size { t.Fatalf("size %v != marshalled size %v", size, len(dAtA)) } } func BenchmarkBSize(b *testing5.B) { popr := math_rand5.New(math_rand5.NewSource(616)) total := 0 pops := make([]*B, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedB(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } The sovExample function is a size of varint function for the example.pb.go file. */ package size import ( "fmt" "os" "strconv" "strings" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" "github.com/gogo/protobuf/protoc-gen-gogo/generator" "github.com/gogo/protobuf/vanity" ) type size struct { *generator.Generator generator.PluginImports atleastOne bool localName string typesPkg generator.Single } func NewSize() *size { return &size{} } func (p *size) Name() string { return "size" } func (p *size) Init(g *generator.Generator) { p.Generator = g } func wireToType(wire string) int { switch wire { case "fixed64": return proto.WireFixed64 case "fixed32": return proto.WireFixed32 case "varint": return proto.WireVarint case "bytes": return proto.WireBytes case "group": return proto.WireBytes case "zigzag32": return proto.WireVarint case "zigzag64": return proto.WireVarint } panic("unreachable") } func keySize(fieldNumber int32, wireType int) int { x := uint32(fieldNumber)<<3 | uint32(wireType) size := 0 for size = 0; x > 127; size++ { x >>= 7 } size++ return size } func (p *size) sizeVarint() { p.P(` func sov`, p.localName, `(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n }`) } func (p *size) sizeZigZag() { p.P(`func soz`, p.localName, `(x uint64) (n int) { return sov`, p.localName, `(uint64((x << 1) ^ uint64((int64(x) >> 63)))) }`) } func (p *size) std(field *descriptor.FieldDescriptorProto, name string) (string, bool) { if gogoproto.IsStdTime(field) { if gogoproto.IsNullable(field) { return p.typesPkg.Use() + `.SizeOfStdTime(*` + name + `)`, true } else { return p.typesPkg.Use() + `.SizeOfStdTime(` + name + `)`, true } } else if gogoproto.IsStdDuration(field) { if gogoproto.IsNullable(field) { return p.typesPkg.Use() + `.SizeOfStdDuration(*` + name + `)`, true } else { return p.typesPkg.Use() + `.SizeOfStdDuration(` + name + `)`, true } } return "", false } func (p *size) generateField(proto3 bool, file *generator.FileDescriptor, message *generator.Descriptor, field *descriptor.FieldDescriptorProto, sizeName string) { fieldname := p.GetOneOfFieldName(message, field) nullable := gogoproto.IsNullable(field) repeated := field.IsRepeated() doNilCheck := gogoproto.NeedsNilCheck(proto3, field) if repeated { p.P(`if len(m.`, fieldname, `) > 0 {`) p.In() } else if doNilCheck { p.P(`if m.`, fieldname, ` != nil {`) p.In() } packed := field.IsPacked() || (proto3 && field.IsPacked3()) _, wire := p.GoType(message, field) wireType := wireToType(wire) fieldNumber := field.GetNumber() if packed { wireType = proto.WireBytes } key := keySize(fieldNumber, wireType) switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_DOUBLE, descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64: if packed { p.P(`n+=`, strconv.Itoa(key), `+sov`, p.localName, `(uint64(len(m.`, fieldname, `)*8))`, `+len(m.`, fieldname, `)*8`) } else if repeated { p.P(`n+=`, strconv.Itoa(key+8), `*len(m.`, fieldname, `)`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.P(`n+=`, strconv.Itoa(key+8)) p.Out() p.P(`}`) } else if nullable { p.P(`n+=`, strconv.Itoa(key+8)) } else { p.P(`n+=`, strconv.Itoa(key+8)) } case descriptor.FieldDescriptorProto_TYPE_FLOAT, descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32: if packed { p.P(`n+=`, strconv.Itoa(key), `+sov`, p.localName, `(uint64(len(m.`, fieldname, `)*4))`, `+len(m.`, fieldname, `)*4`) } else if repeated { p.P(`n+=`, strconv.Itoa(key+4), `*len(m.`, fieldname, `)`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.P(`n+=`, strconv.Itoa(key+4)) p.Out() p.P(`}`) } else if nullable { p.P(`n+=`, strconv.Itoa(key+4)) } else { p.P(`n+=`, strconv.Itoa(key+4)) } case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM, descriptor.FieldDescriptorProto_TYPE_INT32: if packed { p.P(`l = 0`) p.P(`for _, e := range m.`, fieldname, ` {`) p.In() p.P(`l+=sov`, p.localName, `(uint64(e))`) p.Out() p.P(`}`) p.P(`n+=`, strconv.Itoa(key), `+sov`, p.localName, `(uint64(l))+l`) } else if repeated { p.P(`for _, e := range m.`, fieldname, ` {`) p.In() p.P(`n+=`, strconv.Itoa(key), `+sov`, p.localName, `(uint64(e))`) p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.P(`n+=`, strconv.Itoa(key), `+sov`, p.localName, `(uint64(m.`, fieldname, `))`) p.Out() p.P(`}`) } else if nullable { p.P(`n+=`, strconv.Itoa(key), `+sov`, p.localName, `(uint64(*m.`, fieldname, `))`) } else { p.P(`n+=`, strconv.Itoa(key), `+sov`, p.localName, `(uint64(m.`, fieldname, `))`) } case descriptor.FieldDescriptorProto_TYPE_BOOL: if packed { p.P(`n+=`, strconv.Itoa(key), `+sov`, p.localName, `(uint64(len(m.`, fieldname, `)))`, `+len(m.`, fieldname, `)*1`) } else if repeated { p.P(`n+=`, strconv.Itoa(key+1), `*len(m.`, fieldname, `)`) } else if proto3 { p.P(`if m.`, fieldname, ` {`) p.In() p.P(`n+=`, strconv.Itoa(key+1)) p.Out() p.P(`}`) } else if nullable { p.P(`n+=`, strconv.Itoa(key+1)) } else { p.P(`n+=`, strconv.Itoa(key+1)) } case descriptor.FieldDescriptorProto_TYPE_STRING: if repeated { p.P(`for _, s := range m.`, fieldname, ` { `) p.In() p.P(`l = len(s)`) p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) p.Out() p.P(`}`) } else if proto3 { p.P(`l=len(m.`, fieldname, `)`) p.P(`if l > 0 {`) p.In() p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) p.Out() p.P(`}`) } else if nullable { p.P(`l=len(*m.`, fieldname, `)`) p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) } else { p.P(`l=len(m.`, fieldname, `)`) p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) } case descriptor.FieldDescriptorProto_TYPE_GROUP: panic(fmt.Errorf("size does not support group %v", fieldname)) case descriptor.FieldDescriptorProto_TYPE_MESSAGE: if p.IsMap(field) { m := p.GoMapType(nil, field) _, keywire := p.GoType(nil, m.KeyAliasField) valuegoTyp, _ := p.GoType(nil, m.ValueField) valuegoAliasTyp, valuewire := p.GoType(nil, m.ValueAliasField) _, fieldwire := p.GoType(nil, field) nullable, valuegoTyp, valuegoAliasTyp = generator.GoMapValueTypes(field, m.ValueField, valuegoTyp, valuegoAliasTyp) fieldKeySize := keySize(field.GetNumber(), wireToType(fieldwire)) keyKeySize := keySize(1, wireToType(keywire)) valueKeySize := keySize(2, wireToType(valuewire)) p.P(`for k, v := range m.`, fieldname, ` { `) p.In() p.P(`_ = k`) p.P(`_ = v`) sum := []string{strconv.Itoa(keyKeySize)} switch m.KeyField.GetType() { case descriptor.FieldDescriptorProto_TYPE_DOUBLE, descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64: sum = append(sum, `8`) case descriptor.FieldDescriptorProto_TYPE_FLOAT, descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32: sum = append(sum, `4`) case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM, descriptor.FieldDescriptorProto_TYPE_INT32: sum = append(sum, `sov`+p.localName+`(uint64(k))`) case descriptor.FieldDescriptorProto_TYPE_BOOL: sum = append(sum, `1`) case descriptor.FieldDescriptorProto_TYPE_STRING, descriptor.FieldDescriptorProto_TYPE_BYTES: sum = append(sum, `len(k)+sov`+p.localName+`(uint64(len(k)))`) case descriptor.FieldDescriptorProto_TYPE_SINT32, descriptor.FieldDescriptorProto_TYPE_SINT64: sum = append(sum, `soz`+p.localName+`(uint64(k))`) } switch m.ValueField.GetType() { case descriptor.FieldDescriptorProto_TYPE_DOUBLE, descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, strconv.Itoa(8)) case descriptor.FieldDescriptorProto_TYPE_FLOAT, descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, strconv.Itoa(4)) case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM, descriptor.FieldDescriptorProto_TYPE_INT32: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, `sov`+p.localName+`(uint64(v))`) case descriptor.FieldDescriptorProto_TYPE_BOOL: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, `1`) case descriptor.FieldDescriptorProto_TYPE_STRING: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, `len(v)+sov`+p.localName+`(uint64(len(v)))`) case descriptor.FieldDescriptorProto_TYPE_BYTES: if gogoproto.IsCustomType(field) { p.P(`l = 0`) if nullable { p.P(`if v != nil {`) p.In() } p.P(`l = v.`, sizeName, `()`) p.P(`l += `, strconv.Itoa(valueKeySize), ` + sov`+p.localName+`(uint64(l))`) if nullable { p.Out() p.P(`}`) } sum = append(sum, `l`) } else { p.P(`l = 0`) if proto3 { p.P(`if len(v) > 0 {`) } else { p.P(`if v != nil {`) } p.In() p.P(`l = `, strconv.Itoa(valueKeySize), ` + len(v)+sov`+p.localName+`(uint64(len(v)))`) p.Out() p.P(`}`) sum = append(sum, `l`) } case descriptor.FieldDescriptorProto_TYPE_SINT32, descriptor.FieldDescriptorProto_TYPE_SINT64: sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, `soz`+p.localName+`(uint64(v))`) case descriptor.FieldDescriptorProto_TYPE_MESSAGE: stdSizeCall, stdOk := p.std(field, "v") if nullable { p.P(`l = 0`) p.P(`if v != nil {`) p.In() if stdOk { p.P(`l = `, stdSizeCall) } else if valuegoTyp != valuegoAliasTyp { p.P(`l = ((`, valuegoTyp, `)(v)).`, sizeName, `()`) } else { p.P(`l = v.`, sizeName, `()`) } p.P(`l += `, strconv.Itoa(valueKeySize), ` + sov`+p.localName+`(uint64(l))`) p.Out() p.P(`}`) sum = append(sum, `l`) } else { if stdOk { p.P(`l = `, stdSizeCall) } else if valuegoTyp != valuegoAliasTyp { p.P(`l = ((*`, valuegoTyp, `)(&v)).`, sizeName, `()`) } else { p.P(`l = v.`, sizeName, `()`) } sum = append(sum, strconv.Itoa(valueKeySize)) sum = append(sum, `l+sov`+p.localName+`(uint64(l))`) } } p.P(`mapEntrySize := `, strings.Join(sum, "+")) p.P(`n+=mapEntrySize+`, fieldKeySize, `+sov`, p.localName, `(uint64(mapEntrySize))`) p.Out() p.P(`}`) } else if repeated { p.P(`for _, e := range m.`, fieldname, ` { `) p.In() stdSizeCall, stdOk := p.std(field, "e") if stdOk { p.P(`l=`, stdSizeCall) } else { p.P(`l=e.`, sizeName, `()`) } p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) p.Out() p.P(`}`) } else { stdSizeCall, stdOk := p.std(field, "m."+fieldname) if stdOk { p.P(`l=`, stdSizeCall) } else { p.P(`l=m.`, fieldname, `.`, sizeName, `()`) } p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) } case descriptor.FieldDescriptorProto_TYPE_BYTES: if !gogoproto.IsCustomType(field) { if repeated { p.P(`for _, b := range m.`, fieldname, ` { `) p.In() p.P(`l = len(b)`) p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) p.Out() p.P(`}`) } else if proto3 { p.P(`l=len(m.`, fieldname, `)`) p.P(`if l > 0 {`) p.In() p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) p.Out() p.P(`}`) } else { p.P(`l=len(m.`, fieldname, `)`) p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) } } else { if repeated { p.P(`for _, e := range m.`, fieldname, ` { `) p.In() p.P(`l=e.`, sizeName, `()`) p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) p.Out() p.P(`}`) } else { p.P(`l=m.`, fieldname, `.`, sizeName, `()`) p.P(`n+=`, strconv.Itoa(key), `+l+sov`, p.localName, `(uint64(l))`) } } case descriptor.FieldDescriptorProto_TYPE_SINT32, descriptor.FieldDescriptorProto_TYPE_SINT64: if packed { p.P(`l = 0`) p.P(`for _, e := range m.`, fieldname, ` {`) p.In() p.P(`l+=soz`, p.localName, `(uint64(e))`) p.Out() p.P(`}`) p.P(`n+=`, strconv.Itoa(key), `+sov`, p.localName, `(uint64(l))+l`) } else if repeated { p.P(`for _, e := range m.`, fieldname, ` {`) p.In() p.P(`n+=`, strconv.Itoa(key), `+soz`, p.localName, `(uint64(e))`) p.Out() p.P(`}`) } else if proto3 { p.P(`if m.`, fieldname, ` != 0 {`) p.In() p.P(`n+=`, strconv.Itoa(key), `+soz`, p.localName, `(uint64(m.`, fieldname, `))`) p.Out() p.P(`}`) } else if nullable { p.P(`n+=`, strconv.Itoa(key), `+soz`, p.localName, `(uint64(*m.`, fieldname, `))`) } else { p.P(`n+=`, strconv.Itoa(key), `+soz`, p.localName, `(uint64(m.`, fieldname, `))`) } default: panic("not implemented") } if repeated || doNilCheck { p.Out() p.P(`}`) } } func (p *size) Generate(file *generator.FileDescriptor) { p.PluginImports = generator.NewPluginImports(p.Generator) p.atleastOne = false p.localName = generator.FileName(file) p.typesPkg = p.NewImport("github.com/gogo/protobuf/types") protoPkg := p.NewImport("github.com/gogo/protobuf/proto") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = p.NewImport("github.com/golang/protobuf/proto") } for _, message := range file.Messages() { sizeName := "" if gogoproto.IsSizer(file.FileDescriptorProto, message.DescriptorProto) && gogoproto.IsProtoSizer(file.FileDescriptorProto, message.DescriptorProto) { fmt.Fprintf(os.Stderr, "ERROR: message %v cannot support both sizer and protosizer plugins\n", generator.CamelCase(*message.Name)) os.Exit(1) } if gogoproto.IsSizer(file.FileDescriptorProto, message.DescriptorProto) { sizeName = "Size" } else if gogoproto.IsProtoSizer(file.FileDescriptorProto, message.DescriptorProto) { sizeName = "ProtoSize" } else { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } p.atleastOne = true ccTypeName := generator.CamelCaseSlice(message.TypeName()) p.P(`func (m *`, ccTypeName, `) `, sizeName, `() (n int) {`) p.In() p.P(`var l int`) p.P(`_ = l`) oneofs := make(map[string]struct{}) for _, field := range message.Field { oneof := field.OneofIndex != nil if !oneof { proto3 := gogoproto.IsProto3(file.FileDescriptorProto) p.generateField(proto3, file, message, field, sizeName) } else { fieldname := p.GetFieldName(message, field) if _, ok := oneofs[fieldname]; ok { continue } else { oneofs[fieldname] = struct{}{} } p.P(`if m.`, fieldname, ` != nil {`) p.In() p.P(`n+=m.`, fieldname, `.`, sizeName, `()`) p.Out() p.P(`}`) } } if message.DescriptorProto.HasExtension() { if gogoproto.HasExtensionsMap(file.FileDescriptorProto, message.DescriptorProto) { p.P(`n += `, protoPkg.Use(), `.SizeOfInternalExtension(m)`) } else { p.P(`if m.XXX_extensions != nil {`) p.In() p.P(`n+=len(m.XXX_extensions)`) p.Out() p.P(`}`) } } if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) { p.P(`if m.XXX_unrecognized != nil {`) p.In() p.P(`n+=len(m.XXX_unrecognized)`) p.Out() p.P(`}`) } p.P(`return n`) p.Out() p.P(`}`) p.P() //Generate Size methods for oneof fields m := proto.Clone(message.DescriptorProto).(*descriptor.DescriptorProto) for _, f := range m.Field { oneof := f.OneofIndex != nil if !oneof { continue } ccTypeName := p.OneOfTypeName(message, f) p.P(`func (m *`, ccTypeName, `) `, sizeName, `() (n int) {`) p.In() p.P(`var l int`) p.P(`_ = l`) vanity.TurnOffNullableForNativeTypes(f) p.generateField(false, file, message, f, sizeName) p.P(`return n`) p.Out() p.P(`}`) } } if !p.atleastOne { return } p.sizeVarint() p.sizeZigZag() } func init() { generator.RegisterPlugin(NewSize()) } golang-gogoprotobuf-0.5/plugin/size/sizetest.go000066400000000000000000000106561317075173200220260ustar00rootroot00000000000000// 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. package size import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/plugin/testgen" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type test struct { *generator.Generator } func NewTest(g *generator.Generator) testgen.TestPlugin { return &test{g} } func (p *test) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") testingPkg := imports.NewImport("testing") protoPkg := imports.NewImport("github.com/gogo/protobuf/proto") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = imports.NewImport("github.com/golang/protobuf/proto") } for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) sizeName := "" if gogoproto.IsSizer(file.FileDescriptorProto, message.DescriptorProto) { sizeName = "Size" } else if gogoproto.IsProtoSizer(file.FileDescriptorProto, message.DescriptorProto) { sizeName = "ProtoSize" } else { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { used = true p.P(`func Test`, ccTypeName, sizeName, `(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`) p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`) p.P(`size2 := `, protoPkg.Use(), `.Size(p)`) p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(p)`) p.P(`if err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`) p.Out() p.P(`}`) p.P(`size := p.`, sizeName, `()`) p.P(`if len(dAtA) != size {`) p.In() p.P(`t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA))`) p.Out() p.P(`}`) p.P(`if size2 != size {`) p.In() p.P(`t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2)`) p.Out() p.P(`}`) p.P(`size3 := `, protoPkg.Use(), `.Size(p)`) p.P(`if size3 != size {`) p.In() p.P(`t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3)`) p.Out() p.P(`}`) p.Out() p.P(`}`) p.P() } if gogoproto.HasBenchGen(file.FileDescriptorProto, message.DescriptorProto) { used = true p.P(`func Benchmark`, ccTypeName, sizeName, `(b *`, testingPkg.Use(), `.B) {`) p.In() p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(616))`) p.P(`total := 0`) p.P(`pops := make([]*`, ccTypeName, `, 1000)`) p.P(`for i := 0; i < 1000; i++ {`) p.In() p.P(`pops[i] = NewPopulated`, ccTypeName, `(popr, false)`) p.Out() p.P(`}`) p.P(`b.ResetTimer()`) p.P(`for i := 0; i < b.N; i++ {`) p.In() p.P(`total += pops[i%1000].`, sizeName, `()`) p.Out() p.P(`}`) p.P(`b.SetBytes(int64(total / b.N))`) p.Out() p.P(`}`) p.P() } } return used } func init() { testgen.RegisterTestPlugin(NewTest) } golang-gogoprotobuf-0.5/plugin/stringer/000077500000000000000000000000001317075173200205005ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/stringer/stringer.go000066400000000000000000000234751317075173200226770ustar00rootroot00000000000000// 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. /* The stringer plugin generates a String method for each message. It is enabled by the following extensions: - stringer - stringer_all The stringer plugin also generates a test given it is enabled using one of the following extensions: - testgen - testgen_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: option (gogoproto.goproto_stringer_all) = false; option (gogoproto.stringer_all) = true; message A { optional string Description = 1 [(gogoproto.nullable) = false]; optional int64 Number = 2 [(gogoproto.nullable) = false]; optional bytes Id = 3 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uuid", (gogoproto.nullable) = false]; } given to the stringer stringer, will generate the following code: func (this *A) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&A{`, `Description:` + fmt.Sprintf("%v", this.Description) + `,`, `Number:` + fmt.Sprintf("%v", this.Number) + `,`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } and the following test code: func TestAStringer(t *testing4.T) { popr := math_rand4.New(math_rand4.NewSource(time4.Now().UnixNano())) p := NewPopulatedA(popr, false) s1 := p.String() s2 := fmt1.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } Typically fmt.Printf("%v") will stop to print when it reaches a pointer and not print their values, while the generated String method will always print all values, recursively. */ package stringer import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" "strings" ) type stringer struct { *generator.Generator generator.PluginImports atleastOne bool localName string } func NewStringer() *stringer { return &stringer{} } func (p *stringer) Name() string { return "stringer" } func (p *stringer) Init(g *generator.Generator) { p.Generator = g } func (p *stringer) Generate(file *generator.FileDescriptor) { proto3 := gogoproto.IsProto3(file.FileDescriptorProto) p.PluginImports = generator.NewPluginImports(p.Generator) p.atleastOne = false p.localName = generator.FileName(file) fmtPkg := p.NewImport("fmt") stringsPkg := p.NewImport("strings") reflectPkg := p.NewImport("reflect") sortKeysPkg := p.NewImport("github.com/gogo/protobuf/sortkeys") protoPkg := p.NewImport("github.com/gogo/protobuf/proto") for _, message := range file.Messages() { if !gogoproto.IsStringer(file.FileDescriptorProto, message.DescriptorProto) { continue } if gogoproto.EnabledGoStringer(file.FileDescriptorProto, message.DescriptorProto) { panic("old string method needs to be disabled, please use gogoproto.goproto_stringer or gogoproto.goproto_stringer_all and set it to false") } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } p.atleastOne = true ccTypeName := generator.CamelCaseSlice(message.TypeName()) p.P(`func (this *`, ccTypeName, `) String() string {`) p.In() p.P(`if this == nil {`) p.In() p.P(`return "nil"`) p.Out() p.P(`}`) for _, field := range message.Field { if !p.IsMap(field) { continue } fieldname := p.GetFieldName(message, field) m := p.GoMapType(nil, field) mapgoTyp, keyField, keyAliasField := m.GoType, m.KeyField, m.KeyAliasField keysName := `keysFor` + fieldname keygoTyp, _ := p.GoType(nil, keyField) keygoTyp = strings.Replace(keygoTyp, "*", "", 1) keygoAliasTyp, _ := p.GoType(nil, keyAliasField) keygoAliasTyp = strings.Replace(keygoAliasTyp, "*", "", 1) keyCapTyp := generator.CamelCase(keygoTyp) p.P(keysName, ` := make([]`, keygoTyp, `, 0, len(this.`, fieldname, `))`) p.P(`for k, _ := range this.`, fieldname, ` {`) p.In() if keygoAliasTyp == keygoTyp { p.P(keysName, ` = append(`, keysName, `, k)`) } else { p.P(keysName, ` = append(`, keysName, `, `, keygoTyp, `(k))`) } p.Out() p.P(`}`) p.P(sortKeysPkg.Use(), `.`, keyCapTyp, `s(`, keysName, `)`) mapName := `mapStringFor` + fieldname p.P(mapName, ` := "`, mapgoTyp, `{"`) p.P(`for _, k := range `, keysName, ` {`) p.In() if keygoAliasTyp == keygoTyp { p.P(mapName, ` += fmt.Sprintf("%v: %v,", k, this.`, fieldname, `[k])`) } else { p.P(mapName, ` += fmt.Sprintf("%v: %v,", k, this.`, fieldname, `[`, keygoAliasTyp, `(k)])`) } p.Out() p.P(`}`) p.P(mapName, ` += "}"`) } p.P("s := ", stringsPkg.Use(), ".Join([]string{`&", ccTypeName, "{`,") oneofs := make(map[string]struct{}) for _, field := range message.Field { nullable := gogoproto.IsNullable(field) repeated := field.IsRepeated() fieldname := p.GetFieldName(message, field) oneof := field.OneofIndex != nil if oneof { if _, ok := oneofs[fieldname]; ok { continue } else { oneofs[fieldname] = struct{}{} } p.P("`", fieldname, ":`", ` + `, fmtPkg.Use(), `.Sprintf("%v", this.`, fieldname, ") + `,", "`,") } else if p.IsMap(field) { mapName := `mapStringFor` + fieldname p.P("`", fieldname, ":`", ` + `, mapName, " + `,", "`,") } else if (field.IsMessage() && !gogoproto.IsCustomType(field)) || p.IsGroup(field) { desc := p.ObjectNamed(field.GetTypeName()) msgname := p.TypeName(desc) msgnames := strings.Split(msgname, ".") typeName := msgnames[len(msgnames)-1] if nullable { p.P("`", fieldname, ":`", ` + `, stringsPkg.Use(), `.Replace(`, fmtPkg.Use(), `.Sprintf("%v", this.`, fieldname, `), "`, typeName, `","`, msgname, `"`, ", 1) + `,", "`,") } else if repeated { p.P("`", fieldname, ":`", ` + `, stringsPkg.Use(), `.Replace(`, stringsPkg.Use(), `.Replace(`, fmtPkg.Use(), `.Sprintf("%v", this.`, fieldname, `), "`, typeName, `","`, msgname, `"`, ", 1),`&`,``,1) + `,", "`,") } else { p.P("`", fieldname, ":`", ` + `, stringsPkg.Use(), `.Replace(`, stringsPkg.Use(), `.Replace(this.`, fieldname, `.String(), "`, typeName, `","`, msgname, `"`, ", 1),`&`,``,1) + `,", "`,") } } else { if nullable && !repeated && !proto3 { p.P("`", fieldname, ":`", ` + valueToString`, p.localName, `(this.`, fieldname, ") + `,", "`,") } else { p.P("`", fieldname, ":`", ` + `, fmtPkg.Use(), `.Sprintf("%v", this.`, fieldname, ") + `,", "`,") } } } if message.DescriptorProto.HasExtension() { if gogoproto.HasExtensionsMap(file.FileDescriptorProto, message.DescriptorProto) { p.P("`XXX_InternalExtensions:` + ", protoPkg.Use(), ".StringFromInternalExtension(this) + `,`,") } else { p.P("`XXX_extensions:` + ", protoPkg.Use(), ".StringFromExtensionsBytes(this.XXX_extensions) + `,`,") } } if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) { p.P("`XXX_unrecognized:` + ", fmtPkg.Use(), `.Sprintf("%v", this.XXX_unrecognized) + `, "`,`,") } p.P("`}`,") p.P(`}`, `,""`, ")") p.P(`return s`) p.Out() p.P(`}`) //Generate String methods for oneof fields for _, field := range message.Field { oneof := field.OneofIndex != nil if !oneof { continue } ccTypeName := p.OneOfTypeName(message, field) p.P(`func (this *`, ccTypeName, `) String() string {`) p.In() p.P(`if this == nil {`) p.In() p.P(`return "nil"`) p.Out() p.P(`}`) p.P("s := ", stringsPkg.Use(), ".Join([]string{`&", ccTypeName, "{`,") fieldname := p.GetOneOfFieldName(message, field) if field.IsMessage() || p.IsGroup(field) { desc := p.ObjectNamed(field.GetTypeName()) msgname := p.TypeName(desc) msgnames := strings.Split(msgname, ".") typeName := msgnames[len(msgnames)-1] p.P("`", fieldname, ":`", ` + `, stringsPkg.Use(), `.Replace(`, fmtPkg.Use(), `.Sprintf("%v", this.`, fieldname, `), "`, typeName, `","`, msgname, `"`, ", 1) + `,", "`,") } else { p.P("`", fieldname, ":`", ` + `, fmtPkg.Use(), `.Sprintf("%v", this.`, fieldname, ") + `,", "`,") } p.P("`}`,") p.P(`}`, `,""`, ")") p.P(`return s`) p.Out() p.P(`}`) } } if !p.atleastOne { return } p.P(`func valueToString`, p.localName, `(v interface{}) string {`) p.In() p.P(`rv := `, reflectPkg.Use(), `.ValueOf(v)`) p.P(`if rv.IsNil() {`) p.In() p.P(`return "nil"`) p.Out() p.P(`}`) p.P(`pv := `, reflectPkg.Use(), `.Indirect(rv).Interface()`) p.P(`return `, fmtPkg.Use(), `.Sprintf("*%v", pv)`) p.Out() p.P(`}`) } func init() { generator.RegisterPlugin(NewStringer()) } golang-gogoprotobuf-0.5/plugin/stringer/stringertest.go000066400000000000000000000055451317075173200235750ustar00rootroot00000000000000// 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. package stringer import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/plugin/testgen" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type test struct { *generator.Generator } func NewTest(g *generator.Generator) testgen.TestPlugin { return &test{g} } func (p *test) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") testingPkg := imports.NewImport("testing") fmtPkg := imports.NewImport("fmt") for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if !gogoproto.IsStringer(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { used = true p.P(`func Test`, ccTypeName, `Stringer(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(`, timePkg.Use(), `.Now().UnixNano()))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, false)`) p.P(`s1 := p.String()`) p.P(`s2 := `, fmtPkg.Use(), `.Sprintf("%v", p)`) p.P(`if s1 != s2 {`) p.In() p.P(`t.Fatalf("String want %v got %v", s1, s2)`) p.Out() p.P(`}`) p.Out() p.P(`}`) } } return used } func init() { testgen.RegisterTestPlugin(NewTest) } golang-gogoprotobuf-0.5/plugin/testgen/000077500000000000000000000000001317075173200203145ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/testgen/testgen.go000066400000000000000000000430331317075173200223170ustar00rootroot00000000000000// 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. /* The testgen plugin generates Test and Benchmark functions for each message. Tests are enabled using the following extensions: - testgen - testgen_all Benchmarks are enabled using the following extensions: - benchgen - benchgen_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: option (gogoproto.testgen_all) = true; option (gogoproto.benchgen_all) = true; message A { optional string Description = 1 [(gogoproto.nullable) = false]; optional int64 Number = 2 [(gogoproto.nullable) = false]; optional bytes Id = 3 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uuid", (gogoproto.nullable) = false]; } given to the testgen plugin, will generate the following test code: func TestAProto(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", msg, p, err) } if !p.Equal(msg) { t.Fatalf("%#v !Proto %#v", msg, p) } } func BenchmarkAProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*A, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedA(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedA(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &A{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAJSON(t *testing1.T) { popr := math_rand1.New(math_rand1.NewSource(time1.Now().UnixNano())) p := NewPopulatedA(popr, true) jsondata, err := encoding_json.Marshal(p) if err != nil { panic(err) } msg := &A{} err = encoding_json.Unmarshal(jsondata, msg) if err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", msg, p, err) } if !p.Equal(msg) { t.Fatalf("%#v !Json Equal %#v", msg, p) } } func TestAProtoText(t *testing2.T) { popr := math_rand2.New(math_rand2.NewSource(time2.Now().UnixNano())) p := NewPopulatedA(popr, true) dAtA := github_com_gogo_protobuf_proto1.MarshalTextString(p) msg := &A{} if err := github_com_gogo_protobuf_proto1.UnmarshalText(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", msg, p, err) } if !p.Equal(msg) { t.Fatalf("%#v !Proto %#v", msg, p) } } func TestAProtoCompactText(t *testing2.T) { popr := math_rand2.New(math_rand2.NewSource(time2.Now().UnixNano())) p := NewPopulatedA(popr, true) dAtA := github_com_gogo_protobuf_proto1.CompactTextString(p) msg := &A{} if err := github_com_gogo_protobuf_proto1.UnmarshalText(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", msg, p, err) } if !p.Equal(msg) { t.Fatalf("%#v !Proto %#v", msg, p) } } Other registered tests are also generated. Tests are registered to this test plugin by calling the following function. func RegisterTestPlugin(newFunc NewTestPlugin) where NewTestPlugin is: type NewTestPlugin func(g *generator.Generator) TestPlugin and TestPlugin is an interface: type TestPlugin interface { Generate(imports generator.PluginImports, file *generator.FileDescriptor) (used bool) } Plugins that use this interface include: - populate - gostring - equal - union - and more Please look at these plugins as examples of how to create your own. A good idea is to let each plugin generate its own tests. */ package testgen import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type TestPlugin interface { Generate(imports generator.PluginImports, file *generator.FileDescriptor) (used bool) } type NewTestPlugin func(g *generator.Generator) TestPlugin var testplugins = make([]NewTestPlugin, 0) func RegisterTestPlugin(newFunc NewTestPlugin) { testplugins = append(testplugins, newFunc) } type plugin struct { *generator.Generator generator.PluginImports tests []TestPlugin } func NewPlugin() *plugin { return &plugin{} } func (p *plugin) Name() string { return "testgen" } func (p *plugin) Init(g *generator.Generator) { p.Generator = g p.tests = make([]TestPlugin, 0, len(testplugins)) for i := range testplugins { p.tests = append(p.tests, testplugins[i](g)) } } func (p *plugin) Generate(file *generator.FileDescriptor) { p.PluginImports = generator.NewPluginImports(p.Generator) atLeastOne := false for i := range p.tests { used := p.tests[i].Generate(p.PluginImports, file) if used { atLeastOne = true } } if atLeastOne { p.P(`//These tests are generated by github.com/gogo/protobuf/plugin/testgen`) } } type testProto struct { *generator.Generator } func newProto(g *generator.Generator) TestPlugin { return &testProto{g} } func (p *testProto) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false testingPkg := imports.NewImport("testing") randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") protoPkg := imports.NewImport("github.com/gogo/protobuf/proto") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = imports.NewImport("github.com/golang/protobuf/proto") } for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { used = true p.P(`func Test`, ccTypeName, `Proto(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`) p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, false)`) p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(p)`) p.P(`if err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`) p.Out() p.P(`}`) p.P(`msg := &`, ccTypeName, `{}`) p.P(`if err := `, protoPkg.Use(), `.Unmarshal(dAtA, msg); err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`) p.Out() p.P(`}`) p.P(`littlefuzz := make([]byte, len(dAtA))`) p.P(`copy(littlefuzz, dAtA)`) p.P(`for i := range dAtA {`) p.In() p.P(`dAtA[i] = byte(popr.Intn(256))`) p.Out() p.P(`}`) if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) { p.P(`if err := p.VerboseEqual(msg); err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`) p.Out() p.P(`}`) } p.P(`if !p.Equal(msg) {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)`) p.Out() p.P(`}`) p.P(`if len(littlefuzz) > 0 {`) p.In() p.P(`fuzzamount := 100`) p.P(`for i := 0; i < fuzzamount; i++ {`) p.In() p.P(`littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256))`) p.P(`littlefuzz = append(littlefuzz, byte(popr.Intn(256)))`) p.Out() p.P(`}`) p.P(`// shouldn't panic`) p.P(`_ = `, protoPkg.Use(), `.Unmarshal(littlefuzz, msg)`) p.Out() p.P(`}`) p.Out() p.P(`}`) p.P() } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { if gogoproto.IsMarshaler(file.FileDescriptorProto, message.DescriptorProto) || gogoproto.IsUnsafeMarshaler(file.FileDescriptorProto, message.DescriptorProto) { p.P(`func Test`, ccTypeName, `MarshalTo(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`) p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, false)`) if gogoproto.IsProtoSizer(file.FileDescriptorProto, message.DescriptorProto) { p.P(`size := p.ProtoSize()`) } else { p.P(`size := p.Size()`) } p.P(`dAtA := make([]byte, size)`) p.P(`for i := range dAtA {`) p.In() p.P(`dAtA[i] = byte(popr.Intn(256))`) p.Out() p.P(`}`) p.P(`_, err := p.MarshalTo(dAtA)`) p.P(`if err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`) p.Out() p.P(`}`) p.P(`msg := &`, ccTypeName, `{}`) p.P(`if err := `, protoPkg.Use(), `.Unmarshal(dAtA, msg); err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`) p.Out() p.P(`}`) p.P(`for i := range dAtA {`) p.In() p.P(`dAtA[i] = byte(popr.Intn(256))`) p.Out() p.P(`}`) if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) { p.P(`if err := p.VerboseEqual(msg); err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`) p.Out() p.P(`}`) } p.P(`if !p.Equal(msg) {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)`) p.Out() p.P(`}`) p.Out() p.P(`}`) p.P() } } if gogoproto.HasBenchGen(file.FileDescriptorProto, message.DescriptorProto) { used = true p.P(`func Benchmark`, ccTypeName, `ProtoMarshal(b *`, testingPkg.Use(), `.B) {`) p.In() p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(616))`) p.P(`total := 0`) p.P(`pops := make([]*`, ccTypeName, `, 10000)`) p.P(`for i := 0; i < 10000; i++ {`) p.In() p.P(`pops[i] = NewPopulated`, ccTypeName, `(popr, false)`) p.Out() p.P(`}`) p.P(`b.ResetTimer()`) p.P(`for i := 0; i < b.N; i++ {`) p.In() p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(pops[i%10000])`) p.P(`if err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.P(`total += len(dAtA)`) p.Out() p.P(`}`) p.P(`b.SetBytes(int64(total / b.N))`) p.Out() p.P(`}`) p.P() p.P(`func Benchmark`, ccTypeName, `ProtoUnmarshal(b *`, testingPkg.Use(), `.B) {`) p.In() p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(616))`) p.P(`total := 0`) p.P(`datas := make([][]byte, 10000)`) p.P(`for i := 0; i < 10000; i++ {`) p.In() p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(NewPopulated`, ccTypeName, `(popr, false))`) p.P(`if err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.P(`datas[i] = dAtA`) p.Out() p.P(`}`) p.P(`msg := &`, ccTypeName, `{}`) p.P(`b.ResetTimer()`) p.P(`for i := 0; i < b.N; i++ {`) p.In() p.P(`total += len(datas[i%10000])`) p.P(`if err := `, protoPkg.Use(), `.Unmarshal(datas[i%10000], msg); err != nil {`) p.In() p.P(`panic(err)`) p.Out() p.P(`}`) p.Out() p.P(`}`) p.P(`b.SetBytes(int64(total / b.N))`) p.Out() p.P(`}`) p.P() } } return used } type testJson struct { *generator.Generator } func newJson(g *generator.Generator) TestPlugin { return &testJson{g} } func (p *testJson) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false testingPkg := imports.NewImport("testing") randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") jsonPkg := imports.NewImport("github.com/gogo/protobuf/jsonpb") for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { used = true p.P(`func Test`, ccTypeName, `JSON(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`) p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`) p.P(`marshaler := `, jsonPkg.Use(), `.Marshaler{}`) p.P(`jsondata, err := marshaler.MarshalToString(p)`) p.P(`if err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`) p.Out() p.P(`}`) p.P(`msg := &`, ccTypeName, `{}`) p.P(`err = `, jsonPkg.Use(), `.UnmarshalString(jsondata, msg)`) p.P(`if err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`) p.Out() p.P(`}`) if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) { p.P(`if err := p.VerboseEqual(msg); err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`) p.Out() p.P(`}`) } p.P(`if !p.Equal(msg) {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p)`) p.Out() p.P(`}`) p.Out() p.P(`}`) } } return used } type testText struct { *generator.Generator } func newText(g *generator.Generator) TestPlugin { return &testText{g} } func (p *testText) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false testingPkg := imports.NewImport("testing") randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") protoPkg := imports.NewImport("github.com/gogo/protobuf/proto") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = imports.NewImport("github.com/golang/protobuf/proto") } //fmtPkg := imports.NewImport("fmt") for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if message.DescriptorProto.GetOptions().GetMapEntry() { continue } if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { used = true p.P(`func Test`, ccTypeName, `ProtoText(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`) p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`) p.P(`dAtA := `, protoPkg.Use(), `.MarshalTextString(p)`) p.P(`msg := &`, ccTypeName, `{}`) p.P(`if err := `, protoPkg.Use(), `.UnmarshalText(dAtA, msg); err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`) p.Out() p.P(`}`) if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) { p.P(`if err := p.VerboseEqual(msg); err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`) p.Out() p.P(`}`) } p.P(`if !p.Equal(msg) {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)`) p.Out() p.P(`}`) p.Out() p.P(`}`) p.P() p.P(`func Test`, ccTypeName, `ProtoCompactText(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`) p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`) p.P(`dAtA := `, protoPkg.Use(), `.CompactTextString(p)`) p.P(`msg := &`, ccTypeName, `{}`) p.P(`if err := `, protoPkg.Use(), `.UnmarshalText(dAtA, msg); err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`) p.Out() p.P(`}`) if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) { p.P(`if err := p.VerboseEqual(msg); err != nil {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`) p.Out() p.P(`}`) } p.P(`if !p.Equal(msg) {`) p.In() p.P(`t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)`) p.Out() p.P(`}`) p.Out() p.P(`}`) p.P() } } return used } func init() { RegisterTestPlugin(newProto) RegisterTestPlugin(newJson) RegisterTestPlugin(newText) } golang-gogoprotobuf-0.5/plugin/union/000077500000000000000000000000001317075173200177735ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/union/union.go000066400000000000000000000124651317075173200214620ustar00rootroot00000000000000// 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. /* The onlyone plugin generates code for the onlyone extension. 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 onlyone. The onlyone extension is not called union as this causes compile errors in the C++ generated code. There can only be one ;) It is enabled by the following extensions: - onlyone - onlyone_all The onlyone plugin also generates a test given it is enabled using one of the following extensions: - testgen - testgen_all Lets look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: message U { option (gogoproto.onlyone) = true; optional A A = 1; optional B B = 2; } given to the onlyone plugin, will generate code which looks a lot like this: func (this *U) GetValue() interface{} { if this.A != nil { return this.A } if this.B != nil { return this.B } return nil } func (this *U) SetValue(value interface{}) bool { switch vt := value.(type) { case *A: this.A = vt case *B: this.B = vt default: return false } return true } and the following test code: func TestUUnion(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedU(popr) v := p.GetValue() msg := &U{} if !msg.SetValue(v) { t.Fatalf("Union: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !Union Equal %#v", msg, p) } } */ package union import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type union struct { *generator.Generator generator.PluginImports } func NewUnion() *union { return &union{} } func (p *union) Name() string { return "union" } func (p *union) Init(g *generator.Generator) { p.Generator = g } func (p *union) Generate(file *generator.FileDescriptor) { p.PluginImports = generator.NewPluginImports(p.Generator) for _, message := range file.Messages() { if !gogoproto.IsUnion(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.HasExtension() { panic("onlyone does not currently support extensions") } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } ccTypeName := generator.CamelCaseSlice(message.TypeName()) p.P(`func (this *`, ccTypeName, `) GetValue() interface{} {`) p.In() for _, field := range message.Field { fieldname := p.GetFieldName(message, field) if fieldname == "Value" { panic("cannot have a onlyone message " + ccTypeName + " with a field named Value") } p.P(`if this.`, fieldname, ` != nil {`) p.In() p.P(`return this.`, fieldname) p.Out() p.P(`}`) } p.P(`return nil`) p.Out() p.P(`}`) p.P(``) p.P(`func (this *`, ccTypeName, `) SetValue(value interface{}) bool {`) p.In() p.P(`switch vt := value.(type) {`) p.In() for _, field := range message.Field { fieldname := p.GetFieldName(message, field) goTyp, _ := p.GoType(message, field) p.P(`case `, goTyp, `:`) p.In() p.P(`this.`, fieldname, ` = vt`) p.Out() } p.P(`default:`) p.In() for _, field := range message.Field { fieldname := p.GetFieldName(message, field) if field.IsMessage() { goTyp, _ := p.GoType(message, field) obj := p.ObjectNamed(field.GetTypeName()).(*generator.Descriptor) if gogoproto.IsUnion(obj.File(), obj.DescriptorProto) { p.P(`this.`, fieldname, ` = new(`, generator.GoTypeToName(goTyp), `)`) p.P(`if set := this.`, fieldname, `.SetValue(value); set {`) p.In() p.P(`return true`) p.Out() p.P(`}`) p.P(`this.`, fieldname, ` = nil`) } } } p.P(`return false`) p.Out() p.P(`}`) p.P(`return true`) p.Out() p.P(`}`) } } func init() { generator.RegisterPlugin(NewUnion()) } golang-gogoprotobuf-0.5/plugin/union/uniontest.go000066400000000000000000000056161317075173200223620ustar00rootroot00000000000000// 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. package union import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/plugin/testgen" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type test struct { *generator.Generator } func NewTest(g *generator.Generator) testgen.TestPlugin { return &test{g} } func (p *test) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool { used := false randPkg := imports.NewImport("math/rand") timePkg := imports.NewImport("time") testingPkg := imports.NewImport("testing") for _, message := range file.Messages() { if !gogoproto.IsUnion(file.FileDescriptorProto, message.DescriptorProto) || !gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } used = true ccTypeName := generator.CamelCaseSlice(message.TypeName()) p.P(`func Test`, ccTypeName, `OnlyOne(t *`, testingPkg.Use(), `.T) {`) p.In() p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(`, timePkg.Use(), `.Now().UnixNano()))`) p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`) p.P(`v := p.GetValue()`) p.P(`msg := &`, ccTypeName, `{}`) p.P(`if !msg.SetValue(v) {`) p.In() p.P(`t.Fatalf("OnlyOne: Could not set Value")`) p.Out() p.P(`}`) p.P(`if !p.Equal(msg) {`) p.In() p.P(`t.Fatalf("%#v !OnlyOne Equal %#v", msg, p)`) p.Out() p.P(`}`) p.Out() p.P(`}`) } return used } func init() { testgen.RegisterTestPlugin(NewTest) } golang-gogoprotobuf-0.5/plugin/unmarshal/000077500000000000000000000000001317075173200206355ustar00rootroot00000000000000golang-gogoprotobuf-0.5/plugin/unmarshal/unmarshal.go000066400000000000000000001173541317075173200231710ustar00rootroot00000000000000// 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. /* The unmarshal plugin generates a Unmarshal method for each message. The `Unmarshal([]byte) error` method results in the fact that the message implements the Unmarshaler interface. The allows proto.Unmarshal to be faster by calling the generated Unmarshal method rather than using reflect. If is enabled by the following extensions: - unmarshaler - unmarshaler_all Or the following extensions: - unsafe_unmarshaler - unsafe_unmarshaler_all That is if you want to use the unsafe package in your generated code. The speed up using the unsafe package is not very significant. The generation of unmarshalling tests are enabled using one of the following extensions: - testgen - testgen_all And benchmarks given it is enabled using one of the following extensions: - benchgen - benchgen_all Let us look at: github.com/gogo/protobuf/test/example/example.proto Btw all the output can be seen at: github.com/gogo/protobuf/test/example/* The following message: option (gogoproto.unmarshaler_all) = true; message B { option (gogoproto.description) = true; optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } given to the unmarshal plugin, will generate the following code: func (m *B) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) switch fieldNum { case 1: if wireType != 2 { return proto.ErrWrongType } var msglen int for shift := uint(0); ; shift += 7 { if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.A.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return proto.ErrWrongType } var byteLen int for shift := uint(0); ; shift += 7 { if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.G = append(m.G, github_com_gogo_protobuf_test_custom.Uint128{}) if err := m.G[len(m.G)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: var sizeOfWire int for { sizeOfWire++ wire >>= 7 if wire == 0 { break } } iNdEx -= sizeOfWire skippy, err := skip(dAtA[iNdEx:]) if err != nil { return err } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } return nil } Remember when using this code to call proto.Unmarshal. This will call m.Reset and invoke the generated Unmarshal method for you. If you call m.Unmarshal without m.Reset you could be merging protocol buffers. */ package unmarshal import ( "fmt" "strconv" "strings" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) type unmarshal struct { *generator.Generator generator.PluginImports atleastOne bool ioPkg generator.Single mathPkg generator.Single typesPkg generator.Single binaryPkg generator.Single localName string } func NewUnmarshal() *unmarshal { return &unmarshal{} } func (p *unmarshal) Name() string { return "unmarshal" } func (p *unmarshal) Init(g *generator.Generator) { p.Generator = g } func (p *unmarshal) decodeVarint(varName string, typName string) { p.P(`for shift := uint(0); ; shift += 7 {`) p.In() p.P(`if shift >= 64 {`) p.In() p.P(`return ErrIntOverflow` + p.localName) p.Out() p.P(`}`) p.P(`if iNdEx >= l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) p.P(`b := dAtA[iNdEx]`) p.P(`iNdEx++`) p.P(varName, ` |= (`, typName, `(b) & 0x7F) << shift`) p.P(`if b < 0x80 {`) p.In() p.P(`break`) p.Out() p.P(`}`) p.Out() p.P(`}`) } func (p *unmarshal) decodeFixed32(varName string, typeName string) { p.P(`if (iNdEx+4) > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) p.P(varName, ` = `, typeName, `(`, p.binaryPkg.Use(), `.LittleEndian.Uint32(dAtA[iNdEx:]))`) p.P(`iNdEx += 4`) } func (p *unmarshal) decodeFixed64(varName string, typeName string) { p.P(`if (iNdEx+8) > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) p.P(varName, ` = `, typeName, `(`, p.binaryPkg.Use(), `.LittleEndian.Uint64(dAtA[iNdEx:]))`) p.P(`iNdEx += 8`) } func (p *unmarshal) declareMapField(varName string, nullable bool, customType bool, field *descriptor.FieldDescriptorProto) { switch field.GetType() { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: p.P(`var `, varName, ` float64`) case descriptor.FieldDescriptorProto_TYPE_FLOAT: p.P(`var `, varName, ` float32`) case descriptor.FieldDescriptorProto_TYPE_INT64: p.P(`var `, varName, ` int64`) case descriptor.FieldDescriptorProto_TYPE_UINT64: p.P(`var `, varName, ` uint64`) case descriptor.FieldDescriptorProto_TYPE_INT32: p.P(`var `, varName, ` int32`) case descriptor.FieldDescriptorProto_TYPE_FIXED64: p.P(`var `, varName, ` uint64`) case descriptor.FieldDescriptorProto_TYPE_FIXED32: p.P(`var `, varName, ` uint32`) case descriptor.FieldDescriptorProto_TYPE_BOOL: p.P(`var `, varName, ` bool`) case descriptor.FieldDescriptorProto_TYPE_STRING: cast, _ := p.GoType(nil, field) cast = strings.Replace(cast, "*", "", 1) p.P(`var `, varName, ` `, cast) case descriptor.FieldDescriptorProto_TYPE_MESSAGE: if gogoproto.IsStdTime(field) { p.P(varName, ` := new(time.Time)`) } else if gogoproto.IsStdDuration(field) { p.P(varName, ` := new(time.Duration)`) } else { desc := p.ObjectNamed(field.GetTypeName()) msgname := p.TypeName(desc) if nullable { p.P(`var `, varName, ` *`, msgname) } else { p.P(varName, ` := &`, msgname, `{}`) } } case descriptor.FieldDescriptorProto_TYPE_BYTES: if customType { _, ctyp, err := generator.GetCustomType(field) if err != nil { panic(err) } p.P(`var `, varName, `1 `, ctyp) p.P(`var `, varName, ` = &`, varName, `1`) } else { p.P(varName, ` := []byte{}`) } case descriptor.FieldDescriptorProto_TYPE_UINT32: p.P(`var `, varName, ` uint32`) case descriptor.FieldDescriptorProto_TYPE_ENUM: typName := p.TypeName(p.ObjectNamed(field.GetTypeName())) p.P(`var `, varName, ` `, typName) case descriptor.FieldDescriptorProto_TYPE_SFIXED32: p.P(`var `, varName, ` int32`) case descriptor.FieldDescriptorProto_TYPE_SFIXED64: p.P(`var `, varName, ` int64`) case descriptor.FieldDescriptorProto_TYPE_SINT32: p.P(`var `, varName, ` int32`) case descriptor.FieldDescriptorProto_TYPE_SINT64: p.P(`var `, varName, ` int64`) } } func (p *unmarshal) mapField(varName string, customType bool, field *descriptor.FieldDescriptorProto) { switch field.GetType() { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: p.P(`var `, varName, `temp uint64`) p.decodeFixed64(varName+"temp", "uint64") p.P(varName, ` = `, p.mathPkg.Use(), `.Float64frombits(`, varName, `temp)`) case descriptor.FieldDescriptorProto_TYPE_FLOAT: p.P(`var `, varName, `temp uint32`) p.decodeFixed32(varName+"temp", "uint32") p.P(varName, ` = `, p.mathPkg.Use(), `.Float32frombits(`, varName, `temp)`) case descriptor.FieldDescriptorProto_TYPE_INT64: p.decodeVarint(varName, "int64") case descriptor.FieldDescriptorProto_TYPE_UINT64: p.decodeVarint(varName, "uint64") case descriptor.FieldDescriptorProto_TYPE_INT32: p.decodeVarint(varName, "int32") case descriptor.FieldDescriptorProto_TYPE_FIXED64: p.decodeFixed64(varName, "uint64") case descriptor.FieldDescriptorProto_TYPE_FIXED32: p.decodeFixed32(varName, "uint32") case descriptor.FieldDescriptorProto_TYPE_BOOL: p.P(`var `, varName, `temp int`) p.decodeVarint(varName+"temp", "int") p.P(varName, ` = bool(`, varName, `temp != 0)`) case descriptor.FieldDescriptorProto_TYPE_STRING: p.P(`var stringLen`, varName, ` uint64`) p.decodeVarint("stringLen"+varName, "uint64") p.P(`intStringLen`, varName, ` := int(stringLen`, varName, `)`) p.P(`if intStringLen`, varName, ` < 0 {`) p.In() p.P(`return ErrInvalidLength` + p.localName) p.Out() p.P(`}`) p.P(`postStringIndex`, varName, ` := iNdEx + intStringLen`, varName) p.P(`if postStringIndex`, varName, ` > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) cast, _ := p.GoType(nil, field) cast = strings.Replace(cast, "*", "", 1) p.P(varName, ` = `, cast, `(dAtA[iNdEx:postStringIndex`, varName, `])`) p.P(`iNdEx = postStringIndex`, varName) case descriptor.FieldDescriptorProto_TYPE_MESSAGE: p.P(`var mapmsglen int`) p.decodeVarint("mapmsglen", "int") p.P(`if mapmsglen < 0 {`) p.In() p.P(`return ErrInvalidLength` + p.localName) p.Out() p.P(`}`) p.P(`postmsgIndex := iNdEx + mapmsglen`) p.P(`if mapmsglen < 0 {`) p.In() p.P(`return ErrInvalidLength` + p.localName) p.Out() p.P(`}`) p.P(`if postmsgIndex > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) buf := `dAtA[iNdEx:postmsgIndex]` if gogoproto.IsStdTime(field) { p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(`, varName, `, `, buf, `); err != nil {`) } else if gogoproto.IsStdDuration(field) { p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(`, varName, `, `, buf, `); err != nil {`) } else { desc := p.ObjectNamed(field.GetTypeName()) msgname := p.TypeName(desc) p.P(varName, ` = &`, msgname, `{}`) p.P(`if err := `, varName, `.Unmarshal(`, buf, `); err != nil {`) } p.In() p.P(`return err`) p.Out() p.P(`}`) p.P(`iNdEx = postmsgIndex`) case descriptor.FieldDescriptorProto_TYPE_BYTES: p.P(`var mapbyteLen uint64`) p.decodeVarint("mapbyteLen", "uint64") p.P(`intMapbyteLen := int(mapbyteLen)`) p.P(`if intMapbyteLen < 0 {`) p.In() p.P(`return ErrInvalidLength` + p.localName) p.Out() p.P(`}`) p.P(`postbytesIndex := iNdEx + intMapbyteLen`) p.P(`if postbytesIndex > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) if customType { p.P(`if err := `, varName, `.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil {`) p.In() p.P(`return err`) p.Out() p.P(`}`) } else { p.P(varName, ` = make([]byte, mapbyteLen)`) p.P(`copy(`, varName, `, dAtA[iNdEx:postbytesIndex])`) } p.P(`iNdEx = postbytesIndex`) case descriptor.FieldDescriptorProto_TYPE_UINT32: p.decodeVarint(varName, "uint32") case descriptor.FieldDescriptorProto_TYPE_ENUM: typName := p.TypeName(p.ObjectNamed(field.GetTypeName())) p.decodeVarint(varName, typName) case descriptor.FieldDescriptorProto_TYPE_SFIXED32: p.decodeFixed32(varName, "int32") case descriptor.FieldDescriptorProto_TYPE_SFIXED64: p.decodeFixed64(varName, "int64") case descriptor.FieldDescriptorProto_TYPE_SINT32: p.P(`var `, varName, `temp int32`) p.decodeVarint(varName+"temp", "int32") p.P(varName, `temp = int32((uint32(`, varName, `temp) >> 1) ^ uint32(((`, varName, `temp&1)<<31)>>31))`) p.P(varName, ` = int32(`, varName, `temp)`) case descriptor.FieldDescriptorProto_TYPE_SINT64: p.P(`var `, varName, `temp uint64`) p.decodeVarint(varName+"temp", "uint64") p.P(varName, `temp = (`, varName, `temp >> 1) ^ uint64((int64(`, varName, `temp&1)<<63)>>63)`) p.P(varName, ` = int64(`, varName, `temp)`) } } func (p *unmarshal) noStarOrSliceType(msg *generator.Descriptor, field *descriptor.FieldDescriptorProto) string { typ, _ := p.GoType(msg, field) if typ[0] == '*' { return typ[1:] } if typ[0] == '[' && typ[1] == ']' { return typ[2:] } return typ } func (p *unmarshal) field(file *generator.FileDescriptor, msg *generator.Descriptor, field *descriptor.FieldDescriptorProto, fieldname string, proto3 bool) { repeated := field.IsRepeated() nullable := gogoproto.IsNullable(field) typ := p.noStarOrSliceType(msg, field) oneof := field.OneofIndex != nil switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: p.P(`var v uint64`) p.decodeFixed64("v", "uint64") if oneof { p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{`, typ, "(", p.mathPkg.Use(), `.Float64frombits(v))}`) } else if repeated { p.P(`v2 := `, typ, "(", p.mathPkg.Use(), `.Float64frombits(v))`) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v2)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = `, typ, "(", p.mathPkg.Use(), `.Float64frombits(v))`) } else { p.P(`v2 := `, typ, "(", p.mathPkg.Use(), `.Float64frombits(v))`) p.P(`m.`, fieldname, ` = &v2`) } case descriptor.FieldDescriptorProto_TYPE_FLOAT: p.P(`var v uint32`) p.decodeFixed32("v", "uint32") if oneof { p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{`, typ, "(", p.mathPkg.Use(), `.Float32frombits(v))}`) } else if repeated { p.P(`v2 := `, typ, "(", p.mathPkg.Use(), `.Float32frombits(v))`) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v2)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = `, typ, "(", p.mathPkg.Use(), `.Float32frombits(v))`) } else { p.P(`v2 := `, typ, "(", p.mathPkg.Use(), `.Float32frombits(v))`) p.P(`m.`, fieldname, ` = &v2`) } case descriptor.FieldDescriptorProto_TYPE_INT64: if oneof { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = 0`) p.decodeVarint("m."+fieldname, typ) } else { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_UINT64: if oneof { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = 0`) p.decodeVarint("m."+fieldname, typ) } else { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_INT32: if oneof { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = 0`) p.decodeVarint("m."+fieldname, typ) } else { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_FIXED64: if oneof { p.P(`var v `, typ) p.decodeFixed64("v", typ) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`var v `, typ) p.decodeFixed64("v", typ) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = 0`) p.decodeFixed64("m."+fieldname, typ) } else { p.P(`var v `, typ) p.decodeFixed64("v", typ) p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_FIXED32: if oneof { p.P(`var v `, typ) p.decodeFixed32("v", typ) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`var v `, typ) p.decodeFixed32("v", typ) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = 0`) p.decodeFixed32("m."+fieldname, typ) } else { p.P(`var v `, typ) p.decodeFixed32("v", typ) p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_BOOL: p.P(`var v int`) p.decodeVarint("v", "int") if oneof { p.P(`b := `, typ, `(v != 0)`) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{b}`) } else if repeated { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, typ, `(v != 0))`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = `, typ, `(v != 0)`) } else { p.P(`b := `, typ, `(v != 0)`) p.P(`m.`, fieldname, ` = &b`) } case descriptor.FieldDescriptorProto_TYPE_STRING: p.P(`var stringLen uint64`) p.decodeVarint("stringLen", "uint64") p.P(`intStringLen := int(stringLen)`) p.P(`if intStringLen < 0 {`) p.In() p.P(`return ErrInvalidLength` + p.localName) p.Out() p.P(`}`) p.P(`postIndex := iNdEx + intStringLen`) p.P(`if postIndex > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) if oneof { p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{`, typ, `(dAtA[iNdEx:postIndex])}`) } else if repeated { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, typ, `(dAtA[iNdEx:postIndex]))`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = `, typ, `(dAtA[iNdEx:postIndex])`) } else { p.P(`s := `, typ, `(dAtA[iNdEx:postIndex])`) p.P(`m.`, fieldname, ` = &s`) } p.P(`iNdEx = postIndex`) case descriptor.FieldDescriptorProto_TYPE_GROUP: panic(fmt.Errorf("unmarshaler does not support group %v", fieldname)) case descriptor.FieldDescriptorProto_TYPE_MESSAGE: desc := p.ObjectNamed(field.GetTypeName()) msgname := p.TypeName(desc) p.P(`var msglen int`) p.decodeVarint("msglen", "int") p.P(`if msglen < 0 {`) p.In() p.P(`return ErrInvalidLength` + p.localName) p.Out() p.P(`}`) p.P(`postIndex := iNdEx + msglen`) p.P(`if postIndex > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) if oneof { buf := `dAtA[iNdEx:postIndex]` if gogoproto.IsStdTime(field) { if nullable { p.P(`v := new(time.Time)`) p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(v, `, buf, `); err != nil {`) } else { p.P(`v := time.Time{}`) p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(&v, `, buf, `); err != nil {`) } } else if gogoproto.IsStdDuration(field) { if nullable { p.P(`v := new(time.Duration)`) p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(v, `, buf, `); err != nil {`) } else { p.P(`v := time.Duration(0)`) p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(&v, `, buf, `); err != nil {`) } } else { p.P(`v := &`, msgname, `{}`) p.P(`if err := v.Unmarshal(`, buf, `); err != nil {`) } p.In() p.P(`return err`) p.Out() p.P(`}`) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if p.IsMap(field) { m := p.GoMapType(nil, field) keygoTyp, _ := p.GoType(nil, m.KeyField) keygoAliasTyp, _ := p.GoType(nil, m.KeyAliasField) // keys may not be pointers keygoTyp = strings.Replace(keygoTyp, "*", "", 1) keygoAliasTyp = strings.Replace(keygoAliasTyp, "*", "", 1) valuegoTyp, _ := p.GoType(nil, m.ValueField) valuegoAliasTyp, _ := p.GoType(nil, m.ValueAliasField) // if the map type is an alias and key or values are aliases (type Foo map[Bar]Baz), // we need to explicitly record their use here. if gogoproto.IsCastKey(field) { p.RecordTypeUse(m.KeyAliasField.GetTypeName()) } if gogoproto.IsCastValue(field) { p.RecordTypeUse(m.ValueAliasField.GetTypeName()) } nullable, valuegoTyp, valuegoAliasTyp = generator.GoMapValueTypes(field, m.ValueField, valuegoTyp, valuegoAliasTyp) if gogoproto.IsStdTime(field) || gogoproto.IsStdDuration(field) { valuegoTyp = valuegoAliasTyp } p.P(`if m.`, fieldname, ` == nil {`) p.In() p.P(`m.`, fieldname, ` = make(`, m.GoType, `)`) p.Out() p.P(`}`) p.declareMapField("mapkey", false, false, m.KeyAliasField) p.declareMapField("mapvalue", nullable, gogoproto.IsCustomType(field), m.ValueAliasField) p.P(`for iNdEx < postIndex {`) p.In() p.P(`entryPreIndex := iNdEx`) p.P(`var wire uint64`) p.decodeVarint("wire", "uint64") p.P(`fieldNum := int32(wire >> 3)`) p.P(`if fieldNum == 1 {`) p.In() p.mapField("mapkey", false, m.KeyAliasField) p.Out() p.P(`} else if fieldNum == 2 {`) p.In() p.mapField("mapvalue", gogoproto.IsCustomType(field), m.ValueAliasField) p.Out() p.P(`} else {`) p.In() p.P(`iNdEx = entryPreIndex`) p.P(`skippy, err := skip`, p.localName, `(dAtA[iNdEx:])`) p.P(`if err != nil {`) p.In() p.P(`return err`) p.Out() p.P(`}`) p.P(`if skippy < 0 {`) p.In() p.P(`return ErrInvalidLength`, p.localName) p.Out() p.P(`}`) p.P(`if (iNdEx + skippy) > postIndex {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) p.P(`iNdEx += skippy`) p.Out() p.P(`}`) p.Out() p.P(`}`) s := `m.` + fieldname if keygoTyp == keygoAliasTyp { s += `[mapkey]` } else { s += `[` + keygoAliasTyp + `(mapkey)]` } v := `mapvalue` if (m.ValueField.IsMessage() || gogoproto.IsCustomType(field)) && !nullable { v = `*` + v } if valuegoTyp != valuegoAliasTyp { v = `((` + valuegoAliasTyp + `)(` + v + `))` } p.P(s, ` = `, v) } else if repeated { if gogoproto.IsStdTime(field) { if nullable { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, new(time.Time))`) } else { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, time.Time{})`) } } else if gogoproto.IsStdDuration(field) { if nullable { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, new(time.Duration))`) } else { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, time.Duration(0))`) } } else if nullable && !gogoproto.IsCustomType(field) { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, &`, msgname, `{})`) } else { goType, _ := p.GoType(nil, field) // remove the slice from the type, i.e. []*T -> *T goType = goType[2:] p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, goType, `{})`) } varName := `m.` + fieldname + `[len(m.` + fieldname + `)-1]` buf := `dAtA[iNdEx:postIndex]` if gogoproto.IsStdTime(field) { if nullable { p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(`, varName, `,`, buf, `); err != nil {`) } else { p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(&(`, varName, `),`, buf, `); err != nil {`) } } else if gogoproto.IsStdDuration(field) { if nullable { p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(`, varName, `,`, buf, `); err != nil {`) } else { p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(&(`, varName, `),`, buf, `); err != nil {`) } } else { p.P(`if err := `, varName, `.Unmarshal(`, buf, `); err != nil {`) } p.In() p.P(`return err`) p.Out() p.P(`}`) } else if nullable { p.P(`if m.`, fieldname, ` == nil {`) p.In() if gogoproto.IsStdTime(field) { p.P(`m.`, fieldname, ` = new(time.Time)`) } else if gogoproto.IsStdDuration(field) { p.P(`m.`, fieldname, ` = new(time.Duration)`) } else { goType, _ := p.GoType(nil, field) // remove the star from the type p.P(`m.`, fieldname, ` = &`, goType[1:], `{}`) } p.Out() p.P(`}`) if gogoproto.IsStdTime(field) { p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(m.`, fieldname, `, dAtA[iNdEx:postIndex]); err != nil {`) } else if gogoproto.IsStdDuration(field) { p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(m.`, fieldname, `, dAtA[iNdEx:postIndex]); err != nil {`) } else { p.P(`if err := m.`, fieldname, `.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`) } p.In() p.P(`return err`) p.Out() p.P(`}`) } else { if gogoproto.IsStdTime(field) { p.P(`if err := `, p.typesPkg.Use(), `.StdTimeUnmarshal(&m.`, fieldname, `, dAtA[iNdEx:postIndex]); err != nil {`) } else if gogoproto.IsStdDuration(field) { p.P(`if err := `, p.typesPkg.Use(), `.StdDurationUnmarshal(&m.`, fieldname, `, dAtA[iNdEx:postIndex]); err != nil {`) } else { p.P(`if err := m.`, fieldname, `.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`) } p.In() p.P(`return err`) p.Out() p.P(`}`) } p.P(`iNdEx = postIndex`) case descriptor.FieldDescriptorProto_TYPE_BYTES: p.P(`var byteLen int`) p.decodeVarint("byteLen", "int") p.P(`if byteLen < 0 {`) p.In() p.P(`return ErrInvalidLength` + p.localName) p.Out() p.P(`}`) p.P(`postIndex := iNdEx + byteLen`) p.P(`if postIndex > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) if !gogoproto.IsCustomType(field) { if oneof { p.P(`v := make([]byte, postIndex-iNdEx)`) p.P(`copy(v, dAtA[iNdEx:postIndex])`) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, make([]byte, postIndex-iNdEx))`) p.P(`copy(m.`, fieldname, `[len(m.`, fieldname, `)-1], dAtA[iNdEx:postIndex])`) } else { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `[:0] , dAtA[iNdEx:postIndex]...)`) p.P(`if m.`, fieldname, ` == nil {`) p.In() p.P(`m.`, fieldname, ` = []byte{}`) p.Out() p.P(`}`) } } else { _, ctyp, err := generator.GetCustomType(field) if err != nil { panic(err) } if oneof { p.P(`var vv `, ctyp) p.P(`v := &vv`) p.P(`if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`) p.In() p.P(`return err`) p.Out() p.P(`}`) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{*v}`) } else if repeated { p.P(`var v `, ctyp) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) p.P(`if err := m.`, fieldname, `[len(m.`, fieldname, `)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`) p.In() p.P(`return err`) p.Out() p.P(`}`) } else if nullable { p.P(`var v `, ctyp) p.P(`m.`, fieldname, ` = &v`) p.P(`if err := m.`, fieldname, `.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`) p.In() p.P(`return err`) p.Out() p.P(`}`) } else { p.P(`if err := m.`, fieldname, `.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {`) p.In() p.P(`return err`) p.Out() p.P(`}`) } } p.P(`iNdEx = postIndex`) case descriptor.FieldDescriptorProto_TYPE_UINT32: if oneof { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = 0`) p.decodeVarint("m."+fieldname, typ) } else { p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_ENUM: typName := p.TypeName(p.ObjectNamed(field.GetTypeName())) if oneof { p.P(`var v `, typName) p.decodeVarint("v", typName) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`var v `, typName) p.decodeVarint("v", typName) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = 0`) p.decodeVarint("m."+fieldname, typName) } else { p.P(`var v `, typName) p.decodeVarint("v", typName) p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_SFIXED32: if oneof { p.P(`var v `, typ) p.decodeFixed32("v", typ) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`var v `, typ) p.decodeFixed32("v", typ) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = 0`) p.decodeFixed32("m."+fieldname, typ) } else { p.P(`var v `, typ) p.decodeFixed32("v", typ) p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_SFIXED64: if oneof { p.P(`var v `, typ) p.decodeFixed64("v", typ) p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`var v `, typ) p.decodeFixed64("v", typ) p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = 0`) p.decodeFixed64("m."+fieldname, typ) } else { p.P(`var v `, typ) p.decodeFixed64("v", typ) p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_SINT32: p.P(`var v `, typ) p.decodeVarint("v", typ) p.P(`v = `, typ, `((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31))`) if oneof { p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{v}`) } else if repeated { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = v`) } else { p.P(`m.`, fieldname, ` = &v`) } case descriptor.FieldDescriptorProto_TYPE_SINT64: p.P(`var v uint64`) p.decodeVarint("v", "uint64") p.P(`v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63)`) if oneof { p.P(`m.`, fieldname, ` = &`, p.OneOfTypeName(msg, field), `{`, typ, `(v)}`) } else if repeated { p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, typ, `(v))`) } else if proto3 || !nullable { p.P(`m.`, fieldname, ` = `, typ, `(v)`) } else { p.P(`v2 := `, typ, `(v)`) p.P(`m.`, fieldname, ` = &v2`) } default: panic("not implemented") } } func (p *unmarshal) Generate(file *generator.FileDescriptor) { proto3 := gogoproto.IsProto3(file.FileDescriptorProto) p.PluginImports = generator.NewPluginImports(p.Generator) p.atleastOne = false p.localName = generator.FileName(file) p.ioPkg = p.NewImport("io") p.mathPkg = p.NewImport("math") p.typesPkg = p.NewImport("github.com/gogo/protobuf/types") p.binaryPkg = p.NewImport("encoding/binary") fmtPkg := p.NewImport("fmt") protoPkg := p.NewImport("github.com/gogo/protobuf/proto") if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { protoPkg = p.NewImport("github.com/golang/protobuf/proto") } for _, message := range file.Messages() { ccTypeName := generator.CamelCaseSlice(message.TypeName()) if !gogoproto.IsUnmarshaler(file.FileDescriptorProto, message.DescriptorProto) && !gogoproto.IsUnsafeUnmarshaler(file.FileDescriptorProto, message.DescriptorProto) { continue } if message.DescriptorProto.GetOptions().GetMapEntry() { continue } p.atleastOne = true // build a map required field_id -> bitmask offset rfMap := make(map[int32]uint) rfNextId := uint(0) for _, field := range message.Field { if field.IsRequired() { rfMap[field.GetNumber()] = rfNextId rfNextId++ } } rfCount := len(rfMap) p.P(`func (m *`, ccTypeName, `) Unmarshal(dAtA []byte) error {`) p.In() if rfCount > 0 { p.P(`var hasFields [`, strconv.Itoa(1+(rfCount-1)/64), `]uint64`) } p.P(`l := len(dAtA)`) p.P(`iNdEx := 0`) p.P(`for iNdEx < l {`) p.In() p.P(`preIndex := iNdEx`) p.P(`var wire uint64`) p.decodeVarint("wire", "uint64") p.P(`fieldNum := int32(wire >> 3)`) if len(message.Field) > 0 || !message.IsGroup() { p.P(`wireType := int(wire & 0x7)`) } if !message.IsGroup() { p.P(`if wireType == `, strconv.Itoa(proto.WireEndGroup), ` {`) p.In() p.P(`return `, fmtPkg.Use(), `.Errorf("proto: `+message.GetName()+`: wiretype end group for non-group")`) p.Out() p.P(`}`) } p.P(`if fieldNum <= 0 {`) p.In() p.P(`return `, fmtPkg.Use(), `.Errorf("proto: `+message.GetName()+`: illegal tag %d (wire type %d)", fieldNum, wire)`) p.Out() p.P(`}`) p.P(`switch fieldNum {`) p.In() for _, field := range message.Field { fieldname := p.GetFieldName(message, field) errFieldname := fieldname if field.OneofIndex != nil { errFieldname = p.GetOneOfFieldName(message, field) } possiblyPacked := field.IsScalar() && field.IsRepeated() p.P(`case `, strconv.Itoa(int(field.GetNumber())), `:`) p.In() wireType := field.WireType() if possiblyPacked { p.P(`if wireType == `, strconv.Itoa(wireType), `{`) p.In() p.field(file, message, field, fieldname, false) p.Out() p.P(`} else if wireType == `, strconv.Itoa(proto.WireBytes), `{`) p.In() p.P(`var packedLen int`) p.decodeVarint("packedLen", "int") p.P(`if packedLen < 0 {`) p.In() p.P(`return ErrInvalidLength` + p.localName) p.Out() p.P(`}`) p.P(`postIndex := iNdEx + packedLen`) p.P(`if postIndex > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) p.P(`for iNdEx < postIndex {`) p.In() p.field(file, message, field, fieldname, false) p.Out() p.P(`}`) p.Out() p.P(`} else {`) p.In() p.P(`return ` + fmtPkg.Use() + `.Errorf("proto: wrong wireType = %d for field ` + errFieldname + `", wireType)`) p.Out() p.P(`}`) } else { p.P(`if wireType != `, strconv.Itoa(wireType), `{`) p.In() p.P(`return ` + fmtPkg.Use() + `.Errorf("proto: wrong wireType = %d for field ` + errFieldname + `", wireType)`) p.Out() p.P(`}`) p.field(file, message, field, fieldname, proto3) } if field.IsRequired() { fieldBit, ok := rfMap[field.GetNumber()] if !ok { panic("field is required, but no bit registered") } p.P(`hasFields[`, strconv.Itoa(int(fieldBit/64)), `] |= uint64(`, fmt.Sprintf("0x%08x", 1<<(fieldBit%64)), `)`) } } p.Out() p.P(`default:`) p.In() if message.DescriptorProto.HasExtension() { c := []string{} for _, erange := range message.GetExtensionRange() { c = append(c, `((fieldNum >= `+strconv.Itoa(int(erange.GetStart()))+") && (fieldNum<"+strconv.Itoa(int(erange.GetEnd()))+`))`) } p.P(`if `, strings.Join(c, "||"), `{`) p.In() p.P(`var sizeOfWire int`) p.P(`for {`) p.In() p.P(`sizeOfWire++`) p.P(`wire >>= 7`) p.P(`if wire == 0 {`) p.In() p.P(`break`) p.Out() p.P(`}`) p.Out() p.P(`}`) p.P(`iNdEx-=sizeOfWire`) p.P(`skippy, err := skip`, p.localName+`(dAtA[iNdEx:])`) p.P(`if err != nil {`) p.In() p.P(`return err`) p.Out() p.P(`}`) p.P(`if skippy < 0 {`) p.In() p.P(`return ErrInvalidLength`, p.localName) p.Out() p.P(`}`) p.P(`if (iNdEx + skippy) > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) p.P(protoPkg.Use(), `.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy])`) p.P(`iNdEx += skippy`) p.Out() p.P(`} else {`) p.In() } p.P(`iNdEx=preIndex`) p.P(`skippy, err := skip`, p.localName, `(dAtA[iNdEx:])`) p.P(`if err != nil {`) p.In() p.P(`return err`) p.Out() p.P(`}`) p.P(`if skippy < 0 {`) p.In() p.P(`return ErrInvalidLength`, p.localName) p.Out() p.P(`}`) p.P(`if (iNdEx + skippy) > l {`) p.In() p.P(`return `, p.ioPkg.Use(), `.ErrUnexpectedEOF`) p.Out() p.P(`}`) if gogoproto.HasUnrecognized(file.FileDescriptorProto, message.DescriptorProto) { p.P(`m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)`) } p.P(`iNdEx += skippy`) p.Out() if message.DescriptorProto.HasExtension() { p.Out() p.P(`}`) } p.Out() p.P(`}`) p.Out() p.P(`}`) for _, field := range message.Field { if !field.IsRequired() { continue } fieldBit, ok := rfMap[field.GetNumber()] if !ok { panic("field is required, but no bit registered") } p.P(`if hasFields[`, strconv.Itoa(int(fieldBit/64)), `] & uint64(`, fmt.Sprintf("0x%08x", 1<<(fieldBit%64)), `) == 0 {`) p.In() if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { p.P(`return new(`, protoPkg.Use(), `.RequiredNotSetError)`) } else { p.P(`return `, protoPkg.Use(), `.NewRequiredNotSetError("`, field.GetName(), `")`) } p.Out() p.P(`}`) } p.P() p.P(`if iNdEx > l {`) p.In() p.P(`return ` + p.ioPkg.Use() + `.ErrUnexpectedEOF`) p.Out() p.P(`}`) p.P(`return nil`) p.Out() p.P(`}`) } if !p.atleastOne { return } p.P(`func skip` + p.localName + `(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflow` + p.localName + ` } if iNdEx >= l { return 0, ` + p.ioPkg.Use() + `.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflow` + p.localName + ` } if iNdEx >= l { return 0, ` + p.ioPkg.Use() + `.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflow` + p.localName + ` } if iNdEx >= l { return 0, ` + p.ioPkg.Use() + `.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLength` + p.localName + ` } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflow` + p.localName + ` } if iNdEx >= l { return 0, ` + p.ioPkg.Use() + `.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skip` + p.localName + `(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, ` + fmtPkg.Use() + `.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLength` + p.localName + ` = ` + fmtPkg.Use() + `.Errorf("proto: negative length found during unmarshaling") ErrIntOverflow` + p.localName + ` = ` + fmtPkg.Use() + `.Errorf("proto: integer overflow") ) `) } func init() { generator.RegisterPlugin(NewUnmarshal()) } golang-gogoprotobuf-0.5/proto/000077500000000000000000000000001317075173200165105ustar00rootroot00000000000000golang-gogoprotobuf-0.5/proto/Makefile000066400000000000000000000037151317075173200201560ustar00rootroot00000000000000# 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 golang-gogoprotobuf-0.5/proto/all_test.go000066400000000000000000002034771317075173200206630ustar00rootroot00000000000000// 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. package proto_test import ( "bytes" "encoding/json" "errors" "fmt" "math" "math/rand" "reflect" "runtime/debug" "strings" "testing" "time" . "github.com/gogo/protobuf/proto" . "github.com/gogo/protobuf/proto/testdata" ) var globalO *Buffer func old() *Buffer { if globalO == nil { globalO = NewBuffer(nil) } globalO.Reset() return globalO } func equalbytes(b1, b2 []byte, t *testing.T) { if len(b1) != len(b2) { t.Errorf("wrong lengths: 2*%d != %d", len(b1), len(b2)) return } for i := 0; i < len(b1); i++ { if b1[i] != b2[i] { t.Errorf("bad byte[%d]:%x %x: %s %s", i, b1[i], b2[i], b1, b2) } } } func initGoTestField() *GoTestField { f := new(GoTestField) f.Label = String("label") f.Type = String("type") return f } // These are all structurally equivalent but the tag numbers differ. // (It's remarkable that required, optional, and repeated all have // 8 letters.) func initGoTest_RequiredGroup() *GoTest_RequiredGroup { return &GoTest_RequiredGroup{ RequiredField: String("required"), } } func initGoTest_OptionalGroup() *GoTest_OptionalGroup { return &GoTest_OptionalGroup{ RequiredField: String("optional"), } } func initGoTest_RepeatedGroup() *GoTest_RepeatedGroup { return &GoTest_RepeatedGroup{ RequiredField: String("repeated"), } } func initGoTest(setdefaults bool) *GoTest { pb := new(GoTest) if setdefaults { pb.F_BoolDefaulted = Bool(Default_GoTest_F_BoolDefaulted) pb.F_Int32Defaulted = Int32(Default_GoTest_F_Int32Defaulted) pb.F_Int64Defaulted = Int64(Default_GoTest_F_Int64Defaulted) pb.F_Fixed32Defaulted = Uint32(Default_GoTest_F_Fixed32Defaulted) pb.F_Fixed64Defaulted = Uint64(Default_GoTest_F_Fixed64Defaulted) pb.F_Uint32Defaulted = Uint32(Default_GoTest_F_Uint32Defaulted) pb.F_Uint64Defaulted = Uint64(Default_GoTest_F_Uint64Defaulted) pb.F_FloatDefaulted = Float32(Default_GoTest_F_FloatDefaulted) pb.F_DoubleDefaulted = Float64(Default_GoTest_F_DoubleDefaulted) pb.F_StringDefaulted = String(Default_GoTest_F_StringDefaulted) pb.F_BytesDefaulted = Default_GoTest_F_BytesDefaulted pb.F_Sint32Defaulted = Int32(Default_GoTest_F_Sint32Defaulted) pb.F_Sint64Defaulted = Int64(Default_GoTest_F_Sint64Defaulted) } pb.Kind = GoTest_TIME.Enum() pb.RequiredField = initGoTestField() pb.F_BoolRequired = Bool(true) pb.F_Int32Required = Int32(3) pb.F_Int64Required = Int64(6) pb.F_Fixed32Required = Uint32(32) pb.F_Fixed64Required = Uint64(64) pb.F_Uint32Required = Uint32(3232) pb.F_Uint64Required = Uint64(6464) pb.F_FloatRequired = Float32(3232) pb.F_DoubleRequired = Float64(6464) pb.F_StringRequired = String("string") pb.F_BytesRequired = []byte("bytes") pb.F_Sint32Required = Int32(-32) pb.F_Sint64Required = Int64(-64) pb.Requiredgroup = initGoTest_RequiredGroup() return pb } func fail(msg string, b *bytes.Buffer, s string, t *testing.T) { data := b.Bytes() ld := len(data) ls := len(s) / 2 fmt.Printf("fail %s ld=%d ls=%d\n", msg, ld, ls) // find the interesting spot - n n := ls if ld < ls { n = ld } j := 0 for i := 0; i < n; i++ { bs := hex(s[j])*16 + hex(s[j+1]) j += 2 if data[i] == bs { continue } n = i break } l := n - 10 if l < 0 { l = 0 } h := n + 10 // find the interesting spot - n fmt.Printf("is[%d]:", l) for i := l; i < h; i++ { if i >= ld { fmt.Printf(" --") continue } fmt.Printf(" %.2x", data[i]) } fmt.Printf("\n") fmt.Printf("sb[%d]:", l) for i := l; i < h; i++ { if i >= ls { fmt.Printf(" --") continue } bs := hex(s[j])*16 + hex(s[j+1]) j += 2 fmt.Printf(" %.2x", bs) } fmt.Printf("\n") t.Fail() // t.Errorf("%s: \ngood: %s\nbad: %x", msg, s, b.Bytes()) // Print the output in a partially-decoded format; can // be helpful when updating the test. It produces the output // that is pasted, with minor edits, into the argument to verify(). // data := b.Bytes() // nesting := 0 // for b.Len() > 0 { // start := len(data) - b.Len() // var u uint64 // u, err := DecodeVarint(b) // if err != nil { // fmt.Printf("decode error on varint:", err) // return // } // wire := u & 0x7 // tag := u >> 3 // switch wire { // case WireVarint: // v, err := DecodeVarint(b) // if err != nil { // fmt.Printf("decode error on varint:", err) // return // } // fmt.Printf("\t\t\"%x\" // field %d, encoding %d, value %d\n", // data[start:len(data)-b.Len()], tag, wire, v) // case WireFixed32: // v, err := DecodeFixed32(b) // if err != nil { // fmt.Printf("decode error on fixed32:", err) // return // } // fmt.Printf("\t\t\"%x\" // field %d, encoding %d, value %d\n", // data[start:len(data)-b.Len()], tag, wire, v) // case WireFixed64: // v, err := DecodeFixed64(b) // if err != nil { // fmt.Printf("decode error on fixed64:", err) // return // } // fmt.Printf("\t\t\"%x\" // field %d, encoding %d, value %d\n", // data[start:len(data)-b.Len()], tag, wire, v) // case WireBytes: // nb, err := DecodeVarint(b) // if err != nil { // fmt.Printf("decode error on bytes:", err) // return // } // after_tag := len(data) - b.Len() // str := make([]byte, nb) // _, err = b.Read(str) // if err != nil { // fmt.Printf("decode error on bytes:", err) // return // } // fmt.Printf("\t\t\"%x\" \"%x\" // field %d, encoding %d (FIELD)\n", // data[start:after_tag], str, tag, wire) // case WireStartGroup: // nesting++ // fmt.Printf("\t\t\"%x\"\t\t// start group field %d level %d\n", // data[start:len(data)-b.Len()], tag, nesting) // case WireEndGroup: // fmt.Printf("\t\t\"%x\"\t\t// end group field %d level %d\n", // data[start:len(data)-b.Len()], tag, nesting) // nesting-- // default: // fmt.Printf("unrecognized wire type %d\n", wire) // return // } // } } func hex(c uint8) uint8 { if '0' <= c && c <= '9' { return c - '0' } if 'a' <= c && c <= 'f' { return 10 + c - 'a' } if 'A' <= c && c <= 'F' { return 10 + c - 'A' } return 0 } func equal(b []byte, s string, t *testing.T) bool { if 2*len(b) != len(s) { // fail(fmt.Sprintf("wrong lengths: 2*%d != %d", len(b), len(s)), b, s, t) fmt.Printf("wrong lengths: 2*%d != %d\n", len(b), len(s)) return false } for i, j := 0, 0; i < len(b); i, j = i+1, j+2 { x := hex(s[j])*16 + hex(s[j+1]) if b[i] != x { // fail(fmt.Sprintf("bad byte[%d]:%x %x", i, b[i], x), b, s, t) fmt.Printf("bad byte[%d]:%x %x", i, b[i], x) return false } } return true } func overify(t *testing.T, pb *GoTest, expected string) { o := old() err := o.Marshal(pb) if err != nil { fmt.Printf("overify marshal-1 err = %v", err) o.DebugPrint("", o.Bytes()) t.Fatalf("expected = %s", expected) } if !equal(o.Bytes(), expected, t) { o.DebugPrint("overify neq 1", o.Bytes()) t.Fatalf("expected = %s", expected) } // Now test Unmarshal by recreating the original buffer. pbd := new(GoTest) err = o.Unmarshal(pbd) if err != nil { t.Fatalf("overify unmarshal err = %v", err) o.DebugPrint("", o.Bytes()) t.Fatalf("string = %s", expected) } o.Reset() err = o.Marshal(pbd) if err != nil { t.Errorf("overify marshal-2 err = %v", err) o.DebugPrint("", o.Bytes()) t.Fatalf("string = %s", expected) } if !equal(o.Bytes(), expected, t) { o.DebugPrint("overify neq 2", o.Bytes()) t.Fatalf("string = %s", expected) } } // Simple tests for numeric encode/decode primitives (varint, etc.) func TestNumericPrimitives(t *testing.T) { for i := uint64(0); i < 1e6; i += 111 { o := old() if o.EncodeVarint(i) != nil { t.Error("EncodeVarint") break } x, e := o.DecodeVarint() if e != nil { t.Fatal("DecodeVarint") } if x != i { t.Fatal("varint decode fail:", i, x) } o = old() if o.EncodeFixed32(i) != nil { t.Fatal("encFixed32") } x, e = o.DecodeFixed32() if e != nil { t.Fatal("decFixed32") } if x != i { t.Fatal("fixed32 decode fail:", i, x) } o = old() if o.EncodeFixed64(i*1234567) != nil { t.Error("encFixed64") break } x, e = o.DecodeFixed64() if e != nil { t.Error("decFixed64") break } if x != i*1234567 { t.Error("fixed64 decode fail:", i*1234567, x) break } o = old() i32 := int32(i - 12345) if o.EncodeZigzag32(uint64(i32)) != nil { t.Fatal("EncodeZigzag32") } x, e = o.DecodeZigzag32() if e != nil { t.Fatal("DecodeZigzag32") } if x != uint64(uint32(i32)) { t.Fatal("zigzag32 decode fail:", i32, x) } o = old() i64 := int64(i - 12345) if o.EncodeZigzag64(uint64(i64)) != nil { t.Fatal("EncodeZigzag64") } x, e = o.DecodeZigzag64() if e != nil { t.Fatal("DecodeZigzag64") } if x != uint64(i64) { t.Fatal("zigzag64 decode fail:", i64, x) } } } // fakeMarshaler is a simple struct implementing Marshaler and Message interfaces. type fakeMarshaler struct { b []byte err error } func (f *fakeMarshaler) Marshal() ([]byte, error) { return f.b, f.err } func (f *fakeMarshaler) String() string { return fmt.Sprintf("Bytes: %v Error: %v", f.b, f.err) } func (f *fakeMarshaler) ProtoMessage() {} func (f *fakeMarshaler) Reset() {} type msgWithFakeMarshaler struct { M *fakeMarshaler `protobuf:"bytes,1,opt,name=fake"` } func (m *msgWithFakeMarshaler) String() string { return CompactTextString(m) } func (m *msgWithFakeMarshaler) ProtoMessage() {} func (m *msgWithFakeMarshaler) Reset() {} // Simple tests for proto messages that implement the Marshaler interface. func TestMarshalerEncoding(t *testing.T) { tests := []struct { name string m Message want []byte errType reflect.Type }{ { name: "Marshaler that fails", m: &fakeMarshaler{ err: errors.New("some marshal err"), b: []byte{5, 6, 7}, }, // Since the Marshal method returned bytes, they should be written to the // buffer. (For efficiency, we assume that Marshal implementations are // always correct w.r.t. RequiredNotSetError and output.) want: []byte{5, 6, 7}, errType: reflect.TypeOf(errors.New("some marshal err")), }, { name: "Marshaler that fails with RequiredNotSetError", m: &msgWithFakeMarshaler{ M: &fakeMarshaler{ err: &RequiredNotSetError{}, b: []byte{5, 6, 7}, }, }, // Since there's an error that can be continued after, // the buffer should be written. want: []byte{ 10, 3, // for &msgWithFakeMarshaler 5, 6, 7, // for &fakeMarshaler }, errType: reflect.TypeOf(&RequiredNotSetError{}), }, { name: "Marshaler that succeeds", m: &fakeMarshaler{ b: []byte{0, 1, 2, 3, 4, 127, 255}, }, want: []byte{0, 1, 2, 3, 4, 127, 255}, }, } for _, test := range tests { b := NewBuffer(nil) err := b.Marshal(test.m) if reflect.TypeOf(err) != test.errType { t.Errorf("%s: got err %T(%v) wanted %T", test.name, err, err, test.errType) } if !reflect.DeepEqual(test.want, b.Bytes()) { t.Errorf("%s: got bytes %v wanted %v", test.name, b.Bytes(), test.want) } if size := Size(test.m); size != len(b.Bytes()) { t.Errorf("%s: Size(_) = %v, but marshaled to %v bytes", test.name, size, len(b.Bytes())) } m, mErr := Marshal(test.m) if !bytes.Equal(b.Bytes(), m) { t.Errorf("%s: Marshal returned %v, but (*Buffer).Marshal wrote %v", test.name, m, b.Bytes()) } if !reflect.DeepEqual(err, mErr) { t.Errorf("%s: Marshal err = %q, but (*Buffer).Marshal returned %q", test.name, fmt.Sprint(mErr), fmt.Sprint(err)) } } } // Simple tests for bytes func TestBytesPrimitives(t *testing.T) { o := old() bytes := []byte{'n', 'o', 'w', ' ', 'i', 's', ' ', 't', 'h', 'e', ' ', 't', 'i', 'm', 'e'} if o.EncodeRawBytes(bytes) != nil { t.Error("EncodeRawBytes") } decb, e := o.DecodeRawBytes(false) if e != nil { t.Error("DecodeRawBytes") } equalbytes(bytes, decb, t) } // Simple tests for strings func TestStringPrimitives(t *testing.T) { o := old() s := "now is the time" if o.EncodeStringBytes(s) != nil { t.Error("enc_string") } decs, e := o.DecodeStringBytes() if e != nil { t.Error("dec_string") } if s != decs { t.Error("string encode/decode fail:", s, decs) } } // Do we catch the "required bit not set" case? func TestRequiredBit(t *testing.T) { o := old() pb := new(GoTest) err := o.Marshal(pb) if err == nil { t.Error("did not catch missing required fields") } else if strings.Index(err.Error(), "Kind") < 0 { t.Error("wrong error type:", err) } } // Check that all fields are nil. // Clearly silly, and a residue from a more interesting test with an earlier, // different initialization property, but it once caught a compiler bug so // it lives. func checkInitialized(pb *GoTest, t *testing.T) { if pb.F_BoolDefaulted != nil { t.Error("New or Reset did not set boolean:", *pb.F_BoolDefaulted) } if pb.F_Int32Defaulted != nil { t.Error("New or Reset did not set int32:", *pb.F_Int32Defaulted) } if pb.F_Int64Defaulted != nil { t.Error("New or Reset did not set int64:", *pb.F_Int64Defaulted) } if pb.F_Fixed32Defaulted != nil { t.Error("New or Reset did not set fixed32:", *pb.F_Fixed32Defaulted) } if pb.F_Fixed64Defaulted != nil { t.Error("New or Reset did not set fixed64:", *pb.F_Fixed64Defaulted) } if pb.F_Uint32Defaulted != nil { t.Error("New or Reset did not set uint32:", *pb.F_Uint32Defaulted) } if pb.F_Uint64Defaulted != nil { t.Error("New or Reset did not set uint64:", *pb.F_Uint64Defaulted) } if pb.F_FloatDefaulted != nil { t.Error("New or Reset did not set float:", *pb.F_FloatDefaulted) } if pb.F_DoubleDefaulted != nil { t.Error("New or Reset did not set double:", *pb.F_DoubleDefaulted) } if pb.F_StringDefaulted != nil { t.Error("New or Reset did not set string:", *pb.F_StringDefaulted) } if pb.F_BytesDefaulted != nil { t.Error("New or Reset did not set bytes:", string(pb.F_BytesDefaulted)) } if pb.F_Sint32Defaulted != nil { t.Error("New or Reset did not set int32:", *pb.F_Sint32Defaulted) } if pb.F_Sint64Defaulted != nil { t.Error("New or Reset did not set int64:", *pb.F_Sint64Defaulted) } } // Does Reset() reset? func TestReset(t *testing.T) { pb := initGoTest(true) // muck with some values pb.F_BoolDefaulted = Bool(false) pb.F_Int32Defaulted = Int32(237) pb.F_Int64Defaulted = Int64(12346) pb.F_Fixed32Defaulted = Uint32(32000) pb.F_Fixed64Defaulted = Uint64(666) pb.F_Uint32Defaulted = Uint32(323232) pb.F_Uint64Defaulted = nil pb.F_FloatDefaulted = nil pb.F_DoubleDefaulted = Float64(0) pb.F_StringDefaulted = String("gotcha") pb.F_BytesDefaulted = []byte("asdfasdf") pb.F_Sint32Defaulted = Int32(123) pb.F_Sint64Defaulted = Int64(789) pb.Reset() checkInitialized(pb, t) } // All required fields set, no defaults provided. func TestEncodeDecode1(t *testing.T) { pb := initGoTest(false) overify(t, pb, "0807"+ // field 1, encoding 0, value 7 "220d"+"0a056c6162656c120474797065"+ // field 4, encoding 2 (GoTestField) "5001"+ // field 10, encoding 0, value 1 "5803"+ // field 11, encoding 0, value 3 "6006"+ // field 12, encoding 0, value 6 "6d20000000"+ // field 13, encoding 5, value 0x20 "714000000000000000"+ // field 14, encoding 1, value 0x40 "78a019"+ // field 15, encoding 0, value 0xca0 = 3232 "8001c032"+ // field 16, encoding 0, value 0x1940 = 6464 "8d0100004a45"+ // field 17, encoding 5, value 3232.0 "9101000000000040b940"+ // field 18, encoding 1, value 6464.0 "9a0106"+"737472696e67"+ // field 19, encoding 2, string "string" "b304"+ // field 70, encoding 3, start group "ba0408"+"7265717569726564"+ // field 71, encoding 2, string "required" "b404"+ // field 70, encoding 4, end group "aa0605"+"6279746573"+ // field 101, encoding 2, string "bytes" "b0063f"+ // field 102, encoding 0, 0x3f zigzag32 "b8067f") // field 103, encoding 0, 0x7f zigzag64 } // All required fields set, defaults provided. func TestEncodeDecode2(t *testing.T) { pb := initGoTest(true) overify(t, pb, "0807"+ // field 1, encoding 0, value 7 "220d"+"0a056c6162656c120474797065"+ // field 4, encoding 2 (GoTestField) "5001"+ // field 10, encoding 0, value 1 "5803"+ // field 11, encoding 0, value 3 "6006"+ // field 12, encoding 0, value 6 "6d20000000"+ // field 13, encoding 5, value 32 "714000000000000000"+ // field 14, encoding 1, value 64 "78a019"+ // field 15, encoding 0, value 3232 "8001c032"+ // field 16, encoding 0, value 6464 "8d0100004a45"+ // field 17, encoding 5, value 3232.0 "9101000000000040b940"+ // field 18, encoding 1, value 6464.0 "9a0106"+"737472696e67"+ // field 19, encoding 2 string "string" "c00201"+ // field 40, encoding 0, value 1 "c80220"+ // field 41, encoding 0, value 32 "d00240"+ // field 42, encoding 0, value 64 "dd0240010000"+ // field 43, encoding 5, value 320 "e1028002000000000000"+ // field 44, encoding 1, value 640 "e8028019"+ // field 45, encoding 0, value 3200 "f0028032"+ // field 46, encoding 0, value 6400 "fd02e0659948"+ // field 47, encoding 5, value 314159.0 "81030000000050971041"+ // field 48, encoding 1, value 271828.0 "8a0310"+"68656c6c6f2c2022776f726c6421220a"+ // field 49, encoding 2 string "hello, \"world!\"\n" "b304"+ // start group field 70 level 1 "ba0408"+"7265717569726564"+ // field 71, encoding 2, string "required" "b404"+ // end group field 70 level 1 "aa0605"+"6279746573"+ // field 101, encoding 2 string "bytes" "b0063f"+ // field 102, encoding 0, 0x3f zigzag32 "b8067f"+ // field 103, encoding 0, 0x7f zigzag64 "8a1907"+"4269676e6f7365"+ // field 401, encoding 2, string "Bignose" "90193f"+ // field 402, encoding 0, value 63 "98197f") // field 403, encoding 0, value 127 } // All default fields set to their default value by hand func TestEncodeDecode3(t *testing.T) { pb := initGoTest(false) pb.F_BoolDefaulted = Bool(true) pb.F_Int32Defaulted = Int32(32) pb.F_Int64Defaulted = Int64(64) pb.F_Fixed32Defaulted = Uint32(320) pb.F_Fixed64Defaulted = Uint64(640) pb.F_Uint32Defaulted = Uint32(3200) pb.F_Uint64Defaulted = Uint64(6400) pb.F_FloatDefaulted = Float32(314159) pb.F_DoubleDefaulted = Float64(271828) pb.F_StringDefaulted = String("hello, \"world!\"\n") pb.F_BytesDefaulted = []byte("Bignose") pb.F_Sint32Defaulted = Int32(-32) pb.F_Sint64Defaulted = Int64(-64) overify(t, pb, "0807"+ // field 1, encoding 0, value 7 "220d"+"0a056c6162656c120474797065"+ // field 4, encoding 2 (GoTestField) "5001"+ // field 10, encoding 0, value 1 "5803"+ // field 11, encoding 0, value 3 "6006"+ // field 12, encoding 0, value 6 "6d20000000"+ // field 13, encoding 5, value 32 "714000000000000000"+ // field 14, encoding 1, value 64 "78a019"+ // field 15, encoding 0, value 3232 "8001c032"+ // field 16, encoding 0, value 6464 "8d0100004a45"+ // field 17, encoding 5, value 3232.0 "9101000000000040b940"+ // field 18, encoding 1, value 6464.0 "9a0106"+"737472696e67"+ // field 19, encoding 2 string "string" "c00201"+ // field 40, encoding 0, value 1 "c80220"+ // field 41, encoding 0, value 32 "d00240"+ // field 42, encoding 0, value 64 "dd0240010000"+ // field 43, encoding 5, value 320 "e1028002000000000000"+ // field 44, encoding 1, value 640 "e8028019"+ // field 45, encoding 0, value 3200 "f0028032"+ // field 46, encoding 0, value 6400 "fd02e0659948"+ // field 47, encoding 5, value 314159.0 "81030000000050971041"+ // field 48, encoding 1, value 271828.0 "8a0310"+"68656c6c6f2c2022776f726c6421220a"+ // field 49, encoding 2 string "hello, \"world!\"\n" "b304"+ // start group field 70 level 1 "ba0408"+"7265717569726564"+ // field 71, encoding 2, string "required" "b404"+ // end group field 70 level 1 "aa0605"+"6279746573"+ // field 101, encoding 2 string "bytes" "b0063f"+ // field 102, encoding 0, 0x3f zigzag32 "b8067f"+ // field 103, encoding 0, 0x7f zigzag64 "8a1907"+"4269676e6f7365"+ // field 401, encoding 2, string "Bignose" "90193f"+ // field 402, encoding 0, value 63 "98197f") // field 403, encoding 0, value 127 } // All required fields set, defaults provided, all non-defaulted optional fields have values. func TestEncodeDecode4(t *testing.T) { pb := initGoTest(true) pb.Table = String("hello") pb.Param = Int32(7) pb.OptionalField = initGoTestField() pb.F_BoolOptional = Bool(true) pb.F_Int32Optional = Int32(32) pb.F_Int64Optional = Int64(64) pb.F_Fixed32Optional = Uint32(3232) pb.F_Fixed64Optional = Uint64(6464) pb.F_Uint32Optional = Uint32(323232) pb.F_Uint64Optional = Uint64(646464) pb.F_FloatOptional = Float32(32.) pb.F_DoubleOptional = Float64(64.) pb.F_StringOptional = String("hello") pb.F_BytesOptional = []byte("Bignose") pb.F_Sint32Optional = Int32(-32) pb.F_Sint64Optional = Int64(-64) pb.Optionalgroup = initGoTest_OptionalGroup() overify(t, pb, "0807"+ // field 1, encoding 0, value 7 "1205"+"68656c6c6f"+ // field 2, encoding 2, string "hello" "1807"+ // field 3, encoding 0, value 7 "220d"+"0a056c6162656c120474797065"+ // field 4, encoding 2 (GoTestField) "320d"+"0a056c6162656c120474797065"+ // field 6, encoding 2 (GoTestField) "5001"+ // field 10, encoding 0, value 1 "5803"+ // field 11, encoding 0, value 3 "6006"+ // field 12, encoding 0, value 6 "6d20000000"+ // field 13, encoding 5, value 32 "714000000000000000"+ // field 14, encoding 1, value 64 "78a019"+ // field 15, encoding 0, value 3232 "8001c032"+ // field 16, encoding 0, value 6464 "8d0100004a45"+ // field 17, encoding 5, value 3232.0 "9101000000000040b940"+ // field 18, encoding 1, value 6464.0 "9a0106"+"737472696e67"+ // field 19, encoding 2 string "string" "f00101"+ // field 30, encoding 0, value 1 "f80120"+ // field 31, encoding 0, value 32 "800240"+ // field 32, encoding 0, value 64 "8d02a00c0000"+ // field 33, encoding 5, value 3232 "91024019000000000000"+ // field 34, encoding 1, value 6464 "9802a0dd13"+ // field 35, encoding 0, value 323232 "a002c0ba27"+ // field 36, encoding 0, value 646464 "ad0200000042"+ // field 37, encoding 5, value 32.0 "b1020000000000005040"+ // field 38, encoding 1, value 64.0 "ba0205"+"68656c6c6f"+ // field 39, encoding 2, string "hello" "c00201"+ // field 40, encoding 0, value 1 "c80220"+ // field 41, encoding 0, value 32 "d00240"+ // field 42, encoding 0, value 64 "dd0240010000"+ // field 43, encoding 5, value 320 "e1028002000000000000"+ // field 44, encoding 1, value 640 "e8028019"+ // field 45, encoding 0, value 3200 "f0028032"+ // field 46, encoding 0, value 6400 "fd02e0659948"+ // field 47, encoding 5, value 314159.0 "81030000000050971041"+ // field 48, encoding 1, value 271828.0 "8a0310"+"68656c6c6f2c2022776f726c6421220a"+ // field 49, encoding 2 string "hello, \"world!\"\n" "b304"+ // start group field 70 level 1 "ba0408"+"7265717569726564"+ // field 71, encoding 2, string "required" "b404"+ // end group field 70 level 1 "d305"+ // start group field 90 level 1 "da0508"+"6f7074696f6e616c"+ // field 91, encoding 2, string "optional" "d405"+ // end group field 90 level 1 "aa0605"+"6279746573"+ // field 101, encoding 2 string "bytes" "b0063f"+ // field 102, encoding 0, 0x3f zigzag32 "b8067f"+ // field 103, encoding 0, 0x7f zigzag64 "ea1207"+"4269676e6f7365"+ // field 301, encoding 2, string "Bignose" "f0123f"+ // field 302, encoding 0, value 63 "f8127f"+ // field 303, encoding 0, value 127 "8a1907"+"4269676e6f7365"+ // field 401, encoding 2, string "Bignose" "90193f"+ // field 402, encoding 0, value 63 "98197f") // field 403, encoding 0, value 127 } // All required fields set, defaults provided, all repeated fields given two values. func TestEncodeDecode5(t *testing.T) { pb := initGoTest(true) pb.RepeatedField = []*GoTestField{initGoTestField(), initGoTestField()} pb.F_BoolRepeated = []bool{false, true} pb.F_Int32Repeated = []int32{32, 33} pb.F_Int64Repeated = []int64{64, 65} pb.F_Fixed32Repeated = []uint32{3232, 3333} pb.F_Fixed64Repeated = []uint64{6464, 6565} pb.F_Uint32Repeated = []uint32{323232, 333333} pb.F_Uint64Repeated = []uint64{646464, 656565} pb.F_FloatRepeated = []float32{32., 33.} pb.F_DoubleRepeated = []float64{64., 65.} pb.F_StringRepeated = []string{"hello", "sailor"} pb.F_BytesRepeated = [][]byte{[]byte("big"), []byte("nose")} pb.F_Sint32Repeated = []int32{32, -32} pb.F_Sint64Repeated = []int64{64, -64} pb.Repeatedgroup = []*GoTest_RepeatedGroup{initGoTest_RepeatedGroup(), initGoTest_RepeatedGroup()} overify(t, pb, "0807"+ // field 1, encoding 0, value 7 "220d"+"0a056c6162656c120474797065"+ // field 4, encoding 2 (GoTestField) "2a0d"+"0a056c6162656c120474797065"+ // field 5, encoding 2 (GoTestField) "2a0d"+"0a056c6162656c120474797065"+ // field 5, encoding 2 (GoTestField) "5001"+ // field 10, encoding 0, value 1 "5803"+ // field 11, encoding 0, value 3 "6006"+ // field 12, encoding 0, value 6 "6d20000000"+ // field 13, encoding 5, value 32 "714000000000000000"+ // field 14, encoding 1, value 64 "78a019"+ // field 15, encoding 0, value 3232 "8001c032"+ // field 16, encoding 0, value 6464 "8d0100004a45"+ // field 17, encoding 5, value 3232.0 "9101000000000040b940"+ // field 18, encoding 1, value 6464.0 "9a0106"+"737472696e67"+ // field 19, encoding 2 string "string" "a00100"+ // field 20, encoding 0, value 0 "a00101"+ // field 20, encoding 0, value 1 "a80120"+ // field 21, encoding 0, value 32 "a80121"+ // field 21, encoding 0, value 33 "b00140"+ // field 22, encoding 0, value 64 "b00141"+ // field 22, encoding 0, value 65 "bd01a00c0000"+ // field 23, encoding 5, value 3232 "bd01050d0000"+ // field 23, encoding 5, value 3333 "c1014019000000000000"+ // field 24, encoding 1, value 6464 "c101a519000000000000"+ // field 24, encoding 1, value 6565 "c801a0dd13"+ // field 25, encoding 0, value 323232 "c80195ac14"+ // field 25, encoding 0, value 333333 "d001c0ba27"+ // field 26, encoding 0, value 646464 "d001b58928"+ // field 26, encoding 0, value 656565 "dd0100000042"+ // field 27, encoding 5, value 32.0 "dd0100000442"+ // field 27, encoding 5, value 33.0 "e1010000000000005040"+ // field 28, encoding 1, value 64.0 "e1010000000000405040"+ // field 28, encoding 1, value 65.0 "ea0105"+"68656c6c6f"+ // field 29, encoding 2, string "hello" "ea0106"+"7361696c6f72"+ // field 29, encoding 2, string "sailor" "c00201"+ // field 40, encoding 0, value 1 "c80220"+ // field 41, encoding 0, value 32 "d00240"+ // field 42, encoding 0, value 64 "dd0240010000"+ // field 43, encoding 5, value 320 "e1028002000000000000"+ // field 44, encoding 1, value 640 "e8028019"+ // field 45, encoding 0, value 3200 "f0028032"+ // field 46, encoding 0, value 6400 "fd02e0659948"+ // field 47, encoding 5, value 314159.0 "81030000000050971041"+ // field 48, encoding 1, value 271828.0 "8a0310"+"68656c6c6f2c2022776f726c6421220a"+ // field 49, encoding 2 string "hello, \"world!\"\n" "b304"+ // start group field 70 level 1 "ba0408"+"7265717569726564"+ // field 71, encoding 2, string "required" "b404"+ // end group field 70 level 1 "8305"+ // start group field 80 level 1 "8a0508"+"7265706561746564"+ // field 81, encoding 2, string "repeated" "8405"+ // end group field 80 level 1 "8305"+ // start group field 80 level 1 "8a0508"+"7265706561746564"+ // field 81, encoding 2, string "repeated" "8405"+ // end group field 80 level 1 "aa0605"+"6279746573"+ // field 101, encoding 2 string "bytes" "b0063f"+ // field 102, encoding 0, 0x3f zigzag32 "b8067f"+ // field 103, encoding 0, 0x7f zigzag64 "ca0c03"+"626967"+ // field 201, encoding 2, string "big" "ca0c04"+"6e6f7365"+ // field 201, encoding 2, string "nose" "d00c40"+ // field 202, encoding 0, value 32 "d00c3f"+ // field 202, encoding 0, value -32 "d80c8001"+ // field 203, encoding 0, value 64 "d80c7f"+ // field 203, encoding 0, value -64 "8a1907"+"4269676e6f7365"+ // field 401, encoding 2, string "Bignose" "90193f"+ // field 402, encoding 0, value 63 "98197f") // field 403, encoding 0, value 127 } // All required fields set, all packed repeated fields given two values. func TestEncodeDecode6(t *testing.T) { pb := initGoTest(false) pb.F_BoolRepeatedPacked = []bool{false, true} pb.F_Int32RepeatedPacked = []int32{32, 33} pb.F_Int64RepeatedPacked = []int64{64, 65} pb.F_Fixed32RepeatedPacked = []uint32{3232, 3333} pb.F_Fixed64RepeatedPacked = []uint64{6464, 6565} pb.F_Uint32RepeatedPacked = []uint32{323232, 333333} pb.F_Uint64RepeatedPacked = []uint64{646464, 656565} pb.F_FloatRepeatedPacked = []float32{32., 33.} pb.F_DoubleRepeatedPacked = []float64{64., 65.} pb.F_Sint32RepeatedPacked = []int32{32, -32} pb.F_Sint64RepeatedPacked = []int64{64, -64} overify(t, pb, "0807"+ // field 1, encoding 0, value 7 "220d"+"0a056c6162656c120474797065"+ // field 4, encoding 2 (GoTestField) "5001"+ // field 10, encoding 0, value 1 "5803"+ // field 11, encoding 0, value 3 "6006"+ // field 12, encoding 0, value 6 "6d20000000"+ // field 13, encoding 5, value 32 "714000000000000000"+ // field 14, encoding 1, value 64 "78a019"+ // field 15, encoding 0, value 3232 "8001c032"+ // field 16, encoding 0, value 6464 "8d0100004a45"+ // field 17, encoding 5, value 3232.0 "9101000000000040b940"+ // field 18, encoding 1, value 6464.0 "9a0106"+"737472696e67"+ // field 19, encoding 2 string "string" "9203020001"+ // field 50, encoding 2, 2 bytes, value 0, value 1 "9a03022021"+ // field 51, encoding 2, 2 bytes, value 32, value 33 "a203024041"+ // field 52, encoding 2, 2 bytes, value 64, value 65 "aa0308"+ // field 53, encoding 2, 8 bytes "a00c0000050d0000"+ // value 3232, value 3333 "b20310"+ // field 54, encoding 2, 16 bytes "4019000000000000a519000000000000"+ // value 6464, value 6565 "ba0306"+ // field 55, encoding 2, 6 bytes "a0dd1395ac14"+ // value 323232, value 333333 "c20306"+ // field 56, encoding 2, 6 bytes "c0ba27b58928"+ // value 646464, value 656565 "ca0308"+ // field 57, encoding 2, 8 bytes "0000004200000442"+ // value 32.0, value 33.0 "d20310"+ // field 58, encoding 2, 16 bytes "00000000000050400000000000405040"+ // value 64.0, value 65.0 "b304"+ // start group field 70 level 1 "ba0408"+"7265717569726564"+ // field 71, encoding 2, string "required" "b404"+ // end group field 70 level 1 "aa0605"+"6279746573"+ // field 101, encoding 2 string "bytes" "b0063f"+ // field 102, encoding 0, 0x3f zigzag32 "b8067f"+ // field 103, encoding 0, 0x7f zigzag64 "b21f02"+ // field 502, encoding 2, 2 bytes "403f"+ // value 32, value -32 "ba1f03"+ // field 503, encoding 2, 3 bytes "80017f") // value 64, value -64 } // Test that we can encode empty bytes fields. func TestEncodeDecodeBytes1(t *testing.T) { pb := initGoTest(false) // Create our bytes pb.F_BytesRequired = []byte{} pb.F_BytesRepeated = [][]byte{{}} pb.F_BytesOptional = []byte{} d, err := Marshal(pb) if err != nil { t.Error(err) } pbd := new(GoTest) if err := Unmarshal(d, pbd); err != nil { t.Error(err) } if pbd.F_BytesRequired == nil || len(pbd.F_BytesRequired) != 0 { t.Error("required empty bytes field is incorrect") } if pbd.F_BytesRepeated == nil || len(pbd.F_BytesRepeated) == 1 && pbd.F_BytesRepeated[0] == nil { t.Error("repeated empty bytes field is incorrect") } if pbd.F_BytesOptional == nil || len(pbd.F_BytesOptional) != 0 { t.Error("optional empty bytes field is incorrect") } } // Test that we encode nil-valued fields of a repeated bytes field correctly. // Since entries in a repeated field cannot be nil, nil must mean empty value. func TestEncodeDecodeBytes2(t *testing.T) { pb := initGoTest(false) // Create our bytes pb.F_BytesRepeated = [][]byte{nil} d, err := Marshal(pb) if err != nil { t.Error(err) } pbd := new(GoTest) if err := Unmarshal(d, pbd); err != nil { t.Error(err) } if len(pbd.F_BytesRepeated) != 1 || pbd.F_BytesRepeated[0] == nil { t.Error("Unexpected value for repeated bytes field") } } // All required fields set, defaults provided, all repeated fields given two values. func TestSkippingUnrecognizedFields(t *testing.T) { o := old() pb := initGoTestField() // Marshal it normally. o.Marshal(pb) // Now new a GoSkipTest record. skip := &GoSkipTest{ SkipInt32: Int32(32), SkipFixed32: Uint32(3232), SkipFixed64: Uint64(6464), SkipString: String("skipper"), Skipgroup: &GoSkipTest_SkipGroup{ GroupInt32: Int32(75), GroupString: String("wxyz"), }, } // Marshal it into same buffer. o.Marshal(skip) pbd := new(GoTestField) o.Unmarshal(pbd) // The __unrecognized field should be a marshaling of GoSkipTest skipd := new(GoSkipTest) o.SetBuf(pbd.XXX_unrecognized) o.Unmarshal(skipd) if *skipd.SkipInt32 != *skip.SkipInt32 { t.Error("skip int32", skipd.SkipInt32) } if *skipd.SkipFixed32 != *skip.SkipFixed32 { t.Error("skip fixed32", skipd.SkipFixed32) } if *skipd.SkipFixed64 != *skip.SkipFixed64 { t.Error("skip fixed64", skipd.SkipFixed64) } if *skipd.SkipString != *skip.SkipString { t.Error("skip string", *skipd.SkipString) } if *skipd.Skipgroup.GroupInt32 != *skip.Skipgroup.GroupInt32 { t.Error("skip group int32", skipd.Skipgroup.GroupInt32) } if *skipd.Skipgroup.GroupString != *skip.Skipgroup.GroupString { t.Error("skip group string", *skipd.Skipgroup.GroupString) } } // Check that unrecognized fields of a submessage are preserved. func TestSubmessageUnrecognizedFields(t *testing.T) { nm := &NewMessage{ Nested: &NewMessage_Nested{ Name: String("Nigel"), FoodGroup: String("carbs"), }, } b, err := Marshal(nm) if err != nil { t.Fatalf("Marshal of NewMessage: %v", err) } // Unmarshal into an OldMessage. om := new(OldMessage) if err = Unmarshal(b, om); err != nil { t.Fatalf("Unmarshal to OldMessage: %v", err) } exp := &OldMessage{ Nested: &OldMessage_Nested{ Name: String("Nigel"), // normal protocol buffer users should not do this XXX_unrecognized: []byte("\x12\x05carbs"), }, } if !Equal(om, exp) { t.Errorf("om = %v, want %v", om, exp) } // Clone the OldMessage. om = Clone(om).(*OldMessage) if !Equal(om, exp) { t.Errorf("Clone(om) = %v, want %v", om, exp) } // Marshal the OldMessage, then unmarshal it into an empty NewMessage. if b, err = Marshal(om); err != nil { t.Fatalf("Marshal of OldMessage: %v", err) } t.Logf("Marshal(%v) -> %q", om, b) nm2 := new(NewMessage) if err := Unmarshal(b, nm2); err != nil { t.Fatalf("Unmarshal to NewMessage: %v", err) } if !Equal(nm, nm2) { t.Errorf("NewMessage round-trip: %v => %v", nm, nm2) } } // Check that an int32 field can be upgraded to an int64 field. func TestNegativeInt32(t *testing.T) { om := &OldMessage{ Num: Int32(-1), } b, err := Marshal(om) if err != nil { t.Fatalf("Marshal of OldMessage: %v", err) } // Check the size. It should be 11 bytes; // 1 for the field/wire type, and 10 for the negative number. if len(b) != 11 { t.Errorf("%v marshaled as %q, wanted 11 bytes", om, b) } // Unmarshal into a NewMessage. nm := new(NewMessage) if err := Unmarshal(b, nm); err != nil { t.Fatalf("Unmarshal to NewMessage: %v", err) } want := &NewMessage{ Num: Int64(-1), } if !Equal(nm, want) { t.Errorf("nm = %v, want %v", nm, want) } } // Check that we can grow an array (repeated field) to have many elements. // This test doesn't depend only on our encoding; for variety, it makes sure // we create, encode, and decode the correct contents explicitly. It's therefore // a bit messier. // This test also uses (and hence tests) the Marshal/Unmarshal functions // instead of the methods. func TestBigRepeated(t *testing.T) { pb := initGoTest(true) // Create the arrays const N = 50 // Internally the library starts much smaller. pb.Repeatedgroup = make([]*GoTest_RepeatedGroup, N) pb.F_Sint64Repeated = make([]int64, N) pb.F_Sint32Repeated = make([]int32, N) pb.F_BytesRepeated = make([][]byte, N) pb.F_StringRepeated = make([]string, N) pb.F_DoubleRepeated = make([]float64, N) pb.F_FloatRepeated = make([]float32, N) pb.F_Uint64Repeated = make([]uint64, N) pb.F_Uint32Repeated = make([]uint32, N) pb.F_Fixed64Repeated = make([]uint64, N) pb.F_Fixed32Repeated = make([]uint32, N) pb.F_Int64Repeated = make([]int64, N) pb.F_Int32Repeated = make([]int32, N) pb.F_BoolRepeated = make([]bool, N) pb.RepeatedField = make([]*GoTestField, N) // Fill in the arrays with checkable values. igtf := initGoTestField() igtrg := initGoTest_RepeatedGroup() for i := 0; i < N; i++ { pb.Repeatedgroup[i] = igtrg pb.F_Sint64Repeated[i] = int64(i) pb.F_Sint32Repeated[i] = int32(i) s := fmt.Sprint(i) pb.F_BytesRepeated[i] = []byte(s) pb.F_StringRepeated[i] = s pb.F_DoubleRepeated[i] = float64(i) pb.F_FloatRepeated[i] = float32(i) pb.F_Uint64Repeated[i] = uint64(i) pb.F_Uint32Repeated[i] = uint32(i) pb.F_Fixed64Repeated[i] = uint64(i) pb.F_Fixed32Repeated[i] = uint32(i) pb.F_Int64Repeated[i] = int64(i) pb.F_Int32Repeated[i] = int32(i) pb.F_BoolRepeated[i] = i%2 == 0 pb.RepeatedField[i] = igtf } // Marshal. buf, _ := Marshal(pb) // Now test Unmarshal by recreating the original buffer. pbd := new(GoTest) Unmarshal(buf, pbd) // Check the checkable values for i := uint64(0); i < N; i++ { if pbd.Repeatedgroup[i] == nil { // TODO: more checking? t.Error("pbd.Repeatedgroup bad") } var x uint64 x = uint64(pbd.F_Sint64Repeated[i]) if x != i { t.Error("pbd.F_Sint64Repeated bad", x, i) } x = uint64(pbd.F_Sint32Repeated[i]) if x != i { t.Error("pbd.F_Sint32Repeated bad", x, i) } s := fmt.Sprint(i) equalbytes(pbd.F_BytesRepeated[i], []byte(s), t) if pbd.F_StringRepeated[i] != s { t.Error("pbd.F_Sint32Repeated bad", pbd.F_StringRepeated[i], i) } x = uint64(pbd.F_DoubleRepeated[i]) if x != i { t.Error("pbd.F_DoubleRepeated bad", x, i) } x = uint64(pbd.F_FloatRepeated[i]) if x != i { t.Error("pbd.F_FloatRepeated bad", x, i) } x = pbd.F_Uint64Repeated[i] if x != i { t.Error("pbd.F_Uint64Repeated bad", x, i) } x = uint64(pbd.F_Uint32Repeated[i]) if x != i { t.Error("pbd.F_Uint32Repeated bad", x, i) } x = pbd.F_Fixed64Repeated[i] if x != i { t.Error("pbd.F_Fixed64Repeated bad", x, i) } x = uint64(pbd.F_Fixed32Repeated[i]) if x != i { t.Error("pbd.F_Fixed32Repeated bad", x, i) } x = uint64(pbd.F_Int64Repeated[i]) if x != i { t.Error("pbd.F_Int64Repeated bad", x, i) } x = uint64(pbd.F_Int32Repeated[i]) if x != i { t.Error("pbd.F_Int32Repeated bad", x, i) } if pbd.F_BoolRepeated[i] != (i%2 == 0) { t.Error("pbd.F_BoolRepeated bad", x, i) } if pbd.RepeatedField[i] == nil { // TODO: more checking? t.Error("pbd.RepeatedField bad") } } } // Verify we give a useful message when decoding to the wrong structure type. func TestTypeMismatch(t *testing.T) { pb1 := initGoTest(true) // Marshal o := old() o.Marshal(pb1) // Now Unmarshal it to the wrong type. pb2 := initGoTestField() err := o.Unmarshal(pb2) if err == nil { t.Error("expected error, got no error") } else if !strings.Contains(err.Error(), "bad wiretype") { t.Error("expected bad wiretype error, got", err) } } func encodeDecode(t *testing.T, in, out Message, msg string) { buf, err := Marshal(in) if err != nil { t.Fatalf("failed marshaling %v: %v", msg, err) } if err := Unmarshal(buf, out); err != nil { t.Fatalf("failed unmarshaling %v: %v", msg, err) } } func TestPackedNonPackedDecoderSwitching(t *testing.T) { np, p := new(NonPackedTest), new(PackedTest) // non-packed -> packed np.A = []int32{0, 1, 1, 2, 3, 5} encodeDecode(t, np, p, "non-packed -> packed") if !reflect.DeepEqual(np.A, p.B) { t.Errorf("failed non-packed -> packed; np.A=%+v, p.B=%+v", np.A, p.B) } // packed -> non-packed np.Reset() p.B = []int32{3, 1, 4, 1, 5, 9} encodeDecode(t, p, np, "packed -> non-packed") if !reflect.DeepEqual(p.B, np.A) { t.Errorf("failed packed -> non-packed; p.B=%+v, np.A=%+v", p.B, np.A) } } func TestProto1RepeatedGroup(t *testing.T) { pb := &MessageList{ Message: []*MessageList_Message{ { Name: String("blah"), Count: Int32(7), }, // NOTE: pb.Message[1] is a nil nil, }, } o := old() err := o.Marshal(pb) if err == nil || !strings.Contains(err.Error(), "repeated field Message has nil") { t.Fatalf("unexpected or no error when marshaling: %v", err) } } // Test that enums work. Checks for a bug introduced by making enums // named types instead of int32: newInt32FromUint64 would crash with // a type mismatch in reflect.PointTo. func TestEnum(t *testing.T) { pb := new(GoEnum) pb.Foo = FOO_FOO1.Enum() o := old() if err := o.Marshal(pb); err != nil { t.Fatal("error encoding enum:", err) } pb1 := new(GoEnum) if err := o.Unmarshal(pb1); err != nil { t.Fatal("error decoding enum:", err) } if *pb1.Foo != FOO_FOO1 { t.Error("expected 7 but got ", *pb1.Foo) } } // Enum types have String methods. Check that enum fields can be printed. // We don't care what the value actually is, just as long as it doesn't crash. func TestPrintingNilEnumFields(t *testing.T) { pb := new(GoEnum) _ = fmt.Sprintf("%+v", pb) } // Verify that absent required fields cause Marshal/Unmarshal to return errors. func TestRequiredFieldEnforcement(t *testing.T) { pb := new(GoTestField) _, err := Marshal(pb) if err == nil { t.Error("marshal: expected error, got nil") } else if _, ok := err.(*RequiredNotSetError); !ok || !strings.Contains(err.Error(), "Label") { t.Errorf("marshal: bad error type: %v", err) } // A slightly sneaky, yet valid, proto. It encodes the same required field twice, // so simply counting the required fields is insufficient. // field 1, encoding 2, value "hi" buf := []byte("\x0A\x02hi\x0A\x02hi") err = Unmarshal(buf, pb) if err == nil { t.Error("unmarshal: expected error, got nil") } else if _, ok := err.(*RequiredNotSetError); !ok || !strings.Contains(err.Error(), "{Unknown}") { t.Errorf("unmarshal: bad error type: %v", err) } } // Verify that absent required fields in groups cause Marshal/Unmarshal to return errors. func TestRequiredFieldEnforcementGroups(t *testing.T) { pb := &GoTestRequiredGroupField{Group: &GoTestRequiredGroupField_Group{}} if _, err := Marshal(pb); err == nil { t.Error("marshal: expected error, got nil") } else if _, ok := err.(*RequiredNotSetError); !ok || !strings.Contains(err.Error(), "Group.Field") { t.Errorf("marshal: bad error type: %v", err) } buf := []byte{11, 12} if err := Unmarshal(buf, pb); err == nil { t.Error("unmarshal: expected error, got nil") } else if _, ok := err.(*RequiredNotSetError); !ok || !strings.Contains(err.Error(), "Group.{Unknown}") { t.Errorf("unmarshal: bad error type: %v", err) } } func TestTypedNilMarshal(t *testing.T) { // A typed nil should return ErrNil and not crash. { var m *GoEnum if _, err := Marshal(m); err != ErrNil { t.Errorf("Marshal(%#v): got %v, want ErrNil", m, err) } } { m := &Communique{Union: &Communique_Msg{Msg: nil}} if _, err := Marshal(m); err == nil || err == ErrNil { t.Errorf("Marshal(%#v): got %v, want errOneofHasNil", m, err) } } } // A type that implements the Marshaler interface, but is not nillable. type nonNillableInt uint64 func (nni nonNillableInt) Marshal() ([]byte, error) { return EncodeVarint(uint64(nni)), nil } type NNIMessage struct { nni nonNillableInt } func (*NNIMessage) Reset() {} func (*NNIMessage) String() string { return "" } func (*NNIMessage) ProtoMessage() {} // A type that implements the Marshaler interface and is nillable. type nillableMessage struct { x uint64 } func (nm *nillableMessage) Marshal() ([]byte, error) { return EncodeVarint(nm.x), nil } type NMMessage struct { nm *nillableMessage } func (*NMMessage) Reset() {} func (*NMMessage) String() string { return "" } func (*NMMessage) ProtoMessage() {} // Verify a type that uses the Marshaler interface, but has a nil pointer. func TestNilMarshaler(t *testing.T) { // Try a struct with a Marshaler field that is nil. // It should be directly marshable. nmm := new(NMMessage) if _, err := Marshal(nmm); err != nil { t.Error("unexpected error marshaling nmm: ", err) } // Try a struct with a Marshaler field that is not nillable. nnim := new(NNIMessage) nnim.nni = 7 var _ Marshaler = nnim.nni // verify it is truly a Marshaler if _, err := Marshal(nnim); err != nil { t.Error("unexpected error marshaling nnim: ", err) } } func TestAllSetDefaults(t *testing.T) { // Exercise SetDefaults with all scalar field types. m := &Defaults{ // NaN != NaN, so override that here. F_Nan: Float32(1.7), } expected := &Defaults{ F_Bool: Bool(true), F_Int32: Int32(32), F_Int64: Int64(64), F_Fixed32: Uint32(320), F_Fixed64: Uint64(640), F_Uint32: Uint32(3200), F_Uint64: Uint64(6400), F_Float: Float32(314159), F_Double: Float64(271828), F_String: String(`hello, "world!"` + "\n"), F_Bytes: []byte("Bignose"), F_Sint32: Int32(-32), F_Sint64: Int64(-64), F_Enum: Defaults_GREEN.Enum(), F_Pinf: Float32(float32(math.Inf(1))), F_Ninf: Float32(float32(math.Inf(-1))), F_Nan: Float32(1.7), StrZero: String(""), } SetDefaults(m) if !Equal(m, expected) { t.Errorf("SetDefaults failed\n got %v\nwant %v", m, expected) } } func TestSetDefaultsWithSetField(t *testing.T) { // Check that a set value is not overridden. m := &Defaults{ F_Int32: Int32(12), } SetDefaults(m) if v := m.GetF_Int32(); v != 12 { t.Errorf("m.FInt32 = %v, want 12", v) } } func TestSetDefaultsWithSubMessage(t *testing.T) { m := &OtherMessage{ Key: Int64(123), Inner: &InnerMessage{ Host: String("gopher"), }, } expected := &OtherMessage{ Key: Int64(123), Inner: &InnerMessage{ Host: String("gopher"), Port: Int32(4000), }, } SetDefaults(m) if !Equal(m, expected) { t.Errorf("\n got %v\nwant %v", m, expected) } } func TestSetDefaultsWithRepeatedSubMessage(t *testing.T) { m := &MyMessage{ RepInner: []*InnerMessage{{}}, } expected := &MyMessage{ RepInner: []*InnerMessage{{ Port: Int32(4000), }}, } SetDefaults(m) if !Equal(m, expected) { t.Errorf("\n got %v\nwant %v", m, expected) } } func TestSetDefaultWithRepeatedNonMessage(t *testing.T) { m := &MyMessage{ Pet: []string{"turtle", "wombat"}, } expected := Clone(m) SetDefaults(m) if !Equal(m, expected) { t.Errorf("\n got %v\nwant %v", m, expected) } } func TestMaximumTagNumber(t *testing.T) { m := &MaxTag{ LastField: String("natural goat essence"), } buf, err := Marshal(m) if err != nil { t.Fatalf("proto.Marshal failed: %v", err) } m2 := new(MaxTag) if err := Unmarshal(buf, m2); err != nil { t.Fatalf("proto.Unmarshal failed: %v", err) } if got, want := m2.GetLastField(), *m.LastField; got != want { t.Errorf("got %q, want %q", got, want) } } func TestJSON(t *testing.T) { m := &MyMessage{ Count: Int32(4), Pet: []string{"bunny", "kitty"}, Inner: &InnerMessage{ Host: String("cauchy"), }, Bikeshed: MyMessage_GREEN.Enum(), } const expected = `{"count":4,"pet":["bunny","kitty"],"inner":{"host":"cauchy"},"bikeshed":1}` b, err := json.Marshal(m) if err != nil { t.Fatalf("json.Marshal failed: %v", err) } s := string(b) if s != expected { t.Errorf("got %s\nwant %s", s, expected) } received := new(MyMessage) if err := json.Unmarshal(b, received); err != nil { t.Fatalf("json.Unmarshal failed: %v", err) } if !Equal(received, m) { t.Fatalf("got %s, want %s", received, m) } // Test unmarshalling of JSON with symbolic enum name. const old = `{"count":4,"pet":["bunny","kitty"],"inner":{"host":"cauchy"},"bikeshed":"GREEN"}` received.Reset() if err := json.Unmarshal([]byte(old), received); err != nil { t.Fatalf("json.Unmarshal failed: %v", err) } if !Equal(received, m) { t.Fatalf("got %s, want %s", received, m) } } func TestBadWireType(t *testing.T) { b := []byte{7<<3 | 6} // field 7, wire type 6 pb := new(OtherMessage) if err := Unmarshal(b, pb); err == nil { t.Errorf("Unmarshal did not fail") } else if !strings.Contains(err.Error(), "unknown wire type") { t.Errorf("wrong error: %v", err) } } func TestBytesWithInvalidLength(t *testing.T) { // If a byte sequence has an invalid (negative) length, Unmarshal should not panic. b := []byte{2<<3 | WireBytes, 0xff, 0xff, 0xff, 0xff, 0xff, 0} Unmarshal(b, new(MyMessage)) } func TestLengthOverflow(t *testing.T) { // Overflowing a length should not panic. b := []byte{2<<3 | WireBytes, 1, 1, 3<<3 | WireBytes, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x01} Unmarshal(b, new(MyMessage)) } func TestVarintOverflow(t *testing.T) { // Overflowing a 64-bit length should not be allowed. b := []byte{1<<3 | WireVarint, 0x01, 3<<3 | WireBytes, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x01} if err := Unmarshal(b, new(MyMessage)); err == nil { t.Fatalf("Overflowed uint64 length without error") } } func TestUnmarshalFuzz(t *testing.T) { const N = 1000 seed := time.Now().UnixNano() t.Logf("RNG seed is %d", seed) rng := rand.New(rand.NewSource(seed)) buf := make([]byte, 20) for i := 0; i < N; i++ { for j := range buf { buf[j] = byte(rng.Intn(256)) } fuzzUnmarshal(t, buf) } } func TestMergeMessages(t *testing.T) { pb := &MessageList{Message: []*MessageList_Message{{Name: String("x"), Count: Int32(1)}}} data, err := Marshal(pb) if err != nil { t.Fatalf("Marshal: %v", err) } pb1 := new(MessageList) if err := Unmarshal(data, pb1); err != nil { t.Fatalf("first Unmarshal: %v", err) } if err := Unmarshal(data, pb1); err != nil { t.Fatalf("second Unmarshal: %v", err) } if len(pb1.Message) != 1 { t.Errorf("two Unmarshals produced %d Messages, want 1", len(pb1.Message)) } pb2 := new(MessageList) if err := UnmarshalMerge(data, pb2); err != nil { t.Fatalf("first UnmarshalMerge: %v", err) } if err := UnmarshalMerge(data, pb2); err != nil { t.Fatalf("second UnmarshalMerge: %v", err) } if len(pb2.Message) != 2 { t.Errorf("two UnmarshalMerges produced %d Messages, want 2", len(pb2.Message)) } } func TestExtensionMarshalOrder(t *testing.T) { m := &MyMessage{Count: Int(123)} if err := SetExtension(m, E_Ext_More, &Ext{Data: String("alpha")}); err != nil { t.Fatalf("SetExtension: %v", err) } if err := SetExtension(m, E_Ext_Text, String("aleph")); err != nil { t.Fatalf("SetExtension: %v", err) } if err := SetExtension(m, E_Ext_Number, Int32(1)); err != nil { t.Fatalf("SetExtension: %v", err) } // Serialize m several times, and check we get the same bytes each time. var orig []byte for i := 0; i < 100; i++ { b, err := Marshal(m) if err != nil { t.Fatalf("Marshal: %v", err) } if i == 0 { orig = b continue } if !bytes.Equal(b, orig) { t.Errorf("Bytes differ on attempt #%d", i) } } } // Many extensions, because small maps might not iterate differently on each iteration. var exts = []*ExtensionDesc{ E_X201, E_X202, E_X203, E_X204, E_X205, E_X206, E_X207, E_X208, E_X209, E_X210, E_X211, E_X212, E_X213, E_X214, E_X215, E_X216, E_X217, E_X218, E_X219, E_X220, E_X221, E_X222, E_X223, E_X224, E_X225, E_X226, E_X227, E_X228, E_X229, E_X230, E_X231, E_X232, E_X233, E_X234, E_X235, E_X236, E_X237, E_X238, E_X239, E_X240, E_X241, E_X242, E_X243, E_X244, E_X245, E_X246, E_X247, E_X248, E_X249, E_X250, } func TestMessageSetMarshalOrder(t *testing.T) { m := &MyMessageSet{} for _, x := range exts { if err := SetExtension(m, x, &Empty{}); err != nil { t.Fatalf("SetExtension: %v", err) } } buf, err := Marshal(m) if err != nil { t.Fatalf("Marshal: %v", err) } // Serialize m several times, and check we get the same bytes each time. for i := 0; i < 10; i++ { b1, err := Marshal(m) if err != nil { t.Fatalf("Marshal: %v", err) } if !bytes.Equal(b1, buf) { t.Errorf("Bytes differ on re-Marshal #%d", i) } m2 := &MyMessageSet{} if err = Unmarshal(buf, m2); err != nil { t.Errorf("Unmarshal: %v", err) } b2, err := Marshal(m2) if err != nil { t.Errorf("re-Marshal: %v", err) } if !bytes.Equal(b2, buf) { t.Errorf("Bytes differ on round-trip #%d", i) } } } func TestUnmarshalMergesMessages(t *testing.T) { // If a nested message occurs twice in the input, // the fields should be merged when decoding. a := &OtherMessage{ Key: Int64(123), Inner: &InnerMessage{ Host: String("polhode"), Port: Int32(1234), }, } aData, err := Marshal(a) if err != nil { t.Fatalf("Marshal(a): %v", err) } b := &OtherMessage{ Weight: Float32(1.2), Inner: &InnerMessage{ Host: String("herpolhode"), Connected: Bool(true), }, } bData, err := Marshal(b) if err != nil { t.Fatalf("Marshal(b): %v", err) } want := &OtherMessage{ Key: Int64(123), Weight: Float32(1.2), Inner: &InnerMessage{ Host: String("herpolhode"), Port: Int32(1234), Connected: Bool(true), }, } got := new(OtherMessage) if err := Unmarshal(append(aData, bData...), got); err != nil { t.Fatalf("Unmarshal: %v", err) } if !Equal(got, want) { t.Errorf("\n got %v\nwant %v", got, want) } } func TestEncodingSizes(t *testing.T) { tests := []struct { m Message n int }{ {&Defaults{F_Int32: Int32(math.MaxInt32)}, 6}, {&Defaults{F_Int32: Int32(math.MinInt32)}, 11}, {&Defaults{F_Uint32: Uint32(uint32(math.MaxInt32) + 1)}, 6}, {&Defaults{F_Uint32: Uint32(math.MaxUint32)}, 6}, } for _, test := range tests { b, err := Marshal(test.m) if err != nil { t.Errorf("Marshal(%v): %v", test.m, err) continue } if len(b) != test.n { t.Errorf("Marshal(%v) yielded %d bytes, want %d bytes", test.m, len(b), test.n) } } } func TestRequiredNotSetError(t *testing.T) { pb := initGoTest(false) pb.RequiredField.Label = nil pb.F_Int32Required = nil pb.F_Int64Required = nil expected := "0807" + // field 1, encoding 0, value 7 "2206" + "120474797065" + // field 4, encoding 2 (GoTestField) "5001" + // field 10, encoding 0, value 1 "6d20000000" + // field 13, encoding 5, value 0x20 "714000000000000000" + // field 14, encoding 1, value 0x40 "78a019" + // field 15, encoding 0, value 0xca0 = 3232 "8001c032" + // field 16, encoding 0, value 0x1940 = 6464 "8d0100004a45" + // field 17, encoding 5, value 3232.0 "9101000000000040b940" + // field 18, encoding 1, value 6464.0 "9a0106" + "737472696e67" + // field 19, encoding 2, string "string" "b304" + // field 70, encoding 3, start group "ba0408" + "7265717569726564" + // field 71, encoding 2, string "required" "b404" + // field 70, encoding 4, end group "aa0605" + "6279746573" + // field 101, encoding 2, string "bytes" "b0063f" + // field 102, encoding 0, 0x3f zigzag32 "b8067f" // field 103, encoding 0, 0x7f zigzag64 o := old() mbytes, err := Marshal(pb) if _, ok := err.(*RequiredNotSetError); !ok { fmt.Printf("marshal-1 err = %v, want *RequiredNotSetError", err) o.DebugPrint("", mbytes) t.Fatalf("expected = %s", expected) } if strings.Index(err.Error(), "RequiredField.Label") < 0 { t.Errorf("marshal-1 wrong err msg: %v", err) } if !equal(mbytes, expected, t) { o.DebugPrint("neq 1", mbytes) t.Fatalf("expected = %s", expected) } // Now test Unmarshal by recreating the original buffer. pbd := new(GoTest) err = Unmarshal(mbytes, pbd) if _, ok := err.(*RequiredNotSetError); !ok { t.Fatalf("unmarshal err = %v, want *RequiredNotSetError", err) o.DebugPrint("", mbytes) t.Fatalf("string = %s", expected) } if strings.Index(err.Error(), "RequiredField.{Unknown}") < 0 { t.Errorf("unmarshal wrong err msg: %v", err) } mbytes, err = Marshal(pbd) if _, ok := err.(*RequiredNotSetError); !ok { t.Errorf("marshal-2 err = %v, want *RequiredNotSetError", err) o.DebugPrint("", mbytes) t.Fatalf("string = %s", expected) } if strings.Index(err.Error(), "RequiredField.Label") < 0 { t.Errorf("marshal-2 wrong err msg: %v", err) } if !equal(mbytes, expected, t) { o.DebugPrint("neq 2", mbytes) t.Fatalf("string = %s", expected) } } func fuzzUnmarshal(t *testing.T, data []byte) { defer func() { if e := recover(); e != nil { t.Errorf("These bytes caused a panic: %+v", data) t.Logf("Stack:\n%s", debug.Stack()) t.FailNow() } }() pb := new(MyMessage) Unmarshal(data, pb) } func TestMapFieldMarshal(t *testing.T) { m := &MessageWithMap{ NameMapping: map[int32]string{ 1: "Rob", 4: "Ian", 8: "Dave", }, } b, err := Marshal(m) if err != nil { t.Fatalf("Marshal: %v", err) } // b should be the concatenation of these three byte sequences in some order. parts := []string{ "\n\a\b\x01\x12\x03Rob", "\n\a\b\x04\x12\x03Ian", "\n\b\b\x08\x12\x04Dave", } ok := false for i := range parts { for j := range parts { if j == i { continue } for k := range parts { if k == i || k == j { continue } try := parts[i] + parts[j] + parts[k] if bytes.Equal(b, []byte(try)) { ok = true break } } } } if !ok { t.Fatalf("Incorrect Marshal output.\n got %q\nwant %q (or a permutation of that)", b, parts[0]+parts[1]+parts[2]) } t.Logf("FYI b: %q", b) (new(Buffer)).DebugPrint("Dump of b", b) } func TestMapFieldRoundTrips(t *testing.T) { m := &MessageWithMap{ NameMapping: map[int32]string{ 1: "Rob", 4: "Ian", 8: "Dave", }, MsgMapping: map[int64]*FloatingPoint{ 0x7001: {F: Float64(2.0)}, }, ByteMapping: map[bool][]byte{ false: []byte("that's not right!"), true: []byte("aye, 'tis true!"), }, } b, err := Marshal(m) if err != nil { t.Fatalf("Marshal: %v", err) } t.Logf("FYI b: %q", b) m2 := new(MessageWithMap) if err := Unmarshal(b, m2); err != nil { t.Fatalf("Unmarshal: %v", err) } for _, pair := range [][2]interface{}{ {m.NameMapping, m2.NameMapping}, {m.MsgMapping, m2.MsgMapping}, {m.ByteMapping, m2.ByteMapping}, } { if !reflect.DeepEqual(pair[0], pair[1]) { t.Errorf("Map did not survive a round trip.\ninitial: %v\n final: %v", pair[0], pair[1]) } } } func TestMapFieldWithNil(t *testing.T) { m1 := &MessageWithMap{ MsgMapping: map[int64]*FloatingPoint{ 1: nil, }, } b, err := Marshal(m1) if err != nil { t.Fatalf("Marshal: %v", err) } m2 := new(MessageWithMap) if err := Unmarshal(b, m2); err != nil { t.Fatalf("Unmarshal: %v, got these bytes: %v", err, b) } if v, ok := m2.MsgMapping[1]; !ok { t.Error("msg_mapping[1] not present") } else if v != nil { t.Errorf("msg_mapping[1] not nil: %v", v) } } func TestMapFieldWithNilBytes(t *testing.T) { m1 := &MessageWithMap{ ByteMapping: map[bool][]byte{ false: {}, true: nil, }, } n := Size(m1) b, err := Marshal(m1) if err != nil { t.Fatalf("Marshal: %v", err) } if n != len(b) { t.Errorf("Size(m1) = %d; want len(Marshal(m1)) = %d", n, len(b)) } m2 := new(MessageWithMap) if err := Unmarshal(b, m2); err != nil { t.Fatalf("Unmarshal: %v, got these bytes: %v", err, b) } if v, ok := m2.ByteMapping[false]; !ok { t.Error("byte_mapping[false] not present") } else if len(v) != 0 { t.Errorf("byte_mapping[false] not empty: %#v", v) } if v, ok := m2.ByteMapping[true]; !ok { t.Error("byte_mapping[true] not present") } else if len(v) != 0 { t.Errorf("byte_mapping[true] not empty: %#v", v) } } func TestDecodeMapFieldMissingKey(t *testing.T) { b := []byte{ 0x0A, 0x03, // message, tag 1 (name_mapping), of length 3 bytes // no key 0x12, 0x01, 0x6D, // string value of length 1 byte, value "m" } got := &MessageWithMap{} err := Unmarshal(b, got) if err != nil { t.Fatalf("failed to marshal map with missing key: %v", err) } want := &MessageWithMap{NameMapping: map[int32]string{0: "m"}} if !Equal(got, want) { t.Errorf("Unmarshaled map with no key was not as expected. got: %v, want %v", got, want) } } func TestDecodeMapFieldMissingValue(t *testing.T) { b := []byte{ 0x0A, 0x02, // message, tag 1 (name_mapping), of length 2 bytes 0x08, 0x01, // varint key, value 1 // no value } got := &MessageWithMap{} err := Unmarshal(b, got) if err != nil { t.Fatalf("failed to marshal map with missing value: %v", err) } want := &MessageWithMap{NameMapping: map[int32]string{1: ""}} if !Equal(got, want) { t.Errorf("Unmarshaled map with no value was not as expected. got: %v, want %v", got, want) } } func TestOneof(t *testing.T) { m := &Communique{} b, err := Marshal(m) if err != nil { t.Fatalf("Marshal of empty message with oneof: %v", err) } if len(b) != 0 { t.Errorf("Marshal of empty message yielded too many bytes: %v", b) } m = &Communique{ Union: &Communique_Name{Name: "Barry"}, } // Round-trip. b, err = Marshal(m) if err != nil { t.Fatalf("Marshal of message with oneof: %v", err) } if len(b) != 7 { // name tag/wire (1) + name len (1) + name (5) t.Errorf("Incorrect marshal of message with oneof: %v", b) } m.Reset() if err = Unmarshal(b, m); err != nil { t.Fatalf("Unmarshal of message with oneof: %v", err) } if x, ok := m.Union.(*Communique_Name); !ok || x.Name != "Barry" { t.Errorf("After round trip, Union = %+v", m.Union) } if name := m.GetName(); name != "Barry" { t.Errorf("After round trip, GetName = %q, want %q", name, "Barry") } // Let's try with a message in the oneof. m.Union = &Communique_Msg{Msg: &Strings{StringField: String("deep deep string")}} b, err = Marshal(m) if err != nil { t.Fatalf("Marshal of message with oneof set to message: %v", err) } if len(b) != 20 { // msg tag/wire (1) + msg len (1) + msg (1 + 1 + 16) t.Errorf("Incorrect marshal of message with oneof set to message: %v", b) } m.Reset() if err := Unmarshal(b, m); err != nil { t.Fatalf("Unmarshal of message with oneof set to message: %v", err) } ss, ok := m.Union.(*Communique_Msg) if !ok || ss.Msg.GetStringField() != "deep deep string" { t.Errorf("After round trip with oneof set to message, Union = %+v", m.Union) } } func TestInefficientPackedBool(t *testing.T) { // https://github.com/golang/protobuf/issues/76 inp := []byte{ 0x12, 0x02, // 0x12 = 2<<3|2; 2 bytes // Usually a bool should take a single byte, // but it is permitted to be any varint. 0xb9, 0x30, } if err := Unmarshal(inp, new(MoreRepeated)); err != nil { t.Error(err) } } // Benchmarks func testMsg() *GoTest { pb := initGoTest(true) const N = 1000 // Internally the library starts much smaller. pb.F_Int32Repeated = make([]int32, N) pb.F_DoubleRepeated = make([]float64, N) for i := 0; i < N; i++ { pb.F_Int32Repeated[i] = int32(i) pb.F_DoubleRepeated[i] = float64(i) } return pb } func bytesMsg() *GoTest { pb := initGoTest(true) buf := make([]byte, 4000) for i := range buf { buf[i] = byte(i) } pb.F_BytesDefaulted = buf return pb } func benchmarkMarshal(b *testing.B, pb Message, marshal func(Message) ([]byte, error)) { d, _ := marshal(pb) b.SetBytes(int64(len(d))) b.ResetTimer() for i := 0; i < b.N; i++ { marshal(pb) } } func benchmarkBufferMarshal(b *testing.B, pb Message) { p := NewBuffer(nil) benchmarkMarshal(b, pb, func(pb0 Message) ([]byte, error) { p.Reset() err := p.Marshal(pb0) return p.Bytes(), err }) } func benchmarkSize(b *testing.B, pb Message) { benchmarkMarshal(b, pb, func(pb0 Message) ([]byte, error) { Size(pb) return nil, nil }) } func newOf(pb Message) Message { in := reflect.ValueOf(pb) if in.IsNil() { return pb } return reflect.New(in.Type().Elem()).Interface().(Message) } func benchmarkUnmarshal(b *testing.B, pb Message, unmarshal func([]byte, Message) error) { d, _ := Marshal(pb) b.SetBytes(int64(len(d))) pbd := newOf(pb) b.ResetTimer() for i := 0; i < b.N; i++ { unmarshal(d, pbd) } } func benchmarkBufferUnmarshal(b *testing.B, pb Message) { p := NewBuffer(nil) benchmarkUnmarshal(b, pb, func(d []byte, pb0 Message) error { p.SetBuf(d) return p.Unmarshal(pb0) }) } // Benchmark{Marshal,BufferMarshal,Size,Unmarshal,BufferUnmarshal}{,Bytes} func BenchmarkMarshal(b *testing.B) { benchmarkMarshal(b, testMsg(), Marshal) } func BenchmarkBufferMarshal(b *testing.B) { benchmarkBufferMarshal(b, testMsg()) } func BenchmarkSize(b *testing.B) { benchmarkSize(b, testMsg()) } func BenchmarkUnmarshal(b *testing.B) { benchmarkUnmarshal(b, testMsg(), Unmarshal) } func BenchmarkBufferUnmarshal(b *testing.B) { benchmarkBufferUnmarshal(b, testMsg()) } func BenchmarkMarshalBytes(b *testing.B) { benchmarkMarshal(b, bytesMsg(), Marshal) } func BenchmarkBufferMarshalBytes(b *testing.B) { benchmarkBufferMarshal(b, bytesMsg()) } func BenchmarkSizeBytes(b *testing.B) { benchmarkSize(b, bytesMsg()) } func BenchmarkUnmarshalBytes(b *testing.B) { benchmarkUnmarshal(b, bytesMsg(), Unmarshal) } func BenchmarkBufferUnmarshalBytes(b *testing.B) { benchmarkBufferUnmarshal(b, bytesMsg()) } func BenchmarkUnmarshalUnrecognizedFields(b *testing.B) { b.StopTimer() pb := initGoTestField() skip := &GoSkipTest{ SkipInt32: Int32(32), SkipFixed32: Uint32(3232), SkipFixed64: Uint64(6464), SkipString: String("skipper"), Skipgroup: &GoSkipTest_SkipGroup{ GroupInt32: Int32(75), GroupString: String("wxyz"), }, } pbd := new(GoTestField) p := NewBuffer(nil) p.Marshal(pb) p.Marshal(skip) p2 := NewBuffer(nil) b.StartTimer() for i := 0; i < b.N; i++ { p2.SetBuf(p.Bytes()) p2.Unmarshal(pbd) } } golang-gogoprotobuf-0.5/proto/any_test.go000066400000000000000000000211421317075173200206650ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. package proto_test import ( "strings" "testing" "github.com/gogo/protobuf/proto" pb "github.com/gogo/protobuf/proto/proto3_proto" testpb "github.com/gogo/protobuf/proto/testdata" "github.com/gogo/protobuf/types" ) var ( expandedMarshaler = proto.TextMarshaler{ExpandAny: true} expandedCompactMarshaler = proto.TextMarshaler{Compact: true, ExpandAny: true} ) // anyEqual reports whether two messages which may be google.protobuf.Any or may // contain google.protobuf.Any fields are equal. We can't use proto.Equal for // comparison, because semantically equivalent messages may be marshaled to // binary in different tag order. Instead, trust that TextMarshaler with // ExpandAny option works and compare the text marshaling results. func anyEqual(got, want proto.Message) bool { // if messages are proto.Equal, no need to marshal. if proto.Equal(got, want) { return true } g := expandedMarshaler.Text(got) w := expandedMarshaler.Text(want) return g == w } type golden struct { m proto.Message t, c string } var goldenMessages = makeGolden() func makeGolden() []golden { nested := &pb.Nested{Bunny: "Monty"} nb, err := proto.Marshal(nested) if err != nil { panic(err) } m1 := &pb.Message{ Name: "David", ResultCount: 47, Anything: &types.Any{TypeUrl: "type.googleapis.com/" + proto.MessageName(nested), Value: nb}, } m2 := &pb.Message{ Name: "David", ResultCount: 47, Anything: &types.Any{TypeUrl: "http://[::1]/type.googleapis.com/" + proto.MessageName(nested), Value: nb}, } m3 := &pb.Message{ Name: "David", ResultCount: 47, Anything: &types.Any{TypeUrl: `type.googleapis.com/"/` + proto.MessageName(nested), Value: nb}, } m4 := &pb.Message{ Name: "David", ResultCount: 47, Anything: &types.Any{TypeUrl: "type.googleapis.com/a/path/" + proto.MessageName(nested), Value: nb}, } m5 := &types.Any{TypeUrl: "type.googleapis.com/" + proto.MessageName(nested), Value: nb} any1 := &testpb.MyMessage{Count: proto.Int32(47), Name: proto.String("David")} proto.SetExtension(any1, testpb.E_Ext_More, &testpb.Ext{Data: proto.String("foo")}) proto.SetExtension(any1, testpb.E_Ext_Text, proto.String("bar")) any1b, err := proto.Marshal(any1) if err != nil { panic(err) } any2 := &testpb.MyMessage{Count: proto.Int32(42), Bikeshed: testpb.MyMessage_GREEN.Enum(), RepBytes: [][]byte{[]byte("roboto")}} proto.SetExtension(any2, testpb.E_Ext_More, &testpb.Ext{Data: proto.String("baz")}) any2b, err := proto.Marshal(any2) if err != nil { panic(err) } m6 := &pb.Message{ Name: "David", ResultCount: 47, Anything: &types.Any{TypeUrl: "type.googleapis.com/" + proto.MessageName(any1), Value: any1b}, ManyThings: []*types.Any{ {TypeUrl: "type.googleapis.com/" + proto.MessageName(any2), Value: any2b}, {TypeUrl: "type.googleapis.com/" + proto.MessageName(any1), Value: any1b}, }, } const ( m1Golden = ` name: "David" result_count: 47 anything: < [type.googleapis.com/proto3_proto.Nested]: < bunny: "Monty" > > ` m2Golden = ` name: "David" result_count: 47 anything: < ["http://[::1]/type.googleapis.com/proto3_proto.Nested"]: < bunny: "Monty" > > ` m3Golden = ` name: "David" result_count: 47 anything: < ["type.googleapis.com/\"/proto3_proto.Nested"]: < bunny: "Monty" > > ` m4Golden = ` name: "David" result_count: 47 anything: < [type.googleapis.com/a/path/proto3_proto.Nested]: < bunny: "Monty" > > ` m5Golden = ` [type.googleapis.com/proto3_proto.Nested]: < bunny: "Monty" > ` m6Golden = ` name: "David" result_count: 47 anything: < [type.googleapis.com/testdata.MyMessage]: < count: 47 name: "David" [testdata.Ext.more]: < data: "foo" > [testdata.Ext.text]: "bar" > > many_things: < [type.googleapis.com/testdata.MyMessage]: < count: 42 bikeshed: GREEN rep_bytes: "roboto" [testdata.Ext.more]: < data: "baz" > > > many_things: < [type.googleapis.com/testdata.MyMessage]: < count: 47 name: "David" [testdata.Ext.more]: < data: "foo" > [testdata.Ext.text]: "bar" > > ` ) return []golden{ {m1, strings.TrimSpace(m1Golden) + "\n", strings.TrimSpace(compact(m1Golden)) + " "}, {m2, strings.TrimSpace(m2Golden) + "\n", strings.TrimSpace(compact(m2Golden)) + " "}, {m3, strings.TrimSpace(m3Golden) + "\n", strings.TrimSpace(compact(m3Golden)) + " "}, {m4, strings.TrimSpace(m4Golden) + "\n", strings.TrimSpace(compact(m4Golden)) + " "}, {m5, strings.TrimSpace(m5Golden) + "\n", strings.TrimSpace(compact(m5Golden)) + " "}, {m6, strings.TrimSpace(m6Golden) + "\n", strings.TrimSpace(compact(m6Golden)) + " "}, } } func TestMarshalGolden(t *testing.T) { for _, tt := range goldenMessages { if got, want := expandedMarshaler.Text(tt.m), tt.t; got != want { t.Errorf("message %v: got:\n%s\nwant:\n%s", tt.m, got, want) } if got, want := expandedCompactMarshaler.Text(tt.m), tt.c; got != want { t.Errorf("message %v: got:\n`%s`\nwant:\n`%s`", tt.m, got, want) } } } func TestUnmarshalGolden(t *testing.T) { for _, tt := range goldenMessages { want := tt.m got := proto.Clone(tt.m) got.Reset() if err := proto.UnmarshalText(tt.t, got); err != nil { t.Errorf("failed to unmarshal\n%s\nerror: %v", tt.t, err) } if !anyEqual(got, want) { t.Errorf("message:\n%s\ngot:\n%s\nwant:\n%s", tt.t, got, want) } got.Reset() if err := proto.UnmarshalText(tt.c, got); err != nil { t.Errorf("failed to unmarshal\n%s\nerror: %v", tt.c, err) } if !anyEqual(got, want) { t.Errorf("message:\n%s\ngot:\n%s\nwant:\n%s", tt.c, got, want) } } } func TestMarshalUnknownAny(t *testing.T) { m := &pb.Message{ Anything: &types.Any{ TypeUrl: "foo", Value: []byte("bar"), }, } want := `anything: < type_url: "foo" value: "bar" > ` got := expandedMarshaler.Text(m) if got != want { t.Errorf("got\n`%s`\nwant\n`%s`", got, want) } } func TestAmbiguousAny(t *testing.T) { pb := &types.Any{} err := proto.UnmarshalText(` type_url: "ttt/proto3_proto.Nested" value: "\n\x05Monty" `, pb) t.Logf("result: %v (error: %v)", expandedMarshaler.Text(pb), err) if err != nil { t.Errorf("failed to parse ambiguous Any message: %v", err) } } func TestUnmarshalOverwriteAny(t *testing.T) { pb := &types.Any{} err := proto.UnmarshalText(` [type.googleapis.com/a/path/proto3_proto.Nested]: < bunny: "Monty" > [type.googleapis.com/a/path/proto3_proto.Nested]: < bunny: "Rabbit of Caerbannog" > `, pb) want := `line 7: Any message unpacked multiple times, or "type_url" already set` if err.Error() != want { t.Errorf("incorrect error.\nHave: %v\nWant: %v", err.Error(), want) } } func TestUnmarshalAnyMixAndMatch(t *testing.T) { pb := &types.Any{} err := proto.UnmarshalText(` value: "\n\x05Monty" [type.googleapis.com/a/path/proto3_proto.Nested]: < bunny: "Rabbit of Caerbannog" > `, pb) want := `line 5: Any message unpacked multiple times, or "value" already set` if err.Error() != want { t.Errorf("incorrect error.\nHave: %v\nWant: %v", err.Error(), want) } } golang-gogoprotobuf-0.5/proto/clone.go000066400000000000000000000160211317075173200201370ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2011 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. // Protocol buffer deep copy and merge. // TODO: RawMessage. package proto import ( "log" "reflect" "strings" ) // Clone returns a deep copy of a protocol buffer. func Clone(pb Message) Message { in := reflect.ValueOf(pb) if in.IsNil() { return pb } out := reflect.New(in.Type().Elem()) // out is empty so a merge is a deep copy. mergeStruct(out.Elem(), in.Elem()) return out.Interface().(Message) } // Merge merges src into dst. // Required and optional fields that are set in src will be set to that value in dst. // Elements of repeated fields will be appended. // Merge panics if src and dst are not the same type, or if dst is nil. func Merge(dst, src Message) { in := reflect.ValueOf(src) out := reflect.ValueOf(dst) if out.IsNil() { panic("proto: nil destination") } if in.Type() != out.Type() { // Explicit test prior to mergeStruct so that mistyped nils will fail panic("proto: type mismatch") } if in.IsNil() { // Merging nil into non-nil is a quiet no-op return } mergeStruct(out.Elem(), in.Elem()) } func mergeStruct(out, in reflect.Value) { sprop := GetProperties(in.Type()) for i := 0; i < in.NumField(); i++ { f := in.Type().Field(i) if strings.HasPrefix(f.Name, "XXX_") { continue } mergeAny(out.Field(i), in.Field(i), false, sprop.Prop[i]) } if emIn, ok := in.Addr().Interface().(extensionsBytes); ok { emOut := out.Addr().Interface().(extensionsBytes) bIn := emIn.GetExtensions() bOut := emOut.GetExtensions() *bOut = append(*bOut, *bIn...) } else if emIn, ok := extendable(in.Addr().Interface()); ok { emOut, _ := extendable(out.Addr().Interface()) mIn, muIn := emIn.extensionsRead() if mIn != nil { mOut := emOut.extensionsWrite() muIn.Lock() mergeExtension(mOut, mIn) muIn.Unlock() } } uf := in.FieldByName("XXX_unrecognized") if !uf.IsValid() { return } uin := uf.Bytes() if len(uin) > 0 { out.FieldByName("XXX_unrecognized").SetBytes(append([]byte(nil), uin...)) } } // mergeAny performs a merge between two values of the same type. // viaPtr indicates whether the values were indirected through a pointer (implying proto2). // prop is set if this is a struct field (it may be nil). func mergeAny(out, in reflect.Value, viaPtr bool, prop *Properties) { if in.Type() == protoMessageType { if !in.IsNil() { if out.IsNil() { out.Set(reflect.ValueOf(Clone(in.Interface().(Message)))) } else { Merge(out.Interface().(Message), in.Interface().(Message)) } } return } switch in.Kind() { case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64, reflect.String, reflect.Uint32, reflect.Uint64: if !viaPtr && isProto3Zero(in) { return } out.Set(in) case reflect.Interface: // Probably a oneof field; copy non-nil values. if in.IsNil() { return } // Allocate destination if it is not set, or set to a different type. // Otherwise we will merge as normal. if out.IsNil() || out.Elem().Type() != in.Elem().Type() { out.Set(reflect.New(in.Elem().Elem().Type())) // interface -> *T -> T -> new(T) } mergeAny(out.Elem(), in.Elem(), false, nil) case reflect.Map: if in.Len() == 0 { return } if out.IsNil() { out.Set(reflect.MakeMap(in.Type())) } // For maps with value types of *T or []byte we need to deep copy each value. elemKind := in.Type().Elem().Kind() for _, key := range in.MapKeys() { var val reflect.Value switch elemKind { case reflect.Ptr: val = reflect.New(in.Type().Elem().Elem()) mergeAny(val, in.MapIndex(key), false, nil) case reflect.Slice: val = in.MapIndex(key) val = reflect.ValueOf(append([]byte{}, val.Bytes()...)) default: val = in.MapIndex(key) } out.SetMapIndex(key, val) } case reflect.Ptr: if in.IsNil() { return } if out.IsNil() { out.Set(reflect.New(in.Elem().Type())) } mergeAny(out.Elem(), in.Elem(), true, nil) case reflect.Slice: if in.IsNil() { return } if in.Type().Elem().Kind() == reflect.Uint8 { // []byte is a scalar bytes field, not a repeated field. // Edge case: if this is in a proto3 message, a zero length // bytes field is considered the zero value, and should not // be merged. if prop != nil && prop.proto3 && in.Len() == 0 { return } // Make a deep copy. // Append to []byte{} instead of []byte(nil) so that we never end up // with a nil result. out.SetBytes(append([]byte{}, in.Bytes()...)) return } n := in.Len() if out.IsNil() { out.Set(reflect.MakeSlice(in.Type(), 0, n)) } switch in.Type().Elem().Kind() { case reflect.Bool, reflect.Float32, reflect.Float64, reflect.Int32, reflect.Int64, reflect.String, reflect.Uint32, reflect.Uint64: out.Set(reflect.AppendSlice(out, in)) default: for i := 0; i < n; i++ { x := reflect.Indirect(reflect.New(in.Type().Elem())) mergeAny(x, in.Index(i), false, nil) out.Set(reflect.Append(out, x)) } } case reflect.Struct: mergeStruct(out, in) default: // unknown type, so not a protocol buffer log.Printf("proto: don't know how to copy %v", in) } } func mergeExtension(out, in map[int32]Extension) { for extNum, eIn := range in { eOut := Extension{desc: eIn.desc} if eIn.value != nil { v := reflect.New(reflect.TypeOf(eIn.value)).Elem() mergeAny(v, reflect.ValueOf(eIn.value), false, nil) eOut.value = v.Interface() } if eIn.enc != nil { eOut.enc = make([]byte, len(eIn.enc)) copy(eOut.enc, eIn.enc) } out[extNum] = eOut } } golang-gogoprotobuf-0.5/proto/clone_test.go000066400000000000000000000172641317075173200212100ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2011 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. package proto_test import ( "testing" "github.com/gogo/protobuf/proto" proto3pb "github.com/gogo/protobuf/proto/proto3_proto" pb "github.com/gogo/protobuf/proto/testdata" ) var cloneTestMessage = &pb.MyMessage{ Count: proto.Int32(42), Name: proto.String("Dave"), Pet: []string{"bunny", "kitty", "horsey"}, Inner: &pb.InnerMessage{ Host: proto.String("niles"), Port: proto.Int32(9099), Connected: proto.Bool(true), }, Others: []*pb.OtherMessage{ { Value: []byte("some bytes"), }, }, Somegroup: &pb.MyMessage_SomeGroup{ GroupField: proto.Int32(6), }, RepBytes: [][]byte{[]byte("sham"), []byte("wow")}, } func init() { ext := &pb.Ext{ Data: proto.String("extension"), } if err := proto.SetExtension(cloneTestMessage, pb.E_Ext_More, ext); err != nil { panic("SetExtension: " + err.Error()) } } func TestClone(t *testing.T) { m := proto.Clone(cloneTestMessage).(*pb.MyMessage) if !proto.Equal(m, cloneTestMessage) { t.Errorf("Clone(%v) = %v", cloneTestMessage, m) } // Verify it was a deep copy. *m.Inner.Port++ if proto.Equal(m, cloneTestMessage) { t.Error("Mutating clone changed the original") } // Byte fields and repeated fields should be copied. if &m.Pet[0] == &cloneTestMessage.Pet[0] { t.Error("Pet: repeated field not copied") } if &m.Others[0] == &cloneTestMessage.Others[0] { t.Error("Others: repeated field not copied") } if &m.Others[0].Value[0] == &cloneTestMessage.Others[0].Value[0] { t.Error("Others[0].Value: bytes field not copied") } if &m.RepBytes[0] == &cloneTestMessage.RepBytes[0] { t.Error("RepBytes: repeated field not copied") } if &m.RepBytes[0][0] == &cloneTestMessage.RepBytes[0][0] { t.Error("RepBytes[0]: bytes field not copied") } } func TestCloneNil(t *testing.T) { var m *pb.MyMessage if c := proto.Clone(m); !proto.Equal(m, c) { t.Errorf("Clone(%v) = %v", m, c) } } var mergeTests = []struct { src, dst, want proto.Message }{ { src: &pb.MyMessage{ Count: proto.Int32(42), }, dst: &pb.MyMessage{ Name: proto.String("Dave"), }, want: &pb.MyMessage{ Count: proto.Int32(42), Name: proto.String("Dave"), }, }, { src: &pb.MyMessage{ Inner: &pb.InnerMessage{ Host: proto.String("hey"), Connected: proto.Bool(true), }, Pet: []string{"horsey"}, Others: []*pb.OtherMessage{ { Value: []byte("some bytes"), }, }, }, dst: &pb.MyMessage{ Inner: &pb.InnerMessage{ Host: proto.String("niles"), Port: proto.Int32(9099), }, Pet: []string{"bunny", "kitty"}, Others: []*pb.OtherMessage{ { Key: proto.Int64(31415926535), }, { // Explicitly test a src=nil field Inner: nil, }, }, }, want: &pb.MyMessage{ Inner: &pb.InnerMessage{ Host: proto.String("hey"), Connected: proto.Bool(true), Port: proto.Int32(9099), }, Pet: []string{"bunny", "kitty", "horsey"}, Others: []*pb.OtherMessage{ { Key: proto.Int64(31415926535), }, {}, { Value: []byte("some bytes"), }, }, }, }, { src: &pb.MyMessage{ RepBytes: [][]byte{[]byte("wow")}, }, dst: &pb.MyMessage{ Somegroup: &pb.MyMessage_SomeGroup{ GroupField: proto.Int32(6), }, RepBytes: [][]byte{[]byte("sham")}, }, want: &pb.MyMessage{ Somegroup: &pb.MyMessage_SomeGroup{ GroupField: proto.Int32(6), }, RepBytes: [][]byte{[]byte("sham"), []byte("wow")}, }, }, // Check that a scalar bytes field replaces rather than appends. { src: &pb.OtherMessage{Value: []byte("foo")}, dst: &pb.OtherMessage{Value: []byte("bar")}, want: &pb.OtherMessage{Value: []byte("foo")}, }, { src: &pb.MessageWithMap{ NameMapping: map[int32]string{6: "Nigel"}, MsgMapping: map[int64]*pb.FloatingPoint{ 0x4001: {F: proto.Float64(2.0)}, 0x4002: { F: proto.Float64(2.0), }, }, ByteMapping: map[bool][]byte{true: []byte("wowsa")}, }, dst: &pb.MessageWithMap{ NameMapping: map[int32]string{ 6: "Bruce", // should be overwritten 7: "Andrew", }, MsgMapping: map[int64]*pb.FloatingPoint{ 0x4002: { F: proto.Float64(3.0), Exact: proto.Bool(true), }, // the entire message should be overwritten }, }, want: &pb.MessageWithMap{ NameMapping: map[int32]string{ 6: "Nigel", 7: "Andrew", }, MsgMapping: map[int64]*pb.FloatingPoint{ 0x4001: {F: proto.Float64(2.0)}, 0x4002: { F: proto.Float64(2.0), }, }, ByteMapping: map[bool][]byte{true: []byte("wowsa")}, }, }, // proto3 shouldn't merge zero values, // in the same way that proto2 shouldn't merge nils. { src: &proto3pb.Message{ Name: "Aaron", Data: []byte(""), // zero value, but not nil }, dst: &proto3pb.Message{ HeightInCm: 176, Data: []byte("texas!"), }, want: &proto3pb.Message{ Name: "Aaron", HeightInCm: 176, Data: []byte("texas!"), }, }, // Oneof fields should merge by assignment. { src: &pb.Communique{ Union: &pb.Communique_Number{Number: 41}, }, dst: &pb.Communique{ Union: &pb.Communique_Name{Name: "Bobby Tables"}, }, want: &pb.Communique{ Union: &pb.Communique_Number{Number: 41}, }, }, // Oneof nil is the same as not set. { src: &pb.Communique{}, dst: &pb.Communique{ Union: &pb.Communique_Name{Name: "Bobby Tables"}, }, want: &pb.Communique{ Union: &pb.Communique_Name{Name: "Bobby Tables"}, }, }, { src: &proto3pb.Message{ Terrain: map[string]*proto3pb.Nested{ "kay_a": {Cute: true}, // replace "kay_b": {Bunny: "rabbit"}, // insert }, }, dst: &proto3pb.Message{ Terrain: map[string]*proto3pb.Nested{ "kay_a": {Bunny: "lost"}, // replaced "kay_c": {Bunny: "bunny"}, // keep }, }, want: &proto3pb.Message{ Terrain: map[string]*proto3pb.Nested{ "kay_a": {Cute: true}, "kay_b": {Bunny: "rabbit"}, "kay_c": {Bunny: "bunny"}, }, }, }, } func TestMerge(t *testing.T) { for _, m := range mergeTests { got := proto.Clone(m.dst) proto.Merge(got, m.src) if !proto.Equal(got, m.want) { t.Errorf("Merge(%v, %v)\n got %v\nwant %v\n", m.dst, m.src, got, m.want) } } } golang-gogoprotobuf-0.5/proto/decode.go000066400000000000000000000602121317075173200202630ustar00rootroot00000000000000// 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. package proto /* * Routines for decoding protocol buffer data to construct in-memory representations. */ import ( "errors" "fmt" "io" "os" "reflect" ) // errOverflow is returned when an integer is too large to be represented. var errOverflow = errors.New("proto: integer overflow") // ErrInternalBadWireType is returned by generated code when an incorrect // wire type is encountered. It does not get returned to user code. var ErrInternalBadWireType = errors.New("proto: internal error: bad wiretype for oneof") // The fundamental decoders that interpret bytes on the wire. // Those that take integer types all return uint64 and are // therefore of type valueDecoder. // DecodeVarint reads a varint-encoded integer from the slice. // It returns the integer and the number of bytes consumed, or // zero if there is not enough. // This is the format for the // int32, int64, uint32, uint64, bool, and enum // protocol buffer types. func DecodeVarint(buf []byte) (x uint64, n int) { for shift := uint(0); shift < 64; shift += 7 { if n >= len(buf) { return 0, 0 } b := uint64(buf[n]) n++ x |= (b & 0x7F) << shift if (b & 0x80) == 0 { return x, n } } // The number is too large to represent in a 64-bit value. return 0, 0 } func (p *Buffer) decodeVarintSlow() (x uint64, err error) { i := p.index l := len(p.buf) for shift := uint(0); shift < 64; shift += 7 { if i >= l { err = io.ErrUnexpectedEOF return } b := p.buf[i] i++ x |= (uint64(b) & 0x7F) << shift if b < 0x80 { p.index = i return } } // The number is too large to represent in a 64-bit value. err = errOverflow return } // DecodeVarint reads a varint-encoded integer from the Buffer. // This is the format for the // int32, int64, uint32, uint64, bool, and enum // protocol buffer types. func (p *Buffer) DecodeVarint() (x uint64, err error) { i := p.index buf := p.buf if i >= len(buf) { return 0, io.ErrUnexpectedEOF } else if buf[i] < 0x80 { p.index++ return uint64(buf[i]), nil } else if len(buf)-i < 10 { return p.decodeVarintSlow() } var b uint64 // we already checked the first byte x = uint64(buf[i]) - 0x80 i++ b = uint64(buf[i]) i++ x += b << 7 if b&0x80 == 0 { goto done } x -= 0x80 << 7 b = uint64(buf[i]) i++ x += b << 14 if b&0x80 == 0 { goto done } x -= 0x80 << 14 b = uint64(buf[i]) i++ x += b << 21 if b&0x80 == 0 { goto done } x -= 0x80 << 21 b = uint64(buf[i]) i++ x += b << 28 if b&0x80 == 0 { goto done } x -= 0x80 << 28 b = uint64(buf[i]) i++ x += b << 35 if b&0x80 == 0 { goto done } x -= 0x80 << 35 b = uint64(buf[i]) i++ x += b << 42 if b&0x80 == 0 { goto done } x -= 0x80 << 42 b = uint64(buf[i]) i++ x += b << 49 if b&0x80 == 0 { goto done } x -= 0x80 << 49 b = uint64(buf[i]) i++ x += b << 56 if b&0x80 == 0 { goto done } x -= 0x80 << 56 b = uint64(buf[i]) i++ x += b << 63 if b&0x80 == 0 { goto done } // x -= 0x80 << 63 // Always zero. return 0, errOverflow done: p.index = i return x, nil } // DecodeFixed64 reads a 64-bit integer from the Buffer. // This is the format for the // fixed64, sfixed64, and double protocol buffer types. func (p *Buffer) DecodeFixed64() (x uint64, err error) { // x, err already 0 i := p.index + 8 if i < 0 || i > len(p.buf) { err = io.ErrUnexpectedEOF return } p.index = i x = uint64(p.buf[i-8]) x |= uint64(p.buf[i-7]) << 8 x |= uint64(p.buf[i-6]) << 16 x |= uint64(p.buf[i-5]) << 24 x |= uint64(p.buf[i-4]) << 32 x |= uint64(p.buf[i-3]) << 40 x |= uint64(p.buf[i-2]) << 48 x |= uint64(p.buf[i-1]) << 56 return } // DecodeFixed32 reads a 32-bit integer from the Buffer. // This is the format for the // fixed32, sfixed32, and float protocol buffer types. func (p *Buffer) DecodeFixed32() (x uint64, err error) { // x, err already 0 i := p.index + 4 if i < 0 || i > len(p.buf) { err = io.ErrUnexpectedEOF return } p.index = i x = uint64(p.buf[i-4]) x |= uint64(p.buf[i-3]) << 8 x |= uint64(p.buf[i-2]) << 16 x |= uint64(p.buf[i-1]) << 24 return } // DecodeZigzag64 reads a zigzag-encoded 64-bit integer // from the Buffer. // This is the format used for the sint64 protocol buffer type. func (p *Buffer) DecodeZigzag64() (x uint64, err error) { x, err = p.DecodeVarint() if err != nil { return } x = (x >> 1) ^ uint64((int64(x&1)<<63)>>63) return } // DecodeZigzag32 reads a zigzag-encoded 32-bit integer // from the Buffer. // This is the format used for the sint32 protocol buffer type. func (p *Buffer) DecodeZigzag32() (x uint64, err error) { x, err = p.DecodeVarint() if err != nil { return } x = uint64((uint32(x) >> 1) ^ uint32((int32(x&1)<<31)>>31)) return } // These are not ValueDecoders: they produce an array of bytes or a string. // bytes, embedded messages // DecodeRawBytes reads a count-delimited byte buffer from the Buffer. // This is the format used for the bytes protocol buffer // type and for embedded messages. func (p *Buffer) DecodeRawBytes(alloc bool) (buf []byte, err error) { n, err := p.DecodeVarint() if err != nil { return nil, err } nb := int(n) if nb < 0 { return nil, fmt.Errorf("proto: bad byte length %d", nb) } end := p.index + nb if end < p.index || end > len(p.buf) { return nil, io.ErrUnexpectedEOF } if !alloc { // todo: check if can get more uses of alloc=false buf = p.buf[p.index:end] p.index += nb return } buf = make([]byte, nb) copy(buf, p.buf[p.index:]) p.index += nb return } // DecodeStringBytes reads an encoded string from the Buffer. // This is the format used for the proto2 string type. func (p *Buffer) DecodeStringBytes() (s string, err error) { buf, err := p.DecodeRawBytes(false) if err != nil { return } return string(buf), nil } // Skip the next item in the buffer. Its wire type is decoded and presented as an argument. // If the protocol buffer has extensions, and the field matches, add it as an extension. // Otherwise, if the XXX_unrecognized field exists, append the skipped data there. func (o *Buffer) skipAndSave(t reflect.Type, tag, wire int, base structPointer, unrecField field) error { oi := o.index err := o.skip(t, tag, wire) if err != nil { return err } if !unrecField.IsValid() { return nil } ptr := structPointer_Bytes(base, unrecField) // Add the skipped field to struct field obuf := o.buf o.buf = *ptr o.EncodeVarint(uint64(tag<<3 | wire)) *ptr = append(o.buf, obuf[oi:o.index]...) o.buf = obuf return nil } // Skip the next item in the buffer. Its wire type is decoded and presented as an argument. func (o *Buffer) skip(t reflect.Type, tag, wire int) error { var u uint64 var err error switch wire { case WireVarint: _, err = o.DecodeVarint() case WireFixed64: _, err = o.DecodeFixed64() case WireBytes: _, err = o.DecodeRawBytes(false) case WireFixed32: _, err = o.DecodeFixed32() case WireStartGroup: for { u, err = o.DecodeVarint() if err != nil { break } fwire := int(u & 0x7) if fwire == WireEndGroup { break } ftag := int(u >> 3) err = o.skip(t, ftag, fwire) if err != nil { break } } default: err = fmt.Errorf("proto: can't skip unknown wire type %d for %s", wire, t) } return err } // Unmarshaler is the interface representing objects that can // unmarshal themselves. The method should reset the receiver before // decoding starts. The argument points to data that may be // overwritten, so implementations should not keep references to the // buffer. type Unmarshaler interface { Unmarshal([]byte) error } // Unmarshal parses the protocol buffer representation in buf and places the // decoded result in pb. If the struct underlying pb does not match // the data in buf, the results can be unpredictable. // // Unmarshal resets pb before starting to unmarshal, so any // existing data in pb is always removed. Use UnmarshalMerge // to preserve and append to existing data. func Unmarshal(buf []byte, pb Message) error { pb.Reset() return UnmarshalMerge(buf, pb) } // UnmarshalMerge parses the protocol buffer representation in buf and // writes the decoded result to pb. If the struct underlying pb does not match // the data in buf, the results can be unpredictable. // // UnmarshalMerge merges into existing data in pb. // Most code should use Unmarshal instead. func UnmarshalMerge(buf []byte, pb Message) error { // If the object can unmarshal itself, let it. if u, ok := pb.(Unmarshaler); ok { return u.Unmarshal(buf) } return NewBuffer(buf).Unmarshal(pb) } // DecodeMessage reads a count-delimited message from the Buffer. func (p *Buffer) DecodeMessage(pb Message) error { enc, err := p.DecodeRawBytes(false) if err != nil { return err } return NewBuffer(enc).Unmarshal(pb) } // DecodeGroup reads a tag-delimited group from the Buffer. func (p *Buffer) DecodeGroup(pb Message) error { typ, base, err := getbase(pb) if err != nil { return err } return p.unmarshalType(typ.Elem(), GetProperties(typ.Elem()), true, base) } // Unmarshal parses the protocol buffer representation in the // Buffer and places the decoded result in pb. If the struct // underlying pb does not match the data in the buffer, the results can be // unpredictable. // // Unlike proto.Unmarshal, this does not reset pb before starting to unmarshal. func (p *Buffer) Unmarshal(pb Message) error { // If the object can unmarshal itself, let it. if u, ok := pb.(Unmarshaler); ok { err := u.Unmarshal(p.buf[p.index:]) p.index = len(p.buf) return err } typ, base, err := getbase(pb) if err != nil { return err } err = p.unmarshalType(typ.Elem(), GetProperties(typ.Elem()), false, base) if collectStats { stats.Decode++ } return err } // unmarshalType does the work of unmarshaling a structure. func (o *Buffer) unmarshalType(st reflect.Type, prop *StructProperties, is_group bool, base structPointer) error { var state errorState required, reqFields := prop.reqCount, uint64(0) var err error for err == nil && o.index < len(o.buf) { oi := o.index var u uint64 u, err = o.DecodeVarint() if err != nil { break } wire := int(u & 0x7) if wire == WireEndGroup { if is_group { if required > 0 { // Not enough information to determine the exact field. // (See below.) return &RequiredNotSetError{"{Unknown}"} } return nil // input is satisfied } return fmt.Errorf("proto: %s: wiretype end group for non-group", st) } tag := int(u >> 3) if tag <= 0 { return fmt.Errorf("proto: %s: illegal tag %d (wire type %d)", st, tag, wire) } fieldnum, ok := prop.decoderTags.get(tag) if !ok { // Maybe it's an extension? if prop.extendable { if e, eok := structPointer_Interface(base, st).(extensionsBytes); eok { if isExtensionField(e, int32(tag)) { if err = o.skip(st, tag, wire); err == nil { ext := e.GetExtensions() *ext = append(*ext, o.buf[oi:o.index]...) } continue } } else if e, _ := extendable(structPointer_Interface(base, st)); isExtensionField(e, int32(tag)) { if err = o.skip(st, tag, wire); err == nil { extmap := e.extensionsWrite() ext := extmap[int32(tag)] // may be missing ext.enc = append(ext.enc, o.buf[oi:o.index]...) extmap[int32(tag)] = ext } continue } } // Maybe it's a oneof? if prop.oneofUnmarshaler != nil { m := structPointer_Interface(base, st).(Message) // First return value indicates whether tag is a oneof field. ok, err = prop.oneofUnmarshaler(m, tag, wire, o) if err == ErrInternalBadWireType { // Map the error to something more descriptive. // Do the formatting here to save generated code space. err = fmt.Errorf("bad wiretype for oneof field in %T", m) } if ok { continue } } err = o.skipAndSave(st, tag, wire, base, prop.unrecField) continue } p := prop.Prop[fieldnum] if p.dec == nil { fmt.Fprintf(os.Stderr, "proto: no protobuf decoder for %s.%s\n", st, st.Field(fieldnum).Name) continue } dec := p.dec if wire != WireStartGroup && wire != p.WireType { if wire == WireBytes && p.packedDec != nil { // a packable field dec = p.packedDec } else { err = fmt.Errorf("proto: bad wiretype for field %s.%s: got wiretype %d, want %d", st, st.Field(fieldnum).Name, wire, p.WireType) continue } } decErr := dec(o, p, base) if decErr != nil && !state.shouldContinue(decErr, p) { err = decErr } if err == nil && p.Required { // Successfully decoded a required field. if tag <= 64 { // use bitmap for fields 1-64 to catch field reuse. var mask uint64 = 1 << uint64(tag-1) if reqFields&mask == 0 { // new required field reqFields |= mask required-- } } else { // This is imprecise. It can be fooled by a required field // with a tag > 64 that is encoded twice; that's very rare. // A fully correct implementation would require allocating // a data structure, which we would like to avoid. required-- } } } if err == nil { if is_group { return io.ErrUnexpectedEOF } if state.err != nil { return state.err } if required > 0 { // Not enough information to determine the exact field. If we use extra // CPU, we could determine the field only if the missing required field // has a tag <= 64 and we check reqFields. return &RequiredNotSetError{"{Unknown}"} } } return err } // Individual type decoders // For each, // u is the decoded value, // v is a pointer to the field (pointer) in the struct // Sizes of the pools to allocate inside the Buffer. // The goal is modest amortization and allocation // on at least 16-byte boundaries. const ( boolPoolSize = 16 uint32PoolSize = 8 uint64PoolSize = 4 ) // Decode a bool. func (o *Buffer) dec_bool(p *Properties, base structPointer) error { u, err := p.valDec(o) if err != nil { return err } if len(o.bools) == 0 { o.bools = make([]bool, boolPoolSize) } o.bools[0] = u != 0 *structPointer_Bool(base, p.field) = &o.bools[0] o.bools = o.bools[1:] return nil } func (o *Buffer) dec_proto3_bool(p *Properties, base structPointer) error { u, err := p.valDec(o) if err != nil { return err } *structPointer_BoolVal(base, p.field) = u != 0 return nil } // Decode an int32. func (o *Buffer) dec_int32(p *Properties, base structPointer) error { u, err := p.valDec(o) if err != nil { return err } word32_Set(structPointer_Word32(base, p.field), o, uint32(u)) return nil } func (o *Buffer) dec_proto3_int32(p *Properties, base structPointer) error { u, err := p.valDec(o) if err != nil { return err } word32Val_Set(structPointer_Word32Val(base, p.field), uint32(u)) return nil } // Decode an int64. func (o *Buffer) dec_int64(p *Properties, base structPointer) error { u, err := p.valDec(o) if err != nil { return err } word64_Set(structPointer_Word64(base, p.field), o, u) return nil } func (o *Buffer) dec_proto3_int64(p *Properties, base structPointer) error { u, err := p.valDec(o) if err != nil { return err } word64Val_Set(structPointer_Word64Val(base, p.field), o, u) return nil } // Decode a string. func (o *Buffer) dec_string(p *Properties, base structPointer) error { s, err := o.DecodeStringBytes() if err != nil { return err } *structPointer_String(base, p.field) = &s return nil } func (o *Buffer) dec_proto3_string(p *Properties, base structPointer) error { s, err := o.DecodeStringBytes() if err != nil { return err } *structPointer_StringVal(base, p.field) = s return nil } // Decode a slice of bytes ([]byte). func (o *Buffer) dec_slice_byte(p *Properties, base structPointer) error { b, err := o.DecodeRawBytes(true) if err != nil { return err } *structPointer_Bytes(base, p.field) = b return nil } // Decode a slice of bools ([]bool). func (o *Buffer) dec_slice_bool(p *Properties, base structPointer) error { u, err := p.valDec(o) if err != nil { return err } v := structPointer_BoolSlice(base, p.field) *v = append(*v, u != 0) return nil } // Decode a slice of bools ([]bool) in packed format. func (o *Buffer) dec_slice_packed_bool(p *Properties, base structPointer) error { v := structPointer_BoolSlice(base, p.field) nn, err := o.DecodeVarint() if err != nil { return err } nb := int(nn) // number of bytes of encoded bools fin := o.index + nb if fin < o.index { return errOverflow } y := *v for o.index < fin { u, err := p.valDec(o) if err != nil { return err } y = append(y, u != 0) } *v = y return nil } // Decode a slice of int32s ([]int32). func (o *Buffer) dec_slice_int32(p *Properties, base structPointer) error { u, err := p.valDec(o) if err != nil { return err } structPointer_Word32Slice(base, p.field).Append(uint32(u)) return nil } // Decode a slice of int32s ([]int32) in packed format. func (o *Buffer) dec_slice_packed_int32(p *Properties, base structPointer) error { v := structPointer_Word32Slice(base, p.field) nn, err := o.DecodeVarint() if err != nil { return err } nb := int(nn) // number of bytes of encoded int32s fin := o.index + nb if fin < o.index { return errOverflow } for o.index < fin { u, err := p.valDec(o) if err != nil { return err } v.Append(uint32(u)) } return nil } // Decode a slice of int64s ([]int64). func (o *Buffer) dec_slice_int64(p *Properties, base structPointer) error { u, err := p.valDec(o) if err != nil { return err } structPointer_Word64Slice(base, p.field).Append(u) return nil } // Decode a slice of int64s ([]int64) in packed format. func (o *Buffer) dec_slice_packed_int64(p *Properties, base structPointer) error { v := structPointer_Word64Slice(base, p.field) nn, err := o.DecodeVarint() if err != nil { return err } nb := int(nn) // number of bytes of encoded int64s fin := o.index + nb if fin < o.index { return errOverflow } for o.index < fin { u, err := p.valDec(o) if err != nil { return err } v.Append(u) } return nil } // Decode a slice of strings ([]string). func (o *Buffer) dec_slice_string(p *Properties, base structPointer) error { s, err := o.DecodeStringBytes() if err != nil { return err } v := structPointer_StringSlice(base, p.field) *v = append(*v, s) return nil } // Decode a slice of slice of bytes ([][]byte). func (o *Buffer) dec_slice_slice_byte(p *Properties, base structPointer) error { b, err := o.DecodeRawBytes(true) if err != nil { return err } v := structPointer_BytesSlice(base, p.field) *v = append(*v, b) return nil } // Decode a map field. func (o *Buffer) dec_new_map(p *Properties, base structPointer) error { raw, err := o.DecodeRawBytes(false) if err != nil { return err } oi := o.index // index at the end of this map entry o.index -= len(raw) // move buffer back to start of map entry mptr := structPointer_NewAt(base, p.field, p.mtype) // *map[K]V if mptr.Elem().IsNil() { mptr.Elem().Set(reflect.MakeMap(mptr.Type().Elem())) } v := mptr.Elem() // map[K]V // Prepare addressable doubly-indirect placeholders for the key and value types. // See enc_new_map for why. keyptr := reflect.New(reflect.PtrTo(p.mtype.Key())).Elem() // addressable *K keybase := toStructPointer(keyptr.Addr()) // **K var valbase structPointer var valptr reflect.Value switch p.mtype.Elem().Kind() { case reflect.Slice: // []byte var dummy []byte valptr = reflect.ValueOf(&dummy) // *[]byte valbase = toStructPointer(valptr) // *[]byte case reflect.Ptr: // message; valptr is **Msg; need to allocate the intermediate pointer valptr = reflect.New(reflect.PtrTo(p.mtype.Elem())).Elem() // addressable *V valptr.Set(reflect.New(valptr.Type().Elem())) valbase = toStructPointer(valptr) default: // everything else valptr = reflect.New(reflect.PtrTo(p.mtype.Elem())).Elem() // addressable *V valbase = toStructPointer(valptr.Addr()) // **V } // Decode. // This parses a restricted wire format, namely the encoding of a message // with two fields. See enc_new_map for the format. for o.index < oi { // tagcode for key and value properties are always a single byte // because they have tags 1 and 2. tagcode := o.buf[o.index] o.index++ switch tagcode { case p.mkeyprop.tagcode[0]: if err := p.mkeyprop.dec(o, p.mkeyprop, keybase); err != nil { return err } case p.mvalprop.tagcode[0]: if err := p.mvalprop.dec(o, p.mvalprop, valbase); err != nil { return err } default: // TODO: Should we silently skip this instead? return fmt.Errorf("proto: bad map data tag %d", raw[0]) } } keyelem, valelem := keyptr.Elem(), valptr.Elem() if !keyelem.IsValid() { keyelem = reflect.Zero(p.mtype.Key()) } if !valelem.IsValid() { valelem = reflect.Zero(p.mtype.Elem()) } v.SetMapIndex(keyelem, valelem) return nil } // Decode a group. func (o *Buffer) dec_struct_group(p *Properties, base structPointer) error { bas := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(bas) { // allocate new nested message bas = toStructPointer(reflect.New(p.stype)) structPointer_SetStructPointer(base, p.field, bas) } return o.unmarshalType(p.stype, p.sprop, true, bas) } // Decode an embedded message. func (o *Buffer) dec_struct_message(p *Properties, base structPointer) (err error) { raw, e := o.DecodeRawBytes(false) if e != nil { return e } bas := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(bas) { // allocate new nested message bas = toStructPointer(reflect.New(p.stype)) structPointer_SetStructPointer(base, p.field, bas) } // If the object can unmarshal itself, let it. if p.isUnmarshaler { iv := structPointer_Interface(bas, p.stype) return iv.(Unmarshaler).Unmarshal(raw) } obuf := o.buf oi := o.index o.buf = raw o.index = 0 err = o.unmarshalType(p.stype, p.sprop, false, bas) o.buf = obuf o.index = oi return err } // Decode a slice of embedded messages. func (o *Buffer) dec_slice_struct_message(p *Properties, base structPointer) error { return o.dec_slice_struct(p, false, base) } // Decode a slice of embedded groups. func (o *Buffer) dec_slice_struct_group(p *Properties, base structPointer) error { return o.dec_slice_struct(p, true, base) } // Decode a slice of structs ([]*struct). func (o *Buffer) dec_slice_struct(p *Properties, is_group bool, base structPointer) error { v := reflect.New(p.stype) bas := toStructPointer(v) structPointer_StructPointerSlice(base, p.field).Append(bas) if is_group { err := o.unmarshalType(p.stype, p.sprop, is_group, bas) return err } raw, err := o.DecodeRawBytes(false) if err != nil { return err } // If the object can unmarshal itself, let it. if p.isUnmarshaler { iv := v.Interface() return iv.(Unmarshaler).Unmarshal(raw) } obuf := o.buf oi := o.index o.buf = raw o.index = 0 err = o.unmarshalType(p.stype, p.sprop, is_group, bas) o.buf = obuf o.index = oi return err } golang-gogoprotobuf-0.5/proto/decode_gogo.go000066400000000000000000000113231317075173200212750ustar00rootroot00000000000000// 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. package proto import ( "reflect" ) // Decode a reference to a struct pointer. func (o *Buffer) dec_ref_struct_message(p *Properties, base structPointer) (err error) { raw, e := o.DecodeRawBytes(false) if e != nil { return e } // If the object can unmarshal itself, let it. if p.isUnmarshaler { panic("not supported, since this is a pointer receiver") } obuf := o.buf oi := o.index o.buf = raw o.index = 0 bas := structPointer_FieldPointer(base, p.field) err = o.unmarshalType(p.stype, p.sprop, false, bas) o.buf = obuf o.index = oi return err } // Decode a slice of references to struct pointers ([]struct). func (o *Buffer) dec_slice_ref_struct(p *Properties, is_group bool, base structPointer) error { newBas := appendStructPointer(base, p.field, p.sstype) if is_group { panic("not supported, maybe in future, if requested.") } raw, err := o.DecodeRawBytes(false) if err != nil { return err } // If the object can unmarshal itself, let it. if p.isUnmarshaler { panic("not supported, since this is not a pointer receiver.") } obuf := o.buf oi := o.index o.buf = raw o.index = 0 err = o.unmarshalType(p.stype, p.sprop, is_group, newBas) o.buf = obuf o.index = oi return err } // Decode a slice of references to struct pointers. func (o *Buffer) dec_slice_ref_struct_message(p *Properties, base structPointer) error { return o.dec_slice_ref_struct(p, false, base) } func setPtrCustomType(base structPointer, f field, v interface{}) { if v == nil { return } structPointer_SetStructPointer(base, f, toStructPointer(reflect.ValueOf(v))) } func setCustomType(base structPointer, f field, value interface{}) { if value == nil { return } v := reflect.ValueOf(value).Elem() t := reflect.TypeOf(value).Elem() kind := t.Kind() switch kind { case reflect.Slice: slice := reflect.MakeSlice(t, v.Len(), v.Cap()) reflect.Copy(slice, v) oldHeader := structPointer_GetSliceHeader(base, f) oldHeader.Data = slice.Pointer() oldHeader.Len = v.Len() oldHeader.Cap = v.Cap() default: size := reflect.TypeOf(value).Elem().Size() structPointer_Copy(toStructPointer(reflect.ValueOf(value)), structPointer_Add(base, f), int(size)) } } func (o *Buffer) dec_custom_bytes(p *Properties, base structPointer) error { b, err := o.DecodeRawBytes(true) if err != nil { return err } i := reflect.New(p.ctype.Elem()).Interface() custom := (i).(Unmarshaler) if err := custom.Unmarshal(b); err != nil { return err } setPtrCustomType(base, p.field, custom) return nil } func (o *Buffer) dec_custom_ref_bytes(p *Properties, base structPointer) error { b, err := o.DecodeRawBytes(true) if err != nil { return err } i := reflect.New(p.ctype).Interface() custom := (i).(Unmarshaler) if err := custom.Unmarshal(b); err != nil { return err } if custom != nil { setCustomType(base, p.field, custom) } return nil } // Decode a slice of bytes ([]byte) into a slice of custom types. func (o *Buffer) dec_custom_slice_bytes(p *Properties, base structPointer) error { b, err := o.DecodeRawBytes(true) if err != nil { return err } i := reflect.New(p.ctype.Elem()).Interface() custom := (i).(Unmarshaler) if err := custom.Unmarshal(b); err != nil { return err } newBas := appendStructPointer(base, p.field, p.ctype) var zero field setCustomType(newBas, zero, custom) return nil } golang-gogoprotobuf-0.5/proto/decode_test.go000066400000000000000000000204421317075173200213230ustar00rootroot00000000000000// 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. // +build go1.7 package proto_test import ( "testing" "github.com/gogo/protobuf/proto" tpb "github.com/gogo/protobuf/proto/proto3_proto" ) var ( bytesBlackhole []byte msgBlackhole = new(tpb.Message) ) // Disabled this Benchmark because it is using features (b.Run) from go1.7 and gogoprotobuf still have compatibility with go1.5 // BenchmarkVarint32ArraySmall shows the performance on an array of small int32 fields (1 and // 2 bytes long). // func BenchmarkVarint32ArraySmall(b *testing.B) { // for i := uint(1); i <= 10; i++ { // dist := genInt32Dist([7]int{0, 3, 1}, 1< maxSeconds { return fmt.Errorf("duration: %#v: seconds out of range", d) } if d.Nanos <= -1e9 || d.Nanos >= 1e9 { return fmt.Errorf("duration: %#v: nanos out of range", d) } // Seconds and Nanos must have the same sign, unless d.Nanos is zero. if (d.Seconds < 0 && d.Nanos > 0) || (d.Seconds > 0 && d.Nanos < 0) { return fmt.Errorf("duration: %#v: seconds and nanos have different signs", d) } return nil } // DurationFromProto converts a Duration to a time.Duration. DurationFromProto // returns an error if the Duration is invalid or is too large to be // represented in a time.Duration. func durationFromProto(p *duration) (time.Duration, error) { if err := validateDuration(p); err != nil { return 0, err } d := time.Duration(p.Seconds) * time.Second if int64(d/time.Second) != p.Seconds { return 0, fmt.Errorf("duration: %#v is out of range for time.Duration", p) } if p.Nanos != 0 { d += time.Duration(p.Nanos) if (d < 0) != (p.Nanos < 0) { return 0, fmt.Errorf("duration: %#v is out of range for time.Duration", p) } } return d, nil } // DurationProto converts a time.Duration to a Duration. func durationProto(d time.Duration) *duration { nanos := d.Nanoseconds() secs := nanos / 1e9 nanos -= secs * 1e9 return &duration{ Seconds: secs, Nanos: int32(nanos), } } golang-gogoprotobuf-0.5/proto/duration_gogo.go000066400000000000000000000140421317075173200217000ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package proto import ( "reflect" "time" ) var durationType = reflect.TypeOf((*time.Duration)(nil)).Elem() type duration struct { Seconds int64 `protobuf:"varint,1,opt,name=seconds,proto3" json:"seconds,omitempty"` Nanos int32 `protobuf:"varint,2,opt,name=nanos,proto3" json:"nanos,omitempty"` } func (m *duration) Reset() { *m = duration{} } func (*duration) ProtoMessage() {} func (*duration) String() string { return "duration" } func init() { RegisterType((*duration)(nil), "gogo.protobuf.proto.duration") } func (o *Buffer) decDuration() (time.Duration, error) { b, err := o.DecodeRawBytes(true) if err != nil { return 0, err } dproto := &duration{} if err := Unmarshal(b, dproto); err != nil { return 0, err } return durationFromProto(dproto) } func (o *Buffer) dec_duration(p *Properties, base structPointer) error { d, err := o.decDuration() if err != nil { return err } word64_Set(structPointer_Word64(base, p.field), o, uint64(d)) return nil } func (o *Buffer) dec_ref_duration(p *Properties, base structPointer) error { d, err := o.decDuration() if err != nil { return err } word64Val_Set(structPointer_Word64Val(base, p.field), o, uint64(d)) return nil } func (o *Buffer) dec_slice_duration(p *Properties, base structPointer) error { d, err := o.decDuration() if err != nil { return err } newBas := appendStructPointer(base, p.field, reflect.SliceOf(reflect.PtrTo(durationType))) var zero field setPtrCustomType(newBas, zero, &d) return nil } func (o *Buffer) dec_slice_ref_duration(p *Properties, base structPointer) error { d, err := o.decDuration() if err != nil { return err } structPointer_Word64Slice(base, p.field).Append(uint64(d)) return nil } func size_duration(p *Properties, base structPointer) (n int) { structp := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(structp) { return 0 } dur := structPointer_Interface(structp, durationType).(*time.Duration) d := durationProto(*dur) size := Size(d) return size + sizeVarint(uint64(size)) + len(p.tagcode) } func (o *Buffer) enc_duration(p *Properties, base structPointer) error { structp := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(structp) { return ErrNil } dur := structPointer_Interface(structp, durationType).(*time.Duration) d := durationProto(*dur) data, err := Marshal(d) if err != nil { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) return nil } func size_ref_duration(p *Properties, base structPointer) (n int) { dur := structPointer_InterfaceAt(base, p.field, durationType).(*time.Duration) d := durationProto(*dur) size := Size(d) return size + sizeVarint(uint64(size)) + len(p.tagcode) } func (o *Buffer) enc_ref_duration(p *Properties, base structPointer) error { dur := structPointer_InterfaceAt(base, p.field, durationType).(*time.Duration) d := durationProto(*dur) data, err := Marshal(d) if err != nil { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) return nil } func size_slice_duration(p *Properties, base structPointer) (n int) { pdurs := structPointer_InterfaceAt(base, p.field, reflect.SliceOf(reflect.PtrTo(durationType))).(*[]*time.Duration) durs := *pdurs for i := 0; i < len(durs); i++ { if durs[i] == nil { return 0 } dproto := durationProto(*durs[i]) size := Size(dproto) n += len(p.tagcode) + size + sizeVarint(uint64(size)) } return n } func (o *Buffer) enc_slice_duration(p *Properties, base structPointer) error { pdurs := structPointer_InterfaceAt(base, p.field, reflect.SliceOf(reflect.PtrTo(durationType))).(*[]*time.Duration) durs := *pdurs for i := 0; i < len(durs); i++ { if durs[i] == nil { return errRepeatedHasNil } dproto := durationProto(*durs[i]) data, err := Marshal(dproto) if err != nil { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) } return nil } func size_slice_ref_duration(p *Properties, base structPointer) (n int) { pdurs := structPointer_InterfaceAt(base, p.field, reflect.SliceOf(durationType)).(*[]time.Duration) durs := *pdurs for i := 0; i < len(durs); i++ { dproto := durationProto(durs[i]) size := Size(dproto) n += len(p.tagcode) + size + sizeVarint(uint64(size)) } return n } func (o *Buffer) enc_slice_ref_duration(p *Properties, base structPointer) error { pdurs := structPointer_InterfaceAt(base, p.field, reflect.SliceOf(durationType)).(*[]time.Duration) durs := *pdurs for i := 0; i < len(durs); i++ { dproto := durationProto(durs[i]) data, err := Marshal(dproto) if err != nil { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) } return nil } golang-gogoprotobuf-0.5/proto/encode.go000066400000000000000000001037261317075173200203050ustar00rootroot00000000000000// 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. package proto /* * Routines for encoding data into the wire format for protocol buffers. */ import ( "errors" "fmt" "reflect" "sort" ) // RequiredNotSetError is the error returned if Marshal is called with // a protocol buffer struct whose required fields have not // all been initialized. It is also the error returned if Unmarshal is // called with an encoded protocol buffer that does not include all the // required fields. // // When printed, RequiredNotSetError reports the first unset required field in a // message. If the field cannot be precisely determined, it is reported as // "{Unknown}". type RequiredNotSetError struct { field string } func (e *RequiredNotSetError) Error() string { return fmt.Sprintf("proto: required field %q not set", e.field) } var ( // errRepeatedHasNil is the error returned if Marshal is called with // a struct with a repeated field containing a nil element. errRepeatedHasNil = errors.New("proto: repeated field has nil element") // errOneofHasNil is the error returned if Marshal is called with // a struct with a oneof field containing a nil element. errOneofHasNil = errors.New("proto: oneof field has nil value") // ErrNil is the error returned if Marshal is called with nil. ErrNil = errors.New("proto: Marshal called with nil") // ErrTooLarge is the error returned if Marshal is called with a // message that encodes to >2GB. ErrTooLarge = errors.New("proto: message encodes to over 2 GB") ) // The fundamental encoders that put bytes on the wire. // Those that take integer types all accept uint64 and are // therefore of type valueEncoder. const maxVarintBytes = 10 // maximum length of a varint // maxMarshalSize is the largest allowed size of an encoded protobuf, // since C++ and Java use signed int32s for the size. const maxMarshalSize = 1<<31 - 1 // EncodeVarint returns the varint encoding of x. // This is the format for the // int32, int64, uint32, uint64, bool, and enum // protocol buffer types. // Not used by the package itself, but helpful to clients // wishing to use the same encoding. func EncodeVarint(x uint64) []byte { var buf [maxVarintBytes]byte var n int for n = 0; x > 127; n++ { buf[n] = 0x80 | uint8(x&0x7F) x >>= 7 } buf[n] = uint8(x) n++ return buf[0:n] } // EncodeVarint writes a varint-encoded integer to the Buffer. // This is the format for the // int32, int64, uint32, uint64, bool, and enum // protocol buffer types. func (p *Buffer) EncodeVarint(x uint64) error { for x >= 1<<7 { p.buf = append(p.buf, uint8(x&0x7f|0x80)) x >>= 7 } p.buf = append(p.buf, uint8(x)) return nil } // SizeVarint returns the varint encoding size of an integer. func SizeVarint(x uint64) int { return sizeVarint(x) } func sizeVarint(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } // EncodeFixed64 writes a 64-bit integer to the Buffer. // This is the format for the // fixed64, sfixed64, and double protocol buffer types. func (p *Buffer) EncodeFixed64(x uint64) error { p.buf = append(p.buf, uint8(x), uint8(x>>8), uint8(x>>16), uint8(x>>24), uint8(x>>32), uint8(x>>40), uint8(x>>48), uint8(x>>56)) return nil } func sizeFixed64(x uint64) int { return 8 } // EncodeFixed32 writes a 32-bit integer to the Buffer. // This is the format for the // fixed32, sfixed32, and float protocol buffer types. func (p *Buffer) EncodeFixed32(x uint64) error { p.buf = append(p.buf, uint8(x), uint8(x>>8), uint8(x>>16), uint8(x>>24)) return nil } func sizeFixed32(x uint64) int { return 4 } // EncodeZigzag64 writes a zigzag-encoded 64-bit integer // to the Buffer. // This is the format used for the sint64 protocol buffer type. func (p *Buffer) EncodeZigzag64(x uint64) error { // use signed number to get arithmetic right shift. return p.EncodeVarint((x << 1) ^ uint64((int64(x) >> 63))) } func sizeZigzag64(x uint64) int { return sizeVarint((x << 1) ^ uint64((int64(x) >> 63))) } // EncodeZigzag32 writes a zigzag-encoded 32-bit integer // to the Buffer. // This is the format used for the sint32 protocol buffer type. func (p *Buffer) EncodeZigzag32(x uint64) error { // use signed number to get arithmetic right shift. return p.EncodeVarint(uint64((uint32(x) << 1) ^ uint32((int32(x) >> 31)))) } func sizeZigzag32(x uint64) int { return sizeVarint(uint64((uint32(x) << 1) ^ uint32((int32(x) >> 31)))) } // EncodeRawBytes writes a count-delimited byte buffer to the Buffer. // This is the format used for the bytes protocol buffer // type and for embedded messages. func (p *Buffer) EncodeRawBytes(b []byte) error { p.EncodeVarint(uint64(len(b))) p.buf = append(p.buf, b...) return nil } func sizeRawBytes(b []byte) int { return sizeVarint(uint64(len(b))) + len(b) } // EncodeStringBytes writes an encoded string to the Buffer. // This is the format used for the proto2 string type. func (p *Buffer) EncodeStringBytes(s string) error { p.EncodeVarint(uint64(len(s))) p.buf = append(p.buf, s...) return nil } func sizeStringBytes(s string) int { return sizeVarint(uint64(len(s))) + len(s) } // Marshaler is the interface representing objects that can marshal themselves. type Marshaler interface { Marshal() ([]byte, error) } // Marshal takes the protocol buffer // and encodes it into the wire format, returning the data. func Marshal(pb Message) ([]byte, error) { // Can the object marshal itself? if m, ok := pb.(Marshaler); ok { return m.Marshal() } p := NewBuffer(nil) err := p.Marshal(pb) if p.buf == nil && err == nil { // Return a non-nil slice on success. return []byte{}, nil } return p.buf, err } // EncodeMessage writes the protocol buffer to the Buffer, // prefixed by a varint-encoded length. func (p *Buffer) EncodeMessage(pb Message) error { t, base, err := getbase(pb) if structPointer_IsNil(base) { return ErrNil } if err == nil { var state errorState err = p.enc_len_struct(GetProperties(t.Elem()), base, &state) } return err } // Marshal takes the protocol buffer // and encodes it into the wire format, writing the result to the // Buffer. func (p *Buffer) Marshal(pb Message) error { // Can the object marshal itself? if m, ok := pb.(Marshaler); ok { data, err := m.Marshal() p.buf = append(p.buf, data...) return err } t, base, err := getbase(pb) if structPointer_IsNil(base) { return ErrNil } if err == nil { err = p.enc_struct(GetProperties(t.Elem()), base) } if collectStats { (stats).Encode++ // Parens are to work around a goimports bug. } if len(p.buf) > maxMarshalSize { return ErrTooLarge } return err } // Size returns the encoded size of a protocol buffer. func Size(pb Message) (n int) { // Can the object marshal itself? If so, Size is slow. // TODO: add Size to Marshaler, or add a Sizer interface. if m, ok := pb.(Marshaler); ok { b, _ := m.Marshal() return len(b) } t, base, err := getbase(pb) if structPointer_IsNil(base) { return 0 } if err == nil { n = size_struct(GetProperties(t.Elem()), base) } if collectStats { (stats).Size++ // Parens are to work around a goimports bug. } return } // Individual type encoders. // Encode a bool. func (o *Buffer) enc_bool(p *Properties, base structPointer) error { v := *structPointer_Bool(base, p.field) if v == nil { return ErrNil } x := 0 if *v { x = 1 } o.buf = append(o.buf, p.tagcode...) p.valEnc(o, uint64(x)) return nil } func (o *Buffer) enc_proto3_bool(p *Properties, base structPointer) error { v := *structPointer_BoolVal(base, p.field) if !v { return ErrNil } o.buf = append(o.buf, p.tagcode...) p.valEnc(o, 1) return nil } func size_bool(p *Properties, base structPointer) int { v := *structPointer_Bool(base, p.field) if v == nil { return 0 } return len(p.tagcode) + 1 // each bool takes exactly one byte } func size_proto3_bool(p *Properties, base structPointer) int { v := *structPointer_BoolVal(base, p.field) if !v && !p.oneof { return 0 } return len(p.tagcode) + 1 // each bool takes exactly one byte } // Encode an int32. func (o *Buffer) enc_int32(p *Properties, base structPointer) error { v := structPointer_Word32(base, p.field) if word32_IsNil(v) { return ErrNil } x := int32(word32_Get(v)) // permit sign extension to use full 64-bit range o.buf = append(o.buf, p.tagcode...) p.valEnc(o, uint64(x)) return nil } func (o *Buffer) enc_proto3_int32(p *Properties, base structPointer) error { v := structPointer_Word32Val(base, p.field) x := int32(word32Val_Get(v)) // permit sign extension to use full 64-bit range if x == 0 { return ErrNil } o.buf = append(o.buf, p.tagcode...) p.valEnc(o, uint64(x)) return nil } func size_int32(p *Properties, base structPointer) (n int) { v := structPointer_Word32(base, p.field) if word32_IsNil(v) { return 0 } x := int32(word32_Get(v)) // permit sign extension to use full 64-bit range n += len(p.tagcode) n += p.valSize(uint64(x)) return } func size_proto3_int32(p *Properties, base structPointer) (n int) { v := structPointer_Word32Val(base, p.field) x := int32(word32Val_Get(v)) // permit sign extension to use full 64-bit range if x == 0 && !p.oneof { return 0 } n += len(p.tagcode) n += p.valSize(uint64(x)) return } // Encode a uint32. // Exactly the same as int32, except for no sign extension. func (o *Buffer) enc_uint32(p *Properties, base structPointer) error { v := structPointer_Word32(base, p.field) if word32_IsNil(v) { return ErrNil } x := word32_Get(v) o.buf = append(o.buf, p.tagcode...) p.valEnc(o, uint64(x)) return nil } func (o *Buffer) enc_proto3_uint32(p *Properties, base structPointer) error { v := structPointer_Word32Val(base, p.field) x := word32Val_Get(v) if x == 0 { return ErrNil } o.buf = append(o.buf, p.tagcode...) p.valEnc(o, uint64(x)) return nil } func size_uint32(p *Properties, base structPointer) (n int) { v := structPointer_Word32(base, p.field) if word32_IsNil(v) { return 0 } x := word32_Get(v) n += len(p.tagcode) n += p.valSize(uint64(x)) return } func size_proto3_uint32(p *Properties, base structPointer) (n int) { v := structPointer_Word32Val(base, p.field) x := word32Val_Get(v) if x == 0 && !p.oneof { return 0 } n += len(p.tagcode) n += p.valSize(uint64(x)) return } // Encode an int64. func (o *Buffer) enc_int64(p *Properties, base structPointer) error { v := structPointer_Word64(base, p.field) if word64_IsNil(v) { return ErrNil } x := word64_Get(v) o.buf = append(o.buf, p.tagcode...) p.valEnc(o, x) return nil } func (o *Buffer) enc_proto3_int64(p *Properties, base structPointer) error { v := structPointer_Word64Val(base, p.field) x := word64Val_Get(v) if x == 0 { return ErrNil } o.buf = append(o.buf, p.tagcode...) p.valEnc(o, x) return nil } func size_int64(p *Properties, base structPointer) (n int) { v := structPointer_Word64(base, p.field) if word64_IsNil(v) { return 0 } x := word64_Get(v) n += len(p.tagcode) n += p.valSize(x) return } func size_proto3_int64(p *Properties, base structPointer) (n int) { v := structPointer_Word64Val(base, p.field) x := word64Val_Get(v) if x == 0 && !p.oneof { return 0 } n += len(p.tagcode) n += p.valSize(x) return } // Encode a string. func (o *Buffer) enc_string(p *Properties, base structPointer) error { v := *structPointer_String(base, p.field) if v == nil { return ErrNil } x := *v o.buf = append(o.buf, p.tagcode...) o.EncodeStringBytes(x) return nil } func (o *Buffer) enc_proto3_string(p *Properties, base structPointer) error { v := *structPointer_StringVal(base, p.field) if v == "" { return ErrNil } o.buf = append(o.buf, p.tagcode...) o.EncodeStringBytes(v) return nil } func size_string(p *Properties, base structPointer) (n int) { v := *structPointer_String(base, p.field) if v == nil { return 0 } x := *v n += len(p.tagcode) n += sizeStringBytes(x) return } func size_proto3_string(p *Properties, base structPointer) (n int) { v := *structPointer_StringVal(base, p.field) if v == "" && !p.oneof { return 0 } n += len(p.tagcode) n += sizeStringBytes(v) return } // All protocol buffer fields are nillable, but be careful. func isNil(v reflect.Value) bool { switch v.Kind() { case reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice: return v.IsNil() } return false } // Encode a message struct. func (o *Buffer) enc_struct_message(p *Properties, base structPointer) error { var state errorState structp := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(structp) { return ErrNil } // Can the object marshal itself? if p.isMarshaler { m := structPointer_Interface(structp, p.stype).(Marshaler) data, err := m.Marshal() if err != nil && !state.shouldContinue(err, nil) { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) return state.err } o.buf = append(o.buf, p.tagcode...) return o.enc_len_struct(p.sprop, structp, &state) } func size_struct_message(p *Properties, base structPointer) int { structp := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(structp) { return 0 } // Can the object marshal itself? if p.isMarshaler { m := structPointer_Interface(structp, p.stype).(Marshaler) data, _ := m.Marshal() n0 := len(p.tagcode) n1 := sizeRawBytes(data) return n0 + n1 } n0 := len(p.tagcode) n1 := size_struct(p.sprop, structp) n2 := sizeVarint(uint64(n1)) // size of encoded length return n0 + n1 + n2 } // Encode a group struct. func (o *Buffer) enc_struct_group(p *Properties, base structPointer) error { var state errorState b := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(b) { return ErrNil } o.EncodeVarint(uint64((p.Tag << 3) | WireStartGroup)) err := o.enc_struct(p.sprop, b) if err != nil && !state.shouldContinue(err, nil) { return err } o.EncodeVarint(uint64((p.Tag << 3) | WireEndGroup)) return state.err } func size_struct_group(p *Properties, base structPointer) (n int) { b := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(b) { return 0 } n += sizeVarint(uint64((p.Tag << 3) | WireStartGroup)) n += size_struct(p.sprop, b) n += sizeVarint(uint64((p.Tag << 3) | WireEndGroup)) return } // Encode a slice of bools ([]bool). func (o *Buffer) enc_slice_bool(p *Properties, base structPointer) error { s := *structPointer_BoolSlice(base, p.field) l := len(s) if l == 0 { return ErrNil } for _, x := range s { o.buf = append(o.buf, p.tagcode...) v := uint64(0) if x { v = 1 } p.valEnc(o, v) } return nil } func size_slice_bool(p *Properties, base structPointer) int { s := *structPointer_BoolSlice(base, p.field) l := len(s) if l == 0 { return 0 } return l * (len(p.tagcode) + 1) // each bool takes exactly one byte } // Encode a slice of bools ([]bool) in packed format. func (o *Buffer) enc_slice_packed_bool(p *Properties, base structPointer) error { s := *structPointer_BoolSlice(base, p.field) l := len(s) if l == 0 { return ErrNil } o.buf = append(o.buf, p.tagcode...) o.EncodeVarint(uint64(l)) // each bool takes exactly one byte for _, x := range s { v := uint64(0) if x { v = 1 } p.valEnc(o, v) } return nil } func size_slice_packed_bool(p *Properties, base structPointer) (n int) { s := *structPointer_BoolSlice(base, p.field) l := len(s) if l == 0 { return 0 } n += len(p.tagcode) n += sizeVarint(uint64(l)) n += l // each bool takes exactly one byte return } // Encode a slice of bytes ([]byte). func (o *Buffer) enc_slice_byte(p *Properties, base structPointer) error { s := *structPointer_Bytes(base, p.field) if s == nil { return ErrNil } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(s) return nil } func (o *Buffer) enc_proto3_slice_byte(p *Properties, base structPointer) error { s := *structPointer_Bytes(base, p.field) if len(s) == 0 { return ErrNil } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(s) return nil } func size_slice_byte(p *Properties, base structPointer) (n int) { s := *structPointer_Bytes(base, p.field) if s == nil && !p.oneof { return 0 } n += len(p.tagcode) n += sizeRawBytes(s) return } func size_proto3_slice_byte(p *Properties, base structPointer) (n int) { s := *structPointer_Bytes(base, p.field) if len(s) == 0 && !p.oneof { return 0 } n += len(p.tagcode) n += sizeRawBytes(s) return } // Encode a slice of int32s ([]int32). func (o *Buffer) enc_slice_int32(p *Properties, base structPointer) error { s := structPointer_Word32Slice(base, p.field) l := s.Len() if l == 0 { return ErrNil } for i := 0; i < l; i++ { o.buf = append(o.buf, p.tagcode...) x := int32(s.Index(i)) // permit sign extension to use full 64-bit range p.valEnc(o, uint64(x)) } return nil } func size_slice_int32(p *Properties, base structPointer) (n int) { s := structPointer_Word32Slice(base, p.field) l := s.Len() if l == 0 { return 0 } for i := 0; i < l; i++ { n += len(p.tagcode) x := int32(s.Index(i)) // permit sign extension to use full 64-bit range n += p.valSize(uint64(x)) } return } // Encode a slice of int32s ([]int32) in packed format. func (o *Buffer) enc_slice_packed_int32(p *Properties, base structPointer) error { s := structPointer_Word32Slice(base, p.field) l := s.Len() if l == 0 { return ErrNil } // TODO: Reuse a Buffer. buf := NewBuffer(nil) for i := 0; i < l; i++ { x := int32(s.Index(i)) // permit sign extension to use full 64-bit range p.valEnc(buf, uint64(x)) } o.buf = append(o.buf, p.tagcode...) o.EncodeVarint(uint64(len(buf.buf))) o.buf = append(o.buf, buf.buf...) return nil } func size_slice_packed_int32(p *Properties, base structPointer) (n int) { s := structPointer_Word32Slice(base, p.field) l := s.Len() if l == 0 { return 0 } var bufSize int for i := 0; i < l; i++ { x := int32(s.Index(i)) // permit sign extension to use full 64-bit range bufSize += p.valSize(uint64(x)) } n += len(p.tagcode) n += sizeVarint(uint64(bufSize)) n += bufSize return } // Encode a slice of uint32s ([]uint32). // Exactly the same as int32, except for no sign extension. func (o *Buffer) enc_slice_uint32(p *Properties, base structPointer) error { s := structPointer_Word32Slice(base, p.field) l := s.Len() if l == 0 { return ErrNil } for i := 0; i < l; i++ { o.buf = append(o.buf, p.tagcode...) x := s.Index(i) p.valEnc(o, uint64(x)) } return nil } func size_slice_uint32(p *Properties, base structPointer) (n int) { s := structPointer_Word32Slice(base, p.field) l := s.Len() if l == 0 { return 0 } for i := 0; i < l; i++ { n += len(p.tagcode) x := s.Index(i) n += p.valSize(uint64(x)) } return } // Encode a slice of uint32s ([]uint32) in packed format. // Exactly the same as int32, except for no sign extension. func (o *Buffer) enc_slice_packed_uint32(p *Properties, base structPointer) error { s := structPointer_Word32Slice(base, p.field) l := s.Len() if l == 0 { return ErrNil } // TODO: Reuse a Buffer. buf := NewBuffer(nil) for i := 0; i < l; i++ { p.valEnc(buf, uint64(s.Index(i))) } o.buf = append(o.buf, p.tagcode...) o.EncodeVarint(uint64(len(buf.buf))) o.buf = append(o.buf, buf.buf...) return nil } func size_slice_packed_uint32(p *Properties, base structPointer) (n int) { s := structPointer_Word32Slice(base, p.field) l := s.Len() if l == 0 { return 0 } var bufSize int for i := 0; i < l; i++ { bufSize += p.valSize(uint64(s.Index(i))) } n += len(p.tagcode) n += sizeVarint(uint64(bufSize)) n += bufSize return } // Encode a slice of int64s ([]int64). func (o *Buffer) enc_slice_int64(p *Properties, base structPointer) error { s := structPointer_Word64Slice(base, p.field) l := s.Len() if l == 0 { return ErrNil } for i := 0; i < l; i++ { o.buf = append(o.buf, p.tagcode...) p.valEnc(o, s.Index(i)) } return nil } func size_slice_int64(p *Properties, base structPointer) (n int) { s := structPointer_Word64Slice(base, p.field) l := s.Len() if l == 0 { return 0 } for i := 0; i < l; i++ { n += len(p.tagcode) n += p.valSize(s.Index(i)) } return } // Encode a slice of int64s ([]int64) in packed format. func (o *Buffer) enc_slice_packed_int64(p *Properties, base structPointer) error { s := structPointer_Word64Slice(base, p.field) l := s.Len() if l == 0 { return ErrNil } // TODO: Reuse a Buffer. buf := NewBuffer(nil) for i := 0; i < l; i++ { p.valEnc(buf, s.Index(i)) } o.buf = append(o.buf, p.tagcode...) o.EncodeVarint(uint64(len(buf.buf))) o.buf = append(o.buf, buf.buf...) return nil } func size_slice_packed_int64(p *Properties, base structPointer) (n int) { s := structPointer_Word64Slice(base, p.field) l := s.Len() if l == 0 { return 0 } var bufSize int for i := 0; i < l; i++ { bufSize += p.valSize(s.Index(i)) } n += len(p.tagcode) n += sizeVarint(uint64(bufSize)) n += bufSize return } // Encode a slice of slice of bytes ([][]byte). func (o *Buffer) enc_slice_slice_byte(p *Properties, base structPointer) error { ss := *structPointer_BytesSlice(base, p.field) l := len(ss) if l == 0 { return ErrNil } for i := 0; i < l; i++ { o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(ss[i]) } return nil } func size_slice_slice_byte(p *Properties, base structPointer) (n int) { ss := *structPointer_BytesSlice(base, p.field) l := len(ss) if l == 0 { return 0 } n += l * len(p.tagcode) for i := 0; i < l; i++ { n += sizeRawBytes(ss[i]) } return } // Encode a slice of strings ([]string). func (o *Buffer) enc_slice_string(p *Properties, base structPointer) error { ss := *structPointer_StringSlice(base, p.field) l := len(ss) for i := 0; i < l; i++ { o.buf = append(o.buf, p.tagcode...) o.EncodeStringBytes(ss[i]) } return nil } func size_slice_string(p *Properties, base structPointer) (n int) { ss := *structPointer_StringSlice(base, p.field) l := len(ss) n += l * len(p.tagcode) for i := 0; i < l; i++ { n += sizeStringBytes(ss[i]) } return } // Encode a slice of message structs ([]*struct). func (o *Buffer) enc_slice_struct_message(p *Properties, base structPointer) error { var state errorState s := structPointer_StructPointerSlice(base, p.field) l := s.Len() for i := 0; i < l; i++ { structp := s.Index(i) if structPointer_IsNil(structp) { return errRepeatedHasNil } // Can the object marshal itself? if p.isMarshaler { m := structPointer_Interface(structp, p.stype).(Marshaler) data, err := m.Marshal() if err != nil && !state.shouldContinue(err, nil) { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) continue } o.buf = append(o.buf, p.tagcode...) err := o.enc_len_struct(p.sprop, structp, &state) if err != nil && !state.shouldContinue(err, nil) { if err == ErrNil { return errRepeatedHasNil } return err } } return state.err } func size_slice_struct_message(p *Properties, base structPointer) (n int) { s := structPointer_StructPointerSlice(base, p.field) l := s.Len() n += l * len(p.tagcode) for i := 0; i < l; i++ { structp := s.Index(i) if structPointer_IsNil(structp) { return // return the size up to this point } // Can the object marshal itself? if p.isMarshaler { m := structPointer_Interface(structp, p.stype).(Marshaler) data, _ := m.Marshal() n += sizeRawBytes(data) continue } n0 := size_struct(p.sprop, structp) n1 := sizeVarint(uint64(n0)) // size of encoded length n += n0 + n1 } return } // Encode a slice of group structs ([]*struct). func (o *Buffer) enc_slice_struct_group(p *Properties, base structPointer) error { var state errorState s := structPointer_StructPointerSlice(base, p.field) l := s.Len() for i := 0; i < l; i++ { b := s.Index(i) if structPointer_IsNil(b) { return errRepeatedHasNil } o.EncodeVarint(uint64((p.Tag << 3) | WireStartGroup)) err := o.enc_struct(p.sprop, b) if err != nil && !state.shouldContinue(err, nil) { if err == ErrNil { return errRepeatedHasNil } return err } o.EncodeVarint(uint64((p.Tag << 3) | WireEndGroup)) } return state.err } func size_slice_struct_group(p *Properties, base structPointer) (n int) { s := structPointer_StructPointerSlice(base, p.field) l := s.Len() n += l * sizeVarint(uint64((p.Tag<<3)|WireStartGroup)) n += l * sizeVarint(uint64((p.Tag<<3)|WireEndGroup)) for i := 0; i < l; i++ { b := s.Index(i) if structPointer_IsNil(b) { return // return size up to this point } n += size_struct(p.sprop, b) } return } // Encode an extension map. func (o *Buffer) enc_map(p *Properties, base structPointer) error { exts := structPointer_ExtMap(base, p.field) if err := encodeExtensionsMap(*exts); err != nil { return err } return o.enc_map_body(*exts) } func (o *Buffer) enc_exts(p *Properties, base structPointer) error { exts := structPointer_Extensions(base, p.field) v, mu := exts.extensionsRead() if v == nil { return nil } mu.Lock() defer mu.Unlock() if err := encodeExtensionsMap(v); err != nil { return err } return o.enc_map_body(v) } func (o *Buffer) enc_map_body(v map[int32]Extension) error { // Fast-path for common cases: zero or one extensions. if len(v) <= 1 { for _, e := range v { o.buf = append(o.buf, e.enc...) } return nil } // Sort keys to provide a deterministic encoding. keys := make([]int, 0, len(v)) for k := range v { keys = append(keys, int(k)) } sort.Ints(keys) for _, k := range keys { o.buf = append(o.buf, v[int32(k)].enc...) } return nil } func size_map(p *Properties, base structPointer) int { v := structPointer_ExtMap(base, p.field) return extensionsMapSize(*v) } func size_exts(p *Properties, base structPointer) int { v := structPointer_Extensions(base, p.field) return extensionsSize(v) } // Encode a map field. func (o *Buffer) enc_new_map(p *Properties, base structPointer) error { var state errorState // XXX: or do we need to plumb this through? /* A map defined as map map_field = N; is encoded in the same way as message MapFieldEntry { key_type key = 1; value_type value = 2; } repeated MapFieldEntry map_field = N; */ v := structPointer_NewAt(base, p.field, p.mtype).Elem() // map[K]V if v.Len() == 0 { return nil } keycopy, valcopy, keybase, valbase := mapEncodeScratch(p.mtype) enc := func() error { if err := p.mkeyprop.enc(o, p.mkeyprop, keybase); err != nil { return err } if err := p.mvalprop.enc(o, p.mvalprop, valbase); err != nil && err != ErrNil { return err } return nil } // Don't sort map keys. It is not required by the spec, and C++ doesn't do it. for _, key := range v.MapKeys() { val := v.MapIndex(key) keycopy.Set(key) valcopy.Set(val) o.buf = append(o.buf, p.tagcode...) if err := o.enc_len_thing(enc, &state); err != nil { return err } } return nil } func size_new_map(p *Properties, base structPointer) int { v := structPointer_NewAt(base, p.field, p.mtype).Elem() // map[K]V keycopy, valcopy, keybase, valbase := mapEncodeScratch(p.mtype) n := 0 for _, key := range v.MapKeys() { val := v.MapIndex(key) keycopy.Set(key) valcopy.Set(val) // Tag codes for key and val are the responsibility of the sub-sizer. keysize := p.mkeyprop.size(p.mkeyprop, keybase) valsize := p.mvalprop.size(p.mvalprop, valbase) entry := keysize + valsize // Add on tag code and length of map entry itself. n += len(p.tagcode) + sizeVarint(uint64(entry)) + entry } return n } // mapEncodeScratch returns a new reflect.Value matching the map's value type, // and a structPointer suitable for passing to an encoder or sizer. func mapEncodeScratch(mapType reflect.Type) (keycopy, valcopy reflect.Value, keybase, valbase structPointer) { // Prepare addressable doubly-indirect placeholders for the key and value types. // This is needed because the element-type encoders expect **T, but the map iteration produces T. keycopy = reflect.New(mapType.Key()).Elem() // addressable K keyptr := reflect.New(reflect.PtrTo(keycopy.Type())).Elem() // addressable *K keyptr.Set(keycopy.Addr()) // keybase = toStructPointer(keyptr.Addr()) // **K // Value types are more varied and require special handling. switch mapType.Elem().Kind() { case reflect.Slice: // []byte var dummy []byte valcopy = reflect.ValueOf(&dummy).Elem() // addressable []byte valbase = toStructPointer(valcopy.Addr()) case reflect.Ptr: // message; the generated field type is map[K]*Msg (so V is *Msg), // so we only need one level of indirection. valcopy = reflect.New(mapType.Elem()).Elem() // addressable V valbase = toStructPointer(valcopy.Addr()) default: // everything else valcopy = reflect.New(mapType.Elem()).Elem() // addressable V valptr := reflect.New(reflect.PtrTo(valcopy.Type())).Elem() // addressable *V valptr.Set(valcopy.Addr()) // valbase = toStructPointer(valptr.Addr()) // **V } return } // Encode a struct. func (o *Buffer) enc_struct(prop *StructProperties, base structPointer) error { var state errorState // Encode fields in tag order so that decoders may use optimizations // that depend on the ordering. // https://developers.google.com/protocol-buffers/docs/encoding#order for _, i := range prop.order { p := prop.Prop[i] if p.enc != nil { err := p.enc(o, p, base) if err != nil { if err == ErrNil { if p.Required && state.err == nil { state.err = &RequiredNotSetError{p.Name} } } else if err == errRepeatedHasNil { // Give more context to nil values in repeated fields. return errors.New("repeated field " + p.OrigName + " has nil element") } else if !state.shouldContinue(err, p) { return err } } if len(o.buf) > maxMarshalSize { return ErrTooLarge } } } // Do oneof fields. if prop.oneofMarshaler != nil { m := structPointer_Interface(base, prop.stype).(Message) if err := prop.oneofMarshaler(m, o); err == ErrNil { return errOneofHasNil } else if err != nil { return err } } // Add unrecognized fields at the end. if prop.unrecField.IsValid() { v := *structPointer_Bytes(base, prop.unrecField) if len(o.buf)+len(v) > maxMarshalSize { return ErrTooLarge } if len(v) > 0 { o.buf = append(o.buf, v...) } } return state.err } func size_struct(prop *StructProperties, base structPointer) (n int) { for _, i := range prop.order { p := prop.Prop[i] if p.size != nil { n += p.size(p, base) } } // Add unrecognized fields at the end. if prop.unrecField.IsValid() { v := *structPointer_Bytes(base, prop.unrecField) n += len(v) } // Factor in any oneof fields. if prop.oneofSizer != nil { m := structPointer_Interface(base, prop.stype).(Message) n += prop.oneofSizer(m) } return } var zeroes [20]byte // longer than any conceivable sizeVarint // Encode a struct, preceded by its encoded length (as a varint). func (o *Buffer) enc_len_struct(prop *StructProperties, base structPointer, state *errorState) error { return o.enc_len_thing(func() error { return o.enc_struct(prop, base) }, state) } // Encode something, preceded by its encoded length (as a varint). func (o *Buffer) enc_len_thing(enc func() error, state *errorState) error { iLen := len(o.buf) o.buf = append(o.buf, 0, 0, 0, 0) // reserve four bytes for length iMsg := len(o.buf) err := enc() if err != nil && !state.shouldContinue(err, nil) { return err } lMsg := len(o.buf) - iMsg lLen := sizeVarint(uint64(lMsg)) switch x := lLen - (iMsg - iLen); { case x > 0: // actual length is x bytes larger than the space we reserved // Move msg x bytes right. o.buf = append(o.buf, zeroes[:x]...) copy(o.buf[iMsg+x:], o.buf[iMsg:iMsg+lMsg]) case x < 0: // actual length is x bytes smaller than the space we reserved // Move msg x bytes left. copy(o.buf[iMsg+x:], o.buf[iMsg:iMsg+lMsg]) o.buf = o.buf[:len(o.buf)+x] // x is negative } // Encode the length in the reserved space. o.buf = o.buf[:iLen] o.EncodeVarint(uint64(lMsg)) o.buf = o.buf[:len(o.buf)+lMsg] return state.err } // errorState maintains the first error that occurs and updates that error // with additional context. type errorState struct { err error } // shouldContinue reports whether encoding should continue upon encountering the // given error. If the error is RequiredNotSetError, shouldContinue returns true // and, if this is the first appearance of that error, remembers it for future // reporting. // // If prop is not nil, it may update any error with additional context about the // field with the error. func (s *errorState) shouldContinue(err error, prop *Properties) bool { // Ignore unset required fields. reqNotSet, ok := err.(*RequiredNotSetError) if !ok { return false } if s.err == nil { if prop != nil { err = &RequiredNotSetError{prop.Name + "." + reqNotSet.field} } s.err = err } return true } golang-gogoprotobuf-0.5/proto/encode_gogo.go000066400000000000000000000223171317075173200213140ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2010 The Go Authors. All rights reserved. // http://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. package proto import ( "reflect" ) func NewRequiredNotSetError(field string) *RequiredNotSetError { return &RequiredNotSetError{field} } type Sizer interface { Size() int } func (o *Buffer) enc_ext_slice_byte(p *Properties, base structPointer) error { s := *structPointer_Bytes(base, p.field) if s == nil { return ErrNil } o.buf = append(o.buf, s...) return nil } func size_ext_slice_byte(p *Properties, base structPointer) (n int) { s := *structPointer_Bytes(base, p.field) if s == nil { return 0 } n += len(s) return } // Encode a reference to bool pointer. func (o *Buffer) enc_ref_bool(p *Properties, base structPointer) error { v := *structPointer_BoolVal(base, p.field) x := 0 if v { x = 1 } o.buf = append(o.buf, p.tagcode...) p.valEnc(o, uint64(x)) return nil } func size_ref_bool(p *Properties, base structPointer) int { return len(p.tagcode) + 1 // each bool takes exactly one byte } // Encode a reference to int32 pointer. func (o *Buffer) enc_ref_int32(p *Properties, base structPointer) error { v := structPointer_Word32Val(base, p.field) x := int32(word32Val_Get(v)) o.buf = append(o.buf, p.tagcode...) p.valEnc(o, uint64(x)) return nil } func size_ref_int32(p *Properties, base structPointer) (n int) { v := structPointer_Word32Val(base, p.field) x := int32(word32Val_Get(v)) n += len(p.tagcode) n += p.valSize(uint64(x)) return } func (o *Buffer) enc_ref_uint32(p *Properties, base structPointer) error { v := structPointer_Word32Val(base, p.field) x := word32Val_Get(v) o.buf = append(o.buf, p.tagcode...) p.valEnc(o, uint64(x)) return nil } func size_ref_uint32(p *Properties, base structPointer) (n int) { v := structPointer_Word32Val(base, p.field) x := word32Val_Get(v) n += len(p.tagcode) n += p.valSize(uint64(x)) return } // Encode a reference to an int64 pointer. func (o *Buffer) enc_ref_int64(p *Properties, base structPointer) error { v := structPointer_Word64Val(base, p.field) x := word64Val_Get(v) o.buf = append(o.buf, p.tagcode...) p.valEnc(o, x) return nil } func size_ref_int64(p *Properties, base structPointer) (n int) { v := structPointer_Word64Val(base, p.field) x := word64Val_Get(v) n += len(p.tagcode) n += p.valSize(x) return } // Encode a reference to a string pointer. func (o *Buffer) enc_ref_string(p *Properties, base structPointer) error { v := *structPointer_StringVal(base, p.field) o.buf = append(o.buf, p.tagcode...) o.EncodeStringBytes(v) return nil } func size_ref_string(p *Properties, base structPointer) (n int) { v := *structPointer_StringVal(base, p.field) n += len(p.tagcode) n += sizeStringBytes(v) return } // Encode a reference to a message struct. func (o *Buffer) enc_ref_struct_message(p *Properties, base structPointer) error { var state errorState structp := structPointer_GetRefStructPointer(base, p.field) if structPointer_IsNil(structp) { return ErrNil } // Can the object marshal itself? if p.isMarshaler { m := structPointer_Interface(structp, p.stype).(Marshaler) data, err := m.Marshal() if err != nil && !state.shouldContinue(err, nil) { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) return nil } o.buf = append(o.buf, p.tagcode...) return o.enc_len_struct(p.sprop, structp, &state) } //TODO this is only copied, please fix this func size_ref_struct_message(p *Properties, base structPointer) int { structp := structPointer_GetRefStructPointer(base, p.field) if structPointer_IsNil(structp) { return 0 } // Can the object marshal itself? if p.isMarshaler { m := structPointer_Interface(structp, p.stype).(Marshaler) data, _ := m.Marshal() n0 := len(p.tagcode) n1 := sizeRawBytes(data) return n0 + n1 } n0 := len(p.tagcode) n1 := size_struct(p.sprop, structp) n2 := sizeVarint(uint64(n1)) // size of encoded length return n0 + n1 + n2 } // Encode a slice of references to message struct pointers ([]struct). func (o *Buffer) enc_slice_ref_struct_message(p *Properties, base structPointer) error { var state errorState ss := structPointer_StructRefSlice(base, p.field, p.stype.Size()) l := ss.Len() for i := 0; i < l; i++ { structp := ss.Index(i) if structPointer_IsNil(structp) { return errRepeatedHasNil } // Can the object marshal itself? if p.isMarshaler { m := structPointer_Interface(structp, p.stype).(Marshaler) data, err := m.Marshal() if err != nil && !state.shouldContinue(err, nil) { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) continue } o.buf = append(o.buf, p.tagcode...) err := o.enc_len_struct(p.sprop, structp, &state) if err != nil && !state.shouldContinue(err, nil) { if err == ErrNil { return errRepeatedHasNil } return err } } return state.err } //TODO this is only copied, please fix this func size_slice_ref_struct_message(p *Properties, base structPointer) (n int) { ss := structPointer_StructRefSlice(base, p.field, p.stype.Size()) l := ss.Len() n += l * len(p.tagcode) for i := 0; i < l; i++ { structp := ss.Index(i) if structPointer_IsNil(structp) { return // return the size up to this point } // Can the object marshal itself? if p.isMarshaler { m := structPointer_Interface(structp, p.stype).(Marshaler) data, _ := m.Marshal() n += len(p.tagcode) n += sizeRawBytes(data) continue } n0 := size_struct(p.sprop, structp) n1 := sizeVarint(uint64(n0)) // size of encoded length n += n0 + n1 } return } func (o *Buffer) enc_custom_bytes(p *Properties, base structPointer) error { i := structPointer_InterfaceRef(base, p.field, p.ctype) if i == nil { return ErrNil } custom := i.(Marshaler) data, err := custom.Marshal() if err != nil { return err } if data == nil { return ErrNil } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) return nil } func size_custom_bytes(p *Properties, base structPointer) (n int) { n += len(p.tagcode) i := structPointer_InterfaceRef(base, p.field, p.ctype) if i == nil { return 0 } custom := i.(Marshaler) data, _ := custom.Marshal() n += sizeRawBytes(data) return } func (o *Buffer) enc_custom_ref_bytes(p *Properties, base structPointer) error { custom := structPointer_InterfaceAt(base, p.field, p.ctype).(Marshaler) data, err := custom.Marshal() if err != nil { return err } if data == nil { return ErrNil } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) return nil } func size_custom_ref_bytes(p *Properties, base structPointer) (n int) { n += len(p.tagcode) i := structPointer_InterfaceAt(base, p.field, p.ctype) if i == nil { return 0 } custom := i.(Marshaler) data, _ := custom.Marshal() n += sizeRawBytes(data) return } func (o *Buffer) enc_custom_slice_bytes(p *Properties, base structPointer) error { inter := structPointer_InterfaceRef(base, p.field, p.ctype) if inter == nil { return ErrNil } slice := reflect.ValueOf(inter) l := slice.Len() for i := 0; i < l; i++ { v := slice.Index(i) custom := v.Interface().(Marshaler) data, err := custom.Marshal() if err != nil { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) } return nil } func size_custom_slice_bytes(p *Properties, base structPointer) (n int) { inter := structPointer_InterfaceRef(base, p.field, p.ctype) if inter == nil { return 0 } slice := reflect.ValueOf(inter) l := slice.Len() n += l * len(p.tagcode) for i := 0; i < l; i++ { v := slice.Index(i) custom := v.Interface().(Marshaler) data, _ := custom.Marshal() n += sizeRawBytes(data) } return } golang-gogoprotobuf-0.5/proto/encode_test.go000066400000000000000000000055731317075173200213450ustar00rootroot00000000000000// 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. // +build go1.7 package proto_test import ( "testing" "github.com/gogo/protobuf/proto" tpb "github.com/gogo/protobuf/proto/proto3_proto" ) var ( blackhole []byte ) // Disabled this Benchmark because it is using features (b.Run) from go1.7 and gogoprotobuf still have compatibility with go1.5 // BenchmarkAny creates increasingly large arbitrary Any messages. The type is always the // same. // func BenchmarkAny(b *testing.B) { // data := make([]byte, 1<<20) // quantum := 1 << 10 // for i := uint(0); i <= 10; i++ { // b.Run(strconv.Itoa(quantum<> 3) if int32(fieldNum) == extension.Field { return true } wireType := int(tag & 0x7) o += n l, err := size(buf[o:], wireType) if err != nil { return false } o += l } return false } // TODO: Check types, field numbers, etc.? epb, ok := extendable(pb) if !ok { return false } extmap, mu := epb.extensionsRead() if extmap == nil { return false } mu.Lock() _, ok = extmap[extension.Field] mu.Unlock() return ok } func deleteExtension(pb extensionsBytes, theFieldNum int32, offset int) int { ext := pb.GetExtensions() for offset < len(*ext) { tag, n1 := DecodeVarint((*ext)[offset:]) fieldNum := int32(tag >> 3) wireType := int(tag & 0x7) n2, err := size((*ext)[offset+n1:], wireType) if err != nil { panic(err) } newOffset := offset + n1 + n2 if fieldNum == theFieldNum { *ext = append((*ext)[:offset], (*ext)[newOffset:]...) return offset } offset = newOffset } return -1 } // ClearExtension removes the given extension from pb. func ClearExtension(pb Message, extension *ExtensionDesc) { clearExtension(pb, extension.Field) } func clearExtension(pb Message, fieldNum int32) { if epb, doki := pb.(extensionsBytes); doki { offset := 0 for offset != -1 { offset = deleteExtension(epb, fieldNum, offset) } return } epb, ok := extendable(pb) if !ok { return } // TODO: Check types, field numbers, etc.? extmap := epb.extensionsWrite() delete(extmap, fieldNum) } // GetExtension parses and returns the given extension of pb. // If the extension is not present and has no default value it returns ErrMissingExtension. func GetExtension(pb Message, extension *ExtensionDesc) (interface{}, error) { if epb, doki := pb.(extensionsBytes); doki { ext := epb.GetExtensions() o := 0 for o < len(*ext) { tag, n := DecodeVarint((*ext)[o:]) fieldNum := int32(tag >> 3) wireType := int(tag & 0x7) l, err := size((*ext)[o+n:], wireType) if err != nil { return nil, err } if int32(fieldNum) == extension.Field { v, err := decodeExtension((*ext)[o:o+n+l], extension) if err != nil { return nil, err } return v, nil } o += n + l } return defaultExtensionValue(extension) } epb, ok := extendable(pb) if !ok { return nil, errors.New("proto: not an extendable proto") } if err := checkExtensionTypes(epb, extension); err != nil { return nil, err } emap, mu := epb.extensionsRead() if emap == nil { return defaultExtensionValue(extension) } mu.Lock() defer mu.Unlock() e, ok := emap[extension.Field] if !ok { // defaultExtensionValue returns the default value or // ErrMissingExtension if there is no default. return defaultExtensionValue(extension) } if e.value != nil { // Already decoded. Check the descriptor, though. if e.desc != extension { // This shouldn't happen. If it does, it means that // GetExtension was called twice with two different // descriptors with the same field number. return nil, errors.New("proto: descriptor conflict") } return e.value, nil } v, err := decodeExtension(e.enc, extension) if err != nil { return nil, err } // Remember the decoded version and drop the encoded version. // That way it is safe to mutate what we return. e.value = v e.desc = extension e.enc = nil emap[extension.Field] = e return e.value, nil } // defaultExtensionValue returns the default value for extension. // If no default for an extension is defined ErrMissingExtension is returned. func defaultExtensionValue(extension *ExtensionDesc) (interface{}, error) { t := reflect.TypeOf(extension.ExtensionType) props := extensionProperties(extension) sf, _, err := fieldDefault(t, props) if err != nil { return nil, err } if sf == nil || sf.value == nil { // There is no default value. return nil, ErrMissingExtension } if t.Kind() != reflect.Ptr { // We do not need to return a Ptr, we can directly return sf.value. return sf.value, nil } // We need to return an interface{} that is a pointer to sf.value. value := reflect.New(t).Elem() value.Set(reflect.New(value.Type().Elem())) if sf.kind == reflect.Int32 { // We may have an int32 or an enum, but the underlying data is int32. // Since we can't set an int32 into a non int32 reflect.value directly // set it as a int32. value.Elem().SetInt(int64(sf.value.(int32))) } else { value.Elem().Set(reflect.ValueOf(sf.value)) } return value.Interface(), nil } // decodeExtension decodes an extension encoded in b. func decodeExtension(b []byte, extension *ExtensionDesc) (interface{}, error) { o := NewBuffer(b) t := reflect.TypeOf(extension.ExtensionType) props := extensionProperties(extension) // t is a pointer to a struct, pointer to basic type or a slice. // Allocate a "field" to store the pointer/slice itself; the // pointer/slice will be stored here. We pass // the address of this field to props.dec. // This passes a zero field and a *t and lets props.dec // interpret it as a *struct{ x t }. value := reflect.New(t).Elem() for { // Discard wire type and field number varint. It isn't needed. if _, err := o.DecodeVarint(); err != nil { return nil, err } if err := props.dec(o, props, toStructPointer(value.Addr())); err != nil { return nil, err } if o.index >= len(o.buf) { break } } return value.Interface(), nil } // GetExtensions returns a slice of the extensions present in pb that are also listed in es. // The returned slice has the same length as es; missing extensions will appear as nil elements. func GetExtensions(pb Message, es []*ExtensionDesc) (extensions []interface{}, err error) { extensions = make([]interface{}, len(es)) for i, e := range es { extensions[i], err = GetExtension(pb, e) if err == ErrMissingExtension { err = nil } if err != nil { return } } return } // ExtensionDescs returns a new slice containing pb's extension descriptors, in undefined order. // For non-registered extensions, ExtensionDescs returns an incomplete descriptor containing // just the Field field, which defines the extension's field number. func ExtensionDescs(pb Message) ([]*ExtensionDesc, error) { epb, ok := extendable(pb) if !ok { return nil, fmt.Errorf("proto: %T is not an extendable proto.Message", pb) } registeredExtensions := RegisteredExtensions(pb) emap, mu := epb.extensionsRead() if emap == nil { return nil, nil } mu.Lock() defer mu.Unlock() extensions := make([]*ExtensionDesc, 0, len(emap)) for extid, e := range emap { desc := e.desc if desc == nil { desc = registeredExtensions[extid] if desc == nil { desc = &ExtensionDesc{Field: extid} } } extensions = append(extensions, desc) } return extensions, nil } // SetExtension sets the specified extension of pb to the specified value. func SetExtension(pb Message, extension *ExtensionDesc, value interface{}) error { if epb, doki := pb.(extensionsBytes); doki { ClearExtension(pb, extension) ext := epb.GetExtensions() et := reflect.TypeOf(extension.ExtensionType) props := extensionProperties(extension) p := NewBuffer(nil) x := reflect.New(et) x.Elem().Set(reflect.ValueOf(value)) if err := props.enc(p, props, toStructPointer(x)); err != nil { return err } *ext = append(*ext, p.buf...) return nil } epb, ok := extendable(pb) if !ok { return errors.New("proto: not an extendable proto") } if err := checkExtensionTypes(epb, extension); err != nil { return err } typ := reflect.TypeOf(extension.ExtensionType) if typ != reflect.TypeOf(value) { return errors.New("proto: bad extension value type") } // nil extension values need to be caught early, because the // encoder can't distinguish an ErrNil due to a nil extension // from an ErrNil due to a missing field. Extensions are // always optional, so the encoder would just swallow the error // and drop all the extensions from the encoded message. if reflect.ValueOf(value).IsNil() { return fmt.Errorf("proto: SetExtension called with nil value of type %T", value) } extmap := epb.extensionsWrite() extmap[extension.Field] = Extension{desc: extension, value: value} return nil } // ClearAllExtensions clears all extensions from pb. func ClearAllExtensions(pb Message) { if epb, doki := pb.(extensionsBytes); doki { ext := epb.GetExtensions() *ext = []byte{} return } epb, ok := extendable(pb) if !ok { return } m := epb.extensionsWrite() for k := range m { delete(m, k) } } // A global registry of extensions. // The generated code will register the generated descriptors by calling RegisterExtension. var extensionMaps = make(map[reflect.Type]map[int32]*ExtensionDesc) // RegisterExtension is called from the generated code. func RegisterExtension(desc *ExtensionDesc) { st := reflect.TypeOf(desc.ExtendedType).Elem() m := extensionMaps[st] if m == nil { m = make(map[int32]*ExtensionDesc) extensionMaps[st] = m } if _, ok := m[desc.Field]; ok { panic("proto: duplicate extension registered: " + st.String() + " " + strconv.Itoa(int(desc.Field))) } m[desc.Field] = desc } // RegisteredExtensions returns a map of the registered extensions of a // protocol buffer struct, indexed by the extension number. // The argument pb should be a nil pointer to the struct type. func RegisteredExtensions(pb Message) map[int32]*ExtensionDesc { return extensionMaps[reflect.TypeOf(pb).Elem()] } golang-gogoprotobuf-0.5/proto/extensions_gogo.go000066400000000000000000000171541317075173200222610ustar00rootroot00000000000000// 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. package proto import ( "bytes" "errors" "fmt" "reflect" "sort" "strings" "sync" ) func GetBoolExtension(pb Message, extension *ExtensionDesc, ifnotset bool) bool { if reflect.ValueOf(pb).IsNil() { return ifnotset } value, err := GetExtension(pb, extension) if err != nil { return ifnotset } if value == nil { return ifnotset } if value.(*bool) == nil { return ifnotset } return *(value.(*bool)) } func (this *Extension) Equal(that *Extension) bool { return bytes.Equal(this.enc, that.enc) } func (this *Extension) Compare(that *Extension) int { return bytes.Compare(this.enc, that.enc) } func SizeOfInternalExtension(m extendableProto) (n int) { return SizeOfExtensionMap(m.extensionsWrite()) } func SizeOfExtensionMap(m map[int32]Extension) (n int) { return extensionsMapSize(m) } type sortableMapElem struct { field int32 ext Extension } func newSortableExtensionsFromMap(m map[int32]Extension) sortableExtensions { s := make(sortableExtensions, 0, len(m)) for k, v := range m { s = append(s, &sortableMapElem{field: k, ext: v}) } return s } type sortableExtensions []*sortableMapElem func (this sortableExtensions) Len() int { return len(this) } func (this sortableExtensions) Swap(i, j int) { this[i], this[j] = this[j], this[i] } func (this sortableExtensions) Less(i, j int) bool { return this[i].field < this[j].field } func (this sortableExtensions) String() string { sort.Sort(this) ss := make([]string, len(this)) for i := range this { ss[i] = fmt.Sprintf("%d: %v", this[i].field, this[i].ext) } return "map[" + strings.Join(ss, ",") + "]" } func StringFromInternalExtension(m extendableProto) string { return StringFromExtensionsMap(m.extensionsWrite()) } func StringFromExtensionsMap(m map[int32]Extension) string { return newSortableExtensionsFromMap(m).String() } func StringFromExtensionsBytes(ext []byte) string { m, err := BytesToExtensionsMap(ext) if err != nil { panic(err) } return StringFromExtensionsMap(m) } func EncodeInternalExtension(m extendableProto, data []byte) (n int, err error) { return EncodeExtensionMap(m.extensionsWrite(), data) } func EncodeExtensionMap(m map[int32]Extension, data []byte) (n int, err error) { if err := encodeExtensionsMap(m); err != nil { return 0, err } keys := make([]int, 0, len(m)) for k := range m { keys = append(keys, int(k)) } sort.Ints(keys) for _, k := range keys { n += copy(data[n:], m[int32(k)].enc) } return n, nil } func GetRawExtension(m map[int32]Extension, id int32) ([]byte, error) { if m[id].value == nil || m[id].desc == nil { return m[id].enc, nil } if err := encodeExtensionsMap(m); err != nil { return nil, err } return m[id].enc, nil } func size(buf []byte, wire int) (int, error) { switch wire { case WireVarint: _, n := DecodeVarint(buf) return n, nil case WireFixed64: return 8, nil case WireBytes: v, n := DecodeVarint(buf) return int(v) + n, nil case WireFixed32: return 4, nil case WireStartGroup: offset := 0 for { u, n := DecodeVarint(buf[offset:]) fwire := int(u & 0x7) offset += n if fwire == WireEndGroup { return offset, nil } s, err := size(buf[offset:], wire) if err != nil { return 0, err } offset += s } } return 0, fmt.Errorf("proto: can't get size for unknown wire type %d", wire) } func BytesToExtensionsMap(buf []byte) (map[int32]Extension, error) { m := make(map[int32]Extension) i := 0 for i < len(buf) { tag, n := DecodeVarint(buf[i:]) if n <= 0 { return nil, fmt.Errorf("unable to decode varint") } fieldNum := int32(tag >> 3) wireType := int(tag & 0x7) l, err := size(buf[i+n:], wireType) if err != nil { return nil, err } end := i + int(l) + n m[int32(fieldNum)] = Extension{enc: buf[i:end]} i = end } return m, nil } func NewExtension(e []byte) Extension { ee := Extension{enc: make([]byte, len(e))} copy(ee.enc, e) return ee } func AppendExtension(e Message, tag int32, buf []byte) { if ee, eok := e.(extensionsBytes); eok { ext := ee.GetExtensions() *ext = append(*ext, buf...) return } if ee, eok := e.(extendableProto); eok { m := ee.extensionsWrite() ext := m[int32(tag)] // may be missing ext.enc = append(ext.enc, buf...) m[int32(tag)] = ext } } func encodeExtension(e *Extension) error { if e.value == nil || e.desc == nil { // Extension is only in its encoded form. return nil } // We don't skip extensions that have an encoded form set, // because the extension value may have been mutated after // the last time this function was called. et := reflect.TypeOf(e.desc.ExtensionType) props := extensionProperties(e.desc) p := NewBuffer(nil) // If e.value has type T, the encoder expects a *struct{ X T }. // Pass a *T with a zero field and hope it all works out. x := reflect.New(et) x.Elem().Set(reflect.ValueOf(e.value)) if err := props.enc(p, props, toStructPointer(x)); err != nil { return err } e.enc = p.buf return nil } func (this Extension) GoString() string { if this.enc == nil { if err := encodeExtension(&this); err != nil { panic(err) } } return fmt.Sprintf("proto.NewExtension(%#v)", this.enc) } func SetUnsafeExtension(pb Message, fieldNum int32, value interface{}) error { typ := reflect.TypeOf(pb).Elem() ext, ok := extensionMaps[typ] if !ok { return fmt.Errorf("proto: bad extended type; %s is not extendable", typ.String()) } desc, ok := ext[fieldNum] if !ok { return errors.New("proto: bad extension number; not in declared ranges") } return SetExtension(pb, desc, value) } func GetUnsafeExtension(pb Message, fieldNum int32) (interface{}, error) { typ := reflect.TypeOf(pb).Elem() ext, ok := extensionMaps[typ] if !ok { return nil, fmt.Errorf("proto: bad extended type; %s is not extendable", typ.String()) } desc, ok := ext[fieldNum] if !ok { return nil, fmt.Errorf("unregistered field number %d", fieldNum) } return GetExtension(pb, desc) } func NewUnsafeXXX_InternalExtensions(m map[int32]Extension) XXX_InternalExtensions { x := &XXX_InternalExtensions{ p: new(struct { mu sync.Mutex extensionMap map[int32]Extension }), } x.p.extensionMap = m return *x } func GetUnsafeExtensionsMap(extendable Message) map[int32]Extension { pb := extendable.(extendableProto) return pb.extensionsWrite() } golang-gogoprotobuf-0.5/proto/extensions_test.go000066400000000000000000000406561317075173200223100ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. package proto_test import ( "bytes" "fmt" "reflect" "sort" "testing" "github.com/gogo/protobuf/proto" pb "github.com/gogo/protobuf/proto/testdata" ) func TestGetExtensionsWithMissingExtensions(t *testing.T) { msg := &pb.MyMessage{} ext1 := &pb.Ext{} if err := proto.SetExtension(msg, pb.E_Ext_More, ext1); err != nil { t.Fatalf("Could not set ext1: %s", err) } exts, err := proto.GetExtensions(msg, []*proto.ExtensionDesc{ pb.E_Ext_More, pb.E_Ext_Text, }) if err != nil { t.Fatalf("GetExtensions() failed: %s", err) } if exts[0] != ext1 { t.Errorf("ext1 not in returned extensions: %T %v", exts[0], exts[0]) } if exts[1] != nil { t.Errorf("ext2 in returned extensions: %T %v", exts[1], exts[1]) } } func TestExtensionDescsWithMissingExtensions(t *testing.T) { msg := &pb.MyMessage{Count: proto.Int32(0)} extdesc1 := pb.E_Ext_More if descs, err := proto.ExtensionDescs(msg); len(descs) != 0 || err != nil { t.Errorf("proto.ExtensionDescs: got %d descs, error %v; want 0, nil", len(descs), err) } ext1 := &pb.Ext{} if err := proto.SetExtension(msg, extdesc1, ext1); err != nil { t.Fatalf("Could not set ext1: %s", err) } extdesc2 := &proto.ExtensionDesc{ ExtendedType: (*pb.MyMessage)(nil), ExtensionType: (*bool)(nil), Field: 123456789, Name: "a.b", Tag: "varint,123456789,opt", } ext2 := proto.Bool(false) if err := proto.SetExtension(msg, extdesc2, ext2); err != nil { t.Fatalf("Could not set ext2: %s", err) } b, err := proto.Marshal(msg) if err != nil { t.Fatalf("Could not marshal msg: %v", err) } if err = proto.Unmarshal(b, msg); err != nil { t.Fatalf("Could not unmarshal into msg: %v", err) } descs, err := proto.ExtensionDescs(msg) if err != nil { t.Fatalf("proto.ExtensionDescs: got error %v", err) } sortExtDescs(descs) wantDescs := []*proto.ExtensionDesc{extdesc1, {Field: extdesc2.Field}} if !reflect.DeepEqual(descs, wantDescs) { t.Errorf("proto.ExtensionDescs(msg) sorted extension ids: got %+v, want %+v", descs, wantDescs) } } type ExtensionDescSlice []*proto.ExtensionDesc func (s ExtensionDescSlice) Len() int { return len(s) } func (s ExtensionDescSlice) Less(i, j int) bool { return s[i].Field < s[j].Field } func (s ExtensionDescSlice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } func sortExtDescs(s []*proto.ExtensionDesc) { sort.Sort(ExtensionDescSlice(s)) } func TestGetExtensionStability(t *testing.T) { check := func(m *pb.MyMessage) bool { ext1, err := proto.GetExtension(m, pb.E_Ext_More) if err != nil { t.Fatalf("GetExtension() failed: %s", err) } ext2, err := proto.GetExtension(m, pb.E_Ext_More) if err != nil { t.Fatalf("GetExtension() failed: %s", err) } return ext1 == ext2 } msg := &pb.MyMessage{Count: proto.Int32(4)} ext0 := &pb.Ext{} if err := proto.SetExtension(msg, pb.E_Ext_More, ext0); err != nil { t.Fatalf("Could not set ext1: %s", ext0) } if !check(msg) { t.Errorf("GetExtension() not stable before marshaling") } bb, err := proto.Marshal(msg) if err != nil { t.Fatalf("Marshal() failed: %s", err) } msg1 := &pb.MyMessage{} err = proto.Unmarshal(bb, msg1) if err != nil { t.Fatalf("Unmarshal() failed: %s", err) } if !check(msg1) { t.Errorf("GetExtension() not stable after unmarshaling") } } func TestGetExtensionDefaults(t *testing.T) { var setFloat64 float64 = 1 var setFloat32 float32 = 2 var setInt32 int32 = 3 var setInt64 int64 = 4 var setUint32 uint32 = 5 var setUint64 uint64 = 6 var setBool = true var setBool2 = false var setString = "Goodnight string" var setBytes = []byte("Goodnight bytes") var setEnum = pb.DefaultsMessage_TWO type testcase struct { ext *proto.ExtensionDesc // Extension we are testing. want interface{} // Expected value of extension, or nil (meaning that GetExtension will fail). def interface{} // Expected value of extension after ClearExtension(). } tests := []testcase{ {pb.E_NoDefaultDouble, setFloat64, nil}, {pb.E_NoDefaultFloat, setFloat32, nil}, {pb.E_NoDefaultInt32, setInt32, nil}, {pb.E_NoDefaultInt64, setInt64, nil}, {pb.E_NoDefaultUint32, setUint32, nil}, {pb.E_NoDefaultUint64, setUint64, nil}, {pb.E_NoDefaultSint32, setInt32, nil}, {pb.E_NoDefaultSint64, setInt64, nil}, {pb.E_NoDefaultFixed32, setUint32, nil}, {pb.E_NoDefaultFixed64, setUint64, nil}, {pb.E_NoDefaultSfixed32, setInt32, nil}, {pb.E_NoDefaultSfixed64, setInt64, nil}, {pb.E_NoDefaultBool, setBool, nil}, {pb.E_NoDefaultBool, setBool2, nil}, {pb.E_NoDefaultString, setString, nil}, {pb.E_NoDefaultBytes, setBytes, nil}, {pb.E_NoDefaultEnum, setEnum, nil}, {pb.E_DefaultDouble, setFloat64, float64(3.1415)}, {pb.E_DefaultFloat, setFloat32, float32(3.14)}, {pb.E_DefaultInt32, setInt32, int32(42)}, {pb.E_DefaultInt64, setInt64, int64(43)}, {pb.E_DefaultUint32, setUint32, uint32(44)}, {pb.E_DefaultUint64, setUint64, uint64(45)}, {pb.E_DefaultSint32, setInt32, int32(46)}, {pb.E_DefaultSint64, setInt64, int64(47)}, {pb.E_DefaultFixed32, setUint32, uint32(48)}, {pb.E_DefaultFixed64, setUint64, uint64(49)}, {pb.E_DefaultSfixed32, setInt32, int32(50)}, {pb.E_DefaultSfixed64, setInt64, int64(51)}, {pb.E_DefaultBool, setBool, true}, {pb.E_DefaultBool, setBool2, true}, {pb.E_DefaultString, setString, "Hello, string"}, {pb.E_DefaultBytes, setBytes, []byte("Hello, bytes")}, {pb.E_DefaultEnum, setEnum, pb.DefaultsMessage_ONE}, } checkVal := func(test testcase, msg *pb.DefaultsMessage, valWant interface{}) error { val, err := proto.GetExtension(msg, test.ext) if err != nil { if valWant != nil { return fmt.Errorf("GetExtension(): %s", err) } if want := proto.ErrMissingExtension; err != want { return fmt.Errorf("Unexpected error: got %v, want %v", err, want) } return nil } // All proto2 extension values are either a pointer to a value or a slice of values. ty := reflect.TypeOf(val) tyWant := reflect.TypeOf(test.ext.ExtensionType) if got, want := ty, tyWant; got != want { return fmt.Errorf("unexpected reflect.TypeOf(): got %v want %v", got, want) } tye := ty.Elem() tyeWant := tyWant.Elem() if got, want := tye, tyeWant; got != want { return fmt.Errorf("unexpected reflect.TypeOf().Elem(): got %v want %v", got, want) } // Check the name of the type of the value. // If it is an enum it will be type int32 with the name of the enum. if got, want := tye.Name(), tye.Name(); got != want { return fmt.Errorf("unexpected reflect.TypeOf().Elem().Name(): got %v want %v", got, want) } // Check that value is what we expect. // If we have a pointer in val, get the value it points to. valExp := val if ty.Kind() == reflect.Ptr { valExp = reflect.ValueOf(val).Elem().Interface() } if got, want := valExp, valWant; !reflect.DeepEqual(got, want) { return fmt.Errorf("unexpected reflect.DeepEqual(): got %v want %v", got, want) } return nil } setTo := func(test testcase) interface{} { setTo := reflect.ValueOf(test.want) if typ := reflect.TypeOf(test.ext.ExtensionType); typ.Kind() == reflect.Ptr { setTo = reflect.New(typ).Elem() setTo.Set(reflect.New(setTo.Type().Elem())) setTo.Elem().Set(reflect.ValueOf(test.want)) } return setTo.Interface() } for _, test := range tests { msg := &pb.DefaultsMessage{} name := test.ext.Name // Check the initial value. if err := checkVal(test, msg, test.def); err != nil { t.Errorf("%s: %v", name, err) } // Set the per-type value and check value. name = fmt.Sprintf("%s (set to %T %v)", name, test.want, test.want) if err := proto.SetExtension(msg, test.ext, setTo(test)); err != nil { t.Errorf("%s: SetExtension(): %v", name, err) continue } if err := checkVal(test, msg, test.want); err != nil { t.Errorf("%s: %v", name, err) continue } // Set and check the value. name += " (cleared)" proto.ClearExtension(msg, test.ext) if err := checkVal(test, msg, test.def); err != nil { t.Errorf("%s: %v", name, err) } } } func TestExtensionsRoundTrip(t *testing.T) { msg := &pb.MyMessage{} ext1 := &pb.Ext{ Data: proto.String("hi"), } ext2 := &pb.Ext{ Data: proto.String("there"), } exists := proto.HasExtension(msg, pb.E_Ext_More) if exists { t.Error("Extension More present unexpectedly") } if err := proto.SetExtension(msg, pb.E_Ext_More, ext1); err != nil { t.Error(err) } if err := proto.SetExtension(msg, pb.E_Ext_More, ext2); err != nil { t.Error(err) } e, err := proto.GetExtension(msg, pb.E_Ext_More) if err != nil { t.Error(err) } x, ok := e.(*pb.Ext) if !ok { t.Errorf("e has type %T, expected testdata.Ext", e) } else if *x.Data != "there" { t.Errorf("SetExtension failed to overwrite, got %+v, not 'there'", x) } proto.ClearExtension(msg, pb.E_Ext_More) if _, err = proto.GetExtension(msg, pb.E_Ext_More); err != proto.ErrMissingExtension { t.Errorf("got %v, expected ErrMissingExtension", e) } if _, err := proto.GetExtension(msg, pb.E_X215); err == nil { t.Error("expected bad extension error, got nil") } if err := proto.SetExtension(msg, pb.E_X215, 12); err == nil { t.Error("expected extension err") } if err := proto.SetExtension(msg, pb.E_Ext_More, 12); err == nil { t.Error("expected some sort of type mismatch error, got nil") } } func TestNilExtension(t *testing.T) { msg := &pb.MyMessage{ Count: proto.Int32(1), } if err := proto.SetExtension(msg, pb.E_Ext_Text, proto.String("hello")); err != nil { t.Fatal(err) } if err := proto.SetExtension(msg, pb.E_Ext_More, (*pb.Ext)(nil)); err == nil { t.Error("expected SetExtension to fail due to a nil extension") } else if want := "proto: SetExtension called with nil value of type *testdata.Ext"; err.Error() != want { t.Errorf("expected error %v, got %v", want, err) } // Note: if the behavior of Marshal is ever changed to ignore nil extensions, update // this test to verify that E_Ext_Text is properly propagated through marshal->unmarshal. } func TestMarshalUnmarshalRepeatedExtension(t *testing.T) { // Add a repeated extension to the result. tests := []struct { name string ext []*pb.ComplexExtension }{ { "two fields", []*pb.ComplexExtension{ {First: proto.Int32(7)}, {Second: proto.Int32(11)}, }, }, { "repeated field", []*pb.ComplexExtension{ {Third: []int32{1000}}, {Third: []int32{2000}}, }, }, { "two fields and repeated field", []*pb.ComplexExtension{ {Third: []int32{1000}}, {First: proto.Int32(9)}, {Second: proto.Int32(21)}, {Third: []int32{2000}}, }, }, } for _, test := range tests { // Marshal message with a repeated extension. msg1 := new(pb.OtherMessage) err := proto.SetExtension(msg1, pb.E_RComplex, test.ext) if err != nil { t.Fatalf("[%s] Error setting extension: %v", test.name, err) } b, err := proto.Marshal(msg1) if err != nil { t.Fatalf("[%s] Error marshaling message: %v", test.name, err) } // Unmarshal and read the merged proto. msg2 := new(pb.OtherMessage) err = proto.Unmarshal(b, msg2) if err != nil { t.Fatalf("[%s] Error unmarshaling message: %v", test.name, err) } e, err := proto.GetExtension(msg2, pb.E_RComplex) if err != nil { t.Fatalf("[%s] Error getting extension: %v", test.name, err) } ext := e.([]*pb.ComplexExtension) if ext == nil { t.Fatalf("[%s] Invalid extension", test.name) } if !reflect.DeepEqual(ext, test.ext) { t.Errorf("[%s] Wrong value for ComplexExtension: got: %v want: %v\n", test.name, ext, test.ext) } } } func TestUnmarshalRepeatingNonRepeatedExtension(t *testing.T) { // We may see multiple instances of the same extension in the wire // format. For example, the proto compiler may encode custom options in // this way. Here, we verify that we merge the extensions together. tests := []struct { name string ext []*pb.ComplexExtension }{ { "two fields", []*pb.ComplexExtension{ {First: proto.Int32(7)}, {Second: proto.Int32(11)}, }, }, { "repeated field", []*pb.ComplexExtension{ {Third: []int32{1000}}, {Third: []int32{2000}}, }, }, { "two fields and repeated field", []*pb.ComplexExtension{ {Third: []int32{1000}}, {First: proto.Int32(9)}, {Second: proto.Int32(21)}, {Third: []int32{2000}}, }, }, } for _, test := range tests { var buf bytes.Buffer var want pb.ComplexExtension // Generate a serialized representation of a repeated extension // by catenating bytes together. for i, e := range test.ext { // Merge to create the wanted proto. proto.Merge(&want, e) // serialize the message msg := new(pb.OtherMessage) err := proto.SetExtension(msg, pb.E_Complex, e) if err != nil { t.Fatalf("[%s] Error setting extension %d: %v", test.name, i, err) } b, err := proto.Marshal(msg) if err != nil { t.Fatalf("[%s] Error marshaling message %d: %v", test.name, i, err) } buf.Write(b) } // Unmarshal and read the merged proto. msg2 := new(pb.OtherMessage) err := proto.Unmarshal(buf.Bytes(), msg2) if err != nil { t.Fatalf("[%s] Error unmarshaling message: %v", test.name, err) } e, err := proto.GetExtension(msg2, pb.E_Complex) if err != nil { t.Fatalf("[%s] Error getting extension: %v", test.name, err) } ext := e.(*pb.ComplexExtension) if ext == nil { t.Fatalf("[%s] Invalid extension", test.name) } if !reflect.DeepEqual(*ext, want) { t.Errorf("[%s] Wrong value for ComplexExtension: got: %v want: %v\n", test.name, ext, want) } } } func TestClearAllExtensions(t *testing.T) { // unregistered extension desc := &proto.ExtensionDesc{ ExtendedType: (*pb.MyMessage)(nil), ExtensionType: (*bool)(nil), Field: 101010100, Name: "emptyextension", Tag: "varint,0,opt", } m := &pb.MyMessage{} if proto.HasExtension(m, desc) { t.Errorf("proto.HasExtension(%s): got true, want false", proto.MarshalTextString(m)) } if err := proto.SetExtension(m, desc, proto.Bool(true)); err != nil { t.Errorf("proto.SetExtension(m, desc, true): got error %q, want nil", err) } if !proto.HasExtension(m, desc) { t.Errorf("proto.HasExtension(%s): got false, want true", proto.MarshalTextString(m)) } proto.ClearAllExtensions(m) if proto.HasExtension(m, desc) { t.Errorf("proto.HasExtension(%s): got true, want false", proto.MarshalTextString(m)) } } func TestMarshalRace(t *testing.T) { // unregistered extension desc := &proto.ExtensionDesc{ ExtendedType: (*pb.MyMessage)(nil), ExtensionType: (*bool)(nil), Field: 101010100, Name: "emptyextension", Tag: "varint,0,opt", } m := &pb.MyMessage{Count: proto.Int32(4)} if err := proto.SetExtension(m, desc, proto.Bool(true)); err != nil { t.Errorf("proto.SetExtension(m, desc, true): got error %q, want nil", err) } errChan := make(chan error, 3) for n := 3; n > 0; n-- { go func() { _, err := proto.Marshal(m) errChan <- err }() } for i := 0; i < 3; i++ { err := <-errChan if err != nil { t.Fatal(err) } } } golang-gogoprotobuf-0.5/proto/lib.go000066400000000000000000000571561317075173200176230ustar00rootroot00000000000000// 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. /* Package proto 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. 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 by the enclosing message's name, or by the enum's type name if it is a top-level enum. Enum types have a String method, and a Enum method to assist in message construction. - Nested messages, 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. The simplest way to describe this is to see an example. Given file test.proto, containing 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; } oneof union { int32 number = 6; string name = 7; } } The resulting file, test.pb.go, is: package example import proto "github.com/gogo/protobuf/proto" import math "math" type FOO int32 const ( FOO_X FOO = 17 ) var FOO_name = map[int32]string{ 17: "X", } var FOO_value = map[string]int32{ "X": 17, } func (x FOO) Enum() *FOO { p := new(FOO) *p = x return p } func (x FOO) String() string { return proto.EnumName(FOO_name, int32(x)) } func (x *FOO) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(FOO_value, data) if err != nil { return err } *x = FOO(value) return nil } type Test struct { Label *string `protobuf:"bytes,1,req,name=label" json:"label,omitempty"` Type *int32 `protobuf:"varint,2,opt,name=type,def=77" json:"type,omitempty"` Reps []int64 `protobuf:"varint,3,rep,name=reps" json:"reps,omitempty"` Optionalgroup *Test_OptionalGroup `protobuf:"group,4,opt,name=OptionalGroup" json:"optionalgroup,omitempty"` // Types that are valid to be assigned to Union: // *Test_Number // *Test_Name Union isTest_Union `protobuf_oneof:"union"` XXX_unrecognized []byte `json:"-"` } func (m *Test) Reset() { *m = Test{} } func (m *Test) String() string { return proto.CompactTextString(m) } func (*Test) ProtoMessage() {} type isTest_Union interface { isTest_Union() } type Test_Number struct { Number int32 `protobuf:"varint,6,opt,name=number"` } type Test_Name struct { Name string `protobuf:"bytes,7,opt,name=name"` } func (*Test_Number) isTest_Union() {} func (*Test_Name) isTest_Union() {} func (m *Test) GetUnion() isTest_Union { if m != nil { return m.Union } return nil } const Default_Test_Type int32 = 77 func (m *Test) GetLabel() string { if m != nil && m.Label != nil { return *m.Label } return "" } func (m *Test) GetType() int32 { if m != nil && m.Type != nil { return *m.Type } return Default_Test_Type } func (m *Test) GetOptionalgroup() *Test_OptionalGroup { if m != nil { return m.Optionalgroup } return nil } type Test_OptionalGroup struct { RequiredField *string `protobuf:"bytes,5,req" json:"RequiredField,omitempty"` } func (m *Test_OptionalGroup) Reset() { *m = Test_OptionalGroup{} } func (m *Test_OptionalGroup) String() string { return proto.CompactTextString(m) } func (m *Test_OptionalGroup) GetRequiredField() string { if m != nil && m.RequiredField != nil { return *m.RequiredField } return "" } func (m *Test) GetNumber() int32 { if x, ok := m.GetUnion().(*Test_Number); ok { return x.Number } return 0 } func (m *Test) GetName() string { if x, ok := m.GetUnion().(*Test_Name); ok { return x.Name } return "" } func init() { proto.RegisterEnum("example.FOO", FOO_name, FOO_value) } To create and play with a Test object: package main import ( "log" "github.com/gogo/protobuf/proto" pb "./example.pb" ) func main() { test := &pb.Test{ Label: proto.String("hello"), Type: proto.Int32(17), Reps: []int64{1, 2, 3}, Optionalgroup: &pb.Test_OptionalGroup{ RequiredField: proto.String("good bye"), }, Union: &pb.Test_Name{"fred"}, } data, err := proto.Marshal(test) if err != nil { log.Fatal("marshaling error: ", err) } newTest := &pb.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()) } // Use a type switch to determine which oneof was set. switch u := test.Union.(type) { case *pb.Test_Number: // u.Number contains the number. case *pb.Test_Name: // u.Name contains the string. } // etc. } */ package proto import ( "encoding/json" "fmt" "log" "reflect" "sort" "strconv" "sync" ) // Message is implemented by generated protocol buffer messages. type Message interface { Reset() String() string ProtoMessage() } // Stats records allocation details about the protocol buffer encoders // and decoders. Useful for tuning the library itself. type Stats struct { Emalloc uint64 // mallocs in encode Dmalloc uint64 // mallocs in decode Encode uint64 // number of encodes Decode uint64 // number of decodes Chit uint64 // number of cache hits Cmiss uint64 // number of cache misses Size uint64 // number of sizes } // Set to true to enable stats collection. const collectStats = false var stats Stats // GetStats returns a copy of the global Stats structure. func GetStats() Stats { return stats } // A Buffer is a buffer manager for marshaling and unmarshaling // protocol buffers. It may be reused between invocations to // reduce memory usage. It is not necessary to use a Buffer; // the global functions Marshal and Unmarshal create a // temporary Buffer and are fine for most applications. type Buffer struct { buf []byte // encode/decode byte stream index int // read point // pools of basic types to amortize allocation. bools []bool uint32s []uint32 uint64s []uint64 // extra pools, only used with pointer_reflect.go int32s []int32 int64s []int64 float32s []float32 float64s []float64 } // NewBuffer allocates a new Buffer and initializes its internal data to // the contents of the argument slice. func NewBuffer(e []byte) *Buffer { return &Buffer{buf: e} } // Reset resets the Buffer, ready for marshaling a new protocol buffer. func (p *Buffer) Reset() { p.buf = p.buf[0:0] // for reading/writing p.index = 0 // for reading } // SetBuf replaces the internal buffer with the slice, // ready for unmarshaling the contents of the slice. func (p *Buffer) SetBuf(s []byte) { p.buf = s p.index = 0 } // Bytes returns the contents of the Buffer. func (p *Buffer) Bytes() []byte { return p.buf } /* * Helper routines for simplifying the creation of optional fields of basic type. */ // Bool is a helper routine that allocates a new bool value // to store v and returns a pointer to it. func Bool(v bool) *bool { return &v } // Int32 is a helper routine that allocates a new int32 value // to store v and returns a pointer to it. func Int32(v int32) *int32 { return &v } // Int is a helper routine that allocates a new int32 value // to store v and returns a pointer to it, but unlike Int32 // its argument value is an int. func Int(v int) *int32 { p := new(int32) *p = int32(v) return p } // Int64 is a helper routine that allocates a new int64 value // to store v and returns a pointer to it. func Int64(v int64) *int64 { return &v } // Float32 is a helper routine that allocates a new float32 value // to store v and returns a pointer to it. func Float32(v float32) *float32 { return &v } // Float64 is a helper routine that allocates a new float64 value // to store v and returns a pointer to it. func Float64(v float64) *float64 { return &v } // Uint32 is a helper routine that allocates a new uint32 value // to store v and returns a pointer to it. func Uint32(v uint32) *uint32 { return &v } // Uint64 is a helper routine that allocates a new uint64 value // to store v and returns a pointer to it. func Uint64(v uint64) *uint64 { return &v } // String is a helper routine that allocates a new string value // to store v and returns a pointer to it. func String(v string) *string { return &v } // EnumName is a helper function to simplify printing protocol buffer enums // by name. Given an enum map and a value, it returns a useful string. func EnumName(m map[int32]string, v int32) string { s, ok := m[v] if ok { return s } return strconv.Itoa(int(v)) } // UnmarshalJSONEnum is a helper function to simplify recovering enum int values // from their JSON-encoded representation. Given a map from the enum's symbolic // names to its int values, and a byte buffer containing the JSON-encoded // value, it returns an int32 that can be cast to the enum type by the caller. // // The function can deal with both JSON representations, numeric and symbolic. func UnmarshalJSONEnum(m map[string]int32, data []byte, enumName string) (int32, error) { if data[0] == '"' { // New style: enums are strings. var repr string if err := json.Unmarshal(data, &repr); err != nil { return -1, err } val, ok := m[repr] if !ok { return 0, fmt.Errorf("unrecognized enum %s value %q", enumName, repr) } return val, nil } // Old style: enums are ints. var val int32 if err := json.Unmarshal(data, &val); err != nil { return 0, fmt.Errorf("cannot unmarshal %#q into enum %s", data, enumName) } return val, nil } // DebugPrint dumps the encoded data in b in a debugging format with a header // including the string s. Used in testing but made available for general debugging. func (p *Buffer) DebugPrint(s string, b []byte) { var u uint64 obuf := p.buf sindex := p.index p.buf = b p.index = 0 depth := 0 fmt.Printf("\n--- %s ---\n", s) out: for { for i := 0; i < depth; i++ { fmt.Print(" ") } index := p.index if index == len(p.buf) { break } op, err := p.DecodeVarint() if err != nil { fmt.Printf("%3d: fetching op err %v\n", index, err) break out } tag := op >> 3 wire := op & 7 switch wire { default: fmt.Printf("%3d: t=%3d unknown wire=%d\n", index, tag, wire) break out case WireBytes: var r []byte r, err = p.DecodeRawBytes(false) if err != nil { break out } fmt.Printf("%3d: t=%3d bytes [%d]", index, tag, len(r)) if len(r) <= 6 { for i := 0; i < len(r); i++ { fmt.Printf(" %.2x", r[i]) } } else { for i := 0; i < 3; i++ { fmt.Printf(" %.2x", r[i]) } fmt.Printf(" ..") for i := len(r) - 3; i < len(r); i++ { fmt.Printf(" %.2x", r[i]) } } fmt.Printf("\n") case WireFixed32: u, err = p.DecodeFixed32() if err != nil { fmt.Printf("%3d: t=%3d fix32 err %v\n", index, tag, err) break out } fmt.Printf("%3d: t=%3d fix32 %d\n", index, tag, u) case WireFixed64: u, err = p.DecodeFixed64() if err != nil { fmt.Printf("%3d: t=%3d fix64 err %v\n", index, tag, err) break out } fmt.Printf("%3d: t=%3d fix64 %d\n", index, tag, u) case WireVarint: u, err = p.DecodeVarint() if err != nil { fmt.Printf("%3d: t=%3d varint err %v\n", index, tag, err) break out } fmt.Printf("%3d: t=%3d varint %d\n", index, tag, u) case WireStartGroup: fmt.Printf("%3d: t=%3d start\n", index, tag) depth++ case WireEndGroup: depth-- fmt.Printf("%3d: t=%3d end\n", index, tag) } } if depth != 0 { fmt.Printf("%3d: start-end not balanced %d\n", p.index, depth) } fmt.Printf("\n") p.buf = obuf p.index = sindex } // SetDefaults sets unset protocol buffer fields to their default values. // It only modifies fields that are both unset and have defined defaults. // It recursively sets default values in any non-nil sub-messages. func SetDefaults(pb Message) { setDefaults(reflect.ValueOf(pb), true, false) } // v is a pointer to a struct. func setDefaults(v reflect.Value, recur, zeros bool) { v = v.Elem() defaultMu.RLock() dm, ok := defaults[v.Type()] defaultMu.RUnlock() if !ok { dm = buildDefaultMessage(v.Type()) defaultMu.Lock() defaults[v.Type()] = dm defaultMu.Unlock() } for _, sf := range dm.scalars { f := v.Field(sf.index) if !f.IsNil() { // field already set continue } dv := sf.value if dv == nil && !zeros { // no explicit default, and don't want to set zeros continue } fptr := f.Addr().Interface() // **T // TODO: Consider batching the allocations we do here. switch sf.kind { case reflect.Bool: b := new(bool) if dv != nil { *b = dv.(bool) } *(fptr.(**bool)) = b case reflect.Float32: f := new(float32) if dv != nil { *f = dv.(float32) } *(fptr.(**float32)) = f case reflect.Float64: f := new(float64) if dv != nil { *f = dv.(float64) } *(fptr.(**float64)) = f case reflect.Int32: // might be an enum if ft := f.Type(); ft != int32PtrType { // enum f.Set(reflect.New(ft.Elem())) if dv != nil { f.Elem().SetInt(int64(dv.(int32))) } } else { // int32 field i := new(int32) if dv != nil { *i = dv.(int32) } *(fptr.(**int32)) = i } case reflect.Int64: i := new(int64) if dv != nil { *i = dv.(int64) } *(fptr.(**int64)) = i case reflect.String: s := new(string) if dv != nil { *s = dv.(string) } *(fptr.(**string)) = s case reflect.Uint8: // exceptional case: []byte var b []byte if dv != nil { db := dv.([]byte) b = make([]byte, len(db)) copy(b, db) } else { b = []byte{} } *(fptr.(*[]byte)) = b case reflect.Uint32: u := new(uint32) if dv != nil { *u = dv.(uint32) } *(fptr.(**uint32)) = u case reflect.Uint64: u := new(uint64) if dv != nil { *u = dv.(uint64) } *(fptr.(**uint64)) = u default: log.Printf("proto: can't set default for field %v (sf.kind=%v)", f, sf.kind) } } for _, ni := range dm.nested { f := v.Field(ni) // f is *T or []*T or map[T]*T switch f.Kind() { case reflect.Ptr: if f.IsNil() { continue } setDefaults(f, recur, zeros) case reflect.Slice: for i := 0; i < f.Len(); i++ { e := f.Index(i) if e.IsNil() { continue } setDefaults(e, recur, zeros) } case reflect.Map: for _, k := range f.MapKeys() { e := f.MapIndex(k) if e.IsNil() { continue } setDefaults(e, recur, zeros) } } } } var ( // defaults maps a protocol buffer struct type to a slice of the fields, // with its scalar fields set to their proto-declared non-zero default values. defaultMu sync.RWMutex defaults = make(map[reflect.Type]defaultMessage) int32PtrType = reflect.TypeOf((*int32)(nil)) ) // defaultMessage represents information about the default values of a message. type defaultMessage struct { scalars []scalarField nested []int // struct field index of nested messages } type scalarField struct { index int // struct field index kind reflect.Kind // element type (the T in *T or []T) value interface{} // the proto-declared default value, or nil } // t is a struct type. func buildDefaultMessage(t reflect.Type) (dm defaultMessage) { sprop := GetProperties(t) for _, prop := range sprop.Prop { fi, ok := sprop.decoderTags.get(prop.Tag) if !ok { // XXX_unrecognized continue } ft := t.Field(fi).Type sf, nested, err := fieldDefault(ft, prop) switch { case err != nil: log.Print(err) case nested: dm.nested = append(dm.nested, fi) case sf != nil: sf.index = fi dm.scalars = append(dm.scalars, *sf) } } return dm } // fieldDefault returns the scalarField for field type ft. // sf will be nil if the field can not have a default. // nestedMessage will be true if this is a nested message. // Note that sf.index is not set on return. func fieldDefault(ft reflect.Type, prop *Properties) (sf *scalarField, nestedMessage bool, err error) { var canHaveDefault bool switch ft.Kind() { case reflect.Ptr: if ft.Elem().Kind() == reflect.Struct { nestedMessage = true } else { canHaveDefault = true // proto2 scalar field } case reflect.Slice: switch ft.Elem().Kind() { case reflect.Ptr: nestedMessage = true // repeated message case reflect.Uint8: canHaveDefault = true // bytes field } case reflect.Map: if ft.Elem().Kind() == reflect.Ptr { nestedMessage = true // map with message values } } if !canHaveDefault { if nestedMessage { return nil, true, nil } return nil, false, nil } // We now know that ft is a pointer or slice. sf = &scalarField{kind: ft.Elem().Kind()} // scalar fields without defaults if !prop.HasDefault { return sf, false, nil } // a scalar field: either *T or []byte switch ft.Elem().Kind() { case reflect.Bool: x, err := strconv.ParseBool(prop.Default) if err != nil { return nil, false, fmt.Errorf("proto: bad default bool %q: %v", prop.Default, err) } sf.value = x case reflect.Float32: x, err := strconv.ParseFloat(prop.Default, 32) if err != nil { return nil, false, fmt.Errorf("proto: bad default float32 %q: %v", prop.Default, err) } sf.value = float32(x) case reflect.Float64: x, err := strconv.ParseFloat(prop.Default, 64) if err != nil { return nil, false, fmt.Errorf("proto: bad default float64 %q: %v", prop.Default, err) } sf.value = x case reflect.Int32: x, err := strconv.ParseInt(prop.Default, 10, 32) if err != nil { return nil, false, fmt.Errorf("proto: bad default int32 %q: %v", prop.Default, err) } sf.value = int32(x) case reflect.Int64: x, err := strconv.ParseInt(prop.Default, 10, 64) if err != nil { return nil, false, fmt.Errorf("proto: bad default int64 %q: %v", prop.Default, err) } sf.value = x case reflect.String: sf.value = prop.Default case reflect.Uint8: // []byte (not *uint8) sf.value = []byte(prop.Default) case reflect.Uint32: x, err := strconv.ParseUint(prop.Default, 10, 32) if err != nil { return nil, false, fmt.Errorf("proto: bad default uint32 %q: %v", prop.Default, err) } sf.value = uint32(x) case reflect.Uint64: x, err := strconv.ParseUint(prop.Default, 10, 64) if err != nil { return nil, false, fmt.Errorf("proto: bad default uint64 %q: %v", prop.Default, err) } sf.value = x default: return nil, false, fmt.Errorf("proto: unhandled def kind %v", ft.Elem().Kind()) } return sf, false, nil } // Map fields may have key types of non-float scalars, strings and enums. // The easiest way to sort them in some deterministic order is to use fmt. // If this turns out to be inefficient we can always consider other options, // such as doing a Schwartzian transform. func mapKeys(vs []reflect.Value) sort.Interface { s := mapKeySorter{ vs: vs, // default Less function: textual comparison less: func(a, b reflect.Value) bool { return fmt.Sprint(a.Interface()) < fmt.Sprint(b.Interface()) }, } // Type specialization per https://developers.google.com/protocol-buffers/docs/proto#maps; // numeric keys are sorted numerically. if len(vs) == 0 { return s } switch vs[0].Kind() { case reflect.Int32, reflect.Int64: s.less = func(a, b reflect.Value) bool { return a.Int() < b.Int() } case reflect.Uint32, reflect.Uint64: s.less = func(a, b reflect.Value) bool { return a.Uint() < b.Uint() } } return s } type mapKeySorter struct { vs []reflect.Value less func(a, b reflect.Value) bool } func (s mapKeySorter) Len() int { return len(s.vs) } func (s mapKeySorter) Swap(i, j int) { s.vs[i], s.vs[j] = s.vs[j], s.vs[i] } func (s mapKeySorter) Less(i, j int) bool { return s.less(s.vs[i], s.vs[j]) } // isProto3Zero reports whether v is a zero proto3 value. func isProto3Zero(v reflect.Value) bool { switch v.Kind() { case reflect.Bool: return !v.Bool() case reflect.Int32, reflect.Int64: return v.Int() == 0 case reflect.Uint32, reflect.Uint64: return v.Uint() == 0 case reflect.Float32, reflect.Float64: return v.Float() == 0 case reflect.String: return v.String() == "" } return false } // ProtoPackageIsVersion2 is referenced from generated protocol buffer files // to assert that that code is compatible with this version of the proto package. const GoGoProtoPackageIsVersion2 = true // ProtoPackageIsVersion1 is referenced from generated protocol buffer files // to assert that that code is compatible with this version of the proto package. const GoGoProtoPackageIsVersion1 = true golang-gogoprotobuf-0.5/proto/lib_gogo.go000066400000000000000000000032001317075173200206130ustar00rootroot00000000000000// 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. package proto import ( "encoding/json" "strconv" ) func MarshalJSONEnum(m map[int32]string, value int32) ([]byte, error) { s, ok := m[value] if !ok { s = strconv.Itoa(int(value)) } return json.Marshal(s) } golang-gogoprotobuf-0.5/proto/map_test.go000066400000000000000000000016441317075173200206600ustar00rootroot00000000000000package proto_test import ( "fmt" "testing" "github.com/gogo/protobuf/proto" ppb "github.com/gogo/protobuf/proto/proto3_proto" ) func marshalled() []byte { m := &ppb.IntMaps{} for i := 0; i < 1000; i++ { m.Maps = append(m.Maps, &ppb.IntMap{ Rtt: map[int32]int32{1: 2}, }) } b, err := proto.Marshal(m) if err != nil { panic(fmt.Sprintf("Can't marshal %+v: %v", m, err)) } return b } func BenchmarkConcurrentMapUnmarshal(b *testing.B) { in := marshalled() b.RunParallel(func(pb *testing.PB) { for pb.Next() { var out ppb.IntMaps if err := proto.Unmarshal(in, &out); err != nil { b.Errorf("Can't unmarshal ppb.IntMaps: %v", err) } } }) } func BenchmarkSequentialMapUnmarshal(b *testing.B) { in := marshalled() b.ResetTimer() for i := 0; i < b.N; i++ { var out ppb.IntMaps if err := proto.Unmarshal(in, &out); err != nil { b.Errorf("Can't unmarshal ppb.IntMaps: %v", err) } } } golang-gogoprotobuf-0.5/proto/message_set.go000066400000000000000000000216111317075173200213370ustar00rootroot00000000000000// 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. package proto /* * Support for message sets. */ import ( "bytes" "encoding/json" "errors" "fmt" "reflect" "sort" ) // errNoMessageTypeID occurs when a protocol buffer does not have a message type ID. // A message type ID is required for storing a protocol buffer in a message set. var errNoMessageTypeID = errors.New("proto does not have a message type ID") // The first two types (_MessageSet_Item and messageSet) // model what the protocol compiler produces for the following protocol message: // message MessageSet { // repeated group Item = 1 { // required int32 type_id = 2; // required string message = 3; // }; // } // That is the MessageSet wire format. We can't use a proto to generate these // because that would introduce a circular dependency between it and this package. type _MessageSet_Item struct { TypeId *int32 `protobuf:"varint,2,req,name=type_id"` Message []byte `protobuf:"bytes,3,req,name=message"` } type messageSet struct { Item []*_MessageSet_Item `protobuf:"group,1,rep"` XXX_unrecognized []byte // TODO: caching? } // Make sure messageSet is a Message. var _ Message = (*messageSet)(nil) // messageTypeIder is an interface satisfied by a protocol buffer type // that may be stored in a MessageSet. type messageTypeIder interface { MessageTypeId() int32 } func (ms *messageSet) find(pb Message) *_MessageSet_Item { mti, ok := pb.(messageTypeIder) if !ok { return nil } id := mti.MessageTypeId() for _, item := range ms.Item { if *item.TypeId == id { return item } } return nil } func (ms *messageSet) Has(pb Message) bool { if ms.find(pb) != nil { return true } return false } func (ms *messageSet) Unmarshal(pb Message) error { if item := ms.find(pb); item != nil { return Unmarshal(item.Message, pb) } if _, ok := pb.(messageTypeIder); !ok { return errNoMessageTypeID } return nil // TODO: return error instead? } func (ms *messageSet) Marshal(pb Message) error { msg, err := Marshal(pb) if err != nil { return err } if item := ms.find(pb); item != nil { // reuse existing item item.Message = msg return nil } mti, ok := pb.(messageTypeIder) if !ok { return errNoMessageTypeID } mtid := mti.MessageTypeId() ms.Item = append(ms.Item, &_MessageSet_Item{ TypeId: &mtid, Message: msg, }) return nil } func (ms *messageSet) Reset() { *ms = messageSet{} } func (ms *messageSet) String() string { return CompactTextString(ms) } func (*messageSet) ProtoMessage() {} // Support for the message_set_wire_format message option. func skipVarint(buf []byte) []byte { i := 0 for ; buf[i]&0x80 != 0; i++ { } return buf[i+1:] } // MarshalMessageSet encodes the extension map represented by m in the message set wire format. // It is called by generated Marshal methods on protocol buffer messages with the message_set_wire_format option. func MarshalMessageSet(exts interface{}) ([]byte, error) { var m map[int32]Extension switch exts := exts.(type) { case *XXX_InternalExtensions: if err := encodeExtensions(exts); err != nil { return nil, err } m, _ = exts.extensionsRead() case map[int32]Extension: if err := encodeExtensionsMap(exts); err != nil { return nil, err } m = exts default: return nil, errors.New("proto: not an extension map") } // Sort extension IDs to provide a deterministic encoding. // See also enc_map in encode.go. ids := make([]int, 0, len(m)) for id := range m { ids = append(ids, int(id)) } sort.Ints(ids) ms := &messageSet{Item: make([]*_MessageSet_Item, 0, len(m))} for _, id := range ids { e := m[int32(id)] // Remove the wire type and field number varint, as well as the length varint. msg := skipVarint(skipVarint(e.enc)) ms.Item = append(ms.Item, &_MessageSet_Item{ TypeId: Int32(int32(id)), Message: msg, }) } return Marshal(ms) } // UnmarshalMessageSet decodes the extension map encoded in buf in the message set wire format. // It is called by generated Unmarshal methods on protocol buffer messages with the message_set_wire_format option. func UnmarshalMessageSet(buf []byte, exts interface{}) error { var m map[int32]Extension switch exts := exts.(type) { case *XXX_InternalExtensions: m = exts.extensionsWrite() case map[int32]Extension: m = exts default: return errors.New("proto: not an extension map") } ms := new(messageSet) if err := Unmarshal(buf, ms); err != nil { return err } for _, item := range ms.Item { id := *item.TypeId msg := item.Message // Restore wire type and field number varint, plus length varint. // Be careful to preserve duplicate items. b := EncodeVarint(uint64(id)<<3 | WireBytes) if ext, ok := m[id]; ok { // Existing data; rip off the tag and length varint // so we join the new data correctly. // We can assume that ext.enc is set because we are unmarshaling. o := ext.enc[len(b):] // skip wire type and field number _, n := DecodeVarint(o) // calculate length of length varint o = o[n:] // skip length varint msg = append(o, msg...) // join old data and new data } b = append(b, EncodeVarint(uint64(len(msg)))...) b = append(b, msg...) m[id] = Extension{enc: b} } return nil } // MarshalMessageSetJSON encodes the extension map represented by m in JSON format. // It is called by generated MarshalJSON methods on protocol buffer messages with the message_set_wire_format option. func MarshalMessageSetJSON(exts interface{}) ([]byte, error) { var m map[int32]Extension switch exts := exts.(type) { case *XXX_InternalExtensions: m, _ = exts.extensionsRead() case map[int32]Extension: m = exts default: return nil, errors.New("proto: not an extension map") } var b bytes.Buffer b.WriteByte('{') // Process the map in key order for deterministic output. ids := make([]int32, 0, len(m)) for id := range m { ids = append(ids, id) } sort.Sort(int32Slice(ids)) // int32Slice defined in text.go for i, id := range ids { ext := m[id] if i > 0 { b.WriteByte(',') } msd, ok := messageSetMap[id] if !ok { // Unknown type; we can't render it, so skip it. continue } fmt.Fprintf(&b, `"[%s]":`, msd.name) x := ext.value if x == nil { x = reflect.New(msd.t.Elem()).Interface() if err := Unmarshal(ext.enc, x.(Message)); err != nil { return nil, err } } d, err := json.Marshal(x) if err != nil { return nil, err } b.Write(d) } b.WriteByte('}') return b.Bytes(), nil } // UnmarshalMessageSetJSON decodes the extension map encoded in buf in JSON format. // It is called by generated UnmarshalJSON methods on protocol buffer messages with the message_set_wire_format option. func UnmarshalMessageSetJSON(buf []byte, exts interface{}) error { // Common-case fast path. if len(buf) == 0 || bytes.Equal(buf, []byte("{}")) { return nil } // This is fairly tricky, and it's not clear that it is needed. return errors.New("TODO: UnmarshalMessageSetJSON not yet implemented") } // A global registry of types that can be used in a MessageSet. var messageSetMap = make(map[int32]messageSetDesc) type messageSetDesc struct { t reflect.Type // pointer to struct name string } // RegisterMessageSetType is called from the generated code. func RegisterMessageSetType(m Message, fieldNum int32, name string) { messageSetMap[fieldNum] = messageSetDesc{ t: reflect.TypeOf(m), name: name, } } golang-gogoprotobuf-0.5/proto/message_set_test.go000066400000000000000000000050601317075173200223760ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. package proto import ( "bytes" "testing" ) func TestUnmarshalMessageSetWithDuplicate(t *testing.T) { // Check that a repeated message set entry will be concatenated. in := &messageSet{ Item: []*_MessageSet_Item{ {TypeId: Int32(12345), Message: []byte("hoo")}, {TypeId: Int32(12345), Message: []byte("hah")}, }, } b, err := Marshal(in) if err != nil { t.Fatalf("Marshal: %v", err) } t.Logf("Marshaled bytes: %q", b) var extensions XXX_InternalExtensions if err := UnmarshalMessageSet(b, &extensions); err != nil { t.Fatalf("UnmarshalMessageSet: %v", err) } ext, ok := extensions.p.extensionMap[12345] if !ok { t.Fatalf("Didn't retrieve extension 12345; map is %v", extensions.p.extensionMap) } // Skip wire type/field number and length varints. got := skipVarint(skipVarint(ext.enc)) if want := []byte("hoohah"); !bytes.Equal(got, want) { t.Errorf("Combined extension is %q, want %q", got, want) } } golang-gogoprotobuf-0.5/proto/pointer_reflect.go000066400000000000000000000331101317075173200222210ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2012 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. // +build appengine js // This file contains an implementation of proto field accesses using package reflect. // It is slower than the code in pointer_unsafe.go but it avoids package unsafe and can // be used on App Engine. package proto import ( "math" "reflect" ) // A structPointer is a pointer to a struct. type structPointer struct { v reflect.Value } // toStructPointer returns a structPointer equivalent to the given reflect value. // The reflect value must itself be a pointer to a struct. func toStructPointer(v reflect.Value) structPointer { return structPointer{v} } // IsNil reports whether p is nil. func structPointer_IsNil(p structPointer) bool { return p.v.IsNil() } // Interface returns the struct pointer as an interface value. func structPointer_Interface(p structPointer, _ reflect.Type) interface{} { return p.v.Interface() } // A field identifies a field in a struct, accessible from a structPointer. // In this implementation, a field is identified by the sequence of field indices // passed to reflect's FieldByIndex. type field []int // toField returns a field equivalent to the given reflect field. func toField(f *reflect.StructField) field { return f.Index } // invalidField is an invalid field identifier. var invalidField = field(nil) // IsValid reports whether the field identifier is valid. func (f field) IsValid() bool { return f != nil } // field returns the given field in the struct as a reflect value. func structPointer_field(p structPointer, f field) reflect.Value { // Special case: an extension map entry with a value of type T // passes a *T to the struct-handling code with a zero field, // expecting that it will be treated as equivalent to *struct{ X T }, // which has the same memory layout. We have to handle that case // specially, because reflect will panic if we call FieldByIndex on a // non-struct. if f == nil { return p.v.Elem() } return p.v.Elem().FieldByIndex(f) } // ifield returns the given field in the struct as an interface value. func structPointer_ifield(p structPointer, f field) interface{} { return structPointer_field(p, f).Addr().Interface() } // Bytes returns the address of a []byte field in the struct. func structPointer_Bytes(p structPointer, f field) *[]byte { return structPointer_ifield(p, f).(*[]byte) } // BytesSlice returns the address of a [][]byte field in the struct. func structPointer_BytesSlice(p structPointer, f field) *[][]byte { return structPointer_ifield(p, f).(*[][]byte) } // Bool returns the address of a *bool field in the struct. func structPointer_Bool(p structPointer, f field) **bool { return structPointer_ifield(p, f).(**bool) } // BoolVal returns the address of a bool field in the struct. func structPointer_BoolVal(p structPointer, f field) *bool { return structPointer_ifield(p, f).(*bool) } // BoolSlice returns the address of a []bool field in the struct. func structPointer_BoolSlice(p structPointer, f field) *[]bool { return structPointer_ifield(p, f).(*[]bool) } // String returns the address of a *string field in the struct. func structPointer_String(p structPointer, f field) **string { return structPointer_ifield(p, f).(**string) } // StringVal returns the address of a string field in the struct. func structPointer_StringVal(p structPointer, f field) *string { return structPointer_ifield(p, f).(*string) } // StringSlice returns the address of a []string field in the struct. func structPointer_StringSlice(p structPointer, f field) *[]string { return structPointer_ifield(p, f).(*[]string) } // Extensions returns the address of an extension map field in the struct. func structPointer_Extensions(p structPointer, f field) *XXX_InternalExtensions { return structPointer_ifield(p, f).(*XXX_InternalExtensions) } // ExtMap returns the address of an extension map field in the struct. func structPointer_ExtMap(p structPointer, f field) *map[int32]Extension { return structPointer_ifield(p, f).(*map[int32]Extension) } // NewAt returns the reflect.Value for a pointer to a field in the struct. func structPointer_NewAt(p structPointer, f field, typ reflect.Type) reflect.Value { return structPointer_field(p, f).Addr() } // SetStructPointer writes a *struct field in the struct. func structPointer_SetStructPointer(p structPointer, f field, q structPointer) { structPointer_field(p, f).Set(q.v) } // GetStructPointer reads a *struct field in the struct. func structPointer_GetStructPointer(p structPointer, f field) structPointer { return structPointer{structPointer_field(p, f)} } // StructPointerSlice the address of a []*struct field in the struct. func structPointer_StructPointerSlice(p structPointer, f field) structPointerSlice { return structPointerSlice{structPointer_field(p, f)} } // A structPointerSlice represents the address of a slice of pointers to structs // (themselves messages or groups). That is, v.Type() is *[]*struct{...}. type structPointerSlice struct { v reflect.Value } func (p structPointerSlice) Len() int { return p.v.Len() } func (p structPointerSlice) Index(i int) structPointer { return structPointer{p.v.Index(i)} } func (p structPointerSlice) Append(q structPointer) { p.v.Set(reflect.Append(p.v, q.v)) } var ( int32Type = reflect.TypeOf(int32(0)) uint32Type = reflect.TypeOf(uint32(0)) float32Type = reflect.TypeOf(float32(0)) int64Type = reflect.TypeOf(int64(0)) uint64Type = reflect.TypeOf(uint64(0)) float64Type = reflect.TypeOf(float64(0)) ) // A word32 represents a field of type *int32, *uint32, *float32, or *enum. // That is, v.Type() is *int32, *uint32, *float32, or *enum and v is assignable. type word32 struct { v reflect.Value } // IsNil reports whether p is nil. func word32_IsNil(p word32) bool { return p.v.IsNil() } // Set sets p to point at a newly allocated word with bits set to x. func word32_Set(p word32, o *Buffer, x uint32) { t := p.v.Type().Elem() switch t { case int32Type: if len(o.int32s) == 0 { o.int32s = make([]int32, uint32PoolSize) } o.int32s[0] = int32(x) p.v.Set(reflect.ValueOf(&o.int32s[0])) o.int32s = o.int32s[1:] return case uint32Type: if len(o.uint32s) == 0 { o.uint32s = make([]uint32, uint32PoolSize) } o.uint32s[0] = x p.v.Set(reflect.ValueOf(&o.uint32s[0])) o.uint32s = o.uint32s[1:] return case float32Type: if len(o.float32s) == 0 { o.float32s = make([]float32, uint32PoolSize) } o.float32s[0] = math.Float32frombits(x) p.v.Set(reflect.ValueOf(&o.float32s[0])) o.float32s = o.float32s[1:] return } // must be enum p.v.Set(reflect.New(t)) p.v.Elem().SetInt(int64(int32(x))) } // Get gets the bits pointed at by p, as a uint32. func word32_Get(p word32) uint32 { elem := p.v.Elem() switch elem.Kind() { case reflect.Int32: return uint32(elem.Int()) case reflect.Uint32: return uint32(elem.Uint()) case reflect.Float32: return math.Float32bits(float32(elem.Float())) } panic("unreachable") } // Word32 returns a reference to a *int32, *uint32, *float32, or *enum field in the struct. func structPointer_Word32(p structPointer, f field) word32 { return word32{structPointer_field(p, f)} } // A word32Val represents a field of type int32, uint32, float32, or enum. // That is, v.Type() is int32, uint32, float32, or enum and v is assignable. type word32Val struct { v reflect.Value } // Set sets *p to x. func word32Val_Set(p word32Val, x uint32) { switch p.v.Type() { case int32Type: p.v.SetInt(int64(x)) return case uint32Type: p.v.SetUint(uint64(x)) return case float32Type: p.v.SetFloat(float64(math.Float32frombits(x))) return } // must be enum p.v.SetInt(int64(int32(x))) } // Get gets the bits pointed at by p, as a uint32. func word32Val_Get(p word32Val) uint32 { elem := p.v switch elem.Kind() { case reflect.Int32: return uint32(elem.Int()) case reflect.Uint32: return uint32(elem.Uint()) case reflect.Float32: return math.Float32bits(float32(elem.Float())) } panic("unreachable") } // Word32Val returns a reference to a int32, uint32, float32, or enum field in the struct. func structPointer_Word32Val(p structPointer, f field) word32Val { return word32Val{structPointer_field(p, f)} } // A word32Slice is a slice of 32-bit values. // That is, v.Type() is []int32, []uint32, []float32, or []enum. type word32Slice struct { v reflect.Value } func (p word32Slice) Append(x uint32) { n, m := p.v.Len(), p.v.Cap() if n < m { p.v.SetLen(n + 1) } else { t := p.v.Type().Elem() p.v.Set(reflect.Append(p.v, reflect.Zero(t))) } elem := p.v.Index(n) switch elem.Kind() { case reflect.Int32: elem.SetInt(int64(int32(x))) case reflect.Uint32: elem.SetUint(uint64(x)) case reflect.Float32: elem.SetFloat(float64(math.Float32frombits(x))) } } func (p word32Slice) Len() int { return p.v.Len() } func (p word32Slice) Index(i int) uint32 { elem := p.v.Index(i) switch elem.Kind() { case reflect.Int32: return uint32(elem.Int()) case reflect.Uint32: return uint32(elem.Uint()) case reflect.Float32: return math.Float32bits(float32(elem.Float())) } panic("unreachable") } // Word32Slice returns a reference to a []int32, []uint32, []float32, or []enum field in the struct. func structPointer_Word32Slice(p structPointer, f field) word32Slice { return word32Slice{structPointer_field(p, f)} } // word64 is like word32 but for 64-bit values. type word64 struct { v reflect.Value } func word64_Set(p word64, o *Buffer, x uint64) { t := p.v.Type().Elem() switch t { case int64Type: if len(o.int64s) == 0 { o.int64s = make([]int64, uint64PoolSize) } o.int64s[0] = int64(x) p.v.Set(reflect.ValueOf(&o.int64s[0])) o.int64s = o.int64s[1:] return case uint64Type: if len(o.uint64s) == 0 { o.uint64s = make([]uint64, uint64PoolSize) } o.uint64s[0] = x p.v.Set(reflect.ValueOf(&o.uint64s[0])) o.uint64s = o.uint64s[1:] return case float64Type: if len(o.float64s) == 0 { o.float64s = make([]float64, uint64PoolSize) } o.float64s[0] = math.Float64frombits(x) p.v.Set(reflect.ValueOf(&o.float64s[0])) o.float64s = o.float64s[1:] return } panic("unreachable") } func word64_IsNil(p word64) bool { return p.v.IsNil() } func word64_Get(p word64) uint64 { elem := p.v.Elem() switch elem.Kind() { case reflect.Int64: return uint64(elem.Int()) case reflect.Uint64: return elem.Uint() case reflect.Float64: return math.Float64bits(elem.Float()) } panic("unreachable") } func structPointer_Word64(p structPointer, f field) word64 { return word64{structPointer_field(p, f)} } // word64Val is like word32Val but for 64-bit values. type word64Val struct { v reflect.Value } func word64Val_Set(p word64Val, o *Buffer, x uint64) { switch p.v.Type() { case int64Type: p.v.SetInt(int64(x)) return case uint64Type: p.v.SetUint(x) return case float64Type: p.v.SetFloat(math.Float64frombits(x)) return } panic("unreachable") } func word64Val_Get(p word64Val) uint64 { elem := p.v switch elem.Kind() { case reflect.Int64: return uint64(elem.Int()) case reflect.Uint64: return elem.Uint() case reflect.Float64: return math.Float64bits(elem.Float()) } panic("unreachable") } func structPointer_Word64Val(p structPointer, f field) word64Val { return word64Val{structPointer_field(p, f)} } type word64Slice struct { v reflect.Value } func (p word64Slice) Append(x uint64) { n, m := p.v.Len(), p.v.Cap() if n < m { p.v.SetLen(n + 1) } else { t := p.v.Type().Elem() p.v.Set(reflect.Append(p.v, reflect.Zero(t))) } elem := p.v.Index(n) switch elem.Kind() { case reflect.Int64: elem.SetInt(int64(int64(x))) case reflect.Uint64: elem.SetUint(uint64(x)) case reflect.Float64: elem.SetFloat(float64(math.Float64frombits(x))) } } func (p word64Slice) Len() int { return p.v.Len() } func (p word64Slice) Index(i int) uint64 { elem := p.v.Index(i) switch elem.Kind() { case reflect.Int64: return uint64(elem.Int()) case reflect.Uint64: return uint64(elem.Uint()) case reflect.Float64: return math.Float64bits(float64(elem.Float())) } panic("unreachable") } func structPointer_Word64Slice(p structPointer, f field) word64Slice { return word64Slice{structPointer_field(p, f)} } golang-gogoprotobuf-0.5/proto/pointer_reflect_gogo.go000066400000000000000000000053261317075173200232440ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. // +build appengine js package proto import ( "reflect" ) func structPointer_FieldPointer(p structPointer, f field) structPointer { panic("not implemented") } func appendStructPointer(base structPointer, f field, typ reflect.Type) structPointer { panic("not implemented") } func structPointer_InterfaceAt(p structPointer, f field, t reflect.Type) interface{} { panic("not implemented") } func structPointer_InterfaceRef(p structPointer, f field, t reflect.Type) interface{} { panic("not implemented") } func structPointer_GetRefStructPointer(p structPointer, f field) structPointer { panic("not implemented") } func structPointer_Add(p structPointer, size field) structPointer { panic("not implemented") } func structPointer_Len(p structPointer, f field) int { panic("not implemented") } func structPointer_GetSliceHeader(p structPointer, f field) *reflect.SliceHeader { panic("not implemented") } func structPointer_Copy(oldptr structPointer, newptr structPointer, size int) { panic("not implemented") } func structPointer_StructRefSlice(p structPointer, f field, size uintptr) *structRefSlice { panic("not implemented") } type structRefSlice struct{} func (v *structRefSlice) Len() int { panic("not implemented") } func (v *structRefSlice) Index(i int) structPointer { panic("not implemented") } golang-gogoprotobuf-0.5/proto/pointer_unsafe.go000066400000000000000000000224251317075173200220650ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2012 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. // +build !appengine,!js // This file contains the implementation of the proto field accesses using package unsafe. package proto import ( "reflect" "unsafe" ) // NOTE: These type_Foo functions would more idiomatically be methods, // but Go does not allow methods on pointer types, and we must preserve // some pointer type for the garbage collector. We use these // funcs with clunky names as our poor approximation to methods. // // An alternative would be // type structPointer struct { p unsafe.Pointer } // but that does not registerize as well. // A structPointer is a pointer to a struct. type structPointer unsafe.Pointer // toStructPointer returns a structPointer equivalent to the given reflect value. func toStructPointer(v reflect.Value) structPointer { return structPointer(unsafe.Pointer(v.Pointer())) } // IsNil reports whether p is nil. func structPointer_IsNil(p structPointer) bool { return p == nil } // Interface returns the struct pointer, assumed to have element type t, // as an interface value. func structPointer_Interface(p structPointer, t reflect.Type) interface{} { return reflect.NewAt(t, unsafe.Pointer(p)).Interface() } // A field identifies a field in a struct, accessible from a structPointer. // In this implementation, a field is identified by its byte offset from the start of the struct. type field uintptr // toField returns a field equivalent to the given reflect field. func toField(f *reflect.StructField) field { return field(f.Offset) } // invalidField is an invalid field identifier. const invalidField = ^field(0) // IsValid reports whether the field identifier is valid. func (f field) IsValid() bool { return f != ^field(0) } // Bytes returns the address of a []byte field in the struct. func structPointer_Bytes(p structPointer, f field) *[]byte { return (*[]byte)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // BytesSlice returns the address of a [][]byte field in the struct. func structPointer_BytesSlice(p structPointer, f field) *[][]byte { return (*[][]byte)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // Bool returns the address of a *bool field in the struct. func structPointer_Bool(p structPointer, f field) **bool { return (**bool)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // BoolVal returns the address of a bool field in the struct. func structPointer_BoolVal(p structPointer, f field) *bool { return (*bool)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // BoolSlice returns the address of a []bool field in the struct. func structPointer_BoolSlice(p structPointer, f field) *[]bool { return (*[]bool)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // String returns the address of a *string field in the struct. func structPointer_String(p structPointer, f field) **string { return (**string)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // StringVal returns the address of a string field in the struct. func structPointer_StringVal(p structPointer, f field) *string { return (*string)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // StringSlice returns the address of a []string field in the struct. func structPointer_StringSlice(p structPointer, f field) *[]string { return (*[]string)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // ExtMap returns the address of an extension map field in the struct. func structPointer_Extensions(p structPointer, f field) *XXX_InternalExtensions { return (*XXX_InternalExtensions)(unsafe.Pointer(uintptr(p) + uintptr(f))) } func structPointer_ExtMap(p structPointer, f field) *map[int32]Extension { return (*map[int32]Extension)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // NewAt returns the reflect.Value for a pointer to a field in the struct. func structPointer_NewAt(p structPointer, f field, typ reflect.Type) reflect.Value { return reflect.NewAt(typ, unsafe.Pointer(uintptr(p)+uintptr(f))) } // SetStructPointer writes a *struct field in the struct. func structPointer_SetStructPointer(p structPointer, f field, q structPointer) { *(*structPointer)(unsafe.Pointer(uintptr(p) + uintptr(f))) = q } // GetStructPointer reads a *struct field in the struct. func structPointer_GetStructPointer(p structPointer, f field) structPointer { return *(*structPointer)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // StructPointerSlice the address of a []*struct field in the struct. func structPointer_StructPointerSlice(p structPointer, f field) *structPointerSlice { return (*structPointerSlice)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // A structPointerSlice represents a slice of pointers to structs (themselves submessages or groups). type structPointerSlice []structPointer func (v *structPointerSlice) Len() int { return len(*v) } func (v *structPointerSlice) Index(i int) structPointer { return (*v)[i] } func (v *structPointerSlice) Append(p structPointer) { *v = append(*v, p) } // A word32 is the address of a "pointer to 32-bit value" field. type word32 **uint32 // IsNil reports whether *v is nil. func word32_IsNil(p word32) bool { return *p == nil } // Set sets *v to point at a newly allocated word set to x. func word32_Set(p word32, o *Buffer, x uint32) { if len(o.uint32s) == 0 { o.uint32s = make([]uint32, uint32PoolSize) } o.uint32s[0] = x *p = &o.uint32s[0] o.uint32s = o.uint32s[1:] } // Get gets the value pointed at by *v. func word32_Get(p word32) uint32 { return **p } // Word32 returns the address of a *int32, *uint32, *float32, or *enum field in the struct. func structPointer_Word32(p structPointer, f field) word32 { return word32((**uint32)(unsafe.Pointer(uintptr(p) + uintptr(f)))) } // A word32Val is the address of a 32-bit value field. type word32Val *uint32 // Set sets *p to x. func word32Val_Set(p word32Val, x uint32) { *p = x } // Get gets the value pointed at by p. func word32Val_Get(p word32Val) uint32 { return *p } // Word32Val returns the address of a *int32, *uint32, *float32, or *enum field in the struct. func structPointer_Word32Val(p structPointer, f field) word32Val { return word32Val((*uint32)(unsafe.Pointer(uintptr(p) + uintptr(f)))) } // A word32Slice is a slice of 32-bit values. type word32Slice []uint32 func (v *word32Slice) Append(x uint32) { *v = append(*v, x) } func (v *word32Slice) Len() int { return len(*v) } func (v *word32Slice) Index(i int) uint32 { return (*v)[i] } // Word32Slice returns the address of a []int32, []uint32, []float32, or []enum field in the struct. func structPointer_Word32Slice(p structPointer, f field) *word32Slice { return (*word32Slice)(unsafe.Pointer(uintptr(p) + uintptr(f))) } // word64 is like word32 but for 64-bit values. type word64 **uint64 func word64_Set(p word64, o *Buffer, x uint64) { if len(o.uint64s) == 0 { o.uint64s = make([]uint64, uint64PoolSize) } o.uint64s[0] = x *p = &o.uint64s[0] o.uint64s = o.uint64s[1:] } func word64_IsNil(p word64) bool { return *p == nil } func word64_Get(p word64) uint64 { return **p } func structPointer_Word64(p structPointer, f field) word64 { return word64((**uint64)(unsafe.Pointer(uintptr(p) + uintptr(f)))) } // word64Val is like word32Val but for 64-bit values. type word64Val *uint64 func word64Val_Set(p word64Val, o *Buffer, x uint64) { *p = x } func word64Val_Get(p word64Val) uint64 { return *p } func structPointer_Word64Val(p structPointer, f field) word64Val { return word64Val((*uint64)(unsafe.Pointer(uintptr(p) + uintptr(f)))) } // word64Slice is like word32Slice but for 64-bit values. type word64Slice []uint64 func (v *word64Slice) Append(x uint64) { *v = append(*v, x) } func (v *word64Slice) Len() int { return len(*v) } func (v *word64Slice) Index(i int) uint64 { return (*v)[i] } func structPointer_Word64Slice(p structPointer, f field) *word64Slice { return (*word64Slice)(unsafe.Pointer(uintptr(p) + uintptr(f))) } golang-gogoprotobuf-0.5/proto/pointer_unsafe_gogo.go000066400000000000000000000106061317075173200230760ustar00rootroot00000000000000// 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. // +build !appengine,!js // This file contains the implementation of the proto field accesses using package unsafe. package proto import ( "reflect" "unsafe" ) func structPointer_InterfaceAt(p structPointer, f field, t reflect.Type) interface{} { point := unsafe.Pointer(uintptr(p) + uintptr(f)) r := reflect.NewAt(t, point) return r.Interface() } func structPointer_InterfaceRef(p structPointer, f field, t reflect.Type) interface{} { point := unsafe.Pointer(uintptr(p) + uintptr(f)) r := reflect.NewAt(t, point) if r.Elem().IsNil() { return nil } return r.Elem().Interface() } func copyUintPtr(oldptr, newptr uintptr, size int) { oldbytes := make([]byte, 0) oldslice := (*reflect.SliceHeader)(unsafe.Pointer(&oldbytes)) oldslice.Data = oldptr oldslice.Len = size oldslice.Cap = size newbytes := make([]byte, 0) newslice := (*reflect.SliceHeader)(unsafe.Pointer(&newbytes)) newslice.Data = newptr newslice.Len = size newslice.Cap = size copy(newbytes, oldbytes) } func structPointer_Copy(oldptr structPointer, newptr structPointer, size int) { copyUintPtr(uintptr(oldptr), uintptr(newptr), size) } func appendStructPointer(base structPointer, f field, typ reflect.Type) structPointer { size := typ.Elem().Size() oldHeader := structPointer_GetSliceHeader(base, f) oldSlice := reflect.NewAt(typ, unsafe.Pointer(oldHeader)).Elem() newLen := oldHeader.Len + 1 newSlice := reflect.MakeSlice(typ, newLen, newLen) reflect.Copy(newSlice, oldSlice) bas := toStructPointer(newSlice) oldHeader.Data = uintptr(bas) oldHeader.Len = newLen oldHeader.Cap = newLen return structPointer(unsafe.Pointer(uintptr(unsafe.Pointer(bas)) + uintptr(uintptr(newLen-1)*size))) } func structPointer_FieldPointer(p structPointer, f field) structPointer { return structPointer(unsafe.Pointer(uintptr(p) + uintptr(f))) } func structPointer_GetRefStructPointer(p structPointer, f field) structPointer { return structPointer((*structPointer)(unsafe.Pointer(uintptr(p) + uintptr(f)))) } func structPointer_GetSliceHeader(p structPointer, f field) *reflect.SliceHeader { return (*reflect.SliceHeader)(unsafe.Pointer(uintptr(p) + uintptr(f))) } func structPointer_Add(p structPointer, size field) structPointer { return structPointer(unsafe.Pointer(uintptr(p) + uintptr(size))) } func structPointer_Len(p structPointer, f field) int { return len(*(*[]interface{})(unsafe.Pointer(structPointer_GetRefStructPointer(p, f)))) } func structPointer_StructRefSlice(p structPointer, f field, size uintptr) *structRefSlice { return &structRefSlice{p: p, f: f, size: size} } // A structRefSlice represents a slice of structs (themselves submessages or groups). type structRefSlice struct { p structPointer f field size uintptr } func (v *structRefSlice) Len() int { return structPointer_Len(v.p, v.f) } func (v *structRefSlice) Index(i int) structPointer { ss := structPointer_GetStructPointer(v.p, v.f) ss1 := structPointer_GetRefStructPointer(ss, 0) return structPointer_Add(ss1, field(uintptr(i)*v.size)) } golang-gogoprotobuf-0.5/proto/properties.go000066400000000000000000000674011317075173200212430ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // 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. package proto /* * Routines for encoding data into the wire format for protocol buffers. */ import ( "fmt" "log" "os" "reflect" "sort" "strconv" "strings" "sync" ) const debug bool = false // Constants that identify the encoding of a value on the wire. const ( WireVarint = 0 WireFixed64 = 1 WireBytes = 2 WireStartGroup = 3 WireEndGroup = 4 WireFixed32 = 5 ) const startSize = 10 // initial slice/string sizes // Encoders are defined in encode.go // An encoder outputs the full representation of a field, including its // tag and encoder type. type encoder func(p *Buffer, prop *Properties, base structPointer) error // A valueEncoder encodes a single integer in a particular encoding. type valueEncoder func(o *Buffer, x uint64) error // Sizers are defined in encode.go // A sizer returns the encoded size of a field, including its tag and encoder // type. type sizer func(prop *Properties, base structPointer) int // A valueSizer returns the encoded size of a single integer in a particular // encoding. type valueSizer func(x uint64) int // Decoders are defined in decode.go // A decoder creates a value from its wire representation. // Unrecognized subelements are saved in unrec. type decoder func(p *Buffer, prop *Properties, base structPointer) error // A valueDecoder decodes a single integer in a particular encoding. type valueDecoder func(o *Buffer) (x uint64, err error) // A oneofMarshaler does the marshaling for all oneof fields in a message. type oneofMarshaler func(Message, *Buffer) error // A oneofUnmarshaler does the unmarshaling for a oneof field in a message. type oneofUnmarshaler func(Message, int, int, *Buffer) (bool, error) // A oneofSizer does the sizing for all oneof fields in a message. type oneofSizer func(Message) int // tagMap is an optimization over map[int]int for typical protocol buffer // use-cases. Encoded protocol buffers are often in tag order with small tag // numbers. type tagMap struct { fastTags []int slowTags map[int]int } // tagMapFastLimit is the upper bound on the tag number that will be stored in // the tagMap slice rather than its map. const tagMapFastLimit = 1024 func (p *tagMap) get(t int) (int, bool) { if t > 0 && t < tagMapFastLimit { if t >= len(p.fastTags) { return 0, false } fi := p.fastTags[t] return fi, fi >= 0 } fi, ok := p.slowTags[t] return fi, ok } func (p *tagMap) put(t int, fi int) { if t > 0 && t < tagMapFastLimit { for len(p.fastTags) < t+1 { p.fastTags = append(p.fastTags, -1) } p.fastTags[t] = fi return } if p.slowTags == nil { p.slowTags = make(map[int]int) } p.slowTags[t] = fi } // StructProperties represents properties for all the fields of a struct. // decoderTags and decoderOrigNames should only be used by the decoder. type StructProperties struct { Prop []*Properties // properties for each field reqCount int // required count decoderTags tagMap // map from proto tag to struct field number decoderOrigNames map[string]int // map from original name to struct field number order []int // list of struct field numbers in tag order unrecField field // field id of the XXX_unrecognized []byte field extendable bool // is this an extendable proto oneofMarshaler oneofMarshaler oneofUnmarshaler oneofUnmarshaler oneofSizer oneofSizer stype reflect.Type // OneofTypes contains information about the oneof fields in this message. // It is keyed by the original name of a field. OneofTypes map[string]*OneofProperties } // OneofProperties represents information about a specific field in a oneof. type OneofProperties struct { Type reflect.Type // pointer to generated struct type for this oneof field Field int // struct field number of the containing oneof in the message Prop *Properties } // Implement the sorting interface so we can sort the fields in tag order, as recommended by the spec. // See encode.go, (*Buffer).enc_struct. func (sp *StructProperties) Len() int { return len(sp.order) } func (sp *StructProperties) Less(i, j int) bool { return sp.Prop[sp.order[i]].Tag < sp.Prop[sp.order[j]].Tag } func (sp *StructProperties) Swap(i, j int) { sp.order[i], sp.order[j] = sp.order[j], sp.order[i] } // Properties represents the protocol-specific behavior of a single struct field. type Properties struct { Name string // name of the field, for error messages OrigName string // original name before protocol compiler (always set) JSONName string // name to use for JSON; determined by protoc Wire string WireType int Tag int Required bool Optional bool Repeated bool Packed bool // relevant for repeated primitives only Enum string // set for enum types only proto3 bool // whether this is known to be a proto3 field; set for []byte only oneof bool // whether this is a oneof field Default string // default value HasDefault bool // whether an explicit default was provided CustomType string CastType string StdTime bool StdDuration bool enc encoder valEnc valueEncoder // set for bool and numeric types only field field tagcode []byte // encoding of EncodeVarint((Tag<<3)|WireType) tagbuf [8]byte stype reflect.Type // set for struct types only sstype reflect.Type // set for slices of structs types only ctype reflect.Type // set for custom types only sprop *StructProperties // set for struct types only isMarshaler bool isUnmarshaler bool mtype reflect.Type // set for map types only mkeyprop *Properties // set for map types only mvalprop *Properties // set for map types only size sizer valSize valueSizer // set for bool and numeric types only dec decoder valDec valueDecoder // set for bool and numeric types only // If this is a packable field, this will be the decoder for the packed version of the field. packedDec decoder } // String formats the properties in the protobuf struct field tag style. func (p *Properties) String() string { s := p.Wire s = "," s += strconv.Itoa(p.Tag) if p.Required { s += ",req" } if p.Optional { s += ",opt" } if p.Repeated { s += ",rep" } if p.Packed { s += ",packed" } s += ",name=" + p.OrigName if p.JSONName != p.OrigName { s += ",json=" + p.JSONName } if p.proto3 { s += ",proto3" } if p.oneof { s += ",oneof" } if len(p.Enum) > 0 { s += ",enum=" + p.Enum } if p.HasDefault { s += ",def=" + p.Default } return s } // Parse populates p by parsing a string in the protobuf struct field tag style. func (p *Properties) Parse(s string) { // "bytes,49,opt,name=foo,def=hello!" fields := strings.Split(s, ",") // breaks def=, but handled below. if len(fields) < 2 { fmt.Fprintf(os.Stderr, "proto: tag has too few fields: %q\n", s) return } p.Wire = fields[0] switch p.Wire { case "varint": p.WireType = WireVarint p.valEnc = (*Buffer).EncodeVarint p.valDec = (*Buffer).DecodeVarint p.valSize = sizeVarint case "fixed32": p.WireType = WireFixed32 p.valEnc = (*Buffer).EncodeFixed32 p.valDec = (*Buffer).DecodeFixed32 p.valSize = sizeFixed32 case "fixed64": p.WireType = WireFixed64 p.valEnc = (*Buffer).EncodeFixed64 p.valDec = (*Buffer).DecodeFixed64 p.valSize = sizeFixed64 case "zigzag32": p.WireType = WireVarint p.valEnc = (*Buffer).EncodeZigzag32 p.valDec = (*Buffer).DecodeZigzag32 p.valSize = sizeZigzag32 case "zigzag64": p.WireType = WireVarint p.valEnc = (*Buffer).EncodeZigzag64 p.valDec = (*Buffer).DecodeZigzag64 p.valSize = sizeZigzag64 case "bytes", "group": p.WireType = WireBytes // no numeric converter for non-numeric types default: fmt.Fprintf(os.Stderr, "proto: tag has unknown wire type: %q\n", s) return } var err error p.Tag, err = strconv.Atoi(fields[1]) if err != nil { return } for i := 2; i < len(fields); i++ { f := fields[i] switch { case f == "req": p.Required = true case f == "opt": p.Optional = true case f == "rep": p.Repeated = true case f == "packed": p.Packed = true case strings.HasPrefix(f, "name="): p.OrigName = f[5:] case strings.HasPrefix(f, "json="): p.JSONName = f[5:] case strings.HasPrefix(f, "enum="): p.Enum = f[5:] case f == "proto3": p.proto3 = true case f == "oneof": p.oneof = true case strings.HasPrefix(f, "def="): p.HasDefault = true p.Default = f[4:] // rest of string if i+1 < len(fields) { // Commas aren't escaped, and def is always last. p.Default += "," + strings.Join(fields[i+1:], ",") break } case strings.HasPrefix(f, "embedded="): p.OrigName = strings.Split(f, "=")[1] case strings.HasPrefix(f, "customtype="): p.CustomType = strings.Split(f, "=")[1] case strings.HasPrefix(f, "casttype="): p.CastType = strings.Split(f, "=")[1] case f == "stdtime": p.StdTime = true case f == "stdduration": p.StdDuration = true } } } func logNoSliceEnc(t1, t2 reflect.Type) { fmt.Fprintf(os.Stderr, "proto: no slice oenc for %T = []%T\n", t1, t2) } var protoMessageType = reflect.TypeOf((*Message)(nil)).Elem() // Initialize the fields for encoding and decoding. func (p *Properties) setEncAndDec(typ reflect.Type, f *reflect.StructField, lockGetProp bool) { p.enc = nil p.dec = nil p.size = nil isMap := typ.Kind() == reflect.Map if len(p.CustomType) > 0 && !isMap { p.setCustomEncAndDec(typ) p.setTag(lockGetProp) return } if p.StdTime && !isMap { p.setTimeEncAndDec(typ) p.setTag(lockGetProp) return } if p.StdDuration && !isMap { p.setDurationEncAndDec(typ) p.setTag(lockGetProp) return } switch t1 := typ; t1.Kind() { default: fmt.Fprintf(os.Stderr, "proto: no coders for %v\n", t1) // proto3 scalar types case reflect.Bool: if p.proto3 { p.enc = (*Buffer).enc_proto3_bool p.dec = (*Buffer).dec_proto3_bool p.size = size_proto3_bool } else { p.enc = (*Buffer).enc_ref_bool p.dec = (*Buffer).dec_proto3_bool p.size = size_ref_bool } case reflect.Int32: if p.proto3 { p.enc = (*Buffer).enc_proto3_int32 p.dec = (*Buffer).dec_proto3_int32 p.size = size_proto3_int32 } else { p.enc = (*Buffer).enc_ref_int32 p.dec = (*Buffer).dec_proto3_int32 p.size = size_ref_int32 } case reflect.Uint32: if p.proto3 { p.enc = (*Buffer).enc_proto3_uint32 p.dec = (*Buffer).dec_proto3_int32 // can reuse p.size = size_proto3_uint32 } else { p.enc = (*Buffer).enc_ref_uint32 p.dec = (*Buffer).dec_proto3_int32 // can reuse p.size = size_ref_uint32 } case reflect.Int64, reflect.Uint64: if p.proto3 { p.enc = (*Buffer).enc_proto3_int64 p.dec = (*Buffer).dec_proto3_int64 p.size = size_proto3_int64 } else { p.enc = (*Buffer).enc_ref_int64 p.dec = (*Buffer).dec_proto3_int64 p.size = size_ref_int64 } case reflect.Float32: if p.proto3 { p.enc = (*Buffer).enc_proto3_uint32 // can just treat them as bits p.dec = (*Buffer).dec_proto3_int32 p.size = size_proto3_uint32 } else { p.enc = (*Buffer).enc_ref_uint32 // can just treat them as bits p.dec = (*Buffer).dec_proto3_int32 p.size = size_ref_uint32 } case reflect.Float64: if p.proto3 { p.enc = (*Buffer).enc_proto3_int64 // can just treat them as bits p.dec = (*Buffer).dec_proto3_int64 p.size = size_proto3_int64 } else { p.enc = (*Buffer).enc_ref_int64 // can just treat them as bits p.dec = (*Buffer).dec_proto3_int64 p.size = size_ref_int64 } case reflect.String: if p.proto3 { p.enc = (*Buffer).enc_proto3_string p.dec = (*Buffer).dec_proto3_string p.size = size_proto3_string } else { p.enc = (*Buffer).enc_ref_string p.dec = (*Buffer).dec_proto3_string p.size = size_ref_string } case reflect.Struct: p.stype = typ p.isMarshaler = isMarshaler(typ) p.isUnmarshaler = isUnmarshaler(typ) if p.Wire == "bytes" { p.enc = (*Buffer).enc_ref_struct_message p.dec = (*Buffer).dec_ref_struct_message p.size = size_ref_struct_message } else { fmt.Fprintf(os.Stderr, "proto: no coders for struct %T\n", typ) } case reflect.Ptr: switch t2 := t1.Elem(); t2.Kind() { default: fmt.Fprintf(os.Stderr, "proto: no encoder function for %v -> %v\n", t1, t2) break case reflect.Bool: p.enc = (*Buffer).enc_bool p.dec = (*Buffer).dec_bool p.size = size_bool case reflect.Int32: p.enc = (*Buffer).enc_int32 p.dec = (*Buffer).dec_int32 p.size = size_int32 case reflect.Uint32: p.enc = (*Buffer).enc_uint32 p.dec = (*Buffer).dec_int32 // can reuse p.size = size_uint32 case reflect.Int64, reflect.Uint64: p.enc = (*Buffer).enc_int64 p.dec = (*Buffer).dec_int64 p.size = size_int64 case reflect.Float32: p.enc = (*Buffer).enc_uint32 // can just treat them as bits p.dec = (*Buffer).dec_int32 p.size = size_uint32 case reflect.Float64: p.enc = (*Buffer).enc_int64 // can just treat them as bits p.dec = (*Buffer).dec_int64 p.size = size_int64 case reflect.String: p.enc = (*Buffer).enc_string p.dec = (*Buffer).dec_string p.size = size_string case reflect.Struct: p.stype = t1.Elem() p.isMarshaler = isMarshaler(t1) p.isUnmarshaler = isUnmarshaler(t1) if p.Wire == "bytes" { p.enc = (*Buffer).enc_struct_message p.dec = (*Buffer).dec_struct_message p.size = size_struct_message } else { p.enc = (*Buffer).enc_struct_group p.dec = (*Buffer).dec_struct_group p.size = size_struct_group } } case reflect.Slice: switch t2 := t1.Elem(); t2.Kind() { default: logNoSliceEnc(t1, t2) break case reflect.Bool: if p.Packed { p.enc = (*Buffer).enc_slice_packed_bool p.size = size_slice_packed_bool } else { p.enc = (*Buffer).enc_slice_bool p.size = size_slice_bool } p.dec = (*Buffer).dec_slice_bool p.packedDec = (*Buffer).dec_slice_packed_bool case reflect.Int32: if p.Packed { p.enc = (*Buffer).enc_slice_packed_int32 p.size = size_slice_packed_int32 } else { p.enc = (*Buffer).enc_slice_int32 p.size = size_slice_int32 } p.dec = (*Buffer).dec_slice_int32 p.packedDec = (*Buffer).dec_slice_packed_int32 case reflect.Uint32: if p.Packed { p.enc = (*Buffer).enc_slice_packed_uint32 p.size = size_slice_packed_uint32 } else { p.enc = (*Buffer).enc_slice_uint32 p.size = size_slice_uint32 } p.dec = (*Buffer).dec_slice_int32 p.packedDec = (*Buffer).dec_slice_packed_int32 case reflect.Int64, reflect.Uint64: if p.Packed { p.enc = (*Buffer).enc_slice_packed_int64 p.size = size_slice_packed_int64 } else { p.enc = (*Buffer).enc_slice_int64 p.size = size_slice_int64 } p.dec = (*Buffer).dec_slice_int64 p.packedDec = (*Buffer).dec_slice_packed_int64 case reflect.Uint8: p.dec = (*Buffer).dec_slice_byte if p.proto3 { p.enc = (*Buffer).enc_proto3_slice_byte p.size = size_proto3_slice_byte } else { p.enc = (*Buffer).enc_slice_byte p.size = size_slice_byte } case reflect.Float32, reflect.Float64: switch t2.Bits() { case 32: // can just treat them as bits if p.Packed { p.enc = (*Buffer).enc_slice_packed_uint32 p.size = size_slice_packed_uint32 } else { p.enc = (*Buffer).enc_slice_uint32 p.size = size_slice_uint32 } p.dec = (*Buffer).dec_slice_int32 p.packedDec = (*Buffer).dec_slice_packed_int32 case 64: // can just treat them as bits if p.Packed { p.enc = (*Buffer).enc_slice_packed_int64 p.size = size_slice_packed_int64 } else { p.enc = (*Buffer).enc_slice_int64 p.size = size_slice_int64 } p.dec = (*Buffer).dec_slice_int64 p.packedDec = (*Buffer).dec_slice_packed_int64 default: logNoSliceEnc(t1, t2) break } case reflect.String: p.enc = (*Buffer).enc_slice_string p.dec = (*Buffer).dec_slice_string p.size = size_slice_string case reflect.Ptr: switch t3 := t2.Elem(); t3.Kind() { default: fmt.Fprintf(os.Stderr, "proto: no ptr oenc for %T -> %T -> %T\n", t1, t2, t3) break case reflect.Struct: p.stype = t2.Elem() p.isMarshaler = isMarshaler(t2) p.isUnmarshaler = isUnmarshaler(t2) if p.Wire == "bytes" { p.enc = (*Buffer).enc_slice_struct_message p.dec = (*Buffer).dec_slice_struct_message p.size = size_slice_struct_message } else { p.enc = (*Buffer).enc_slice_struct_group p.dec = (*Buffer).dec_slice_struct_group p.size = size_slice_struct_group } } case reflect.Slice: switch t2.Elem().Kind() { default: fmt.Fprintf(os.Stderr, "proto: no slice elem oenc for %T -> %T -> %T\n", t1, t2, t2.Elem()) break case reflect.Uint8: p.enc = (*Buffer).enc_slice_slice_byte p.dec = (*Buffer).dec_slice_slice_byte p.size = size_slice_slice_byte } case reflect.Struct: p.setSliceOfNonPointerStructs(t1) } case reflect.Map: p.enc = (*Buffer).enc_new_map p.dec = (*Buffer).dec_new_map p.size = size_new_map p.mtype = t1 p.mkeyprop = &Properties{} p.mkeyprop.init(reflect.PtrTo(p.mtype.Key()), "Key", f.Tag.Get("protobuf_key"), nil, lockGetProp) p.mvalprop = &Properties{} vtype := p.mtype.Elem() if vtype.Kind() != reflect.Ptr && vtype.Kind() != reflect.Slice { // The value type is not a message (*T) or bytes ([]byte), // so we need encoders for the pointer to this type. vtype = reflect.PtrTo(vtype) } p.mvalprop.CustomType = p.CustomType p.mvalprop.StdDuration = p.StdDuration p.mvalprop.StdTime = p.StdTime p.mvalprop.init(vtype, "Value", f.Tag.Get("protobuf_val"), nil, lockGetProp) } p.setTag(lockGetProp) } func (p *Properties) setTag(lockGetProp bool) { // precalculate tag code wire := p.WireType if p.Packed { wire = WireBytes } x := uint32(p.Tag)<<3 | uint32(wire) i := 0 for i = 0; x > 127; i++ { p.tagbuf[i] = 0x80 | uint8(x&0x7F) x >>= 7 } p.tagbuf[i] = uint8(x) p.tagcode = p.tagbuf[0 : i+1] if p.stype != nil { if lockGetProp { p.sprop = GetProperties(p.stype) } else { p.sprop = getPropertiesLocked(p.stype) } } } var ( marshalerType = reflect.TypeOf((*Marshaler)(nil)).Elem() unmarshalerType = reflect.TypeOf((*Unmarshaler)(nil)).Elem() ) // isMarshaler reports whether type t implements Marshaler. func isMarshaler(t reflect.Type) bool { return t.Implements(marshalerType) } // isUnmarshaler reports whether type t implements Unmarshaler. func isUnmarshaler(t reflect.Type) bool { return t.Implements(unmarshalerType) } // Init populates the properties from a protocol buffer struct tag. func (p *Properties) Init(typ reflect.Type, name, tag string, f *reflect.StructField) { p.init(typ, name, tag, f, true) } func (p *Properties) init(typ reflect.Type, name, tag string, f *reflect.StructField, lockGetProp bool) { // "bytes,49,opt,def=hello!" p.Name = name p.OrigName = name if f != nil { p.field = toField(f) } if tag == "" { return } p.Parse(tag) p.setEncAndDec(typ, f, lockGetProp) } var ( propertiesMu sync.RWMutex propertiesMap = make(map[reflect.Type]*StructProperties) ) // GetProperties returns the list of properties for the type represented by t. // t must represent a generated struct type of a protocol message. func GetProperties(t reflect.Type) *StructProperties { if t.Kind() != reflect.Struct { panic("proto: type must have kind struct") } // Most calls to GetProperties in a long-running program will be // retrieving details for types we have seen before. propertiesMu.RLock() sprop, ok := propertiesMap[t] propertiesMu.RUnlock() if ok { if collectStats { stats.Chit++ } return sprop } propertiesMu.Lock() sprop = getPropertiesLocked(t) propertiesMu.Unlock() return sprop } // getPropertiesLocked requires that propertiesMu is held. func getPropertiesLocked(t reflect.Type) *StructProperties { if prop, ok := propertiesMap[t]; ok { if collectStats { stats.Chit++ } return prop } if collectStats { stats.Cmiss++ } prop := new(StructProperties) // in case of recursive protos, fill this in now. propertiesMap[t] = prop // build properties prop.extendable = reflect.PtrTo(t).Implements(extendableProtoType) || reflect.PtrTo(t).Implements(extendableProtoV1Type) || reflect.PtrTo(t).Implements(extendableBytesType) prop.unrecField = invalidField prop.Prop = make([]*Properties, t.NumField()) prop.order = make([]int, t.NumField()) isOneofMessage := false for i := 0; i < t.NumField(); i++ { f := t.Field(i) p := new(Properties) name := f.Name p.init(f.Type, name, f.Tag.Get("protobuf"), &f, false) if f.Name == "XXX_InternalExtensions" { // special case p.enc = (*Buffer).enc_exts p.dec = nil // not needed p.size = size_exts } else if f.Name == "XXX_extensions" { // special case if len(f.Tag.Get("protobuf")) > 0 { p.enc = (*Buffer).enc_ext_slice_byte p.dec = nil // not needed p.size = size_ext_slice_byte } else { p.enc = (*Buffer).enc_map p.dec = nil // not needed p.size = size_map } } else if f.Name == "XXX_unrecognized" { // special case prop.unrecField = toField(&f) } oneof := f.Tag.Get("protobuf_oneof") // special case if oneof != "" { isOneofMessage = true // Oneof fields don't use the traditional protobuf tag. p.OrigName = oneof } prop.Prop[i] = p prop.order[i] = i if debug { print(i, " ", f.Name, " ", t.String(), " ") if p.Tag > 0 { print(p.String()) } print("\n") } if p.enc == nil && !strings.HasPrefix(f.Name, "XXX_") && oneof == "" { fmt.Fprintln(os.Stderr, "proto: no encoder for", f.Name, f.Type.String(), "[GetProperties]") } } // Re-order prop.order. sort.Sort(prop) type oneofMessage interface { XXX_OneofFuncs() (func(Message, *Buffer) error, func(Message, int, int, *Buffer) (bool, error), func(Message) int, []interface{}) } if om, ok := reflect.Zero(reflect.PtrTo(t)).Interface().(oneofMessage); isOneofMessage && ok { var oots []interface{} prop.oneofMarshaler, prop.oneofUnmarshaler, prop.oneofSizer, oots = om.XXX_OneofFuncs() prop.stype = t // Interpret oneof metadata. prop.OneofTypes = make(map[string]*OneofProperties) for _, oot := range oots { oop := &OneofProperties{ Type: reflect.ValueOf(oot).Type(), // *T Prop: new(Properties), } sft := oop.Type.Elem().Field(0) oop.Prop.Name = sft.Name oop.Prop.Parse(sft.Tag.Get("protobuf")) // There will be exactly one interface field that // this new value is assignable to. for i := 0; i < t.NumField(); i++ { f := t.Field(i) if f.Type.Kind() != reflect.Interface { continue } if !oop.Type.AssignableTo(f.Type) { continue } oop.Field = i break } prop.OneofTypes[oop.Prop.OrigName] = oop } } // build required counts // build tags reqCount := 0 prop.decoderOrigNames = make(map[string]int) for i, p := range prop.Prop { if strings.HasPrefix(p.Name, "XXX_") { // Internal fields should not appear in tags/origNames maps. // They are handled specially when encoding and decoding. continue } if p.Required { reqCount++ } prop.decoderTags.put(p.Tag, i) prop.decoderOrigNames[p.OrigName] = i } prop.reqCount = reqCount return prop } // Return the Properties object for the x[0]'th field of the structure. func propByIndex(t reflect.Type, x []int) *Properties { if len(x) != 1 { fmt.Fprintf(os.Stderr, "proto: field index dimension %d (not 1) for type %s\n", len(x), t) return nil } prop := GetProperties(t) return prop.Prop[x[0]] } // Get the address and type of a pointer to a struct from an interface. func getbase(pb Message) (t reflect.Type, b structPointer, err error) { if pb == nil { err = ErrNil return } // get the reflect type of the pointer to the struct. t = reflect.TypeOf(pb) // get the address of the struct. value := reflect.ValueOf(pb) b = toStructPointer(value) return } // A global registry of enum types. // The generated code will register the generated maps by calling RegisterEnum. var enumValueMaps = make(map[string]map[string]int32) var enumStringMaps = make(map[string]map[int32]string) // RegisterEnum is called from the generated code to install the enum descriptor // maps into the global table to aid parsing text format protocol buffers. func RegisterEnum(typeName string, unusedNameMap map[int32]string, valueMap map[string]int32) { if _, ok := enumValueMaps[typeName]; ok { panic("proto: duplicate enum registered: " + typeName) } enumValueMaps[typeName] = valueMap if _, ok := enumStringMaps[typeName]; ok { panic("proto: duplicate enum registered: " + typeName) } enumStringMaps[typeName] = unusedNameMap } // EnumValueMap returns the mapping from names to integers of the // enum type enumType, or a nil if not found. func EnumValueMap(enumType string) map[string]int32 { return enumValueMaps[enumType] } // A registry of all linked message types. // The string is a fully-qualified proto name ("pkg.Message"). var ( protoTypes = make(map[string]reflect.Type) revProtoTypes = make(map[reflect.Type]string) ) // RegisterType is called from generated code and maps from the fully qualified // proto name to the type (pointer to struct) of the protocol buffer. func RegisterType(x Message, name string) { if _, ok := protoTypes[name]; ok { // TODO: Some day, make this a panic. log.Printf("proto: duplicate proto type registered: %s", name) return } t := reflect.TypeOf(x) protoTypes[name] = t revProtoTypes[t] = name } // MessageName returns the fully-qualified proto name for the given message type. func MessageName(x Message) string { type xname interface { XXX_MessageName() string } if m, ok := x.(xname); ok { return m.XXX_MessageName() } return revProtoTypes[reflect.TypeOf(x)] } // MessageType returns the message type (pointer to struct) for a named message. func MessageType(name string) reflect.Type { return protoTypes[name] } // A registry of all linked proto files. var ( protoFiles = make(map[string][]byte) // file name => fileDescriptor ) // RegisterFile is called from generated code and maps from the // full file name of a .proto file to its compressed FileDescriptorProto. func RegisterFile(filename string, fileDescriptor []byte) { protoFiles[filename] = fileDescriptor } // FileDescriptor returns the compressed FileDescriptorProto for a .proto file. func FileDescriptor(filename string) []byte { return protoFiles[filename] } golang-gogoprotobuf-0.5/proto/properties_gogo.go000066400000000000000000000070141317075173200222500ustar00rootroot00000000000000// 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. package proto import ( "fmt" "os" "reflect" ) func (p *Properties) setCustomEncAndDec(typ reflect.Type) { p.ctype = typ if p.Repeated { p.enc = (*Buffer).enc_custom_slice_bytes p.dec = (*Buffer).dec_custom_slice_bytes p.size = size_custom_slice_bytes } else if typ.Kind() == reflect.Ptr { p.enc = (*Buffer).enc_custom_bytes p.dec = (*Buffer).dec_custom_bytes p.size = size_custom_bytes } else { p.enc = (*Buffer).enc_custom_ref_bytes p.dec = (*Buffer).dec_custom_ref_bytes p.size = size_custom_ref_bytes } } func (p *Properties) setDurationEncAndDec(typ reflect.Type) { if p.Repeated { if typ.Elem().Kind() == reflect.Ptr { p.enc = (*Buffer).enc_slice_duration p.dec = (*Buffer).dec_slice_duration p.size = size_slice_duration } else { p.enc = (*Buffer).enc_slice_ref_duration p.dec = (*Buffer).dec_slice_ref_duration p.size = size_slice_ref_duration } } else if typ.Kind() == reflect.Ptr { p.enc = (*Buffer).enc_duration p.dec = (*Buffer).dec_duration p.size = size_duration } else { p.enc = (*Buffer).enc_ref_duration p.dec = (*Buffer).dec_ref_duration p.size = size_ref_duration } } func (p *Properties) setTimeEncAndDec(typ reflect.Type) { if p.Repeated { if typ.Elem().Kind() == reflect.Ptr { p.enc = (*Buffer).enc_slice_time p.dec = (*Buffer).dec_slice_time p.size = size_slice_time } else { p.enc = (*Buffer).enc_slice_ref_time p.dec = (*Buffer).dec_slice_ref_time p.size = size_slice_ref_time } } else if typ.Kind() == reflect.Ptr { p.enc = (*Buffer).enc_time p.dec = (*Buffer).dec_time p.size = size_time } else { p.enc = (*Buffer).enc_ref_time p.dec = (*Buffer).dec_ref_time p.size = size_ref_time } } func (p *Properties) setSliceOfNonPointerStructs(typ reflect.Type) { t2 := typ.Elem() p.sstype = typ p.stype = t2 p.isMarshaler = isMarshaler(t2) p.isUnmarshaler = isUnmarshaler(t2) p.enc = (*Buffer).enc_slice_ref_struct_message p.dec = (*Buffer).dec_slice_ref_struct_message p.size = size_slice_ref_struct_message if p.Wire != "bytes" { fmt.Fprintf(os.Stderr, "proto: no ptr oenc for %T -> %T \n", typ, t2) } } golang-gogoprotobuf-0.5/proto/proto3_proto/000077500000000000000000000000001317075173200211615ustar00rootroot00000000000000golang-gogoprotobuf-0.5/proto/proto3_proto/proto3.pb.go000066400000000000000000000324011317075173200233360ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto3_proto/proto3.proto /* Package proto3_proto is a generated protocol buffer package. It is generated from these files: proto3_proto/proto3.proto It has these top-level messages: Message Nested MessageWithMap IntMap IntMaps */ package proto3_proto import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import google_protobuf "github.com/gogo/protobuf/types" import testdata "github.com/gogo/protobuf/proto/testdata" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Message_Humour int32 const ( Message_UNKNOWN Message_Humour = 0 Message_PUNS Message_Humour = 1 Message_SLAPSTICK Message_Humour = 2 Message_BILL_BAILEY Message_Humour = 3 ) var Message_Humour_name = map[int32]string{ 0: "UNKNOWN", 1: "PUNS", 2: "SLAPSTICK", 3: "BILL_BAILEY", } var Message_Humour_value = map[string]int32{ "UNKNOWN": 0, "PUNS": 1, "SLAPSTICK": 2, "BILL_BAILEY": 3, } func (x Message_Humour) String() string { return proto.EnumName(Message_Humour_name, int32(x)) } func (Message_Humour) EnumDescriptor() ([]byte, []int) { return fileDescriptorProto3, []int{0, 0} } type Message struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Hilarity Message_Humour `protobuf:"varint,2,opt,name=hilarity,proto3,enum=proto3_proto.Message_Humour" json:"hilarity,omitempty"` HeightInCm uint32 `protobuf:"varint,3,opt,name=height_in_cm,json=heightInCm,proto3" json:"height_in_cm,omitempty"` Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` ResultCount int64 `protobuf:"varint,7,opt,name=result_count,json=resultCount,proto3" json:"result_count,omitempty"` TrueScotsman bool `protobuf:"varint,8,opt,name=true_scotsman,json=trueScotsman,proto3" json:"true_scotsman,omitempty"` Score float32 `protobuf:"fixed32,9,opt,name=score,proto3" json:"score,omitempty"` Key []uint64 `protobuf:"varint,5,rep,packed,name=key" json:"key,omitempty"` ShortKey []int32 `protobuf:"varint,19,rep,packed,name=short_key,json=shortKey" json:"short_key,omitempty"` Nested *Nested `protobuf:"bytes,6,opt,name=nested" json:"nested,omitempty"` RFunny []Message_Humour `protobuf:"varint,16,rep,packed,name=r_funny,json=rFunny,enum=proto3_proto.Message_Humour" json:"r_funny,omitempty"` Terrain map[string]*Nested `protobuf:"bytes,10,rep,name=terrain" json:"terrain,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Proto2Field *testdata.SubDefaults `protobuf:"bytes,11,opt,name=proto2_field,json=proto2Field" json:"proto2_field,omitempty"` Proto2Value map[string]*testdata.SubDefaults `protobuf:"bytes,13,rep,name=proto2_value,json=proto2Value" json:"proto2_value,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Anything *google_protobuf.Any `protobuf:"bytes,14,opt,name=anything" json:"anything,omitempty"` ManyThings []*google_protobuf.Any `protobuf:"bytes,15,rep,name=many_things,json=manyThings" json:"many_things,omitempty"` Submessage *Message `protobuf:"bytes,17,opt,name=submessage" json:"submessage,omitempty"` Children []*Message `protobuf:"bytes,18,rep,name=children" json:"children,omitempty"` } func (m *Message) Reset() { *m = Message{} } func (m *Message) String() string { return proto.CompactTextString(m) } func (*Message) ProtoMessage() {} func (*Message) Descriptor() ([]byte, []int) { return fileDescriptorProto3, []int{0} } func (m *Message) GetName() string { if m != nil { return m.Name } return "" } func (m *Message) GetHilarity() Message_Humour { if m != nil { return m.Hilarity } return Message_UNKNOWN } func (m *Message) GetHeightInCm() uint32 { if m != nil { return m.HeightInCm } return 0 } func (m *Message) GetData() []byte { if m != nil { return m.Data } return nil } func (m *Message) GetResultCount() int64 { if m != nil { return m.ResultCount } return 0 } func (m *Message) GetTrueScotsman() bool { if m != nil { return m.TrueScotsman } return false } func (m *Message) GetScore() float32 { if m != nil { return m.Score } return 0 } func (m *Message) GetKey() []uint64 { if m != nil { return m.Key } return nil } func (m *Message) GetShortKey() []int32 { if m != nil { return m.ShortKey } return nil } func (m *Message) GetNested() *Nested { if m != nil { return m.Nested } return nil } func (m *Message) GetRFunny() []Message_Humour { if m != nil { return m.RFunny } return nil } func (m *Message) GetTerrain() map[string]*Nested { if m != nil { return m.Terrain } return nil } func (m *Message) GetProto2Field() *testdata.SubDefaults { if m != nil { return m.Proto2Field } return nil } func (m *Message) GetProto2Value() map[string]*testdata.SubDefaults { if m != nil { return m.Proto2Value } return nil } func (m *Message) GetAnything() *google_protobuf.Any { if m != nil { return m.Anything } return nil } func (m *Message) GetManyThings() []*google_protobuf.Any { if m != nil { return m.ManyThings } return nil } func (m *Message) GetSubmessage() *Message { if m != nil { return m.Submessage } return nil } func (m *Message) GetChildren() []*Message { if m != nil { return m.Children } return nil } type Nested struct { Bunny string `protobuf:"bytes,1,opt,name=bunny,proto3" json:"bunny,omitempty"` Cute bool `protobuf:"varint,2,opt,name=cute,proto3" json:"cute,omitempty"` } func (m *Nested) Reset() { *m = Nested{} } func (m *Nested) String() string { return proto.CompactTextString(m) } func (*Nested) ProtoMessage() {} func (*Nested) Descriptor() ([]byte, []int) { return fileDescriptorProto3, []int{1} } func (m *Nested) GetBunny() string { if m != nil { return m.Bunny } return "" } func (m *Nested) GetCute() bool { if m != nil { return m.Cute } return false } type MessageWithMap struct { ByteMapping map[bool][]byte `protobuf:"bytes,1,rep,name=byte_mapping,json=byteMapping" json:"byte_mapping,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MessageWithMap) Reset() { *m = MessageWithMap{} } func (m *MessageWithMap) String() string { return proto.CompactTextString(m) } func (*MessageWithMap) ProtoMessage() {} func (*MessageWithMap) Descriptor() ([]byte, []int) { return fileDescriptorProto3, []int{2} } func (m *MessageWithMap) GetByteMapping() map[bool][]byte { if m != nil { return m.ByteMapping } return nil } type IntMap struct { Rtt map[int32]int32 `protobuf:"bytes,1,rep,name=rtt" json:"rtt,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` } func (m *IntMap) Reset() { *m = IntMap{} } func (m *IntMap) String() string { return proto.CompactTextString(m) } func (*IntMap) ProtoMessage() {} func (*IntMap) Descriptor() ([]byte, []int) { return fileDescriptorProto3, []int{3} } func (m *IntMap) GetRtt() map[int32]int32 { if m != nil { return m.Rtt } return nil } type IntMaps struct { Maps []*IntMap `protobuf:"bytes,1,rep,name=maps" json:"maps,omitempty"` } func (m *IntMaps) Reset() { *m = IntMaps{} } func (m *IntMaps) String() string { return proto.CompactTextString(m) } func (*IntMaps) ProtoMessage() {} func (*IntMaps) Descriptor() ([]byte, []int) { return fileDescriptorProto3, []int{4} } func (m *IntMaps) GetMaps() []*IntMap { if m != nil { return m.Maps } return nil } func init() { proto.RegisterType((*Message)(nil), "proto3_proto.Message") proto.RegisterType((*Nested)(nil), "proto3_proto.Nested") proto.RegisterType((*MessageWithMap)(nil), "proto3_proto.MessageWithMap") proto.RegisterType((*IntMap)(nil), "proto3_proto.IntMap") proto.RegisterType((*IntMaps)(nil), "proto3_proto.IntMaps") proto.RegisterEnum("proto3_proto.Message_Humour", Message_Humour_name, Message_Humour_value) } func init() { proto.RegisterFile("proto3_proto/proto3.proto", fileDescriptorProto3) } var fileDescriptorProto3 = []byte{ // 733 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0x6d, 0x6f, 0xf3, 0x34, 0x14, 0x25, 0x4d, 0x5f, 0xd2, 0x9b, 0x74, 0x0b, 0x5e, 0x91, 0xbc, 0x02, 0x52, 0x28, 0x12, 0x8a, 0x78, 0x49, 0xa1, 0xd3, 0xd0, 0x84, 0x10, 0x68, 0x1b, 0x9b, 0xa8, 0xd6, 0x95, 0xca, 0xdd, 0x98, 0xf8, 0x14, 0xa5, 0xad, 0xdb, 0x46, 0x34, 0x4e, 0x49, 0x1c, 0xa4, 0xfc, 0x1d, 0xfe, 0x28, 0x8f, 0x6c, 0xa7, 0x5d, 0x36, 0x65, 0xcf, 0xf3, 0x29, 0xf6, 0xf1, 0xb9, 0xf7, 0x9c, 0x1c, 0x5f, 0xc3, 0xe9, 0x2e, 0x89, 0x79, 0x7c, 0xe6, 0xcb, 0xcf, 0x40, 0x6d, 0x3c, 0xf9, 0x41, 0x56, 0xf9, 0xa8, 0x77, 0xba, 0x8e, 0xe3, 0xf5, 0x96, 0x2a, 0xca, 0x3c, 0x5b, 0x0d, 0x02, 0x96, 0x2b, 0x62, 0xef, 0x84, 0xd3, 0x94, 0x2f, 0x03, 0x1e, 0x0c, 0xc4, 0x42, 0x81, 0xfd, 0xff, 0x5b, 0xd0, 0xba, 0xa7, 0x69, 0x1a, 0xac, 0x29, 0x42, 0x50, 0x67, 0x41, 0x44, 0xb1, 0xe6, 0x68, 0x6e, 0x9b, 0xc8, 0x35, 0xba, 0x00, 0x63, 0x13, 0x6e, 0x83, 0x24, 0xe4, 0x39, 0xae, 0x39, 0x9a, 0x7b, 0x34, 0xfc, 0xcc, 0x2b, 0x0b, 0x7a, 0x45, 0xb1, 0xf7, 0x7b, 0x16, 0xc5, 0x59, 0x42, 0x0e, 0x6c, 0xe4, 0x80, 0xb5, 0xa1, 0xe1, 0x7a, 0xc3, 0xfd, 0x90, 0xf9, 0x8b, 0x08, 0xeb, 0x8e, 0xe6, 0x76, 0x08, 0x28, 0x6c, 0xc4, 0xae, 0x23, 0xa1, 0x27, 0xec, 0xe0, 0xba, 0xa3, 0xb9, 0x16, 0x91, 0x6b, 0xf4, 0x05, 0x58, 0x09, 0x4d, 0xb3, 0x2d, 0xf7, 0x17, 0x71, 0xc6, 0x38, 0x6e, 0x39, 0x9a, 0xab, 0x13, 0x53, 0x61, 0xd7, 0x02, 0x42, 0x5f, 0x42, 0x87, 0x27, 0x19, 0xf5, 0xd3, 0x45, 0xcc, 0xd3, 0x28, 0x60, 0xd8, 0x70, 0x34, 0xd7, 0x20, 0x96, 0x00, 0x67, 0x05, 0x86, 0xba, 0xd0, 0x48, 0x17, 0x71, 0x42, 0x71, 0xdb, 0xd1, 0xdc, 0x1a, 0x51, 0x1b, 0x64, 0x83, 0xfe, 0x37, 0xcd, 0x71, 0xc3, 0xd1, 0xdd, 0x3a, 0x11, 0x4b, 0xf4, 0x29, 0xb4, 0xd3, 0x4d, 0x9c, 0x70, 0x5f, 0xe0, 0x27, 0x8e, 0xee, 0x36, 0x88, 0x21, 0x81, 0x3b, 0x9a, 0xa3, 0x6f, 0xa1, 0xc9, 0x68, 0xca, 0xe9, 0x12, 0x37, 0x1d, 0xcd, 0x35, 0x87, 0xdd, 0x97, 0xbf, 0x3e, 0x91, 0x67, 0xa4, 0xe0, 0xa0, 0x73, 0x68, 0x25, 0xfe, 0x2a, 0x63, 0x2c, 0xc7, 0xb6, 0xa3, 0x7f, 0x30, 0xa9, 0x66, 0x72, 0x2b, 0xb8, 0xe8, 0x67, 0x68, 0x71, 0x9a, 0x24, 0x41, 0xc8, 0x30, 0x38, 0xba, 0x6b, 0x0e, 0xfb, 0xd5, 0x65, 0x0f, 0x8a, 0x74, 0xc3, 0x78, 0x92, 0x93, 0x7d, 0x09, 0xba, 0x00, 0x75, 0xff, 0x43, 0x7f, 0x15, 0xd2, 0xed, 0x12, 0x9b, 0xd2, 0xe8, 0x27, 0xde, 0xfe, 0xae, 0xbd, 0x59, 0x36, 0xff, 0x8d, 0xae, 0x82, 0x6c, 0xcb, 0x53, 0x62, 0x2a, 0xea, 0xad, 0x60, 0xa2, 0xd1, 0xa1, 0xf2, 0xdf, 0x60, 0x9b, 0x51, 0xdc, 0x91, 0xe2, 0x5f, 0x55, 0x8b, 0x4f, 0x25, 0xf3, 0x4f, 0x41, 0x54, 0x06, 0x8a, 0x56, 0x12, 0x41, 0xdf, 0x83, 0x11, 0xb0, 0x9c, 0x6f, 0x42, 0xb6, 0xc6, 0x47, 0x45, 0x52, 0x6a, 0x0e, 0xbd, 0xfd, 0x1c, 0x7a, 0x97, 0x2c, 0x27, 0x07, 0x16, 0x3a, 0x07, 0x33, 0x0a, 0x58, 0xee, 0xcb, 0x5d, 0x8a, 0x8f, 0xa5, 0x76, 0x75, 0x11, 0x08, 0xe2, 0x83, 0xe4, 0xa1, 0x73, 0x80, 0x34, 0x9b, 0x47, 0xca, 0x14, 0xfe, 0xb8, 0xf8, 0xd7, 0x2a, 0xc7, 0xa4, 0x44, 0x44, 0x3f, 0x80, 0xb1, 0xd8, 0x84, 0xdb, 0x65, 0x42, 0x19, 0x46, 0x52, 0xea, 0x8d, 0xa2, 0x03, 0xad, 0x37, 0x05, 0xab, 0x1c, 0xf8, 0x7e, 0x72, 0xd4, 0xd3, 0x90, 0x93, 0xf3, 0x35, 0x34, 0x54, 0x70, 0xb5, 0xf7, 0xcc, 0x86, 0xa2, 0xfc, 0x54, 0xbb, 0xd0, 0x7a, 0x8f, 0x60, 0xbf, 0x4e, 0xb1, 0xa2, 0xeb, 0x37, 0x2f, 0xbb, 0xbe, 0x71, 0x91, 0xcf, 0x6d, 0xfb, 0xbf, 0x42, 0x53, 0x0d, 0x14, 0x32, 0xa1, 0xf5, 0x38, 0xb9, 0x9b, 0xfc, 0xf1, 0x34, 0xb1, 0x3f, 0x42, 0x06, 0xd4, 0xa7, 0x8f, 0x93, 0x99, 0xad, 0xa1, 0x0e, 0xb4, 0x67, 0xe3, 0xcb, 0xe9, 0xec, 0x61, 0x74, 0x7d, 0x67, 0xd7, 0xd0, 0x31, 0x98, 0x57, 0xa3, 0xf1, 0xd8, 0xbf, 0xba, 0x1c, 0x8d, 0x6f, 0xfe, 0xb2, 0xf5, 0xfe, 0x10, 0x9a, 0xca, 0xac, 0x78, 0x33, 0x73, 0x39, 0xbe, 0xca, 0x8f, 0xda, 0x88, 0x57, 0xba, 0xc8, 0xb8, 0x32, 0x64, 0x10, 0xb9, 0xee, 0xff, 0xa7, 0xc1, 0x51, 0x91, 0xd9, 0x53, 0xc8, 0x37, 0xf7, 0xc1, 0x0e, 0x4d, 0xc1, 0x9a, 0xe7, 0x9c, 0xfa, 0x51, 0xb0, 0xdb, 0x89, 0x39, 0xd0, 0x64, 0xce, 0xdf, 0x55, 0xe6, 0x5c, 0xd4, 0x78, 0x57, 0x39, 0xa7, 0xf7, 0x8a, 0x5f, 0x4c, 0xd5, 0xfc, 0x19, 0xe9, 0xfd, 0x02, 0xf6, 0x6b, 0x42, 0x39, 0x30, 0x43, 0x05, 0xd6, 0x2d, 0x07, 0x66, 0x95, 0x93, 0xf9, 0x07, 0x9a, 0x23, 0xc6, 0x85, 0xb7, 0x01, 0xe8, 0x09, 0xe7, 0x85, 0xa5, 0xcf, 0x5f, 0x5a, 0x52, 0x14, 0x8f, 0x70, 0xae, 0x2c, 0x08, 0x66, 0xef, 0x47, 0x30, 0xf6, 0x40, 0x59, 0xb2, 0x51, 0x21, 0xd9, 0x28, 0x4b, 0x9e, 0x41, 0x4b, 0xf5, 0x4b, 0x91, 0x0b, 0xf5, 0x28, 0xd8, 0xa5, 0x85, 0x68, 0xb7, 0x4a, 0x94, 0x48, 0xc6, 0xbc, 0xa9, 0x8e, 0xde, 0x05, 0x00, 0x00, 0xff, 0xff, 0x75, 0x38, 0xad, 0x84, 0xe4, 0x05, 0x00, 0x00, } golang-gogoprotobuf-0.5/proto/proto3_proto/proto3.proto000066400000000000000000000051521317075173200234770ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto3"; import "google/protobuf/any.proto"; import "testdata/test.proto"; package proto3_proto; message Message { enum Humour { UNKNOWN = 0; PUNS = 1; SLAPSTICK = 2; BILL_BAILEY = 3; } string name = 1; Humour hilarity = 2; uint32 height_in_cm = 3; bytes data = 4; int64 result_count = 7; bool true_scotsman = 8; float score = 9; repeated uint64 key = 5; repeated int32 short_key = 19; Nested nested = 6; repeated Humour r_funny = 16; map terrain = 10; testdata.SubDefaults proto2_field = 11; map proto2_value = 13; google.protobuf.Any anything = 14; repeated google.protobuf.Any many_things = 15; Message submessage = 17; repeated Message children = 18; } message Nested { string bunny = 1; bool cute = 2; } message MessageWithMap { map byte_mapping = 1; } message IntMap { map rtt = 1; } message IntMaps { repeated IntMap maps = 1; }golang-gogoprotobuf-0.5/proto/proto3_test.go000066400000000000000000000103541317075173200213270ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. package proto_test import ( "testing" "github.com/gogo/protobuf/proto" pb "github.com/gogo/protobuf/proto/proto3_proto" tpb "github.com/gogo/protobuf/proto/testdata" ) func TestProto3ZeroValues(t *testing.T) { tests := []struct { desc string m proto.Message }{ {"zero message", &pb.Message{}}, {"empty bytes field", &pb.Message{Data: []byte{}}}, } for _, test := range tests { b, err := proto.Marshal(test.m) if err != nil { t.Errorf("%s: proto.Marshal: %v", test.desc, err) continue } if len(b) > 0 { t.Errorf("%s: Encoding is non-empty: %q", test.desc, b) } } } func TestRoundTripProto3(t *testing.T) { m := &pb.Message{ Name: "David", // (2 | 1<<3): 0x0a 0x05 "David" Hilarity: pb.Message_PUNS, // (0 | 2<<3): 0x10 0x01 HeightInCm: 178, // (0 | 3<<3): 0x18 0xb2 0x01 Data: []byte("roboto"), // (2 | 4<<3): 0x20 0x06 "roboto" ResultCount: 47, // (0 | 7<<3): 0x38 0x2f TrueScotsman: true, // (0 | 8<<3): 0x40 0x01 Score: 8.1, // (5 | 9<<3): 0x4d <8.1> Key: []uint64{1, 0xdeadbeef}, Nested: &pb.Nested{ Bunny: "Monty", }, } t.Logf(" m: %v", m) b, err := proto.Marshal(m) if err != nil { t.Fatalf("proto.Marshal: %v", err) } t.Logf(" b: %q", b) m2 := new(pb.Message) if err := proto.Unmarshal(b, m2); err != nil { t.Fatalf("proto.Unmarshal: %v", err) } t.Logf("m2: %v", m2) if !proto.Equal(m, m2) { t.Errorf("proto.Equal returned false:\n m: %v\nm2: %v", m, m2) } } func TestGettersForBasicTypesExist(t *testing.T) { var m pb.Message if got := m.GetNested().GetBunny(); got != "" { t.Errorf("m.GetNested().GetBunny() = %q, want empty string", got) } if got := m.GetNested().GetCute(); got { t.Errorf("m.GetNested().GetCute() = %t, want false", got) } } func TestProto3SetDefaults(t *testing.T) { in := &pb.Message{ Terrain: map[string]*pb.Nested{ "meadow": new(pb.Nested), }, Proto2Field: new(tpb.SubDefaults), Proto2Value: map[string]*tpb.SubDefaults{ "badlands": new(tpb.SubDefaults), }, } got := proto.Clone(in).(*pb.Message) proto.SetDefaults(got) // There are no defaults in proto3. Everything should be the zero value, but // we need to remember to set defaults for nested proto2 messages. want := &pb.Message{ Terrain: map[string]*pb.Nested{ "meadow": new(pb.Nested), }, Proto2Field: &tpb.SubDefaults{N: proto.Int64(7)}, Proto2Value: map[string]*tpb.SubDefaults{ "badlands": {N: proto.Int64(7)}, }, } if !proto.Equal(got, want) { t.Errorf("with in = %v\nproto.SetDefaults(in) =>\ngot %v\nwant %v", in, got, want) } } golang-gogoprotobuf-0.5/proto/size2_test.go000066400000000000000000000044361317075173200211410ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2012 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. package proto import ( "testing" ) // This is a separate file and package from size_test.go because that one uses // generated messages and thus may not be in package proto without having a circular // dependency, whereas this file tests unexported details of size.go. func TestVarintSize(t *testing.T) { // Check the edge cases carefully. testCases := []struct { n uint64 size int }{ {0, 1}, {1, 1}, {127, 1}, {128, 2}, {16383, 2}, {16384, 3}, {1<<63 - 1, 9}, {1 << 63, 10}, } for _, tc := range testCases { size := sizeVarint(tc.n) if size != tc.size { t.Errorf("sizeVarint(%d) = %d, want %d", tc.n, size, tc.size) } } } golang-gogoprotobuf-0.5/proto/size_test.go000066400000000000000000000177601317075173200210630ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2012 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. package proto_test import ( "log" "strings" "testing" . "github.com/gogo/protobuf/proto" proto3pb "github.com/gogo/protobuf/proto/proto3_proto" pb "github.com/gogo/protobuf/proto/testdata" ) var messageWithExtension1 = &pb.MyMessage{Count: Int32(7)} // messageWithExtension2 is in equal_test.go. var messageWithExtension3 = &pb.MyMessage{Count: Int32(8)} func init() { if err := SetExtension(messageWithExtension1, pb.E_Ext_More, &pb.Ext{Data: String("Abbott")}); err != nil { log.Panicf("SetExtension: %v", err) } if err := SetExtension(messageWithExtension3, pb.E_Ext_More, &pb.Ext{Data: String("Costello")}); err != nil { log.Panicf("SetExtension: %v", err) } // Force messageWithExtension3 to have the extension encoded. Marshal(messageWithExtension3) } var SizeTests = []struct { desc string pb Message }{ {"empty", &pb.OtherMessage{}}, // Basic types. {"bool", &pb.Defaults{F_Bool: Bool(true)}}, {"int32", &pb.Defaults{F_Int32: Int32(12)}}, {"negative int32", &pb.Defaults{F_Int32: Int32(-1)}}, {"small int64", &pb.Defaults{F_Int64: Int64(1)}}, {"big int64", &pb.Defaults{F_Int64: Int64(1 << 20)}}, {"negative int64", &pb.Defaults{F_Int64: Int64(-1)}}, {"fixed32", &pb.Defaults{F_Fixed32: Uint32(71)}}, {"fixed64", &pb.Defaults{F_Fixed64: Uint64(72)}}, {"uint32", &pb.Defaults{F_Uint32: Uint32(123)}}, {"uint64", &pb.Defaults{F_Uint64: Uint64(124)}}, {"float", &pb.Defaults{F_Float: Float32(12.6)}}, {"double", &pb.Defaults{F_Double: Float64(13.9)}}, {"string", &pb.Defaults{F_String: String("niles")}}, {"bytes", &pb.Defaults{F_Bytes: []byte("wowsa")}}, {"bytes, empty", &pb.Defaults{F_Bytes: []byte{}}}, {"sint32", &pb.Defaults{F_Sint32: Int32(65)}}, {"sint64", &pb.Defaults{F_Sint64: Int64(67)}}, {"enum", &pb.Defaults{F_Enum: pb.Defaults_BLUE.Enum()}}, // Repeated. {"empty repeated bool", &pb.MoreRepeated{Bools: []bool{}}}, {"repeated bool", &pb.MoreRepeated{Bools: []bool{false, true, true, false}}}, {"packed repeated bool", &pb.MoreRepeated{BoolsPacked: []bool{false, true, true, false, true, true, true}}}, {"repeated int32", &pb.MoreRepeated{Ints: []int32{1, 12203, 1729, -1}}}, {"repeated int32 packed", &pb.MoreRepeated{IntsPacked: []int32{1, 12203, 1729}}}, {"repeated int64 packed", &pb.MoreRepeated{Int64SPacked: []int64{ // Need enough large numbers to verify that the header is counting the number of bytes // for the field, not the number of elements. 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, 1 << 62, }}}, {"repeated string", &pb.MoreRepeated{Strings: []string{"r", "ken", "gri"}}}, {"repeated fixed", &pb.MoreRepeated{Fixeds: []uint32{1, 2, 3, 4}}}, // Nested. {"nested", &pb.OldMessage{Nested: &pb.OldMessage_Nested{Name: String("whatever")}}}, {"group", &pb.GroupOld{G: &pb.GroupOld_G{X: Int32(12345)}}}, // Other things. {"unrecognized", &pb.MoreRepeated{XXX_unrecognized: []byte{13<<3 | 0, 4}}}, {"extension (unencoded)", messageWithExtension1}, {"extension (encoded)", messageWithExtension3}, // proto3 message {"proto3 empty", &proto3pb.Message{}}, {"proto3 bool", &proto3pb.Message{TrueScotsman: true}}, {"proto3 int64", &proto3pb.Message{ResultCount: 1}}, {"proto3 uint32", &proto3pb.Message{HeightInCm: 123}}, {"proto3 float", &proto3pb.Message{Score: 12.6}}, {"proto3 string", &proto3pb.Message{Name: "Snezana"}}, {"proto3 bytes", &proto3pb.Message{Data: []byte("wowsa")}}, {"proto3 bytes, empty", &proto3pb.Message{Data: []byte{}}}, {"proto3 enum", &proto3pb.Message{Hilarity: proto3pb.Message_PUNS}}, {"proto3 map field with empty bytes", &proto3pb.MessageWithMap{ByteMapping: map[bool][]byte{false: {}}}}, {"map field", &pb.MessageWithMap{NameMapping: map[int32]string{1: "Rob", 7: "Andrew"}}}, {"map field with message", &pb.MessageWithMap{MsgMapping: map[int64]*pb.FloatingPoint{0x7001: {F: Float64(2.0)}}}}, {"map field with bytes", &pb.MessageWithMap{ByteMapping: map[bool][]byte{true: []byte("this time for sure")}}}, {"map field with empty bytes", &pb.MessageWithMap{ByteMapping: map[bool][]byte{true: {}}}}, {"map field with big entry", &pb.MessageWithMap{NameMapping: map[int32]string{8: strings.Repeat("x", 125)}}}, {"map field with big key and val", &pb.MessageWithMap{StrToStr: map[string]string{strings.Repeat("x", 70): strings.Repeat("y", 70)}}}, {"map field with big numeric key", &pb.MessageWithMap{NameMapping: map[int32]string{0xf00d: "om nom nom"}}}, {"oneof not set", &pb.Oneof{}}, {"oneof bool", &pb.Oneof{Union: &pb.Oneof_F_Bool{F_Bool: true}}}, {"oneof zero int32", &pb.Oneof{Union: &pb.Oneof_F_Int32{F_Int32: 0}}}, {"oneof big int32", &pb.Oneof{Union: &pb.Oneof_F_Int32{F_Int32: 1 << 20}}}, {"oneof int64", &pb.Oneof{Union: &pb.Oneof_F_Int64{F_Int64: 42}}}, {"oneof fixed32", &pb.Oneof{Union: &pb.Oneof_F_Fixed32{F_Fixed32: 43}}}, {"oneof fixed64", &pb.Oneof{Union: &pb.Oneof_F_Fixed64{F_Fixed64: 44}}}, {"oneof uint32", &pb.Oneof{Union: &pb.Oneof_F_Uint32{F_Uint32: 45}}}, {"oneof uint64", &pb.Oneof{Union: &pb.Oneof_F_Uint64{F_Uint64: 46}}}, {"oneof float", &pb.Oneof{Union: &pb.Oneof_F_Float{F_Float: 47.1}}}, {"oneof double", &pb.Oneof{Union: &pb.Oneof_F_Double{F_Double: 48.9}}}, {"oneof string", &pb.Oneof{Union: &pb.Oneof_F_String{F_String: "Rhythmic Fman"}}}, {"oneof bytes", &pb.Oneof{Union: &pb.Oneof_F_Bytes{F_Bytes: []byte("let go")}}}, {"oneof sint32", &pb.Oneof{Union: &pb.Oneof_F_Sint32{F_Sint32: 50}}}, {"oneof sint64", &pb.Oneof{Union: &pb.Oneof_F_Sint64{F_Sint64: 51}}}, {"oneof enum", &pb.Oneof{Union: &pb.Oneof_F_Enum{F_Enum: pb.MyMessage_BLUE}}}, {"message for oneof", &pb.GoTestField{Label: String("k"), Type: String("v")}}, {"oneof message", &pb.Oneof{Union: &pb.Oneof_F_Message{F_Message: &pb.GoTestField{Label: String("k"), Type: String("v")}}}}, {"oneof group", &pb.Oneof{Union: &pb.Oneof_FGroup{FGroup: &pb.Oneof_F_Group{X: Int32(52)}}}}, {"oneof largest tag", &pb.Oneof{Union: &pb.Oneof_F_Largest_Tag{F_Largest_Tag: 1}}}, {"multiple oneofs", &pb.Oneof{Union: &pb.Oneof_F_Int32{F_Int32: 1}, Tormato: &pb.Oneof_Value{Value: 2}}}, } func TestSize(t *testing.T) { for _, tc := range SizeTests { size := Size(tc.pb) b, err := Marshal(tc.pb) if err != nil { t.Errorf("%v: Marshal failed: %v", tc.desc, err) continue } if size != len(b) { t.Errorf("%v: Size(%v) = %d, want %d", tc.desc, tc.pb, size, len(b)) t.Logf("%v: bytes: %#v", tc.desc, b) } } } golang-gogoprotobuf-0.5/proto/skip_gogo.go000066400000000000000000000057401317075173200210260ustar00rootroot00000000000000// 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. package proto import ( "fmt" "io" ) func Skip(data []byte) (n int, err error) { l := len(data) index := 0 for index < l { var wire uint64 for shift := uint(0); ; shift += 7 { if index >= l { return 0, io.ErrUnexpectedEOF } b := data[index] index++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for { if index >= l { return 0, io.ErrUnexpectedEOF } index++ if data[index-1] < 0x80 { break } } return index, nil case 1: index += 8 return index, nil case 2: var length int for shift := uint(0); ; shift += 7 { if index >= l { return 0, io.ErrUnexpectedEOF } b := data[index] index++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } index += length return index, nil case 3: for { var innerWire uint64 var start int = index for shift := uint(0); ; shift += 7 { if index >= l { return 0, io.ErrUnexpectedEOF } b := data[index] index++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := Skip(data[start:]) if err != nil { return 0, err } index = start + next } return index, nil case 4: return index, nil case 5: index += 4 return index, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } golang-gogoprotobuf-0.5/proto/testdata/000077500000000000000000000000001317075173200203215ustar00rootroot00000000000000golang-gogoprotobuf-0.5/proto/testdata/Makefile000066400000000000000000000033741317075173200217700ustar00rootroot00000000000000# 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. all: regenerate regenerate: go install github.com/gogo/protobuf/protoc-min-version protoc-min-version --version="3.0.0" --gogo_out=. test.proto golang-gogoprotobuf-0.5/proto/testdata/golden_test.go000066400000000000000000000055621317075173200231670ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2012 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. // Verify that the compiler output for test.proto is unchanged. package testdata import ( "crypto/sha1" "fmt" "io/ioutil" "os" "os/exec" "path/filepath" "testing" ) // sum returns in string form (for easy comparison) the SHA-1 hash of the named file. func sum(t *testing.T, name string) string { data, err := ioutil.ReadFile(name) if err != nil { t.Fatal(err) } t.Logf("sum(%q): length is %d", name, len(data)) hash := sha1.New() _, err = hash.Write(data) if err != nil { t.Fatal(err) } return fmt.Sprintf("% x", hash.Sum(nil)) } func run(t *testing.T, name string, args ...string) { cmd := exec.Command(name, args...) cmd.Stdin = os.Stdin cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr err := cmd.Run() if err != nil { t.Fatal(err) } } func TestGolden(t *testing.T) { // Compute the original checksum. goldenSum := sum(t, "test.pb.go") // Run the proto compiler. run(t, "protoc", "--gogo_out="+os.TempDir(), "test.proto") newFile := filepath.Join(os.TempDir(), "test.pb.go") defer os.Remove(newFile) // Compute the new checksum. newSum := sum(t, newFile) // Verify if newSum != goldenSum { run(t, "diff", "-u", "test.pb.go", newFile) t.Fatal("Code generated by protoc-gen-go has changed; update test.pb.go") } } golang-gogoprotobuf-0.5/proto/testdata/test.pb.go000066400000000000000000004363631317075173200222460ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: test.proto /* Package testdata is a generated protocol buffer package. It is generated from these files: test.proto It has these top-level messages: GoEnum GoTestField GoTest GoTestRequiredGroupField GoSkipTest NonPackedTest PackedTest MaxTag OldMessage NewMessage InnerMessage OtherMessage RequiredInnerMessage MyMessage Ext ComplexExtension DefaultsMessage MyMessageSet Empty MessageList Strings Defaults SubDefaults RepeatedEnum MoreRepeated GroupOld GroupNew FloatingPoint MessageWithMap Oneof Communique */ package testdata import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type FOO int32 const ( FOO_FOO1 FOO = 1 ) var FOO_name = map[int32]string{ 1: "FOO1", } var FOO_value = map[string]int32{ "FOO1": 1, } func (x FOO) Enum() *FOO { p := new(FOO) *p = x return p } func (x FOO) String() string { return proto.EnumName(FOO_name, int32(x)) } func (x *FOO) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(FOO_value, data, "FOO") if err != nil { return err } *x = FOO(value) return nil } func (FOO) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{0} } // An enum, for completeness. type GoTest_KIND int32 const ( GoTest_VOID GoTest_KIND = 0 // Basic types GoTest_BOOL GoTest_KIND = 1 GoTest_BYTES GoTest_KIND = 2 GoTest_FINGERPRINT GoTest_KIND = 3 GoTest_FLOAT GoTest_KIND = 4 GoTest_INT GoTest_KIND = 5 GoTest_STRING GoTest_KIND = 6 GoTest_TIME GoTest_KIND = 7 // Groupings GoTest_TUPLE GoTest_KIND = 8 GoTest_ARRAY GoTest_KIND = 9 GoTest_MAP GoTest_KIND = 10 // Table types GoTest_TABLE GoTest_KIND = 11 // Functions GoTest_FUNCTION GoTest_KIND = 12 ) var GoTest_KIND_name = map[int32]string{ 0: "VOID", 1: "BOOL", 2: "BYTES", 3: "FINGERPRINT", 4: "FLOAT", 5: "INT", 6: "STRING", 7: "TIME", 8: "TUPLE", 9: "ARRAY", 10: "MAP", 11: "TABLE", 12: "FUNCTION", } var GoTest_KIND_value = map[string]int32{ "VOID": 0, "BOOL": 1, "BYTES": 2, "FINGERPRINT": 3, "FLOAT": 4, "INT": 5, "STRING": 6, "TIME": 7, "TUPLE": 8, "ARRAY": 9, "MAP": 10, "TABLE": 11, "FUNCTION": 12, } func (x GoTest_KIND) Enum() *GoTest_KIND { p := new(GoTest_KIND) *p = x return p } func (x GoTest_KIND) String() string { return proto.EnumName(GoTest_KIND_name, int32(x)) } func (x *GoTest_KIND) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(GoTest_KIND_value, data, "GoTest_KIND") if err != nil { return err } *x = GoTest_KIND(value) return nil } func (GoTest_KIND) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{2, 0} } type MyMessage_Color int32 const ( MyMessage_RED MyMessage_Color = 0 MyMessage_GREEN MyMessage_Color = 1 MyMessage_BLUE MyMessage_Color = 2 ) var MyMessage_Color_name = map[int32]string{ 0: "RED", 1: "GREEN", 2: "BLUE", } var MyMessage_Color_value = map[string]int32{ "RED": 0, "GREEN": 1, "BLUE": 2, } func (x MyMessage_Color) Enum() *MyMessage_Color { p := new(MyMessage_Color) *p = x return p } func (x MyMessage_Color) String() string { return proto.EnumName(MyMessage_Color_name, int32(x)) } func (x *MyMessage_Color) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MyMessage_Color_value, data, "MyMessage_Color") if err != nil { return err } *x = MyMessage_Color(value) return nil } func (MyMessage_Color) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{13, 0} } type DefaultsMessage_DefaultsEnum int32 const ( DefaultsMessage_ZERO DefaultsMessage_DefaultsEnum = 0 DefaultsMessage_ONE DefaultsMessage_DefaultsEnum = 1 DefaultsMessage_TWO DefaultsMessage_DefaultsEnum = 2 ) var DefaultsMessage_DefaultsEnum_name = map[int32]string{ 0: "ZERO", 1: "ONE", 2: "TWO", } var DefaultsMessage_DefaultsEnum_value = map[string]int32{ "ZERO": 0, "ONE": 1, "TWO": 2, } func (x DefaultsMessage_DefaultsEnum) Enum() *DefaultsMessage_DefaultsEnum { p := new(DefaultsMessage_DefaultsEnum) *p = x return p } func (x DefaultsMessage_DefaultsEnum) String() string { return proto.EnumName(DefaultsMessage_DefaultsEnum_name, int32(x)) } func (x *DefaultsMessage_DefaultsEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(DefaultsMessage_DefaultsEnum_value, data, "DefaultsMessage_DefaultsEnum") if err != nil { return err } *x = DefaultsMessage_DefaultsEnum(value) return nil } func (DefaultsMessage_DefaultsEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{16, 0} } type Defaults_Color int32 const ( Defaults_RED Defaults_Color = 0 Defaults_GREEN Defaults_Color = 1 Defaults_BLUE Defaults_Color = 2 ) var Defaults_Color_name = map[int32]string{ 0: "RED", 1: "GREEN", 2: "BLUE", } var Defaults_Color_value = map[string]int32{ "RED": 0, "GREEN": 1, "BLUE": 2, } func (x Defaults_Color) Enum() *Defaults_Color { p := new(Defaults_Color) *p = x return p } func (x Defaults_Color) String() string { return proto.EnumName(Defaults_Color_name, int32(x)) } func (x *Defaults_Color) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(Defaults_Color_value, data, "Defaults_Color") if err != nil { return err } *x = Defaults_Color(value) return nil } func (Defaults_Color) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{21, 0} } type RepeatedEnum_Color int32 const ( RepeatedEnum_RED RepeatedEnum_Color = 1 ) var RepeatedEnum_Color_name = map[int32]string{ 1: "RED", } var RepeatedEnum_Color_value = map[string]int32{ "RED": 1, } func (x RepeatedEnum_Color) Enum() *RepeatedEnum_Color { p := new(RepeatedEnum_Color) *p = x return p } func (x RepeatedEnum_Color) String() string { return proto.EnumName(RepeatedEnum_Color_name, int32(x)) } func (x *RepeatedEnum_Color) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(RepeatedEnum_Color_value, data, "RepeatedEnum_Color") if err != nil { return err } *x = RepeatedEnum_Color(value) return nil } func (RepeatedEnum_Color) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{23, 0} } type GoEnum struct { Foo *FOO `protobuf:"varint,1,req,name=foo,enum=testdata.FOO" json:"foo,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoEnum) Reset() { *m = GoEnum{} } func (m *GoEnum) String() string { return proto.CompactTextString(m) } func (*GoEnum) ProtoMessage() {} func (*GoEnum) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{0} } func (m *GoEnum) GetFoo() FOO { if m != nil && m.Foo != nil { return *m.Foo } return FOO_FOO1 } type GoTestField struct { Label *string `protobuf:"bytes,1,req,name=Label" json:"Label,omitempty"` Type *string `protobuf:"bytes,2,req,name=Type" json:"Type,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTestField) Reset() { *m = GoTestField{} } func (m *GoTestField) String() string { return proto.CompactTextString(m) } func (*GoTestField) ProtoMessage() {} func (*GoTestField) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{1} } func (m *GoTestField) GetLabel() string { if m != nil && m.Label != nil { return *m.Label } return "" } func (m *GoTestField) GetType() string { if m != nil && m.Type != nil { return *m.Type } return "" } type GoTest struct { // Some typical parameters Kind *GoTest_KIND `protobuf:"varint,1,req,name=Kind,enum=testdata.GoTest_KIND" json:"Kind,omitempty"` Table *string `protobuf:"bytes,2,opt,name=Table" json:"Table,omitempty"` Param *int32 `protobuf:"varint,3,opt,name=Param" json:"Param,omitempty"` // Required, repeated and optional foreign fields. RequiredField *GoTestField `protobuf:"bytes,4,req,name=RequiredField" json:"RequiredField,omitempty"` RepeatedField []*GoTestField `protobuf:"bytes,5,rep,name=RepeatedField" json:"RepeatedField,omitempty"` OptionalField *GoTestField `protobuf:"bytes,6,opt,name=OptionalField" json:"OptionalField,omitempty"` // Required fields of all basic types F_BoolRequired *bool `protobuf:"varint,10,req,name=F_Bool_required,json=FBoolRequired" json:"F_Bool_required,omitempty"` F_Int32Required *int32 `protobuf:"varint,11,req,name=F_Int32_required,json=FInt32Required" json:"F_Int32_required,omitempty"` F_Int64Required *int64 `protobuf:"varint,12,req,name=F_Int64_required,json=FInt64Required" json:"F_Int64_required,omitempty"` F_Fixed32Required *uint32 `protobuf:"fixed32,13,req,name=F_Fixed32_required,json=FFixed32Required" json:"F_Fixed32_required,omitempty"` F_Fixed64Required *uint64 `protobuf:"fixed64,14,req,name=F_Fixed64_required,json=FFixed64Required" json:"F_Fixed64_required,omitempty"` F_Uint32Required *uint32 `protobuf:"varint,15,req,name=F_Uint32_required,json=FUint32Required" json:"F_Uint32_required,omitempty"` F_Uint64Required *uint64 `protobuf:"varint,16,req,name=F_Uint64_required,json=FUint64Required" json:"F_Uint64_required,omitempty"` F_FloatRequired *float32 `protobuf:"fixed32,17,req,name=F_Float_required,json=FFloatRequired" json:"F_Float_required,omitempty"` F_DoubleRequired *float64 `protobuf:"fixed64,18,req,name=F_Double_required,json=FDoubleRequired" json:"F_Double_required,omitempty"` F_StringRequired *string `protobuf:"bytes,19,req,name=F_String_required,json=FStringRequired" json:"F_String_required,omitempty"` F_BytesRequired []byte `protobuf:"bytes,101,req,name=F_Bytes_required,json=FBytesRequired" json:"F_Bytes_required,omitempty"` F_Sint32Required *int32 `protobuf:"zigzag32,102,req,name=F_Sint32_required,json=FSint32Required" json:"F_Sint32_required,omitempty"` F_Sint64Required *int64 `protobuf:"zigzag64,103,req,name=F_Sint64_required,json=FSint64Required" json:"F_Sint64_required,omitempty"` // Repeated fields of all basic types F_BoolRepeated []bool `protobuf:"varint,20,rep,name=F_Bool_repeated,json=FBoolRepeated" json:"F_Bool_repeated,omitempty"` F_Int32Repeated []int32 `protobuf:"varint,21,rep,name=F_Int32_repeated,json=FInt32Repeated" json:"F_Int32_repeated,omitempty"` F_Int64Repeated []int64 `protobuf:"varint,22,rep,name=F_Int64_repeated,json=FInt64Repeated" json:"F_Int64_repeated,omitempty"` F_Fixed32Repeated []uint32 `protobuf:"fixed32,23,rep,name=F_Fixed32_repeated,json=FFixed32Repeated" json:"F_Fixed32_repeated,omitempty"` F_Fixed64Repeated []uint64 `protobuf:"fixed64,24,rep,name=F_Fixed64_repeated,json=FFixed64Repeated" json:"F_Fixed64_repeated,omitempty"` F_Uint32Repeated []uint32 `protobuf:"varint,25,rep,name=F_Uint32_repeated,json=FUint32Repeated" json:"F_Uint32_repeated,omitempty"` F_Uint64Repeated []uint64 `protobuf:"varint,26,rep,name=F_Uint64_repeated,json=FUint64Repeated" json:"F_Uint64_repeated,omitempty"` F_FloatRepeated []float32 `protobuf:"fixed32,27,rep,name=F_Float_repeated,json=FFloatRepeated" json:"F_Float_repeated,omitempty"` F_DoubleRepeated []float64 `protobuf:"fixed64,28,rep,name=F_Double_repeated,json=FDoubleRepeated" json:"F_Double_repeated,omitempty"` F_StringRepeated []string `protobuf:"bytes,29,rep,name=F_String_repeated,json=FStringRepeated" json:"F_String_repeated,omitempty"` F_BytesRepeated [][]byte `protobuf:"bytes,201,rep,name=F_Bytes_repeated,json=FBytesRepeated" json:"F_Bytes_repeated,omitempty"` F_Sint32Repeated []int32 `protobuf:"zigzag32,202,rep,name=F_Sint32_repeated,json=FSint32Repeated" json:"F_Sint32_repeated,omitempty"` F_Sint64Repeated []int64 `protobuf:"zigzag64,203,rep,name=F_Sint64_repeated,json=FSint64Repeated" json:"F_Sint64_repeated,omitempty"` // Optional fields of all basic types F_BoolOptional *bool `protobuf:"varint,30,opt,name=F_Bool_optional,json=FBoolOptional" json:"F_Bool_optional,omitempty"` F_Int32Optional *int32 `protobuf:"varint,31,opt,name=F_Int32_optional,json=FInt32Optional" json:"F_Int32_optional,omitempty"` F_Int64Optional *int64 `protobuf:"varint,32,opt,name=F_Int64_optional,json=FInt64Optional" json:"F_Int64_optional,omitempty"` F_Fixed32Optional *uint32 `protobuf:"fixed32,33,opt,name=F_Fixed32_optional,json=FFixed32Optional" json:"F_Fixed32_optional,omitempty"` F_Fixed64Optional *uint64 `protobuf:"fixed64,34,opt,name=F_Fixed64_optional,json=FFixed64Optional" json:"F_Fixed64_optional,omitempty"` F_Uint32Optional *uint32 `protobuf:"varint,35,opt,name=F_Uint32_optional,json=FUint32Optional" json:"F_Uint32_optional,omitempty"` F_Uint64Optional *uint64 `protobuf:"varint,36,opt,name=F_Uint64_optional,json=FUint64Optional" json:"F_Uint64_optional,omitempty"` F_FloatOptional *float32 `protobuf:"fixed32,37,opt,name=F_Float_optional,json=FFloatOptional" json:"F_Float_optional,omitempty"` F_DoubleOptional *float64 `protobuf:"fixed64,38,opt,name=F_Double_optional,json=FDoubleOptional" json:"F_Double_optional,omitempty"` F_StringOptional *string `protobuf:"bytes,39,opt,name=F_String_optional,json=FStringOptional" json:"F_String_optional,omitempty"` F_BytesOptional []byte `protobuf:"bytes,301,opt,name=F_Bytes_optional,json=FBytesOptional" json:"F_Bytes_optional,omitempty"` F_Sint32Optional *int32 `protobuf:"zigzag32,302,opt,name=F_Sint32_optional,json=FSint32Optional" json:"F_Sint32_optional,omitempty"` F_Sint64Optional *int64 `protobuf:"zigzag64,303,opt,name=F_Sint64_optional,json=FSint64Optional" json:"F_Sint64_optional,omitempty"` // Default-valued fields of all basic types F_BoolDefaulted *bool `protobuf:"varint,40,opt,name=F_Bool_defaulted,json=FBoolDefaulted,def=1" json:"F_Bool_defaulted,omitempty"` F_Int32Defaulted *int32 `protobuf:"varint,41,opt,name=F_Int32_defaulted,json=FInt32Defaulted,def=32" json:"F_Int32_defaulted,omitempty"` F_Int64Defaulted *int64 `protobuf:"varint,42,opt,name=F_Int64_defaulted,json=FInt64Defaulted,def=64" json:"F_Int64_defaulted,omitempty"` F_Fixed32Defaulted *uint32 `protobuf:"fixed32,43,opt,name=F_Fixed32_defaulted,json=FFixed32Defaulted,def=320" json:"F_Fixed32_defaulted,omitempty"` F_Fixed64Defaulted *uint64 `protobuf:"fixed64,44,opt,name=F_Fixed64_defaulted,json=FFixed64Defaulted,def=640" json:"F_Fixed64_defaulted,omitempty"` F_Uint32Defaulted *uint32 `protobuf:"varint,45,opt,name=F_Uint32_defaulted,json=FUint32Defaulted,def=3200" json:"F_Uint32_defaulted,omitempty"` F_Uint64Defaulted *uint64 `protobuf:"varint,46,opt,name=F_Uint64_defaulted,json=FUint64Defaulted,def=6400" json:"F_Uint64_defaulted,omitempty"` F_FloatDefaulted *float32 `protobuf:"fixed32,47,opt,name=F_Float_defaulted,json=FFloatDefaulted,def=314159" json:"F_Float_defaulted,omitempty"` F_DoubleDefaulted *float64 `protobuf:"fixed64,48,opt,name=F_Double_defaulted,json=FDoubleDefaulted,def=271828" json:"F_Double_defaulted,omitempty"` F_StringDefaulted *string `protobuf:"bytes,49,opt,name=F_String_defaulted,json=FStringDefaulted,def=hello, \"world!\"\n" json:"F_String_defaulted,omitempty"` F_BytesDefaulted []byte `protobuf:"bytes,401,opt,name=F_Bytes_defaulted,json=FBytesDefaulted,def=Bignose" json:"F_Bytes_defaulted,omitempty"` F_Sint32Defaulted *int32 `protobuf:"zigzag32,402,opt,name=F_Sint32_defaulted,json=FSint32Defaulted,def=-32" json:"F_Sint32_defaulted,omitempty"` F_Sint64Defaulted *int64 `protobuf:"zigzag64,403,opt,name=F_Sint64_defaulted,json=FSint64Defaulted,def=-64" json:"F_Sint64_defaulted,omitempty"` // Packed repeated fields (no string or bytes). F_BoolRepeatedPacked []bool `protobuf:"varint,50,rep,packed,name=F_Bool_repeated_packed,json=FBoolRepeatedPacked" json:"F_Bool_repeated_packed,omitempty"` F_Int32RepeatedPacked []int32 `protobuf:"varint,51,rep,packed,name=F_Int32_repeated_packed,json=FInt32RepeatedPacked" json:"F_Int32_repeated_packed,omitempty"` F_Int64RepeatedPacked []int64 `protobuf:"varint,52,rep,packed,name=F_Int64_repeated_packed,json=FInt64RepeatedPacked" json:"F_Int64_repeated_packed,omitempty"` F_Fixed32RepeatedPacked []uint32 `protobuf:"fixed32,53,rep,packed,name=F_Fixed32_repeated_packed,json=FFixed32RepeatedPacked" json:"F_Fixed32_repeated_packed,omitempty"` F_Fixed64RepeatedPacked []uint64 `protobuf:"fixed64,54,rep,packed,name=F_Fixed64_repeated_packed,json=FFixed64RepeatedPacked" json:"F_Fixed64_repeated_packed,omitempty"` F_Uint32RepeatedPacked []uint32 `protobuf:"varint,55,rep,packed,name=F_Uint32_repeated_packed,json=FUint32RepeatedPacked" json:"F_Uint32_repeated_packed,omitempty"` F_Uint64RepeatedPacked []uint64 `protobuf:"varint,56,rep,packed,name=F_Uint64_repeated_packed,json=FUint64RepeatedPacked" json:"F_Uint64_repeated_packed,omitempty"` F_FloatRepeatedPacked []float32 `protobuf:"fixed32,57,rep,packed,name=F_Float_repeated_packed,json=FFloatRepeatedPacked" json:"F_Float_repeated_packed,omitempty"` F_DoubleRepeatedPacked []float64 `protobuf:"fixed64,58,rep,packed,name=F_Double_repeated_packed,json=FDoubleRepeatedPacked" json:"F_Double_repeated_packed,omitempty"` F_Sint32RepeatedPacked []int32 `protobuf:"zigzag32,502,rep,packed,name=F_Sint32_repeated_packed,json=FSint32RepeatedPacked" json:"F_Sint32_repeated_packed,omitempty"` F_Sint64RepeatedPacked []int64 `protobuf:"zigzag64,503,rep,packed,name=F_Sint64_repeated_packed,json=FSint64RepeatedPacked" json:"F_Sint64_repeated_packed,omitempty"` Requiredgroup *GoTest_RequiredGroup `protobuf:"group,70,req,name=RequiredGroup,json=requiredgroup" json:"requiredgroup,omitempty"` Repeatedgroup []*GoTest_RepeatedGroup `protobuf:"group,80,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"` Optionalgroup *GoTest_OptionalGroup `protobuf:"group,90,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTest) Reset() { *m = GoTest{} } func (m *GoTest) String() string { return proto.CompactTextString(m) } func (*GoTest) ProtoMessage() {} func (*GoTest) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{2} } const Default_GoTest_F_BoolDefaulted bool = true const Default_GoTest_F_Int32Defaulted int32 = 32 const Default_GoTest_F_Int64Defaulted int64 = 64 const Default_GoTest_F_Fixed32Defaulted uint32 = 320 const Default_GoTest_F_Fixed64Defaulted uint64 = 640 const Default_GoTest_F_Uint32Defaulted uint32 = 3200 const Default_GoTest_F_Uint64Defaulted uint64 = 6400 const Default_GoTest_F_FloatDefaulted float32 = 314159 const Default_GoTest_F_DoubleDefaulted float64 = 271828 const Default_GoTest_F_StringDefaulted string = "hello, \"world!\"\n" var Default_GoTest_F_BytesDefaulted []byte = []byte("Bignose") const Default_GoTest_F_Sint32Defaulted int32 = -32 const Default_GoTest_F_Sint64Defaulted int64 = -64 func (m *GoTest) GetKind() GoTest_KIND { if m != nil && m.Kind != nil { return *m.Kind } return GoTest_VOID } func (m *GoTest) GetTable() string { if m != nil && m.Table != nil { return *m.Table } return "" } func (m *GoTest) GetParam() int32 { if m != nil && m.Param != nil { return *m.Param } return 0 } func (m *GoTest) GetRequiredField() *GoTestField { if m != nil { return m.RequiredField } return nil } func (m *GoTest) GetRepeatedField() []*GoTestField { if m != nil { return m.RepeatedField } return nil } func (m *GoTest) GetOptionalField() *GoTestField { if m != nil { return m.OptionalField } return nil } func (m *GoTest) GetF_BoolRequired() bool { if m != nil && m.F_BoolRequired != nil { return *m.F_BoolRequired } return false } func (m *GoTest) GetF_Int32Required() int32 { if m != nil && m.F_Int32Required != nil { return *m.F_Int32Required } return 0 } func (m *GoTest) GetF_Int64Required() int64 { if m != nil && m.F_Int64Required != nil { return *m.F_Int64Required } return 0 } func (m *GoTest) GetF_Fixed32Required() uint32 { if m != nil && m.F_Fixed32Required != nil { return *m.F_Fixed32Required } return 0 } func (m *GoTest) GetF_Fixed64Required() uint64 { if m != nil && m.F_Fixed64Required != nil { return *m.F_Fixed64Required } return 0 } func (m *GoTest) GetF_Uint32Required() uint32 { if m != nil && m.F_Uint32Required != nil { return *m.F_Uint32Required } return 0 } func (m *GoTest) GetF_Uint64Required() uint64 { if m != nil && m.F_Uint64Required != nil { return *m.F_Uint64Required } return 0 } func (m *GoTest) GetF_FloatRequired() float32 { if m != nil && m.F_FloatRequired != nil { return *m.F_FloatRequired } return 0 } func (m *GoTest) GetF_DoubleRequired() float64 { if m != nil && m.F_DoubleRequired != nil { return *m.F_DoubleRequired } return 0 } func (m *GoTest) GetF_StringRequired() string { if m != nil && m.F_StringRequired != nil { return *m.F_StringRequired } return "" } func (m *GoTest) GetF_BytesRequired() []byte { if m != nil { return m.F_BytesRequired } return nil } func (m *GoTest) GetF_Sint32Required() int32 { if m != nil && m.F_Sint32Required != nil { return *m.F_Sint32Required } return 0 } func (m *GoTest) GetF_Sint64Required() int64 { if m != nil && m.F_Sint64Required != nil { return *m.F_Sint64Required } return 0 } func (m *GoTest) GetF_BoolRepeated() []bool { if m != nil { return m.F_BoolRepeated } return nil } func (m *GoTest) GetF_Int32Repeated() []int32 { if m != nil { return m.F_Int32Repeated } return nil } func (m *GoTest) GetF_Int64Repeated() []int64 { if m != nil { return m.F_Int64Repeated } return nil } func (m *GoTest) GetF_Fixed32Repeated() []uint32 { if m != nil { return m.F_Fixed32Repeated } return nil } func (m *GoTest) GetF_Fixed64Repeated() []uint64 { if m != nil { return m.F_Fixed64Repeated } return nil } func (m *GoTest) GetF_Uint32Repeated() []uint32 { if m != nil { return m.F_Uint32Repeated } return nil } func (m *GoTest) GetF_Uint64Repeated() []uint64 { if m != nil { return m.F_Uint64Repeated } return nil } func (m *GoTest) GetF_FloatRepeated() []float32 { if m != nil { return m.F_FloatRepeated } return nil } func (m *GoTest) GetF_DoubleRepeated() []float64 { if m != nil { return m.F_DoubleRepeated } return nil } func (m *GoTest) GetF_StringRepeated() []string { if m != nil { return m.F_StringRepeated } return nil } func (m *GoTest) GetF_BytesRepeated() [][]byte { if m != nil { return m.F_BytesRepeated } return nil } func (m *GoTest) GetF_Sint32Repeated() []int32 { if m != nil { return m.F_Sint32Repeated } return nil } func (m *GoTest) GetF_Sint64Repeated() []int64 { if m != nil { return m.F_Sint64Repeated } return nil } func (m *GoTest) GetF_BoolOptional() bool { if m != nil && m.F_BoolOptional != nil { return *m.F_BoolOptional } return false } func (m *GoTest) GetF_Int32Optional() int32 { if m != nil && m.F_Int32Optional != nil { return *m.F_Int32Optional } return 0 } func (m *GoTest) GetF_Int64Optional() int64 { if m != nil && m.F_Int64Optional != nil { return *m.F_Int64Optional } return 0 } func (m *GoTest) GetF_Fixed32Optional() uint32 { if m != nil && m.F_Fixed32Optional != nil { return *m.F_Fixed32Optional } return 0 } func (m *GoTest) GetF_Fixed64Optional() uint64 { if m != nil && m.F_Fixed64Optional != nil { return *m.F_Fixed64Optional } return 0 } func (m *GoTest) GetF_Uint32Optional() uint32 { if m != nil && m.F_Uint32Optional != nil { return *m.F_Uint32Optional } return 0 } func (m *GoTest) GetF_Uint64Optional() uint64 { if m != nil && m.F_Uint64Optional != nil { return *m.F_Uint64Optional } return 0 } func (m *GoTest) GetF_FloatOptional() float32 { if m != nil && m.F_FloatOptional != nil { return *m.F_FloatOptional } return 0 } func (m *GoTest) GetF_DoubleOptional() float64 { if m != nil && m.F_DoubleOptional != nil { return *m.F_DoubleOptional } return 0 } func (m *GoTest) GetF_StringOptional() string { if m != nil && m.F_StringOptional != nil { return *m.F_StringOptional } return "" } func (m *GoTest) GetF_BytesOptional() []byte { if m != nil { return m.F_BytesOptional } return nil } func (m *GoTest) GetF_Sint32Optional() int32 { if m != nil && m.F_Sint32Optional != nil { return *m.F_Sint32Optional } return 0 } func (m *GoTest) GetF_Sint64Optional() int64 { if m != nil && m.F_Sint64Optional != nil { return *m.F_Sint64Optional } return 0 } func (m *GoTest) GetF_BoolDefaulted() bool { if m != nil && m.F_BoolDefaulted != nil { return *m.F_BoolDefaulted } return Default_GoTest_F_BoolDefaulted } func (m *GoTest) GetF_Int32Defaulted() int32 { if m != nil && m.F_Int32Defaulted != nil { return *m.F_Int32Defaulted } return Default_GoTest_F_Int32Defaulted } func (m *GoTest) GetF_Int64Defaulted() int64 { if m != nil && m.F_Int64Defaulted != nil { return *m.F_Int64Defaulted } return Default_GoTest_F_Int64Defaulted } func (m *GoTest) GetF_Fixed32Defaulted() uint32 { if m != nil && m.F_Fixed32Defaulted != nil { return *m.F_Fixed32Defaulted } return Default_GoTest_F_Fixed32Defaulted } func (m *GoTest) GetF_Fixed64Defaulted() uint64 { if m != nil && m.F_Fixed64Defaulted != nil { return *m.F_Fixed64Defaulted } return Default_GoTest_F_Fixed64Defaulted } func (m *GoTest) GetF_Uint32Defaulted() uint32 { if m != nil && m.F_Uint32Defaulted != nil { return *m.F_Uint32Defaulted } return Default_GoTest_F_Uint32Defaulted } func (m *GoTest) GetF_Uint64Defaulted() uint64 { if m != nil && m.F_Uint64Defaulted != nil { return *m.F_Uint64Defaulted } return Default_GoTest_F_Uint64Defaulted } func (m *GoTest) GetF_FloatDefaulted() float32 { if m != nil && m.F_FloatDefaulted != nil { return *m.F_FloatDefaulted } return Default_GoTest_F_FloatDefaulted } func (m *GoTest) GetF_DoubleDefaulted() float64 { if m != nil && m.F_DoubleDefaulted != nil { return *m.F_DoubleDefaulted } return Default_GoTest_F_DoubleDefaulted } func (m *GoTest) GetF_StringDefaulted() string { if m != nil && m.F_StringDefaulted != nil { return *m.F_StringDefaulted } return Default_GoTest_F_StringDefaulted } func (m *GoTest) GetF_BytesDefaulted() []byte { if m != nil && m.F_BytesDefaulted != nil { return m.F_BytesDefaulted } return append([]byte(nil), Default_GoTest_F_BytesDefaulted...) } func (m *GoTest) GetF_Sint32Defaulted() int32 { if m != nil && m.F_Sint32Defaulted != nil { return *m.F_Sint32Defaulted } return Default_GoTest_F_Sint32Defaulted } func (m *GoTest) GetF_Sint64Defaulted() int64 { if m != nil && m.F_Sint64Defaulted != nil { return *m.F_Sint64Defaulted } return Default_GoTest_F_Sint64Defaulted } func (m *GoTest) GetF_BoolRepeatedPacked() []bool { if m != nil { return m.F_BoolRepeatedPacked } return nil } func (m *GoTest) GetF_Int32RepeatedPacked() []int32 { if m != nil { return m.F_Int32RepeatedPacked } return nil } func (m *GoTest) GetF_Int64RepeatedPacked() []int64 { if m != nil { return m.F_Int64RepeatedPacked } return nil } func (m *GoTest) GetF_Fixed32RepeatedPacked() []uint32 { if m != nil { return m.F_Fixed32RepeatedPacked } return nil } func (m *GoTest) GetF_Fixed64RepeatedPacked() []uint64 { if m != nil { return m.F_Fixed64RepeatedPacked } return nil } func (m *GoTest) GetF_Uint32RepeatedPacked() []uint32 { if m != nil { return m.F_Uint32RepeatedPacked } return nil } func (m *GoTest) GetF_Uint64RepeatedPacked() []uint64 { if m != nil { return m.F_Uint64RepeatedPacked } return nil } func (m *GoTest) GetF_FloatRepeatedPacked() []float32 { if m != nil { return m.F_FloatRepeatedPacked } return nil } func (m *GoTest) GetF_DoubleRepeatedPacked() []float64 { if m != nil { return m.F_DoubleRepeatedPacked } return nil } func (m *GoTest) GetF_Sint32RepeatedPacked() []int32 { if m != nil { return m.F_Sint32RepeatedPacked } return nil } func (m *GoTest) GetF_Sint64RepeatedPacked() []int64 { if m != nil { return m.F_Sint64RepeatedPacked } return nil } func (m *GoTest) GetRequiredgroup() *GoTest_RequiredGroup { if m != nil { return m.Requiredgroup } return nil } func (m *GoTest) GetRepeatedgroup() []*GoTest_RepeatedGroup { if m != nil { return m.Repeatedgroup } return nil } func (m *GoTest) GetOptionalgroup() *GoTest_OptionalGroup { if m != nil { return m.Optionalgroup } return nil } // Required, repeated, and optional groups. type GoTest_RequiredGroup struct { RequiredField *string `protobuf:"bytes,71,req,name=RequiredField" json:"RequiredField,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTest_RequiredGroup) Reset() { *m = GoTest_RequiredGroup{} } func (m *GoTest_RequiredGroup) String() string { return proto.CompactTextString(m) } func (*GoTest_RequiredGroup) ProtoMessage() {} func (*GoTest_RequiredGroup) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{2, 0} } func (m *GoTest_RequiredGroup) GetRequiredField() string { if m != nil && m.RequiredField != nil { return *m.RequiredField } return "" } type GoTest_RepeatedGroup struct { RequiredField *string `protobuf:"bytes,81,req,name=RequiredField" json:"RequiredField,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTest_RepeatedGroup) Reset() { *m = GoTest_RepeatedGroup{} } func (m *GoTest_RepeatedGroup) String() string { return proto.CompactTextString(m) } func (*GoTest_RepeatedGroup) ProtoMessage() {} func (*GoTest_RepeatedGroup) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{2, 1} } func (m *GoTest_RepeatedGroup) GetRequiredField() string { if m != nil && m.RequiredField != nil { return *m.RequiredField } return "" } type GoTest_OptionalGroup struct { RequiredField *string `protobuf:"bytes,91,req,name=RequiredField" json:"RequiredField,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTest_OptionalGroup) Reset() { *m = GoTest_OptionalGroup{} } func (m *GoTest_OptionalGroup) String() string { return proto.CompactTextString(m) } func (*GoTest_OptionalGroup) ProtoMessage() {} func (*GoTest_OptionalGroup) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{2, 2} } func (m *GoTest_OptionalGroup) GetRequiredField() string { if m != nil && m.RequiredField != nil { return *m.RequiredField } return "" } // For testing a group containing a required field. type GoTestRequiredGroupField struct { Group *GoTestRequiredGroupField_Group `protobuf:"group,1,req,name=Group,json=group" json:"group,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTestRequiredGroupField) Reset() { *m = GoTestRequiredGroupField{} } func (m *GoTestRequiredGroupField) String() string { return proto.CompactTextString(m) } func (*GoTestRequiredGroupField) ProtoMessage() {} func (*GoTestRequiredGroupField) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{3} } func (m *GoTestRequiredGroupField) GetGroup() *GoTestRequiredGroupField_Group { if m != nil { return m.Group } return nil } type GoTestRequiredGroupField_Group struct { Field *int32 `protobuf:"varint,2,req,name=Field" json:"Field,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTestRequiredGroupField_Group) Reset() { *m = GoTestRequiredGroupField_Group{} } func (m *GoTestRequiredGroupField_Group) String() string { return proto.CompactTextString(m) } func (*GoTestRequiredGroupField_Group) ProtoMessage() {} func (*GoTestRequiredGroupField_Group) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{3, 0} } func (m *GoTestRequiredGroupField_Group) GetField() int32 { if m != nil && m.Field != nil { return *m.Field } return 0 } // For testing skipping of unrecognized fields. // Numbers are all big, larger than tag numbers in GoTestField, // the message used in the corresponding test. type GoSkipTest struct { SkipInt32 *int32 `protobuf:"varint,11,req,name=skip_int32,json=skipInt32" json:"skip_int32,omitempty"` SkipFixed32 *uint32 `protobuf:"fixed32,12,req,name=skip_fixed32,json=skipFixed32" json:"skip_fixed32,omitempty"` SkipFixed64 *uint64 `protobuf:"fixed64,13,req,name=skip_fixed64,json=skipFixed64" json:"skip_fixed64,omitempty"` SkipString *string `protobuf:"bytes,14,req,name=skip_string,json=skipString" json:"skip_string,omitempty"` Skipgroup *GoSkipTest_SkipGroup `protobuf:"group,15,req,name=SkipGroup,json=skipgroup" json:"skipgroup,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoSkipTest) Reset() { *m = GoSkipTest{} } func (m *GoSkipTest) String() string { return proto.CompactTextString(m) } func (*GoSkipTest) ProtoMessage() {} func (*GoSkipTest) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{4} } func (m *GoSkipTest) GetSkipInt32() int32 { if m != nil && m.SkipInt32 != nil { return *m.SkipInt32 } return 0 } func (m *GoSkipTest) GetSkipFixed32() uint32 { if m != nil && m.SkipFixed32 != nil { return *m.SkipFixed32 } return 0 } func (m *GoSkipTest) GetSkipFixed64() uint64 { if m != nil && m.SkipFixed64 != nil { return *m.SkipFixed64 } return 0 } func (m *GoSkipTest) GetSkipString() string { if m != nil && m.SkipString != nil { return *m.SkipString } return "" } func (m *GoSkipTest) GetSkipgroup() *GoSkipTest_SkipGroup { if m != nil { return m.Skipgroup } return nil } type GoSkipTest_SkipGroup struct { GroupInt32 *int32 `protobuf:"varint,16,req,name=group_int32,json=groupInt32" json:"group_int32,omitempty"` GroupString *string `protobuf:"bytes,17,req,name=group_string,json=groupString" json:"group_string,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoSkipTest_SkipGroup) Reset() { *m = GoSkipTest_SkipGroup{} } func (m *GoSkipTest_SkipGroup) String() string { return proto.CompactTextString(m) } func (*GoSkipTest_SkipGroup) ProtoMessage() {} func (*GoSkipTest_SkipGroup) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{4, 0} } func (m *GoSkipTest_SkipGroup) GetGroupInt32() int32 { if m != nil && m.GroupInt32 != nil { return *m.GroupInt32 } return 0 } func (m *GoSkipTest_SkipGroup) GetGroupString() string { if m != nil && m.GroupString != nil { return *m.GroupString } return "" } // For testing packed/non-packed decoder switching. // A serialized instance of one should be deserializable as the other. type NonPackedTest struct { A []int32 `protobuf:"varint,1,rep,name=a" json:"a,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NonPackedTest) Reset() { *m = NonPackedTest{} } func (m *NonPackedTest) String() string { return proto.CompactTextString(m) } func (*NonPackedTest) ProtoMessage() {} func (*NonPackedTest) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{5} } func (m *NonPackedTest) GetA() []int32 { if m != nil { return m.A } return nil } type PackedTest struct { B []int32 `protobuf:"varint,1,rep,packed,name=b" json:"b,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *PackedTest) Reset() { *m = PackedTest{} } func (m *PackedTest) String() string { return proto.CompactTextString(m) } func (*PackedTest) ProtoMessage() {} func (*PackedTest) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{6} } func (m *PackedTest) GetB() []int32 { if m != nil { return m.B } return nil } type MaxTag struct { // Maximum possible tag number. LastField *string `protobuf:"bytes,536870911,opt,name=last_field,json=lastField" json:"last_field,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MaxTag) Reset() { *m = MaxTag{} } func (m *MaxTag) String() string { return proto.CompactTextString(m) } func (*MaxTag) ProtoMessage() {} func (*MaxTag) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{7} } func (m *MaxTag) GetLastField() string { if m != nil && m.LastField != nil { return *m.LastField } return "" } type OldMessage struct { Nested *OldMessage_Nested `protobuf:"bytes,1,opt,name=nested" json:"nested,omitempty"` Num *int32 `protobuf:"varint,2,opt,name=num" json:"num,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldMessage) Reset() { *m = OldMessage{} } func (m *OldMessage) String() string { return proto.CompactTextString(m) } func (*OldMessage) ProtoMessage() {} func (*OldMessage) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{8} } func (m *OldMessage) GetNested() *OldMessage_Nested { if m != nil { return m.Nested } return nil } func (m *OldMessage) GetNum() int32 { if m != nil && m.Num != nil { return *m.Num } return 0 } type OldMessage_Nested struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldMessage_Nested) Reset() { *m = OldMessage_Nested{} } func (m *OldMessage_Nested) String() string { return proto.CompactTextString(m) } func (*OldMessage_Nested) ProtoMessage() {} func (*OldMessage_Nested) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{8, 0} } func (m *OldMessage_Nested) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } // NewMessage is wire compatible with OldMessage; // imagine it as a future version. type NewMessage struct { Nested *NewMessage_Nested `protobuf:"bytes,1,opt,name=nested" json:"nested,omitempty"` // This is an int32 in OldMessage. Num *int64 `protobuf:"varint,2,opt,name=num" json:"num,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NewMessage) Reset() { *m = NewMessage{} } func (m *NewMessage) String() string { return proto.CompactTextString(m) } func (*NewMessage) ProtoMessage() {} func (*NewMessage) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{9} } func (m *NewMessage) GetNested() *NewMessage_Nested { if m != nil { return m.Nested } return nil } func (m *NewMessage) GetNum() int64 { if m != nil && m.Num != nil { return *m.Num } return 0 } type NewMessage_Nested struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` FoodGroup *string `protobuf:"bytes,2,opt,name=food_group,json=foodGroup" json:"food_group,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NewMessage_Nested) Reset() { *m = NewMessage_Nested{} } func (m *NewMessage_Nested) String() string { return proto.CompactTextString(m) } func (*NewMessage_Nested) ProtoMessage() {} func (*NewMessage_Nested) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{9, 0} } func (m *NewMessage_Nested) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *NewMessage_Nested) GetFoodGroup() string { if m != nil && m.FoodGroup != nil { return *m.FoodGroup } return "" } type InnerMessage struct { Host *string `protobuf:"bytes,1,req,name=host" json:"host,omitempty"` Port *int32 `protobuf:"varint,2,opt,name=port,def=4000" json:"port,omitempty"` Connected *bool `protobuf:"varint,3,opt,name=connected" json:"connected,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *InnerMessage) Reset() { *m = InnerMessage{} } func (m *InnerMessage) String() string { return proto.CompactTextString(m) } func (*InnerMessage) ProtoMessage() {} func (*InnerMessage) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{10} } const Default_InnerMessage_Port int32 = 4000 func (m *InnerMessage) GetHost() string { if m != nil && m.Host != nil { return *m.Host } return "" } func (m *InnerMessage) GetPort() int32 { if m != nil && m.Port != nil { return *m.Port } return Default_InnerMessage_Port } func (m *InnerMessage) GetConnected() bool { if m != nil && m.Connected != nil { return *m.Connected } return false } type OtherMessage struct { Key *int64 `protobuf:"varint,1,opt,name=key" json:"key,omitempty"` Value []byte `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"` Weight *float32 `protobuf:"fixed32,3,opt,name=weight" json:"weight,omitempty"` Inner *InnerMessage `protobuf:"bytes,4,opt,name=inner" json:"inner,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *OtherMessage) Reset() { *m = OtherMessage{} } func (m *OtherMessage) String() string { return proto.CompactTextString(m) } func (*OtherMessage) ProtoMessage() {} func (*OtherMessage) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{11} } var extRange_OtherMessage = []proto.ExtensionRange{ {Start: 100, End: 536870911}, } func (*OtherMessage) ExtensionRangeArray() []proto.ExtensionRange { return extRange_OtherMessage } func (m *OtherMessage) GetKey() int64 { if m != nil && m.Key != nil { return *m.Key } return 0 } func (m *OtherMessage) GetValue() []byte { if m != nil { return m.Value } return nil } func (m *OtherMessage) GetWeight() float32 { if m != nil && m.Weight != nil { return *m.Weight } return 0 } func (m *OtherMessage) GetInner() *InnerMessage { if m != nil { return m.Inner } return nil } type RequiredInnerMessage struct { LeoFinallyWonAnOscar *InnerMessage `protobuf:"bytes,1,req,name=leo_finally_won_an_oscar,json=leoFinallyWonAnOscar" json:"leo_finally_won_an_oscar,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *RequiredInnerMessage) Reset() { *m = RequiredInnerMessage{} } func (m *RequiredInnerMessage) String() string { return proto.CompactTextString(m) } func (*RequiredInnerMessage) ProtoMessage() {} func (*RequiredInnerMessage) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{12} } func (m *RequiredInnerMessage) GetLeoFinallyWonAnOscar() *InnerMessage { if m != nil { return m.LeoFinallyWonAnOscar } return nil } type MyMessage struct { Count *int32 `protobuf:"varint,1,req,name=count" json:"count,omitempty"` Name *string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"` Quote *string `protobuf:"bytes,3,opt,name=quote" json:"quote,omitempty"` Pet []string `protobuf:"bytes,4,rep,name=pet" json:"pet,omitempty"` Inner *InnerMessage `protobuf:"bytes,5,opt,name=inner" json:"inner,omitempty"` Others []*OtherMessage `protobuf:"bytes,6,rep,name=others" json:"others,omitempty"` WeMustGoDeeper *RequiredInnerMessage `protobuf:"bytes,13,opt,name=we_must_go_deeper,json=weMustGoDeeper" json:"we_must_go_deeper,omitempty"` RepInner []*InnerMessage `protobuf:"bytes,12,rep,name=rep_inner,json=repInner" json:"rep_inner,omitempty"` Bikeshed *MyMessage_Color `protobuf:"varint,7,opt,name=bikeshed,enum=testdata.MyMessage_Color" json:"bikeshed,omitempty"` Somegroup *MyMessage_SomeGroup `protobuf:"group,8,opt,name=SomeGroup,json=somegroup" json:"somegroup,omitempty"` // This field becomes [][]byte in the generated code. RepBytes [][]byte `protobuf:"bytes,10,rep,name=rep_bytes,json=repBytes" json:"rep_bytes,omitempty"` Bigfloat *float64 `protobuf:"fixed64,11,opt,name=bigfloat" json:"bigfloat,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *MyMessage) Reset() { *m = MyMessage{} } func (m *MyMessage) String() string { return proto.CompactTextString(m) } func (*MyMessage) ProtoMessage() {} func (*MyMessage) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{13} } var extRange_MyMessage = []proto.ExtensionRange{ {Start: 100, End: 536870911}, } func (*MyMessage) ExtensionRangeArray() []proto.ExtensionRange { return extRange_MyMessage } func (m *MyMessage) GetCount() int32 { if m != nil && m.Count != nil { return *m.Count } return 0 } func (m *MyMessage) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *MyMessage) GetQuote() string { if m != nil && m.Quote != nil { return *m.Quote } return "" } func (m *MyMessage) GetPet() []string { if m != nil { return m.Pet } return nil } func (m *MyMessage) GetInner() *InnerMessage { if m != nil { return m.Inner } return nil } func (m *MyMessage) GetOthers() []*OtherMessage { if m != nil { return m.Others } return nil } func (m *MyMessage) GetWeMustGoDeeper() *RequiredInnerMessage { if m != nil { return m.WeMustGoDeeper } return nil } func (m *MyMessage) GetRepInner() []*InnerMessage { if m != nil { return m.RepInner } return nil } func (m *MyMessage) GetBikeshed() MyMessage_Color { if m != nil && m.Bikeshed != nil { return *m.Bikeshed } return MyMessage_RED } func (m *MyMessage) GetSomegroup() *MyMessage_SomeGroup { if m != nil { return m.Somegroup } return nil } func (m *MyMessage) GetRepBytes() [][]byte { if m != nil { return m.RepBytes } return nil } func (m *MyMessage) GetBigfloat() float64 { if m != nil && m.Bigfloat != nil { return *m.Bigfloat } return 0 } type MyMessage_SomeGroup struct { GroupField *int32 `protobuf:"varint,9,opt,name=group_field,json=groupField" json:"group_field,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MyMessage_SomeGroup) Reset() { *m = MyMessage_SomeGroup{} } func (m *MyMessage_SomeGroup) String() string { return proto.CompactTextString(m) } func (*MyMessage_SomeGroup) ProtoMessage() {} func (*MyMessage_SomeGroup) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{13, 0} } func (m *MyMessage_SomeGroup) GetGroupField() int32 { if m != nil && m.GroupField != nil { return *m.GroupField } return 0 } type Ext struct { Data *string `protobuf:"bytes,1,opt,name=data" json:"data,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Ext) Reset() { *m = Ext{} } func (m *Ext) String() string { return proto.CompactTextString(m) } func (*Ext) ProtoMessage() {} func (*Ext) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{14} } func (m *Ext) GetData() string { if m != nil && m.Data != nil { return *m.Data } return "" } var E_Ext_More = &proto.ExtensionDesc{ ExtendedType: (*MyMessage)(nil), ExtensionType: (*Ext)(nil), Field: 103, Name: "testdata.Ext.more", Tag: "bytes,103,opt,name=more", Filename: "test.proto", } var E_Ext_Text = &proto.ExtensionDesc{ ExtendedType: (*MyMessage)(nil), ExtensionType: (*string)(nil), Field: 104, Name: "testdata.Ext.text", Tag: "bytes,104,opt,name=text", Filename: "test.proto", } var E_Ext_Number = &proto.ExtensionDesc{ ExtendedType: (*MyMessage)(nil), ExtensionType: (*int32)(nil), Field: 105, Name: "testdata.Ext.number", Tag: "varint,105,opt,name=number", Filename: "test.proto", } type ComplexExtension struct { First *int32 `protobuf:"varint,1,opt,name=first" json:"first,omitempty"` Second *int32 `protobuf:"varint,2,opt,name=second" json:"second,omitempty"` Third []int32 `protobuf:"varint,3,rep,name=third" json:"third,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *ComplexExtension) Reset() { *m = ComplexExtension{} } func (m *ComplexExtension) String() string { return proto.CompactTextString(m) } func (*ComplexExtension) ProtoMessage() {} func (*ComplexExtension) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{15} } func (m *ComplexExtension) GetFirst() int32 { if m != nil && m.First != nil { return *m.First } return 0 } func (m *ComplexExtension) GetSecond() int32 { if m != nil && m.Second != nil { return *m.Second } return 0 } func (m *ComplexExtension) GetThird() []int32 { if m != nil { return m.Third } return nil } type DefaultsMessage struct { proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *DefaultsMessage) Reset() { *m = DefaultsMessage{} } func (m *DefaultsMessage) String() string { return proto.CompactTextString(m) } func (*DefaultsMessage) ProtoMessage() {} func (*DefaultsMessage) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{16} } var extRange_DefaultsMessage = []proto.ExtensionRange{ {Start: 100, End: 536870911}, } func (*DefaultsMessage) ExtensionRangeArray() []proto.ExtensionRange { return extRange_DefaultsMessage } type MyMessageSet struct { proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *MyMessageSet) Reset() { *m = MyMessageSet{} } func (m *MyMessageSet) String() string { return proto.CompactTextString(m) } func (*MyMessageSet) ProtoMessage() {} func (*MyMessageSet) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{17} } func (m *MyMessageSet) Marshal() ([]byte, error) { return proto.MarshalMessageSet(&m.XXX_InternalExtensions) } func (m *MyMessageSet) Unmarshal(buf []byte) error { return proto.UnmarshalMessageSet(buf, &m.XXX_InternalExtensions) } func (m *MyMessageSet) MarshalJSON() ([]byte, error) { return proto.MarshalMessageSetJSON(&m.XXX_InternalExtensions) } func (m *MyMessageSet) UnmarshalJSON(buf []byte) error { return proto.UnmarshalMessageSetJSON(buf, &m.XXX_InternalExtensions) } // ensure MyMessageSet satisfies proto.Marshaler and proto.Unmarshaler var _ proto.Marshaler = (*MyMessageSet)(nil) var _ proto.Unmarshaler = (*MyMessageSet)(nil) var extRange_MyMessageSet = []proto.ExtensionRange{ {Start: 100, End: 2147483646}, } func (*MyMessageSet) ExtensionRangeArray() []proto.ExtensionRange { return extRange_MyMessageSet } type Empty struct { XXX_unrecognized []byte `json:"-"` } func (m *Empty) Reset() { *m = Empty{} } func (m *Empty) String() string { return proto.CompactTextString(m) } func (*Empty) ProtoMessage() {} func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{18} } type MessageList struct { Message []*MessageList_Message `protobuf:"group,1,rep,name=Message,json=message" json:"message,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MessageList) Reset() { *m = MessageList{} } func (m *MessageList) String() string { return proto.CompactTextString(m) } func (*MessageList) ProtoMessage() {} func (*MessageList) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{19} } func (m *MessageList) GetMessage() []*MessageList_Message { if m != nil { return m.Message } return nil } type MessageList_Message struct { Name *string `protobuf:"bytes,2,req,name=name" json:"name,omitempty"` Count *int32 `protobuf:"varint,3,req,name=count" json:"count,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MessageList_Message) Reset() { *m = MessageList_Message{} } func (m *MessageList_Message) String() string { return proto.CompactTextString(m) } func (*MessageList_Message) ProtoMessage() {} func (*MessageList_Message) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{19, 0} } func (m *MessageList_Message) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *MessageList_Message) GetCount() int32 { if m != nil && m.Count != nil { return *m.Count } return 0 } type Strings struct { StringField *string `protobuf:"bytes,1,opt,name=string_field,json=stringField" json:"string_field,omitempty"` BytesField []byte `protobuf:"bytes,2,opt,name=bytes_field,json=bytesField" json:"bytes_field,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Strings) Reset() { *m = Strings{} } func (m *Strings) String() string { return proto.CompactTextString(m) } func (*Strings) ProtoMessage() {} func (*Strings) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{20} } func (m *Strings) GetStringField() string { if m != nil && m.StringField != nil { return *m.StringField } return "" } func (m *Strings) GetBytesField() []byte { if m != nil { return m.BytesField } return nil } type Defaults struct { // Default-valued fields of all basic types. // Same as GoTest, but copied here to make testing easier. F_Bool *bool `protobuf:"varint,1,opt,name=F_Bool,json=FBool,def=1" json:"F_Bool,omitempty"` F_Int32 *int32 `protobuf:"varint,2,opt,name=F_Int32,json=FInt32,def=32" json:"F_Int32,omitempty"` F_Int64 *int64 `protobuf:"varint,3,opt,name=F_Int64,json=FInt64,def=64" json:"F_Int64,omitempty"` F_Fixed32 *uint32 `protobuf:"fixed32,4,opt,name=F_Fixed32,json=FFixed32,def=320" json:"F_Fixed32,omitempty"` F_Fixed64 *uint64 `protobuf:"fixed64,5,opt,name=F_Fixed64,json=FFixed64,def=640" json:"F_Fixed64,omitempty"` F_Uint32 *uint32 `protobuf:"varint,6,opt,name=F_Uint32,json=FUint32,def=3200" json:"F_Uint32,omitempty"` F_Uint64 *uint64 `protobuf:"varint,7,opt,name=F_Uint64,json=FUint64,def=6400" json:"F_Uint64,omitempty"` F_Float *float32 `protobuf:"fixed32,8,opt,name=F_Float,json=FFloat,def=314159" json:"F_Float,omitempty"` F_Double *float64 `protobuf:"fixed64,9,opt,name=F_Double,json=FDouble,def=271828" json:"F_Double,omitempty"` F_String *string `protobuf:"bytes,10,opt,name=F_String,json=FString,def=hello, \"world!\"\n" json:"F_String,omitempty"` F_Bytes []byte `protobuf:"bytes,11,opt,name=F_Bytes,json=FBytes,def=Bignose" json:"F_Bytes,omitempty"` F_Sint32 *int32 `protobuf:"zigzag32,12,opt,name=F_Sint32,json=FSint32,def=-32" json:"F_Sint32,omitempty"` F_Sint64 *int64 `protobuf:"zigzag64,13,opt,name=F_Sint64,json=FSint64,def=-64" json:"F_Sint64,omitempty"` F_Enum *Defaults_Color `protobuf:"varint,14,opt,name=F_Enum,json=FEnum,enum=testdata.Defaults_Color,def=1" json:"F_Enum,omitempty"` // More fields with crazy defaults. F_Pinf *float32 `protobuf:"fixed32,15,opt,name=F_Pinf,json=FPinf,def=inf" json:"F_Pinf,omitempty"` F_Ninf *float32 `protobuf:"fixed32,16,opt,name=F_Ninf,json=FNinf,def=-inf" json:"F_Ninf,omitempty"` F_Nan *float32 `protobuf:"fixed32,17,opt,name=F_Nan,json=FNan,def=nan" json:"F_Nan,omitempty"` // Sub-message. Sub *SubDefaults `protobuf:"bytes,18,opt,name=sub" json:"sub,omitempty"` // Redundant but explicit defaults. StrZero *string `protobuf:"bytes,19,opt,name=str_zero,json=strZero,def=" json:"str_zero,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Defaults) Reset() { *m = Defaults{} } func (m *Defaults) String() string { return proto.CompactTextString(m) } func (*Defaults) ProtoMessage() {} func (*Defaults) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{21} } const Default_Defaults_F_Bool bool = true const Default_Defaults_F_Int32 int32 = 32 const Default_Defaults_F_Int64 int64 = 64 const Default_Defaults_F_Fixed32 uint32 = 320 const Default_Defaults_F_Fixed64 uint64 = 640 const Default_Defaults_F_Uint32 uint32 = 3200 const Default_Defaults_F_Uint64 uint64 = 6400 const Default_Defaults_F_Float float32 = 314159 const Default_Defaults_F_Double float64 = 271828 const Default_Defaults_F_String string = "hello, \"world!\"\n" var Default_Defaults_F_Bytes []byte = []byte("Bignose") const Default_Defaults_F_Sint32 int32 = -32 const Default_Defaults_F_Sint64 int64 = -64 const Default_Defaults_F_Enum Defaults_Color = Defaults_GREEN var Default_Defaults_F_Pinf float32 = float32(math.Inf(1)) var Default_Defaults_F_Ninf float32 = float32(math.Inf(-1)) var Default_Defaults_F_Nan float32 = float32(math.NaN()) func (m *Defaults) GetF_Bool() bool { if m != nil && m.F_Bool != nil { return *m.F_Bool } return Default_Defaults_F_Bool } func (m *Defaults) GetF_Int32() int32 { if m != nil && m.F_Int32 != nil { return *m.F_Int32 } return Default_Defaults_F_Int32 } func (m *Defaults) GetF_Int64() int64 { if m != nil && m.F_Int64 != nil { return *m.F_Int64 } return Default_Defaults_F_Int64 } func (m *Defaults) GetF_Fixed32() uint32 { if m != nil && m.F_Fixed32 != nil { return *m.F_Fixed32 } return Default_Defaults_F_Fixed32 } func (m *Defaults) GetF_Fixed64() uint64 { if m != nil && m.F_Fixed64 != nil { return *m.F_Fixed64 } return Default_Defaults_F_Fixed64 } func (m *Defaults) GetF_Uint32() uint32 { if m != nil && m.F_Uint32 != nil { return *m.F_Uint32 } return Default_Defaults_F_Uint32 } func (m *Defaults) GetF_Uint64() uint64 { if m != nil && m.F_Uint64 != nil { return *m.F_Uint64 } return Default_Defaults_F_Uint64 } func (m *Defaults) GetF_Float() float32 { if m != nil && m.F_Float != nil { return *m.F_Float } return Default_Defaults_F_Float } func (m *Defaults) GetF_Double() float64 { if m != nil && m.F_Double != nil { return *m.F_Double } return Default_Defaults_F_Double } func (m *Defaults) GetF_String() string { if m != nil && m.F_String != nil { return *m.F_String } return Default_Defaults_F_String } func (m *Defaults) GetF_Bytes() []byte { if m != nil && m.F_Bytes != nil { return m.F_Bytes } return append([]byte(nil), Default_Defaults_F_Bytes...) } func (m *Defaults) GetF_Sint32() int32 { if m != nil && m.F_Sint32 != nil { return *m.F_Sint32 } return Default_Defaults_F_Sint32 } func (m *Defaults) GetF_Sint64() int64 { if m != nil && m.F_Sint64 != nil { return *m.F_Sint64 } return Default_Defaults_F_Sint64 } func (m *Defaults) GetF_Enum() Defaults_Color { if m != nil && m.F_Enum != nil { return *m.F_Enum } return Default_Defaults_F_Enum } func (m *Defaults) GetF_Pinf() float32 { if m != nil && m.F_Pinf != nil { return *m.F_Pinf } return Default_Defaults_F_Pinf } func (m *Defaults) GetF_Ninf() float32 { if m != nil && m.F_Ninf != nil { return *m.F_Ninf } return Default_Defaults_F_Ninf } func (m *Defaults) GetF_Nan() float32 { if m != nil && m.F_Nan != nil { return *m.F_Nan } return Default_Defaults_F_Nan } func (m *Defaults) GetSub() *SubDefaults { if m != nil { return m.Sub } return nil } func (m *Defaults) GetStrZero() string { if m != nil && m.StrZero != nil { return *m.StrZero } return "" } type SubDefaults struct { N *int64 `protobuf:"varint,1,opt,name=n,def=7" json:"n,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *SubDefaults) Reset() { *m = SubDefaults{} } func (m *SubDefaults) String() string { return proto.CompactTextString(m) } func (*SubDefaults) ProtoMessage() {} func (*SubDefaults) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{22} } const Default_SubDefaults_N int64 = 7 func (m *SubDefaults) GetN() int64 { if m != nil && m.N != nil { return *m.N } return Default_SubDefaults_N } type RepeatedEnum struct { Color []RepeatedEnum_Color `protobuf:"varint,1,rep,name=color,enum=testdata.RepeatedEnum_Color" json:"color,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *RepeatedEnum) Reset() { *m = RepeatedEnum{} } func (m *RepeatedEnum) String() string { return proto.CompactTextString(m) } func (*RepeatedEnum) ProtoMessage() {} func (*RepeatedEnum) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{23} } func (m *RepeatedEnum) GetColor() []RepeatedEnum_Color { if m != nil { return m.Color } return nil } type MoreRepeated struct { Bools []bool `protobuf:"varint,1,rep,name=bools" json:"bools,omitempty"` BoolsPacked []bool `protobuf:"varint,2,rep,packed,name=bools_packed,json=boolsPacked" json:"bools_packed,omitempty"` Ints []int32 `protobuf:"varint,3,rep,name=ints" json:"ints,omitempty"` IntsPacked []int32 `protobuf:"varint,4,rep,packed,name=ints_packed,json=intsPacked" json:"ints_packed,omitempty"` Int64SPacked []int64 `protobuf:"varint,7,rep,packed,name=int64s_packed,json=int64sPacked" json:"int64s_packed,omitempty"` Strings []string `protobuf:"bytes,5,rep,name=strings" json:"strings,omitempty"` Fixeds []uint32 `protobuf:"fixed32,6,rep,name=fixeds" json:"fixeds,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MoreRepeated) Reset() { *m = MoreRepeated{} } func (m *MoreRepeated) String() string { return proto.CompactTextString(m) } func (*MoreRepeated) ProtoMessage() {} func (*MoreRepeated) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{24} } func (m *MoreRepeated) GetBools() []bool { if m != nil { return m.Bools } return nil } func (m *MoreRepeated) GetBoolsPacked() []bool { if m != nil { return m.BoolsPacked } return nil } func (m *MoreRepeated) GetInts() []int32 { if m != nil { return m.Ints } return nil } func (m *MoreRepeated) GetIntsPacked() []int32 { if m != nil { return m.IntsPacked } return nil } func (m *MoreRepeated) GetInt64SPacked() []int64 { if m != nil { return m.Int64SPacked } return nil } func (m *MoreRepeated) GetStrings() []string { if m != nil { return m.Strings } return nil } func (m *MoreRepeated) GetFixeds() []uint32 { if m != nil { return m.Fixeds } return nil } type GroupOld struct { G *GroupOld_G `protobuf:"group,101,opt,name=G,json=g" json:"g,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GroupOld) Reset() { *m = GroupOld{} } func (m *GroupOld) String() string { return proto.CompactTextString(m) } func (*GroupOld) ProtoMessage() {} func (*GroupOld) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{25} } func (m *GroupOld) GetG() *GroupOld_G { if m != nil { return m.G } return nil } type GroupOld_G struct { X *int32 `protobuf:"varint,2,opt,name=x" json:"x,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GroupOld_G) Reset() { *m = GroupOld_G{} } func (m *GroupOld_G) String() string { return proto.CompactTextString(m) } func (*GroupOld_G) ProtoMessage() {} func (*GroupOld_G) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{25, 0} } func (m *GroupOld_G) GetX() int32 { if m != nil && m.X != nil { return *m.X } return 0 } type GroupNew struct { G *GroupNew_G `protobuf:"group,101,opt,name=G,json=g" json:"g,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GroupNew) Reset() { *m = GroupNew{} } func (m *GroupNew) String() string { return proto.CompactTextString(m) } func (*GroupNew) ProtoMessage() {} func (*GroupNew) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{26} } func (m *GroupNew) GetG() *GroupNew_G { if m != nil { return m.G } return nil } type GroupNew_G struct { X *int32 `protobuf:"varint,2,opt,name=x" json:"x,omitempty"` Y *int32 `protobuf:"varint,3,opt,name=y" json:"y,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GroupNew_G) Reset() { *m = GroupNew_G{} } func (m *GroupNew_G) String() string { return proto.CompactTextString(m) } func (*GroupNew_G) ProtoMessage() {} func (*GroupNew_G) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{26, 0} } func (m *GroupNew_G) GetX() int32 { if m != nil && m.X != nil { return *m.X } return 0 } func (m *GroupNew_G) GetY() int32 { if m != nil && m.Y != nil { return *m.Y } return 0 } type FloatingPoint struct { F *float64 `protobuf:"fixed64,1,req,name=f" json:"f,omitempty"` Exact *bool `protobuf:"varint,2,opt,name=exact" json:"exact,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *FloatingPoint) Reset() { *m = FloatingPoint{} } func (m *FloatingPoint) String() string { return proto.CompactTextString(m) } func (*FloatingPoint) ProtoMessage() {} func (*FloatingPoint) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{27} } func (m *FloatingPoint) GetF() float64 { if m != nil && m.F != nil { return *m.F } return 0 } func (m *FloatingPoint) GetExact() bool { if m != nil && m.Exact != nil { return *m.Exact } return false } type MessageWithMap struct { NameMapping map[int32]string `protobuf:"bytes,1,rep,name=name_mapping,json=nameMapping" json:"name_mapping,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` MsgMapping map[int64]*FloatingPoint `protobuf:"bytes,2,rep,name=msg_mapping,json=msgMapping" json:"msg_mapping,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` ByteMapping map[bool][]byte `protobuf:"bytes,3,rep,name=byte_mapping,json=byteMapping" json:"byte_mapping,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StrToStr map[string]string `protobuf:"bytes,4,rep,name=str_to_str,json=strToStr" json:"str_to_str,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *MessageWithMap) Reset() { *m = MessageWithMap{} } func (m *MessageWithMap) String() string { return proto.CompactTextString(m) } func (*MessageWithMap) ProtoMessage() {} func (*MessageWithMap) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{28} } func (m *MessageWithMap) GetNameMapping() map[int32]string { if m != nil { return m.NameMapping } return nil } func (m *MessageWithMap) GetMsgMapping() map[int64]*FloatingPoint { if m != nil { return m.MsgMapping } return nil } func (m *MessageWithMap) GetByteMapping() map[bool][]byte { if m != nil { return m.ByteMapping } return nil } func (m *MessageWithMap) GetStrToStr() map[string]string { if m != nil { return m.StrToStr } return nil } type Oneof struct { // Types that are valid to be assigned to Union: // *Oneof_F_Bool // *Oneof_F_Int32 // *Oneof_F_Int64 // *Oneof_F_Fixed32 // *Oneof_F_Fixed64 // *Oneof_F_Uint32 // *Oneof_F_Uint64 // *Oneof_F_Float // *Oneof_F_Double // *Oneof_F_String // *Oneof_F_Bytes // *Oneof_F_Sint32 // *Oneof_F_Sint64 // *Oneof_F_Enum // *Oneof_F_Message // *Oneof_FGroup // *Oneof_F_Largest_Tag Union isOneof_Union `protobuf_oneof:"union"` // Types that are valid to be assigned to Tormato: // *Oneof_Value Tormato isOneof_Tormato `protobuf_oneof:"tormato"` XXX_unrecognized []byte `json:"-"` } func (m *Oneof) Reset() { *m = Oneof{} } func (m *Oneof) String() string { return proto.CompactTextString(m) } func (*Oneof) ProtoMessage() {} func (*Oneof) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{29} } type isOneof_Union interface { isOneof_Union() } type isOneof_Tormato interface { isOneof_Tormato() } type Oneof_F_Bool struct { F_Bool bool `protobuf:"varint,1,opt,name=F_Bool,json=FBool,oneof"` } type Oneof_F_Int32 struct { F_Int32 int32 `protobuf:"varint,2,opt,name=F_Int32,json=FInt32,oneof"` } type Oneof_F_Int64 struct { F_Int64 int64 `protobuf:"varint,3,opt,name=F_Int64,json=FInt64,oneof"` } type Oneof_F_Fixed32 struct { F_Fixed32 uint32 `protobuf:"fixed32,4,opt,name=F_Fixed32,json=FFixed32,oneof"` } type Oneof_F_Fixed64 struct { F_Fixed64 uint64 `protobuf:"fixed64,5,opt,name=F_Fixed64,json=FFixed64,oneof"` } type Oneof_F_Uint32 struct { F_Uint32 uint32 `protobuf:"varint,6,opt,name=F_Uint32,json=FUint32,oneof"` } type Oneof_F_Uint64 struct { F_Uint64 uint64 `protobuf:"varint,7,opt,name=F_Uint64,json=FUint64,oneof"` } type Oneof_F_Float struct { F_Float float32 `protobuf:"fixed32,8,opt,name=F_Float,json=FFloat,oneof"` } type Oneof_F_Double struct { F_Double float64 `protobuf:"fixed64,9,opt,name=F_Double,json=FDouble,oneof"` } type Oneof_F_String struct { F_String string `protobuf:"bytes,10,opt,name=F_String,json=FString,oneof"` } type Oneof_F_Bytes struct { F_Bytes []byte `protobuf:"bytes,11,opt,name=F_Bytes,json=FBytes,oneof"` } type Oneof_F_Sint32 struct { F_Sint32 int32 `protobuf:"zigzag32,12,opt,name=F_Sint32,json=FSint32,oneof"` } type Oneof_F_Sint64 struct { F_Sint64 int64 `protobuf:"zigzag64,13,opt,name=F_Sint64,json=FSint64,oneof"` } type Oneof_F_Enum struct { F_Enum MyMessage_Color `protobuf:"varint,14,opt,name=F_Enum,json=FEnum,enum=testdata.MyMessage_Color,oneof"` } type Oneof_F_Message struct { F_Message *GoTestField `protobuf:"bytes,15,opt,name=F_Message,json=FMessage,oneof"` } type Oneof_FGroup struct { FGroup *Oneof_F_Group `protobuf:"group,16,opt,name=F_Group,json=fGroup,oneof"` } type Oneof_F_Largest_Tag struct { F_Largest_Tag int32 `protobuf:"varint,536870911,opt,name=F_Largest_Tag,json=FLargestTag,oneof"` } type Oneof_Value struct { Value int32 `protobuf:"varint,100,opt,name=value,oneof"` } func (*Oneof_F_Bool) isOneof_Union() {} func (*Oneof_F_Int32) isOneof_Union() {} func (*Oneof_F_Int64) isOneof_Union() {} func (*Oneof_F_Fixed32) isOneof_Union() {} func (*Oneof_F_Fixed64) isOneof_Union() {} func (*Oneof_F_Uint32) isOneof_Union() {} func (*Oneof_F_Uint64) isOneof_Union() {} func (*Oneof_F_Float) isOneof_Union() {} func (*Oneof_F_Double) isOneof_Union() {} func (*Oneof_F_String) isOneof_Union() {} func (*Oneof_F_Bytes) isOneof_Union() {} func (*Oneof_F_Sint32) isOneof_Union() {} func (*Oneof_F_Sint64) isOneof_Union() {} func (*Oneof_F_Enum) isOneof_Union() {} func (*Oneof_F_Message) isOneof_Union() {} func (*Oneof_FGroup) isOneof_Union() {} func (*Oneof_F_Largest_Tag) isOneof_Union() {} func (*Oneof_Value) isOneof_Tormato() {} func (m *Oneof) GetUnion() isOneof_Union { if m != nil { return m.Union } return nil } func (m *Oneof) GetTormato() isOneof_Tormato { if m != nil { return m.Tormato } return nil } func (m *Oneof) GetF_Bool() bool { if x, ok := m.GetUnion().(*Oneof_F_Bool); ok { return x.F_Bool } return false } func (m *Oneof) GetF_Int32() int32 { if x, ok := m.GetUnion().(*Oneof_F_Int32); ok { return x.F_Int32 } return 0 } func (m *Oneof) GetF_Int64() int64 { if x, ok := m.GetUnion().(*Oneof_F_Int64); ok { return x.F_Int64 } return 0 } func (m *Oneof) GetF_Fixed32() uint32 { if x, ok := m.GetUnion().(*Oneof_F_Fixed32); ok { return x.F_Fixed32 } return 0 } func (m *Oneof) GetF_Fixed64() uint64 { if x, ok := m.GetUnion().(*Oneof_F_Fixed64); ok { return x.F_Fixed64 } return 0 } func (m *Oneof) GetF_Uint32() uint32 { if x, ok := m.GetUnion().(*Oneof_F_Uint32); ok { return x.F_Uint32 } return 0 } func (m *Oneof) GetF_Uint64() uint64 { if x, ok := m.GetUnion().(*Oneof_F_Uint64); ok { return x.F_Uint64 } return 0 } func (m *Oneof) GetF_Float() float32 { if x, ok := m.GetUnion().(*Oneof_F_Float); ok { return x.F_Float } return 0 } func (m *Oneof) GetF_Double() float64 { if x, ok := m.GetUnion().(*Oneof_F_Double); ok { return x.F_Double } return 0 } func (m *Oneof) GetF_String() string { if x, ok := m.GetUnion().(*Oneof_F_String); ok { return x.F_String } return "" } func (m *Oneof) GetF_Bytes() []byte { if x, ok := m.GetUnion().(*Oneof_F_Bytes); ok { return x.F_Bytes } return nil } func (m *Oneof) GetF_Sint32() int32 { if x, ok := m.GetUnion().(*Oneof_F_Sint32); ok { return x.F_Sint32 } return 0 } func (m *Oneof) GetF_Sint64() int64 { if x, ok := m.GetUnion().(*Oneof_F_Sint64); ok { return x.F_Sint64 } return 0 } func (m *Oneof) GetF_Enum() MyMessage_Color { if x, ok := m.GetUnion().(*Oneof_F_Enum); ok { return x.F_Enum } return MyMessage_RED } func (m *Oneof) GetF_Message() *GoTestField { if x, ok := m.GetUnion().(*Oneof_F_Message); ok { return x.F_Message } return nil } func (m *Oneof) GetFGroup() *Oneof_F_Group { if x, ok := m.GetUnion().(*Oneof_FGroup); ok { return x.FGroup } return nil } func (m *Oneof) GetF_Largest_Tag() int32 { if x, ok := m.GetUnion().(*Oneof_F_Largest_Tag); ok { return x.F_Largest_Tag } return 0 } func (m *Oneof) GetValue() int32 { if x, ok := m.GetTormato().(*Oneof_Value); ok { return x.Value } return 0 } // XXX_OneofFuncs is for the internal use of the proto package. func (*Oneof) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _Oneof_OneofMarshaler, _Oneof_OneofUnmarshaler, _Oneof_OneofSizer, []interface{}{ (*Oneof_F_Bool)(nil), (*Oneof_F_Int32)(nil), (*Oneof_F_Int64)(nil), (*Oneof_F_Fixed32)(nil), (*Oneof_F_Fixed64)(nil), (*Oneof_F_Uint32)(nil), (*Oneof_F_Uint64)(nil), (*Oneof_F_Float)(nil), (*Oneof_F_Double)(nil), (*Oneof_F_String)(nil), (*Oneof_F_Bytes)(nil), (*Oneof_F_Sint32)(nil), (*Oneof_F_Sint64)(nil), (*Oneof_F_Enum)(nil), (*Oneof_F_Message)(nil), (*Oneof_FGroup)(nil), (*Oneof_F_Largest_Tag)(nil), (*Oneof_Value)(nil), } } func _Oneof_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*Oneof) // union switch x := m.Union.(type) { case *Oneof_F_Bool: t := uint64(0) if x.F_Bool { t = 1 } _ = b.EncodeVarint(1<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *Oneof_F_Int32: _ = b.EncodeVarint(2<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.F_Int32)) case *Oneof_F_Int64: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.F_Int64)) case *Oneof_F_Fixed32: _ = b.EncodeVarint(4<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.F_Fixed32)) case *Oneof_F_Fixed64: _ = b.EncodeVarint(5<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.F_Fixed64)) case *Oneof_F_Uint32: _ = b.EncodeVarint(6<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.F_Uint32)) case *Oneof_F_Uint64: _ = b.EncodeVarint(7<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.F_Uint64)) case *Oneof_F_Float: _ = b.EncodeVarint(8<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.F_Float))) case *Oneof_F_Double: _ = b.EncodeVarint(9<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.F_Double)) case *Oneof_F_String: _ = b.EncodeVarint(10<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.F_String) case *Oneof_F_Bytes: _ = b.EncodeVarint(11<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.F_Bytes) case *Oneof_F_Sint32: _ = b.EncodeVarint(12<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.F_Sint32)) case *Oneof_F_Sint64: _ = b.EncodeVarint(13<<3 | proto.WireVarint) _ = b.EncodeZigzag64(uint64(x.F_Sint64)) case *Oneof_F_Enum: _ = b.EncodeVarint(14<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.F_Enum)) case *Oneof_F_Message: _ = b.EncodeVarint(15<<3 | proto.WireBytes) if err := b.EncodeMessage(x.F_Message); err != nil { return err } case *Oneof_FGroup: _ = b.EncodeVarint(16<<3 | proto.WireStartGroup) if err := b.Marshal(x.FGroup); err != nil { return err } _ = b.EncodeVarint(16<<3 | proto.WireEndGroup) case *Oneof_F_Largest_Tag: _ = b.EncodeVarint(536870911<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.F_Largest_Tag)) case nil: default: return fmt.Errorf("Oneof.Union has unexpected type %T", x) } // tormato switch x := m.Tormato.(type) { case *Oneof_Value: _ = b.EncodeVarint(100<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Value)) case nil: default: return fmt.Errorf("Oneof.Tormato has unexpected type %T", x) } return nil } func _Oneof_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*Oneof) switch tag { case 1: // union.F_Bool if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Oneof_F_Bool{x != 0} return true, err case 2: // union.F_Int32 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Oneof_F_Int32{int32(x)} return true, err case 3: // union.F_Int64 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Oneof_F_Int64{int64(x)} return true, err case 4: // union.F_Fixed32 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.Union = &Oneof_F_Fixed32{uint32(x)} return true, err case 5: // union.F_Fixed64 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.Union = &Oneof_F_Fixed64{x} return true, err case 6: // union.F_Uint32 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Oneof_F_Uint32{uint32(x)} return true, err case 7: // union.F_Uint64 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Oneof_F_Uint64{x} return true, err case 8: // union.F_Float if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.Union = &Oneof_F_Float{math.Float32frombits(uint32(x))} return true, err case 9: // union.F_Double if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.Union = &Oneof_F_Double{math.Float64frombits(x)} return true, err case 10: // union.F_String if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Union = &Oneof_F_String{x} return true, err case 11: // union.F_Bytes if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.Union = &Oneof_F_Bytes{x} return true, err case 12: // union.F_Sint32 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.Union = &Oneof_F_Sint32{int32(x)} return true, err case 13: // union.F_Sint64 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag64() m.Union = &Oneof_F_Sint64{int64(x)} return true, err case 14: // union.F_Enum if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Oneof_F_Enum{MyMessage_Color(x)} return true, err case 15: // union.F_Message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(GoTestField) err := b.DecodeMessage(msg) m.Union = &Oneof_F_Message{msg} return true, err case 16: // union.f_group if wire != proto.WireStartGroup { return true, proto.ErrInternalBadWireType } msg := new(Oneof_F_Group) err := b.DecodeGroup(msg) m.Union = &Oneof_FGroup{msg} return true, err case 536870911: // union.F_Largest_Tag if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Oneof_F_Largest_Tag{int32(x)} return true, err case 100: // tormato.value if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Tormato = &Oneof_Value{int32(x)} return true, err default: return false, nil } } func _Oneof_OneofSizer(msg proto.Message) (n int) { m := msg.(*Oneof) // union switch x := m.Union.(type) { case *Oneof_F_Bool: n += proto.SizeVarint(1<<3 | proto.WireVarint) n += 1 case *Oneof_F_Int32: n += proto.SizeVarint(2<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.F_Int32)) case *Oneof_F_Int64: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.F_Int64)) case *Oneof_F_Fixed32: n += proto.SizeVarint(4<<3 | proto.WireFixed32) n += 4 case *Oneof_F_Fixed64: n += proto.SizeVarint(5<<3 | proto.WireFixed64) n += 8 case *Oneof_F_Uint32: n += proto.SizeVarint(6<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.F_Uint32)) case *Oneof_F_Uint64: n += proto.SizeVarint(7<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.F_Uint64)) case *Oneof_F_Float: n += proto.SizeVarint(8<<3 | proto.WireFixed32) n += 4 case *Oneof_F_Double: n += proto.SizeVarint(9<<3 | proto.WireFixed64) n += 8 case *Oneof_F_String: n += proto.SizeVarint(10<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.F_String))) n += len(x.F_String) case *Oneof_F_Bytes: n += proto.SizeVarint(11<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.F_Bytes))) n += len(x.F_Bytes) case *Oneof_F_Sint32: n += proto.SizeVarint(12<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.F_Sint32) << 1) ^ uint32((int32(x.F_Sint32) >> 31)))) case *Oneof_F_Sint64: n += proto.SizeVarint(13<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(uint64(x.F_Sint64<<1) ^ uint64((int64(x.F_Sint64) >> 63)))) case *Oneof_F_Enum: n += proto.SizeVarint(14<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.F_Enum)) case *Oneof_F_Message: s := proto.Size(x.F_Message) n += proto.SizeVarint(15<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *Oneof_FGroup: n += proto.SizeVarint(16<<3 | proto.WireStartGroup) n += proto.Size(x.FGroup) n += proto.SizeVarint(16<<3 | proto.WireEndGroup) case *Oneof_F_Largest_Tag: n += proto.SizeVarint(536870911<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.F_Largest_Tag)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } // tormato switch x := m.Tormato.(type) { case *Oneof_Value: n += proto.SizeVarint(100<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Value)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type Oneof_F_Group struct { X *int32 `protobuf:"varint,17,opt,name=x" json:"x,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Oneof_F_Group) Reset() { *m = Oneof_F_Group{} } func (m *Oneof_F_Group) String() string { return proto.CompactTextString(m) } func (*Oneof_F_Group) ProtoMessage() {} func (*Oneof_F_Group) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{29, 0} } func (m *Oneof_F_Group) GetX() int32 { if m != nil && m.X != nil { return *m.X } return 0 } type Communique struct { MakeMeCry *bool `protobuf:"varint,1,opt,name=make_me_cry,json=makeMeCry" json:"make_me_cry,omitempty"` // This is a oneof, called "union". // // Types that are valid to be assigned to Union: // *Communique_Number // *Communique_Name // *Communique_Data // *Communique_TempC // *Communique_Col // *Communique_Msg Union isCommunique_Union `protobuf_oneof:"union"` XXX_unrecognized []byte `json:"-"` } func (m *Communique) Reset() { *m = Communique{} } func (m *Communique) String() string { return proto.CompactTextString(m) } func (*Communique) ProtoMessage() {} func (*Communique) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{30} } type isCommunique_Union interface { isCommunique_Union() } type Communique_Number struct { Number int32 `protobuf:"varint,5,opt,name=number,oneof"` } type Communique_Name struct { Name string `protobuf:"bytes,6,opt,name=name,oneof"` } type Communique_Data struct { Data []byte `protobuf:"bytes,7,opt,name=data,oneof"` } type Communique_TempC struct { TempC float64 `protobuf:"fixed64,8,opt,name=temp_c,json=tempC,oneof"` } type Communique_Col struct { Col MyMessage_Color `protobuf:"varint,9,opt,name=col,enum=testdata.MyMessage_Color,oneof"` } type Communique_Msg struct { Msg *Strings `protobuf:"bytes,10,opt,name=msg,oneof"` } func (*Communique_Number) isCommunique_Union() {} func (*Communique_Name) isCommunique_Union() {} func (*Communique_Data) isCommunique_Union() {} func (*Communique_TempC) isCommunique_Union() {} func (*Communique_Col) isCommunique_Union() {} func (*Communique_Msg) isCommunique_Union() {} func (m *Communique) GetUnion() isCommunique_Union { if m != nil { return m.Union } return nil } func (m *Communique) GetMakeMeCry() bool { if m != nil && m.MakeMeCry != nil { return *m.MakeMeCry } return false } func (m *Communique) GetNumber() int32 { if x, ok := m.GetUnion().(*Communique_Number); ok { return x.Number } return 0 } func (m *Communique) GetName() string { if x, ok := m.GetUnion().(*Communique_Name); ok { return x.Name } return "" } func (m *Communique) GetData() []byte { if x, ok := m.GetUnion().(*Communique_Data); ok { return x.Data } return nil } func (m *Communique) GetTempC() float64 { if x, ok := m.GetUnion().(*Communique_TempC); ok { return x.TempC } return 0 } func (m *Communique) GetCol() MyMessage_Color { if x, ok := m.GetUnion().(*Communique_Col); ok { return x.Col } return MyMessage_RED } func (m *Communique) GetMsg() *Strings { if x, ok := m.GetUnion().(*Communique_Msg); ok { return x.Msg } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*Communique) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _Communique_OneofMarshaler, _Communique_OneofUnmarshaler, _Communique_OneofSizer, []interface{}{ (*Communique_Number)(nil), (*Communique_Name)(nil), (*Communique_Data)(nil), (*Communique_TempC)(nil), (*Communique_Col)(nil), (*Communique_Msg)(nil), } } func _Communique_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*Communique) // union switch x := m.Union.(type) { case *Communique_Number: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Number)) case *Communique_Name: _ = b.EncodeVarint(6<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Name) case *Communique_Data: _ = b.EncodeVarint(7<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Data) case *Communique_TempC: _ = b.EncodeVarint(8<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.TempC)) case *Communique_Col: _ = b.EncodeVarint(9<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Col)) case *Communique_Msg: _ = b.EncodeVarint(10<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Msg); err != nil { return err } case nil: default: return fmt.Errorf("Communique.Union has unexpected type %T", x) } return nil } func _Communique_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*Communique) switch tag { case 5: // union.number if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Communique_Number{int32(x)} return true, err case 6: // union.name if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Union = &Communique_Name{x} return true, err case 7: // union.data if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.Union = &Communique_Data{x} return true, err case 8: // union.temp_c if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.Union = &Communique_TempC{math.Float64frombits(x)} return true, err case 9: // union.col if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Communique_Col{MyMessage_Color(x)} return true, err case 10: // union.msg if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Strings) err := b.DecodeMessage(msg) m.Union = &Communique_Msg{msg} return true, err default: return false, nil } } func _Communique_OneofSizer(msg proto.Message) (n int) { m := msg.(*Communique) // union switch x := m.Union.(type) { case *Communique_Number: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Number)) case *Communique_Name: n += proto.SizeVarint(6<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Name))) n += len(x.Name) case *Communique_Data: n += proto.SizeVarint(7<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Data))) n += len(x.Data) case *Communique_TempC: n += proto.SizeVarint(8<<3 | proto.WireFixed64) n += 8 case *Communique_Col: n += proto.SizeVarint(9<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Col)) case *Communique_Msg: s := proto.Size(x.Msg) n += proto.SizeVarint(10<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } var E_Greeting = &proto.ExtensionDesc{ ExtendedType: (*MyMessage)(nil), ExtensionType: ([]string)(nil), Field: 106, Name: "testdata.greeting", Tag: "bytes,106,rep,name=greeting", Filename: "test.proto", } var E_Complex = &proto.ExtensionDesc{ ExtendedType: (*OtherMessage)(nil), ExtensionType: (*ComplexExtension)(nil), Field: 200, Name: "testdata.complex", Tag: "bytes,200,opt,name=complex", Filename: "test.proto", } var E_RComplex = &proto.ExtensionDesc{ ExtendedType: (*OtherMessage)(nil), ExtensionType: ([]*ComplexExtension)(nil), Field: 201, Name: "testdata.r_complex", Tag: "bytes,201,rep,name=r_complex,json=rComplex", Filename: "test.proto", } var E_NoDefaultDouble = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*float64)(nil), Field: 101, Name: "testdata.no_default_double", Tag: "fixed64,101,opt,name=no_default_double,json=noDefaultDouble", Filename: "test.proto", } var E_NoDefaultFloat = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*float32)(nil), Field: 102, Name: "testdata.no_default_float", Tag: "fixed32,102,opt,name=no_default_float,json=noDefaultFloat", Filename: "test.proto", } var E_NoDefaultInt32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int32)(nil), Field: 103, Name: "testdata.no_default_int32", Tag: "varint,103,opt,name=no_default_int32,json=noDefaultInt32", Filename: "test.proto", } var E_NoDefaultInt64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int64)(nil), Field: 104, Name: "testdata.no_default_int64", Tag: "varint,104,opt,name=no_default_int64,json=noDefaultInt64", Filename: "test.proto", } var E_NoDefaultUint32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*uint32)(nil), Field: 105, Name: "testdata.no_default_uint32", Tag: "varint,105,opt,name=no_default_uint32,json=noDefaultUint32", Filename: "test.proto", } var E_NoDefaultUint64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*uint64)(nil), Field: 106, Name: "testdata.no_default_uint64", Tag: "varint,106,opt,name=no_default_uint64,json=noDefaultUint64", Filename: "test.proto", } var E_NoDefaultSint32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int32)(nil), Field: 107, Name: "testdata.no_default_sint32", Tag: "zigzag32,107,opt,name=no_default_sint32,json=noDefaultSint32", Filename: "test.proto", } var E_NoDefaultSint64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int64)(nil), Field: 108, Name: "testdata.no_default_sint64", Tag: "zigzag64,108,opt,name=no_default_sint64,json=noDefaultSint64", Filename: "test.proto", } var E_NoDefaultFixed32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*uint32)(nil), Field: 109, Name: "testdata.no_default_fixed32", Tag: "fixed32,109,opt,name=no_default_fixed32,json=noDefaultFixed32", Filename: "test.proto", } var E_NoDefaultFixed64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*uint64)(nil), Field: 110, Name: "testdata.no_default_fixed64", Tag: "fixed64,110,opt,name=no_default_fixed64,json=noDefaultFixed64", Filename: "test.proto", } var E_NoDefaultSfixed32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int32)(nil), Field: 111, Name: "testdata.no_default_sfixed32", Tag: "fixed32,111,opt,name=no_default_sfixed32,json=noDefaultSfixed32", Filename: "test.proto", } var E_NoDefaultSfixed64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int64)(nil), Field: 112, Name: "testdata.no_default_sfixed64", Tag: "fixed64,112,opt,name=no_default_sfixed64,json=noDefaultSfixed64", Filename: "test.proto", } var E_NoDefaultBool = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*bool)(nil), Field: 113, Name: "testdata.no_default_bool", Tag: "varint,113,opt,name=no_default_bool,json=noDefaultBool", Filename: "test.proto", } var E_NoDefaultString = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*string)(nil), Field: 114, Name: "testdata.no_default_string", Tag: "bytes,114,opt,name=no_default_string,json=noDefaultString", Filename: "test.proto", } var E_NoDefaultBytes = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: ([]byte)(nil), Field: 115, Name: "testdata.no_default_bytes", Tag: "bytes,115,opt,name=no_default_bytes,json=noDefaultBytes", Filename: "test.proto", } var E_NoDefaultEnum = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*DefaultsMessage_DefaultsEnum)(nil), Field: 116, Name: "testdata.no_default_enum", Tag: "varint,116,opt,name=no_default_enum,json=noDefaultEnum,enum=testdata.DefaultsMessage_DefaultsEnum", Filename: "test.proto", } var E_DefaultDouble = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*float64)(nil), Field: 201, Name: "testdata.default_double", Tag: "fixed64,201,opt,name=default_double,json=defaultDouble,def=3.1415", Filename: "test.proto", } var E_DefaultFloat = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*float32)(nil), Field: 202, Name: "testdata.default_float", Tag: "fixed32,202,opt,name=default_float,json=defaultFloat,def=3.14", Filename: "test.proto", } var E_DefaultInt32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int32)(nil), Field: 203, Name: "testdata.default_int32", Tag: "varint,203,opt,name=default_int32,json=defaultInt32,def=42", Filename: "test.proto", } var E_DefaultInt64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int64)(nil), Field: 204, Name: "testdata.default_int64", Tag: "varint,204,opt,name=default_int64,json=defaultInt64,def=43", Filename: "test.proto", } var E_DefaultUint32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*uint32)(nil), Field: 205, Name: "testdata.default_uint32", Tag: "varint,205,opt,name=default_uint32,json=defaultUint32,def=44", Filename: "test.proto", } var E_DefaultUint64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*uint64)(nil), Field: 206, Name: "testdata.default_uint64", Tag: "varint,206,opt,name=default_uint64,json=defaultUint64,def=45", Filename: "test.proto", } var E_DefaultSint32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int32)(nil), Field: 207, Name: "testdata.default_sint32", Tag: "zigzag32,207,opt,name=default_sint32,json=defaultSint32,def=46", Filename: "test.proto", } var E_DefaultSint64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int64)(nil), Field: 208, Name: "testdata.default_sint64", Tag: "zigzag64,208,opt,name=default_sint64,json=defaultSint64,def=47", Filename: "test.proto", } var E_DefaultFixed32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*uint32)(nil), Field: 209, Name: "testdata.default_fixed32", Tag: "fixed32,209,opt,name=default_fixed32,json=defaultFixed32,def=48", Filename: "test.proto", } var E_DefaultFixed64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*uint64)(nil), Field: 210, Name: "testdata.default_fixed64", Tag: "fixed64,210,opt,name=default_fixed64,json=defaultFixed64,def=49", Filename: "test.proto", } var E_DefaultSfixed32 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int32)(nil), Field: 211, Name: "testdata.default_sfixed32", Tag: "fixed32,211,opt,name=default_sfixed32,json=defaultSfixed32,def=50", Filename: "test.proto", } var E_DefaultSfixed64 = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*int64)(nil), Field: 212, Name: "testdata.default_sfixed64", Tag: "fixed64,212,opt,name=default_sfixed64,json=defaultSfixed64,def=51", Filename: "test.proto", } var E_DefaultBool = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*bool)(nil), Field: 213, Name: "testdata.default_bool", Tag: "varint,213,opt,name=default_bool,json=defaultBool,def=1", Filename: "test.proto", } var E_DefaultString = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*string)(nil), Field: 214, Name: "testdata.default_string", Tag: "bytes,214,opt,name=default_string,json=defaultString,def=Hello, string", Filename: "test.proto", } var E_DefaultBytes = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: ([]byte)(nil), Field: 215, Name: "testdata.default_bytes", Tag: "bytes,215,opt,name=default_bytes,json=defaultBytes,def=Hello, bytes", Filename: "test.proto", } var E_DefaultEnum = &proto.ExtensionDesc{ ExtendedType: (*DefaultsMessage)(nil), ExtensionType: (*DefaultsMessage_DefaultsEnum)(nil), Field: 216, Name: "testdata.default_enum", Tag: "varint,216,opt,name=default_enum,json=defaultEnum,enum=testdata.DefaultsMessage_DefaultsEnum,def=1", Filename: "test.proto", } var E_X201 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 201, Name: "testdata.x201", Tag: "bytes,201,opt,name=x201", Filename: "test.proto", } var E_X202 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 202, Name: "testdata.x202", Tag: "bytes,202,opt,name=x202", Filename: "test.proto", } var E_X203 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 203, Name: "testdata.x203", Tag: "bytes,203,opt,name=x203", Filename: "test.proto", } var E_X204 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 204, Name: "testdata.x204", Tag: "bytes,204,opt,name=x204", Filename: "test.proto", } var E_X205 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 205, Name: "testdata.x205", Tag: "bytes,205,opt,name=x205", Filename: "test.proto", } var E_X206 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 206, Name: "testdata.x206", Tag: "bytes,206,opt,name=x206", Filename: "test.proto", } var E_X207 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 207, Name: "testdata.x207", Tag: "bytes,207,opt,name=x207", Filename: "test.proto", } var E_X208 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 208, Name: "testdata.x208", Tag: "bytes,208,opt,name=x208", Filename: "test.proto", } var E_X209 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 209, Name: "testdata.x209", Tag: "bytes,209,opt,name=x209", Filename: "test.proto", } var E_X210 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 210, Name: "testdata.x210", Tag: "bytes,210,opt,name=x210", Filename: "test.proto", } var E_X211 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 211, Name: "testdata.x211", Tag: "bytes,211,opt,name=x211", Filename: "test.proto", } var E_X212 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 212, Name: "testdata.x212", Tag: "bytes,212,opt,name=x212", Filename: "test.proto", } var E_X213 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 213, Name: "testdata.x213", Tag: "bytes,213,opt,name=x213", Filename: "test.proto", } var E_X214 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 214, Name: "testdata.x214", Tag: "bytes,214,opt,name=x214", Filename: "test.proto", } var E_X215 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 215, Name: "testdata.x215", Tag: "bytes,215,opt,name=x215", Filename: "test.proto", } var E_X216 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 216, Name: "testdata.x216", Tag: "bytes,216,opt,name=x216", Filename: "test.proto", } var E_X217 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 217, Name: "testdata.x217", Tag: "bytes,217,opt,name=x217", Filename: "test.proto", } var E_X218 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 218, Name: "testdata.x218", Tag: "bytes,218,opt,name=x218", Filename: "test.proto", } var E_X219 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 219, Name: "testdata.x219", Tag: "bytes,219,opt,name=x219", Filename: "test.proto", } var E_X220 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 220, Name: "testdata.x220", Tag: "bytes,220,opt,name=x220", Filename: "test.proto", } var E_X221 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 221, Name: "testdata.x221", Tag: "bytes,221,opt,name=x221", Filename: "test.proto", } var E_X222 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 222, Name: "testdata.x222", Tag: "bytes,222,opt,name=x222", Filename: "test.proto", } var E_X223 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 223, Name: "testdata.x223", Tag: "bytes,223,opt,name=x223", Filename: "test.proto", } var E_X224 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 224, Name: "testdata.x224", Tag: "bytes,224,opt,name=x224", Filename: "test.proto", } var E_X225 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 225, Name: "testdata.x225", Tag: "bytes,225,opt,name=x225", Filename: "test.proto", } var E_X226 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 226, Name: "testdata.x226", Tag: "bytes,226,opt,name=x226", Filename: "test.proto", } var E_X227 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 227, Name: "testdata.x227", Tag: "bytes,227,opt,name=x227", Filename: "test.proto", } var E_X228 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 228, Name: "testdata.x228", Tag: "bytes,228,opt,name=x228", Filename: "test.proto", } var E_X229 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 229, Name: "testdata.x229", Tag: "bytes,229,opt,name=x229", Filename: "test.proto", } var E_X230 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 230, Name: "testdata.x230", Tag: "bytes,230,opt,name=x230", Filename: "test.proto", } var E_X231 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 231, Name: "testdata.x231", Tag: "bytes,231,opt,name=x231", Filename: "test.proto", } var E_X232 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 232, Name: "testdata.x232", Tag: "bytes,232,opt,name=x232", Filename: "test.proto", } var E_X233 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 233, Name: "testdata.x233", Tag: "bytes,233,opt,name=x233", Filename: "test.proto", } var E_X234 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 234, Name: "testdata.x234", Tag: "bytes,234,opt,name=x234", Filename: "test.proto", } var E_X235 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 235, Name: "testdata.x235", Tag: "bytes,235,opt,name=x235", Filename: "test.proto", } var E_X236 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 236, Name: "testdata.x236", Tag: "bytes,236,opt,name=x236", Filename: "test.proto", } var E_X237 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 237, Name: "testdata.x237", Tag: "bytes,237,opt,name=x237", Filename: "test.proto", } var E_X238 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 238, Name: "testdata.x238", Tag: "bytes,238,opt,name=x238", Filename: "test.proto", } var E_X239 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 239, Name: "testdata.x239", Tag: "bytes,239,opt,name=x239", Filename: "test.proto", } var E_X240 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 240, Name: "testdata.x240", Tag: "bytes,240,opt,name=x240", Filename: "test.proto", } var E_X241 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 241, Name: "testdata.x241", Tag: "bytes,241,opt,name=x241", Filename: "test.proto", } var E_X242 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 242, Name: "testdata.x242", Tag: "bytes,242,opt,name=x242", Filename: "test.proto", } var E_X243 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 243, Name: "testdata.x243", Tag: "bytes,243,opt,name=x243", Filename: "test.proto", } var E_X244 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 244, Name: "testdata.x244", Tag: "bytes,244,opt,name=x244", Filename: "test.proto", } var E_X245 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 245, Name: "testdata.x245", Tag: "bytes,245,opt,name=x245", Filename: "test.proto", } var E_X246 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 246, Name: "testdata.x246", Tag: "bytes,246,opt,name=x246", Filename: "test.proto", } var E_X247 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 247, Name: "testdata.x247", Tag: "bytes,247,opt,name=x247", Filename: "test.proto", } var E_X248 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 248, Name: "testdata.x248", Tag: "bytes,248,opt,name=x248", Filename: "test.proto", } var E_X249 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 249, Name: "testdata.x249", Tag: "bytes,249,opt,name=x249", Filename: "test.proto", } var E_X250 = &proto.ExtensionDesc{ ExtendedType: (*MyMessageSet)(nil), ExtensionType: (*Empty)(nil), Field: 250, Name: "testdata.x250", Tag: "bytes,250,opt,name=x250", Filename: "test.proto", } func init() { proto.RegisterType((*GoEnum)(nil), "testdata.GoEnum") proto.RegisterType((*GoTestField)(nil), "testdata.GoTestField") proto.RegisterType((*GoTest)(nil), "testdata.GoTest") proto.RegisterType((*GoTest_RequiredGroup)(nil), "testdata.GoTest.RequiredGroup") proto.RegisterType((*GoTest_RepeatedGroup)(nil), "testdata.GoTest.RepeatedGroup") proto.RegisterType((*GoTest_OptionalGroup)(nil), "testdata.GoTest.OptionalGroup") proto.RegisterType((*GoTestRequiredGroupField)(nil), "testdata.GoTestRequiredGroupField") proto.RegisterType((*GoTestRequiredGroupField_Group)(nil), "testdata.GoTestRequiredGroupField.Group") proto.RegisterType((*GoSkipTest)(nil), "testdata.GoSkipTest") proto.RegisterType((*GoSkipTest_SkipGroup)(nil), "testdata.GoSkipTest.SkipGroup") proto.RegisterType((*NonPackedTest)(nil), "testdata.NonPackedTest") proto.RegisterType((*PackedTest)(nil), "testdata.PackedTest") proto.RegisterType((*MaxTag)(nil), "testdata.MaxTag") proto.RegisterType((*OldMessage)(nil), "testdata.OldMessage") proto.RegisterType((*OldMessage_Nested)(nil), "testdata.OldMessage.Nested") proto.RegisterType((*NewMessage)(nil), "testdata.NewMessage") proto.RegisterType((*NewMessage_Nested)(nil), "testdata.NewMessage.Nested") proto.RegisterType((*InnerMessage)(nil), "testdata.InnerMessage") proto.RegisterType((*OtherMessage)(nil), "testdata.OtherMessage") proto.RegisterType((*RequiredInnerMessage)(nil), "testdata.RequiredInnerMessage") proto.RegisterType((*MyMessage)(nil), "testdata.MyMessage") proto.RegisterType((*MyMessage_SomeGroup)(nil), "testdata.MyMessage.SomeGroup") proto.RegisterType((*Ext)(nil), "testdata.Ext") proto.RegisterType((*ComplexExtension)(nil), "testdata.ComplexExtension") proto.RegisterType((*DefaultsMessage)(nil), "testdata.DefaultsMessage") proto.RegisterType((*MyMessageSet)(nil), "testdata.MyMessageSet") proto.RegisterType((*Empty)(nil), "testdata.Empty") proto.RegisterType((*MessageList)(nil), "testdata.MessageList") proto.RegisterType((*MessageList_Message)(nil), "testdata.MessageList.Message") proto.RegisterType((*Strings)(nil), "testdata.Strings") proto.RegisterType((*Defaults)(nil), "testdata.Defaults") proto.RegisterType((*SubDefaults)(nil), "testdata.SubDefaults") proto.RegisterType((*RepeatedEnum)(nil), "testdata.RepeatedEnum") proto.RegisterType((*MoreRepeated)(nil), "testdata.MoreRepeated") proto.RegisterType((*GroupOld)(nil), "testdata.GroupOld") proto.RegisterType((*GroupOld_G)(nil), "testdata.GroupOld.G") proto.RegisterType((*GroupNew)(nil), "testdata.GroupNew") proto.RegisterType((*GroupNew_G)(nil), "testdata.GroupNew.G") proto.RegisterType((*FloatingPoint)(nil), "testdata.FloatingPoint") proto.RegisterType((*MessageWithMap)(nil), "testdata.MessageWithMap") proto.RegisterType((*Oneof)(nil), "testdata.Oneof") proto.RegisterType((*Oneof_F_Group)(nil), "testdata.Oneof.F_Group") proto.RegisterType((*Communique)(nil), "testdata.Communique") proto.RegisterEnum("testdata.FOO", FOO_name, FOO_value) proto.RegisterEnum("testdata.GoTest_KIND", GoTest_KIND_name, GoTest_KIND_value) proto.RegisterEnum("testdata.MyMessage_Color", MyMessage_Color_name, MyMessage_Color_value) proto.RegisterEnum("testdata.DefaultsMessage_DefaultsEnum", DefaultsMessage_DefaultsEnum_name, DefaultsMessage_DefaultsEnum_value) proto.RegisterEnum("testdata.Defaults_Color", Defaults_Color_name, Defaults_Color_value) proto.RegisterEnum("testdata.RepeatedEnum_Color", RepeatedEnum_Color_name, RepeatedEnum_Color_value) proto.RegisterExtension(E_Ext_More) proto.RegisterExtension(E_Ext_Text) proto.RegisterExtension(E_Ext_Number) proto.RegisterExtension(E_Greeting) proto.RegisterExtension(E_Complex) proto.RegisterExtension(E_RComplex) proto.RegisterExtension(E_NoDefaultDouble) proto.RegisterExtension(E_NoDefaultFloat) proto.RegisterExtension(E_NoDefaultInt32) proto.RegisterExtension(E_NoDefaultInt64) proto.RegisterExtension(E_NoDefaultUint32) proto.RegisterExtension(E_NoDefaultUint64) proto.RegisterExtension(E_NoDefaultSint32) proto.RegisterExtension(E_NoDefaultSint64) proto.RegisterExtension(E_NoDefaultFixed32) proto.RegisterExtension(E_NoDefaultFixed64) proto.RegisterExtension(E_NoDefaultSfixed32) proto.RegisterExtension(E_NoDefaultSfixed64) proto.RegisterExtension(E_NoDefaultBool) proto.RegisterExtension(E_NoDefaultString) proto.RegisterExtension(E_NoDefaultBytes) proto.RegisterExtension(E_NoDefaultEnum) proto.RegisterExtension(E_DefaultDouble) proto.RegisterExtension(E_DefaultFloat) proto.RegisterExtension(E_DefaultInt32) proto.RegisterExtension(E_DefaultInt64) proto.RegisterExtension(E_DefaultUint32) proto.RegisterExtension(E_DefaultUint64) proto.RegisterExtension(E_DefaultSint32) proto.RegisterExtension(E_DefaultSint64) proto.RegisterExtension(E_DefaultFixed32) proto.RegisterExtension(E_DefaultFixed64) proto.RegisterExtension(E_DefaultSfixed32) proto.RegisterExtension(E_DefaultSfixed64) proto.RegisterExtension(E_DefaultBool) proto.RegisterExtension(E_DefaultString) proto.RegisterExtension(E_DefaultBytes) proto.RegisterExtension(E_DefaultEnum) proto.RegisterExtension(E_X201) proto.RegisterExtension(E_X202) proto.RegisterExtension(E_X203) proto.RegisterExtension(E_X204) proto.RegisterExtension(E_X205) proto.RegisterExtension(E_X206) proto.RegisterExtension(E_X207) proto.RegisterExtension(E_X208) proto.RegisterExtension(E_X209) proto.RegisterExtension(E_X210) proto.RegisterExtension(E_X211) proto.RegisterExtension(E_X212) proto.RegisterExtension(E_X213) proto.RegisterExtension(E_X214) proto.RegisterExtension(E_X215) proto.RegisterExtension(E_X216) proto.RegisterExtension(E_X217) proto.RegisterExtension(E_X218) proto.RegisterExtension(E_X219) proto.RegisterExtension(E_X220) proto.RegisterExtension(E_X221) proto.RegisterExtension(E_X222) proto.RegisterExtension(E_X223) proto.RegisterExtension(E_X224) proto.RegisterExtension(E_X225) proto.RegisterExtension(E_X226) proto.RegisterExtension(E_X227) proto.RegisterExtension(E_X228) proto.RegisterExtension(E_X229) proto.RegisterExtension(E_X230) proto.RegisterExtension(E_X231) proto.RegisterExtension(E_X232) proto.RegisterExtension(E_X233) proto.RegisterExtension(E_X234) proto.RegisterExtension(E_X235) proto.RegisterExtension(E_X236) proto.RegisterExtension(E_X237) proto.RegisterExtension(E_X238) proto.RegisterExtension(E_X239) proto.RegisterExtension(E_X240) proto.RegisterExtension(E_X241) proto.RegisterExtension(E_X242) proto.RegisterExtension(E_X243) proto.RegisterExtension(E_X244) proto.RegisterExtension(E_X245) proto.RegisterExtension(E_X246) proto.RegisterExtension(E_X247) proto.RegisterExtension(E_X248) proto.RegisterExtension(E_X249) proto.RegisterExtension(E_X250) } func init() { proto.RegisterFile("test.proto", fileDescriptorTest) } var fileDescriptorTest = []byte{ // 4453 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x5a, 0xc9, 0x77, 0xdb, 0x48, 0x7a, 0x37, 0xc0, 0xfd, 0x23, 0x25, 0x42, 0x65, 0xb5, 0x9b, 0x96, 0xbc, 0xc0, 0x9c, 0xe9, 0x6e, 0x7a, 0xd3, 0x48, 0x20, 0x44, 0xdb, 0x74, 0xa7, 0xdf, 0xf3, 0x42, 0xca, 0x7a, 0x63, 0x89, 0x0a, 0xa4, 0xee, 0x7e, 0xd3, 0x39, 0xf0, 0x51, 0x22, 0x44, 0xb3, 0x4d, 0x02, 0x34, 0x09, 0xc5, 0x52, 0x72, 0xe9, 0x4b, 0x72, 0xcd, 0x76, 0xc9, 0x35, 0xa7, 0x9c, 0x92, 0xbc, 0x97, 0x7f, 0x22, 0xe9, 0xee, 0x59, 0x7b, 0xd6, 0xac, 0x93, 0x7d, 0x99, 0xec, 0xdb, 0x4c, 0x92, 0x4b, 0xcf, 0xab, 0xaf, 0x0a, 0x40, 0x01, 0x24, 0x20, 0xf9, 0x24, 0x56, 0xd5, 0xef, 0xf7, 0xd5, 0xf6, 0xab, 0xef, 0xab, 0xaf, 0x20, 0x00, 0xc7, 0x9c, 0x38, 0x2b, 0xa3, 0xb1, 0xed, 0xd8, 0x24, 0x4b, 0x7f, 0x77, 0x3b, 0x4e, 0xa7, 0x7c, 0x1d, 0xd2, 0x1b, 0x76, 0xc3, 0x3a, 0x1a, 0x92, 0xab, 0x90, 0x38, 0xb4, 0xed, 0x92, 0xa4, 0xca, 0x95, 0x79, 0x6d, 0x6e, 0xc5, 0x45, 0xac, 0x34, 0x5b, 0x2d, 0x83, 0xb6, 0x94, 0xef, 0x40, 0x7e, 0xc3, 0xde, 0x33, 0x27, 0x4e, 0xb3, 0x6f, 0x0e, 0xba, 0x64, 0x11, 0x52, 0x4f, 0x3b, 0xfb, 0xe6, 0x00, 0x19, 0x39, 0x83, 0x15, 0x08, 0x81, 0xe4, 0xde, 0xc9, 0xc8, 0x2c, 0xc9, 0x58, 0x89, 0xbf, 0xcb, 0xbf, 0x72, 0x85, 0x76, 0x42, 0x99, 0xe4, 0x3a, 0x24, 0xbf, 0xdc, 0xb7, 0xba, 0xbc, 0x97, 0xd7, 0xfc, 0x5e, 0x58, 0xfb, 0xca, 0x97, 0x37, 0xb7, 0x1f, 0x1b, 0x08, 0xa1, 0xf6, 0xf7, 0x3a, 0xfb, 0x03, 0x6a, 0x4a, 0xa2, 0xf6, 0xb1, 0x40, 0x6b, 0x77, 0x3a, 0xe3, 0xce, 0xb0, 0x94, 0x50, 0xa5, 0x4a, 0xca, 0x60, 0x05, 0x72, 0x1f, 0xe6, 0x0c, 0xf3, 0xc5, 0x51, 0x7f, 0x6c, 0x76, 0x71, 0x70, 0xa5, 0xa4, 0x2a, 0x57, 0xf2, 0xd3, 0xf6, 0xb1, 0xd1, 0x08, 0x62, 0x19, 0x79, 0x64, 0x76, 0x1c, 0x97, 0x9c, 0x52, 0x13, 0xb1, 0x64, 0x01, 0x4b, 0xc9, 0xad, 0x91, 0xd3, 0xb7, 0xad, 0xce, 0x80, 0x91, 0xd3, 0xaa, 0x14, 0x43, 0x0e, 0x60, 0xc9, 0x9b, 0x50, 0x6c, 0xb6, 0x1f, 0xda, 0xf6, 0xa0, 0x3d, 0xe6, 0x23, 0x2a, 0x81, 0x2a, 0x57, 0xb2, 0xc6, 0x5c, 0x93, 0xd6, 0xba, 0xc3, 0x24, 0x15, 0x50, 0x9a, 0xed, 0x4d, 0xcb, 0xa9, 0x6a, 0x3e, 0x30, 0xaf, 0xca, 0x95, 0x94, 0x31, 0xdf, 0xc4, 0xea, 0x29, 0x64, 0x4d, 0xf7, 0x91, 0x05, 0x55, 0xae, 0x24, 0x18, 0xb2, 0xa6, 0x7b, 0xc8, 0x5b, 0x40, 0x9a, 0xed, 0x66, 0xff, 0xd8, 0xec, 0x8a, 0x56, 0xe7, 0x54, 0xb9, 0x92, 0x31, 0x94, 0x26, 0x6f, 0x98, 0x81, 0x16, 0x2d, 0xcf, 0xab, 0x72, 0x25, 0xed, 0xa2, 0x05, 0xdb, 0x37, 0x60, 0xa1, 0xd9, 0x7e, 0xb7, 0x1f, 0x1c, 0x70, 0x51, 0x95, 0x2b, 0x73, 0x46, 0xb1, 0xc9, 0xea, 0xa7, 0xb1, 0xa2, 0x61, 0x45, 0x95, 0x2b, 0x49, 0x8e, 0x15, 0xec, 0xe2, 0xec, 0x9a, 0x03, 0xbb, 0xe3, 0xf8, 0xd0, 0x05, 0x55, 0xae, 0xc8, 0xc6, 0x7c, 0x13, 0xab, 0x83, 0x56, 0x1f, 0xdb, 0x47, 0xfb, 0x03, 0xd3, 0x87, 0x12, 0x55, 0xae, 0x48, 0x46, 0xb1, 0xc9, 0xea, 0x83, 0xd8, 0x5d, 0x67, 0xdc, 0xb7, 0x7a, 0x3e, 0xf6, 0x3c, 0xea, 0xb7, 0xd8, 0x64, 0xf5, 0xc1, 0x11, 0x3c, 0x3c, 0x71, 0xcc, 0x89, 0x0f, 0x35, 0x55, 0xb9, 0x52, 0x30, 0xe6, 0x9b, 0x58, 0x1d, 0xb2, 0x1a, 0x5a, 0x83, 0x43, 0x55, 0xae, 0x2c, 0x50, 0xab, 0x33, 0xd6, 0x60, 0x37, 0xb4, 0x06, 0x3d, 0x55, 0xae, 0x10, 0x8e, 0x15, 0xd6, 0x40, 0xd4, 0x0c, 0x13, 0x62, 0x69, 0x51, 0x4d, 0x08, 0x9a, 0x61, 0x95, 0x41, 0xcd, 0x70, 0xe0, 0x6b, 0x6a, 0x42, 0xd4, 0x4c, 0x08, 0x89, 0x9d, 0x73, 0xe4, 0x05, 0x35, 0x21, 0x6a, 0x86, 0x23, 0x43, 0x9a, 0xe1, 0xd8, 0xd7, 0xd5, 0x44, 0x50, 0x33, 0x53, 0x68, 0xd1, 0x72, 0x49, 0x4d, 0x04, 0x35, 0xc3, 0xd1, 0x41, 0xcd, 0x70, 0xf0, 0x45, 0x35, 0x11, 0xd0, 0x4c, 0x18, 0x2b, 0x1a, 0x5e, 0x52, 0x13, 0x01, 0xcd, 0x88, 0xb3, 0x73, 0x35, 0xc3, 0xa1, 0xcb, 0x6a, 0x42, 0xd4, 0x8c, 0x68, 0xd5, 0xd3, 0x0c, 0x87, 0x5e, 0x52, 0x13, 0x01, 0xcd, 0x88, 0x58, 0x4f, 0x33, 0x1c, 0x7b, 0x59, 0x4d, 0x04, 0x34, 0xc3, 0xb1, 0xd7, 0x45, 0xcd, 0x70, 0xe8, 0xc7, 0x92, 0x9a, 0x10, 0x45, 0xc3, 0xa1, 0x37, 0x03, 0xa2, 0xe1, 0xd8, 0x4f, 0x28, 0x56, 0x54, 0x4d, 0x18, 0x2c, 0xae, 0xc2, 0xa7, 0x14, 0x2c, 0xca, 0x86, 0x83, 0x7d, 0xd9, 0xd8, 0xdc, 0x05, 0x95, 0xae, 0xa8, 0x92, 0x27, 0x1b, 0xd7, 0x2f, 0x89, 0xb2, 0xf1, 0x80, 0x57, 0xd1, 0xd5, 0x72, 0xd9, 0x4c, 0x21, 0x6b, 0xba, 0x8f, 0x54, 0x55, 0xc9, 0x97, 0x8d, 0x87, 0x0c, 0xc8, 0xc6, 0xc3, 0x5e, 0x53, 0x25, 0x51, 0x36, 0x33, 0xd0, 0xa2, 0xe5, 0xb2, 0x2a, 0x89, 0xb2, 0xf1, 0xd0, 0xa2, 0x6c, 0x3c, 0xf0, 0x17, 0x54, 0x49, 0x90, 0xcd, 0x34, 0x56, 0x34, 0xfc, 0x45, 0x55, 0x12, 0x64, 0x13, 0x9c, 0x1d, 0x93, 0x8d, 0x07, 0x7d, 0x43, 0x95, 0x7c, 0xd9, 0x04, 0xad, 0x72, 0xd9, 0x78, 0xd0, 0x37, 0x55, 0x49, 0x90, 0x4d, 0x10, 0xcb, 0x65, 0xe3, 0x61, 0xdf, 0xc2, 0xf8, 0xe6, 0xca, 0xc6, 0xc3, 0x0a, 0xb2, 0xf1, 0xa0, 0xbf, 0x43, 0x63, 0xa1, 0x27, 0x1b, 0x0f, 0x2a, 0xca, 0xc6, 0xc3, 0xfe, 0x2e, 0xc5, 0xfa, 0xb2, 0x99, 0x06, 0x8b, 0xab, 0xf0, 0x7b, 0x14, 0xec, 0xcb, 0xc6, 0x03, 0xaf, 0xe0, 0x20, 0xa8, 0x6c, 0xba, 0xe6, 0x61, 0xe7, 0x68, 0x40, 0x25, 0x56, 0xa1, 0xba, 0xa9, 0x27, 0x9d, 0xf1, 0x91, 0x49, 0x47, 0x62, 0xdb, 0x83, 0xc7, 0x6e, 0x1b, 0x59, 0xa1, 0xc6, 0x99, 0x7c, 0x7c, 0xc2, 0x75, 0xaa, 0x9f, 0xba, 0x5c, 0xd5, 0x8c, 0x22, 0xd3, 0xd0, 0x34, 0xbe, 0xa6, 0x0b, 0xf8, 0x1b, 0x54, 0x45, 0x75, 0xb9, 0xa6, 0x33, 0x7c, 0x4d, 0xf7, 0xf1, 0x55, 0x38, 0xef, 0x4b, 0xc9, 0x67, 0xdc, 0xa4, 0x5a, 0xaa, 0x27, 0xaa, 0xda, 0xaa, 0xb1, 0xe0, 0x0a, 0x6a, 0x16, 0x29, 0xd0, 0xcd, 0x2d, 0x2a, 0xa9, 0x7a, 0xa2, 0xa6, 0x7b, 0x24, 0xb1, 0x27, 0x8d, 0xca, 0x90, 0x0b, 0xcb, 0xe7, 0xdc, 0xa6, 0xca, 0xaa, 0x27, 0xab, 0xda, 0xea, 0xaa, 0xa1, 0x70, 0x7d, 0xcd, 0xe0, 0x04, 0xfa, 0x59, 0xa1, 0x0a, 0xab, 0x27, 0x6b, 0xba, 0xc7, 0x09, 0xf6, 0xb3, 0xe0, 0x0a, 0xcd, 0xa7, 0x7c, 0x89, 0x2a, 0xad, 0x9e, 0xae, 0xae, 0xe9, 0x6b, 0xeb, 0xf7, 0x8c, 0x22, 0x53, 0x9c, 0xcf, 0xd1, 0x69, 0x3f, 0x5c, 0x72, 0x3e, 0x69, 0x95, 0x6a, 0xae, 0x9e, 0xd6, 0xee, 0xac, 0xdd, 0xd5, 0xee, 0x1a, 0x0a, 0xd7, 0x9e, 0xcf, 0x7a, 0x87, 0xb2, 0xb8, 0xf8, 0x7c, 0xd6, 0x1a, 0x55, 0x5f, 0x5d, 0x79, 0x66, 0x0e, 0x06, 0xf6, 0x2d, 0xb5, 0xfc, 0xd2, 0x1e, 0x0f, 0xba, 0xd7, 0xca, 0x60, 0x28, 0x5c, 0x8f, 0x62, 0xaf, 0x0b, 0xae, 0x20, 0x7d, 0xfa, 0xaf, 0xd1, 0x7b, 0x58, 0xa1, 0x9e, 0x79, 0xd8, 0xef, 0x59, 0xf6, 0xc4, 0x34, 0x8a, 0x4c, 0x9a, 0xa1, 0x35, 0xd9, 0x0d, 0xaf, 0xe3, 0xaf, 0x53, 0xda, 0x42, 0x3d, 0x71, 0xbb, 0xaa, 0xd1, 0x9e, 0x66, 0xad, 0xe3, 0x6e, 0x78, 0x1d, 0x7f, 0x83, 0x72, 0x48, 0x3d, 0x71, 0xbb, 0xa6, 0x73, 0x8e, 0xb8, 0x8e, 0x77, 0xe0, 0x42, 0x28, 0x2e, 0xb6, 0x47, 0x9d, 0x83, 0xe7, 0x66, 0xb7, 0xa4, 0xd1, 0xf0, 0xf8, 0x50, 0x56, 0x24, 0xe3, 0x7c, 0x20, 0x44, 0xee, 0x60, 0x33, 0xb9, 0x07, 0xaf, 0x87, 0x03, 0xa5, 0xcb, 0xac, 0xd2, 0x78, 0x89, 0xcc, 0xc5, 0x60, 0xcc, 0x0c, 0x51, 0x05, 0x07, 0xec, 0x52, 0x75, 0x1a, 0x40, 0x7d, 0xaa, 0xef, 0x89, 0x39, 0xf5, 0x67, 0xe0, 0xe2, 0x74, 0x28, 0x75, 0xc9, 0xeb, 0x34, 0xa2, 0x22, 0xf9, 0x42, 0x38, 0xaa, 0x4e, 0xd1, 0x67, 0xf4, 0x5d, 0xa3, 0x21, 0x56, 0xa4, 0x4f, 0xf5, 0x7e, 0x1f, 0x4a, 0x53, 0xc1, 0xd6, 0x65, 0xdf, 0xa1, 0x31, 0x17, 0xd9, 0xaf, 0x85, 0xe2, 0x6e, 0x98, 0x3c, 0xa3, 0xeb, 0xbb, 0x34, 0x08, 0x0b, 0xe4, 0xa9, 0x9e, 0x71, 0xc9, 0x82, 0xe1, 0xd8, 0xe5, 0xde, 0xa3, 0x51, 0x99, 0x2f, 0x59, 0x20, 0x32, 0x8b, 0xfd, 0x86, 0xe2, 0xb3, 0xcb, 0xad, 0xd3, 0x30, 0xcd, 0xfb, 0x0d, 0x86, 0x6a, 0x4e, 0x7e, 0x9b, 0x92, 0x77, 0x67, 0xcf, 0xf8, 0xc7, 0x09, 0x1a, 0x60, 0x39, 0x7b, 0x77, 0xd6, 0x94, 0x3d, 0xf6, 0x8c, 0x29, 0xff, 0x84, 0xb2, 0x89, 0xc0, 0x9e, 0x9a, 0xf3, 0x63, 0x98, 0x73, 0x6f, 0x75, 0xbd, 0xb1, 0x7d, 0x34, 0x2a, 0x35, 0x55, 0xb9, 0x02, 0xda, 0x95, 0xa9, 0xec, 0xc7, 0xbd, 0xe4, 0x6d, 0x50, 0x94, 0x11, 0x24, 0x31, 0x2b, 0xcc, 0x2e, 0xb3, 0xb2, 0xa3, 0x26, 0x22, 0xac, 0x30, 0x94, 0x67, 0x45, 0x20, 0x51, 0x2b, 0xae, 0xd3, 0x67, 0x56, 0x3e, 0x50, 0xa5, 0x99, 0x56, 0xdc, 0x10, 0xc0, 0xad, 0x04, 0x48, 0x4b, 0xeb, 0x7e, 0xbe, 0x85, 0xed, 0xe4, 0x8b, 0xe1, 0x04, 0x6c, 0x03, 0xef, 0xcf, 0xc1, 0x4a, 0x46, 0x13, 0x06, 0x37, 0x4d, 0xfb, 0xd9, 0x08, 0x5a, 0x60, 0x34, 0xd3, 0xb4, 0x9f, 0x9b, 0x41, 0x2b, 0xff, 0xa6, 0x04, 0x49, 0x9a, 0x4f, 0x92, 0x2c, 0x24, 0xdf, 0x6b, 0x6d, 0x3e, 0x56, 0xce, 0xd1, 0x5f, 0x0f, 0x5b, 0xad, 0xa7, 0x8a, 0x44, 0x72, 0x90, 0x7a, 0xf8, 0x95, 0xbd, 0xc6, 0xae, 0x22, 0x93, 0x22, 0xe4, 0x9b, 0x9b, 0xdb, 0x1b, 0x0d, 0x63, 0xc7, 0xd8, 0xdc, 0xde, 0x53, 0x12, 0xb4, 0xad, 0xf9, 0xb4, 0xf5, 0x60, 0x4f, 0x49, 0x92, 0x0c, 0x24, 0x68, 0x5d, 0x8a, 0x00, 0xa4, 0x77, 0xf7, 0x8c, 0xcd, 0xed, 0x0d, 0x25, 0x4d, 0xad, 0xec, 0x6d, 0x6e, 0x35, 0x94, 0x0c, 0x45, 0xee, 0xbd, 0xbb, 0xf3, 0xb4, 0xa1, 0x64, 0xe9, 0xcf, 0x07, 0x86, 0xf1, 0xe0, 0x2b, 0x4a, 0x8e, 0x92, 0xb6, 0x1e, 0xec, 0x28, 0x80, 0xcd, 0x0f, 0x1e, 0x3e, 0x6d, 0x28, 0x79, 0x52, 0x80, 0x6c, 0xf3, 0xdd, 0xed, 0x47, 0x7b, 0x9b, 0xad, 0x6d, 0xa5, 0x50, 0x3e, 0x81, 0x12, 0x5b, 0xe6, 0xc0, 0x2a, 0xb2, 0xa4, 0xf0, 0x1d, 0x48, 0xb1, 0x9d, 0x91, 0x50, 0x25, 0x95, 0xf0, 0xce, 0x4c, 0x53, 0x56, 0xd8, 0x1e, 0x31, 0xda, 0xd2, 0x65, 0x48, 0xb1, 0x55, 0x5a, 0x84, 0x14, 0x5b, 0x1d, 0x19, 0x53, 0x45, 0x56, 0x28, 0xff, 0x96, 0x0c, 0xb0, 0x61, 0xef, 0x3e, 0xef, 0x8f, 0x30, 0x21, 0xbf, 0x0c, 0x30, 0x79, 0xde, 0x1f, 0xb5, 0x51, 0xf5, 0x3c, 0xa9, 0xcc, 0xd1, 0x1a, 0xf4, 0x77, 0xe4, 0x1a, 0x14, 0xb0, 0xf9, 0x90, 0x79, 0x21, 0xcc, 0x25, 0x33, 0x46, 0x9e, 0xd6, 0x71, 0xc7, 0x14, 0x84, 0xd4, 0x74, 0x4c, 0x21, 0xd3, 0x02, 0xa4, 0xa6, 0x93, 0xab, 0x80, 0xc5, 0xf6, 0x04, 0x23, 0x0a, 0xa6, 0x8d, 0x39, 0x03, 0xfb, 0x65, 0x31, 0x86, 0xbc, 0x0d, 0xd8, 0x27, 0x9b, 0x77, 0x71, 0xfa, 0x74, 0xb8, 0xc3, 0x5d, 0xa1, 0x3f, 0xd8, 0x6c, 0x7d, 0xc2, 0x52, 0x0b, 0x72, 0x5e, 0x3d, 0xed, 0x0b, 0x6b, 0xf9, 0x8c, 0x14, 0x9c, 0x11, 0x60, 0x95, 0x37, 0x25, 0x06, 0xe0, 0xa3, 0x59, 0xc0, 0xd1, 0x30, 0x12, 0x1b, 0x4e, 0xf9, 0x32, 0xcc, 0x6d, 0xdb, 0x16, 0x3b, 0xbd, 0xb8, 0x4a, 0x05, 0x90, 0x3a, 0x25, 0x09, 0xb3, 0x27, 0xa9, 0x53, 0xbe, 0x02, 0x20, 0xb4, 0x29, 0x20, 0xed, 0xb3, 0x36, 0xf4, 0x01, 0xd2, 0x7e, 0xf9, 0x26, 0xa4, 0xb7, 0x3a, 0xc7, 0x7b, 0x9d, 0x1e, 0xb9, 0x06, 0x30, 0xe8, 0x4c, 0x9c, 0xf6, 0x21, 0xee, 0xc3, 0xe7, 0x9f, 0x7f, 0xfe, 0xb9, 0x84, 0x97, 0xbd, 0x1c, 0xad, 0x65, 0xfb, 0xf1, 0x02, 0xa0, 0x35, 0xe8, 0x6e, 0x99, 0x93, 0x49, 0xa7, 0x67, 0x92, 0x2a, 0xa4, 0x2d, 0x73, 0x42, 0xa3, 0x9d, 0x84, 0xef, 0x08, 0xcb, 0xfe, 0x2a, 0xf8, 0xa8, 0x95, 0x6d, 0x84, 0x18, 0x1c, 0x4a, 0x14, 0x48, 0x58, 0x47, 0x43, 0x7c, 0x27, 0x49, 0x19, 0xf4, 0xe7, 0xd2, 0x25, 0x48, 0x33, 0x0c, 0x21, 0x90, 0xb4, 0x3a, 0x43, 0xb3, 0xc4, 0xfa, 0xc5, 0xdf, 0xe5, 0x5f, 0x95, 0x00, 0xb6, 0xcd, 0x97, 0x67, 0xe8, 0xd3, 0x47, 0xc5, 0xf4, 0x99, 0x60, 0x7d, 0xde, 0x8f, 0xeb, 0x93, 0xea, 0xec, 0xd0, 0xb6, 0xbb, 0x6d, 0xb6, 0xc5, 0xec, 0x49, 0x27, 0x47, 0x6b, 0x70, 0xd7, 0xca, 0x1f, 0x40, 0x61, 0xd3, 0xb2, 0xcc, 0xb1, 0x3b, 0x26, 0x02, 0xc9, 0x67, 0xf6, 0xc4, 0xe1, 0x6f, 0x4b, 0xf8, 0x9b, 0x94, 0x20, 0x39, 0xb2, 0xc7, 0x0e, 0x9b, 0x67, 0x3d, 0xa9, 0xaf, 0xae, 0xae, 0x1a, 0x58, 0x43, 0x2e, 0x41, 0xee, 0xc0, 0xb6, 0x2c, 0xf3, 0x80, 0x4e, 0x22, 0x81, 0x69, 0x8d, 0x5f, 0x51, 0xfe, 0x65, 0x09, 0x0a, 0x2d, 0xe7, 0x99, 0x6f, 0x5c, 0x81, 0xc4, 0x73, 0xf3, 0x04, 0x87, 0x97, 0x30, 0xe8, 0x4f, 0x7a, 0x54, 0x7e, 0xbe, 0x33, 0x38, 0x62, 0x6f, 0x4d, 0x05, 0x83, 0x15, 0xc8, 0x05, 0x48, 0xbf, 0x34, 0xfb, 0xbd, 0x67, 0x0e, 0xda, 0x94, 0x0d, 0x5e, 0x22, 0xb7, 0x20, 0xd5, 0xa7, 0x83, 0x2d, 0x25, 0x71, 0xbd, 0x2e, 0xf8, 0xeb, 0x25, 0xce, 0xc1, 0x60, 0xa0, 0x1b, 0xd9, 0x6c, 0x57, 0xf9, 0xe8, 0xa3, 0x8f, 0x3e, 0x92, 0xcb, 0x87, 0xb0, 0xe8, 0x1e, 0xde, 0xc0, 0x64, 0xb7, 0xa1, 0x34, 0x30, 0xed, 0xf6, 0x61, 0xdf, 0xea, 0x0c, 0x06, 0x27, 0xed, 0x97, 0xb6, 0xd5, 0xee, 0x58, 0x6d, 0x7b, 0x72, 0xd0, 0x19, 0xe3, 0x02, 0x44, 0x77, 0xb1, 0x38, 0x30, 0xed, 0x26, 0xa3, 0xbd, 0x6f, 0x5b, 0x0f, 0xac, 0x16, 0xe5, 0x94, 0xff, 0x20, 0x09, 0xb9, 0xad, 0x13, 0xd7, 0xfa, 0x22, 0xa4, 0x0e, 0xec, 0x23, 0x8b, 0xad, 0x65, 0xca, 0x60, 0x05, 0x6f, 0x8f, 0x64, 0x61, 0x8f, 0x16, 0x21, 0xf5, 0xe2, 0xc8, 0x76, 0x4c, 0x9c, 0x6e, 0xce, 0x60, 0x05, 0xba, 0x5a, 0x23, 0xd3, 0x29, 0x25, 0x31, 0xb9, 0xa5, 0x3f, 0xfd, 0xf9, 0xa7, 0xce, 0x30, 0x7f, 0xb2, 0x02, 0x69, 0x9b, 0xae, 0xfe, 0xa4, 0x94, 0xc6, 0x77, 0x35, 0x01, 0x2e, 0xee, 0x8a, 0xc1, 0x51, 0x64, 0x13, 0x16, 0x5e, 0x9a, 0xed, 0xe1, 0xd1, 0xc4, 0x69, 0xf7, 0xec, 0x76, 0xd7, 0x34, 0x47, 0xe6, 0xb8, 0x34, 0x87, 0x3d, 0x09, 0x3e, 0x61, 0xd6, 0x42, 0x1a, 0xf3, 0x2f, 0xcd, 0xad, 0xa3, 0x89, 0xb3, 0x61, 0x3f, 0x46, 0x16, 0xa9, 0x42, 0x6e, 0x6c, 0x52, 0x4f, 0x40, 0x07, 0x5b, 0x08, 0xf7, 0x1e, 0xa0, 0x66, 0xc7, 0xe6, 0x08, 0x2b, 0xc8, 0x3a, 0x64, 0xf7, 0xfb, 0xcf, 0xcd, 0xc9, 0x33, 0xb3, 0x5b, 0xca, 0xa8, 0x52, 0x65, 0x5e, 0xbb, 0xe8, 0x73, 0xbc, 0x65, 0x5d, 0x79, 0x64, 0x0f, 0xec, 0xb1, 0xe1, 0x41, 0xc9, 0x7d, 0xc8, 0x4d, 0xec, 0xa1, 0xc9, 0xf4, 0x9d, 0xc5, 0xa0, 0x7a, 0x79, 0x16, 0x6f, 0xd7, 0x1e, 0x9a, 0xae, 0x07, 0x73, 0xf1, 0x64, 0x99, 0x0d, 0x74, 0x9f, 0x5e, 0x9d, 0x4b, 0x80, 0x4f, 0x03, 0x74, 0x40, 0x78, 0x95, 0x26, 0x4b, 0x74, 0x40, 0xbd, 0x43, 0x7a, 0x23, 0x2a, 0xe5, 0x31, 0xaf, 0xf4, 0xca, 0x4b, 0xb7, 0x20, 0xe7, 0x19, 0xf4, 0x5d, 0x1f, 0x73, 0x37, 0x39, 0xf4, 0x07, 0xcc, 0xf5, 0x31, 0x5f, 0xf3, 0x06, 0xa4, 0x70, 0xd8, 0x34, 0x42, 0x19, 0x0d, 0x1a, 0x10, 0x73, 0x90, 0xda, 0x30, 0x1a, 0x8d, 0x6d, 0x45, 0xc2, 0xd8, 0xf8, 0xf4, 0xdd, 0x86, 0x22, 0x0b, 0x8a, 0xfd, 0x6d, 0x09, 0x12, 0x8d, 0x63, 0x54, 0x0b, 0x9d, 0x86, 0x7b, 0xa2, 0xe9, 0x6f, 0xad, 0x06, 0xc9, 0xa1, 0x3d, 0x36, 0xc9, 0xf9, 0x19, 0xb3, 0x2c, 0xf5, 0x70, 0xbf, 0x84, 0x57, 0xe4, 0xc6, 0xb1, 0x63, 0x20, 0x5e, 0x7b, 0x0b, 0x92, 0x8e, 0x79, 0xec, 0xcc, 0xe6, 0x3d, 0x63, 0x1d, 0x50, 0x80, 0x76, 0x13, 0xd2, 0xd6, 0xd1, 0x70, 0xdf, 0x1c, 0xcf, 0x86, 0xf6, 0x71, 0x7a, 0x1c, 0x52, 0x7e, 0x0f, 0x94, 0x47, 0xf6, 0x70, 0x34, 0x30, 0x8f, 0x1b, 0xc7, 0x8e, 0x69, 0x4d, 0xfa, 0xb6, 0x45, 0xf5, 0x7c, 0xd8, 0x1f, 0xa3, 0x17, 0xc1, 0xb7, 0x62, 0x2c, 0xd0, 0x53, 0x3d, 0x31, 0x0f, 0x6c, 0xab, 0xcb, 0x1d, 0x26, 0x2f, 0x51, 0xb4, 0xf3, 0xac, 0x3f, 0xa6, 0x0e, 0x84, 0xfa, 0x79, 0x56, 0x28, 0x6f, 0x40, 0x91, 0xe7, 0x18, 0x13, 0xde, 0x71, 0xf9, 0x06, 0x14, 0xdc, 0x2a, 0x7c, 0x38, 0xcf, 0x42, 0xf2, 0x83, 0x86, 0xd1, 0x52, 0xce, 0xd1, 0x65, 0x6d, 0x6d, 0x37, 0x14, 0x89, 0xfe, 0xd8, 0x7b, 0xbf, 0x15, 0x58, 0xca, 0x4b, 0x50, 0xf0, 0xc6, 0xbe, 0x6b, 0x3a, 0xd8, 0x42, 0x03, 0x42, 0xa6, 0x2e, 0x67, 0xa5, 0x72, 0x06, 0x52, 0x8d, 0xe1, 0xc8, 0x39, 0x29, 0xff, 0x22, 0xe4, 0x39, 0xe8, 0x69, 0x7f, 0xe2, 0x90, 0x3b, 0x90, 0x19, 0xf2, 0xf9, 0x4a, 0x78, 0xdd, 0x13, 0x35, 0xe5, 0xe3, 0xdc, 0xdf, 0x86, 0x8b, 0x5e, 0xaa, 0x42, 0x46, 0xf0, 0xa5, 0xfc, 0xa8, 0xcb, 0xe2, 0x51, 0x67, 0x4e, 0x21, 0x21, 0x38, 0x85, 0xf2, 0x16, 0x64, 0x58, 0x04, 0x9c, 0x60, 0x54, 0x67, 0xa9, 0x22, 0x13, 0x13, 0xdb, 0xf9, 0x3c, 0xab, 0x63, 0x17, 0x95, 0xab, 0x90, 0x47, 0xc1, 0x72, 0x04, 0x73, 0x9d, 0x80, 0x55, 0x4c, 0x6e, 0xbf, 0x9f, 0x82, 0xac, 0xbb, 0x52, 0x64, 0x19, 0xd2, 0x2c, 0x3f, 0x43, 0x53, 0xee, 0xfb, 0x41, 0x0a, 0x33, 0x32, 0xb2, 0x0c, 0x19, 0x9e, 0x83, 0x71, 0xef, 0x2e, 0x57, 0x35, 0x23, 0xcd, 0x72, 0x2e, 0xaf, 0xb1, 0xa6, 0xa3, 0x63, 0x62, 0x2f, 0x03, 0x69, 0x96, 0x55, 0x11, 0x15, 0x72, 0x5e, 0x1e, 0x85, 0xfe, 0x98, 0x3f, 0x03, 0x64, 0xdd, 0xc4, 0x49, 0x40, 0xd4, 0x74, 0xf4, 0x58, 0x3c, 0xe7, 0xcf, 0x36, 0xfd, 0xeb, 0x49, 0xd6, 0xcd, 0x86, 0xf0, 0xf9, 0xde, 0x4d, 0xf0, 0x33, 0x3c, 0xff, 0xf1, 0x01, 0x35, 0x1d, 0x5d, 0x82, 0x9b, 0xcd, 0x67, 0x78, 0x8e, 0x43, 0xae, 0xd2, 0x21, 0x62, 0xce, 0x82, 0x47, 0xdf, 0x4f, 0xdd, 0xd3, 0x2c, 0x93, 0x21, 0xd7, 0xa8, 0x05, 0x96, 0x98, 0xe0, 0xb9, 0xf4, 0xf3, 0xf4, 0x0c, 0xcf, 0x57, 0xc8, 0x4d, 0x0a, 0x61, 0xcb, 0x5f, 0x82, 0x88, 0xa4, 0x3c, 0xc3, 0x93, 0x72, 0xa2, 0xd2, 0x0e, 0xd1, 0x3d, 0xa0, 0x4b, 0x10, 0x12, 0xf0, 0x34, 0x4b, 0xc0, 0xc9, 0x15, 0x34, 0xc7, 0x26, 0x55, 0xf0, 0x93, 0xed, 0x0c, 0x4f, 0x70, 0xfc, 0x76, 0xbc, 0xb2, 0x79, 0x89, 0x75, 0x86, 0xa7, 0x30, 0xa4, 0x46, 0xf7, 0x8b, 0xea, 0xbb, 0x34, 0x8f, 0x4e, 0xb0, 0xe4, 0x0b, 0xcf, 0xdd, 0x53, 0xe6, 0x03, 0xeb, 0xcc, 0x83, 0x18, 0xa9, 0x26, 0x9e, 0x86, 0x25, 0xca, 0xdb, 0xe9, 0x5b, 0x87, 0xa5, 0x22, 0xae, 0x44, 0xa2, 0x6f, 0x1d, 0x1a, 0xa9, 0x26, 0xad, 0x61, 0x1a, 0xd8, 0xa6, 0x6d, 0x0a, 0xb6, 0x25, 0x6f, 0xb3, 0x46, 0x5a, 0x45, 0x4a, 0x90, 0x6a, 0xb6, 0xb7, 0x3b, 0x56, 0x69, 0x81, 0xf1, 0xac, 0x8e, 0x65, 0x24, 0x9b, 0xdb, 0x1d, 0x8b, 0xbc, 0x05, 0x89, 0xc9, 0xd1, 0x7e, 0x89, 0x84, 0xbf, 0xac, 0xec, 0x1e, 0xed, 0xbb, 0x43, 0x31, 0x28, 0x82, 0x2c, 0x43, 0x76, 0xe2, 0x8c, 0xdb, 0xbf, 0x60, 0x8e, 0xed, 0xd2, 0x79, 0x5c, 0xc2, 0x73, 0x46, 0x66, 0xe2, 0x8c, 0x3f, 0x30, 0xc7, 0xf6, 0x19, 0x9d, 0x5f, 0xf9, 0x0a, 0xe4, 0x05, 0xbb, 0xa4, 0x08, 0x92, 0xc5, 0x6e, 0x0a, 0x75, 0xe9, 0x8e, 0x21, 0x59, 0xe5, 0x3d, 0x28, 0xb8, 0x39, 0x0c, 0xce, 0x57, 0xa3, 0x27, 0x69, 0x60, 0x8f, 0xf1, 0x7c, 0xce, 0x6b, 0x97, 0xc4, 0x10, 0xe5, 0xc3, 0x78, 0xb8, 0x60, 0xd0, 0xb2, 0x12, 0x1a, 0x8a, 0x54, 0xfe, 0xa1, 0x04, 0x85, 0x2d, 0x7b, 0xec, 0x3f, 0x30, 0x2f, 0x42, 0x6a, 0xdf, 0xb6, 0x07, 0x13, 0x34, 0x9b, 0x35, 0x58, 0x81, 0xbc, 0x01, 0x05, 0xfc, 0xe1, 0xe6, 0x9e, 0xb2, 0xf7, 0xb4, 0x91, 0xc7, 0x7a, 0x9e, 0x70, 0x12, 0x48, 0xf6, 0x2d, 0x67, 0xc2, 0x3d, 0x19, 0xfe, 0x26, 0x5f, 0x80, 0x3c, 0xfd, 0xeb, 0x32, 0x93, 0xde, 0x85, 0x15, 0x68, 0x35, 0x27, 0xbe, 0x05, 0x73, 0xb8, 0xfb, 0x1e, 0x2c, 0xe3, 0x3d, 0x63, 0x14, 0x58, 0x03, 0x07, 0x96, 0x20, 0xc3, 0x5c, 0xc1, 0x04, 0xbf, 0x96, 0xe5, 0x0c, 0xb7, 0x48, 0xdd, 0x2b, 0x66, 0x02, 0x2c, 0xdc, 0x67, 0x0c, 0x5e, 0x2a, 0x3f, 0x80, 0x2c, 0x46, 0xa9, 0xd6, 0xa0, 0x4b, 0xca, 0x20, 0xf5, 0x4a, 0x26, 0xc6, 0xc8, 0x45, 0xe1, 0x9a, 0xcf, 0x9b, 0x57, 0x36, 0x0c, 0xa9, 0xb7, 0xb4, 0x00, 0xd2, 0x06, 0xbd, 0x77, 0x1f, 0x73, 0x37, 0x2d, 0x1d, 0x97, 0x5b, 0xdc, 0xc4, 0xb6, 0xf9, 0x32, 0xce, 0xc4, 0xb6, 0xf9, 0x92, 0x99, 0xb8, 0x3a, 0x65, 0x82, 0x96, 0x4e, 0xf8, 0xa7, 0x43, 0xe9, 0xa4, 0x5c, 0x85, 0x39, 0x3c, 0x9e, 0x7d, 0xab, 0xb7, 0x63, 0xf7, 0x2d, 0xbc, 0xe7, 0x1f, 0xe2, 0x3d, 0x49, 0x32, 0xa4, 0x43, 0xba, 0x07, 0xe6, 0x71, 0xe7, 0x80, 0xdd, 0x38, 0xb3, 0x06, 0x2b, 0x94, 0x3f, 0x4b, 0xc2, 0x3c, 0x77, 0xad, 0xef, 0xf7, 0x9d, 0x67, 0x5b, 0x9d, 0x11, 0x79, 0x0a, 0x05, 0xea, 0x55, 0xdb, 0xc3, 0xce, 0x68, 0x44, 0x8f, 0xaf, 0x84, 0x57, 0x8d, 0xeb, 0x53, 0xae, 0x9a, 0xe3, 0x57, 0xb6, 0x3b, 0x43, 0x73, 0x8b, 0x61, 0x1b, 0x96, 0x33, 0x3e, 0x31, 0xf2, 0x96, 0x5f, 0x43, 0x36, 0x21, 0x3f, 0x9c, 0xf4, 0x3c, 0x63, 0x32, 0x1a, 0xab, 0x44, 0x1a, 0xdb, 0x9a, 0xf4, 0x02, 0xb6, 0x60, 0xe8, 0x55, 0xd0, 0x81, 0x51, 0x7f, 0xec, 0xd9, 0x4a, 0x9c, 0x32, 0x30, 0xea, 0x3a, 0x82, 0x03, 0xdb, 0xf7, 0x6b, 0xc8, 0x63, 0x00, 0x7a, 0xbc, 0x1c, 0x9b, 0xa6, 0x4e, 0xa8, 0xa0, 0xbc, 0xf6, 0x66, 0xa4, 0xad, 0x5d, 0x67, 0xbc, 0x67, 0xef, 0x3a, 0x63, 0x66, 0x88, 0x1e, 0x4c, 0x2c, 0x2e, 0xbd, 0x03, 0x4a, 0x78, 0xfe, 0xe2, 0x8d, 0x3c, 0x35, 0xe3, 0x46, 0x9e, 0xe3, 0x37, 0xf2, 0xba, 0x7c, 0x57, 0x5a, 0x7a, 0x0f, 0x8a, 0xa1, 0x29, 0x8b, 0x74, 0xc2, 0xe8, 0xb7, 0x45, 0x7a, 0x5e, 0x7b, 0x5d, 0xf8, 0x9c, 0x2d, 0x6e, 0xb8, 0x68, 0xf7, 0x1d, 0x50, 0xc2, 0xd3, 0x17, 0x0d, 0x67, 0x63, 0x32, 0x05, 0xe4, 0xdf, 0x87, 0xb9, 0xc0, 0x94, 0x45, 0x72, 0xee, 0x94, 0x49, 0x95, 0x7f, 0x29, 0x05, 0xa9, 0x96, 0x65, 0xda, 0x87, 0xe4, 0xf5, 0x60, 0x9c, 0x7c, 0x72, 0xce, 0x8d, 0x91, 0x17, 0x43, 0x31, 0xf2, 0xc9, 0x39, 0x2f, 0x42, 0x5e, 0x0c, 0x45, 0x48, 0xb7, 0xa9, 0xa6, 0x93, 0xcb, 0x53, 0xf1, 0xf1, 0xc9, 0x39, 0x21, 0x38, 0x5e, 0x9e, 0x0a, 0x8e, 0x7e, 0x73, 0x4d, 0xa7, 0x0e, 0x35, 0x18, 0x19, 0x9f, 0x9c, 0xf3, 0xa3, 0xe2, 0x72, 0x38, 0x2a, 0x7a, 0x8d, 0x35, 0x9d, 0x0d, 0x49, 0x88, 0x88, 0x38, 0x24, 0x16, 0x0b, 0x97, 0xc3, 0xb1, 0x10, 0x79, 0x3c, 0x0a, 0x2e, 0x87, 0xa3, 0x20, 0x36, 0xf2, 0xa8, 0x77, 0x31, 0x14, 0xf5, 0xd0, 0x28, 0x0b, 0x77, 0xcb, 0xe1, 0x70, 0xc7, 0x78, 0xc2, 0x48, 0xc5, 0x58, 0xe7, 0x35, 0xd6, 0x74, 0xa2, 0x85, 0x02, 0x5d, 0xf4, 0x6d, 0x1f, 0xf7, 0x02, 0x9d, 0xbe, 0x4e, 0x97, 0xcd, 0xbd, 0x88, 0x16, 0x63, 0xbe, 0xf8, 0xe3, 0x6a, 0xba, 0x17, 0x31, 0x0d, 0x32, 0x87, 0x3c, 0x01, 0x56, 0xd0, 0x73, 0x09, 0xb2, 0xc4, 0xcd, 0x5f, 0x69, 0xb6, 0xd1, 0x83, 0xd1, 0x79, 0x1d, 0xb2, 0x3b, 0x7d, 0x05, 0xe6, 0x9a, 0xed, 0xa7, 0x9d, 0x71, 0xcf, 0x9c, 0x38, 0xed, 0xbd, 0x4e, 0xcf, 0x7b, 0x44, 0xa0, 0xfb, 0x9f, 0x6f, 0xf2, 0x96, 0xbd, 0x4e, 0x8f, 0x5c, 0x70, 0xc5, 0xd5, 0xc5, 0x56, 0x89, 0xcb, 0x6b, 0xe9, 0x75, 0xba, 0x68, 0xcc, 0x18, 0xfa, 0xc2, 0x05, 0xee, 0x0b, 0x1f, 0x66, 0x20, 0x75, 0x64, 0xf5, 0x6d, 0xeb, 0x61, 0x0e, 0x32, 0x8e, 0x3d, 0x1e, 0x76, 0x1c, 0xbb, 0xfc, 0x23, 0x09, 0xe0, 0x91, 0x3d, 0x1c, 0x1e, 0x59, 0xfd, 0x17, 0x47, 0x26, 0xb9, 0x02, 0xf9, 0x61, 0xe7, 0xb9, 0xd9, 0x1e, 0x9a, 0xed, 0x83, 0xb1, 0x7b, 0x0e, 0x72, 0xb4, 0x6a, 0xcb, 0x7c, 0x34, 0x3e, 0x21, 0x25, 0xf7, 0x8a, 0x8e, 0xda, 0x41, 0x49, 0xf2, 0x2b, 0xfb, 0x22, 0xbf, 0x74, 0xa6, 0xf9, 0x1e, 0xba, 0xd7, 0x4e, 0x96, 0x47, 0x64, 0xf8, 0xee, 0x61, 0x89, 0x4a, 0xde, 0x31, 0x87, 0xa3, 0xf6, 0x01, 0x4a, 0x85, 0xca, 0x21, 0x45, 0xcb, 0x8f, 0xc8, 0x6d, 0x48, 0x1c, 0xd8, 0x03, 0x14, 0xc9, 0x29, 0xfb, 0x42, 0x71, 0xe4, 0x0d, 0x48, 0x0c, 0x27, 0x4c, 0x36, 0x79, 0x6d, 0x41, 0xb8, 0x27, 0xb0, 0xd0, 0x44, 0x61, 0xc3, 0x49, 0xcf, 0x9b, 0xf7, 0x8d, 0x22, 0x24, 0x9a, 0xad, 0x16, 0x8d, 0xfd, 0xcd, 0x56, 0x6b, 0x4d, 0x91, 0xea, 0x5f, 0x82, 0x6c, 0x6f, 0x6c, 0x9a, 0xd4, 0x3d, 0xcc, 0xce, 0x39, 0x3e, 0xc4, 0x58, 0xe7, 0x81, 0xea, 0x5b, 0x90, 0x39, 0x60, 0x59, 0x07, 0x89, 0x48, 0x6b, 0x4b, 0x7f, 0xc8, 0x1e, 0x55, 0x96, 0xfc, 0xe6, 0x70, 0x9e, 0x62, 0xb8, 0x36, 0xea, 0x3b, 0x90, 0x1b, 0xb7, 0x4f, 0x33, 0xf8, 0x31, 0x8b, 0x2e, 0x71, 0x06, 0xb3, 0x63, 0x5e, 0x55, 0x6f, 0xc0, 0x82, 0x65, 0xbb, 0xdf, 0x50, 0xda, 0x5d, 0x76, 0xc6, 0x2e, 0x4e, 0x5f, 0xe5, 0x5c, 0xe3, 0x26, 0xfb, 0x6e, 0x69, 0xd9, 0xbc, 0x81, 0x9d, 0xca, 0xfa, 0x23, 0x50, 0x04, 0x33, 0x98, 0x7a, 0xc6, 0x59, 0x39, 0x64, 0x1f, 0x4a, 0x3d, 0x2b, 0x78, 0xee, 0x43, 0x46, 0xd8, 0xc9, 0x8c, 0x31, 0xd2, 0x63, 0x5f, 0x9d, 0x3d, 0x23, 0xe8, 0xea, 0xa6, 0x8d, 0x50, 0x5f, 0x13, 0x6d, 0xe4, 0x19, 0xfb, 0x20, 0x2d, 0x1a, 0xa9, 0xe9, 0xa1, 0x55, 0x39, 0x3a, 0x75, 0x28, 0x7d, 0xf6, 0x3d, 0xd9, 0xb3, 0xc2, 0x1c, 0xe0, 0x0c, 0x33, 0xf1, 0x83, 0xf9, 0x90, 0x7d, 0x6a, 0x0e, 0x98, 0x99, 0x1a, 0xcd, 0xe4, 0xd4, 0xd1, 0x3c, 0x67, 0xdf, 0x75, 0x3d, 0x33, 0xbb, 0xb3, 0x46, 0x33, 0x39, 0x75, 0x34, 0x03, 0xf6, 0xc5, 0x37, 0x60, 0xa6, 0xa6, 0xd7, 0x37, 0x80, 0x88, 0x5b, 0xcd, 0xe3, 0x44, 0x8c, 0x9d, 0x21, 0xfb, 0x8e, 0xef, 0x6f, 0x36, 0xa3, 0xcc, 0x32, 0x14, 0x3f, 0x20, 0x8b, 0x7d, 0xe2, 0x0f, 0x1a, 0xaa, 0xe9, 0xf5, 0x4d, 0x38, 0x2f, 0x4e, 0xec, 0x0c, 0x43, 0xb2, 0x55, 0xa9, 0x52, 0x34, 0x16, 0xfc, 0xa9, 0x71, 0xce, 0x4c, 0x53, 0xf1, 0x83, 0x1a, 0xa9, 0x52, 0x45, 0x99, 0x32, 0x55, 0xd3, 0xeb, 0x0f, 0xa0, 0x28, 0x98, 0xda, 0xc7, 0x08, 0x1d, 0x6d, 0xe6, 0x05, 0xfb, 0x5f, 0x0b, 0xcf, 0x0c, 0x8d, 0xe8, 0xe1, 0x1d, 0xe3, 0x31, 0x2e, 0xda, 0xc8, 0x98, 0xfd, 0xa3, 0x80, 0x3f, 0x16, 0x64, 0x84, 0x8e, 0x04, 0xe6, 0xdf, 0x71, 0x56, 0x26, 0xec, 0x5f, 0x08, 0xfc, 0xa1, 0x50, 0x42, 0xbd, 0x1f, 0x98, 0x8e, 0x49, 0x83, 0x5c, 0x8c, 0x0d, 0x07, 0x3d, 0xf2, 0x9b, 0x91, 0x80, 0x15, 0xf1, 0x81, 0x44, 0x98, 0x36, 0x2d, 0xd6, 0x37, 0x61, 0xfe, 0xec, 0x0e, 0xe9, 0x63, 0x89, 0x65, 0xcb, 0xd5, 0x15, 0x9a, 0x50, 0x1b, 0x73, 0xdd, 0x80, 0x5f, 0x6a, 0xc0, 0xdc, 0x99, 0x9d, 0xd2, 0x27, 0x12, 0xcb, 0x39, 0xa9, 0x25, 0xa3, 0xd0, 0x0d, 0x7a, 0xa6, 0xb9, 0x33, 0xbb, 0xa5, 0x4f, 0x25, 0xf6, 0x40, 0xa1, 0x6b, 0x9e, 0x11, 0xd7, 0x33, 0xcd, 0x9d, 0xd9, 0x2d, 0x7d, 0x95, 0x65, 0x94, 0xb2, 0x5e, 0x15, 0x8d, 0xa0, 0x2f, 0x98, 0x3f, 0xbb, 0x5b, 0xfa, 0x9a, 0x84, 0x8f, 0x15, 0xb2, 0xae, 0x7b, 0xeb, 0xe2, 0x79, 0xa6, 0xf9, 0xb3, 0xbb, 0xa5, 0xaf, 0x4b, 0xf8, 0xa4, 0x21, 0xeb, 0xeb, 0x01, 0x33, 0xc1, 0xd1, 0x9c, 0xee, 0x96, 0xbe, 0x21, 0xe1, 0x2b, 0x83, 0xac, 0xd7, 0x3c, 0x33, 0xbb, 0x53, 0xa3, 0x39, 0xdd, 0x2d, 0x7d, 0x13, 0x6f, 0xf1, 0x75, 0x59, 0xbf, 0x13, 0x30, 0x83, 0x9e, 0xa9, 0xf8, 0x0a, 0x6e, 0xe9, 0x5b, 0x12, 0x3e, 0x06, 0xc9, 0xfa, 0x5d, 0xc3, 0xed, 0xdd, 0xf7, 0x4c, 0xc5, 0x57, 0x70, 0x4b, 0x9f, 0x49, 0xf8, 0x66, 0x24, 0xeb, 0xf7, 0x82, 0x86, 0xd0, 0x33, 0x29, 0xaf, 0xe2, 0x96, 0xbe, 0x4d, 0x2d, 0x15, 0xeb, 0xf2, 0xfa, 0xaa, 0xe1, 0x0e, 0x40, 0xf0, 0x4c, 0xca, 0xab, 0xb8, 0xa5, 0xef, 0x50, 0x53, 0x4a, 0x5d, 0x5e, 0x5f, 0x0b, 0x99, 0xaa, 0xe9, 0xf5, 0x47, 0x50, 0x38, 0xab, 0x5b, 0xfa, 0xae, 0xf8, 0x16, 0x97, 0xef, 0x0a, 0xbe, 0x69, 0x47, 0xd8, 0xb3, 0x53, 0x1d, 0xd3, 0xf7, 0x30, 0xc7, 0xa9, 0xcf, 0x3d, 0x61, 0xef, 0x55, 0x8c, 0xe0, 0x6f, 0x1f, 0x73, 0x53, 0x5b, 0xfe, 0xf9, 0x38, 0xd5, 0x47, 0x7d, 0x5f, 0xc2, 0x47, 0xad, 0x02, 0x37, 0x88, 0x78, 0xef, 0xa4, 0x30, 0x87, 0xf5, 0xa1, 0x3f, 0xcb, 0xd3, 0xbc, 0xd5, 0x0f, 0xa4, 0x57, 0x71, 0x57, 0xf5, 0x44, 0x6b, 0xbb, 0xe1, 0x2d, 0x06, 0xd6, 0xbc, 0x0d, 0xc9, 0x63, 0x6d, 0x75, 0x4d, 0xbc, 0x92, 0x89, 0x6f, 0xb9, 0xcc, 0x49, 0xe5, 0xb5, 0xa2, 0xf0, 0xdc, 0x3d, 0x1c, 0x39, 0x27, 0x06, 0xb2, 0x38, 0x5b, 0x8b, 0x64, 0x7f, 0x12, 0xc3, 0xd6, 0x38, 0xbb, 0x1a, 0xc9, 0xfe, 0x34, 0x86, 0x5d, 0xe5, 0x6c, 0x3d, 0x92, 0xfd, 0xd5, 0x18, 0xb6, 0xce, 0xd9, 0xeb, 0x91, 0xec, 0xaf, 0xc5, 0xb0, 0xd7, 0x39, 0xbb, 0x16, 0xc9, 0xfe, 0x7a, 0x0c, 0xbb, 0xc6, 0xd9, 0x77, 0x22, 0xd9, 0xdf, 0x88, 0x61, 0xdf, 0xe1, 0xec, 0xbb, 0x91, 0xec, 0x6f, 0xc6, 0xb0, 0xef, 0x72, 0xf6, 0xbd, 0x48, 0xf6, 0xb7, 0x62, 0xd8, 0xf7, 0x18, 0x7b, 0x6d, 0x35, 0x92, 0xfd, 0x59, 0x34, 0x7b, 0x6d, 0x95, 0xb3, 0xa3, 0xb5, 0xf6, 0xed, 0x18, 0x36, 0xd7, 0xda, 0x5a, 0xb4, 0xd6, 0xbe, 0x13, 0xc3, 0xe6, 0x5a, 0x5b, 0x8b, 0xd6, 0xda, 0x77, 0x63, 0xd8, 0x5c, 0x6b, 0x6b, 0xd1, 0x5a, 0xfb, 0x5e, 0x0c, 0x9b, 0x6b, 0x6d, 0x2d, 0x5a, 0x6b, 0xdf, 0x8f, 0x61, 0x73, 0xad, 0xad, 0x45, 0x6b, 0xed, 0x07, 0x31, 0x6c, 0xae, 0xb5, 0xb5, 0x68, 0xad, 0xfd, 0x51, 0x0c, 0x9b, 0x6b, 0x6d, 0x2d, 0x5a, 0x6b, 0x7f, 0x1c, 0xc3, 0xe6, 0x5a, 0x5b, 0x8b, 0xd6, 0xda, 0x9f, 0xc4, 0xb0, 0xb9, 0xd6, 0xb4, 0x68, 0xad, 0xfd, 0x69, 0x34, 0x5b, 0xe3, 0x5a, 0xd3, 0xa2, 0xb5, 0xf6, 0x67, 0x31, 0x6c, 0xae, 0x35, 0x2d, 0x5a, 0x6b, 0x7f, 0x1e, 0xc3, 0xe6, 0x5a, 0xd3, 0xa2, 0xb5, 0xf6, 0xc3, 0x18, 0x36, 0xd7, 0x9a, 0x16, 0xad, 0xb5, 0xbf, 0x88, 0x61, 0x73, 0xad, 0x69, 0xd1, 0x5a, 0xfb, 0xcb, 0x18, 0x36, 0xd7, 0x9a, 0x16, 0xad, 0xb5, 0xbf, 0x8a, 0x61, 0x73, 0xad, 0x69, 0xd1, 0x5a, 0xfb, 0xeb, 0x18, 0x36, 0xd7, 0x9a, 0x16, 0xad, 0xb5, 0xbf, 0x89, 0x61, 0x73, 0xad, 0x69, 0xd1, 0x5a, 0xfb, 0xdb, 0x18, 0x36, 0xd7, 0x5a, 0x35, 0x5a, 0x6b, 0x7f, 0x17, 0xcd, 0xae, 0x72, 0xad, 0x55, 0xa3, 0xb5, 0xf6, 0xf7, 0x31, 0x6c, 0xae, 0xb5, 0x6a, 0xb4, 0xd6, 0xfe, 0x21, 0x86, 0xcd, 0xb5, 0x56, 0x8d, 0xd6, 0xda, 0x3f, 0xc6, 0xb0, 0xb9, 0xd6, 0xaa, 0xd1, 0x5a, 0xfb, 0x51, 0x0c, 0x9b, 0x6b, 0xad, 0x1a, 0xad, 0xb5, 0x7f, 0x8a, 0x61, 0x73, 0xad, 0x55, 0xa3, 0xb5, 0xf6, 0xcf, 0x31, 0x6c, 0xae, 0xb5, 0x6a, 0xb4, 0xd6, 0xfe, 0x25, 0x86, 0xcd, 0xb5, 0x56, 0x8d, 0xd6, 0xda, 0xbf, 0xc6, 0xb0, 0xb9, 0xd6, 0xaa, 0xd1, 0x5a, 0xfb, 0xb7, 0x18, 0x36, 0xd7, 0x9a, 0x1e, 0xad, 0xb5, 0x7f, 0x8f, 0x66, 0xeb, 0x5c, 0x6b, 0x7a, 0xb4, 0xd6, 0xfe, 0x23, 0x86, 0xcd, 0xb5, 0xa6, 0x47, 0x6b, 0xed, 0x3f, 0x63, 0xd8, 0x5c, 0x6b, 0x7a, 0xb4, 0xd6, 0xfe, 0x2b, 0x86, 0xcd, 0xb5, 0xa6, 0x47, 0x6b, 0xed, 0xbf, 0x63, 0xd8, 0x5c, 0x6b, 0x7a, 0xb4, 0xd6, 0xfe, 0x27, 0x86, 0xcd, 0xb5, 0xa6, 0x47, 0x6b, 0xed, 0xc7, 0x31, 0x6c, 0xae, 0x35, 0x3d, 0x5a, 0x6b, 0x3f, 0x89, 0x61, 0x73, 0xad, 0xe9, 0xd1, 0x5a, 0xfb, 0xdf, 0x18, 0x36, 0xd7, 0x9a, 0x1e, 0xad, 0xb5, 0xff, 0x8b, 0x61, 0x73, 0xad, 0xad, 0x47, 0x6b, 0xed, 0xff, 0xa3, 0xd9, 0xeb, 0xab, 0x3f, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xaa, 0x00, 0xcd, 0x32, 0x57, 0x39, 0x00, 0x00, } golang-gogoprotobuf-0.5/proto/testdata/test.pb.go.golden000066400000000000000000001420541317075173200235040ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. // source: test.proto // DO NOT EDIT! package testdata import proto "github.com/gogo/protobuf/proto" import json "encoding/json" import math "math" import () // Reference proto, json, and math imports to suppress error if they are not otherwise used. var _ = proto.Marshal var _ = &json.SyntaxError{} var _ = math.Inf type FOO int32 const ( FOO_FOO1 FOO = 1 ) var FOO_name = map[int32]string{ 1: "FOO1", } var FOO_value = map[string]int32{ "FOO1": 1, } func (x FOO) Enum() *FOO { p := new(FOO) *p = x return p } func (x FOO) String() string { return proto.EnumName(FOO_name, int32(x)) } func (x FOO) MarshalJSON() ([]byte, error) { return json.Marshal(x.String()) } func (x *FOO) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(FOO_value, data, "FOO") if err != nil { return err } *x = FOO(value) return nil } type GoTest_KIND int32 const ( GoTest_VOID GoTest_KIND = 0 GoTest_BOOL GoTest_KIND = 1 GoTest_BYTES GoTest_KIND = 2 GoTest_FINGERPRINT GoTest_KIND = 3 GoTest_FLOAT GoTest_KIND = 4 GoTest_INT GoTest_KIND = 5 GoTest_STRING GoTest_KIND = 6 GoTest_TIME GoTest_KIND = 7 GoTest_TUPLE GoTest_KIND = 8 GoTest_ARRAY GoTest_KIND = 9 GoTest_MAP GoTest_KIND = 10 GoTest_TABLE GoTest_KIND = 11 GoTest_FUNCTION GoTest_KIND = 12 ) var GoTest_KIND_name = map[int32]string{ 0: "VOID", 1: "BOOL", 2: "BYTES", 3: "FINGERPRINT", 4: "FLOAT", 5: "INT", 6: "STRING", 7: "TIME", 8: "TUPLE", 9: "ARRAY", 10: "MAP", 11: "TABLE", 12: "FUNCTION", } var GoTest_KIND_value = map[string]int32{ "VOID": 0, "BOOL": 1, "BYTES": 2, "FINGERPRINT": 3, "FLOAT": 4, "INT": 5, "STRING": 6, "TIME": 7, "TUPLE": 8, "ARRAY": 9, "MAP": 10, "TABLE": 11, "FUNCTION": 12, } func (x GoTest_KIND) Enum() *GoTest_KIND { p := new(GoTest_KIND) *p = x return p } func (x GoTest_KIND) String() string { return proto.EnumName(GoTest_KIND_name, int32(x)) } func (x GoTest_KIND) MarshalJSON() ([]byte, error) { return json.Marshal(x.String()) } func (x *GoTest_KIND) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(GoTest_KIND_value, data, "GoTest_KIND") if err != nil { return err } *x = GoTest_KIND(value) return nil } type MyMessage_Color int32 const ( MyMessage_RED MyMessage_Color = 0 MyMessage_GREEN MyMessage_Color = 1 MyMessage_BLUE MyMessage_Color = 2 ) var MyMessage_Color_name = map[int32]string{ 0: "RED", 1: "GREEN", 2: "BLUE", } var MyMessage_Color_value = map[string]int32{ "RED": 0, "GREEN": 1, "BLUE": 2, } func (x MyMessage_Color) Enum() *MyMessage_Color { p := new(MyMessage_Color) *p = x return p } func (x MyMessage_Color) String() string { return proto.EnumName(MyMessage_Color_name, int32(x)) } func (x MyMessage_Color) MarshalJSON() ([]byte, error) { return json.Marshal(x.String()) } func (x *MyMessage_Color) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MyMessage_Color_value, data, "MyMessage_Color") if err != nil { return err } *x = MyMessage_Color(value) return nil } type Defaults_Color int32 const ( Defaults_RED Defaults_Color = 0 Defaults_GREEN Defaults_Color = 1 Defaults_BLUE Defaults_Color = 2 ) var Defaults_Color_name = map[int32]string{ 0: "RED", 1: "GREEN", 2: "BLUE", } var Defaults_Color_value = map[string]int32{ "RED": 0, "GREEN": 1, "BLUE": 2, } func (x Defaults_Color) Enum() *Defaults_Color { p := new(Defaults_Color) *p = x return p } func (x Defaults_Color) String() string { return proto.EnumName(Defaults_Color_name, int32(x)) } func (x Defaults_Color) MarshalJSON() ([]byte, error) { return json.Marshal(x.String()) } func (x *Defaults_Color) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(Defaults_Color_value, data, "Defaults_Color") if err != nil { return err } *x = Defaults_Color(value) return nil } type RepeatedEnum_Color int32 const ( RepeatedEnum_RED RepeatedEnum_Color = 1 ) var RepeatedEnum_Color_name = map[int32]string{ 1: "RED", } var RepeatedEnum_Color_value = map[string]int32{ "RED": 1, } func (x RepeatedEnum_Color) Enum() *RepeatedEnum_Color { p := new(RepeatedEnum_Color) *p = x return p } func (x RepeatedEnum_Color) String() string { return proto.EnumName(RepeatedEnum_Color_name, int32(x)) } func (x RepeatedEnum_Color) MarshalJSON() ([]byte, error) { return json.Marshal(x.String()) } func (x *RepeatedEnum_Color) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(RepeatedEnum_Color_value, data, "RepeatedEnum_Color") if err != nil { return err } *x = RepeatedEnum_Color(value) return nil } type GoEnum struct { Foo *FOO `protobuf:"varint,1,req,name=foo,enum=testdata.FOO" json:"foo,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoEnum) Reset() { *m = GoEnum{} } func (m *GoEnum) String() string { return proto.CompactTextString(m) } func (*GoEnum) ProtoMessage() {} func (m *GoEnum) GetFoo() FOO { if m != nil && m.Foo != nil { return *m.Foo } return 0 } type GoTestField struct { Label *string `protobuf:"bytes,1,req" json:"Label,omitempty"` Type *string `protobuf:"bytes,2,req" json:"Type,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTestField) Reset() { *m = GoTestField{} } func (m *GoTestField) String() string { return proto.CompactTextString(m) } func (*GoTestField) ProtoMessage() {} func (m *GoTestField) GetLabel() string { if m != nil && m.Label != nil { return *m.Label } return "" } func (m *GoTestField) GetType() string { if m != nil && m.Type != nil { return *m.Type } return "" } type GoTest struct { Kind *GoTest_KIND `protobuf:"varint,1,req,enum=testdata.GoTest_KIND" json:"Kind,omitempty"` Table *string `protobuf:"bytes,2,opt" json:"Table,omitempty"` Param *int32 `protobuf:"varint,3,opt" json:"Param,omitempty"` RequiredField *GoTestField `protobuf:"bytes,4,req" json:"RequiredField,omitempty"` RepeatedField []*GoTestField `protobuf:"bytes,5,rep" json:"RepeatedField,omitempty"` OptionalField *GoTestField `protobuf:"bytes,6,opt" json:"OptionalField,omitempty"` F_BoolRequired *bool `protobuf:"varint,10,req,name=F_Bool_required" json:"F_Bool_required,omitempty"` F_Int32Required *int32 `protobuf:"varint,11,req,name=F_Int32_required" json:"F_Int32_required,omitempty"` F_Int64Required *int64 `protobuf:"varint,12,req,name=F_Int64_required" json:"F_Int64_required,omitempty"` F_Fixed32Required *uint32 `protobuf:"fixed32,13,req,name=F_Fixed32_required" json:"F_Fixed32_required,omitempty"` F_Fixed64Required *uint64 `protobuf:"fixed64,14,req,name=F_Fixed64_required" json:"F_Fixed64_required,omitempty"` F_Uint32Required *uint32 `protobuf:"varint,15,req,name=F_Uint32_required" json:"F_Uint32_required,omitempty"` F_Uint64Required *uint64 `protobuf:"varint,16,req,name=F_Uint64_required" json:"F_Uint64_required,omitempty"` F_FloatRequired *float32 `protobuf:"fixed32,17,req,name=F_Float_required" json:"F_Float_required,omitempty"` F_DoubleRequired *float64 `protobuf:"fixed64,18,req,name=F_Double_required" json:"F_Double_required,omitempty"` F_StringRequired *string `protobuf:"bytes,19,req,name=F_String_required" json:"F_String_required,omitempty"` F_BytesRequired []byte `protobuf:"bytes,101,req,name=F_Bytes_required" json:"F_Bytes_required,omitempty"` F_Sint32Required *int32 `protobuf:"zigzag32,102,req,name=F_Sint32_required" json:"F_Sint32_required,omitempty"` F_Sint64Required *int64 `protobuf:"zigzag64,103,req,name=F_Sint64_required" json:"F_Sint64_required,omitempty"` F_BoolRepeated []bool `protobuf:"varint,20,rep,name=F_Bool_repeated" json:"F_Bool_repeated,omitempty"` F_Int32Repeated []int32 `protobuf:"varint,21,rep,name=F_Int32_repeated" json:"F_Int32_repeated,omitempty"` F_Int64Repeated []int64 `protobuf:"varint,22,rep,name=F_Int64_repeated" json:"F_Int64_repeated,omitempty"` F_Fixed32Repeated []uint32 `protobuf:"fixed32,23,rep,name=F_Fixed32_repeated" json:"F_Fixed32_repeated,omitempty"` F_Fixed64Repeated []uint64 `protobuf:"fixed64,24,rep,name=F_Fixed64_repeated" json:"F_Fixed64_repeated,omitempty"` F_Uint32Repeated []uint32 `protobuf:"varint,25,rep,name=F_Uint32_repeated" json:"F_Uint32_repeated,omitempty"` F_Uint64Repeated []uint64 `protobuf:"varint,26,rep,name=F_Uint64_repeated" json:"F_Uint64_repeated,omitempty"` F_FloatRepeated []float32 `protobuf:"fixed32,27,rep,name=F_Float_repeated" json:"F_Float_repeated,omitempty"` F_DoubleRepeated []float64 `protobuf:"fixed64,28,rep,name=F_Double_repeated" json:"F_Double_repeated,omitempty"` F_StringRepeated []string `protobuf:"bytes,29,rep,name=F_String_repeated" json:"F_String_repeated,omitempty"` F_BytesRepeated [][]byte `protobuf:"bytes,201,rep,name=F_Bytes_repeated" json:"F_Bytes_repeated,omitempty"` F_Sint32Repeated []int32 `protobuf:"zigzag32,202,rep,name=F_Sint32_repeated" json:"F_Sint32_repeated,omitempty"` F_Sint64Repeated []int64 `protobuf:"zigzag64,203,rep,name=F_Sint64_repeated" json:"F_Sint64_repeated,omitempty"` F_BoolOptional *bool `protobuf:"varint,30,opt,name=F_Bool_optional" json:"F_Bool_optional,omitempty"` F_Int32Optional *int32 `protobuf:"varint,31,opt,name=F_Int32_optional" json:"F_Int32_optional,omitempty"` F_Int64Optional *int64 `protobuf:"varint,32,opt,name=F_Int64_optional" json:"F_Int64_optional,omitempty"` F_Fixed32Optional *uint32 `protobuf:"fixed32,33,opt,name=F_Fixed32_optional" json:"F_Fixed32_optional,omitempty"` F_Fixed64Optional *uint64 `protobuf:"fixed64,34,opt,name=F_Fixed64_optional" json:"F_Fixed64_optional,omitempty"` F_Uint32Optional *uint32 `protobuf:"varint,35,opt,name=F_Uint32_optional" json:"F_Uint32_optional,omitempty"` F_Uint64Optional *uint64 `protobuf:"varint,36,opt,name=F_Uint64_optional" json:"F_Uint64_optional,omitempty"` F_FloatOptional *float32 `protobuf:"fixed32,37,opt,name=F_Float_optional" json:"F_Float_optional,omitempty"` F_DoubleOptional *float64 `protobuf:"fixed64,38,opt,name=F_Double_optional" json:"F_Double_optional,omitempty"` F_StringOptional *string `protobuf:"bytes,39,opt,name=F_String_optional" json:"F_String_optional,omitempty"` F_BytesOptional []byte `protobuf:"bytes,301,opt,name=F_Bytes_optional" json:"F_Bytes_optional,omitempty"` F_Sint32Optional *int32 `protobuf:"zigzag32,302,opt,name=F_Sint32_optional" json:"F_Sint32_optional,omitempty"` F_Sint64Optional *int64 `protobuf:"zigzag64,303,opt,name=F_Sint64_optional" json:"F_Sint64_optional,omitempty"` F_BoolDefaulted *bool `protobuf:"varint,40,opt,name=F_Bool_defaulted,def=1" json:"F_Bool_defaulted,omitempty"` F_Int32Defaulted *int32 `protobuf:"varint,41,opt,name=F_Int32_defaulted,def=32" json:"F_Int32_defaulted,omitempty"` F_Int64Defaulted *int64 `protobuf:"varint,42,opt,name=F_Int64_defaulted,def=64" json:"F_Int64_defaulted,omitempty"` F_Fixed32Defaulted *uint32 `protobuf:"fixed32,43,opt,name=F_Fixed32_defaulted,def=320" json:"F_Fixed32_defaulted,omitempty"` F_Fixed64Defaulted *uint64 `protobuf:"fixed64,44,opt,name=F_Fixed64_defaulted,def=640" json:"F_Fixed64_defaulted,omitempty"` F_Uint32Defaulted *uint32 `protobuf:"varint,45,opt,name=F_Uint32_defaulted,def=3200" json:"F_Uint32_defaulted,omitempty"` F_Uint64Defaulted *uint64 `protobuf:"varint,46,opt,name=F_Uint64_defaulted,def=6400" json:"F_Uint64_defaulted,omitempty"` F_FloatDefaulted *float32 `protobuf:"fixed32,47,opt,name=F_Float_defaulted,def=314159" json:"F_Float_defaulted,omitempty"` F_DoubleDefaulted *float64 `protobuf:"fixed64,48,opt,name=F_Double_defaulted,def=271828" json:"F_Double_defaulted,omitempty"` F_StringDefaulted *string `protobuf:"bytes,49,opt,name=F_String_defaulted,def=hello, \"world!\"\n" json:"F_String_defaulted,omitempty"` F_BytesDefaulted []byte `protobuf:"bytes,401,opt,name=F_Bytes_defaulted,def=Bignose" json:"F_Bytes_defaulted,omitempty"` F_Sint32Defaulted *int32 `protobuf:"zigzag32,402,opt,name=F_Sint32_defaulted,def=-32" json:"F_Sint32_defaulted,omitempty"` F_Sint64Defaulted *int64 `protobuf:"zigzag64,403,opt,name=F_Sint64_defaulted,def=-64" json:"F_Sint64_defaulted,omitempty"` F_BoolRepeatedPacked []bool `protobuf:"varint,50,rep,packed,name=F_Bool_repeated_packed" json:"F_Bool_repeated_packed,omitempty"` F_Int32RepeatedPacked []int32 `protobuf:"varint,51,rep,packed,name=F_Int32_repeated_packed" json:"F_Int32_repeated_packed,omitempty"` F_Int64RepeatedPacked []int64 `protobuf:"varint,52,rep,packed,name=F_Int64_repeated_packed" json:"F_Int64_repeated_packed,omitempty"` F_Fixed32RepeatedPacked []uint32 `protobuf:"fixed32,53,rep,packed,name=F_Fixed32_repeated_packed" json:"F_Fixed32_repeated_packed,omitempty"` F_Fixed64RepeatedPacked []uint64 `protobuf:"fixed64,54,rep,packed,name=F_Fixed64_repeated_packed" json:"F_Fixed64_repeated_packed,omitempty"` F_Uint32RepeatedPacked []uint32 `protobuf:"varint,55,rep,packed,name=F_Uint32_repeated_packed" json:"F_Uint32_repeated_packed,omitempty"` F_Uint64RepeatedPacked []uint64 `protobuf:"varint,56,rep,packed,name=F_Uint64_repeated_packed" json:"F_Uint64_repeated_packed,omitempty"` F_FloatRepeatedPacked []float32 `protobuf:"fixed32,57,rep,packed,name=F_Float_repeated_packed" json:"F_Float_repeated_packed,omitempty"` F_DoubleRepeatedPacked []float64 `protobuf:"fixed64,58,rep,packed,name=F_Double_repeated_packed" json:"F_Double_repeated_packed,omitempty"` F_Sint32RepeatedPacked []int32 `protobuf:"zigzag32,502,rep,packed,name=F_Sint32_repeated_packed" json:"F_Sint32_repeated_packed,omitempty"` F_Sint64RepeatedPacked []int64 `protobuf:"zigzag64,503,rep,packed,name=F_Sint64_repeated_packed" json:"F_Sint64_repeated_packed,omitempty"` Requiredgroup *GoTest_RequiredGroup `protobuf:"group,70,req,name=RequiredGroup" json:"requiredgroup,omitempty"` Repeatedgroup []*GoTest_RepeatedGroup `protobuf:"group,80,rep,name=RepeatedGroup" json:"repeatedgroup,omitempty"` Optionalgroup *GoTest_OptionalGroup `protobuf:"group,90,opt,name=OptionalGroup" json:"optionalgroup,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTest) Reset() { *m = GoTest{} } func (m *GoTest) String() string { return proto.CompactTextString(m) } func (*GoTest) ProtoMessage() {} const Default_GoTest_F_BoolDefaulted bool = true const Default_GoTest_F_Int32Defaulted int32 = 32 const Default_GoTest_F_Int64Defaulted int64 = 64 const Default_GoTest_F_Fixed32Defaulted uint32 = 320 const Default_GoTest_F_Fixed64Defaulted uint64 = 640 const Default_GoTest_F_Uint32Defaulted uint32 = 3200 const Default_GoTest_F_Uint64Defaulted uint64 = 6400 const Default_GoTest_F_FloatDefaulted float32 = 314159 const Default_GoTest_F_DoubleDefaulted float64 = 271828 const Default_GoTest_F_StringDefaulted string = "hello, \"world!\"\n" var Default_GoTest_F_BytesDefaulted []byte = []byte("Bignose") const Default_GoTest_F_Sint32Defaulted int32 = -32 const Default_GoTest_F_Sint64Defaulted int64 = -64 func (m *GoTest) GetKind() GoTest_KIND { if m != nil && m.Kind != nil { return *m.Kind } return 0 } func (m *GoTest) GetTable() string { if m != nil && m.Table != nil { return *m.Table } return "" } func (m *GoTest) GetParam() int32 { if m != nil && m.Param != nil { return *m.Param } return 0 } func (m *GoTest) GetRequiredField() *GoTestField { if m != nil { return m.RequiredField } return nil } func (m *GoTest) GetRepeatedField() []*GoTestField { if m != nil { return m.RepeatedField } return nil } func (m *GoTest) GetOptionalField() *GoTestField { if m != nil { return m.OptionalField } return nil } func (m *GoTest) GetF_BoolRequired() bool { if m != nil && m.F_BoolRequired != nil { return *m.F_BoolRequired } return false } func (m *GoTest) GetF_Int32Required() int32 { if m != nil && m.F_Int32Required != nil { return *m.F_Int32Required } return 0 } func (m *GoTest) GetF_Int64Required() int64 { if m != nil && m.F_Int64Required != nil { return *m.F_Int64Required } return 0 } func (m *GoTest) GetF_Fixed32Required() uint32 { if m != nil && m.F_Fixed32Required != nil { return *m.F_Fixed32Required } return 0 } func (m *GoTest) GetF_Fixed64Required() uint64 { if m != nil && m.F_Fixed64Required != nil { return *m.F_Fixed64Required } return 0 } func (m *GoTest) GetF_Uint32Required() uint32 { if m != nil && m.F_Uint32Required != nil { return *m.F_Uint32Required } return 0 } func (m *GoTest) GetF_Uint64Required() uint64 { if m != nil && m.F_Uint64Required != nil { return *m.F_Uint64Required } return 0 } func (m *GoTest) GetF_FloatRequired() float32 { if m != nil && m.F_FloatRequired != nil { return *m.F_FloatRequired } return 0 } func (m *GoTest) GetF_DoubleRequired() float64 { if m != nil && m.F_DoubleRequired != nil { return *m.F_DoubleRequired } return 0 } func (m *GoTest) GetF_StringRequired() string { if m != nil && m.F_StringRequired != nil { return *m.F_StringRequired } return "" } func (m *GoTest) GetF_BytesRequired() []byte { if m != nil { return m.F_BytesRequired } return nil } func (m *GoTest) GetF_Sint32Required() int32 { if m != nil && m.F_Sint32Required != nil { return *m.F_Sint32Required } return 0 } func (m *GoTest) GetF_Sint64Required() int64 { if m != nil && m.F_Sint64Required != nil { return *m.F_Sint64Required } return 0 } func (m *GoTest) GetF_BoolRepeated() []bool { if m != nil { return m.F_BoolRepeated } return nil } func (m *GoTest) GetF_Int32Repeated() []int32 { if m != nil { return m.F_Int32Repeated } return nil } func (m *GoTest) GetF_Int64Repeated() []int64 { if m != nil { return m.F_Int64Repeated } return nil } func (m *GoTest) GetF_Fixed32Repeated() []uint32 { if m != nil { return m.F_Fixed32Repeated } return nil } func (m *GoTest) GetF_Fixed64Repeated() []uint64 { if m != nil { return m.F_Fixed64Repeated } return nil } func (m *GoTest) GetF_Uint32Repeated() []uint32 { if m != nil { return m.F_Uint32Repeated } return nil } func (m *GoTest) GetF_Uint64Repeated() []uint64 { if m != nil { return m.F_Uint64Repeated } return nil } func (m *GoTest) GetF_FloatRepeated() []float32 { if m != nil { return m.F_FloatRepeated } return nil } func (m *GoTest) GetF_DoubleRepeated() []float64 { if m != nil { return m.F_DoubleRepeated } return nil } func (m *GoTest) GetF_StringRepeated() []string { if m != nil { return m.F_StringRepeated } return nil } func (m *GoTest) GetF_BytesRepeated() [][]byte { if m != nil { return m.F_BytesRepeated } return nil } func (m *GoTest) GetF_Sint32Repeated() []int32 { if m != nil { return m.F_Sint32Repeated } return nil } func (m *GoTest) GetF_Sint64Repeated() []int64 { if m != nil { return m.F_Sint64Repeated } return nil } func (m *GoTest) GetF_BoolOptional() bool { if m != nil && m.F_BoolOptional != nil { return *m.F_BoolOptional } return false } func (m *GoTest) GetF_Int32Optional() int32 { if m != nil && m.F_Int32Optional != nil { return *m.F_Int32Optional } return 0 } func (m *GoTest) GetF_Int64Optional() int64 { if m != nil && m.F_Int64Optional != nil { return *m.F_Int64Optional } return 0 } func (m *GoTest) GetF_Fixed32Optional() uint32 { if m != nil && m.F_Fixed32Optional != nil { return *m.F_Fixed32Optional } return 0 } func (m *GoTest) GetF_Fixed64Optional() uint64 { if m != nil && m.F_Fixed64Optional != nil { return *m.F_Fixed64Optional } return 0 } func (m *GoTest) GetF_Uint32Optional() uint32 { if m != nil && m.F_Uint32Optional != nil { return *m.F_Uint32Optional } return 0 } func (m *GoTest) GetF_Uint64Optional() uint64 { if m != nil && m.F_Uint64Optional != nil { return *m.F_Uint64Optional } return 0 } func (m *GoTest) GetF_FloatOptional() float32 { if m != nil && m.F_FloatOptional != nil { return *m.F_FloatOptional } return 0 } func (m *GoTest) GetF_DoubleOptional() float64 { if m != nil && m.F_DoubleOptional != nil { return *m.F_DoubleOptional } return 0 } func (m *GoTest) GetF_StringOptional() string { if m != nil && m.F_StringOptional != nil { return *m.F_StringOptional } return "" } func (m *GoTest) GetF_BytesOptional() []byte { if m != nil { return m.F_BytesOptional } return nil } func (m *GoTest) GetF_Sint32Optional() int32 { if m != nil && m.F_Sint32Optional != nil { return *m.F_Sint32Optional } return 0 } func (m *GoTest) GetF_Sint64Optional() int64 { if m != nil && m.F_Sint64Optional != nil { return *m.F_Sint64Optional } return 0 } func (m *GoTest) GetF_BoolDefaulted() bool { if m != nil && m.F_BoolDefaulted != nil { return *m.F_BoolDefaulted } return Default_GoTest_F_BoolDefaulted } func (m *GoTest) GetF_Int32Defaulted() int32 { if m != nil && m.F_Int32Defaulted != nil { return *m.F_Int32Defaulted } return Default_GoTest_F_Int32Defaulted } func (m *GoTest) GetF_Int64Defaulted() int64 { if m != nil && m.F_Int64Defaulted != nil { return *m.F_Int64Defaulted } return Default_GoTest_F_Int64Defaulted } func (m *GoTest) GetF_Fixed32Defaulted() uint32 { if m != nil && m.F_Fixed32Defaulted != nil { return *m.F_Fixed32Defaulted } return Default_GoTest_F_Fixed32Defaulted } func (m *GoTest) GetF_Fixed64Defaulted() uint64 { if m != nil && m.F_Fixed64Defaulted != nil { return *m.F_Fixed64Defaulted } return Default_GoTest_F_Fixed64Defaulted } func (m *GoTest) GetF_Uint32Defaulted() uint32 { if m != nil && m.F_Uint32Defaulted != nil { return *m.F_Uint32Defaulted } return Default_GoTest_F_Uint32Defaulted } func (m *GoTest) GetF_Uint64Defaulted() uint64 { if m != nil && m.F_Uint64Defaulted != nil { return *m.F_Uint64Defaulted } return Default_GoTest_F_Uint64Defaulted } func (m *GoTest) GetF_FloatDefaulted() float32 { if m != nil && m.F_FloatDefaulted != nil { return *m.F_FloatDefaulted } return Default_GoTest_F_FloatDefaulted } func (m *GoTest) GetF_DoubleDefaulted() float64 { if m != nil && m.F_DoubleDefaulted != nil { return *m.F_DoubleDefaulted } return Default_GoTest_F_DoubleDefaulted } func (m *GoTest) GetF_StringDefaulted() string { if m != nil && m.F_StringDefaulted != nil { return *m.F_StringDefaulted } return Default_GoTest_F_StringDefaulted } func (m *GoTest) GetF_BytesDefaulted() []byte { if m != nil && m.F_BytesDefaulted != nil { return m.F_BytesDefaulted } return append([]byte(nil), Default_GoTest_F_BytesDefaulted...) } func (m *GoTest) GetF_Sint32Defaulted() int32 { if m != nil && m.F_Sint32Defaulted != nil { return *m.F_Sint32Defaulted } return Default_GoTest_F_Sint32Defaulted } func (m *GoTest) GetF_Sint64Defaulted() int64 { if m != nil && m.F_Sint64Defaulted != nil { return *m.F_Sint64Defaulted } return Default_GoTest_F_Sint64Defaulted } func (m *GoTest) GetF_BoolRepeatedPacked() []bool { if m != nil { return m.F_BoolRepeatedPacked } return nil } func (m *GoTest) GetF_Int32RepeatedPacked() []int32 { if m != nil { return m.F_Int32RepeatedPacked } return nil } func (m *GoTest) GetF_Int64RepeatedPacked() []int64 { if m != nil { return m.F_Int64RepeatedPacked } return nil } func (m *GoTest) GetF_Fixed32RepeatedPacked() []uint32 { if m != nil { return m.F_Fixed32RepeatedPacked } return nil } func (m *GoTest) GetF_Fixed64RepeatedPacked() []uint64 { if m != nil { return m.F_Fixed64RepeatedPacked } return nil } func (m *GoTest) GetF_Uint32RepeatedPacked() []uint32 { if m != nil { return m.F_Uint32RepeatedPacked } return nil } func (m *GoTest) GetF_Uint64RepeatedPacked() []uint64 { if m != nil { return m.F_Uint64RepeatedPacked } return nil } func (m *GoTest) GetF_FloatRepeatedPacked() []float32 { if m != nil { return m.F_FloatRepeatedPacked } return nil } func (m *GoTest) GetF_DoubleRepeatedPacked() []float64 { if m != nil { return m.F_DoubleRepeatedPacked } return nil } func (m *GoTest) GetF_Sint32RepeatedPacked() []int32 { if m != nil { return m.F_Sint32RepeatedPacked } return nil } func (m *GoTest) GetF_Sint64RepeatedPacked() []int64 { if m != nil { return m.F_Sint64RepeatedPacked } return nil } func (m *GoTest) GetRequiredgroup() *GoTest_RequiredGroup { if m != nil { return m.Requiredgroup } return nil } func (m *GoTest) GetRepeatedgroup() []*GoTest_RepeatedGroup { if m != nil { return m.Repeatedgroup } return nil } func (m *GoTest) GetOptionalgroup() *GoTest_OptionalGroup { if m != nil { return m.Optionalgroup } return nil } type GoTest_RequiredGroup struct { RequiredField *string `protobuf:"bytes,71,req" json:"RequiredField,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTest_RequiredGroup) Reset() { *m = GoTest_RequiredGroup{} } func (m *GoTest_RequiredGroup) GetRequiredField() string { if m != nil && m.RequiredField != nil { return *m.RequiredField } return "" } type GoTest_RepeatedGroup struct { RequiredField *string `protobuf:"bytes,81,req" json:"RequiredField,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTest_RepeatedGroup) Reset() { *m = GoTest_RepeatedGroup{} } func (m *GoTest_RepeatedGroup) GetRequiredField() string { if m != nil && m.RequiredField != nil { return *m.RequiredField } return "" } type GoTest_OptionalGroup struct { RequiredField *string `protobuf:"bytes,91,req" json:"RequiredField,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoTest_OptionalGroup) Reset() { *m = GoTest_OptionalGroup{} } func (m *GoTest_OptionalGroup) GetRequiredField() string { if m != nil && m.RequiredField != nil { return *m.RequiredField } return "" } type GoSkipTest struct { SkipInt32 *int32 `protobuf:"varint,11,req,name=skip_int32" json:"skip_int32,omitempty"` SkipFixed32 *uint32 `protobuf:"fixed32,12,req,name=skip_fixed32" json:"skip_fixed32,omitempty"` SkipFixed64 *uint64 `protobuf:"fixed64,13,req,name=skip_fixed64" json:"skip_fixed64,omitempty"` SkipString *string `protobuf:"bytes,14,req,name=skip_string" json:"skip_string,omitempty"` Skipgroup *GoSkipTest_SkipGroup `protobuf:"group,15,req,name=SkipGroup" json:"skipgroup,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoSkipTest) Reset() { *m = GoSkipTest{} } func (m *GoSkipTest) String() string { return proto.CompactTextString(m) } func (*GoSkipTest) ProtoMessage() {} func (m *GoSkipTest) GetSkipInt32() int32 { if m != nil && m.SkipInt32 != nil { return *m.SkipInt32 } return 0 } func (m *GoSkipTest) GetSkipFixed32() uint32 { if m != nil && m.SkipFixed32 != nil { return *m.SkipFixed32 } return 0 } func (m *GoSkipTest) GetSkipFixed64() uint64 { if m != nil && m.SkipFixed64 != nil { return *m.SkipFixed64 } return 0 } func (m *GoSkipTest) GetSkipString() string { if m != nil && m.SkipString != nil { return *m.SkipString } return "" } func (m *GoSkipTest) GetSkipgroup() *GoSkipTest_SkipGroup { if m != nil { return m.Skipgroup } return nil } type GoSkipTest_SkipGroup struct { GroupInt32 *int32 `protobuf:"varint,16,req,name=group_int32" json:"group_int32,omitempty"` GroupString *string `protobuf:"bytes,17,req,name=group_string" json:"group_string,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GoSkipTest_SkipGroup) Reset() { *m = GoSkipTest_SkipGroup{} } func (m *GoSkipTest_SkipGroup) GetGroupInt32() int32 { if m != nil && m.GroupInt32 != nil { return *m.GroupInt32 } return 0 } func (m *GoSkipTest_SkipGroup) GetGroupString() string { if m != nil && m.GroupString != nil { return *m.GroupString } return "" } type NonPackedTest struct { A []int32 `protobuf:"varint,1,rep,name=a" json:"a,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NonPackedTest) Reset() { *m = NonPackedTest{} } func (m *NonPackedTest) String() string { return proto.CompactTextString(m) } func (*NonPackedTest) ProtoMessage() {} func (m *NonPackedTest) GetA() []int32 { if m != nil { return m.A } return nil } type PackedTest struct { B []int32 `protobuf:"varint,1,rep,packed,name=b" json:"b,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *PackedTest) Reset() { *m = PackedTest{} } func (m *PackedTest) String() string { return proto.CompactTextString(m) } func (*PackedTest) ProtoMessage() {} func (m *PackedTest) GetB() []int32 { if m != nil { return m.B } return nil } type MaxTag struct { LastField *string `protobuf:"bytes,536870911,opt,name=last_field" json:"last_field,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MaxTag) Reset() { *m = MaxTag{} } func (m *MaxTag) String() string { return proto.CompactTextString(m) } func (*MaxTag) ProtoMessage() {} func (m *MaxTag) GetLastField() string { if m != nil && m.LastField != nil { return *m.LastField } return "" } type OldMessage struct { Nested *OldMessage_Nested `protobuf:"bytes,1,opt,name=nested" json:"nested,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldMessage) Reset() { *m = OldMessage{} } func (m *OldMessage) String() string { return proto.CompactTextString(m) } func (*OldMessage) ProtoMessage() {} func (m *OldMessage) GetNested() *OldMessage_Nested { if m != nil { return m.Nested } return nil } type OldMessage_Nested struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldMessage_Nested) Reset() { *m = OldMessage_Nested{} } func (m *OldMessage_Nested) String() string { return proto.CompactTextString(m) } func (*OldMessage_Nested) ProtoMessage() {} func (m *OldMessage_Nested) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } type NewMessage struct { Nested *NewMessage_Nested `protobuf:"bytes,1,opt,name=nested" json:"nested,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NewMessage) Reset() { *m = NewMessage{} } func (m *NewMessage) String() string { return proto.CompactTextString(m) } func (*NewMessage) ProtoMessage() {} func (m *NewMessage) GetNested() *NewMessage_Nested { if m != nil { return m.Nested } return nil } type NewMessage_Nested struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` FoodGroup *string `protobuf:"bytes,2,opt,name=food_group" json:"food_group,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NewMessage_Nested) Reset() { *m = NewMessage_Nested{} } func (m *NewMessage_Nested) String() string { return proto.CompactTextString(m) } func (*NewMessage_Nested) ProtoMessage() {} func (m *NewMessage_Nested) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *NewMessage_Nested) GetFoodGroup() string { if m != nil && m.FoodGroup != nil { return *m.FoodGroup } return "" } type InnerMessage struct { Host *string `protobuf:"bytes,1,req,name=host" json:"host,omitempty"` Port *int32 `protobuf:"varint,2,opt,name=port,def=4000" json:"port,omitempty"` Connected *bool `protobuf:"varint,3,opt,name=connected" json:"connected,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *InnerMessage) Reset() { *m = InnerMessage{} } func (m *InnerMessage) String() string { return proto.CompactTextString(m) } func (*InnerMessage) ProtoMessage() {} const Default_InnerMessage_Port int32 = 4000 func (m *InnerMessage) GetHost() string { if m != nil && m.Host != nil { return *m.Host } return "" } func (m *InnerMessage) GetPort() int32 { if m != nil && m.Port != nil { return *m.Port } return Default_InnerMessage_Port } func (m *InnerMessage) GetConnected() bool { if m != nil && m.Connected != nil { return *m.Connected } return false } type OtherMessage struct { Key *int64 `protobuf:"varint,1,opt,name=key" json:"key,omitempty"` Value []byte `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"` Weight *float32 `protobuf:"fixed32,3,opt,name=weight" json:"weight,omitempty"` Inner *InnerMessage `protobuf:"bytes,4,opt,name=inner" json:"inner,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OtherMessage) Reset() { *m = OtherMessage{} } func (m *OtherMessage) String() string { return proto.CompactTextString(m) } func (*OtherMessage) ProtoMessage() {} func (m *OtherMessage) GetKey() int64 { if m != nil && m.Key != nil { return *m.Key } return 0 } func (m *OtherMessage) GetValue() []byte { if m != nil { return m.Value } return nil } func (m *OtherMessage) GetWeight() float32 { if m != nil && m.Weight != nil { return *m.Weight } return 0 } func (m *OtherMessage) GetInner() *InnerMessage { if m != nil { return m.Inner } return nil } type MyMessage struct { Count *int32 `protobuf:"varint,1,req,name=count" json:"count,omitempty"` Name *string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"` Quote *string `protobuf:"bytes,3,opt,name=quote" json:"quote,omitempty"` Pet []string `protobuf:"bytes,4,rep,name=pet" json:"pet,omitempty"` Inner *InnerMessage `protobuf:"bytes,5,opt,name=inner" json:"inner,omitempty"` Others []*OtherMessage `protobuf:"bytes,6,rep,name=others" json:"others,omitempty"` Bikeshed *MyMessage_Color `protobuf:"varint,7,opt,name=bikeshed,enum=testdata.MyMessage_Color" json:"bikeshed,omitempty"` Somegroup *MyMessage_SomeGroup `protobuf:"group,8,opt,name=SomeGroup" json:"somegroup,omitempty"` RepBytes [][]byte `protobuf:"bytes,10,rep,name=rep_bytes" json:"rep_bytes,omitempty"` Bigfloat *float64 `protobuf:"fixed64,11,opt,name=bigfloat" json:"bigfloat,omitempty"` XXX_extensions map[int32]proto.Extension `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *MyMessage) Reset() { *m = MyMessage{} } func (m *MyMessage) String() string { return proto.CompactTextString(m) } func (*MyMessage) ProtoMessage() {} var extRange_MyMessage = []proto.ExtensionRange{ {100, 536870911}, } func (*MyMessage) ExtensionRangeArray() []proto.ExtensionRange { return extRange_MyMessage } func (m *MyMessage) ExtensionMap() map[int32]proto.Extension { if m.XXX_extensions == nil { m.XXX_extensions = make(map[int32]proto.Extension) } return m.XXX_extensions } func (m *MyMessage) GetCount() int32 { if m != nil && m.Count != nil { return *m.Count } return 0 } func (m *MyMessage) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *MyMessage) GetQuote() string { if m != nil && m.Quote != nil { return *m.Quote } return "" } func (m *MyMessage) GetPet() []string { if m != nil { return m.Pet } return nil } func (m *MyMessage) GetInner() *InnerMessage { if m != nil { return m.Inner } return nil } func (m *MyMessage) GetOthers() []*OtherMessage { if m != nil { return m.Others } return nil } func (m *MyMessage) GetBikeshed() MyMessage_Color { if m != nil && m.Bikeshed != nil { return *m.Bikeshed } return 0 } func (m *MyMessage) GetSomegroup() *MyMessage_SomeGroup { if m != nil { return m.Somegroup } return nil } func (m *MyMessage) GetRepBytes() [][]byte { if m != nil { return m.RepBytes } return nil } func (m *MyMessage) GetBigfloat() float64 { if m != nil && m.Bigfloat != nil { return *m.Bigfloat } return 0 } type MyMessage_SomeGroup struct { GroupField *int32 `protobuf:"varint,9,opt,name=group_field" json:"group_field,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MyMessage_SomeGroup) Reset() { *m = MyMessage_SomeGroup{} } func (m *MyMessage_SomeGroup) GetGroupField() int32 { if m != nil && m.GroupField != nil { return *m.GroupField } return 0 } type Ext struct { Data *string `protobuf:"bytes,1,opt,name=data" json:"data,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Ext) Reset() { *m = Ext{} } func (m *Ext) String() string { return proto.CompactTextString(m) } func (*Ext) ProtoMessage() {} func (m *Ext) GetData() string { if m != nil && m.Data != nil { return *m.Data } return "" } var E_Ext_More = &proto.ExtensionDesc{ ExtendedType: (*MyMessage)(nil), ExtensionType: (*Ext)(nil), Field: 103, Name: "testdata.Ext.more", Tag: "bytes,103,opt,name=more", } var E_Ext_Text = &proto.ExtensionDesc{ ExtendedType: (*MyMessage)(nil), ExtensionType: (*string)(nil), Field: 104, Name: "testdata.Ext.text", Tag: "bytes,104,opt,name=text", } var E_Ext_Number = &proto.ExtensionDesc{ ExtendedType: (*MyMessage)(nil), ExtensionType: (*int32)(nil), Field: 105, Name: "testdata.Ext.number", Tag: "varint,105,opt,name=number", } type MessageList struct { Message []*MessageList_Message `protobuf:"group,1,rep" json:"message,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MessageList) Reset() { *m = MessageList{} } func (m *MessageList) String() string { return proto.CompactTextString(m) } func (*MessageList) ProtoMessage() {} func (m *MessageList) GetMessage() []*MessageList_Message { if m != nil { return m.Message } return nil } type MessageList_Message struct { Name *string `protobuf:"bytes,2,req,name=name" json:"name,omitempty"` Count *int32 `protobuf:"varint,3,req,name=count" json:"count,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MessageList_Message) Reset() { *m = MessageList_Message{} } func (m *MessageList_Message) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *MessageList_Message) GetCount() int32 { if m != nil && m.Count != nil { return *m.Count } return 0 } type Strings struct { StringField *string `protobuf:"bytes,1,opt,name=string_field" json:"string_field,omitempty"` BytesField []byte `protobuf:"bytes,2,opt,name=bytes_field" json:"bytes_field,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Strings) Reset() { *m = Strings{} } func (m *Strings) String() string { return proto.CompactTextString(m) } func (*Strings) ProtoMessage() {} func (m *Strings) GetStringField() string { if m != nil && m.StringField != nil { return *m.StringField } return "" } func (m *Strings) GetBytesField() []byte { if m != nil { return m.BytesField } return nil } type Defaults struct { F_Bool *bool `protobuf:"varint,1,opt,def=1" json:"F_Bool,omitempty"` F_Int32 *int32 `protobuf:"varint,2,opt,def=32" json:"F_Int32,omitempty"` F_Int64 *int64 `protobuf:"varint,3,opt,def=64" json:"F_Int64,omitempty"` F_Fixed32 *uint32 `protobuf:"fixed32,4,opt,def=320" json:"F_Fixed32,omitempty"` F_Fixed64 *uint64 `protobuf:"fixed64,5,opt,def=640" json:"F_Fixed64,omitempty"` F_Uint32 *uint32 `protobuf:"varint,6,opt,def=3200" json:"F_Uint32,omitempty"` F_Uint64 *uint64 `protobuf:"varint,7,opt,def=6400" json:"F_Uint64,omitempty"` F_Float *float32 `protobuf:"fixed32,8,opt,def=314159" json:"F_Float,omitempty"` F_Double *float64 `protobuf:"fixed64,9,opt,def=271828" json:"F_Double,omitempty"` F_String *string `protobuf:"bytes,10,opt,def=hello, \"world!\"\n" json:"F_String,omitempty"` F_Bytes []byte `protobuf:"bytes,11,opt,def=Bignose" json:"F_Bytes,omitempty"` F_Sint32 *int32 `protobuf:"zigzag32,12,opt,def=-32" json:"F_Sint32,omitempty"` F_Sint64 *int64 `protobuf:"zigzag64,13,opt,def=-64" json:"F_Sint64,omitempty"` F_Enum *Defaults_Color `protobuf:"varint,14,opt,enum=testdata.Defaults_Color,def=1" json:"F_Enum,omitempty"` F_Pinf *float32 `protobuf:"fixed32,15,opt,def=inf" json:"F_Pinf,omitempty"` F_Ninf *float32 `protobuf:"fixed32,16,opt,def=-inf" json:"F_Ninf,omitempty"` F_Nan *float32 `protobuf:"fixed32,17,opt,def=nan" json:"F_Nan,omitempty"` Sub *SubDefaults `protobuf:"bytes,18,opt,name=sub" json:"sub,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Defaults) Reset() { *m = Defaults{} } func (m *Defaults) String() string { return proto.CompactTextString(m) } func (*Defaults) ProtoMessage() {} const Default_Defaults_F_Bool bool = true const Default_Defaults_F_Int32 int32 = 32 const Default_Defaults_F_Int64 int64 = 64 const Default_Defaults_F_Fixed32 uint32 = 320 const Default_Defaults_F_Fixed64 uint64 = 640 const Default_Defaults_F_Uint32 uint32 = 3200 const Default_Defaults_F_Uint64 uint64 = 6400 const Default_Defaults_F_Float float32 = 314159 const Default_Defaults_F_Double float64 = 271828 const Default_Defaults_F_String string = "hello, \"world!\"\n" var Default_Defaults_F_Bytes []byte = []byte("Bignose") const Default_Defaults_F_Sint32 int32 = -32 const Default_Defaults_F_Sint64 int64 = -64 const Default_Defaults_F_Enum Defaults_Color = Defaults_GREEN var Default_Defaults_F_Pinf float32 = float32(math.Inf(1)) var Default_Defaults_F_Ninf float32 = float32(math.Inf(-1)) var Default_Defaults_F_Nan float32 = float32(math.NaN()) func (m *Defaults) GetF_Bool() bool { if m != nil && m.F_Bool != nil { return *m.F_Bool } return Default_Defaults_F_Bool } func (m *Defaults) GetF_Int32() int32 { if m != nil && m.F_Int32 != nil { return *m.F_Int32 } return Default_Defaults_F_Int32 } func (m *Defaults) GetF_Int64() int64 { if m != nil && m.F_Int64 != nil { return *m.F_Int64 } return Default_Defaults_F_Int64 } func (m *Defaults) GetF_Fixed32() uint32 { if m != nil && m.F_Fixed32 != nil { return *m.F_Fixed32 } return Default_Defaults_F_Fixed32 } func (m *Defaults) GetF_Fixed64() uint64 { if m != nil && m.F_Fixed64 != nil { return *m.F_Fixed64 } return Default_Defaults_F_Fixed64 } func (m *Defaults) GetF_Uint32() uint32 { if m != nil && m.F_Uint32 != nil { return *m.F_Uint32 } return Default_Defaults_F_Uint32 } func (m *Defaults) GetF_Uint64() uint64 { if m != nil && m.F_Uint64 != nil { return *m.F_Uint64 } return Default_Defaults_F_Uint64 } func (m *Defaults) GetF_Float() float32 { if m != nil && m.F_Float != nil { return *m.F_Float } return Default_Defaults_F_Float } func (m *Defaults) GetF_Double() float64 { if m != nil && m.F_Double != nil { return *m.F_Double } return Default_Defaults_F_Double } func (m *Defaults) GetF_String() string { if m != nil && m.F_String != nil { return *m.F_String } return Default_Defaults_F_String } func (m *Defaults) GetF_Bytes() []byte { if m != nil && m.F_Bytes != nil { return m.F_Bytes } return append([]byte(nil), Default_Defaults_F_Bytes...) } func (m *Defaults) GetF_Sint32() int32 { if m != nil && m.F_Sint32 != nil { return *m.F_Sint32 } return Default_Defaults_F_Sint32 } func (m *Defaults) GetF_Sint64() int64 { if m != nil && m.F_Sint64 != nil { return *m.F_Sint64 } return Default_Defaults_F_Sint64 } func (m *Defaults) GetF_Enum() Defaults_Color { if m != nil && m.F_Enum != nil { return *m.F_Enum } return Default_Defaults_F_Enum } func (m *Defaults) GetF_Pinf() float32 { if m != nil && m.F_Pinf != nil { return *m.F_Pinf } return Default_Defaults_F_Pinf } func (m *Defaults) GetF_Ninf() float32 { if m != nil && m.F_Ninf != nil { return *m.F_Ninf } return Default_Defaults_F_Ninf } func (m *Defaults) GetF_Nan() float32 { if m != nil && m.F_Nan != nil { return *m.F_Nan } return Default_Defaults_F_Nan } func (m *Defaults) GetSub() *SubDefaults { if m != nil { return m.Sub } return nil } type SubDefaults struct { N *int64 `protobuf:"varint,1,opt,name=n,def=7" json:"n,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *SubDefaults) Reset() { *m = SubDefaults{} } func (m *SubDefaults) String() string { return proto.CompactTextString(m) } func (*SubDefaults) ProtoMessage() {} const Default_SubDefaults_N int64 = 7 func (m *SubDefaults) GetN() int64 { if m != nil && m.N != nil { return *m.N } return Default_SubDefaults_N } type RepeatedEnum struct { Color []RepeatedEnum_Color `protobuf:"varint,1,rep,name=color,enum=testdata.RepeatedEnum_Color" json:"color,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *RepeatedEnum) Reset() { *m = RepeatedEnum{} } func (m *RepeatedEnum) String() string { return proto.CompactTextString(m) } func (*RepeatedEnum) ProtoMessage() {} func (m *RepeatedEnum) GetColor() []RepeatedEnum_Color { if m != nil { return m.Color } return nil } type MoreRepeated struct { Bools []bool `protobuf:"varint,1,rep,name=bools" json:"bools,omitempty"` BoolsPacked []bool `protobuf:"varint,2,rep,packed,name=bools_packed" json:"bools_packed,omitempty"` Ints []int32 `protobuf:"varint,3,rep,name=ints" json:"ints,omitempty"` IntsPacked []int32 `protobuf:"varint,4,rep,packed,name=ints_packed" json:"ints_packed,omitempty"` Strings []string `protobuf:"bytes,5,rep,name=strings" json:"strings,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MoreRepeated) Reset() { *m = MoreRepeated{} } func (m *MoreRepeated) String() string { return proto.CompactTextString(m) } func (*MoreRepeated) ProtoMessage() {} func (m *MoreRepeated) GetBools() []bool { if m != nil { return m.Bools } return nil } func (m *MoreRepeated) GetBoolsPacked() []bool { if m != nil { return m.BoolsPacked } return nil } func (m *MoreRepeated) GetInts() []int32 { if m != nil { return m.Ints } return nil } func (m *MoreRepeated) GetIntsPacked() []int32 { if m != nil { return m.IntsPacked } return nil } func (m *MoreRepeated) GetStrings() []string { if m != nil { return m.Strings } return nil } type GroupOld struct { G *GroupOld_G `protobuf:"group,1,opt" json:"g,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GroupOld) Reset() { *m = GroupOld{} } func (m *GroupOld) String() string { return proto.CompactTextString(m) } func (*GroupOld) ProtoMessage() {} func (m *GroupOld) GetG() *GroupOld_G { if m != nil { return m.G } return nil } type GroupOld_G struct { X *int32 `protobuf:"varint,2,opt,name=x" json:"x,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GroupOld_G) Reset() { *m = GroupOld_G{} } func (m *GroupOld_G) GetX() int32 { if m != nil && m.X != nil { return *m.X } return 0 } type GroupNew struct { G *GroupNew_G `protobuf:"group,1,opt" json:"g,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GroupNew) Reset() { *m = GroupNew{} } func (m *GroupNew) String() string { return proto.CompactTextString(m) } func (*GroupNew) ProtoMessage() {} func (m *GroupNew) GetG() *GroupNew_G { if m != nil { return m.G } return nil } type GroupNew_G struct { X *int32 `protobuf:"varint,2,opt,name=x" json:"x,omitempty"` Y *int32 `protobuf:"varint,3,opt,name=y" json:"y,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GroupNew_G) Reset() { *m = GroupNew_G{} } func (m *GroupNew_G) GetX() int32 { if m != nil && m.X != nil { return *m.X } return 0 } func (m *GroupNew_G) GetY() int32 { if m != nil && m.Y != nil { return *m.Y } return 0 } var E_Greeting = &proto.ExtensionDesc{ ExtendedType: (*MyMessage)(nil), ExtensionType: ([]string)(nil), Field: 106, Name: "testdata.greeting", Tag: "bytes,106,rep,name=greeting", } func init() { proto.RegisterEnum("testdata.FOO", FOO_name, FOO_value) proto.RegisterEnum("testdata.GoTest_KIND", GoTest_KIND_name, GoTest_KIND_value) proto.RegisterEnum("testdata.MyMessage_Color", MyMessage_Color_name, MyMessage_Color_value) proto.RegisterEnum("testdata.Defaults_Color", Defaults_Color_name, Defaults_Color_value) proto.RegisterEnum("testdata.RepeatedEnum_Color", RepeatedEnum_Color_name, RepeatedEnum_Color_value) proto.RegisterExtension(E_Ext_More) proto.RegisterExtension(E_Ext_Text) proto.RegisterExtension(E_Ext_Number) proto.RegisterExtension(E_Greeting) } golang-gogoprotobuf-0.5/proto/testdata/test.proto000066400000000000000000000365251317075173200224000ustar00rootroot00000000000000// 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 feature-rich test file for the protocol compiler and libraries. syntax = "proto2"; package testdata; enum FOO { FOO1 = 1; }; message GoEnum { required FOO foo = 1; } message GoTestField { required string Label = 1; required string Type = 2; } message GoTest { // An enum, for completeness. enum KIND { VOID = 0; // Basic types BOOL = 1; BYTES = 2; FINGERPRINT = 3; FLOAT = 4; INT = 5; STRING = 6; TIME = 7; // Groupings TUPLE = 8; ARRAY = 9; MAP = 10; // Table types TABLE = 11; // Functions FUNCTION = 12; // last tag }; // Some typical parameters required KIND Kind = 1; optional string Table = 2; optional int32 Param = 3; // Required, repeated and optional foreign fields. required GoTestField RequiredField = 4; repeated GoTestField RepeatedField = 5; optional GoTestField OptionalField = 6; // Required fields of all basic types required bool F_Bool_required = 10; required int32 F_Int32_required = 11; required int64 F_Int64_required = 12; required fixed32 F_Fixed32_required = 13; required fixed64 F_Fixed64_required = 14; required uint32 F_Uint32_required = 15; required uint64 F_Uint64_required = 16; required float F_Float_required = 17; required double F_Double_required = 18; required string F_String_required = 19; required bytes F_Bytes_required = 101; required sint32 F_Sint32_required = 102; required sint64 F_Sint64_required = 103; // Repeated fields of all basic types repeated bool F_Bool_repeated = 20; repeated int32 F_Int32_repeated = 21; repeated int64 F_Int64_repeated = 22; repeated fixed32 F_Fixed32_repeated = 23; repeated fixed64 F_Fixed64_repeated = 24; repeated uint32 F_Uint32_repeated = 25; repeated uint64 F_Uint64_repeated = 26; repeated float F_Float_repeated = 27; repeated double F_Double_repeated = 28; repeated string F_String_repeated = 29; repeated bytes F_Bytes_repeated = 201; repeated sint32 F_Sint32_repeated = 202; repeated sint64 F_Sint64_repeated = 203; // Optional fields of all basic types optional bool F_Bool_optional = 30; optional int32 F_Int32_optional = 31; optional int64 F_Int64_optional = 32; optional fixed32 F_Fixed32_optional = 33; optional fixed64 F_Fixed64_optional = 34; optional uint32 F_Uint32_optional = 35; optional uint64 F_Uint64_optional = 36; optional float F_Float_optional = 37; optional double F_Double_optional = 38; optional string F_String_optional = 39; optional bytes F_Bytes_optional = 301; optional sint32 F_Sint32_optional = 302; optional sint64 F_Sint64_optional = 303; // Default-valued fields of all basic types optional bool F_Bool_defaulted = 40 [default=true]; optional int32 F_Int32_defaulted = 41 [default=32]; optional int64 F_Int64_defaulted = 42 [default=64]; optional fixed32 F_Fixed32_defaulted = 43 [default=320]; optional fixed64 F_Fixed64_defaulted = 44 [default=640]; optional uint32 F_Uint32_defaulted = 45 [default=3200]; optional uint64 F_Uint64_defaulted = 46 [default=6400]; optional float F_Float_defaulted = 47 [default=314159.]; optional double F_Double_defaulted = 48 [default=271828.]; optional string F_String_defaulted = 49 [default="hello, \"world!\"\n"]; optional bytes F_Bytes_defaulted = 401 [default="Bignose"]; optional sint32 F_Sint32_defaulted = 402 [default = -32]; optional sint64 F_Sint64_defaulted = 403 [default = -64]; // Packed repeated fields (no string or bytes). repeated bool F_Bool_repeated_packed = 50 [packed=true]; repeated int32 F_Int32_repeated_packed = 51 [packed=true]; repeated int64 F_Int64_repeated_packed = 52 [packed=true]; repeated fixed32 F_Fixed32_repeated_packed = 53 [packed=true]; repeated fixed64 F_Fixed64_repeated_packed = 54 [packed=true]; repeated uint32 F_Uint32_repeated_packed = 55 [packed=true]; repeated uint64 F_Uint64_repeated_packed = 56 [packed=true]; repeated float F_Float_repeated_packed = 57 [packed=true]; repeated double F_Double_repeated_packed = 58 [packed=true]; repeated sint32 F_Sint32_repeated_packed = 502 [packed=true]; repeated sint64 F_Sint64_repeated_packed = 503 [packed=true]; // Required, repeated, and optional groups. required group RequiredGroup = 70 { required string RequiredField = 71; }; repeated group RepeatedGroup = 80 { required string RequiredField = 81; }; optional group OptionalGroup = 90 { required string RequiredField = 91; }; } // For testing a group containing a required field. message GoTestRequiredGroupField { required group Group = 1 { required int32 Field = 2; }; } // For testing skipping of unrecognized fields. // Numbers are all big, larger than tag numbers in GoTestField, // the message used in the corresponding test. message GoSkipTest { required int32 skip_int32 = 11; required fixed32 skip_fixed32 = 12; required fixed64 skip_fixed64 = 13; required string skip_string = 14; required group SkipGroup = 15 { required int32 group_int32 = 16; required string group_string = 17; } } // For testing packed/non-packed decoder switching. // A serialized instance of one should be deserializable as the other. message NonPackedTest { repeated int32 a = 1; } message PackedTest { repeated int32 b = 1 [packed=true]; } message MaxTag { // Maximum possible tag number. optional string last_field = 536870911; } message OldMessage { message Nested { optional string name = 1; } optional Nested nested = 1; optional int32 num = 2; } // NewMessage is wire compatible with OldMessage; // imagine it as a future version. message NewMessage { message Nested { optional string name = 1; optional string food_group = 2; } optional Nested nested = 1; // This is an int32 in OldMessage. optional int64 num = 2; } // Smaller tests for ASCII formatting. message InnerMessage { required string host = 1; optional int32 port = 2 [default=4000]; optional bool connected = 3; } message OtherMessage { optional int64 key = 1; optional bytes value = 2; optional float weight = 3; optional InnerMessage inner = 4; extensions 100 to max; } message RequiredInnerMessage { required InnerMessage leo_finally_won_an_oscar = 1; } message MyMessage { required int32 count = 1; optional string name = 2; optional string quote = 3; repeated string pet = 4; optional InnerMessage inner = 5; repeated OtherMessage others = 6; optional RequiredInnerMessage we_must_go_deeper = 13; repeated InnerMessage rep_inner = 12; enum Color { RED = 0; GREEN = 1; BLUE = 2; }; optional Color bikeshed = 7; optional group SomeGroup = 8 { optional int32 group_field = 9; } // This field becomes [][]byte in the generated code. repeated bytes rep_bytes = 10; optional double bigfloat = 11; extensions 100 to max; } message Ext { extend MyMessage { optional Ext more = 103; optional string text = 104; optional int32 number = 105; } optional string data = 1; } extend MyMessage { repeated string greeting = 106; } message ComplexExtension { optional int32 first = 1; optional int32 second = 2; repeated int32 third = 3; } extend OtherMessage { optional ComplexExtension complex = 200; repeated ComplexExtension r_complex = 201; } message DefaultsMessage { enum DefaultsEnum { ZERO = 0; ONE = 1; TWO = 2; }; extensions 100 to max; } extend DefaultsMessage { optional double no_default_double = 101; optional float no_default_float = 102; optional int32 no_default_int32 = 103; optional int64 no_default_int64 = 104; optional uint32 no_default_uint32 = 105; optional uint64 no_default_uint64 = 106; optional sint32 no_default_sint32 = 107; optional sint64 no_default_sint64 = 108; optional fixed32 no_default_fixed32 = 109; optional fixed64 no_default_fixed64 = 110; optional sfixed32 no_default_sfixed32 = 111; optional sfixed64 no_default_sfixed64 = 112; optional bool no_default_bool = 113; optional string no_default_string = 114; optional bytes no_default_bytes = 115; optional DefaultsMessage.DefaultsEnum no_default_enum = 116; optional double default_double = 201 [default = 3.1415]; optional float default_float = 202 [default = 3.14]; optional int32 default_int32 = 203 [default = 42]; optional int64 default_int64 = 204 [default = 43]; optional uint32 default_uint32 = 205 [default = 44]; optional uint64 default_uint64 = 206 [default = 45]; optional sint32 default_sint32 = 207 [default = 46]; optional sint64 default_sint64 = 208 [default = 47]; optional fixed32 default_fixed32 = 209 [default = 48]; optional fixed64 default_fixed64 = 210 [default = 49]; optional sfixed32 default_sfixed32 = 211 [default = 50]; optional sfixed64 default_sfixed64 = 212 [default = 51]; optional bool default_bool = 213 [default = true]; optional string default_string = 214 [default = "Hello, string"]; optional bytes default_bytes = 215 [default = "Hello, bytes"]; optional DefaultsMessage.DefaultsEnum default_enum = 216 [default = ONE]; } message MyMessageSet { option message_set_wire_format = true; extensions 100 to max; } message Empty { } extend MyMessageSet { optional Empty x201 = 201; optional Empty x202 = 202; optional Empty x203 = 203; optional Empty x204 = 204; optional Empty x205 = 205; optional Empty x206 = 206; optional Empty x207 = 207; optional Empty x208 = 208; optional Empty x209 = 209; optional Empty x210 = 210; optional Empty x211 = 211; optional Empty x212 = 212; optional Empty x213 = 213; optional Empty x214 = 214; optional Empty x215 = 215; optional Empty x216 = 216; optional Empty x217 = 217; optional Empty x218 = 218; optional Empty x219 = 219; optional Empty x220 = 220; optional Empty x221 = 221; optional Empty x222 = 222; optional Empty x223 = 223; optional Empty x224 = 224; optional Empty x225 = 225; optional Empty x226 = 226; optional Empty x227 = 227; optional Empty x228 = 228; optional Empty x229 = 229; optional Empty x230 = 230; optional Empty x231 = 231; optional Empty x232 = 232; optional Empty x233 = 233; optional Empty x234 = 234; optional Empty x235 = 235; optional Empty x236 = 236; optional Empty x237 = 237; optional Empty x238 = 238; optional Empty x239 = 239; optional Empty x240 = 240; optional Empty x241 = 241; optional Empty x242 = 242; optional Empty x243 = 243; optional Empty x244 = 244; optional Empty x245 = 245; optional Empty x246 = 246; optional Empty x247 = 247; optional Empty x248 = 248; optional Empty x249 = 249; optional Empty x250 = 250; } message MessageList { repeated group Message = 1 { required string name = 2; required int32 count = 3; } } message Strings { optional string string_field = 1; optional bytes bytes_field = 2; } message Defaults { enum Color { RED = 0; GREEN = 1; BLUE = 2; } // Default-valued fields of all basic types. // Same as GoTest, but copied here to make testing easier. optional bool F_Bool = 1 [default=true]; optional int32 F_Int32 = 2 [default=32]; optional int64 F_Int64 = 3 [default=64]; optional fixed32 F_Fixed32 = 4 [default=320]; optional fixed64 F_Fixed64 = 5 [default=640]; optional uint32 F_Uint32 = 6 [default=3200]; optional uint64 F_Uint64 = 7 [default=6400]; optional float F_Float = 8 [default=314159.]; optional double F_Double = 9 [default=271828.]; optional string F_String = 10 [default="hello, \"world!\"\n"]; optional bytes F_Bytes = 11 [default="Bignose"]; optional sint32 F_Sint32 = 12 [default=-32]; optional sint64 F_Sint64 = 13 [default=-64]; optional Color F_Enum = 14 [default=GREEN]; // More fields with crazy defaults. optional float F_Pinf = 15 [default=inf]; optional float F_Ninf = 16 [default=-inf]; optional float F_Nan = 17 [default=nan]; // Sub-message. optional SubDefaults sub = 18; // Redundant but explicit defaults. optional string str_zero = 19 [default=""]; } message SubDefaults { optional int64 n = 1 [default=7]; } message RepeatedEnum { enum Color { RED = 1; } repeated Color color = 1; } message MoreRepeated { repeated bool bools = 1; repeated bool bools_packed = 2 [packed=true]; repeated int32 ints = 3; repeated int32 ints_packed = 4 [packed=true]; repeated int64 int64s_packed = 7 [packed=true]; repeated string strings = 5; repeated fixed32 fixeds = 6; } // GroupOld and GroupNew have the same wire format. // GroupNew has a new field inside a group. message GroupOld { optional group G = 101 { optional int32 x = 2; } } message GroupNew { optional group G = 101 { optional int32 x = 2; optional int32 y = 3; } } message FloatingPoint { required double f = 1; optional bool exact = 2; } message MessageWithMap { map name_mapping = 1; map msg_mapping = 2; map byte_mapping = 3; map str_to_str = 4; } message Oneof { oneof union { bool F_Bool = 1; int32 F_Int32 = 2; int64 F_Int64 = 3; fixed32 F_Fixed32 = 4; fixed64 F_Fixed64 = 5; uint32 F_Uint32 = 6; uint64 F_Uint64 = 7; float F_Float = 8; double F_Double = 9; string F_String = 10; bytes F_Bytes = 11; sint32 F_Sint32 = 12; sint64 F_Sint64 = 13; MyMessage.Color F_Enum = 14; GoTestField F_Message = 15; group F_Group = 16 { optional int32 x = 17; } int32 F_Largest_Tag = 536870911; } oneof tormato { int32 value = 100; } } message Communique { optional bool make_me_cry = 1; // This is a oneof, called "union". oneof union { int32 number = 5; string name = 6; bytes data = 7; double temp_c = 8; MyMessage.Color col = 9; Strings msg = 10; } } golang-gogoprotobuf-0.5/proto/text.go000066400000000000000000000555131317075173200200340ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // 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. package proto // Functions for writing the text protocol buffer format. import ( "bufio" "bytes" "encoding" "errors" "fmt" "io" "log" "math" "reflect" "sort" "strings" "sync" "time" ) var ( newline = []byte("\n") spaces = []byte(" ") gtNewline = []byte(">\n") endBraceNewline = []byte("}\n") backslashN = []byte{'\\', 'n'} backslashR = []byte{'\\', 'r'} backslashT = []byte{'\\', 't'} backslashDQ = []byte{'\\', '"'} backslashBS = []byte{'\\', '\\'} posInf = []byte("inf") negInf = []byte("-inf") nan = []byte("nan") ) type writer interface { io.Writer WriteByte(byte) error } // textWriter is an io.Writer that tracks its indentation level. type textWriter struct { ind int complete bool // if the current position is a complete line compact bool // whether to write out as a one-liner w writer } func (w *textWriter) WriteString(s string) (n int, err error) { if !strings.Contains(s, "\n") { if !w.compact && w.complete { w.writeIndent() } w.complete = false return io.WriteString(w.w, s) } // WriteString is typically called without newlines, so this // codepath and its copy are rare. We copy to avoid // duplicating all of Write's logic here. return w.Write([]byte(s)) } func (w *textWriter) Write(p []byte) (n int, err error) { newlines := bytes.Count(p, newline) if newlines == 0 { if !w.compact && w.complete { w.writeIndent() } n, err = w.w.Write(p) w.complete = false return n, err } frags := bytes.SplitN(p, newline, newlines+1) if w.compact { for i, frag := range frags { if i > 0 { if err := w.w.WriteByte(' '); err != nil { return n, err } n++ } nn, err := w.w.Write(frag) n += nn if err != nil { return n, err } } return n, nil } for i, frag := range frags { if w.complete { w.writeIndent() } nn, err := w.w.Write(frag) n += nn if err != nil { return n, err } if i+1 < len(frags) { if err := w.w.WriteByte('\n'); err != nil { return n, err } n++ } } w.complete = len(frags[len(frags)-1]) == 0 return n, nil } func (w *textWriter) WriteByte(c byte) error { if w.compact && c == '\n' { c = ' ' } if !w.compact && w.complete { w.writeIndent() } err := w.w.WriteByte(c) w.complete = c == '\n' return err } func (w *textWriter) indent() { w.ind++ } func (w *textWriter) unindent() { if w.ind == 0 { log.Print("proto: textWriter unindented too far") return } w.ind-- } func writeName(w *textWriter, props *Properties) error { if _, err := w.WriteString(props.OrigName); err != nil { return err } if props.Wire != "group" { return w.WriteByte(':') } return nil } // raw is the interface satisfied by RawMessage. type raw interface { Bytes() []byte } func requiresQuotes(u string) bool { // When type URL contains any characters except [0-9A-Za-z./\-]*, it must be quoted. for _, ch := range u { switch { case ch == '.' || ch == '/' || ch == '_': continue case '0' <= ch && ch <= '9': continue case 'A' <= ch && ch <= 'Z': continue case 'a' <= ch && ch <= 'z': continue default: return true } } return false } // isAny reports whether sv is a google.protobuf.Any message func isAny(sv reflect.Value) bool { type wkt interface { XXX_WellKnownType() string } t, ok := sv.Addr().Interface().(wkt) return ok && t.XXX_WellKnownType() == "Any" } // writeProto3Any writes an expanded google.protobuf.Any message. // // It returns (false, nil) if sv value can't be unmarshaled (e.g. because // required messages are not linked in). // // It returns (true, error) when sv was written in expanded format or an error // was encountered. func (tm *TextMarshaler) writeProto3Any(w *textWriter, sv reflect.Value) (bool, error) { turl := sv.FieldByName("TypeUrl") val := sv.FieldByName("Value") if !turl.IsValid() || !val.IsValid() { return true, errors.New("proto: invalid google.protobuf.Any message") } b, ok := val.Interface().([]byte) if !ok { return true, errors.New("proto: invalid google.protobuf.Any message") } parts := strings.Split(turl.String(), "/") mt := MessageType(parts[len(parts)-1]) if mt == nil { return false, nil } m := reflect.New(mt.Elem()) if err := Unmarshal(b, m.Interface().(Message)); err != nil { return false, nil } w.Write([]byte("[")) u := turl.String() if requiresQuotes(u) { writeString(w, u) } else { w.Write([]byte(u)) } if w.compact { w.Write([]byte("]:<")) } else { w.Write([]byte("]: <\n")) w.ind++ } if err := tm.writeStruct(w, m.Elem()); err != nil { return true, err } if w.compact { w.Write([]byte("> ")) } else { w.ind-- w.Write([]byte(">\n")) } return true, nil } func (tm *TextMarshaler) writeStruct(w *textWriter, sv reflect.Value) error { if tm.ExpandAny && isAny(sv) { if canExpand, err := tm.writeProto3Any(w, sv); canExpand { return err } } st := sv.Type() sprops := GetProperties(st) for i := 0; i < sv.NumField(); i++ { fv := sv.Field(i) props := sprops.Prop[i] name := st.Field(i).Name if strings.HasPrefix(name, "XXX_") { // There are two XXX_ fields: // XXX_unrecognized []byte // XXX_extensions map[int32]proto.Extension // The first is handled here; // the second is handled at the bottom of this function. if name == "XXX_unrecognized" && !fv.IsNil() { if err := writeUnknownStruct(w, fv.Interface().([]byte)); err != nil { return err } } continue } if fv.Kind() == reflect.Ptr && fv.IsNil() { // Field not filled in. This could be an optional field or // a required field that wasn't filled in. Either way, there // isn't anything we can show for it. continue } if fv.Kind() == reflect.Slice && fv.IsNil() { // Repeated field that is empty, or a bytes field that is unused. continue } if props.Repeated && fv.Kind() == reflect.Slice { // Repeated field. for j := 0; j < fv.Len(); j++ { if err := writeName(w, props); err != nil { return err } if !w.compact { if err := w.WriteByte(' '); err != nil { return err } } v := fv.Index(j) if v.Kind() == reflect.Ptr && v.IsNil() { // A nil message in a repeated field is not valid, // but we can handle that more gracefully than panicking. if _, err := w.Write([]byte("\n")); err != nil { return err } continue } if len(props.Enum) > 0 { if err := tm.writeEnum(w, v, props); err != nil { return err } } else if err := tm.writeAny(w, v, props); err != nil { return err } if err := w.WriteByte('\n'); err != nil { return err } } continue } if fv.Kind() == reflect.Map { // Map fields are rendered as a repeated struct with key/value fields. keys := fv.MapKeys() sort.Sort(mapKeys(keys)) for _, key := range keys { val := fv.MapIndex(key) if err := writeName(w, props); err != nil { return err } if !w.compact { if err := w.WriteByte(' '); err != nil { return err } } // open struct if err := w.WriteByte('<'); err != nil { return err } if !w.compact { if err := w.WriteByte('\n'); err != nil { return err } } w.indent() // key if _, err := w.WriteString("key:"); err != nil { return err } if !w.compact { if err := w.WriteByte(' '); err != nil { return err } } if err := tm.writeAny(w, key, props.mkeyprop); err != nil { return err } if err := w.WriteByte('\n'); err != nil { return err } // nil values aren't legal, but we can avoid panicking because of them. if val.Kind() != reflect.Ptr || !val.IsNil() { // value if _, err := w.WriteString("value:"); err != nil { return err } if !w.compact { if err := w.WriteByte(' '); err != nil { return err } } if err := tm.writeAny(w, val, props.mvalprop); err != nil { return err } if err := w.WriteByte('\n'); err != nil { return err } } // close struct w.unindent() if err := w.WriteByte('>'); err != nil { return err } if err := w.WriteByte('\n'); err != nil { return err } } continue } if props.proto3 && fv.Kind() == reflect.Slice && fv.Len() == 0 { // empty bytes field continue } if props.proto3 && fv.Kind() != reflect.Ptr && fv.Kind() != reflect.Slice { // proto3 non-repeated scalar field; skip if zero value if isProto3Zero(fv) { continue } } if fv.Kind() == reflect.Interface { // Check if it is a oneof. if st.Field(i).Tag.Get("protobuf_oneof") != "" { // fv is nil, or holds a pointer to generated struct. // That generated struct has exactly one field, // which has a protobuf struct tag. if fv.IsNil() { continue } inner := fv.Elem().Elem() // interface -> *T -> T tag := inner.Type().Field(0).Tag.Get("protobuf") props = new(Properties) // Overwrite the outer props var, but not its pointee. props.Parse(tag) // Write the value in the oneof, not the oneof itself. fv = inner.Field(0) // Special case to cope with malformed messages gracefully: // If the value in the oneof is a nil pointer, don't panic // in writeAny. if fv.Kind() == reflect.Ptr && fv.IsNil() { // Use errors.New so writeAny won't render quotes. msg := errors.New("/* nil */") fv = reflect.ValueOf(&msg).Elem() } } } if err := writeName(w, props); err != nil { return err } if !w.compact { if err := w.WriteByte(' '); err != nil { return err } } if b, ok := fv.Interface().(raw); ok { if err := writeRaw(w, b.Bytes()); err != nil { return err } continue } if len(props.Enum) > 0 { if err := tm.writeEnum(w, fv, props); err != nil { return err } } else if err := tm.writeAny(w, fv, props); err != nil { return err } if err := w.WriteByte('\n'); err != nil { return err } } // Extensions (the XXX_extensions field). pv := sv if pv.CanAddr() { pv = sv.Addr() } else { pv = reflect.New(sv.Type()) pv.Elem().Set(sv) } if pv.Type().Implements(extensionRangeType) { if err := tm.writeExtensions(w, pv); err != nil { return err } } return nil } // writeRaw writes an uninterpreted raw message. func writeRaw(w *textWriter, b []byte) error { if err := w.WriteByte('<'); err != nil { return err } if !w.compact { if err := w.WriteByte('\n'); err != nil { return err } } w.indent() if err := writeUnknownStruct(w, b); err != nil { return err } w.unindent() if err := w.WriteByte('>'); err != nil { return err } return nil } // writeAny writes an arbitrary field. func (tm *TextMarshaler) writeAny(w *textWriter, v reflect.Value, props *Properties) error { v = reflect.Indirect(v) if props != nil { if len(props.CustomType) > 0 { custom, ok := v.Interface().(Marshaler) if ok { data, err := custom.Marshal() if err != nil { return err } if err := writeString(w, string(data)); err != nil { return err } return nil } } else if len(props.CastType) > 0 { if _, ok := v.Interface().(interface { String() string }); ok { switch v.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: _, err := fmt.Fprintf(w, "%d", v.Interface()) return err } } } else if props.StdTime { t, ok := v.Interface().(time.Time) if !ok { return fmt.Errorf("stdtime is not time.Time, but %T", v.Interface()) } tproto, err := timestampProto(t) if err != nil { return err } propsCopy := *props // Make a copy so that this is goroutine-safe propsCopy.StdTime = false err = tm.writeAny(w, reflect.ValueOf(tproto), &propsCopy) return err } else if props.StdDuration { d, ok := v.Interface().(time.Duration) if !ok { return fmt.Errorf("stdtime is not time.Duration, but %T", v.Interface()) } dproto := durationProto(d) propsCopy := *props // Make a copy so that this is goroutine-safe propsCopy.StdDuration = false err := tm.writeAny(w, reflect.ValueOf(dproto), &propsCopy) return err } } // Floats have special cases. if v.Kind() == reflect.Float32 || v.Kind() == reflect.Float64 { x := v.Float() var b []byte switch { case math.IsInf(x, 1): b = posInf case math.IsInf(x, -1): b = negInf case math.IsNaN(x): b = nan } if b != nil { _, err := w.Write(b) return err } // Other values are handled below. } // We don't attempt to serialise every possible value type; only those // that can occur in protocol buffers. switch v.Kind() { case reflect.Slice: // Should only be a []byte; repeated fields are handled in writeStruct. if err := writeString(w, string(v.Bytes())); err != nil { return err } case reflect.String: if err := writeString(w, v.String()); err != nil { return err } case reflect.Struct: // Required/optional group/message. var bra, ket byte = '<', '>' if props != nil && props.Wire == "group" { bra, ket = '{', '}' } if err := w.WriteByte(bra); err != nil { return err } if !w.compact { if err := w.WriteByte('\n'); err != nil { return err } } w.indent() if etm, ok := v.Interface().(encoding.TextMarshaler); ok { text, err := etm.MarshalText() if err != nil { return err } if _, err = w.Write(text); err != nil { return err } } else if err := tm.writeStruct(w, v); err != nil { return err } w.unindent() if err := w.WriteByte(ket); err != nil { return err } default: _, err := fmt.Fprint(w, v.Interface()) return err } return nil } // equivalent to C's isprint. func isprint(c byte) bool { return c >= 0x20 && c < 0x7f } // writeString writes a string in the protocol buffer text format. // It is similar to strconv.Quote except we don't use Go escape sequences, // we treat the string as a byte sequence, and we use octal escapes. // These differences are to maintain interoperability with the other // languages' implementations of the text format. func writeString(w *textWriter, s string) error { // use WriteByte here to get any needed indent if err := w.WriteByte('"'); err != nil { return err } // Loop over the bytes, not the runes. for i := 0; i < len(s); i++ { var err error // Divergence from C++: we don't escape apostrophes. // There's no need to escape them, and the C++ parser // copes with a naked apostrophe. switch c := s[i]; c { case '\n': _, err = w.w.Write(backslashN) case '\r': _, err = w.w.Write(backslashR) case '\t': _, err = w.w.Write(backslashT) case '"': _, err = w.w.Write(backslashDQ) case '\\': _, err = w.w.Write(backslashBS) default: if isprint(c) { err = w.w.WriteByte(c) } else { _, err = fmt.Fprintf(w.w, "\\%03o", c) } } if err != nil { return err } } return w.WriteByte('"') } func writeUnknownStruct(w *textWriter, data []byte) (err error) { if !w.compact { if _, err := fmt.Fprintf(w, "/* %d unknown bytes */\n", len(data)); err != nil { return err } } b := NewBuffer(data) for b.index < len(b.buf) { x, err := b.DecodeVarint() if err != nil { _, ferr := fmt.Fprintf(w, "/* %v */\n", err) return ferr } wire, tag := x&7, x>>3 if wire == WireEndGroup { w.unindent() if _, werr := w.Write(endBraceNewline); werr != nil { return werr } continue } if _, ferr := fmt.Fprint(w, tag); ferr != nil { return ferr } if wire != WireStartGroup { if err = w.WriteByte(':'); err != nil { return err } } if !w.compact || wire == WireStartGroup { if err = w.WriteByte(' '); err != nil { return err } } switch wire { case WireBytes: buf, e := b.DecodeRawBytes(false) if e == nil { _, err = fmt.Fprintf(w, "%q", buf) } else { _, err = fmt.Fprintf(w, "/* %v */", e) } case WireFixed32: x, err = b.DecodeFixed32() err = writeUnknownInt(w, x, err) case WireFixed64: x, err = b.DecodeFixed64() err = writeUnknownInt(w, x, err) case WireStartGroup: err = w.WriteByte('{') w.indent() case WireVarint: x, err = b.DecodeVarint() err = writeUnknownInt(w, x, err) default: _, err = fmt.Fprintf(w, "/* unknown wire type %d */", wire) } if err != nil { return err } if err := w.WriteByte('\n'); err != nil { return err } } return nil } func writeUnknownInt(w *textWriter, x uint64, err error) error { if err == nil { _, err = fmt.Fprint(w, x) } else { _, err = fmt.Fprintf(w, "/* %v */", err) } return err } type int32Slice []int32 func (s int32Slice) Len() int { return len(s) } func (s int32Slice) Less(i, j int) bool { return s[i] < s[j] } func (s int32Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } // writeExtensions writes all the extensions in pv. // pv is assumed to be a pointer to a protocol message struct that is extendable. func (tm *TextMarshaler) writeExtensions(w *textWriter, pv reflect.Value) error { emap := extensionMaps[pv.Type().Elem()] e := pv.Interface().(Message) var m map[int32]Extension var mu sync.Locker if em, ok := e.(extensionsBytes); ok { eb := em.GetExtensions() var err error m, err = BytesToExtensionsMap(*eb) if err != nil { return err } mu = notLocker{} } else if _, ok := e.(extendableProto); ok { ep, _ := extendable(e) m, mu = ep.extensionsRead() if m == nil { return nil } } // Order the extensions by ID. // This isn't strictly necessary, but it will give us // canonical output, which will also make testing easier. mu.Lock() ids := make([]int32, 0, len(m)) for id := range m { ids = append(ids, id) } sort.Sort(int32Slice(ids)) mu.Unlock() for _, extNum := range ids { ext := m[extNum] var desc *ExtensionDesc if emap != nil { desc = emap[extNum] } if desc == nil { // Unknown extension. if err := writeUnknownStruct(w, ext.enc); err != nil { return err } continue } pb, err := GetExtension(e, desc) if err != nil { return fmt.Errorf("failed getting extension: %v", err) } // Repeated extensions will appear as a slice. if !desc.repeated() { if err := tm.writeExtension(w, desc.Name, pb); err != nil { return err } } else { v := reflect.ValueOf(pb) for i := 0; i < v.Len(); i++ { if err := tm.writeExtension(w, desc.Name, v.Index(i).Interface()); err != nil { return err } } } } return nil } func (tm *TextMarshaler) writeExtension(w *textWriter, name string, pb interface{}) error { if _, err := fmt.Fprintf(w, "[%s]:", name); err != nil { return err } if !w.compact { if err := w.WriteByte(' '); err != nil { return err } } if err := tm.writeAny(w, reflect.ValueOf(pb), nil); err != nil { return err } if err := w.WriteByte('\n'); err != nil { return err } return nil } func (w *textWriter) writeIndent() { if !w.complete { return } remain := w.ind * 2 for remain > 0 { n := remain if n > len(spaces) { n = len(spaces) } w.w.Write(spaces[:n]) remain -= n } w.complete = false } // TextMarshaler is a configurable text format marshaler. type TextMarshaler struct { Compact bool // use compact text format (one line). ExpandAny bool // expand google.protobuf.Any messages of known types } // Marshal writes a given protocol buffer in text format. // The only errors returned are from w. func (tm *TextMarshaler) Marshal(w io.Writer, pb Message) error { val := reflect.ValueOf(pb) if pb == nil || val.IsNil() { w.Write([]byte("")) return nil } var bw *bufio.Writer ww, ok := w.(writer) if !ok { bw = bufio.NewWriter(w) ww = bw } aw := &textWriter{ w: ww, complete: true, compact: tm.Compact, } if etm, ok := pb.(encoding.TextMarshaler); ok { text, err := etm.MarshalText() if err != nil { return err } if _, err = aw.Write(text); err != nil { return err } if bw != nil { return bw.Flush() } return nil } // Dereference the received pointer so we don't have outer < and >. v := reflect.Indirect(val) if err := tm.writeStruct(aw, v); err != nil { return err } if bw != nil { return bw.Flush() } return nil } // Text is the same as Marshal, but returns the string directly. func (tm *TextMarshaler) Text(pb Message) string { var buf bytes.Buffer tm.Marshal(&buf, pb) return buf.String() } var ( defaultTextMarshaler = TextMarshaler{} compactTextMarshaler = TextMarshaler{Compact: true} ) // TODO: consider removing some of the Marshal functions below. // MarshalText writes a given protocol buffer in text format. // The only errors returned are from w. func MarshalText(w io.Writer, pb Message) error { return defaultTextMarshaler.Marshal(w, pb) } // MarshalTextString is the same as MarshalText, but returns the string directly. func MarshalTextString(pb Message) string { return defaultTextMarshaler.Text(pb) } // CompactText writes a given protocol buffer in compact text format (one line). func CompactText(w io.Writer, pb Message) error { return compactTextMarshaler.Marshal(w, pb) } // CompactTextString is the same as CompactText, but returns the string directly. func CompactTextString(pb Message) string { return compactTextMarshaler.Text(pb) } golang-gogoprotobuf-0.5/proto/text_gogo.go000066400000000000000000000036501317075173200210420ustar00rootroot00000000000000// 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. package proto import ( "fmt" "reflect" ) func (tm *TextMarshaler) writeEnum(w *textWriter, v reflect.Value, props *Properties) error { m, ok := enumStringMaps[props.Enum] if !ok { if err := tm.writeAny(w, v, props); err != nil { return err } } key := int32(0) if v.Kind() == reflect.Ptr { key = int32(v.Elem().Int()) } else { key = int32(v.Int()) } s, ok := m[key] if !ok { if err := tm.writeAny(w, v, props); err != nil { return err } } _, err := fmt.Fprint(w, s) return err } golang-gogoprotobuf-0.5/proto/text_parser.go000066400000000000000000000614761317075173200214150ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // 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. package proto // Functions for parsing the Text protocol buffer format. // TODO: message sets. import ( "encoding" "errors" "fmt" "reflect" "strconv" "strings" "time" "unicode/utf8" ) // Error string emitted when deserializing Any and fields are already set const anyRepeatedlyUnpacked = "Any message unpacked multiple times, or %q already set" type ParseError struct { Message string Line int // 1-based line number Offset int // 0-based byte offset from start of input } func (p *ParseError) Error() string { if p.Line == 1 { // show offset only for first line return fmt.Sprintf("line 1.%d: %v", p.Offset, p.Message) } return fmt.Sprintf("line %d: %v", p.Line, p.Message) } type token struct { value string err *ParseError line int // line number offset int // byte number from start of input, not start of line unquoted string // the unquoted version of value, if it was a quoted string } func (t *token) String() string { if t.err == nil { return fmt.Sprintf("%q (line=%d, offset=%d)", t.value, t.line, t.offset) } return fmt.Sprintf("parse error: %v", t.err) } type textParser struct { s string // remaining input done bool // whether the parsing is finished (success or error) backed bool // whether back() was called offset, line int cur token } func newTextParser(s string) *textParser { p := new(textParser) p.s = s p.line = 1 p.cur.line = 1 return p } func (p *textParser) errorf(format string, a ...interface{}) *ParseError { pe := &ParseError{fmt.Sprintf(format, a...), p.cur.line, p.cur.offset} p.cur.err = pe p.done = true return pe } // Numbers and identifiers are matched by [-+._A-Za-z0-9] func isIdentOrNumberChar(c byte) bool { switch { case 'A' <= c && c <= 'Z', 'a' <= c && c <= 'z': return true case '0' <= c && c <= '9': return true } switch c { case '-', '+', '.', '_': return true } return false } func isWhitespace(c byte) bool { switch c { case ' ', '\t', '\n', '\r': return true } return false } func isQuote(c byte) bool { switch c { case '"', '\'': return true } return false } func (p *textParser) skipWhitespace() { i := 0 for i < len(p.s) && (isWhitespace(p.s[i]) || p.s[i] == '#') { if p.s[i] == '#' { // comment; skip to end of line or input for i < len(p.s) && p.s[i] != '\n' { i++ } if i == len(p.s) { break } } if p.s[i] == '\n' { p.line++ } i++ } p.offset += i p.s = p.s[i:len(p.s)] if len(p.s) == 0 { p.done = true } } func (p *textParser) advance() { // Skip whitespace p.skipWhitespace() if p.done { return } // Start of non-whitespace p.cur.err = nil p.cur.offset, p.cur.line = p.offset, p.line p.cur.unquoted = "" switch p.s[0] { case '<', '>', '{', '}', ':', '[', ']', ';', ',', '/': // Single symbol p.cur.value, p.s = p.s[0:1], p.s[1:len(p.s)] case '"', '\'': // Quoted string i := 1 for i < len(p.s) && p.s[i] != p.s[0] && p.s[i] != '\n' { if p.s[i] == '\\' && i+1 < len(p.s) { // skip escaped char i++ } i++ } if i >= len(p.s) || p.s[i] != p.s[0] { p.errorf("unmatched quote") return } unq, err := unquoteC(p.s[1:i], rune(p.s[0])) if err != nil { p.errorf("invalid quoted string %s: %v", p.s[0:i+1], err) return } p.cur.value, p.s = p.s[0:i+1], p.s[i+1:len(p.s)] p.cur.unquoted = unq default: i := 0 for i < len(p.s) && isIdentOrNumberChar(p.s[i]) { i++ } if i == 0 { p.errorf("unexpected byte %#x", p.s[0]) return } p.cur.value, p.s = p.s[0:i], p.s[i:len(p.s)] } p.offset += len(p.cur.value) } var ( errBadUTF8 = errors.New("proto: bad UTF-8") errBadHex = errors.New("proto: bad hexadecimal") ) func unquoteC(s string, quote rune) (string, error) { // This is based on C++'s tokenizer.cc. // Despite its name, this is *not* parsing C syntax. // For instance, "\0" is an invalid quoted string. // Avoid allocation in trivial cases. simple := true for _, r := range s { if r == '\\' || r == quote { simple = false break } } if simple { return s, nil } buf := make([]byte, 0, 3*len(s)/2) for len(s) > 0 { r, n := utf8.DecodeRuneInString(s) if r == utf8.RuneError && n == 1 { return "", errBadUTF8 } s = s[n:] if r != '\\' { if r < utf8.RuneSelf { buf = append(buf, byte(r)) } else { buf = append(buf, string(r)...) } continue } ch, tail, err := unescape(s) if err != nil { return "", err } buf = append(buf, ch...) s = tail } return string(buf), nil } func unescape(s string) (ch string, tail string, err error) { r, n := utf8.DecodeRuneInString(s) if r == utf8.RuneError && n == 1 { return "", "", errBadUTF8 } s = s[n:] switch r { case 'a': return "\a", s, nil case 'b': return "\b", s, nil case 'f': return "\f", s, nil case 'n': return "\n", s, nil case 'r': return "\r", s, nil case 't': return "\t", s, nil case 'v': return "\v", s, nil case '?': return "?", s, nil // trigraph workaround case '\'', '"', '\\': return string(r), s, nil case '0', '1', '2', '3', '4', '5', '6', '7', 'x', 'X': if len(s) < 2 { return "", "", fmt.Errorf(`\%c requires 2 following digits`, r) } base := 8 ss := s[:2] s = s[2:] if r == 'x' || r == 'X' { base = 16 } else { ss = string(r) + ss } i, err := strconv.ParseUint(ss, base, 8) if err != nil { return "", "", err } return string([]byte{byte(i)}), s, nil case 'u', 'U': n := 4 if r == 'U' { n = 8 } if len(s) < n { return "", "", fmt.Errorf(`\%c requires %d digits`, r, n) } bs := make([]byte, n/2) for i := 0; i < n; i += 2 { a, ok1 := unhex(s[i]) b, ok2 := unhex(s[i+1]) if !ok1 || !ok2 { return "", "", errBadHex } bs[i/2] = a<<4 | b } s = s[n:] return string(bs), s, nil } return "", "", fmt.Errorf(`unknown escape \%c`, r) } // Adapted from src/pkg/strconv/quote.go. func unhex(b byte) (v byte, ok bool) { switch { case '0' <= b && b <= '9': return b - '0', true case 'a' <= b && b <= 'f': return b - 'a' + 10, true case 'A' <= b && b <= 'F': return b - 'A' + 10, true } return 0, false } // Back off the parser by one token. Can only be done between calls to next(). // It makes the next advance() a no-op. func (p *textParser) back() { p.backed = true } // Advances the parser and returns the new current token. func (p *textParser) next() *token { if p.backed || p.done { p.backed = false return &p.cur } p.advance() if p.done { p.cur.value = "" } else if len(p.cur.value) > 0 && isQuote(p.cur.value[0]) { // Look for multiple quoted strings separated by whitespace, // and concatenate them. cat := p.cur for { p.skipWhitespace() if p.done || !isQuote(p.s[0]) { break } p.advance() if p.cur.err != nil { return &p.cur } cat.value += " " + p.cur.value cat.unquoted += p.cur.unquoted } p.done = false // parser may have seen EOF, but we want to return cat p.cur = cat } return &p.cur } func (p *textParser) consumeToken(s string) error { tok := p.next() if tok.err != nil { return tok.err } if tok.value != s { p.back() return p.errorf("expected %q, found %q", s, tok.value) } return nil } // Return a RequiredNotSetError indicating which required field was not set. func (p *textParser) missingRequiredFieldError(sv reflect.Value) *RequiredNotSetError { st := sv.Type() sprops := GetProperties(st) for i := 0; i < st.NumField(); i++ { if !isNil(sv.Field(i)) { continue } props := sprops.Prop[i] if props.Required { return &RequiredNotSetError{fmt.Sprintf("%v.%v", st, props.OrigName)} } } return &RequiredNotSetError{fmt.Sprintf("%v.", st)} // should not happen } // Returns the index in the struct for the named field, as well as the parsed tag properties. func structFieldByName(sprops *StructProperties, name string) (int, *Properties, bool) { i, ok := sprops.decoderOrigNames[name] if ok { return i, sprops.Prop[i], true } return -1, nil, false } // Consume a ':' from the input stream (if the next token is a colon), // returning an error if a colon is needed but not present. func (p *textParser) checkForColon(props *Properties, typ reflect.Type) *ParseError { tok := p.next() if tok.err != nil { return tok.err } if tok.value != ":" { // Colon is optional when the field is a group or message. needColon := true switch props.Wire { case "group": needColon = false case "bytes": // A "bytes" field is either a message, a string, or a repeated field; // those three become *T, *string and []T respectively, so we can check for // this field being a pointer to a non-string. if typ.Kind() == reflect.Ptr { // *T or *string if typ.Elem().Kind() == reflect.String { break } } else if typ.Kind() == reflect.Slice { // []T or []*T if typ.Elem().Kind() != reflect.Ptr { break } } else if typ.Kind() == reflect.String { // The proto3 exception is for a string field, // which requires a colon. break } needColon = false } if needColon { return p.errorf("expected ':', found %q", tok.value) } p.back() } return nil } func (p *textParser) readStruct(sv reflect.Value, terminator string) error { st := sv.Type() sprops := GetProperties(st) reqCount := sprops.reqCount var reqFieldErr error fieldSet := make(map[string]bool) // A struct is a sequence of "name: value", terminated by one of // '>' or '}', or the end of the input. A name may also be // "[extension]" or "[type/url]". // // The whole struct can also be an expanded Any message, like: // [type/url] < ... struct contents ... > for { tok := p.next() if tok.err != nil { return tok.err } if tok.value == terminator { break } if tok.value == "[" { // Looks like an extension or an Any. // // TODO: Check whether we need to handle // namespace rooted names (e.g. ".something.Foo"). extName, err := p.consumeExtName() if err != nil { return err } if s := strings.LastIndex(extName, "/"); s >= 0 { // If it contains a slash, it's an Any type URL. messageName := extName[s+1:] mt := MessageType(messageName) if mt == nil { return p.errorf("unrecognized message %q in google.protobuf.Any", messageName) } tok = p.next() if tok.err != nil { return tok.err } // consume an optional colon if tok.value == ":" { tok = p.next() if tok.err != nil { return tok.err } } var terminator string switch tok.value { case "<": terminator = ">" case "{": terminator = "}" default: return p.errorf("expected '{' or '<', found %q", tok.value) } v := reflect.New(mt.Elem()) if pe := p.readStruct(v.Elem(), terminator); pe != nil { return pe } b, err := Marshal(v.Interface().(Message)) if err != nil { return p.errorf("failed to marshal message of type %q: %v", messageName, err) } if fieldSet["type_url"] { return p.errorf(anyRepeatedlyUnpacked, "type_url") } if fieldSet["value"] { return p.errorf(anyRepeatedlyUnpacked, "value") } sv.FieldByName("TypeUrl").SetString(extName) sv.FieldByName("Value").SetBytes(b) fieldSet["type_url"] = true fieldSet["value"] = true continue } var desc *ExtensionDesc // This could be faster, but it's functional. // TODO: Do something smarter than a linear scan. for _, d := range RegisteredExtensions(reflect.New(st).Interface().(Message)) { if d.Name == extName { desc = d break } } if desc == nil { return p.errorf("unrecognized extension %q", extName) } props := &Properties{} props.Parse(desc.Tag) typ := reflect.TypeOf(desc.ExtensionType) if err := p.checkForColon(props, typ); err != nil { return err } rep := desc.repeated() // Read the extension structure, and set it in // the value we're constructing. var ext reflect.Value if !rep { ext = reflect.New(typ).Elem() } else { ext = reflect.New(typ.Elem()).Elem() } if err := p.readAny(ext, props); err != nil { if _, ok := err.(*RequiredNotSetError); !ok { return err } reqFieldErr = err } ep := sv.Addr().Interface().(Message) if !rep { SetExtension(ep, desc, ext.Interface()) } else { old, err := GetExtension(ep, desc) var sl reflect.Value if err == nil { sl = reflect.ValueOf(old) // existing slice } else { sl = reflect.MakeSlice(typ, 0, 1) } sl = reflect.Append(sl, ext) SetExtension(ep, desc, sl.Interface()) } if err := p.consumeOptionalSeparator(); err != nil { return err } continue } // This is a normal, non-extension field. name := tok.value var dst reflect.Value fi, props, ok := structFieldByName(sprops, name) if ok { dst = sv.Field(fi) } else if oop, ok := sprops.OneofTypes[name]; ok { // It is a oneof. props = oop.Prop nv := reflect.New(oop.Type.Elem()) dst = nv.Elem().Field(0) field := sv.Field(oop.Field) if !field.IsNil() { return p.errorf("field '%s' would overwrite already parsed oneof '%s'", name, sv.Type().Field(oop.Field).Name) } field.Set(nv) } if !dst.IsValid() { return p.errorf("unknown field name %q in %v", name, st) } if dst.Kind() == reflect.Map { // Consume any colon. if err := p.checkForColon(props, dst.Type()); err != nil { return err } // Construct the map if it doesn't already exist. if dst.IsNil() { dst.Set(reflect.MakeMap(dst.Type())) } key := reflect.New(dst.Type().Key()).Elem() val := reflect.New(dst.Type().Elem()).Elem() // The map entry should be this sequence of tokens: // < key : KEY value : VALUE > // However, implementations may omit key or value, and technically // we should support them in any order. See b/28924776 for a time // this went wrong. tok := p.next() var terminator string switch tok.value { case "<": terminator = ">" case "{": terminator = "}" default: return p.errorf("expected '{' or '<', found %q", tok.value) } for { tok := p.next() if tok.err != nil { return tok.err } if tok.value == terminator { break } switch tok.value { case "key": if err := p.consumeToken(":"); err != nil { return err } if err := p.readAny(key, props.mkeyprop); err != nil { return err } if err := p.consumeOptionalSeparator(); err != nil { return err } case "value": if err := p.checkForColon(props.mvalprop, dst.Type().Elem()); err != nil { return err } if err := p.readAny(val, props.mvalprop); err != nil { return err } if err := p.consumeOptionalSeparator(); err != nil { return err } default: p.back() return p.errorf(`expected "key", "value", or %q, found %q`, terminator, tok.value) } } dst.SetMapIndex(key, val) continue } // Check that it's not already set if it's not a repeated field. if !props.Repeated && fieldSet[name] { return p.errorf("non-repeated field %q was repeated", name) } if err := p.checkForColon(props, dst.Type()); err != nil { return err } // Parse into the field. fieldSet[name] = true if err := p.readAny(dst, props); err != nil { if _, ok := err.(*RequiredNotSetError); !ok { return err } reqFieldErr = err } if props.Required { reqCount-- } if err := p.consumeOptionalSeparator(); err != nil { return err } } if reqCount > 0 { return p.missingRequiredFieldError(sv) } return reqFieldErr } // consumeExtName consumes extension name or expanded Any type URL and the // following ']'. It returns the name or URL consumed. func (p *textParser) consumeExtName() (string, error) { tok := p.next() if tok.err != nil { return "", tok.err } // If extension name or type url is quoted, it's a single token. if len(tok.value) > 2 && isQuote(tok.value[0]) && tok.value[len(tok.value)-1] == tok.value[0] { name, err := unquoteC(tok.value[1:len(tok.value)-1], rune(tok.value[0])) if err != nil { return "", err } return name, p.consumeToken("]") } // Consume everything up to "]" var parts []string for tok.value != "]" { parts = append(parts, tok.value) tok = p.next() if tok.err != nil { return "", p.errorf("unrecognized type_url or extension name: %s", tok.err) } } return strings.Join(parts, ""), nil } // consumeOptionalSeparator consumes an optional semicolon or comma. // It is used in readStruct to provide backward compatibility. func (p *textParser) consumeOptionalSeparator() error { tok := p.next() if tok.err != nil { return tok.err } if tok.value != ";" && tok.value != "," { p.back() } return nil } func (p *textParser) readAny(v reflect.Value, props *Properties) error { tok := p.next() if tok.err != nil { return tok.err } if tok.value == "" { return p.errorf("unexpected EOF") } if len(props.CustomType) > 0 { if props.Repeated { t := reflect.TypeOf(v.Interface()) if t.Kind() == reflect.Slice { tc := reflect.TypeOf(new(Marshaler)) ok := t.Elem().Implements(tc.Elem()) if ok { fv := v flen := fv.Len() if flen == fv.Cap() { nav := reflect.MakeSlice(v.Type(), flen, 2*flen+1) reflect.Copy(nav, fv) fv.Set(nav) } fv.SetLen(flen + 1) // Read one. p.back() return p.readAny(fv.Index(flen), props) } } } if reflect.TypeOf(v.Interface()).Kind() == reflect.Ptr { custom := reflect.New(props.ctype.Elem()).Interface().(Unmarshaler) err := custom.Unmarshal([]byte(tok.unquoted)) if err != nil { return p.errorf("%v %v: %v", err, v.Type(), tok.value) } v.Set(reflect.ValueOf(custom)) } else { custom := reflect.New(reflect.TypeOf(v.Interface())).Interface().(Unmarshaler) err := custom.Unmarshal([]byte(tok.unquoted)) if err != nil { return p.errorf("%v %v: %v", err, v.Type(), tok.value) } v.Set(reflect.Indirect(reflect.ValueOf(custom))) } return nil } if props.StdTime { fv := v p.back() props.StdTime = false tproto := ×tamp{} err := p.readAny(reflect.ValueOf(tproto).Elem(), props) props.StdTime = true if err != nil { return err } tim, err := timestampFromProto(tproto) if err != nil { return err } if props.Repeated { t := reflect.TypeOf(v.Interface()) if t.Kind() == reflect.Slice { if t.Elem().Kind() == reflect.Ptr { ts := fv.Interface().([]*time.Time) ts = append(ts, &tim) fv.Set(reflect.ValueOf(ts)) return nil } else { ts := fv.Interface().([]time.Time) ts = append(ts, tim) fv.Set(reflect.ValueOf(ts)) return nil } } } if reflect.TypeOf(v.Interface()).Kind() == reflect.Ptr { v.Set(reflect.ValueOf(&tim)) } else { v.Set(reflect.Indirect(reflect.ValueOf(&tim))) } return nil } if props.StdDuration { fv := v p.back() props.StdDuration = false dproto := &duration{} err := p.readAny(reflect.ValueOf(dproto).Elem(), props) props.StdDuration = true if err != nil { return err } dur, err := durationFromProto(dproto) if err != nil { return err } if props.Repeated { t := reflect.TypeOf(v.Interface()) if t.Kind() == reflect.Slice { if t.Elem().Kind() == reflect.Ptr { ds := fv.Interface().([]*time.Duration) ds = append(ds, &dur) fv.Set(reflect.ValueOf(ds)) return nil } else { ds := fv.Interface().([]time.Duration) ds = append(ds, dur) fv.Set(reflect.ValueOf(ds)) return nil } } } if reflect.TypeOf(v.Interface()).Kind() == reflect.Ptr { v.Set(reflect.ValueOf(&dur)) } else { v.Set(reflect.Indirect(reflect.ValueOf(&dur))) } return nil } switch fv := v; fv.Kind() { case reflect.Slice: at := v.Type() if at.Elem().Kind() == reflect.Uint8 { // Special case for []byte if tok.value[0] != '"' && tok.value[0] != '\'' { // Deliberately written out here, as the error after // this switch statement would write "invalid []byte: ...", // which is not as user-friendly. return p.errorf("invalid string: %v", tok.value) } bytes := []byte(tok.unquoted) fv.Set(reflect.ValueOf(bytes)) return nil } // Repeated field. if tok.value == "[" { // Repeated field with list notation, like [1,2,3]. for { fv.Set(reflect.Append(fv, reflect.New(at.Elem()).Elem())) err := p.readAny(fv.Index(fv.Len()-1), props) if err != nil { return err } ntok := p.next() if ntok.err != nil { return ntok.err } if ntok.value == "]" { break } if ntok.value != "," { return p.errorf("Expected ']' or ',' found %q", ntok.value) } } return nil } // One value of the repeated field. p.back() fv.Set(reflect.Append(fv, reflect.New(at.Elem()).Elem())) return p.readAny(fv.Index(fv.Len()-1), props) case reflect.Bool: // true/1/t/True or false/f/0/False. switch tok.value { case "true", "1", "t", "True": fv.SetBool(true) return nil case "false", "0", "f", "False": fv.SetBool(false) return nil } case reflect.Float32, reflect.Float64: v := tok.value // Ignore 'f' for compatibility with output generated by C++, but don't // remove 'f' when the value is "-inf" or "inf". if strings.HasSuffix(v, "f") && tok.value != "-inf" && tok.value != "inf" { v = v[:len(v)-1] } if f, err := strconv.ParseFloat(v, fv.Type().Bits()); err == nil { fv.SetFloat(f) return nil } case reflect.Int32: if x, err := strconv.ParseInt(tok.value, 0, 32); err == nil { fv.SetInt(x) return nil } if len(props.Enum) == 0 { break } m, ok := enumValueMaps[props.Enum] if !ok { break } x, ok := m[tok.value] if !ok { break } fv.SetInt(int64(x)) return nil case reflect.Int64: if x, err := strconv.ParseInt(tok.value, 0, 64); err == nil { fv.SetInt(x) return nil } case reflect.Ptr: // A basic field (indirected through pointer), or a repeated message/group p.back() fv.Set(reflect.New(fv.Type().Elem())) return p.readAny(fv.Elem(), props) case reflect.String: if tok.value[0] == '"' || tok.value[0] == '\'' { fv.SetString(tok.unquoted) return nil } case reflect.Struct: var terminator string switch tok.value { case "{": terminator = "}" case "<": terminator = ">" default: return p.errorf("expected '{' or '<', found %q", tok.value) } // TODO: Handle nested messages which implement encoding.TextUnmarshaler. return p.readStruct(fv, terminator) case reflect.Uint32: if x, err := strconv.ParseUint(tok.value, 0, 32); err == nil { fv.SetUint(x) return nil } case reflect.Uint64: if x, err := strconv.ParseUint(tok.value, 0, 64); err == nil { fv.SetUint(x) return nil } } return p.errorf("invalid %v: %v", v.Type(), tok.value) } // UnmarshalText reads a protocol buffer in Text format. UnmarshalText resets pb // before starting to unmarshal, so any existing data in pb is always removed. // If a required field is not set and no other error occurs, // UnmarshalText returns *RequiredNotSetError. func UnmarshalText(s string, pb Message) error { if um, ok := pb.(encoding.TextUnmarshaler); ok { err := um.UnmarshalText([]byte(s)) return err } pb.Reset() v := reflect.ValueOf(pb) if pe := newTextParser(s).readStruct(v.Elem(), ""); pe != nil { return pe } return nil } golang-gogoprotobuf-0.5/proto/text_parser_test.go000066400000000000000000000371361317075173200224500ustar00rootroot00000000000000// 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. package proto_test import ( "math" "reflect" "testing" . "github.com/gogo/protobuf/proto" proto3pb "github.com/gogo/protobuf/proto/proto3_proto" . "github.com/gogo/protobuf/proto/testdata" ) type UnmarshalTextTest struct { in string err string // if "", no error expected out *MyMessage } func buildExtStructTest(text string) UnmarshalTextTest { msg := &MyMessage{ Count: Int32(42), } SetExtension(msg, E_Ext_More, &Ext{ Data: String("Hello, world!"), }) return UnmarshalTextTest{in: text, out: msg} } func buildExtDataTest(text string) UnmarshalTextTest { msg := &MyMessage{ Count: Int32(42), } SetExtension(msg, E_Ext_Text, String("Hello, world!")) SetExtension(msg, E_Ext_Number, Int32(1729)) return UnmarshalTextTest{in: text, out: msg} } func buildExtRepStringTest(text string) UnmarshalTextTest { msg := &MyMessage{ Count: Int32(42), } if err := SetExtension(msg, E_Greeting, []string{"bula", "hola"}); err != nil { panic(err) } return UnmarshalTextTest{in: text, out: msg} } var unMarshalTextTests = []UnmarshalTextTest{ // Basic { in: " count:42\n name:\"Dave\" ", out: &MyMessage{ Count: Int32(42), Name: String("Dave"), }, }, // Empty quoted string { in: `count:42 name:""`, out: &MyMessage{ Count: Int32(42), Name: String(""), }, }, // Quoted string concatenation with double quotes { in: `count:42 name: "My name is "` + "\n" + `"elsewhere"`, out: &MyMessage{ Count: Int32(42), Name: String("My name is elsewhere"), }, }, // Quoted string concatenation with single quotes { in: "count:42 name: 'My name is '\n'elsewhere'", out: &MyMessage{ Count: Int32(42), Name: String("My name is elsewhere"), }, }, // Quoted string concatenations with mixed quotes { in: "count:42 name: 'My name is '\n\"elsewhere\"", out: &MyMessage{ Count: Int32(42), Name: String("My name is elsewhere"), }, }, { in: "count:42 name: \"My name is \"\n'elsewhere'", out: &MyMessage{ Count: Int32(42), Name: String("My name is elsewhere"), }, }, // Quoted string with escaped apostrophe { in: `count:42 name: "HOLIDAY - New Year\'s Day"`, out: &MyMessage{ Count: Int32(42), Name: String("HOLIDAY - New Year's Day"), }, }, // Quoted string with single quote { in: `count:42 name: 'Roger "The Ramster" Ramjet'`, out: &MyMessage{ Count: Int32(42), Name: String(`Roger "The Ramster" Ramjet`), }, }, // Quoted string with all the accepted special characters from the C++ test { in: `count:42 name: ` + "\"\\\"A string with \\' characters \\n and \\r newlines and \\t tabs and \\001 slashes \\\\ and multiple spaces\"", out: &MyMessage{ Count: Int32(42), Name: String("\"A string with ' characters \n and \r newlines and \t tabs and \001 slashes \\ and multiple spaces"), }, }, // Quoted string with quoted backslash { in: `count:42 name: "\\'xyz"`, out: &MyMessage{ Count: Int32(42), Name: String(`\'xyz`), }, }, // Quoted string with UTF-8 bytes. { in: "count:42 name: '\303\277\302\201\xAB'", out: &MyMessage{ Count: Int32(42), Name: String("\303\277\302\201\xAB"), }, }, // Bad quoted string { in: `inner: < host: "\0" >` + "\n", err: `line 1.15: invalid quoted string "\0": \0 requires 2 following digits`, }, // Number too large for int64 { in: "count: 1 others { key: 123456789012345678901 }", err: "line 1.23: invalid int64: 123456789012345678901", }, // Number too large for int32 { in: "count: 1234567890123", err: "line 1.7: invalid int32: 1234567890123", }, // Number in hexadecimal { in: "count: 0x2beef", out: &MyMessage{ Count: Int32(0x2beef), }, }, // Number in octal { in: "count: 024601", out: &MyMessage{ Count: Int32(024601), }, }, // Floating point number with "f" suffix { in: "count: 4 others:< weight: 17.0f >", out: &MyMessage{ Count: Int32(4), Others: []*OtherMessage{ { Weight: Float32(17), }, }, }, }, // Floating point positive infinity { in: "count: 4 bigfloat: inf", out: &MyMessage{ Count: Int32(4), Bigfloat: Float64(math.Inf(1)), }, }, // Floating point negative infinity { in: "count: 4 bigfloat: -inf", out: &MyMessage{ Count: Int32(4), Bigfloat: Float64(math.Inf(-1)), }, }, // Number too large for float32 { in: "others:< weight: 12345678901234567890123456789012345678901234567890 >", err: "line 1.17: invalid float32: 12345678901234567890123456789012345678901234567890", }, // Number posing as a quoted string { in: `inner: < host: 12 >` + "\n", err: `line 1.15: invalid string: 12`, }, // Quoted string posing as int32 { in: `count: "12"`, err: `line 1.7: invalid int32: "12"`, }, // Quoted string posing a float32 { in: `others:< weight: "17.4" >`, err: `line 1.17: invalid float32: "17.4"`, }, // Enum { in: `count:42 bikeshed: BLUE`, out: &MyMessage{ Count: Int32(42), Bikeshed: MyMessage_BLUE.Enum(), }, }, // Repeated field { in: `count:42 pet: "horsey" pet:"bunny"`, out: &MyMessage{ Count: Int32(42), Pet: []string{"horsey", "bunny"}, }, }, // Repeated field with list notation { in: `count:42 pet: ["horsey", "bunny"]`, out: &MyMessage{ Count: Int32(42), Pet: []string{"horsey", "bunny"}, }, }, // Repeated message with/without colon and <>/{} { in: `count:42 others:{} others{} others:<> others:{}`, out: &MyMessage{ Count: Int32(42), Others: []*OtherMessage{ {}, {}, {}, {}, }, }, }, // Missing colon for inner message { in: `count:42 inner < host: "cauchy.syd" >`, out: &MyMessage{ Count: Int32(42), Inner: &InnerMessage{ Host: String("cauchy.syd"), }, }, }, // Missing colon for string field { in: `name "Dave"`, err: `line 1.5: expected ':', found "\"Dave\""`, }, // Missing colon for int32 field { in: `count 42`, err: `line 1.6: expected ':', found "42"`, }, // Missing required field { in: `name: "Pawel"`, err: `proto: required field "testdata.MyMessage.count" not set`, out: &MyMessage{ Name: String("Pawel"), }, }, // Missing required field in a required submessage { in: `count: 42 we_must_go_deeper < leo_finally_won_an_oscar <> >`, err: `proto: required field "testdata.InnerMessage.host" not set`, out: &MyMessage{ Count: Int32(42), WeMustGoDeeper: &RequiredInnerMessage{LeoFinallyWonAnOscar: &InnerMessage{}}, }, }, // Repeated non-repeated field { in: `name: "Rob" name: "Russ"`, err: `line 1.12: non-repeated field "name" was repeated`, }, // Group { in: `count: 17 SomeGroup { group_field: 12 }`, out: &MyMessage{ Count: Int32(17), Somegroup: &MyMessage_SomeGroup{ GroupField: Int32(12), }, }, }, // Semicolon between fields { in: `count:3;name:"Calvin"`, out: &MyMessage{ Count: Int32(3), Name: String("Calvin"), }, }, // Comma between fields { in: `count:4,name:"Ezekiel"`, out: &MyMessage{ Count: Int32(4), Name: String("Ezekiel"), }, }, // Boolean false { in: `count:42 inner { host: "example.com" connected: false }`, out: &MyMessage{ Count: Int32(42), Inner: &InnerMessage{ Host: String("example.com"), Connected: Bool(false), }, }, }, // Boolean true { in: `count:42 inner { host: "example.com" connected: true }`, out: &MyMessage{ Count: Int32(42), Inner: &InnerMessage{ Host: String("example.com"), Connected: Bool(true), }, }, }, // Boolean 0 { in: `count:42 inner { host: "example.com" connected: 0 }`, out: &MyMessage{ Count: Int32(42), Inner: &InnerMessage{ Host: String("example.com"), Connected: Bool(false), }, }, }, // Boolean 1 { in: `count:42 inner { host: "example.com" connected: 1 }`, out: &MyMessage{ Count: Int32(42), Inner: &InnerMessage{ Host: String("example.com"), Connected: Bool(true), }, }, }, // Boolean f { in: `count:42 inner { host: "example.com" connected: f }`, out: &MyMessage{ Count: Int32(42), Inner: &InnerMessage{ Host: String("example.com"), Connected: Bool(false), }, }, }, // Boolean t { in: `count:42 inner { host: "example.com" connected: t }`, out: &MyMessage{ Count: Int32(42), Inner: &InnerMessage{ Host: String("example.com"), Connected: Bool(true), }, }, }, // Boolean False { in: `count:42 inner { host: "example.com" connected: False }`, out: &MyMessage{ Count: Int32(42), Inner: &InnerMessage{ Host: String("example.com"), Connected: Bool(false), }, }, }, // Boolean True { in: `count:42 inner { host: "example.com" connected: True }`, out: &MyMessage{ Count: Int32(42), Inner: &InnerMessage{ Host: String("example.com"), Connected: Bool(true), }, }, }, // Extension buildExtStructTest(`count: 42 [testdata.Ext.more]:`), buildExtStructTest(`count: 42 [testdata.Ext.more] {data:"Hello, world!"}`), buildExtDataTest(`count: 42 [testdata.Ext.text]:"Hello, world!" [testdata.Ext.number]:1729`), buildExtRepStringTest(`count: 42 [testdata.greeting]:"bula" [testdata.greeting]:"hola"`), // Big all-in-one { in: "count:42 # Meaning\n" + `name:"Dave" ` + `quote:"\"I didn't want to go.\"" ` + `pet:"bunny" ` + `pet:"kitty" ` + `pet:"horsey" ` + `inner:<` + ` host:"footrest.syd" ` + ` port:7001 ` + ` connected:true ` + `> ` + `others:<` + ` key:3735928559 ` + ` value:"\x01A\a\f" ` + `> ` + `others:<` + " weight:58.9 # Atomic weight of Co\n" + ` inner:<` + ` host:"lesha.mtv" ` + ` port:8002 ` + ` >` + `>`, out: &MyMessage{ Count: Int32(42), Name: String("Dave"), Quote: String(`"I didn't want to go."`), Pet: []string{"bunny", "kitty", "horsey"}, Inner: &InnerMessage{ Host: String("footrest.syd"), Port: Int32(7001), Connected: Bool(true), }, Others: []*OtherMessage{ { Key: Int64(3735928559), Value: []byte{0x1, 'A', '\a', '\f'}, }, { Weight: Float32(58.9), Inner: &InnerMessage{ Host: String("lesha.mtv"), Port: Int32(8002), }, }, }, }, }, } func TestUnmarshalText(t *testing.T) { for i, test := range unMarshalTextTests { pb := new(MyMessage) err := UnmarshalText(test.in, pb) if test.err == "" { // We don't expect failure. if err != nil { t.Errorf("Test %d: Unexpected error: %v", i, err) } else if !reflect.DeepEqual(pb, test.out) { t.Errorf("Test %d: Incorrect populated \nHave: %v\nWant: %v", i, pb, test.out) } } else { // We do expect failure. if err == nil { t.Errorf("Test %d: Didn't get expected error: %v", i, test.err) } else if err.Error() != test.err { t.Errorf("Test %d: Incorrect error.\nHave: %v\nWant: %v", i, err.Error(), test.err) } else if _, ok := err.(*RequiredNotSetError); ok && test.out != nil && !reflect.DeepEqual(pb, test.out) { t.Errorf("Test %d: Incorrect populated \nHave: %v\nWant: %v", i, pb, test.out) } } } } func TestUnmarshalTextCustomMessage(t *testing.T) { msg := &textMessage{} if err := UnmarshalText("custom", msg); err != nil { t.Errorf("Unexpected error from custom unmarshal: %v", err) } if UnmarshalText("not custom", msg) == nil { t.Errorf("Didn't get expected error from custom unmarshal") } } // Regression test; this caused a panic. func TestRepeatedEnum(t *testing.T) { pb := new(RepeatedEnum) if err := UnmarshalText("color: RED", pb); err != nil { t.Fatal(err) } exp := &RepeatedEnum{ Color: []RepeatedEnum_Color{RepeatedEnum_RED}, } if !Equal(pb, exp) { t.Errorf("Incorrect populated \nHave: %v\nWant: %v", pb, exp) } } func TestProto3TextParsing(t *testing.T) { m := new(proto3pb.Message) const in = `name: "Wallace" true_scotsman: true` want := &proto3pb.Message{ Name: "Wallace", TrueScotsman: true, } if err := UnmarshalText(in, m); err != nil { t.Fatal(err) } if !Equal(m, want) { t.Errorf("\n got %v\nwant %v", m, want) } } func TestMapParsing(t *testing.T) { m := new(MessageWithMap) const in = `name_mapping: name_mapping:` + `msg_mapping:,>` + // separating commas are okay `msg_mapping>` + // no colon after "value" `msg_mapping:>` + // omitted key `msg_mapping:` + // omitted value `byte_mapping:` + `byte_mapping:<>` // omitted key and value want := &MessageWithMap{ NameMapping: map[int32]string{ 1: "Beatles", 1234: "Feist", }, MsgMapping: map[int64]*FloatingPoint{ -4: {F: Float64(2.0)}, -2: {F: Float64(4.0)}, 0: {F: Float64(5.0)}, 1: nil, }, ByteMapping: map[bool][]byte{ false: nil, true: []byte("so be it"), }, } if err := UnmarshalText(in, m); err != nil { t.Fatal(err) } if !Equal(m, want) { t.Errorf("\n got %v\nwant %v", m, want) } } func TestOneofParsing(t *testing.T) { const in = `name:"Shrek"` m := new(Communique) want := &Communique{Union: &Communique_Name{Name: "Shrek"}} if err := UnmarshalText(in, m); err != nil { t.Fatal(err) } if !Equal(m, want) { t.Errorf("\n got %v\nwant %v", m, want) } const inOverwrite = `name:"Shrek" number:42` m = new(Communique) testErr := "line 1.13: field 'number' would overwrite already parsed oneof 'Union'" if err := UnmarshalText(inOverwrite, m); err == nil { t.Errorf("TestOneofParsing: Didn't get expected error: %v", testErr) } else if err.Error() != testErr { t.Errorf("TestOneofParsing: Incorrect error.\nHave: %v\nWant: %v", err.Error(), testErr) } } var benchInput string func init() { benchInput = "count: 4\n" for i := 0; i < 1000; i++ { benchInput += "pet: \"fido\"\n" } // Check it is valid input. pb := new(MyMessage) err := UnmarshalText(benchInput, pb) if err != nil { panic("Bad benchmark input: " + err.Error()) } } func BenchmarkUnmarshalText(b *testing.B) { pb := new(MyMessage) for i := 0; i < b.N; i++ { UnmarshalText(benchInput, pb) } b.SetBytes(int64(len(benchInput))) } golang-gogoprotobuf-0.5/proto/text_test.go000066400000000000000000000276041317075173200210730ustar00rootroot00000000000000// 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. package proto_test import ( "bytes" "errors" "io/ioutil" "math" "strings" "testing" "github.com/gogo/protobuf/proto" proto3pb "github.com/gogo/protobuf/proto/proto3_proto" pb "github.com/gogo/protobuf/proto/testdata" ) // textMessage implements the methods that allow it to marshal and unmarshal // itself as text. type textMessage struct { } func (*textMessage) MarshalText() ([]byte, error) { return []byte("custom"), nil } func (*textMessage) UnmarshalText(bytes []byte) error { if string(bytes) != "custom" { return errors.New("expected 'custom'") } return nil } func (*textMessage) Reset() {} func (*textMessage) String() string { return "" } func (*textMessage) ProtoMessage() {} func newTestMessage() *pb.MyMessage { msg := &pb.MyMessage{ Count: proto.Int32(42), Name: proto.String("Dave"), Quote: proto.String(`"I didn't want to go."`), Pet: []string{"bunny", "kitty", "horsey"}, Inner: &pb.InnerMessage{ Host: proto.String("footrest.syd"), Port: proto.Int32(7001), Connected: proto.Bool(true), }, Others: []*pb.OtherMessage{ { Key: proto.Int64(0xdeadbeef), Value: []byte{1, 65, 7, 12}, }, { Weight: proto.Float32(6.022), Inner: &pb.InnerMessage{ Host: proto.String("lesha.mtv"), Port: proto.Int32(8002), }, }, }, Bikeshed: pb.MyMessage_BLUE.Enum(), Somegroup: &pb.MyMessage_SomeGroup{ GroupField: proto.Int32(8), }, // One normally wouldn't do this. // This is an undeclared tag 13, as a varint (wire type 0) with value 4. XXX_unrecognized: []byte{13<<3 | 0, 4}, } ext := &pb.Ext{ Data: proto.String("Big gobs for big rats"), } if err := proto.SetExtension(msg, pb.E_Ext_More, ext); err != nil { panic(err) } greetings := []string{"adg", "easy", "cow"} if err := proto.SetExtension(msg, pb.E_Greeting, greetings); err != nil { panic(err) } // Add an unknown extension. We marshal a pb.Ext, and fake the ID. b, err := proto.Marshal(&pb.Ext{Data: proto.String("3G skiing")}) if err != nil { panic(err) } b = append(proto.EncodeVarint(201<<3|proto.WireBytes), b...) proto.SetRawExtension(msg, 201, b) // Extensions can be plain fields, too, so let's test that. b = append(proto.EncodeVarint(202<<3|proto.WireVarint), 19) proto.SetRawExtension(msg, 202, b) return msg } const text = `count: 42 name: "Dave" quote: "\"I didn't want to go.\"" pet: "bunny" pet: "kitty" pet: "horsey" inner: < host: "footrest.syd" port: 7001 connected: true > others: < key: 3735928559 value: "\001A\007\014" > others: < weight: 6.022 inner: < host: "lesha.mtv" port: 8002 > > bikeshed: BLUE SomeGroup { group_field: 8 } /* 2 unknown bytes */ 13: 4 [testdata.Ext.more]: < data: "Big gobs for big rats" > [testdata.greeting]: "adg" [testdata.greeting]: "easy" [testdata.greeting]: "cow" /* 13 unknown bytes */ 201: "\t3G skiing" /* 3 unknown bytes */ 202: 19 ` func TestMarshalText(t *testing.T) { buf := new(bytes.Buffer) if err := proto.MarshalText(buf, newTestMessage()); err != nil { t.Fatalf("proto.MarshalText: %v", err) } s := buf.String() if s != text { t.Errorf("Got:\n===\n%v===\nExpected:\n===\n%v===\n", s, text) } } func TestMarshalTextCustomMessage(t *testing.T) { buf := new(bytes.Buffer) if err := proto.MarshalText(buf, &textMessage{}); err != nil { t.Fatalf("proto.MarshalText: %v", err) } s := buf.String() if s != "custom" { t.Errorf("Got %q, expected %q", s, "custom") } } func TestMarshalTextNil(t *testing.T) { want := "" tests := []proto.Message{nil, (*pb.MyMessage)(nil)} for i, test := range tests { buf := new(bytes.Buffer) if err := proto.MarshalText(buf, test); err != nil { t.Fatal(err) } if got := buf.String(); got != want { t.Errorf("%d: got %q want %q", i, got, want) } } } func TestMarshalTextUnknownEnum(t *testing.T) { // The Color enum only specifies values 0-2. m := &pb.MyMessage{Bikeshed: pb.MyMessage_Color(3).Enum()} got := m.String() const want = `bikeshed:3 ` if got != want { t.Errorf("\n got %q\nwant %q", got, want) } } func TestTextOneof(t *testing.T) { tests := []struct { m proto.Message want string }{ // zero message {&pb.Communique{}, ``}, // scalar field {&pb.Communique{Union: &pb.Communique_Number{Number: 4}}, `number:4`}, // message field {&pb.Communique{Union: &pb.Communique_Msg{ Msg: &pb.Strings{StringField: proto.String("why hello!")}, }}, `msg:`}, // bad oneof (should not panic) {&pb.Communique{Union: &pb.Communique_Msg{Msg: nil}}, `msg:/* nil */`}, } for _, test := range tests { got := strings.TrimSpace(test.m.String()) if got != test.want { t.Errorf("\n got %s\nwant %s", got, test.want) } } } func BenchmarkMarshalTextBuffered(b *testing.B) { buf := new(bytes.Buffer) m := newTestMessage() for i := 0; i < b.N; i++ { buf.Reset() proto.MarshalText(buf, m) } } func BenchmarkMarshalTextUnbuffered(b *testing.B) { w := ioutil.Discard m := newTestMessage() for i := 0; i < b.N; i++ { proto.MarshalText(w, m) } } func compact(src string) string { // s/[ \n]+/ /g; s/ $//; dst := make([]byte, len(src)) space, comment := false, false j := 0 for i := 0; i < len(src); i++ { if strings.HasPrefix(src[i:], "/*") { comment = true i++ continue } if comment && strings.HasPrefix(src[i:], "*/") { comment = false i++ continue } if comment { continue } c := src[i] if c == ' ' || c == '\n' { space = true continue } if j > 0 && (dst[j-1] == ':' || dst[j-1] == '<' || dst[j-1] == '{') { space = false } if c == '{' { space = false } if space { dst[j] = ' ' j++ space = false } dst[j] = c j++ } if space { dst[j] = ' ' j++ } return string(dst[0:j]) } var compactText = compact(text) func TestCompactText(t *testing.T) { s := proto.CompactTextString(newTestMessage()) if s != compactText { t.Errorf("Got:\n===\n%v===\nExpected:\n===\n%v\n===\n", s, compactText) } } func TestStringEscaping(t *testing.T) { testCases := []struct { in *pb.Strings out string }{ { // Test data from C++ test (TextFormatTest.StringEscape). // Single divergence: we don't escape apostrophes. &pb.Strings{StringField: proto.String("\"A string with ' characters \n and \r newlines and \t tabs and \001 slashes \\ and multiple spaces")}, "string_field: \"\\\"A string with ' characters \\n and \\r newlines and \\t tabs and \\001 slashes \\\\ and multiple spaces\"\n", }, { // Test data from the same C++ test. &pb.Strings{StringField: proto.String("\350\260\267\346\255\214")}, "string_field: \"\\350\\260\\267\\346\\255\\214\"\n", }, { // Some UTF-8. &pb.Strings{StringField: proto.String("\x00\x01\xff\x81")}, `string_field: "\000\001\377\201"` + "\n", }, } for i, tc := range testCases { var buf bytes.Buffer if err := proto.MarshalText(&buf, tc.in); err != nil { t.Errorf("proto.MarsalText: %v", err) continue } s := buf.String() if s != tc.out { t.Errorf("#%d: Got:\n%s\nExpected:\n%s\n", i, s, tc.out) continue } // Check round-trip. pbStrings := new(pb.Strings) if err := proto.UnmarshalText(s, pbStrings); err != nil { t.Errorf("#%d: UnmarshalText: %v", i, err) continue } if !proto.Equal(pbStrings, tc.in) { t.Errorf("#%d: Round-trip failed:\nstart: %v\n end: %v", i, tc.in, pbStrings) } } } // A limitedWriter accepts some output before it fails. // This is a proxy for something like a nearly-full or imminently-failing disk, // or a network connection that is about to die. type limitedWriter struct { b bytes.Buffer limit int } var outOfSpace = errors.New("proto: insufficient space") func (w *limitedWriter) Write(p []byte) (n int, err error) { var avail = w.limit - w.b.Len() if avail <= 0 { return 0, outOfSpace } if len(p) <= avail { return w.b.Write(p) } n, _ = w.b.Write(p[:avail]) return n, outOfSpace } func TestMarshalTextFailing(t *testing.T) { // Try lots of different sizes to exercise more error code-paths. for lim := 0; lim < len(text); lim++ { buf := new(limitedWriter) buf.limit = lim err := proto.MarshalText(buf, newTestMessage()) // We expect a certain error, but also some partial results in the buffer. if err != outOfSpace { t.Errorf("Got:\n===\n%v===\nExpected:\n===\n%v===\n", err, outOfSpace) } s := buf.b.String() x := text[:buf.limit] if s != x { t.Errorf("Got:\n===\n%v===\nExpected:\n===\n%v===\n", s, x) } } } func TestFloats(t *testing.T) { tests := []struct { f float64 want string }{ {0, "0"}, {4.7, "4.7"}, {math.Inf(1), "inf"}, {math.Inf(-1), "-inf"}, {math.NaN(), "nan"}, } for _, test := range tests { msg := &pb.FloatingPoint{F: &test.f} got := strings.TrimSpace(msg.String()) want := `f:` + test.want if got != want { t.Errorf("f=%f: got %q, want %q", test.f, got, want) } } } func TestRepeatedNilText(t *testing.T) { m := &pb.MessageList{ Message: []*pb.MessageList_Message{ nil, { Name: proto.String("Horse"), }, nil, }, } want := `Message Message { name: "Horse" } Message ` if s := proto.MarshalTextString(m); s != want { t.Errorf(" got: %s\nwant: %s", s, want) } } func TestProto3Text(t *testing.T) { tests := []struct { m proto.Message want string }{ // zero message {&proto3pb.Message{}, ``}, // zero message except for an empty byte slice {&proto3pb.Message{Data: []byte{}}, ``}, // trivial case {&proto3pb.Message{Name: "Rob", HeightInCm: 175}, `name:"Rob" height_in_cm:175`}, // empty map {&pb.MessageWithMap{}, ``}, // non-empty map; map format is the same as a repeated struct, // and they are sorted by key (numerically for numeric keys). { &pb.MessageWithMap{NameMapping: map[int32]string{ -1: "Negatory", 7: "Lucky", 1234: "Feist", 6345789: "Otis", }}, `name_mapping: ` + `name_mapping: ` + `name_mapping: ` + `name_mapping:`, }, // map with nil value; not well-defined, but we shouldn't crash { &pb.MessageWithMap{MsgMapping: map[int64]*pb.FloatingPoint{7: nil}}, `msg_mapping:`, }, } for _, test := range tests { got := strings.TrimSpace(test.m.String()) if got != test.want { t.Errorf("\n got %s\nwant %s", got, test.want) } } } golang-gogoprotobuf-0.5/proto/timestamp.go000066400000000000000000000103321317075173200210410ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. package proto // This file implements operations on google.protobuf.Timestamp. import ( "errors" "fmt" "time" ) const ( // Seconds field of the earliest valid Timestamp. // This is time.Date(1, 1, 1, 0, 0, 0, 0, time.UTC).Unix(). minValidSeconds = -62135596800 // Seconds field just after the latest valid Timestamp. // This is time.Date(10000, 1, 1, 0, 0, 0, 0, time.UTC).Unix(). maxValidSeconds = 253402300800 ) // validateTimestamp determines whether a Timestamp is valid. // A valid timestamp represents a time in the range // [0001-01-01, 10000-01-01) and has a Nanos field // in the range [0, 1e9). // // If the Timestamp is valid, validateTimestamp returns nil. // Otherwise, it returns an error that describes // the problem. // // Every valid Timestamp can be represented by a time.Time, but the converse is not true. func validateTimestamp(ts *timestamp) error { if ts == nil { return errors.New("timestamp: nil Timestamp") } if ts.Seconds < minValidSeconds { return fmt.Errorf("timestamp: %#v before 0001-01-01", ts) } if ts.Seconds >= maxValidSeconds { return fmt.Errorf("timestamp: %#v after 10000-01-01", ts) } if ts.Nanos < 0 || ts.Nanos >= 1e9 { return fmt.Errorf("timestamp: %#v: nanos not in range [0, 1e9)", ts) } return nil } // TimestampFromProto converts a google.protobuf.Timestamp proto to a time.Time. // It returns an error if the argument is invalid. // // Unlike most Go functions, if Timestamp returns an error, the first return value // is not the zero time.Time. Instead, it is the value obtained from the // time.Unix function when passed the contents of the Timestamp, in the UTC // locale. This may or may not be a meaningful time; many invalid Timestamps // do map to valid time.Times. // // A nil Timestamp returns an error. The first return value in that case is // undefined. func timestampFromProto(ts *timestamp) (time.Time, error) { // Don't return the zero value on error, because corresponds to a valid // timestamp. Instead return whatever time.Unix gives us. var t time.Time if ts == nil { t = time.Unix(0, 0).UTC() // treat nil like the empty Timestamp } else { t = time.Unix(ts.Seconds, int64(ts.Nanos)).UTC() } return t, validateTimestamp(ts) } // TimestampProto converts the time.Time to a google.protobuf.Timestamp proto. // It returns an error if the resulting Timestamp is invalid. func timestampProto(t time.Time) (*timestamp, error) { seconds := t.Unix() nanos := int32(t.Sub(time.Unix(seconds, 0))) ts := ×tamp{ Seconds: seconds, Nanos: nanos, } if err := validateTimestamp(ts); err != nil { return nil, err } return ts, nil } golang-gogoprotobuf-0.5/proto/timestamp_gogo.go000066400000000000000000000144021317075173200220560ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package proto import ( "reflect" "time" ) var timeType = reflect.TypeOf((*time.Time)(nil)).Elem() type timestamp struct { Seconds int64 `protobuf:"varint,1,opt,name=seconds,proto3" json:"seconds,omitempty"` Nanos int32 `protobuf:"varint,2,opt,name=nanos,proto3" json:"nanos,omitempty"` } func (m *timestamp) Reset() { *m = timestamp{} } func (*timestamp) ProtoMessage() {} func (*timestamp) String() string { return "timestamp" } func init() { RegisterType((*timestamp)(nil), "gogo.protobuf.proto.timestamp") } func (o *Buffer) decTimestamp() (time.Time, error) { b, err := o.DecodeRawBytes(true) if err != nil { return time.Time{}, err } tproto := ×tamp{} if err := Unmarshal(b, tproto); err != nil { return time.Time{}, err } return timestampFromProto(tproto) } func (o *Buffer) dec_time(p *Properties, base structPointer) error { t, err := o.decTimestamp() if err != nil { return err } setPtrCustomType(base, p.field, &t) return nil } func (o *Buffer) dec_ref_time(p *Properties, base structPointer) error { t, err := o.decTimestamp() if err != nil { return err } setCustomType(base, p.field, &t) return nil } func (o *Buffer) dec_slice_time(p *Properties, base structPointer) error { t, err := o.decTimestamp() if err != nil { return err } newBas := appendStructPointer(base, p.field, reflect.SliceOf(reflect.PtrTo(timeType))) var zero field setPtrCustomType(newBas, zero, &t) return nil } func (o *Buffer) dec_slice_ref_time(p *Properties, base structPointer) error { t, err := o.decTimestamp() if err != nil { return err } newBas := appendStructPointer(base, p.field, reflect.SliceOf(timeType)) var zero field setCustomType(newBas, zero, &t) return nil } func size_time(p *Properties, base structPointer) (n int) { structp := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(structp) { return 0 } tim := structPointer_Interface(structp, timeType).(*time.Time) t, err := timestampProto(*tim) if err != nil { return 0 } size := Size(t) return size + sizeVarint(uint64(size)) + len(p.tagcode) } func (o *Buffer) enc_time(p *Properties, base structPointer) error { structp := structPointer_GetStructPointer(base, p.field) if structPointer_IsNil(structp) { return ErrNil } tim := structPointer_Interface(structp, timeType).(*time.Time) t, err := timestampProto(*tim) if err != nil { return err } data, err := Marshal(t) if err != nil { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) return nil } func size_ref_time(p *Properties, base structPointer) (n int) { tim := structPointer_InterfaceAt(base, p.field, timeType).(*time.Time) t, err := timestampProto(*tim) if err != nil { return 0 } size := Size(t) return size + sizeVarint(uint64(size)) + len(p.tagcode) } func (o *Buffer) enc_ref_time(p *Properties, base structPointer) error { tim := structPointer_InterfaceAt(base, p.field, timeType).(*time.Time) t, err := timestampProto(*tim) if err != nil { return err } data, err := Marshal(t) if err != nil { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) return nil } func size_slice_time(p *Properties, base structPointer) (n int) { ptims := structPointer_InterfaceAt(base, p.field, reflect.SliceOf(reflect.PtrTo(timeType))).(*[]*time.Time) tims := *ptims for i := 0; i < len(tims); i++ { if tims[i] == nil { return 0 } tproto, err := timestampProto(*tims[i]) if err != nil { return 0 } size := Size(tproto) n += len(p.tagcode) + size + sizeVarint(uint64(size)) } return n } func (o *Buffer) enc_slice_time(p *Properties, base structPointer) error { ptims := structPointer_InterfaceAt(base, p.field, reflect.SliceOf(reflect.PtrTo(timeType))).(*[]*time.Time) tims := *ptims for i := 0; i < len(tims); i++ { if tims[i] == nil { return errRepeatedHasNil } tproto, err := timestampProto(*tims[i]) if err != nil { return err } data, err := Marshal(tproto) if err != nil { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) } return nil } func size_slice_ref_time(p *Properties, base structPointer) (n int) { ptims := structPointer_InterfaceAt(base, p.field, reflect.SliceOf(timeType)).(*[]time.Time) tims := *ptims for i := 0; i < len(tims); i++ { tproto, err := timestampProto(tims[i]) if err != nil { return 0 } size := Size(tproto) n += len(p.tagcode) + size + sizeVarint(uint64(size)) } return n } func (o *Buffer) enc_slice_ref_time(p *Properties, base structPointer) error { ptims := structPointer_InterfaceAt(base, p.field, reflect.SliceOf(timeType)).(*[]time.Time) tims := *ptims for i := 0; i < len(tims); i++ { tproto, err := timestampProto(tims[i]) if err != nil { return err } data, err := Marshal(tproto) if err != nil { return err } o.buf = append(o.buf, p.tagcode...) o.EncodeRawBytes(data) } return nil } golang-gogoprotobuf-0.5/protobuf/000077500000000000000000000000001317075173200172055ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protobuf/Makefile000066400000000000000000000052671317075173200206570ustar00rootroot00000000000000URL="https://raw.githubusercontent.com/google/protobuf/master/src/google/protobuf/" update: go install github.com/gogo/protobuf/gogoreplace (cd ./google/protobuf && rm descriptor.proto; wget ${URL}/descriptor.proto) # gogoprotobuf requires users to import gogo.proto which imports descriptor.proto # The descriptor.proto is only compatible with proto3 just because of the reserved keyword. # We remove it to stay compatible with previous versions of protoc before proto3 gogoreplace 'reserved 38;' '//reserved 38;' ./google/protobuf/descriptor.proto gogoreplace 'reserved 8;' '//reserved 8;' ./google/protobuf/descriptor.proto gogoreplace 'reserved 9;' '//reserved 9;' ./google/protobuf/descriptor.proto gogoreplace 'reserved 4;' '//reserved 4;' ./google/protobuf/descriptor.proto gogoreplace 'reserved 5;' '//reserved 5;' ./google/protobuf/descriptor.proto gogoreplace 'option go_package = "github.com/golang/protobuf/protoc-gen-go/descriptor;descriptor";' 'option go_package = "descriptor";' ./google/protobuf/descriptor.proto (cd ./google/protobuf/compiler && rm plugin.proto; wget ${URL}/compiler/plugin.proto) gogoreplace 'option go_package = "github.com/golang/protobuf/protoc-gen-go/plugin;plugin_go";' 'option go_package = "plugin_go";' ./google/protobuf/compiler/plugin.proto (cd ./google/protobuf && rm any.proto; wget ${URL}/any.proto) gogoreplace 'go_package = "github.com/golang/protobuf/ptypes/any";' 'go_package = "types";' ./google/protobuf/any.proto (cd ./google/protobuf && rm empty.proto; wget ${URL}/empty.proto) gogoreplace 'go_package = "github.com/golang/protobuf/ptypes/empty";' 'go_package = "types";' ./google/protobuf/empty.proto (cd ./google/protobuf && rm timestamp.proto; wget ${URL}/timestamp.proto) gogoreplace 'go_package = "github.com/golang/protobuf/ptypes/timestamp";' 'go_package = "types";' ./google/protobuf/timestamp.proto (cd ./google/protobuf && rm duration.proto; wget ${URL}/duration.proto) gogoreplace 'go_package = "github.com/golang/protobuf/ptypes/duration";' 'go_package = "types";' ./google/protobuf/duration.proto (cd ./google/protobuf && rm struct.proto; wget ${URL}/struct.proto) gogoreplace 'go_package = "github.com/golang/protobuf/ptypes/struct;structpb";' 'go_package = "types";' ./google/protobuf/struct.proto (cd ./google/protobuf && rm wrappers.proto; wget ${URL}/wrappers.proto) gogoreplace 'go_package = "github.com/golang/protobuf/ptypes/wrappers";' 'go_package = "types";' ./google/protobuf/wrappers.proto (cd ./google/protobuf && rm field_mask.proto; wget ${URL}/field_mask.proto) gogoreplace 'option go_package = "google.golang.org/genproto/protobuf/field_mask;field_mask";' 'option go_package = "types";' ./google/protobuf/field_mask.proto golang-gogoprotobuf-0.5/protobuf/google/000077500000000000000000000000001317075173200204615ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protobuf/google/protobuf/000077500000000000000000000000001317075173200223215ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protobuf/google/protobuf/any.proto000066400000000000000000000125131317075173200241770ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. syntax = "proto3"; package google.protobuf; option csharp_namespace = "Google.Protobuf.WellKnownTypes"; option go_package = "types"; option java_package = "com.google.protobuf"; option java_outer_classname = "AnyProto"; option java_multiple_files = true; option objc_class_prefix = "GPB"; // `Any` contains an arbitrary serialized protocol buffer message along with a // URL that describes the type of the serialized message. // // Protobuf library provides support to pack/unpack Any values in the form // of utility functions or additional generated methods of the Any type. // // Example 1: Pack and unpack a message in C++. // // Foo foo = ...; // Any any; // any.PackFrom(foo); // ... // if (any.UnpackTo(&foo)) { // ... // } // // Example 2: Pack and unpack a message in Java. // // Foo foo = ...; // Any any = Any.pack(foo); // ... // if (any.is(Foo.class)) { // foo = any.unpack(Foo.class); // } // // Example 3: Pack and unpack a message in Python. // // foo = Foo(...) // any = Any() // any.Pack(foo) // ... // if any.Is(Foo.DESCRIPTOR): // any.Unpack(foo) // ... // // Example 4: Pack and unpack a message in Go // // foo := &pb.Foo{...} // any, err := ptypes.MarshalAny(foo) // ... // foo := &pb.Foo{} // if err := ptypes.UnmarshalAny(any, foo); err != nil { // ... // } // // The pack methods provided by protobuf library will by default use // 'type.googleapis.com/full.type.name' as the type URL and the unpack // methods only use the fully qualified type name after the last '/' // in the type URL, for example "foo.bar.com/x/y.z" will yield type // name "y.z". // // // JSON // ==== // The JSON representation of an `Any` value uses the regular // representation of the deserialized, embedded message, with an // additional field `@type` which contains the type URL. Example: // // package google.profile; // message Person { // string first_name = 1; // string last_name = 2; // } // // { // "@type": "type.googleapis.com/google.profile.Person", // "firstName": , // "lastName": // } // // If the embedded message type is well-known and has a custom JSON // representation, that representation will be embedded adding a field // `value` which holds the custom JSON in addition to the `@type` // field. Example (for message [google.protobuf.Duration][]): // // { // "@type": "type.googleapis.com/google.protobuf.Duration", // "value": "1.212s" // } // message Any { // A URL/resource name whose content describes the type of the // serialized protocol buffer message. // // For URLs which use the scheme `http`, `https`, or no scheme, the // following restrictions and interpretations apply: // // * If no scheme is provided, `https` is assumed. // * The last segment of the URL's path must represent the fully // qualified name of the type (as in `path/google.protobuf.Duration`). // The name should be in a canonical form (e.g., leading "." is // not accepted). // * An HTTP GET on the URL must yield a [google.protobuf.Type][] // value in binary format, or produce an error. // * Applications are allowed to cache lookup results based on the // URL, or have them precompiled into a binary to avoid any // lookup. Therefore, binary compatibility needs to be preserved // on changes to types. (Use versioned type names to manage // breaking changes.) // // Schemes other than `http`, `https` (or the empty scheme) might be // used with implementation specific semantics. // string type_url = 1; // Must be a valid serialized protocol buffer of the above specified type. bytes value = 2; } golang-gogoprotobuf-0.5/protobuf/google/protobuf/compiler/000077500000000000000000000000001317075173200241335ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protobuf/google/protobuf/compiler/plugin.proto000066400000000000000000000177301317075173200265260ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. // Author: kenton@google.com (Kenton Varda) // // WARNING: The plugin interface is currently EXPERIMENTAL and is subject to // change. // // protoc (aka the Protocol Compiler) can be extended via plugins. A plugin is // just a program that reads a CodeGeneratorRequest from stdin and writes a // CodeGeneratorResponse to stdout. // // Plugins written using C++ can use google/protobuf/compiler/plugin.h instead // of dealing with the raw protocol defined here. // // A plugin executable needs only to be placed somewhere in the path. The // plugin should be named "protoc-gen-$NAME", and will then be used when the // flag "--${NAME}_out" is passed to protoc. syntax = "proto2"; package google.protobuf.compiler; option java_package = "com.google.protobuf.compiler"; option java_outer_classname = "PluginProtos"; option go_package = "plugin_go"; import "google/protobuf/descriptor.proto"; // The version number of protocol compiler. message Version { optional int32 major = 1; optional int32 minor = 2; optional int32 patch = 3; // A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should // be empty for mainline stable releases. optional string suffix = 4; } // An encoded CodeGeneratorRequest is written to the plugin's stdin. message CodeGeneratorRequest { // The .proto files that were explicitly listed on the command-line. The // code generator should generate code only for these files. Each file's // descriptor will be included in proto_file, below. repeated string file_to_generate = 1; // The generator parameter passed on the command-line. optional string parameter = 2; // FileDescriptorProtos for all files in files_to_generate and everything // they import. The files will appear in topological order, so each file // appears before any file that imports it. // // protoc guarantees that all proto_files will be written after // the fields above, even though this is not technically guaranteed by the // protobuf wire format. This theoretically could allow a plugin to stream // in the FileDescriptorProtos and handle them one by one rather than read // the entire set into memory at once. However, as of this writing, this // is not similarly optimized on protoc's end -- it will store all fields in // memory at once before sending them to the plugin. // // Type names of fields and extensions in the FileDescriptorProto are always // fully qualified. repeated FileDescriptorProto proto_file = 15; // The version number of protocol compiler. optional Version compiler_version = 3; } // The plugin writes an encoded CodeGeneratorResponse to stdout. message CodeGeneratorResponse { // Error message. If non-empty, code generation failed. The plugin process // should exit with status code zero even if it reports an error in this way. // // This should be used to indicate errors in .proto files which prevent the // code generator from generating correct code. Errors which indicate a // problem in protoc itself -- such as the input CodeGeneratorRequest being // unparseable -- should be reported by writing a message to stderr and // exiting with a non-zero status code. optional string error = 1; // Represents a single generated file. message File { // The file name, relative to the output directory. The name must not // contain "." or ".." components and must be relative, not be absolute (so, // the file cannot lie outside the output directory). "/" must be used as // the path separator, not "\". // // If the name is omitted, the content will be appended to the previous // file. This allows the generator to break large files into small chunks, // and allows the generated text to be streamed back to protoc so that large // files need not reside completely in memory at one time. Note that as of // this writing protoc does not optimize for this -- it will read the entire // CodeGeneratorResponse before writing files to disk. optional string name = 1; // If non-empty, indicates that the named file should already exist, and the // content here is to be inserted into that file at a defined insertion // point. This feature allows a code generator to extend the output // produced by another code generator. The original generator may provide // insertion points by placing special annotations in the file that look // like: // @@protoc_insertion_point(NAME) // The annotation can have arbitrary text before and after it on the line, // which allows it to be placed in a comment. NAME should be replaced with // an identifier naming the point -- this is what other generators will use // as the insertion_point. Code inserted at this point will be placed // immediately above the line containing the insertion point (thus multiple // insertions to the same point will come out in the order they were added). // The double-@ is intended to make it unlikely that the generated code // could contain things that look like insertion points by accident. // // For example, the C++ code generator places the following line in the // .pb.h files that it generates: // // @@protoc_insertion_point(namespace_scope) // This line appears within the scope of the file's package namespace, but // outside of any particular class. Another plugin can then specify the // insertion_point "namespace_scope" to generate additional classes or // other declarations that should be placed in this scope. // // Note that if the line containing the insertion point begins with // whitespace, the same whitespace will be added to every line of the // inserted text. This is useful for languages like Python, where // indentation matters. In these languages, the insertion point comment // should be indented the same amount as any inserted code will need to be // in order to work correctly in that context. // // The code generator that generates the initial file and the one which // inserts into it must both run as part of a single invocation of protoc. // Code generators are executed in the order in which they appear on the // command line. // // If |insertion_point| is present, |name| must also be present. optional string insertion_point = 2; // The file contents. optional string content = 15; } repeated File file = 15; } golang-gogoprotobuf-0.5/protobuf/google/protobuf/descriptor.proto000066400000000000000000001047631317075173200255770ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. // Author: kenton@google.com (Kenton Varda) // Based on original Protocol Buffers design by // Sanjay Ghemawat, Jeff Dean, and others. // // The messages in this file describe the definitions found in .proto files. // A valid .proto file can be translated directly to a FileDescriptorProto // without any other information (e.g. without reading its imports). syntax = "proto2"; package google.protobuf; option go_package = "descriptor"; option java_package = "com.google.protobuf"; option java_outer_classname = "DescriptorProtos"; option csharp_namespace = "Google.Protobuf.Reflection"; option objc_class_prefix = "GPB"; // descriptor.proto must be optimized for speed because reflection-based // algorithms don't work during bootstrapping. option optimize_for = SPEED; // The protocol compiler can output a FileDescriptorSet containing the .proto // files it parses. message FileDescriptorSet { repeated FileDescriptorProto file = 1; } // Describes a complete .proto file. message FileDescriptorProto { optional string name = 1; // file name, relative to root of source tree optional string package = 2; // e.g. "foo", "foo.bar", etc. // Names of files imported by this file. repeated string dependency = 3; // Indexes of the public imported files in the dependency list above. repeated int32 public_dependency = 10; // Indexes of the weak imported files in the dependency list. // For Google-internal migration only. Do not use. repeated int32 weak_dependency = 11; // All top-level definitions in this file. repeated DescriptorProto message_type = 4; repeated EnumDescriptorProto enum_type = 5; repeated ServiceDescriptorProto service = 6; repeated FieldDescriptorProto extension = 7; optional FileOptions options = 8; // This field contains optional information about the original source code. // You may safely remove this entire field without harming runtime // functionality of the descriptors -- the information is needed only by // development tools. optional SourceCodeInfo source_code_info = 9; // The syntax of the proto file. // The supported values are "proto2" and "proto3". optional string syntax = 12; } // Describes a message type. message DescriptorProto { optional string name = 1; repeated FieldDescriptorProto field = 2; repeated FieldDescriptorProto extension = 6; repeated DescriptorProto nested_type = 3; repeated EnumDescriptorProto enum_type = 4; message ExtensionRange { optional int32 start = 1; optional int32 end = 2; optional ExtensionRangeOptions options = 3; } repeated ExtensionRange extension_range = 5; repeated OneofDescriptorProto oneof_decl = 8; optional MessageOptions options = 7; // Range of reserved tag numbers. Reserved tag numbers may not be used by // fields or extension ranges in the same message. Reserved ranges may // not overlap. message ReservedRange { optional int32 start = 1; // Inclusive. optional int32 end = 2; // Exclusive. } repeated ReservedRange reserved_range = 9; // Reserved field names, which may not be used by fields in the same message. // A given name may only be reserved once. repeated string reserved_name = 10; } message ExtensionRangeOptions { // The parser stores options it doesn't recognize here. See above. repeated UninterpretedOption uninterpreted_option = 999; // Clients can define custom options in extensions of this message. See above. extensions 1000 to max; } // Describes a field within a message. message FieldDescriptorProto { enum Type { // 0 is reserved for errors. // Order is weird for historical reasons. TYPE_DOUBLE = 1; TYPE_FLOAT = 2; // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if // negative values are likely. TYPE_INT64 = 3; TYPE_UINT64 = 4; // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if // negative values are likely. TYPE_INT32 = 5; TYPE_FIXED64 = 6; TYPE_FIXED32 = 7; TYPE_BOOL = 8; TYPE_STRING = 9; // Tag-delimited aggregate. // Group type is deprecated and not supported in proto3. However, Proto3 // implementations should still be able to parse the group wire format and // treat group fields as unknown fields. TYPE_GROUP = 10; TYPE_MESSAGE = 11; // Length-delimited aggregate. // New in version 2. TYPE_BYTES = 12; TYPE_UINT32 = 13; TYPE_ENUM = 14; TYPE_SFIXED32 = 15; TYPE_SFIXED64 = 16; TYPE_SINT32 = 17; // Uses ZigZag encoding. TYPE_SINT64 = 18; // Uses ZigZag encoding. }; enum Label { // 0 is reserved for errors LABEL_OPTIONAL = 1; LABEL_REQUIRED = 2; LABEL_REPEATED = 3; }; optional string name = 1; optional int32 number = 3; optional Label label = 4; // If type_name is set, this need not be set. If both this and type_name // are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP. optional Type type = 5; // For message and enum types, this is the name of the type. If the name // starts with a '.', it is fully-qualified. Otherwise, C++-like scoping // rules are used to find the type (i.e. first the nested types within this // message are searched, then within the parent, on up to the root // namespace). optional string type_name = 6; // For extensions, this is the name of the type being extended. It is // resolved in the same manner as type_name. optional string extendee = 2; // For numeric types, contains the original text representation of the value. // For booleans, "true" or "false". // For strings, contains the default text contents (not escaped in any way). // For bytes, contains the C escaped value. All bytes >= 128 are escaped. // TODO(kenton): Base-64 encode? optional string default_value = 7; // If set, gives the index of a oneof in the containing type's oneof_decl // list. This field is a member of that oneof. optional int32 oneof_index = 9; // JSON name of this field. The value is set by protocol compiler. If the // user has set a "json_name" option on this field, that option's value // will be used. Otherwise, it's deduced from the field's name by converting // it to camelCase. optional string json_name = 10; optional FieldOptions options = 8; } // Describes a oneof. message OneofDescriptorProto { optional string name = 1; optional OneofOptions options = 2; } // Describes an enum type. message EnumDescriptorProto { optional string name = 1; repeated EnumValueDescriptorProto value = 2; optional EnumOptions options = 3; } // Describes a value within an enum. message EnumValueDescriptorProto { optional string name = 1; optional int32 number = 2; optional EnumValueOptions options = 3; } // Describes a service. message ServiceDescriptorProto { optional string name = 1; repeated MethodDescriptorProto method = 2; optional ServiceOptions options = 3; } // Describes a method of a service. message MethodDescriptorProto { optional string name = 1; // Input and output type names. These are resolved in the same way as // FieldDescriptorProto.type_name, but must refer to a message type. optional string input_type = 2; optional string output_type = 3; optional MethodOptions options = 4; // Identifies if client streams multiple client messages optional bool client_streaming = 5 [default=false]; // Identifies if server streams multiple server messages optional bool server_streaming = 6 [default=false]; } // =================================================================== // Options // Each of the definitions above may have "options" attached. These are // just annotations which may cause code to be generated slightly differently // or may contain hints for code that manipulates protocol messages. // // Clients may define custom options as extensions of the *Options messages. // These extensions may not yet be known at parsing time, so the parser cannot // store the values in them. Instead it stores them in a field in the *Options // message called uninterpreted_option. This field must have the same name // across all *Options messages. We then use this field to populate the // extensions when we build a descriptor, at which point all protos have been // parsed and so all extensions are known. // // Extension numbers for custom options may be chosen as follows: // * For options which will only be used within a single application or // organization, or for experimental options, use field numbers 50000 // through 99999. It is up to you to ensure that you do not use the // same number for multiple options. // * For options which will be published and used publicly by multiple // independent entities, e-mail protobuf-global-extension-registry@google.com // to reserve extension numbers. Simply provide your project name (e.g. // Objective-C plugin) and your project website (if available) -- there's no // need to explain how you intend to use them. Usually you only need one // extension number. You can declare multiple options with only one extension // number by putting them in a sub-message. See the Custom Options section of // the docs for examples: // https://developers.google.com/protocol-buffers/docs/proto#options // If this turns out to be popular, a web service will be set up // to automatically assign option numbers. message FileOptions { // Sets the Java package where classes generated from this .proto will be // placed. By default, the proto package is used, but this is often // inappropriate because proto packages do not normally start with backwards // domain names. optional string java_package = 1; // If set, all the classes from the .proto file are wrapped in a single // outer class with the given name. This applies to both Proto1 // (equivalent to the old "--one_java_file" option) and Proto2 (where // a .proto always translates to a single class, but you may want to // explicitly choose the class name). optional string java_outer_classname = 8; // If set true, then the Java code generator will generate a separate .java // file for each top-level message, enum, and service defined in the .proto // file. Thus, these types will *not* be nested inside the outer class // named by java_outer_classname. However, the outer class will still be // generated to contain the file's getDescriptor() method as well as any // top-level extensions defined in the file. optional bool java_multiple_files = 10 [default=false]; // This option does nothing. optional bool java_generate_equals_and_hash = 20 [deprecated=true]; // If set true, then the Java2 code generator will generate code that // throws an exception whenever an attempt is made to assign a non-UTF-8 // byte sequence to a string field. // Message reflection will do the same. // However, an extension field still accepts non-UTF-8 byte sequences. // This option has no effect on when used with the lite runtime. optional bool java_string_check_utf8 = 27 [default=false]; // Generated classes can be optimized for speed or code size. enum OptimizeMode { SPEED = 1; // Generate complete code for parsing, serialization, // etc. CODE_SIZE = 2; // Use ReflectionOps to implement these methods. LITE_RUNTIME = 3; // Generate code using MessageLite and the lite runtime. } optional OptimizeMode optimize_for = 9 [default=SPEED]; // Sets the Go package where structs generated from this .proto will be // placed. If omitted, the Go package will be derived from the following: // - The basename of the package import path, if provided. // - Otherwise, the package statement in the .proto file, if present. // - Otherwise, the basename of the .proto file, without extension. optional string go_package = 11; // Should generic services be generated in each language? "Generic" services // are not specific to any particular RPC system. They are generated by the // main code generators in each language (without additional plugins). // Generic services were the only kind of service generation supported by // early versions of google.protobuf. // // Generic services are now considered deprecated in favor of using plugins // that generate code specific to your particular RPC system. Therefore, // these default to false. Old code which depends on generic services should // explicitly set them to true. optional bool cc_generic_services = 16 [default=false]; optional bool java_generic_services = 17 [default=false]; optional bool py_generic_services = 18 [default=false]; optional bool php_generic_services = 19 [default=false]; // Is this file deprecated? // Depending on the target platform, this can emit Deprecated annotations // for everything in the file, or it will be completely ignored; in the very // least, this is a formalization for deprecating files. optional bool deprecated = 23 [default=false]; // Enables the use of arenas for the proto messages in this file. This applies // only to generated classes for C++. optional bool cc_enable_arenas = 31 [default=false]; // Sets the objective c class prefix which is prepended to all objective c // generated classes from this .proto. There is no default. optional string objc_class_prefix = 36; // Namespace for generated classes; defaults to the package. optional string csharp_namespace = 37; // By default Swift generators will take the proto package and CamelCase it // replacing '.' with underscore and use that to prefix the types/symbols // defined. When this options is provided, they will use this value instead // to prefix the types/symbols defined. optional string swift_prefix = 39; // Sets the php class prefix which is prepended to all php generated classes // from this .proto. Default is empty. optional string php_class_prefix = 40; // Use this option to change the namespace of php generated classes. Default // is empty. When this option is empty, the package name will be used for // determining the namespace. optional string php_namespace = 41; // The parser stores options it doesn't recognize here. See above. repeated UninterpretedOption uninterpreted_option = 999; // Clients can define custom options in extensions of this message. See above. extensions 1000 to max; //reserved 38; } message MessageOptions { // Set true to use the old proto1 MessageSet wire format for extensions. // This is provided for backwards-compatibility with the MessageSet wire // format. You should not use this for any other reason: It's less // efficient, has fewer features, and is more complicated. // // The message must be defined exactly as follows: // message Foo { // option message_set_wire_format = true; // extensions 4 to max; // } // Note that the message cannot have any defined fields; MessageSets only // have extensions. // // All extensions of your type must be singular messages; e.g. they cannot // be int32s, enums, or repeated messages. // // Because this is an option, the above two restrictions are not enforced by // the protocol compiler. optional bool message_set_wire_format = 1 [default=false]; // Disables the generation of the standard "descriptor()" accessor, which can // conflict with a field of the same name. This is meant to make migration // from proto1 easier; new code should avoid fields named "descriptor". optional bool no_standard_descriptor_accessor = 2 [default=false]; // Is this message deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the message, or it will be completely ignored; in the very least, // this is a formalization for deprecating messages. optional bool deprecated = 3 [default=false]; // Whether the message is an automatically generated map entry type for the // maps field. // // For maps fields: // map map_field = 1; // The parsed descriptor looks like: // message MapFieldEntry { // option map_entry = true; // optional KeyType key = 1; // optional ValueType value = 2; // } // repeated MapFieldEntry map_field = 1; // // Implementations may choose not to generate the map_entry=true message, but // use a native map in the target language to hold the keys and values. // The reflection APIs in such implementions still need to work as // if the field is a repeated message field. // // NOTE: Do not set the option in .proto files. Always use the maps syntax // instead. The option should only be implicitly set by the proto compiler // parser. optional bool map_entry = 7; //reserved 8; // javalite_serializable //reserved 9; // javanano_as_lite // The parser stores options it doesn't recognize here. See above. repeated UninterpretedOption uninterpreted_option = 999; // Clients can define custom options in extensions of this message. See above. extensions 1000 to max; } message FieldOptions { // The ctype option instructs the C++ code generator to use a different // representation of the field than it normally would. See the specific // options below. This option is not yet implemented in the open source // release -- sorry, we'll try to include it in a future version! optional CType ctype = 1 [default = STRING]; enum CType { // Default mode. STRING = 0; CORD = 1; STRING_PIECE = 2; } // The packed option can be enabled for repeated primitive fields to enable // a more efficient representation on the wire. Rather than repeatedly // writing the tag and type for each element, the entire array is encoded as // a single length-delimited blob. In proto3, only explicit setting it to // false will avoid using packed encoding. optional bool packed = 2; // The jstype option determines the JavaScript type used for values of the // field. The option is permitted only for 64 bit integral and fixed types // (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING // is represented as JavaScript string, which avoids loss of precision that // can happen when a large value is converted to a floating point JavaScript. // Specifying JS_NUMBER for the jstype causes the generated JavaScript code to // use the JavaScript "number" type. The behavior of the default option // JS_NORMAL is implementation dependent. // // This option is an enum to permit additional types to be added, e.g. // goog.math.Integer. optional JSType jstype = 6 [default = JS_NORMAL]; enum JSType { // Use the default type. JS_NORMAL = 0; // Use JavaScript strings. JS_STRING = 1; // Use JavaScript numbers. JS_NUMBER = 2; } // Should this field be parsed lazily? Lazy applies only to message-type // fields. It means that when the outer message is initially parsed, the // inner message's contents will not be parsed but instead stored in encoded // form. The inner message will actually be parsed when it is first accessed. // // This is only a hint. Implementations are free to choose whether to use // eager or lazy parsing regardless of the value of this option. However, // setting this option true suggests that the protocol author believes that // using lazy parsing on this field is worth the additional bookkeeping // overhead typically needed to implement it. // // This option does not affect the public interface of any generated code; // all method signatures remain the same. Furthermore, thread-safety of the // interface is not affected by this option; const methods remain safe to // call from multiple threads concurrently, while non-const methods continue // to require exclusive access. // // // Note that implementations may choose not to check required fields within // a lazy sub-message. That is, calling IsInitialized() on the outer message // may return true even if the inner message has missing required fields. // This is necessary because otherwise the inner message would have to be // parsed in order to perform the check, defeating the purpose of lazy // parsing. An implementation which chooses not to check required fields // must be consistent about it. That is, for any particular sub-message, the // implementation must either *always* check its required fields, or *never* // check its required fields, regardless of whether or not the message has // been parsed. optional bool lazy = 5 [default=false]; // Is this field deprecated? // Depending on the target platform, this can emit Deprecated annotations // for accessors, or it will be completely ignored; in the very least, this // is a formalization for deprecating fields. optional bool deprecated = 3 [default=false]; // For Google-internal migration only. Do not use. optional bool weak = 10 [default=false]; // The parser stores options it doesn't recognize here. See above. repeated UninterpretedOption uninterpreted_option = 999; // Clients can define custom options in extensions of this message. See above. extensions 1000 to max; //reserved 4; // removed jtype } message OneofOptions { // The parser stores options it doesn't recognize here. See above. repeated UninterpretedOption uninterpreted_option = 999; // Clients can define custom options in extensions of this message. See above. extensions 1000 to max; } message EnumOptions { // Set this option to true to allow mapping different tag names to the same // value. optional bool allow_alias = 2; // Is this enum deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the enum, or it will be completely ignored; in the very least, this // is a formalization for deprecating enums. optional bool deprecated = 3 [default=false]; //reserved 5; // javanano_as_lite // The parser stores options it doesn't recognize here. See above. repeated UninterpretedOption uninterpreted_option = 999; // Clients can define custom options in extensions of this message. See above. extensions 1000 to max; } message EnumValueOptions { // Is this enum value deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the enum value, or it will be completely ignored; in the very least, // this is a formalization for deprecating enum values. optional bool deprecated = 1 [default=false]; // The parser stores options it doesn't recognize here. See above. repeated UninterpretedOption uninterpreted_option = 999; // Clients can define custom options in extensions of this message. See above. extensions 1000 to max; } message ServiceOptions { // Note: Field numbers 1 through 32 are reserved for Google's internal RPC // framework. We apologize for hoarding these numbers to ourselves, but // we were already using them long before we decided to release Protocol // Buffers. // Is this service deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the service, or it will be completely ignored; in the very least, // this is a formalization for deprecating services. optional bool deprecated = 33 [default=false]; // The parser stores options it doesn't recognize here. See above. repeated UninterpretedOption uninterpreted_option = 999; // Clients can define custom options in extensions of this message. See above. extensions 1000 to max; } message MethodOptions { // Note: Field numbers 1 through 32 are reserved for Google's internal RPC // framework. We apologize for hoarding these numbers to ourselves, but // we were already using them long before we decided to release Protocol // Buffers. // Is this method deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the method, or it will be completely ignored; in the very least, // this is a formalization for deprecating methods. optional bool deprecated = 33 [default=false]; // Is this method side-effect-free (or safe in HTTP parlance), or idempotent, // or neither? HTTP based RPC implementation may choose GET verb for safe // methods, and PUT verb for idempotent methods instead of the default POST. enum IdempotencyLevel { IDEMPOTENCY_UNKNOWN = 0; NO_SIDE_EFFECTS = 1; // implies idempotent IDEMPOTENT = 2; // idempotent, but may have side effects } optional IdempotencyLevel idempotency_level = 34 [default=IDEMPOTENCY_UNKNOWN]; // The parser stores options it doesn't recognize here. See above. repeated UninterpretedOption uninterpreted_option = 999; // Clients can define custom options in extensions of this message. See above. extensions 1000 to max; } // A message representing a option the parser does not recognize. This only // appears in options protos created by the compiler::Parser class. // DescriptorPool resolves these when building Descriptor objects. Therefore, // options protos in descriptor objects (e.g. returned by Descriptor::options(), // or produced by Descriptor::CopyTo()) will never have UninterpretedOptions // in them. message UninterpretedOption { // The name of the uninterpreted option. Each string represents a segment in // a dot-separated name. is_extension is true iff a segment represents an // extension (denoted with parentheses in options specs in .proto files). // E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents // "foo.(bar.baz).qux". message NamePart { required string name_part = 1; required bool is_extension = 2; } repeated NamePart name = 2; // The value of the uninterpreted option, in whatever type the tokenizer // identified it as during parsing. Exactly one of these should be set. optional string identifier_value = 3; optional uint64 positive_int_value = 4; optional int64 negative_int_value = 5; optional double double_value = 6; optional bytes string_value = 7; optional string aggregate_value = 8; } // =================================================================== // Optional source code info // Encapsulates information about the original source file from which a // FileDescriptorProto was generated. message SourceCodeInfo { // A Location identifies a piece of source code in a .proto file which // corresponds to a particular definition. This information is intended // to be useful to IDEs, code indexers, documentation generators, and similar // tools. // // For example, say we have a file like: // message Foo { // optional string foo = 1; // } // Let's look at just the field definition: // optional string foo = 1; // ^ ^^ ^^ ^ ^^^ // a bc de f ghi // We have the following locations: // span path represents // [a,i) [ 4, 0, 2, 0 ] The whole field definition. // [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). // [c,d) [ 4, 0, 2, 0, 5 ] The type (string). // [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). // [g,h) [ 4, 0, 2, 0, 3 ] The number (1). // // Notes: // - A location may refer to a repeated field itself (i.e. not to any // particular index within it). This is used whenever a set of elements are // logically enclosed in a single code segment. For example, an entire // extend block (possibly containing multiple extension definitions) will // have an outer location whose path refers to the "extensions" repeated // field without an index. // - Multiple locations may have the same path. This happens when a single // logical declaration is spread out across multiple places. The most // obvious example is the "extend" block again -- there may be multiple // extend blocks in the same scope, each of which will have the same path. // - A location's span is not always a subset of its parent's span. For // example, the "extendee" of an extension declaration appears at the // beginning of the "extend" block and is shared by all extensions within // the block. // - Just because a location's span is a subset of some other location's span // does not mean that it is a descendent. For example, a "group" defines // both a type and a field in a single declaration. Thus, the locations // corresponding to the type and field and their components will overlap. // - Code which tries to interpret locations should probably be designed to // ignore those that it doesn't understand, as more types of locations could // be recorded in the future. repeated Location location = 1; message Location { // Identifies which part of the FileDescriptorProto was defined at this // location. // // Each element is a field number or an index. They form a path from // the root FileDescriptorProto to the place where the definition. For // example, this path: // [ 4, 3, 2, 7, 1 ] // refers to: // file.message_type(3) // 4, 3 // .field(7) // 2, 7 // .name() // 1 // This is because FileDescriptorProto.message_type has field number 4: // repeated DescriptorProto message_type = 4; // and DescriptorProto.field has field number 2: // repeated FieldDescriptorProto field = 2; // and FieldDescriptorProto.name has field number 1: // optional string name = 1; // // Thus, the above path gives the location of a field name. If we removed // the last element: // [ 4, 3, 2, 7 ] // this path refers to the whole field declaration (from the beginning // of the label to the terminating semicolon). repeated int32 path = 1 [packed=true]; // Always has exactly three or four elements: start line, start column, // end line (optional, otherwise assumed same as start line), end column. // These are packed into a single field for efficiency. Note that line // and column numbers are zero-based -- typically you will want to add // 1 to each before displaying to a user. repeated int32 span = 2 [packed=true]; // If this SourceCodeInfo represents a complete declaration, these are any // comments appearing before and after the declaration which appear to be // attached to the declaration. // // A series of line comments appearing on consecutive lines, with no other // tokens appearing on those lines, will be treated as a single comment. // // leading_detached_comments will keep paragraphs of comments that appear // before (but not connected to) the current element. Each paragraph, // separated by empty lines, will be one comment element in the repeated // field. // // Only the comment content is provided; comment markers (e.g. //) are // stripped out. For block comments, leading whitespace and an asterisk // will be stripped from the beginning of each line other than the first. // Newlines are included in the output. // // Examples: // // optional int32 foo = 1; // Comment attached to foo. // // Comment attached to bar. // optional int32 bar = 2; // // optional string baz = 3; // // Comment attached to baz. // // Another line attached to baz. // // // Comment attached to qux. // // // // Another line attached to qux. // optional double qux = 4; // // // Detached comment for corge. This is not leading or trailing comments // // to qux or corge because there are blank lines separating it from // // both. // // // Detached comment for corge paragraph 2. // // optional string corge = 5; // /* Block comment attached // * to corge. Leading asterisks // * will be removed. */ // /* Block comment attached to // * grault. */ // optional int32 grault = 6; // // // ignored detached comments. optional string leading_comments = 3; optional string trailing_comments = 4; repeated string leading_detached_comments = 6; } } // Describes the relationship between generated code and its original source // file. A GeneratedCodeInfo message is associated with only one generated // source file, but may contain references to different source .proto files. message GeneratedCodeInfo { // An Annotation connects some span of text in generated code to an element // of its generating .proto file. repeated Annotation annotation = 1; message Annotation { // Identifies the element in the original source .proto file. This field // is formatted the same as SourceCodeInfo.Location.path. repeated int32 path = 1 [packed=true]; // Identifies the filesystem path to the original source .proto. optional string source_file = 2; // Identifies the starting offset in bytes in the generated code // that relates to the identified object. optional int32 begin = 3; // Identifies the ending offset in bytes in the generated code that // relates to the identified offset. The end offset should be one past // the last relevant byte (so the length of the text = end - begin). optional int32 end = 4; } } golang-gogoprotobuf-0.5/protobuf/google/protobuf/duration.proto000066400000000000000000000113651317075173200252410ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. syntax = "proto3"; package google.protobuf; option csharp_namespace = "Google.Protobuf.WellKnownTypes"; option cc_enable_arenas = true; option go_package = "types"; option java_package = "com.google.protobuf"; option java_outer_classname = "DurationProto"; option java_multiple_files = true; option objc_class_prefix = "GPB"; // A Duration represents a signed, fixed-length span of time represented // as a count of seconds and fractions of seconds at nanosecond // resolution. It is independent of any calendar and concepts like "day" // or "month". It is related to Timestamp in that the difference between // two Timestamp values is a Duration and it can be added or subtracted // from a Timestamp. Range is approximately +-10,000 years. // // # Examples // // Example 1: Compute Duration from two Timestamps in pseudo code. // // Timestamp start = ...; // Timestamp end = ...; // Duration duration = ...; // // duration.seconds = end.seconds - start.seconds; // duration.nanos = end.nanos - start.nanos; // // if (duration.seconds < 0 && duration.nanos > 0) { // duration.seconds += 1; // duration.nanos -= 1000000000; // } else if (durations.seconds > 0 && duration.nanos < 0) { // duration.seconds -= 1; // duration.nanos += 1000000000; // } // // Example 2: Compute Timestamp from Timestamp + Duration in pseudo code. // // Timestamp start = ...; // Duration duration = ...; // Timestamp end = ...; // // end.seconds = start.seconds + duration.seconds; // end.nanos = start.nanos + duration.nanos; // // if (end.nanos < 0) { // end.seconds -= 1; // end.nanos += 1000000000; // } else if (end.nanos >= 1000000000) { // end.seconds += 1; // end.nanos -= 1000000000; // } // // Example 3: Compute Duration from datetime.timedelta in Python. // // td = datetime.timedelta(days=3, minutes=10) // duration = Duration() // duration.FromTimedelta(td) // // # JSON Mapping // // In JSON format, the Duration type is encoded as a string rather than an // object, where the string ends in the suffix "s" (indicating seconds) and // is preceded by the number of seconds, with nanoseconds expressed as // fractional seconds. For example, 3 seconds with 0 nanoseconds should be // encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should // be expressed in JSON format as "3.000000001s", and 3 seconds and 1 // microsecond should be expressed in JSON format as "3.000001s". // // message Duration { // Signed seconds of the span of time. Must be from -315,576,000,000 // to +315,576,000,000 inclusive. Note: these bounds are computed from: // 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years int64 seconds = 1; // Signed fractions of a second at nanosecond resolution of the span // of time. Durations less than one second are represented with a 0 // `seconds` field and a positive or negative `nanos` field. For durations // of one second or more, a non-zero value for the `nanos` field must be // of the same sign as the `seconds` field. Must be from -999,999,999 // to +999,999,999 inclusive. int32 nanos = 2; } golang-gogoprotobuf-0.5/protobuf/google/protobuf/empty.proto000066400000000000000000000045241317075173200245510ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. syntax = "proto3"; package google.protobuf; option csharp_namespace = "Google.Protobuf.WellKnownTypes"; option go_package = "types"; option java_package = "com.google.protobuf"; option java_outer_classname = "EmptyProto"; option java_multiple_files = true; option objc_class_prefix = "GPB"; option cc_enable_arenas = true; // A generic empty message that you can re-use to avoid defining duplicated // empty messages in your APIs. A typical example is to use it as the request // or the response type of an API method. For instance: // // service Foo { // rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); // } // // The JSON representation for `Empty` is empty JSON object `{}`. message Empty {} golang-gogoprotobuf-0.5/protobuf/google/protobuf/field_mask.proto000066400000000000000000000173131317075173200255110ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. syntax = "proto3"; package google.protobuf; option csharp_namespace = "Google.Protobuf.WellKnownTypes"; option java_package = "com.google.protobuf"; option java_outer_classname = "FieldMaskProto"; option java_multiple_files = true; option objc_class_prefix = "GPB"; option go_package = "types"; // `FieldMask` represents a set of symbolic field paths, for example: // // paths: "f.a" // paths: "f.b.d" // // Here `f` represents a field in some root message, `a` and `b` // fields in the message found in `f`, and `d` a field found in the // message in `f.b`. // // Field masks are used to specify a subset of fields that should be // returned by a get operation or modified by an update operation. // Field masks also have a custom JSON encoding (see below). // // # Field Masks in Projections // // When used in the context of a projection, a response message or // sub-message is filtered by the API to only contain those fields as // specified in the mask. For example, if the mask in the previous // example is applied to a response message as follows: // // f { // a : 22 // b { // d : 1 // x : 2 // } // y : 13 // } // z: 8 // // The result will not contain specific values for fields x,y and z // (their value will be set to the default, and omitted in proto text // output): // // // f { // a : 22 // b { // d : 1 // } // } // // A repeated field is not allowed except at the last position of a // paths string. // // If a FieldMask object is not present in a get operation, the // operation applies to all fields (as if a FieldMask of all fields // had been specified). // // Note that a field mask does not necessarily apply to the // top-level response message. In case of a REST get operation, the // field mask applies directly to the response, but in case of a REST // list operation, the mask instead applies to each individual message // in the returned resource list. In case of a REST custom method, // other definitions may be used. Where the mask applies will be // clearly documented together with its declaration in the API. In // any case, the effect on the returned resource/resources is required // behavior for APIs. // // # Field Masks in Update Operations // // A field mask in update operations specifies which fields of the // targeted resource are going to be updated. The API is required // to only change the values of the fields as specified in the mask // and leave the others untouched. If a resource is passed in to // describe the updated values, the API ignores the values of all // fields not covered by the mask. // // If a repeated field is specified for an update operation, the existing // repeated values in the target resource will be overwritten by the new values. // Note that a repeated field is only allowed in the last position of a `paths` // string. // // If a sub-message is specified in the last position of the field mask for an // update operation, then the existing sub-message in the target resource is // overwritten. Given the target message: // // f { // b { // d : 1 // x : 2 // } // c : 1 // } // // And an update message: // // f { // b { // d : 10 // } // } // // then if the field mask is: // // paths: "f.b" // // then the result will be: // // f { // b { // d : 10 // } // c : 1 // } // // However, if the update mask was: // // paths: "f.b.d" // // then the result would be: // // f { // b { // d : 10 // x : 2 // } // c : 1 // } // // In order to reset a field's value to the default, the field must // be in the mask and set to the default value in the provided resource. // Hence, in order to reset all fields of a resource, provide a default // instance of the resource and set all fields in the mask, or do // not provide a mask as described below. // // If a field mask is not present on update, the operation applies to // all fields (as if a field mask of all fields has been specified). // Note that in the presence of schema evolution, this may mean that // fields the client does not know and has therefore not filled into // the request will be reset to their default. If this is unwanted // behavior, a specific service may require a client to always specify // a field mask, producing an error if not. // // As with get operations, the location of the resource which // describes the updated values in the request message depends on the // operation kind. In any case, the effect of the field mask is // required to be honored by the API. // // ## Considerations for HTTP REST // // The HTTP kind of an update operation which uses a field mask must // be set to PATCH instead of PUT in order to satisfy HTTP semantics // (PUT must only be used for full updates). // // # JSON Encoding of Field Masks // // In JSON, a field mask is encoded as a single string where paths are // separated by a comma. Fields name in each path are converted // to/from lower-camel naming conventions. // // As an example, consider the following message declarations: // // message Profile { // User user = 1; // Photo photo = 2; // } // message User { // string display_name = 1; // string address = 2; // } // // In proto a field mask for `Profile` may look as such: // // mask { // paths: "user.display_name" // paths: "photo" // } // // In JSON, the same mask is represented as below: // // { // mask: "user.displayName,photo" // } // // # Field Masks and Oneof Fields // // Field masks treat fields in oneofs just as regular fields. Consider the // following message: // // message SampleMessage { // oneof test_oneof { // string name = 4; // SubMessage sub_message = 9; // } // } // // The field mask can be: // // mask { // paths: "name" // } // // Or: // // mask { // paths: "sub_message" // } // // Note that oneof type names ("test_oneof" in this case) cannot be used in // paths. message FieldMask { // The set of field mask paths. repeated string paths = 1; } golang-gogoprotobuf-0.5/protobuf/google/protobuf/struct.proto000066400000000000000000000072311317075173200247350ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. syntax = "proto3"; package google.protobuf; option csharp_namespace = "Google.Protobuf.WellKnownTypes"; option cc_enable_arenas = true; option go_package = "types"; option java_package = "com.google.protobuf"; option java_outer_classname = "StructProto"; option java_multiple_files = true; option objc_class_prefix = "GPB"; // `Struct` represents a structured data value, consisting of fields // which map to dynamically typed values. In some languages, `Struct` // might be supported by a native representation. For example, in // scripting languages like JS a struct is represented as an // object. The details of that representation are described together // with the proto support for the language. // // The JSON representation for `Struct` is JSON object. message Struct { // Unordered map of dynamically typed values. map fields = 1; } // `Value` represents a dynamically typed value which can be either // null, a number, a string, a boolean, a recursive struct value, or a // list of values. A producer of value is expected to set one of that // variants, absence of any variant indicates an error. // // The JSON representation for `Value` is JSON value. message Value { // The kind of value. oneof kind { // Represents a null value. NullValue null_value = 1; // Represents a double value. double number_value = 2; // Represents a string value. string string_value = 3; // Represents a boolean value. bool bool_value = 4; // Represents a structured value. Struct struct_value = 5; // Represents a repeated `Value`. ListValue list_value = 6; } } // `NullValue` is a singleton enumeration to represent the null value for the // `Value` type union. // // The JSON representation for `NullValue` is JSON `null`. enum NullValue { // Null value. NULL_VALUE = 0; } // `ListValue` is a wrapper around a repeated field of values. // // The JSON representation for `ListValue` is JSON array. message ListValue { // Repeated field of dynamically typed values. repeated Value values = 1; } golang-gogoprotobuf-0.5/protobuf/google/protobuf/timestamp.proto000066400000000000000000000134641317075173200254210ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. syntax = "proto3"; package google.protobuf; option csharp_namespace = "Google.Protobuf.WellKnownTypes"; option cc_enable_arenas = true; option go_package = "types"; option java_package = "com.google.protobuf"; option java_outer_classname = "TimestampProto"; option java_multiple_files = true; option objc_class_prefix = "GPB"; // A Timestamp represents a point in time independent of any time zone // or calendar, represented as seconds and fractions of seconds at // nanosecond resolution in UTC Epoch time. It is encoded using the // Proleptic Gregorian Calendar which extends the Gregorian calendar // backwards to year one. It is encoded assuming all minutes are 60 // seconds long, i.e. leap seconds are "smeared" so that no leap second // table is needed for interpretation. Range is from // 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. // By restricting to that range, we ensure that we can convert to // and from RFC 3339 date strings. // See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt). // // # Examples // // Example 1: Compute Timestamp from POSIX `time()`. // // Timestamp timestamp; // timestamp.set_seconds(time(NULL)); // timestamp.set_nanos(0); // // Example 2: Compute Timestamp from POSIX `gettimeofday()`. // // struct timeval tv; // gettimeofday(&tv, NULL); // // Timestamp timestamp; // timestamp.set_seconds(tv.tv_sec); // timestamp.set_nanos(tv.tv_usec * 1000); // // Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`. // // FILETIME ft; // GetSystemTimeAsFileTime(&ft); // UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime; // // // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z // // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z. // Timestamp timestamp; // timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL)); // timestamp.set_nanos((INT32) ((ticks % 10000000) * 100)); // // Example 4: Compute Timestamp from Java `System.currentTimeMillis()`. // // long millis = System.currentTimeMillis(); // // Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) // .setNanos((int) ((millis % 1000) * 1000000)).build(); // // // Example 5: Compute Timestamp from current time in Python. // // timestamp = Timestamp() // timestamp.GetCurrentTime() // // # JSON Mapping // // In JSON format, the Timestamp type is encoded as a string in the // [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the // format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" // where {year} is always expressed using four digits while {month}, {day}, // {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional // seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), // are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone // is required, though only UTC (as indicated by "Z") is presently supported. // // For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past // 01:30 UTC on January 15, 2017. // // In JavaScript, one can convert a Date object to this format using the // standard [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString] // method. In Python, a standard `datetime.datetime` object can be converted // to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) // with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one // can use the Joda Time's [`ISODateTimeFormat.dateTime()`]( // http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()) // to obtain a formatter capable of generating timestamps in this format. // // message Timestamp { // Represents seconds of UTC time since Unix epoch // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to // 9999-12-31T23:59:59Z inclusive. int64 seconds = 1; // Non-negative fractions of a second at nanosecond resolution. Negative // second values with fractions must still have non-negative nanos values // that count forward in time. Must be from 0 to 999,999,999 // inclusive. int32 nanos = 2; } golang-gogoprotobuf-0.5/protobuf/google/protobuf/wrappers.proto000066400000000000000000000071741317075173200252620ustar00rootroot00000000000000// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // 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. // Wrappers for primitive (non-message) types. These types are useful // for embedding primitives in the `google.protobuf.Any` type and for places // where we need to distinguish between the absence of a primitive // typed field and its default value. syntax = "proto3"; package google.protobuf; option csharp_namespace = "Google.Protobuf.WellKnownTypes"; option cc_enable_arenas = true; option go_package = "types"; option java_package = "com.google.protobuf"; option java_outer_classname = "WrappersProto"; option java_multiple_files = true; option objc_class_prefix = "GPB"; // Wrapper message for `double`. // // The JSON representation for `DoubleValue` is JSON number. message DoubleValue { // The double value. double value = 1; } // Wrapper message for `float`. // // The JSON representation for `FloatValue` is JSON number. message FloatValue { // The float value. float value = 1; } // Wrapper message for `int64`. // // The JSON representation for `Int64Value` is JSON string. message Int64Value { // The int64 value. int64 value = 1; } // Wrapper message for `uint64`. // // The JSON representation for `UInt64Value` is JSON string. message UInt64Value { // The uint64 value. uint64 value = 1; } // Wrapper message for `int32`. // // The JSON representation for `Int32Value` is JSON number. message Int32Value { // The int32 value. int32 value = 1; } // Wrapper message for `uint32`. // // The JSON representation for `UInt32Value` is JSON number. message UInt32Value { // The uint32 value. uint32 value = 1; } // Wrapper message for `bool`. // // The JSON representation for `BoolValue` is JSON `true` and `false`. message BoolValue { // The bool value. bool value = 1; } // Wrapper message for `string`. // // The JSON representation for `StringValue` is JSON string. message StringValue { // The string value. string value = 1; } // Wrapper message for `bytes`. // // The JSON representation for `BytesValue` is JSON string. message BytesValue { // The bytes value. bytes value = 1; } golang-gogoprotobuf-0.5/protoc-gen-combo/000077500000000000000000000000001317075173200205175ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-combo/combo.go000066400000000000000000000124201317075173200221440ustar00rootroot00000000000000// 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. package main import ( "bufio" "bytes" "flag" "fmt" "io/ioutil" "os" "os/exec" "path/filepath" "strings" "github.com/gogo/protobuf/version" ) type MixMatch struct { Old []string Filename string Args []string } func (this MixMatch) Gen(folder string, news []string) { if err := os.MkdirAll(folder, 0777); err != nil { panic(err) } data, err := ioutil.ReadFile(this.Filename) if err != nil { panic(err) } content := string(data) for i, old := range this.Old { if !strings.Contains(content, old) { panic(fmt.Errorf("could not find string {%s} to replace with {%s}", old, news[i])) } content = strings.Replace(content, old, news[i], 1) if strings.Contains(content, old) && old != news[i] { panic(fmt.Errorf("found another string {%s} after it was replaced with {%s}", old, news[i])) } } if err = ioutil.WriteFile(filepath.Join(folder, this.Filename), []byte(content), 0666); err != nil { panic(err) } args := append(this.Args, filepath.Join(folder, this.Filename)) var regenerate = exec.Command("protoc", args...) out, err := regenerate.CombinedOutput() failed := false scanner := bufio.NewScanner(bytes.NewReader(out)) for scanner.Scan() { text := scanner.Text() fmt.Println("protoc-gen-combo: ", text) if !strings.Contains(text, "WARNING") { failed = true } } if err != nil { fmt.Print("protoc-gen-combo: error: ", err) failed = true } if failed { os.Exit(1) } } func filter(ss []string, flag string) ([]string, string) { s := make([]string, 0, len(ss)) var v string for i := range ss { if strings.Contains(ss[i], flag) { vs := strings.Split(ss[i], "=") v = vs[1] continue } s = append(s, ss[i]) } return s, v } func filterArgs(ss []string) ([]string, []string) { var args []string var flags []string for i := range ss { if strings.Contains(ss[i], "=") { flags = append(flags, ss[i]) continue } args = append(args, ss[i]) } return flags, args } func main() { flag.String("version", "2.3.0", "minimum protoc version") flag.Bool("default", true, "generate the case where everything is false") flags, args := filterArgs(os.Args[1:]) var min string flags, min = filter(flags, "-version") if len(min) == 0 { min = "2.3.1" } if !version.AtLeast(min) { fmt.Printf("protoc version not high enough to parse this proto file\n") return } if len(args) != 1 { fmt.Printf("protoc-gen-combo expects a filename\n") os.Exit(1) } filename := args[0] var def string flags, def = filter(flags, "-default") if _, err := exec.LookPath("protoc"); err != nil { panic("cannot find protoc in PATH") } m := MixMatch{ Old: []string{ "option (gogoproto.unmarshaler_all) = false;", "option (gogoproto.marshaler_all) = false;", "option (gogoproto.unsafe_unmarshaler_all) = false;", "option (gogoproto.unsafe_marshaler_all) = false;", }, Filename: filename, Args: flags, } if def != "false" { m.Gen("./combos/neither/", []string{ "option (gogoproto.unmarshaler_all) = false;", "option (gogoproto.marshaler_all) = false;", "option (gogoproto.unsafe_unmarshaler_all) = false;", "option (gogoproto.unsafe_marshaler_all) = false;", }) } m.Gen("./combos/marshaler/", []string{ "option (gogoproto.unmarshaler_all) = false;", "option (gogoproto.marshaler_all) = true;", "option (gogoproto.unsafe_unmarshaler_all) = false;", "option (gogoproto.unsafe_marshaler_all) = false;", }) m.Gen("./combos/unmarshaler/", []string{ "option (gogoproto.unmarshaler_all) = true;", "option (gogoproto.marshaler_all) = false;", "option (gogoproto.unsafe_unmarshaler_all) = false;", "option (gogoproto.unsafe_marshaler_all) = false;", }) m.Gen("./combos/both/", []string{ "option (gogoproto.unmarshaler_all) = true;", "option (gogoproto.marshaler_all) = true;", "option (gogoproto.unsafe_unmarshaler_all) = false;", "option (gogoproto.unsafe_marshaler_all) = false;", }) } golang-gogoprotobuf-0.5/protoc-gen-gofast/000077500000000000000000000000001317075173200207035ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gofast/main.go000066400000000000000000000035401317075173200221600ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package main import ( "github.com/gogo/protobuf/vanity" "github.com/gogo/protobuf/vanity/command" ) func main() { req := command.Read() files := req.GetProtoFile() vanity.ForEachFile(files, vanity.TurnOffGogoImport) vanity.ForEachFile(files, vanity.TurnOnMarshalerAll) vanity.ForEachFile(files, vanity.TurnOnSizerAll) vanity.ForEachFile(files, vanity.TurnOnUnmarshalerAll) resp := command.Generate(req) command.Write(resp) } golang-gogoprotobuf-0.5/protoc-gen-gogo/000077500000000000000000000000001317075173200203535ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogo/Makefile000066400000000000000000000032071317075173200220150ustar00rootroot00000000000000# 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 golang-gogoprotobuf-0.5/protoc-gen-gogo/descriptor/000077500000000000000000000000001317075173200225315ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogo/descriptor/Makefile000066400000000000000000000036631317075173200242010ustar00rootroot00000000000000# 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 golang-gogoprotobuf-0.5/protoc-gen-gogo/descriptor/descriptor.go000066400000000000000000000076471317075173200252540ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. // Package descriptor provides functions for obtaining protocol buffer // descriptors for generated Go types. // // These functions cannot go in package proto because they depend on the // generated protobuf descriptor messages, which themselves depend on proto. package descriptor import ( "bytes" "compress/gzip" "fmt" "io/ioutil" "github.com/gogo/protobuf/proto" ) // extractFile extracts a FileDescriptorProto from a gzip'd buffer. func extractFile(gz []byte) (*FileDescriptorProto, error) { r, err := gzip.NewReader(bytes.NewReader(gz)) if err != nil { return nil, fmt.Errorf("failed to open gzip reader: %v", err) } defer r.Close() b, err := ioutil.ReadAll(r) if err != nil { return nil, fmt.Errorf("failed to uncompress descriptor: %v", err) } fd := new(FileDescriptorProto) if err := proto.Unmarshal(b, fd); err != nil { return nil, fmt.Errorf("malformed FileDescriptorProto: %v", err) } return fd, nil } // Message is a proto.Message with a method to return its descriptor. // // Message types generated by the protocol compiler always satisfy // the Message interface. type Message interface { proto.Message Descriptor() ([]byte, []int) } // ForMessage returns a FileDescriptorProto and a DescriptorProto from within it // describing the given message. func ForMessage(msg Message) (fd *FileDescriptorProto, md *DescriptorProto) { gz, path := msg.Descriptor() fd, err := extractFile(gz) if err != nil { panic(fmt.Sprintf("invalid FileDescriptorProto for %T: %v", msg, err)) } md = fd.MessageType[path[0]] for _, i := range path[1:] { md = md.NestedType[i] } return fd, md } // Is this field a scalar numeric type? func (field *FieldDescriptorProto) IsScalar() bool { if field.Type == nil { return false } switch *field.Type { case FieldDescriptorProto_TYPE_DOUBLE, FieldDescriptorProto_TYPE_FLOAT, FieldDescriptorProto_TYPE_INT64, FieldDescriptorProto_TYPE_UINT64, FieldDescriptorProto_TYPE_INT32, FieldDescriptorProto_TYPE_FIXED64, FieldDescriptorProto_TYPE_FIXED32, FieldDescriptorProto_TYPE_BOOL, FieldDescriptorProto_TYPE_UINT32, FieldDescriptorProto_TYPE_ENUM, FieldDescriptorProto_TYPE_SFIXED32, FieldDescriptorProto_TYPE_SFIXED64, FieldDescriptorProto_TYPE_SINT32, FieldDescriptorProto_TYPE_SINT64: return true default: return false } } golang-gogoprotobuf-0.5/protoc-gen-gogo/descriptor/descriptor.pb.go000066400000000000000000002662651317075173200256570ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: descriptor.proto /* Package descriptor is a generated protocol buffer package. It is generated from these files: descriptor.proto It has these top-level messages: FileDescriptorSet FileDescriptorProto DescriptorProto ExtensionRangeOptions FieldDescriptorProto OneofDescriptorProto EnumDescriptorProto EnumValueDescriptorProto ServiceDescriptorProto MethodDescriptorProto FileOptions MessageOptions FieldOptions OneofOptions EnumOptions EnumValueOptions ServiceOptions MethodOptions UninterpretedOption SourceCodeInfo GeneratedCodeInfo */ package descriptor import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type FieldDescriptorProto_Type int32 const ( // 0 is reserved for errors. // Order is weird for historical reasons. FieldDescriptorProto_TYPE_DOUBLE FieldDescriptorProto_Type = 1 FieldDescriptorProto_TYPE_FLOAT FieldDescriptorProto_Type = 2 // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if // negative values are likely. FieldDescriptorProto_TYPE_INT64 FieldDescriptorProto_Type = 3 FieldDescriptorProto_TYPE_UINT64 FieldDescriptorProto_Type = 4 // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if // negative values are likely. FieldDescriptorProto_TYPE_INT32 FieldDescriptorProto_Type = 5 FieldDescriptorProto_TYPE_FIXED64 FieldDescriptorProto_Type = 6 FieldDescriptorProto_TYPE_FIXED32 FieldDescriptorProto_Type = 7 FieldDescriptorProto_TYPE_BOOL FieldDescriptorProto_Type = 8 FieldDescriptorProto_TYPE_STRING FieldDescriptorProto_Type = 9 // Tag-delimited aggregate. // Group type is deprecated and not supported in proto3. However, Proto3 // implementations should still be able to parse the group wire format and // treat group fields as unknown fields. FieldDescriptorProto_TYPE_GROUP FieldDescriptorProto_Type = 10 FieldDescriptorProto_TYPE_MESSAGE FieldDescriptorProto_Type = 11 // New in version 2. FieldDescriptorProto_TYPE_BYTES FieldDescriptorProto_Type = 12 FieldDescriptorProto_TYPE_UINT32 FieldDescriptorProto_Type = 13 FieldDescriptorProto_TYPE_ENUM FieldDescriptorProto_Type = 14 FieldDescriptorProto_TYPE_SFIXED32 FieldDescriptorProto_Type = 15 FieldDescriptorProto_TYPE_SFIXED64 FieldDescriptorProto_Type = 16 FieldDescriptorProto_TYPE_SINT32 FieldDescriptorProto_Type = 17 FieldDescriptorProto_TYPE_SINT64 FieldDescriptorProto_Type = 18 ) var FieldDescriptorProto_Type_name = map[int32]string{ 1: "TYPE_DOUBLE", 2: "TYPE_FLOAT", 3: "TYPE_INT64", 4: "TYPE_UINT64", 5: "TYPE_INT32", 6: "TYPE_FIXED64", 7: "TYPE_FIXED32", 8: "TYPE_BOOL", 9: "TYPE_STRING", 10: "TYPE_GROUP", 11: "TYPE_MESSAGE", 12: "TYPE_BYTES", 13: "TYPE_UINT32", 14: "TYPE_ENUM", 15: "TYPE_SFIXED32", 16: "TYPE_SFIXED64", 17: "TYPE_SINT32", 18: "TYPE_SINT64", } var FieldDescriptorProto_Type_value = map[string]int32{ "TYPE_DOUBLE": 1, "TYPE_FLOAT": 2, "TYPE_INT64": 3, "TYPE_UINT64": 4, "TYPE_INT32": 5, "TYPE_FIXED64": 6, "TYPE_FIXED32": 7, "TYPE_BOOL": 8, "TYPE_STRING": 9, "TYPE_GROUP": 10, "TYPE_MESSAGE": 11, "TYPE_BYTES": 12, "TYPE_UINT32": 13, "TYPE_ENUM": 14, "TYPE_SFIXED32": 15, "TYPE_SFIXED64": 16, "TYPE_SINT32": 17, "TYPE_SINT64": 18, } func (x FieldDescriptorProto_Type) Enum() *FieldDescriptorProto_Type { p := new(FieldDescriptorProto_Type) *p = x return p } func (x FieldDescriptorProto_Type) String() string { return proto.EnumName(FieldDescriptorProto_Type_name, int32(x)) } func (x *FieldDescriptorProto_Type) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(FieldDescriptorProto_Type_value, data, "FieldDescriptorProto_Type") if err != nil { return err } *x = FieldDescriptorProto_Type(value) return nil } func (FieldDescriptorProto_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{4, 0} } type FieldDescriptorProto_Label int32 const ( // 0 is reserved for errors FieldDescriptorProto_LABEL_OPTIONAL FieldDescriptorProto_Label = 1 FieldDescriptorProto_LABEL_REQUIRED FieldDescriptorProto_Label = 2 FieldDescriptorProto_LABEL_REPEATED FieldDescriptorProto_Label = 3 ) var FieldDescriptorProto_Label_name = map[int32]string{ 1: "LABEL_OPTIONAL", 2: "LABEL_REQUIRED", 3: "LABEL_REPEATED", } var FieldDescriptorProto_Label_value = map[string]int32{ "LABEL_OPTIONAL": 1, "LABEL_REQUIRED": 2, "LABEL_REPEATED": 3, } func (x FieldDescriptorProto_Label) Enum() *FieldDescriptorProto_Label { p := new(FieldDescriptorProto_Label) *p = x return p } func (x FieldDescriptorProto_Label) String() string { return proto.EnumName(FieldDescriptorProto_Label_name, int32(x)) } func (x *FieldDescriptorProto_Label) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(FieldDescriptorProto_Label_value, data, "FieldDescriptorProto_Label") if err != nil { return err } *x = FieldDescriptorProto_Label(value) return nil } func (FieldDescriptorProto_Label) EnumDescriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{4, 1} } // Generated classes can be optimized for speed or code size. type FileOptions_OptimizeMode int32 const ( FileOptions_SPEED FileOptions_OptimizeMode = 1 // etc. FileOptions_CODE_SIZE FileOptions_OptimizeMode = 2 FileOptions_LITE_RUNTIME FileOptions_OptimizeMode = 3 ) var FileOptions_OptimizeMode_name = map[int32]string{ 1: "SPEED", 2: "CODE_SIZE", 3: "LITE_RUNTIME", } var FileOptions_OptimizeMode_value = map[string]int32{ "SPEED": 1, "CODE_SIZE": 2, "LITE_RUNTIME": 3, } func (x FileOptions_OptimizeMode) Enum() *FileOptions_OptimizeMode { p := new(FileOptions_OptimizeMode) *p = x return p } func (x FileOptions_OptimizeMode) String() string { return proto.EnumName(FileOptions_OptimizeMode_name, int32(x)) } func (x *FileOptions_OptimizeMode) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(FileOptions_OptimizeMode_value, data, "FileOptions_OptimizeMode") if err != nil { return err } *x = FileOptions_OptimizeMode(value) return nil } func (FileOptions_OptimizeMode) EnumDescriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{10, 0} } type FieldOptions_CType int32 const ( // Default mode. FieldOptions_STRING FieldOptions_CType = 0 FieldOptions_CORD FieldOptions_CType = 1 FieldOptions_STRING_PIECE FieldOptions_CType = 2 ) var FieldOptions_CType_name = map[int32]string{ 0: "STRING", 1: "CORD", 2: "STRING_PIECE", } var FieldOptions_CType_value = map[string]int32{ "STRING": 0, "CORD": 1, "STRING_PIECE": 2, } func (x FieldOptions_CType) Enum() *FieldOptions_CType { p := new(FieldOptions_CType) *p = x return p } func (x FieldOptions_CType) String() string { return proto.EnumName(FieldOptions_CType_name, int32(x)) } func (x *FieldOptions_CType) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(FieldOptions_CType_value, data, "FieldOptions_CType") if err != nil { return err } *x = FieldOptions_CType(value) return nil } func (FieldOptions_CType) EnumDescriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{12, 0} } type FieldOptions_JSType int32 const ( // Use the default type. FieldOptions_JS_NORMAL FieldOptions_JSType = 0 // Use JavaScript strings. FieldOptions_JS_STRING FieldOptions_JSType = 1 // Use JavaScript numbers. FieldOptions_JS_NUMBER FieldOptions_JSType = 2 ) var FieldOptions_JSType_name = map[int32]string{ 0: "JS_NORMAL", 1: "JS_STRING", 2: "JS_NUMBER", } var FieldOptions_JSType_value = map[string]int32{ "JS_NORMAL": 0, "JS_STRING": 1, "JS_NUMBER": 2, } func (x FieldOptions_JSType) Enum() *FieldOptions_JSType { p := new(FieldOptions_JSType) *p = x return p } func (x FieldOptions_JSType) String() string { return proto.EnumName(FieldOptions_JSType_name, int32(x)) } func (x *FieldOptions_JSType) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(FieldOptions_JSType_value, data, "FieldOptions_JSType") if err != nil { return err } *x = FieldOptions_JSType(value) return nil } func (FieldOptions_JSType) EnumDescriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{12, 1} } // Is this method side-effect-free (or safe in HTTP parlance), or idempotent, // or neither? HTTP based RPC implementation may choose GET verb for safe // methods, and PUT verb for idempotent methods instead of the default POST. type MethodOptions_IdempotencyLevel int32 const ( MethodOptions_IDEMPOTENCY_UNKNOWN MethodOptions_IdempotencyLevel = 0 MethodOptions_NO_SIDE_EFFECTS MethodOptions_IdempotencyLevel = 1 MethodOptions_IDEMPOTENT MethodOptions_IdempotencyLevel = 2 ) var MethodOptions_IdempotencyLevel_name = map[int32]string{ 0: "IDEMPOTENCY_UNKNOWN", 1: "NO_SIDE_EFFECTS", 2: "IDEMPOTENT", } var MethodOptions_IdempotencyLevel_value = map[string]int32{ "IDEMPOTENCY_UNKNOWN": 0, "NO_SIDE_EFFECTS": 1, "IDEMPOTENT": 2, } func (x MethodOptions_IdempotencyLevel) Enum() *MethodOptions_IdempotencyLevel { p := new(MethodOptions_IdempotencyLevel) *p = x return p } func (x MethodOptions_IdempotencyLevel) String() string { return proto.EnumName(MethodOptions_IdempotencyLevel_name, int32(x)) } func (x *MethodOptions_IdempotencyLevel) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MethodOptions_IdempotencyLevel_value, data, "MethodOptions_IdempotencyLevel") if err != nil { return err } *x = MethodOptions_IdempotencyLevel(value) return nil } func (MethodOptions_IdempotencyLevel) EnumDescriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{17, 0} } // The protocol compiler can output a FileDescriptorSet containing the .proto // files it parses. type FileDescriptorSet struct { File []*FileDescriptorProto `protobuf:"bytes,1,rep,name=file" json:"file,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *FileDescriptorSet) Reset() { *m = FileDescriptorSet{} } func (m *FileDescriptorSet) String() string { return proto.CompactTextString(m) } func (*FileDescriptorSet) ProtoMessage() {} func (*FileDescriptorSet) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{0} } func (m *FileDescriptorSet) GetFile() []*FileDescriptorProto { if m != nil { return m.File } return nil } // Describes a complete .proto file. type FileDescriptorProto struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` Package *string `protobuf:"bytes,2,opt,name=package" json:"package,omitempty"` // Names of files imported by this file. Dependency []string `protobuf:"bytes,3,rep,name=dependency" json:"dependency,omitempty"` // Indexes of the public imported files in the dependency list above. PublicDependency []int32 `protobuf:"varint,10,rep,name=public_dependency,json=publicDependency" json:"public_dependency,omitempty"` // Indexes of the weak imported files in the dependency list. // For Google-internal migration only. Do not use. WeakDependency []int32 `protobuf:"varint,11,rep,name=weak_dependency,json=weakDependency" json:"weak_dependency,omitempty"` // All top-level definitions in this file. MessageType []*DescriptorProto `protobuf:"bytes,4,rep,name=message_type,json=messageType" json:"message_type,omitempty"` EnumType []*EnumDescriptorProto `protobuf:"bytes,5,rep,name=enum_type,json=enumType" json:"enum_type,omitempty"` Service []*ServiceDescriptorProto `protobuf:"bytes,6,rep,name=service" json:"service,omitempty"` Extension []*FieldDescriptorProto `protobuf:"bytes,7,rep,name=extension" json:"extension,omitempty"` Options *FileOptions `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"` // This field contains optional information about the original source code. // You may safely remove this entire field without harming runtime // functionality of the descriptors -- the information is needed only by // development tools. SourceCodeInfo *SourceCodeInfo `protobuf:"bytes,9,opt,name=source_code_info,json=sourceCodeInfo" json:"source_code_info,omitempty"` // The syntax of the proto file. // The supported values are "proto2" and "proto3". Syntax *string `protobuf:"bytes,12,opt,name=syntax" json:"syntax,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *FileDescriptorProto) Reset() { *m = FileDescriptorProto{} } func (m *FileDescriptorProto) String() string { return proto.CompactTextString(m) } func (*FileDescriptorProto) ProtoMessage() {} func (*FileDescriptorProto) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{1} } func (m *FileDescriptorProto) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *FileDescriptorProto) GetPackage() string { if m != nil && m.Package != nil { return *m.Package } return "" } func (m *FileDescriptorProto) GetDependency() []string { if m != nil { return m.Dependency } return nil } func (m *FileDescriptorProto) GetPublicDependency() []int32 { if m != nil { return m.PublicDependency } return nil } func (m *FileDescriptorProto) GetWeakDependency() []int32 { if m != nil { return m.WeakDependency } return nil } func (m *FileDescriptorProto) GetMessageType() []*DescriptorProto { if m != nil { return m.MessageType } return nil } func (m *FileDescriptorProto) GetEnumType() []*EnumDescriptorProto { if m != nil { return m.EnumType } return nil } func (m *FileDescriptorProto) GetService() []*ServiceDescriptorProto { if m != nil { return m.Service } return nil } func (m *FileDescriptorProto) GetExtension() []*FieldDescriptorProto { if m != nil { return m.Extension } return nil } func (m *FileDescriptorProto) GetOptions() *FileOptions { if m != nil { return m.Options } return nil } func (m *FileDescriptorProto) GetSourceCodeInfo() *SourceCodeInfo { if m != nil { return m.SourceCodeInfo } return nil } func (m *FileDescriptorProto) GetSyntax() string { if m != nil && m.Syntax != nil { return *m.Syntax } return "" } // Describes a message type. type DescriptorProto struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` Field []*FieldDescriptorProto `protobuf:"bytes,2,rep,name=field" json:"field,omitempty"` Extension []*FieldDescriptorProto `protobuf:"bytes,6,rep,name=extension" json:"extension,omitempty"` NestedType []*DescriptorProto `protobuf:"bytes,3,rep,name=nested_type,json=nestedType" json:"nested_type,omitempty"` EnumType []*EnumDescriptorProto `protobuf:"bytes,4,rep,name=enum_type,json=enumType" json:"enum_type,omitempty"` ExtensionRange []*DescriptorProto_ExtensionRange `protobuf:"bytes,5,rep,name=extension_range,json=extensionRange" json:"extension_range,omitempty"` OneofDecl []*OneofDescriptorProto `protobuf:"bytes,8,rep,name=oneof_decl,json=oneofDecl" json:"oneof_decl,omitempty"` Options *MessageOptions `protobuf:"bytes,7,opt,name=options" json:"options,omitempty"` ReservedRange []*DescriptorProto_ReservedRange `protobuf:"bytes,9,rep,name=reserved_range,json=reservedRange" json:"reserved_range,omitempty"` // Reserved field names, which may not be used by fields in the same message. // A given name may only be reserved once. ReservedName []string `protobuf:"bytes,10,rep,name=reserved_name,json=reservedName" json:"reserved_name,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *DescriptorProto) Reset() { *m = DescriptorProto{} } func (m *DescriptorProto) String() string { return proto.CompactTextString(m) } func (*DescriptorProto) ProtoMessage() {} func (*DescriptorProto) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{2} } func (m *DescriptorProto) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *DescriptorProto) GetField() []*FieldDescriptorProto { if m != nil { return m.Field } return nil } func (m *DescriptorProto) GetExtension() []*FieldDescriptorProto { if m != nil { return m.Extension } return nil } func (m *DescriptorProto) GetNestedType() []*DescriptorProto { if m != nil { return m.NestedType } return nil } func (m *DescriptorProto) GetEnumType() []*EnumDescriptorProto { if m != nil { return m.EnumType } return nil } func (m *DescriptorProto) GetExtensionRange() []*DescriptorProto_ExtensionRange { if m != nil { return m.ExtensionRange } return nil } func (m *DescriptorProto) GetOneofDecl() []*OneofDescriptorProto { if m != nil { return m.OneofDecl } return nil } func (m *DescriptorProto) GetOptions() *MessageOptions { if m != nil { return m.Options } return nil } func (m *DescriptorProto) GetReservedRange() []*DescriptorProto_ReservedRange { if m != nil { return m.ReservedRange } return nil } func (m *DescriptorProto) GetReservedName() []string { if m != nil { return m.ReservedName } return nil } type DescriptorProto_ExtensionRange struct { Start *int32 `protobuf:"varint,1,opt,name=start" json:"start,omitempty"` End *int32 `protobuf:"varint,2,opt,name=end" json:"end,omitempty"` Options *ExtensionRangeOptions `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *DescriptorProto_ExtensionRange) Reset() { *m = DescriptorProto_ExtensionRange{} } func (m *DescriptorProto_ExtensionRange) String() string { return proto.CompactTextString(m) } func (*DescriptorProto_ExtensionRange) ProtoMessage() {} func (*DescriptorProto_ExtensionRange) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{2, 0} } func (m *DescriptorProto_ExtensionRange) GetStart() int32 { if m != nil && m.Start != nil { return *m.Start } return 0 } func (m *DescriptorProto_ExtensionRange) GetEnd() int32 { if m != nil && m.End != nil { return *m.End } return 0 } func (m *DescriptorProto_ExtensionRange) GetOptions() *ExtensionRangeOptions { if m != nil { return m.Options } return nil } // Range of reserved tag numbers. Reserved tag numbers may not be used by // fields or extension ranges in the same message. Reserved ranges may // not overlap. type DescriptorProto_ReservedRange struct { Start *int32 `protobuf:"varint,1,opt,name=start" json:"start,omitempty"` End *int32 `protobuf:"varint,2,opt,name=end" json:"end,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *DescriptorProto_ReservedRange) Reset() { *m = DescriptorProto_ReservedRange{} } func (m *DescriptorProto_ReservedRange) String() string { return proto.CompactTextString(m) } func (*DescriptorProto_ReservedRange) ProtoMessage() {} func (*DescriptorProto_ReservedRange) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{2, 1} } func (m *DescriptorProto_ReservedRange) GetStart() int32 { if m != nil && m.Start != nil { return *m.Start } return 0 } func (m *DescriptorProto_ReservedRange) GetEnd() int32 { if m != nil && m.End != nil { return *m.End } return 0 } type ExtensionRangeOptions struct { // The parser stores options it doesn't recognize here. See above. UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *ExtensionRangeOptions) Reset() { *m = ExtensionRangeOptions{} } func (m *ExtensionRangeOptions) String() string { return proto.CompactTextString(m) } func (*ExtensionRangeOptions) ProtoMessage() {} func (*ExtensionRangeOptions) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{3} } var extRange_ExtensionRangeOptions = []proto.ExtensionRange{ {Start: 1000, End: 536870911}, } func (*ExtensionRangeOptions) ExtensionRangeArray() []proto.ExtensionRange { return extRange_ExtensionRangeOptions } func (m *ExtensionRangeOptions) GetUninterpretedOption() []*UninterpretedOption { if m != nil { return m.UninterpretedOption } return nil } // Describes a field within a message. type FieldDescriptorProto struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` Number *int32 `protobuf:"varint,3,opt,name=number" json:"number,omitempty"` Label *FieldDescriptorProto_Label `protobuf:"varint,4,opt,name=label,enum=google.protobuf.FieldDescriptorProto_Label" json:"label,omitempty"` // If type_name is set, this need not be set. If both this and type_name // are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP. Type *FieldDescriptorProto_Type `protobuf:"varint,5,opt,name=type,enum=google.protobuf.FieldDescriptorProto_Type" json:"type,omitempty"` // For message and enum types, this is the name of the type. If the name // starts with a '.', it is fully-qualified. Otherwise, C++-like scoping // rules are used to find the type (i.e. first the nested types within this // message are searched, then within the parent, on up to the root // namespace). TypeName *string `protobuf:"bytes,6,opt,name=type_name,json=typeName" json:"type_name,omitempty"` // For extensions, this is the name of the type being extended. It is // resolved in the same manner as type_name. Extendee *string `protobuf:"bytes,2,opt,name=extendee" json:"extendee,omitempty"` // For numeric types, contains the original text representation of the value. // For booleans, "true" or "false". // For strings, contains the default text contents (not escaped in any way). // For bytes, contains the C escaped value. All bytes >= 128 are escaped. // TODO(kenton): Base-64 encode? DefaultValue *string `protobuf:"bytes,7,opt,name=default_value,json=defaultValue" json:"default_value,omitempty"` // If set, gives the index of a oneof in the containing type's oneof_decl // list. This field is a member of that oneof. OneofIndex *int32 `protobuf:"varint,9,opt,name=oneof_index,json=oneofIndex" json:"oneof_index,omitempty"` // JSON name of this field. The value is set by protocol compiler. If the // user has set a "json_name" option on this field, that option's value // will be used. Otherwise, it's deduced from the field's name by converting // it to camelCase. JsonName *string `protobuf:"bytes,10,opt,name=json_name,json=jsonName" json:"json_name,omitempty"` Options *FieldOptions `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *FieldDescriptorProto) Reset() { *m = FieldDescriptorProto{} } func (m *FieldDescriptorProto) String() string { return proto.CompactTextString(m) } func (*FieldDescriptorProto) ProtoMessage() {} func (*FieldDescriptorProto) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{4} } func (m *FieldDescriptorProto) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *FieldDescriptorProto) GetNumber() int32 { if m != nil && m.Number != nil { return *m.Number } return 0 } func (m *FieldDescriptorProto) GetLabel() FieldDescriptorProto_Label { if m != nil && m.Label != nil { return *m.Label } return FieldDescriptorProto_LABEL_OPTIONAL } func (m *FieldDescriptorProto) GetType() FieldDescriptorProto_Type { if m != nil && m.Type != nil { return *m.Type } return FieldDescriptorProto_TYPE_DOUBLE } func (m *FieldDescriptorProto) GetTypeName() string { if m != nil && m.TypeName != nil { return *m.TypeName } return "" } func (m *FieldDescriptorProto) GetExtendee() string { if m != nil && m.Extendee != nil { return *m.Extendee } return "" } func (m *FieldDescriptorProto) GetDefaultValue() string { if m != nil && m.DefaultValue != nil { return *m.DefaultValue } return "" } func (m *FieldDescriptorProto) GetOneofIndex() int32 { if m != nil && m.OneofIndex != nil { return *m.OneofIndex } return 0 } func (m *FieldDescriptorProto) GetJsonName() string { if m != nil && m.JsonName != nil { return *m.JsonName } return "" } func (m *FieldDescriptorProto) GetOptions() *FieldOptions { if m != nil { return m.Options } return nil } // Describes a oneof. type OneofDescriptorProto struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` Options *OneofOptions `protobuf:"bytes,2,opt,name=options" json:"options,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OneofDescriptorProto) Reset() { *m = OneofDescriptorProto{} } func (m *OneofDescriptorProto) String() string { return proto.CompactTextString(m) } func (*OneofDescriptorProto) ProtoMessage() {} func (*OneofDescriptorProto) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{5} } func (m *OneofDescriptorProto) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *OneofDescriptorProto) GetOptions() *OneofOptions { if m != nil { return m.Options } return nil } // Describes an enum type. type EnumDescriptorProto struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` Value []*EnumValueDescriptorProto `protobuf:"bytes,2,rep,name=value" json:"value,omitempty"` Options *EnumOptions `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *EnumDescriptorProto) Reset() { *m = EnumDescriptorProto{} } func (m *EnumDescriptorProto) String() string { return proto.CompactTextString(m) } func (*EnumDescriptorProto) ProtoMessage() {} func (*EnumDescriptorProto) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{6} } func (m *EnumDescriptorProto) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *EnumDescriptorProto) GetValue() []*EnumValueDescriptorProto { if m != nil { return m.Value } return nil } func (m *EnumDescriptorProto) GetOptions() *EnumOptions { if m != nil { return m.Options } return nil } // Describes a value within an enum. type EnumValueDescriptorProto struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` Number *int32 `protobuf:"varint,2,opt,name=number" json:"number,omitempty"` Options *EnumValueOptions `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *EnumValueDescriptorProto) Reset() { *m = EnumValueDescriptorProto{} } func (m *EnumValueDescriptorProto) String() string { return proto.CompactTextString(m) } func (*EnumValueDescriptorProto) ProtoMessage() {} func (*EnumValueDescriptorProto) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{7} } func (m *EnumValueDescriptorProto) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *EnumValueDescriptorProto) GetNumber() int32 { if m != nil && m.Number != nil { return *m.Number } return 0 } func (m *EnumValueDescriptorProto) GetOptions() *EnumValueOptions { if m != nil { return m.Options } return nil } // Describes a service. type ServiceDescriptorProto struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` Method []*MethodDescriptorProto `protobuf:"bytes,2,rep,name=method" json:"method,omitempty"` Options *ServiceOptions `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *ServiceDescriptorProto) Reset() { *m = ServiceDescriptorProto{} } func (m *ServiceDescriptorProto) String() string { return proto.CompactTextString(m) } func (*ServiceDescriptorProto) ProtoMessage() {} func (*ServiceDescriptorProto) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{8} } func (m *ServiceDescriptorProto) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *ServiceDescriptorProto) GetMethod() []*MethodDescriptorProto { if m != nil { return m.Method } return nil } func (m *ServiceDescriptorProto) GetOptions() *ServiceOptions { if m != nil { return m.Options } return nil } // Describes a method of a service. type MethodDescriptorProto struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` // Input and output type names. These are resolved in the same way as // FieldDescriptorProto.type_name, but must refer to a message type. InputType *string `protobuf:"bytes,2,opt,name=input_type,json=inputType" json:"input_type,omitempty"` OutputType *string `protobuf:"bytes,3,opt,name=output_type,json=outputType" json:"output_type,omitempty"` Options *MethodOptions `protobuf:"bytes,4,opt,name=options" json:"options,omitempty"` // Identifies if client streams multiple client messages ClientStreaming *bool `protobuf:"varint,5,opt,name=client_streaming,json=clientStreaming,def=0" json:"client_streaming,omitempty"` // Identifies if server streams multiple server messages ServerStreaming *bool `protobuf:"varint,6,opt,name=server_streaming,json=serverStreaming,def=0" json:"server_streaming,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MethodDescriptorProto) Reset() { *m = MethodDescriptorProto{} } func (m *MethodDescriptorProto) String() string { return proto.CompactTextString(m) } func (*MethodDescriptorProto) ProtoMessage() {} func (*MethodDescriptorProto) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{9} } const Default_MethodDescriptorProto_ClientStreaming bool = false const Default_MethodDescriptorProto_ServerStreaming bool = false func (m *MethodDescriptorProto) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *MethodDescriptorProto) GetInputType() string { if m != nil && m.InputType != nil { return *m.InputType } return "" } func (m *MethodDescriptorProto) GetOutputType() string { if m != nil && m.OutputType != nil { return *m.OutputType } return "" } func (m *MethodDescriptorProto) GetOptions() *MethodOptions { if m != nil { return m.Options } return nil } func (m *MethodDescriptorProto) GetClientStreaming() bool { if m != nil && m.ClientStreaming != nil { return *m.ClientStreaming } return Default_MethodDescriptorProto_ClientStreaming } func (m *MethodDescriptorProto) GetServerStreaming() bool { if m != nil && m.ServerStreaming != nil { return *m.ServerStreaming } return Default_MethodDescriptorProto_ServerStreaming } type FileOptions struct { // Sets the Java package where classes generated from this .proto will be // placed. By default, the proto package is used, but this is often // inappropriate because proto packages do not normally start with backwards // domain names. JavaPackage *string `protobuf:"bytes,1,opt,name=java_package,json=javaPackage" json:"java_package,omitempty"` // If set, all the classes from the .proto file are wrapped in a single // outer class with the given name. This applies to both Proto1 // (equivalent to the old "--one_java_file" option) and Proto2 (where // a .proto always translates to a single class, but you may want to // explicitly choose the class name). JavaOuterClassname *string `protobuf:"bytes,8,opt,name=java_outer_classname,json=javaOuterClassname" json:"java_outer_classname,omitempty"` // If set true, then the Java code generator will generate a separate .java // file for each top-level message, enum, and service defined in the .proto // file. Thus, these types will *not* be nested inside the outer class // named by java_outer_classname. However, the outer class will still be // generated to contain the file's getDescriptor() method as well as any // top-level extensions defined in the file. JavaMultipleFiles *bool `protobuf:"varint,10,opt,name=java_multiple_files,json=javaMultipleFiles,def=0" json:"java_multiple_files,omitempty"` // This option does nothing. JavaGenerateEqualsAndHash *bool `protobuf:"varint,20,opt,name=java_generate_equals_and_hash,json=javaGenerateEqualsAndHash" json:"java_generate_equals_and_hash,omitempty"` // If set true, then the Java2 code generator will generate code that // throws an exception whenever an attempt is made to assign a non-UTF-8 // byte sequence to a string field. // Message reflection will do the same. // However, an extension field still accepts non-UTF-8 byte sequences. // This option has no effect on when used with the lite runtime. JavaStringCheckUtf8 *bool `protobuf:"varint,27,opt,name=java_string_check_utf8,json=javaStringCheckUtf8,def=0" json:"java_string_check_utf8,omitempty"` OptimizeFor *FileOptions_OptimizeMode `protobuf:"varint,9,opt,name=optimize_for,json=optimizeFor,enum=google.protobuf.FileOptions_OptimizeMode,def=1" json:"optimize_for,omitempty"` // Sets the Go package where structs generated from this .proto will be // placed. If omitted, the Go package will be derived from the following: // - The basename of the package import path, if provided. // - Otherwise, the package statement in the .proto file, if present. // - Otherwise, the basename of the .proto file, without extension. GoPackage *string `protobuf:"bytes,11,opt,name=go_package,json=goPackage" json:"go_package,omitempty"` // Should generic services be generated in each language? "Generic" services // are not specific to any particular RPC system. They are generated by the // main code generators in each language (without additional plugins). // Generic services were the only kind of service generation supported by // early versions of google.protobuf. // // Generic services are now considered deprecated in favor of using plugins // that generate code specific to your particular RPC system. Therefore, // these default to false. Old code which depends on generic services should // explicitly set them to true. CcGenericServices *bool `protobuf:"varint,16,opt,name=cc_generic_services,json=ccGenericServices,def=0" json:"cc_generic_services,omitempty"` JavaGenericServices *bool `protobuf:"varint,17,opt,name=java_generic_services,json=javaGenericServices,def=0" json:"java_generic_services,omitempty"` PyGenericServices *bool `protobuf:"varint,18,opt,name=py_generic_services,json=pyGenericServices,def=0" json:"py_generic_services,omitempty"` PhpGenericServices *bool `protobuf:"varint,19,opt,name=php_generic_services,json=phpGenericServices,def=0" json:"php_generic_services,omitempty"` // Is this file deprecated? // Depending on the target platform, this can emit Deprecated annotations // for everything in the file, or it will be completely ignored; in the very // least, this is a formalization for deprecating files. Deprecated *bool `protobuf:"varint,23,opt,name=deprecated,def=0" json:"deprecated,omitempty"` // Enables the use of arenas for the proto messages in this file. This applies // only to generated classes for C++. CcEnableArenas *bool `protobuf:"varint,31,opt,name=cc_enable_arenas,json=ccEnableArenas,def=0" json:"cc_enable_arenas,omitempty"` // Sets the objective c class prefix which is prepended to all objective c // generated classes from this .proto. There is no default. ObjcClassPrefix *string `protobuf:"bytes,36,opt,name=objc_class_prefix,json=objcClassPrefix" json:"objc_class_prefix,omitempty"` // Namespace for generated classes; defaults to the package. CsharpNamespace *string `protobuf:"bytes,37,opt,name=csharp_namespace,json=csharpNamespace" json:"csharp_namespace,omitempty"` // By default Swift generators will take the proto package and CamelCase it // replacing '.' with underscore and use that to prefix the types/symbols // defined. When this options is provided, they will use this value instead // to prefix the types/symbols defined. SwiftPrefix *string `protobuf:"bytes,39,opt,name=swift_prefix,json=swiftPrefix" json:"swift_prefix,omitempty"` // Sets the php class prefix which is prepended to all php generated classes // from this .proto. Default is empty. PhpClassPrefix *string `protobuf:"bytes,40,opt,name=php_class_prefix,json=phpClassPrefix" json:"php_class_prefix,omitempty"` // Use this option to change the namespace of php generated classes. Default // is empty. When this option is empty, the package name will be used for // determining the namespace. PhpNamespace *string `protobuf:"bytes,41,opt,name=php_namespace,json=phpNamespace" json:"php_namespace,omitempty"` // The parser stores options it doesn't recognize here. See above. UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *FileOptions) Reset() { *m = FileOptions{} } func (m *FileOptions) String() string { return proto.CompactTextString(m) } func (*FileOptions) ProtoMessage() {} func (*FileOptions) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{10} } var extRange_FileOptions = []proto.ExtensionRange{ {Start: 1000, End: 536870911}, } func (*FileOptions) ExtensionRangeArray() []proto.ExtensionRange { return extRange_FileOptions } const Default_FileOptions_JavaMultipleFiles bool = false const Default_FileOptions_JavaStringCheckUtf8 bool = false const Default_FileOptions_OptimizeFor FileOptions_OptimizeMode = FileOptions_SPEED const Default_FileOptions_CcGenericServices bool = false const Default_FileOptions_JavaGenericServices bool = false const Default_FileOptions_PyGenericServices bool = false const Default_FileOptions_PhpGenericServices bool = false const Default_FileOptions_Deprecated bool = false const Default_FileOptions_CcEnableArenas bool = false func (m *FileOptions) GetJavaPackage() string { if m != nil && m.JavaPackage != nil { return *m.JavaPackage } return "" } func (m *FileOptions) GetJavaOuterClassname() string { if m != nil && m.JavaOuterClassname != nil { return *m.JavaOuterClassname } return "" } func (m *FileOptions) GetJavaMultipleFiles() bool { if m != nil && m.JavaMultipleFiles != nil { return *m.JavaMultipleFiles } return Default_FileOptions_JavaMultipleFiles } func (m *FileOptions) GetJavaGenerateEqualsAndHash() bool { if m != nil && m.JavaGenerateEqualsAndHash != nil { return *m.JavaGenerateEqualsAndHash } return false } func (m *FileOptions) GetJavaStringCheckUtf8() bool { if m != nil && m.JavaStringCheckUtf8 != nil { return *m.JavaStringCheckUtf8 } return Default_FileOptions_JavaStringCheckUtf8 } func (m *FileOptions) GetOptimizeFor() FileOptions_OptimizeMode { if m != nil && m.OptimizeFor != nil { return *m.OptimizeFor } return Default_FileOptions_OptimizeFor } func (m *FileOptions) GetGoPackage() string { if m != nil && m.GoPackage != nil { return *m.GoPackage } return "" } func (m *FileOptions) GetCcGenericServices() bool { if m != nil && m.CcGenericServices != nil { return *m.CcGenericServices } return Default_FileOptions_CcGenericServices } func (m *FileOptions) GetJavaGenericServices() bool { if m != nil && m.JavaGenericServices != nil { return *m.JavaGenericServices } return Default_FileOptions_JavaGenericServices } func (m *FileOptions) GetPyGenericServices() bool { if m != nil && m.PyGenericServices != nil { return *m.PyGenericServices } return Default_FileOptions_PyGenericServices } func (m *FileOptions) GetPhpGenericServices() bool { if m != nil && m.PhpGenericServices != nil { return *m.PhpGenericServices } return Default_FileOptions_PhpGenericServices } func (m *FileOptions) GetDeprecated() bool { if m != nil && m.Deprecated != nil { return *m.Deprecated } return Default_FileOptions_Deprecated } func (m *FileOptions) GetCcEnableArenas() bool { if m != nil && m.CcEnableArenas != nil { return *m.CcEnableArenas } return Default_FileOptions_CcEnableArenas } func (m *FileOptions) GetObjcClassPrefix() string { if m != nil && m.ObjcClassPrefix != nil { return *m.ObjcClassPrefix } return "" } func (m *FileOptions) GetCsharpNamespace() string { if m != nil && m.CsharpNamespace != nil { return *m.CsharpNamespace } return "" } func (m *FileOptions) GetSwiftPrefix() string { if m != nil && m.SwiftPrefix != nil { return *m.SwiftPrefix } return "" } func (m *FileOptions) GetPhpClassPrefix() string { if m != nil && m.PhpClassPrefix != nil { return *m.PhpClassPrefix } return "" } func (m *FileOptions) GetPhpNamespace() string { if m != nil && m.PhpNamespace != nil { return *m.PhpNamespace } return "" } func (m *FileOptions) GetUninterpretedOption() []*UninterpretedOption { if m != nil { return m.UninterpretedOption } return nil } type MessageOptions struct { // Set true to use the old proto1 MessageSet wire format for extensions. // This is provided for backwards-compatibility with the MessageSet wire // format. You should not use this for any other reason: It's less // efficient, has fewer features, and is more complicated. // // The message must be defined exactly as follows: // message Foo { // option message_set_wire_format = true; // extensions 4 to max; // } // Note that the message cannot have any defined fields; MessageSets only // have extensions. // // All extensions of your type must be singular messages; e.g. they cannot // be int32s, enums, or repeated messages. // // Because this is an option, the above two restrictions are not enforced by // the protocol compiler. MessageSetWireFormat *bool `protobuf:"varint,1,opt,name=message_set_wire_format,json=messageSetWireFormat,def=0" json:"message_set_wire_format,omitempty"` // Disables the generation of the standard "descriptor()" accessor, which can // conflict with a field of the same name. This is meant to make migration // from proto1 easier; new code should avoid fields named "descriptor". NoStandardDescriptorAccessor *bool `protobuf:"varint,2,opt,name=no_standard_descriptor_accessor,json=noStandardDescriptorAccessor,def=0" json:"no_standard_descriptor_accessor,omitempty"` // Is this message deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the message, or it will be completely ignored; in the very least, // this is a formalization for deprecating messages. Deprecated *bool `protobuf:"varint,3,opt,name=deprecated,def=0" json:"deprecated,omitempty"` // Whether the message is an automatically generated map entry type for the // maps field. // // For maps fields: // map map_field = 1; // The parsed descriptor looks like: // message MapFieldEntry { // option map_entry = true; // optional KeyType key = 1; // optional ValueType value = 2; // } // repeated MapFieldEntry map_field = 1; // // Implementations may choose not to generate the map_entry=true message, but // use a native map in the target language to hold the keys and values. // The reflection APIs in such implementions still need to work as // if the field is a repeated message field. // // NOTE: Do not set the option in .proto files. Always use the maps syntax // instead. The option should only be implicitly set by the proto compiler // parser. MapEntry *bool `protobuf:"varint,7,opt,name=map_entry,json=mapEntry" json:"map_entry,omitempty"` // The parser stores options it doesn't recognize here. See above. UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *MessageOptions) Reset() { *m = MessageOptions{} } func (m *MessageOptions) String() string { return proto.CompactTextString(m) } func (*MessageOptions) ProtoMessage() {} func (*MessageOptions) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{11} } var extRange_MessageOptions = []proto.ExtensionRange{ {Start: 1000, End: 536870911}, } func (*MessageOptions) ExtensionRangeArray() []proto.ExtensionRange { return extRange_MessageOptions } const Default_MessageOptions_MessageSetWireFormat bool = false const Default_MessageOptions_NoStandardDescriptorAccessor bool = false const Default_MessageOptions_Deprecated bool = false func (m *MessageOptions) GetMessageSetWireFormat() bool { if m != nil && m.MessageSetWireFormat != nil { return *m.MessageSetWireFormat } return Default_MessageOptions_MessageSetWireFormat } func (m *MessageOptions) GetNoStandardDescriptorAccessor() bool { if m != nil && m.NoStandardDescriptorAccessor != nil { return *m.NoStandardDescriptorAccessor } return Default_MessageOptions_NoStandardDescriptorAccessor } func (m *MessageOptions) GetDeprecated() bool { if m != nil && m.Deprecated != nil { return *m.Deprecated } return Default_MessageOptions_Deprecated } func (m *MessageOptions) GetMapEntry() bool { if m != nil && m.MapEntry != nil { return *m.MapEntry } return false } func (m *MessageOptions) GetUninterpretedOption() []*UninterpretedOption { if m != nil { return m.UninterpretedOption } return nil } type FieldOptions struct { // The ctype option instructs the C++ code generator to use a different // representation of the field than it normally would. See the specific // options below. This option is not yet implemented in the open source // release -- sorry, we'll try to include it in a future version! Ctype *FieldOptions_CType `protobuf:"varint,1,opt,name=ctype,enum=google.protobuf.FieldOptions_CType,def=0" json:"ctype,omitempty"` // The packed option can be enabled for repeated primitive fields to enable // a more efficient representation on the wire. Rather than repeatedly // writing the tag and type for each element, the entire array is encoded as // a single length-delimited blob. In proto3, only explicit setting it to // false will avoid using packed encoding. Packed *bool `protobuf:"varint,2,opt,name=packed" json:"packed,omitempty"` // The jstype option determines the JavaScript type used for values of the // field. The option is permitted only for 64 bit integral and fixed types // (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING // is represented as JavaScript string, which avoids loss of precision that // can happen when a large value is converted to a floating point JavaScript. // Specifying JS_NUMBER for the jstype causes the generated JavaScript code to // use the JavaScript "number" type. The behavior of the default option // JS_NORMAL is implementation dependent. // // This option is an enum to permit additional types to be added, e.g. // goog.math.Integer. Jstype *FieldOptions_JSType `protobuf:"varint,6,opt,name=jstype,enum=google.protobuf.FieldOptions_JSType,def=0" json:"jstype,omitempty"` // Should this field be parsed lazily? Lazy applies only to message-type // fields. It means that when the outer message is initially parsed, the // inner message's contents will not be parsed but instead stored in encoded // form. The inner message will actually be parsed when it is first accessed. // // This is only a hint. Implementations are free to choose whether to use // eager or lazy parsing regardless of the value of this option. However, // setting this option true suggests that the protocol author believes that // using lazy parsing on this field is worth the additional bookkeeping // overhead typically needed to implement it. // // This option does not affect the public interface of any generated code; // all method signatures remain the same. Furthermore, thread-safety of the // interface is not affected by this option; const methods remain safe to // call from multiple threads concurrently, while non-const methods continue // to require exclusive access. // // // Note that implementations may choose not to check required fields within // a lazy sub-message. That is, calling IsInitialized() on the outer message // may return true even if the inner message has missing required fields. // This is necessary because otherwise the inner message would have to be // parsed in order to perform the check, defeating the purpose of lazy // parsing. An implementation which chooses not to check required fields // must be consistent about it. That is, for any particular sub-message, the // implementation must either *always* check its required fields, or *never* // check its required fields, regardless of whether or not the message has // been parsed. Lazy *bool `protobuf:"varint,5,opt,name=lazy,def=0" json:"lazy,omitempty"` // Is this field deprecated? // Depending on the target platform, this can emit Deprecated annotations // for accessors, or it will be completely ignored; in the very least, this // is a formalization for deprecating fields. Deprecated *bool `protobuf:"varint,3,opt,name=deprecated,def=0" json:"deprecated,omitempty"` // For Google-internal migration only. Do not use. Weak *bool `protobuf:"varint,10,opt,name=weak,def=0" json:"weak,omitempty"` // The parser stores options it doesn't recognize here. See above. UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *FieldOptions) Reset() { *m = FieldOptions{} } func (m *FieldOptions) String() string { return proto.CompactTextString(m) } func (*FieldOptions) ProtoMessage() {} func (*FieldOptions) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{12} } var extRange_FieldOptions = []proto.ExtensionRange{ {Start: 1000, End: 536870911}, } func (*FieldOptions) ExtensionRangeArray() []proto.ExtensionRange { return extRange_FieldOptions } const Default_FieldOptions_Ctype FieldOptions_CType = FieldOptions_STRING const Default_FieldOptions_Jstype FieldOptions_JSType = FieldOptions_JS_NORMAL const Default_FieldOptions_Lazy bool = false const Default_FieldOptions_Deprecated bool = false const Default_FieldOptions_Weak bool = false func (m *FieldOptions) GetCtype() FieldOptions_CType { if m != nil && m.Ctype != nil { return *m.Ctype } return Default_FieldOptions_Ctype } func (m *FieldOptions) GetPacked() bool { if m != nil && m.Packed != nil { return *m.Packed } return false } func (m *FieldOptions) GetJstype() FieldOptions_JSType { if m != nil && m.Jstype != nil { return *m.Jstype } return Default_FieldOptions_Jstype } func (m *FieldOptions) GetLazy() bool { if m != nil && m.Lazy != nil { return *m.Lazy } return Default_FieldOptions_Lazy } func (m *FieldOptions) GetDeprecated() bool { if m != nil && m.Deprecated != nil { return *m.Deprecated } return Default_FieldOptions_Deprecated } func (m *FieldOptions) GetWeak() bool { if m != nil && m.Weak != nil { return *m.Weak } return Default_FieldOptions_Weak } func (m *FieldOptions) GetUninterpretedOption() []*UninterpretedOption { if m != nil { return m.UninterpretedOption } return nil } type OneofOptions struct { // The parser stores options it doesn't recognize here. See above. UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *OneofOptions) Reset() { *m = OneofOptions{} } func (m *OneofOptions) String() string { return proto.CompactTextString(m) } func (*OneofOptions) ProtoMessage() {} func (*OneofOptions) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{13} } var extRange_OneofOptions = []proto.ExtensionRange{ {Start: 1000, End: 536870911}, } func (*OneofOptions) ExtensionRangeArray() []proto.ExtensionRange { return extRange_OneofOptions } func (m *OneofOptions) GetUninterpretedOption() []*UninterpretedOption { if m != nil { return m.UninterpretedOption } return nil } type EnumOptions struct { // Set this option to true to allow mapping different tag names to the same // value. AllowAlias *bool `protobuf:"varint,2,opt,name=allow_alias,json=allowAlias" json:"allow_alias,omitempty"` // Is this enum deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the enum, or it will be completely ignored; in the very least, this // is a formalization for deprecating enums. Deprecated *bool `protobuf:"varint,3,opt,name=deprecated,def=0" json:"deprecated,omitempty"` // The parser stores options it doesn't recognize here. See above. UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *EnumOptions) Reset() { *m = EnumOptions{} } func (m *EnumOptions) String() string { return proto.CompactTextString(m) } func (*EnumOptions) ProtoMessage() {} func (*EnumOptions) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{14} } var extRange_EnumOptions = []proto.ExtensionRange{ {Start: 1000, End: 536870911}, } func (*EnumOptions) ExtensionRangeArray() []proto.ExtensionRange { return extRange_EnumOptions } const Default_EnumOptions_Deprecated bool = false func (m *EnumOptions) GetAllowAlias() bool { if m != nil && m.AllowAlias != nil { return *m.AllowAlias } return false } func (m *EnumOptions) GetDeprecated() bool { if m != nil && m.Deprecated != nil { return *m.Deprecated } return Default_EnumOptions_Deprecated } func (m *EnumOptions) GetUninterpretedOption() []*UninterpretedOption { if m != nil { return m.UninterpretedOption } return nil } type EnumValueOptions struct { // Is this enum value deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the enum value, or it will be completely ignored; in the very least, // this is a formalization for deprecating enum values. Deprecated *bool `protobuf:"varint,1,opt,name=deprecated,def=0" json:"deprecated,omitempty"` // The parser stores options it doesn't recognize here. See above. UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *EnumValueOptions) Reset() { *m = EnumValueOptions{} } func (m *EnumValueOptions) String() string { return proto.CompactTextString(m) } func (*EnumValueOptions) ProtoMessage() {} func (*EnumValueOptions) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{15} } var extRange_EnumValueOptions = []proto.ExtensionRange{ {Start: 1000, End: 536870911}, } func (*EnumValueOptions) ExtensionRangeArray() []proto.ExtensionRange { return extRange_EnumValueOptions } const Default_EnumValueOptions_Deprecated bool = false func (m *EnumValueOptions) GetDeprecated() bool { if m != nil && m.Deprecated != nil { return *m.Deprecated } return Default_EnumValueOptions_Deprecated } func (m *EnumValueOptions) GetUninterpretedOption() []*UninterpretedOption { if m != nil { return m.UninterpretedOption } return nil } type ServiceOptions struct { // Is this service deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the service, or it will be completely ignored; in the very least, // this is a formalization for deprecating services. Deprecated *bool `protobuf:"varint,33,opt,name=deprecated,def=0" json:"deprecated,omitempty"` // The parser stores options it doesn't recognize here. See above. UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *ServiceOptions) Reset() { *m = ServiceOptions{} } func (m *ServiceOptions) String() string { return proto.CompactTextString(m) } func (*ServiceOptions) ProtoMessage() {} func (*ServiceOptions) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{16} } var extRange_ServiceOptions = []proto.ExtensionRange{ {Start: 1000, End: 536870911}, } func (*ServiceOptions) ExtensionRangeArray() []proto.ExtensionRange { return extRange_ServiceOptions } const Default_ServiceOptions_Deprecated bool = false func (m *ServiceOptions) GetDeprecated() bool { if m != nil && m.Deprecated != nil { return *m.Deprecated } return Default_ServiceOptions_Deprecated } func (m *ServiceOptions) GetUninterpretedOption() []*UninterpretedOption { if m != nil { return m.UninterpretedOption } return nil } type MethodOptions struct { // Is this method deprecated? // Depending on the target platform, this can emit Deprecated annotations // for the method, or it will be completely ignored; in the very least, // this is a formalization for deprecating methods. Deprecated *bool `protobuf:"varint,33,opt,name=deprecated,def=0" json:"deprecated,omitempty"` IdempotencyLevel *MethodOptions_IdempotencyLevel `protobuf:"varint,34,opt,name=idempotency_level,json=idempotencyLevel,enum=google.protobuf.MethodOptions_IdempotencyLevel,def=0" json:"idempotency_level,omitempty"` // The parser stores options it doesn't recognize here. See above. UninterpretedOption []*UninterpretedOption `protobuf:"bytes,999,rep,name=uninterpreted_option,json=uninterpretedOption" json:"uninterpreted_option,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *MethodOptions) Reset() { *m = MethodOptions{} } func (m *MethodOptions) String() string { return proto.CompactTextString(m) } func (*MethodOptions) ProtoMessage() {} func (*MethodOptions) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{17} } var extRange_MethodOptions = []proto.ExtensionRange{ {Start: 1000, End: 536870911}, } func (*MethodOptions) ExtensionRangeArray() []proto.ExtensionRange { return extRange_MethodOptions } const Default_MethodOptions_Deprecated bool = false const Default_MethodOptions_IdempotencyLevel MethodOptions_IdempotencyLevel = MethodOptions_IDEMPOTENCY_UNKNOWN func (m *MethodOptions) GetDeprecated() bool { if m != nil && m.Deprecated != nil { return *m.Deprecated } return Default_MethodOptions_Deprecated } func (m *MethodOptions) GetIdempotencyLevel() MethodOptions_IdempotencyLevel { if m != nil && m.IdempotencyLevel != nil { return *m.IdempotencyLevel } return Default_MethodOptions_IdempotencyLevel } func (m *MethodOptions) GetUninterpretedOption() []*UninterpretedOption { if m != nil { return m.UninterpretedOption } return nil } // A message representing a option the parser does not recognize. This only // appears in options protos created by the compiler::Parser class. // DescriptorPool resolves these when building Descriptor objects. Therefore, // options protos in descriptor objects (e.g. returned by Descriptor::options(), // or produced by Descriptor::CopyTo()) will never have UninterpretedOptions // in them. type UninterpretedOption struct { Name []*UninterpretedOption_NamePart `protobuf:"bytes,2,rep,name=name" json:"name,omitempty"` // The value of the uninterpreted option, in whatever type the tokenizer // identified it as during parsing. Exactly one of these should be set. IdentifierValue *string `protobuf:"bytes,3,opt,name=identifier_value,json=identifierValue" json:"identifier_value,omitempty"` PositiveIntValue *uint64 `protobuf:"varint,4,opt,name=positive_int_value,json=positiveIntValue" json:"positive_int_value,omitempty"` NegativeIntValue *int64 `protobuf:"varint,5,opt,name=negative_int_value,json=negativeIntValue" json:"negative_int_value,omitempty"` DoubleValue *float64 `protobuf:"fixed64,6,opt,name=double_value,json=doubleValue" json:"double_value,omitempty"` StringValue []byte `protobuf:"bytes,7,opt,name=string_value,json=stringValue" json:"string_value,omitempty"` AggregateValue *string `protobuf:"bytes,8,opt,name=aggregate_value,json=aggregateValue" json:"aggregate_value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UninterpretedOption) Reset() { *m = UninterpretedOption{} } func (m *UninterpretedOption) String() string { return proto.CompactTextString(m) } func (*UninterpretedOption) ProtoMessage() {} func (*UninterpretedOption) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{18} } func (m *UninterpretedOption) GetName() []*UninterpretedOption_NamePart { if m != nil { return m.Name } return nil } func (m *UninterpretedOption) GetIdentifierValue() string { if m != nil && m.IdentifierValue != nil { return *m.IdentifierValue } return "" } func (m *UninterpretedOption) GetPositiveIntValue() uint64 { if m != nil && m.PositiveIntValue != nil { return *m.PositiveIntValue } return 0 } func (m *UninterpretedOption) GetNegativeIntValue() int64 { if m != nil && m.NegativeIntValue != nil { return *m.NegativeIntValue } return 0 } func (m *UninterpretedOption) GetDoubleValue() float64 { if m != nil && m.DoubleValue != nil { return *m.DoubleValue } return 0 } func (m *UninterpretedOption) GetStringValue() []byte { if m != nil { return m.StringValue } return nil } func (m *UninterpretedOption) GetAggregateValue() string { if m != nil && m.AggregateValue != nil { return *m.AggregateValue } return "" } // The name of the uninterpreted option. Each string represents a segment in // a dot-separated name. is_extension is true iff a segment represents an // extension (denoted with parentheses in options specs in .proto files). // E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents // "foo.(bar.baz).qux". type UninterpretedOption_NamePart struct { NamePart *string `protobuf:"bytes,1,req,name=name_part,json=namePart" json:"name_part,omitempty"` IsExtension *bool `protobuf:"varint,2,req,name=is_extension,json=isExtension" json:"is_extension,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UninterpretedOption_NamePart) Reset() { *m = UninterpretedOption_NamePart{} } func (m *UninterpretedOption_NamePart) String() string { return proto.CompactTextString(m) } func (*UninterpretedOption_NamePart) ProtoMessage() {} func (*UninterpretedOption_NamePart) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{18, 0} } func (m *UninterpretedOption_NamePart) GetNamePart() string { if m != nil && m.NamePart != nil { return *m.NamePart } return "" } func (m *UninterpretedOption_NamePart) GetIsExtension() bool { if m != nil && m.IsExtension != nil { return *m.IsExtension } return false } // Encapsulates information about the original source file from which a // FileDescriptorProto was generated. type SourceCodeInfo struct { // A Location identifies a piece of source code in a .proto file which // corresponds to a particular definition. This information is intended // to be useful to IDEs, code indexers, documentation generators, and similar // tools. // // For example, say we have a file like: // message Foo { // optional string foo = 1; // } // Let's look at just the field definition: // optional string foo = 1; // ^ ^^ ^^ ^ ^^^ // a bc de f ghi // We have the following locations: // span path represents // [a,i) [ 4, 0, 2, 0 ] The whole field definition. // [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). // [c,d) [ 4, 0, 2, 0, 5 ] The type (string). // [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). // [g,h) [ 4, 0, 2, 0, 3 ] The number (1). // // Notes: // - A location may refer to a repeated field itself (i.e. not to any // particular index within it). This is used whenever a set of elements are // logically enclosed in a single code segment. For example, an entire // extend block (possibly containing multiple extension definitions) will // have an outer location whose path refers to the "extensions" repeated // field without an index. // - Multiple locations may have the same path. This happens when a single // logical declaration is spread out across multiple places. The most // obvious example is the "extend" block again -- there may be multiple // extend blocks in the same scope, each of which will have the same path. // - A location's span is not always a subset of its parent's span. For // example, the "extendee" of an extension declaration appears at the // beginning of the "extend" block and is shared by all extensions within // the block. // - Just because a location's span is a subset of some other location's span // does not mean that it is a descendent. For example, a "group" defines // both a type and a field in a single declaration. Thus, the locations // corresponding to the type and field and their components will overlap. // - Code which tries to interpret locations should probably be designed to // ignore those that it doesn't understand, as more types of locations could // be recorded in the future. Location []*SourceCodeInfo_Location `protobuf:"bytes,1,rep,name=location" json:"location,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *SourceCodeInfo) Reset() { *m = SourceCodeInfo{} } func (m *SourceCodeInfo) String() string { return proto.CompactTextString(m) } func (*SourceCodeInfo) ProtoMessage() {} func (*SourceCodeInfo) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{19} } func (m *SourceCodeInfo) GetLocation() []*SourceCodeInfo_Location { if m != nil { return m.Location } return nil } type SourceCodeInfo_Location struct { // Identifies which part of the FileDescriptorProto was defined at this // location. // // Each element is a field number or an index. They form a path from // the root FileDescriptorProto to the place where the definition. For // example, this path: // [ 4, 3, 2, 7, 1 ] // refers to: // file.message_type(3) // 4, 3 // .field(7) // 2, 7 // .name() // 1 // This is because FileDescriptorProto.message_type has field number 4: // repeated DescriptorProto message_type = 4; // and DescriptorProto.field has field number 2: // repeated FieldDescriptorProto field = 2; // and FieldDescriptorProto.name has field number 1: // optional string name = 1; // // Thus, the above path gives the location of a field name. If we removed // the last element: // [ 4, 3, 2, 7 ] // this path refers to the whole field declaration (from the beginning // of the label to the terminating semicolon). Path []int32 `protobuf:"varint,1,rep,packed,name=path" json:"path,omitempty"` // Always has exactly three or four elements: start line, start column, // end line (optional, otherwise assumed same as start line), end column. // These are packed into a single field for efficiency. Note that line // and column numbers are zero-based -- typically you will want to add // 1 to each before displaying to a user. Span []int32 `protobuf:"varint,2,rep,packed,name=span" json:"span,omitempty"` // If this SourceCodeInfo represents a complete declaration, these are any // comments appearing before and after the declaration which appear to be // attached to the declaration. // // A series of line comments appearing on consecutive lines, with no other // tokens appearing on those lines, will be treated as a single comment. // // leading_detached_comments will keep paragraphs of comments that appear // before (but not connected to) the current element. Each paragraph, // separated by empty lines, will be one comment element in the repeated // field. // // Only the comment content is provided; comment markers (e.g. //) are // stripped out. For block comments, leading whitespace and an asterisk // will be stripped from the beginning of each line other than the first. // Newlines are included in the output. // // Examples: // // optional int32 foo = 1; // Comment attached to foo. // // Comment attached to bar. // optional int32 bar = 2; // // optional string baz = 3; // // Comment attached to baz. // // Another line attached to baz. // // // Comment attached to qux. // // // // Another line attached to qux. // optional double qux = 4; // // // Detached comment for corge. This is not leading or trailing comments // // to qux or corge because there are blank lines separating it from // // both. // // // Detached comment for corge paragraph 2. // // optional string corge = 5; // /* Block comment attached // * to corge. Leading asterisks // * will be removed. */ // /* Block comment attached to // * grault. */ // optional int32 grault = 6; // // // ignored detached comments. LeadingComments *string `protobuf:"bytes,3,opt,name=leading_comments,json=leadingComments" json:"leading_comments,omitempty"` TrailingComments *string `protobuf:"bytes,4,opt,name=trailing_comments,json=trailingComments" json:"trailing_comments,omitempty"` LeadingDetachedComments []string `protobuf:"bytes,6,rep,name=leading_detached_comments,json=leadingDetachedComments" json:"leading_detached_comments,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *SourceCodeInfo_Location) Reset() { *m = SourceCodeInfo_Location{} } func (m *SourceCodeInfo_Location) String() string { return proto.CompactTextString(m) } func (*SourceCodeInfo_Location) ProtoMessage() {} func (*SourceCodeInfo_Location) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{19, 0} } func (m *SourceCodeInfo_Location) GetPath() []int32 { if m != nil { return m.Path } return nil } func (m *SourceCodeInfo_Location) GetSpan() []int32 { if m != nil { return m.Span } return nil } func (m *SourceCodeInfo_Location) GetLeadingComments() string { if m != nil && m.LeadingComments != nil { return *m.LeadingComments } return "" } func (m *SourceCodeInfo_Location) GetTrailingComments() string { if m != nil && m.TrailingComments != nil { return *m.TrailingComments } return "" } func (m *SourceCodeInfo_Location) GetLeadingDetachedComments() []string { if m != nil { return m.LeadingDetachedComments } return nil } // Describes the relationship between generated code and its original source // file. A GeneratedCodeInfo message is associated with only one generated // source file, but may contain references to different source .proto files. type GeneratedCodeInfo struct { // An Annotation connects some span of text in generated code to an element // of its generating .proto file. Annotation []*GeneratedCodeInfo_Annotation `protobuf:"bytes,1,rep,name=annotation" json:"annotation,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GeneratedCodeInfo) Reset() { *m = GeneratedCodeInfo{} } func (m *GeneratedCodeInfo) String() string { return proto.CompactTextString(m) } func (*GeneratedCodeInfo) ProtoMessage() {} func (*GeneratedCodeInfo) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{20} } func (m *GeneratedCodeInfo) GetAnnotation() []*GeneratedCodeInfo_Annotation { if m != nil { return m.Annotation } return nil } type GeneratedCodeInfo_Annotation struct { // Identifies the element in the original source .proto file. This field // is formatted the same as SourceCodeInfo.Location.path. Path []int32 `protobuf:"varint,1,rep,packed,name=path" json:"path,omitempty"` // Identifies the filesystem path to the original source .proto. SourceFile *string `protobuf:"bytes,2,opt,name=source_file,json=sourceFile" json:"source_file,omitempty"` // Identifies the starting offset in bytes in the generated code // that relates to the identified object. Begin *int32 `protobuf:"varint,3,opt,name=begin" json:"begin,omitempty"` // Identifies the ending offset in bytes in the generated code that // relates to the identified offset. The end offset should be one past // the last relevant byte (so the length of the text = end - begin). End *int32 `protobuf:"varint,4,opt,name=end" json:"end,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *GeneratedCodeInfo_Annotation) Reset() { *m = GeneratedCodeInfo_Annotation{} } func (m *GeneratedCodeInfo_Annotation) String() string { return proto.CompactTextString(m) } func (*GeneratedCodeInfo_Annotation) ProtoMessage() {} func (*GeneratedCodeInfo_Annotation) Descriptor() ([]byte, []int) { return fileDescriptorDescriptor, []int{20, 0} } func (m *GeneratedCodeInfo_Annotation) GetPath() []int32 { if m != nil { return m.Path } return nil } func (m *GeneratedCodeInfo_Annotation) GetSourceFile() string { if m != nil && m.SourceFile != nil { return *m.SourceFile } return "" } func (m *GeneratedCodeInfo_Annotation) GetBegin() int32 { if m != nil && m.Begin != nil { return *m.Begin } return 0 } func (m *GeneratedCodeInfo_Annotation) GetEnd() int32 { if m != nil && m.End != nil { return *m.End } return 0 } func init() { proto.RegisterType((*FileDescriptorSet)(nil), "google.protobuf.FileDescriptorSet") proto.RegisterType((*FileDescriptorProto)(nil), "google.protobuf.FileDescriptorProto") proto.RegisterType((*DescriptorProto)(nil), "google.protobuf.DescriptorProto") proto.RegisterType((*DescriptorProto_ExtensionRange)(nil), "google.protobuf.DescriptorProto.ExtensionRange") proto.RegisterType((*DescriptorProto_ReservedRange)(nil), "google.protobuf.DescriptorProto.ReservedRange") proto.RegisterType((*ExtensionRangeOptions)(nil), "google.protobuf.ExtensionRangeOptions") proto.RegisterType((*FieldDescriptorProto)(nil), "google.protobuf.FieldDescriptorProto") proto.RegisterType((*OneofDescriptorProto)(nil), "google.protobuf.OneofDescriptorProto") proto.RegisterType((*EnumDescriptorProto)(nil), "google.protobuf.EnumDescriptorProto") proto.RegisterType((*EnumValueDescriptorProto)(nil), "google.protobuf.EnumValueDescriptorProto") proto.RegisterType((*ServiceDescriptorProto)(nil), "google.protobuf.ServiceDescriptorProto") proto.RegisterType((*MethodDescriptorProto)(nil), "google.protobuf.MethodDescriptorProto") proto.RegisterType((*FileOptions)(nil), "google.protobuf.FileOptions") proto.RegisterType((*MessageOptions)(nil), "google.protobuf.MessageOptions") proto.RegisterType((*FieldOptions)(nil), "google.protobuf.FieldOptions") proto.RegisterType((*OneofOptions)(nil), "google.protobuf.OneofOptions") proto.RegisterType((*EnumOptions)(nil), "google.protobuf.EnumOptions") proto.RegisterType((*EnumValueOptions)(nil), "google.protobuf.EnumValueOptions") proto.RegisterType((*ServiceOptions)(nil), "google.protobuf.ServiceOptions") proto.RegisterType((*MethodOptions)(nil), "google.protobuf.MethodOptions") proto.RegisterType((*UninterpretedOption)(nil), "google.protobuf.UninterpretedOption") proto.RegisterType((*UninterpretedOption_NamePart)(nil), "google.protobuf.UninterpretedOption.NamePart") proto.RegisterType((*SourceCodeInfo)(nil), "google.protobuf.SourceCodeInfo") proto.RegisterType((*SourceCodeInfo_Location)(nil), "google.protobuf.SourceCodeInfo.Location") proto.RegisterType((*GeneratedCodeInfo)(nil), "google.protobuf.GeneratedCodeInfo") proto.RegisterType((*GeneratedCodeInfo_Annotation)(nil), "google.protobuf.GeneratedCodeInfo.Annotation") proto.RegisterEnum("google.protobuf.FieldDescriptorProto_Type", FieldDescriptorProto_Type_name, FieldDescriptorProto_Type_value) proto.RegisterEnum("google.protobuf.FieldDescriptorProto_Label", FieldDescriptorProto_Label_name, FieldDescriptorProto_Label_value) proto.RegisterEnum("google.protobuf.FileOptions_OptimizeMode", FileOptions_OptimizeMode_name, FileOptions_OptimizeMode_value) proto.RegisterEnum("google.protobuf.FieldOptions_CType", FieldOptions_CType_name, FieldOptions_CType_value) proto.RegisterEnum("google.protobuf.FieldOptions_JSType", FieldOptions_JSType_name, FieldOptions_JSType_value) proto.RegisterEnum("google.protobuf.MethodOptions_IdempotencyLevel", MethodOptions_IdempotencyLevel_name, MethodOptions_IdempotencyLevel_value) } func init() { proto.RegisterFile("descriptor.proto", fileDescriptorDescriptor) } var fileDescriptorDescriptor = []byte{ // 2451 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x59, 0xcd, 0x6f, 0xdb, 0xc8, 0x15, 0x5f, 0x7d, 0x5a, 0x7a, 0x92, 0xe5, 0xf1, 0xd8, 0x9b, 0x30, 0xce, 0x66, 0xe3, 0x28, 0xc9, 0xc6, 0x49, 0x5a, 0x65, 0xe1, 0x7c, 0xae, 0xb7, 0xd8, 0x56, 0x96, 0x18, 0xaf, 0x52, 0x59, 0x52, 0x29, 0xb9, 0x9b, 0xec, 0x85, 0x18, 0x93, 0x23, 0x89, 0x09, 0x45, 0x72, 0x49, 0x2a, 0x89, 0x83, 0x1e, 0x02, 0xf4, 0xd4, 0xff, 0xa0, 0x28, 0x8a, 0x1e, 0xf6, 0xb2, 0x40, 0xaf, 0x05, 0x0a, 0xb4, 0xf7, 0x5e, 0x0b, 0xf4, 0xde, 0x43, 0x0f, 0x05, 0xda, 0x3f, 0xa3, 0x98, 0x19, 0x92, 0xa2, 0xbe, 0x12, 0x77, 0x81, 0x64, 0x4f, 0xf6, 0xfc, 0xde, 0xef, 0xbd, 0x79, 0xf3, 0xf8, 0x66, 0xde, 0x9b, 0x11, 0x20, 0x9d, 0x7a, 0x9a, 0x6b, 0x38, 0xbe, 0xed, 0x56, 0x1c, 0xd7, 0xf6, 0x6d, 0xbc, 0x36, 0xb0, 0xed, 0x81, 0x49, 0xc5, 0xe8, 0x78, 0xdc, 0x2f, 0x1f, 0xc2, 0xfa, 0x43, 0xc3, 0xa4, 0xf5, 0x88, 0xd8, 0xa5, 0x3e, 0x7e, 0x00, 0xe9, 0xbe, 0x61, 0x52, 0x29, 0xb1, 0x9d, 0xda, 0x29, 0xec, 0x5e, 0xa9, 0xcc, 0x28, 0x55, 0xa6, 0x35, 0x3a, 0x0c, 0x56, 0xb8, 0x46, 0xf9, 0xdf, 0x69, 0xd8, 0x58, 0x20, 0xc5, 0x18, 0xd2, 0x16, 0x19, 0x31, 0x8b, 0x89, 0x9d, 0xbc, 0xc2, 0xff, 0xc7, 0x12, 0xac, 0x38, 0x44, 0x7b, 0x46, 0x06, 0x54, 0x4a, 0x72, 0x38, 0x1c, 0xe2, 0x8f, 0x01, 0x74, 0xea, 0x50, 0x4b, 0xa7, 0x96, 0x76, 0x22, 0xa5, 0xb6, 0x53, 0x3b, 0x79, 0x25, 0x86, 0xe0, 0x9b, 0xb0, 0xee, 0x8c, 0x8f, 0x4d, 0x43, 0x53, 0x63, 0x34, 0xd8, 0x4e, 0xed, 0x64, 0x14, 0x24, 0x04, 0xf5, 0x09, 0xf9, 0x1a, 0xac, 0xbd, 0xa0, 0xe4, 0x59, 0x9c, 0x5a, 0xe0, 0xd4, 0x12, 0x83, 0x63, 0xc4, 0x1a, 0x14, 0x47, 0xd4, 0xf3, 0xc8, 0x80, 0xaa, 0xfe, 0x89, 0x43, 0xa5, 0x34, 0x5f, 0xfd, 0xf6, 0xdc, 0xea, 0x67, 0x57, 0x5e, 0x08, 0xb4, 0x7a, 0x27, 0x0e, 0xc5, 0x55, 0xc8, 0x53, 0x6b, 0x3c, 0x12, 0x16, 0x32, 0x4b, 0xe2, 0x27, 0x5b, 0xe3, 0xd1, 0xac, 0x95, 0x1c, 0x53, 0x0b, 0x4c, 0xac, 0x78, 0xd4, 0x7d, 0x6e, 0x68, 0x54, 0xca, 0x72, 0x03, 0xd7, 0xe6, 0x0c, 0x74, 0x85, 0x7c, 0xd6, 0x46, 0xa8, 0x87, 0x6b, 0x90, 0xa7, 0x2f, 0x7d, 0x6a, 0x79, 0x86, 0x6d, 0x49, 0x2b, 0xdc, 0xc8, 0xd5, 0x05, 0x5f, 0x91, 0x9a, 0xfa, 0xac, 0x89, 0x89, 0x1e, 0xbe, 0x07, 0x2b, 0xb6, 0xe3, 0x1b, 0xb6, 0xe5, 0x49, 0xb9, 0xed, 0xc4, 0x4e, 0x61, 0xf7, 0xa3, 0x85, 0x89, 0xd0, 0x16, 0x1c, 0x25, 0x24, 0xe3, 0x06, 0x20, 0xcf, 0x1e, 0xbb, 0x1a, 0x55, 0x35, 0x5b, 0xa7, 0xaa, 0x61, 0xf5, 0x6d, 0x29, 0xcf, 0x0d, 0x5c, 0x9c, 0x5f, 0x08, 0x27, 0xd6, 0x6c, 0x9d, 0x36, 0xac, 0xbe, 0xad, 0x94, 0xbc, 0xa9, 0x31, 0x3e, 0x03, 0x59, 0xef, 0xc4, 0xf2, 0xc9, 0x4b, 0xa9, 0xc8, 0x33, 0x24, 0x18, 0x95, 0xff, 0x92, 0x85, 0xb5, 0xd3, 0xa4, 0xd8, 0xe7, 0x90, 0xe9, 0xb3, 0x55, 0x4a, 0xc9, 0xff, 0x27, 0x06, 0x42, 0x67, 0x3a, 0x88, 0xd9, 0xef, 0x19, 0xc4, 0x2a, 0x14, 0x2c, 0xea, 0xf9, 0x54, 0x17, 0x19, 0x91, 0x3a, 0x65, 0x4e, 0x81, 0x50, 0x9a, 0x4f, 0xa9, 0xf4, 0xf7, 0x4a, 0xa9, 0xc7, 0xb0, 0x16, 0xb9, 0xa4, 0xba, 0xc4, 0x1a, 0x84, 0xb9, 0x79, 0xeb, 0x6d, 0x9e, 0x54, 0xe4, 0x50, 0x4f, 0x61, 0x6a, 0x4a, 0x89, 0x4e, 0x8d, 0x71, 0x1d, 0xc0, 0xb6, 0xa8, 0xdd, 0x57, 0x75, 0xaa, 0x99, 0x52, 0x6e, 0x49, 0x94, 0xda, 0x8c, 0x32, 0x17, 0x25, 0x5b, 0xa0, 0x9a, 0x89, 0x3f, 0x9b, 0xa4, 0xda, 0xca, 0x92, 0x4c, 0x39, 0x14, 0x9b, 0x6c, 0x2e, 0xdb, 0x8e, 0xa0, 0xe4, 0x52, 0x96, 0xf7, 0x54, 0x0f, 0x56, 0x96, 0xe7, 0x4e, 0x54, 0xde, 0xba, 0x32, 0x25, 0x50, 0x13, 0x0b, 0x5b, 0x75, 0xe3, 0x43, 0x7c, 0x19, 0x22, 0x40, 0xe5, 0x69, 0x05, 0xfc, 0x14, 0x2a, 0x86, 0x60, 0x8b, 0x8c, 0xe8, 0xd6, 0x2b, 0x28, 0x4d, 0x87, 0x07, 0x6f, 0x42, 0xc6, 0xf3, 0x89, 0xeb, 0xf3, 0x2c, 0xcc, 0x28, 0x62, 0x80, 0x11, 0xa4, 0xa8, 0xa5, 0xf3, 0x53, 0x2e, 0xa3, 0xb0, 0x7f, 0xf1, 0xcf, 0x26, 0x0b, 0x4e, 0xf1, 0x05, 0x7f, 0x32, 0xff, 0x45, 0xa7, 0x2c, 0xcf, 0xae, 0x7b, 0xeb, 0x3e, 0xac, 0x4e, 0x2d, 0xe0, 0xb4, 0x53, 0x97, 0x7f, 0x05, 0x1f, 0x2e, 0x34, 0x8d, 0x1f, 0xc3, 0xe6, 0xd8, 0x32, 0x2c, 0x9f, 0xba, 0x8e, 0x4b, 0x59, 0xc6, 0x8a, 0xa9, 0xa4, 0xff, 0xac, 0x2c, 0xc9, 0xb9, 0xa3, 0x38, 0x5b, 0x58, 0x51, 0x36, 0xc6, 0xf3, 0xe0, 0x8d, 0x7c, 0xee, 0xbf, 0x2b, 0xe8, 0xf5, 0xeb, 0xd7, 0xaf, 0x93, 0xe5, 0xdf, 0x66, 0x61, 0x73, 0xd1, 0x9e, 0x59, 0xb8, 0x7d, 0xcf, 0x40, 0xd6, 0x1a, 0x8f, 0x8e, 0xa9, 0xcb, 0x83, 0x94, 0x51, 0x82, 0x11, 0xae, 0x42, 0xc6, 0x24, 0xc7, 0xd4, 0x94, 0xd2, 0xdb, 0x89, 0x9d, 0xd2, 0xee, 0xcd, 0x53, 0xed, 0xca, 0x4a, 0x93, 0xa9, 0x28, 0x42, 0x13, 0x7f, 0x01, 0xe9, 0xe0, 0x88, 0x66, 0x16, 0x6e, 0x9c, 0xce, 0x02, 0xdb, 0x4b, 0x0a, 0xd7, 0xc3, 0xe7, 0x21, 0xcf, 0xfe, 0x8a, 0xdc, 0xc8, 0x72, 0x9f, 0x73, 0x0c, 0x60, 0x79, 0x81, 0xb7, 0x20, 0xc7, 0xb7, 0x89, 0x4e, 0xc3, 0xd2, 0x16, 0x8d, 0x59, 0x62, 0xe9, 0xb4, 0x4f, 0xc6, 0xa6, 0xaf, 0x3e, 0x27, 0xe6, 0x98, 0xf2, 0x84, 0xcf, 0x2b, 0xc5, 0x00, 0xfc, 0x25, 0xc3, 0xf0, 0x45, 0x28, 0x88, 0x5d, 0x65, 0x58, 0x3a, 0x7d, 0xc9, 0x4f, 0xcf, 0x8c, 0x22, 0x36, 0x5a, 0x83, 0x21, 0x6c, 0xfa, 0xa7, 0x9e, 0x6d, 0x85, 0xa9, 0xc9, 0xa7, 0x60, 0x00, 0x9f, 0xfe, 0xfe, 0xec, 0xc1, 0x7d, 0x61, 0xf1, 0xf2, 0x66, 0x73, 0xaa, 0xfc, 0xe7, 0x24, 0xa4, 0xf9, 0x79, 0xb1, 0x06, 0x85, 0xde, 0x93, 0x8e, 0xac, 0xd6, 0xdb, 0x47, 0xfb, 0x4d, 0x19, 0x25, 0x70, 0x09, 0x80, 0x03, 0x0f, 0x9b, 0xed, 0x6a, 0x0f, 0x25, 0xa3, 0x71, 0xa3, 0xd5, 0xbb, 0x77, 0x07, 0xa5, 0x22, 0x85, 0x23, 0x01, 0xa4, 0xe3, 0x84, 0xdb, 0xbb, 0x28, 0x83, 0x11, 0x14, 0x85, 0x81, 0xc6, 0x63, 0xb9, 0x7e, 0xef, 0x0e, 0xca, 0x4e, 0x23, 0xb7, 0x77, 0xd1, 0x0a, 0x5e, 0x85, 0x3c, 0x47, 0xf6, 0xdb, 0xed, 0x26, 0xca, 0x45, 0x36, 0xbb, 0x3d, 0xa5, 0xd1, 0x3a, 0x40, 0xf9, 0xc8, 0xe6, 0x81, 0xd2, 0x3e, 0xea, 0x20, 0x88, 0x2c, 0x1c, 0xca, 0xdd, 0x6e, 0xf5, 0x40, 0x46, 0x85, 0x88, 0xb1, 0xff, 0xa4, 0x27, 0x77, 0x51, 0x71, 0xca, 0xad, 0xdb, 0xbb, 0x68, 0x35, 0x9a, 0x42, 0x6e, 0x1d, 0x1d, 0xa2, 0x12, 0x5e, 0x87, 0x55, 0x31, 0x45, 0xe8, 0xc4, 0xda, 0x0c, 0x74, 0xef, 0x0e, 0x42, 0x13, 0x47, 0x84, 0x95, 0xf5, 0x29, 0xe0, 0xde, 0x1d, 0x84, 0xcb, 0x35, 0xc8, 0xf0, 0xec, 0xc2, 0x18, 0x4a, 0xcd, 0xea, 0xbe, 0xdc, 0x54, 0xdb, 0x9d, 0x5e, 0xa3, 0xdd, 0xaa, 0x36, 0x51, 0x62, 0x82, 0x29, 0xf2, 0x2f, 0x8e, 0x1a, 0x8a, 0x5c, 0x47, 0xc9, 0x38, 0xd6, 0x91, 0xab, 0x3d, 0xb9, 0x8e, 0x52, 0x65, 0x0d, 0x36, 0x17, 0x9d, 0x93, 0x0b, 0x77, 0x46, 0xec, 0x13, 0x27, 0x97, 0x7c, 0x62, 0x6e, 0x6b, 0xee, 0x13, 0x7f, 0x9b, 0x80, 0x8d, 0x05, 0xb5, 0x62, 0xe1, 0x24, 0x3f, 0x85, 0x8c, 0x48, 0x51, 0x51, 0x3d, 0xaf, 0x2f, 0x2c, 0x3a, 0x3c, 0x61, 0xe7, 0x2a, 0x28, 0xd7, 0x8b, 0x77, 0x10, 0xa9, 0x25, 0x1d, 0x04, 0x33, 0x31, 0xe7, 0xe4, 0xaf, 0x13, 0x20, 0x2d, 0xb3, 0xfd, 0x96, 0x83, 0x22, 0x39, 0x75, 0x50, 0x7c, 0x3e, 0xeb, 0xc0, 0xa5, 0xe5, 0x6b, 0x98, 0xf3, 0xe2, 0xbb, 0x04, 0x9c, 0x59, 0xdc, 0x68, 0x2d, 0xf4, 0xe1, 0x0b, 0xc8, 0x8e, 0xa8, 0x3f, 0xb4, 0xc3, 0x66, 0xe3, 0x93, 0x05, 0x25, 0x8c, 0x89, 0x67, 0x63, 0x15, 0x68, 0xc5, 0x6b, 0x60, 0x6a, 0x59, 0xb7, 0x24, 0xbc, 0x99, 0xf3, 0xf4, 0x37, 0x49, 0xf8, 0x70, 0xa1, 0xf1, 0x85, 0x8e, 0x5e, 0x00, 0x30, 0x2c, 0x67, 0xec, 0x8b, 0x86, 0x42, 0x9c, 0x4f, 0x79, 0x8e, 0xf0, 0xbd, 0xcf, 0xce, 0x9e, 0xb1, 0x1f, 0xc9, 0x53, 0x5c, 0x0e, 0x02, 0xe2, 0x84, 0x07, 0x13, 0x47, 0xd3, 0xdc, 0xd1, 0x8f, 0x97, 0xac, 0x74, 0xae, 0x56, 0x7f, 0x0a, 0x48, 0x33, 0x0d, 0x6a, 0xf9, 0xaa, 0xe7, 0xbb, 0x94, 0x8c, 0x0c, 0x6b, 0xc0, 0x0f, 0xe0, 0xdc, 0x5e, 0xa6, 0x4f, 0x4c, 0x8f, 0x2a, 0x6b, 0x42, 0xdc, 0x0d, 0xa5, 0x4c, 0x83, 0xd7, 0x38, 0x37, 0xa6, 0x91, 0x9d, 0xd2, 0x10, 0xe2, 0x48, 0xa3, 0xfc, 0xa7, 0x1c, 0x14, 0x62, 0x6d, 0x29, 0xbe, 0x04, 0xc5, 0xa7, 0xe4, 0x39, 0x51, 0xc3, 0xab, 0x86, 0x88, 0x44, 0x81, 0x61, 0x9d, 0xe0, 0xba, 0xf1, 0x29, 0x6c, 0x72, 0x8a, 0x3d, 0xf6, 0xa9, 0xab, 0x6a, 0x26, 0xf1, 0x3c, 0x1e, 0xb4, 0x1c, 0xa7, 0x62, 0x26, 0x6b, 0x33, 0x51, 0x2d, 0x94, 0xe0, 0xbb, 0xb0, 0xc1, 0x35, 0x46, 0x63, 0xd3, 0x37, 0x1c, 0x93, 0xaa, 0xec, 0xf2, 0xe3, 0xf1, 0x83, 0x38, 0xf2, 0x6c, 0x9d, 0x31, 0x0e, 0x03, 0x02, 0xf3, 0xc8, 0xc3, 0x75, 0xb8, 0xc0, 0xd5, 0x06, 0xd4, 0xa2, 0x2e, 0xf1, 0xa9, 0x4a, 0xbf, 0x19, 0x13, 0xd3, 0x53, 0x89, 0xa5, 0xab, 0x43, 0xe2, 0x0d, 0xa5, 0x4d, 0x66, 0x60, 0x3f, 0x29, 0x25, 0x94, 0x73, 0x8c, 0x78, 0x10, 0xf0, 0x64, 0x4e, 0xab, 0x5a, 0xfa, 0x97, 0xc4, 0x1b, 0xe2, 0x3d, 0x38, 0xc3, 0xad, 0x78, 0xbe, 0x6b, 0x58, 0x03, 0x55, 0x1b, 0x52, 0xed, 0x99, 0x3a, 0xf6, 0xfb, 0x0f, 0xa4, 0xf3, 0xf1, 0xf9, 0xb9, 0x87, 0x5d, 0xce, 0xa9, 0x31, 0xca, 0x91, 0xdf, 0x7f, 0x80, 0xbb, 0x50, 0x64, 0x1f, 0x63, 0x64, 0xbc, 0xa2, 0x6a, 0xdf, 0x76, 0x79, 0x65, 0x29, 0x2d, 0xd8, 0xd9, 0xb1, 0x08, 0x56, 0xda, 0x81, 0xc2, 0xa1, 0xad, 0xd3, 0xbd, 0x4c, 0xb7, 0x23, 0xcb, 0x75, 0xa5, 0x10, 0x5a, 0x79, 0x68, 0xbb, 0x2c, 0xa1, 0x06, 0x76, 0x14, 0xe0, 0x82, 0x48, 0xa8, 0x81, 0x1d, 0x86, 0xf7, 0x2e, 0x6c, 0x68, 0x9a, 0x58, 0xb3, 0xa1, 0xa9, 0xc1, 0x15, 0xc5, 0x93, 0xd0, 0x54, 0xb0, 0x34, 0xed, 0x40, 0x10, 0x82, 0x1c, 0xf7, 0xf0, 0x67, 0xf0, 0xe1, 0x24, 0x58, 0x71, 0xc5, 0xf5, 0xb9, 0x55, 0xce, 0xaa, 0xde, 0x85, 0x0d, 0xe7, 0x64, 0x5e, 0x11, 0x4f, 0xcd, 0xe8, 0x9c, 0xcc, 0xaa, 0xdd, 0x87, 0x4d, 0x67, 0xe8, 0xcc, 0xeb, 0x6d, 0xc4, 0xf5, 0xb0, 0x33, 0x74, 0x66, 0x15, 0xaf, 0xf2, 0xfb, 0xaa, 0x4b, 0x35, 0xe2, 0x53, 0x5d, 0x3a, 0x1b, 0xa7, 0xc7, 0x04, 0xf8, 0x16, 0x20, 0x4d, 0x53, 0xa9, 0x45, 0x8e, 0x4d, 0xaa, 0x12, 0x97, 0x5a, 0xc4, 0x93, 0x2e, 0xc6, 0xc9, 0x25, 0x4d, 0x93, 0xb9, 0xb4, 0xca, 0x85, 0xf8, 0x06, 0xac, 0xdb, 0xc7, 0x4f, 0x35, 0x91, 0x92, 0xaa, 0xe3, 0xd2, 0xbe, 0xf1, 0x52, 0xba, 0xc2, 0xe3, 0xbb, 0xc6, 0x04, 0x3c, 0x21, 0x3b, 0x1c, 0xc6, 0xd7, 0x01, 0x69, 0xde, 0x90, 0xb8, 0x0e, 0xef, 0x09, 0x3c, 0x87, 0x68, 0x54, 0xba, 0x2a, 0xa8, 0x02, 0x6f, 0x85, 0x30, 0xdb, 0x12, 0xde, 0x0b, 0xa3, 0xef, 0x87, 0x16, 0xaf, 0x89, 0x2d, 0xc1, 0xb1, 0xc0, 0xda, 0x0e, 0x20, 0x16, 0x8a, 0xa9, 0x89, 0x77, 0x38, 0xad, 0xe4, 0x0c, 0x9d, 0xf8, 0xbc, 0x97, 0x61, 0x95, 0x31, 0x27, 0x93, 0x5e, 0x17, 0xfd, 0x8c, 0x33, 0x8c, 0xcd, 0xf8, 0xce, 0x5a, 0xcb, 0xf2, 0x1e, 0x14, 0xe3, 0xf9, 0x89, 0xf3, 0x20, 0x32, 0x14, 0x25, 0x58, 0xad, 0xaf, 0xb5, 0xeb, 0xac, 0x4a, 0x7f, 0x2d, 0xa3, 0x24, 0xeb, 0x16, 0x9a, 0x8d, 0x9e, 0xac, 0x2a, 0x47, 0xad, 0x5e, 0xe3, 0x50, 0x46, 0xa9, 0x78, 0x5b, 0xfa, 0xb7, 0x24, 0x94, 0xa6, 0x6f, 0x18, 0xf8, 0x27, 0x70, 0x36, 0x7c, 0x0e, 0xf0, 0xa8, 0xaf, 0xbe, 0x30, 0x5c, 0xbe, 0x65, 0x46, 0x44, 0x74, 0xd8, 0xd1, 0x47, 0xdb, 0x0c, 0x58, 0x5d, 0xea, 0x7f, 0x65, 0xb8, 0x6c, 0x43, 0x8c, 0x88, 0x8f, 0x9b, 0x70, 0xd1, 0xb2, 0x55, 0xcf, 0x27, 0x96, 0x4e, 0x5c, 0x5d, 0x9d, 0x3c, 0xc4, 0xa8, 0x44, 0xd3, 0xa8, 0xe7, 0xd9, 0xa2, 0x54, 0x45, 0x56, 0x3e, 0xb2, 0xec, 0x6e, 0x40, 0x9e, 0x9c, 0xe1, 0xd5, 0x80, 0x3a, 0x93, 0x60, 0xa9, 0x65, 0x09, 0x76, 0x1e, 0xf2, 0x23, 0xe2, 0xa8, 0xd4, 0xf2, 0xdd, 0x13, 0xde, 0x57, 0xe6, 0x94, 0xdc, 0x88, 0x38, 0x32, 0x1b, 0xbf, 0x9f, 0xf6, 0xfe, 0x9f, 0x29, 0x28, 0xc6, 0x7b, 0x4b, 0xd6, 0xaa, 0x6b, 0xbc, 0x8e, 0x24, 0xf8, 0x49, 0x73, 0xf9, 0x8d, 0x9d, 0x68, 0xa5, 0xc6, 0x0a, 0xcc, 0x5e, 0x56, 0x74, 0x7c, 0x8a, 0xd0, 0x64, 0xc5, 0x9d, 0x9d, 0x2d, 0x54, 0xdc, 0x62, 0x72, 0x4a, 0x30, 0xc2, 0x07, 0x90, 0x7d, 0xea, 0x71, 0xdb, 0x59, 0x6e, 0xfb, 0xca, 0x9b, 0x6d, 0x3f, 0xea, 0x72, 0xe3, 0xf9, 0x47, 0x5d, 0xb5, 0xd5, 0x56, 0x0e, 0xab, 0x4d, 0x25, 0x50, 0xc7, 0xe7, 0x20, 0x6d, 0x92, 0x57, 0x27, 0xd3, 0xa5, 0x88, 0x43, 0xa7, 0x0d, 0xfc, 0x39, 0x48, 0xbf, 0xa0, 0xe4, 0xd9, 0x74, 0x01, 0xe0, 0xd0, 0x3b, 0x4c, 0xfd, 0x5b, 0x90, 0xe1, 0xf1, 0xc2, 0x00, 0x41, 0xc4, 0xd0, 0x07, 0x38, 0x07, 0xe9, 0x5a, 0x5b, 0x61, 0xe9, 0x8f, 0xa0, 0x28, 0x50, 0xb5, 0xd3, 0x90, 0x6b, 0x32, 0x4a, 0x96, 0xef, 0x42, 0x56, 0x04, 0x81, 0x6d, 0x8d, 0x28, 0x0c, 0xe8, 0x83, 0x60, 0x18, 0xd8, 0x48, 0x84, 0xd2, 0xa3, 0xc3, 0x7d, 0x59, 0x41, 0xc9, 0xf8, 0xe7, 0xf5, 0xa0, 0x18, 0x6f, 0x2b, 0xdf, 0x4f, 0x4e, 0xfd, 0x35, 0x01, 0x85, 0x58, 0x9b, 0xc8, 0x1a, 0x14, 0x62, 0x9a, 0xf6, 0x0b, 0x95, 0x98, 0x06, 0xf1, 0x82, 0xa4, 0x00, 0x0e, 0x55, 0x19, 0x72, 0xda, 0x8f, 0xf6, 0x5e, 0x9c, 0xff, 0x43, 0x02, 0xd0, 0x6c, 0x8b, 0x39, 0xe3, 0x60, 0xe2, 0x07, 0x75, 0xf0, 0xf7, 0x09, 0x28, 0x4d, 0xf7, 0x95, 0x33, 0xee, 0x5d, 0xfa, 0x41, 0xdd, 0xfb, 0x57, 0x12, 0x56, 0xa7, 0xba, 0xc9, 0xd3, 0x7a, 0xf7, 0x0d, 0xac, 0x1b, 0x3a, 0x1d, 0x39, 0xb6, 0x4f, 0x2d, 0xed, 0x44, 0x35, 0xe9, 0x73, 0x6a, 0x4a, 0x65, 0x7e, 0x50, 0xdc, 0x7a, 0x73, 0xbf, 0x5a, 0x69, 0x4c, 0xf4, 0x9a, 0x4c, 0x6d, 0x6f, 0xa3, 0x51, 0x97, 0x0f, 0x3b, 0xed, 0x9e, 0xdc, 0xaa, 0x3d, 0x51, 0x8f, 0x5a, 0x3f, 0x6f, 0xb5, 0xbf, 0x6a, 0x29, 0xc8, 0x98, 0xa1, 0xbd, 0xc3, 0xad, 0xde, 0x01, 0x34, 0xeb, 0x14, 0x3e, 0x0b, 0x8b, 0xdc, 0x42, 0x1f, 0xe0, 0x0d, 0x58, 0x6b, 0xb5, 0xd5, 0x6e, 0xa3, 0x2e, 0xab, 0xf2, 0xc3, 0x87, 0x72, 0xad, 0xd7, 0x15, 0x17, 0xf8, 0x88, 0xdd, 0x9b, 0xde, 0xd4, 0xbf, 0x4b, 0xc1, 0xc6, 0x02, 0x4f, 0x70, 0x35, 0xb8, 0x3b, 0x88, 0xeb, 0xcc, 0x8f, 0x4f, 0xe3, 0x7d, 0x85, 0x95, 0xfc, 0x0e, 0x71, 0xfd, 0xe0, 0xaa, 0x71, 0x1d, 0x58, 0x94, 0x2c, 0xdf, 0xe8, 0x1b, 0xd4, 0x0d, 0xde, 0x3b, 0xc4, 0x85, 0x62, 0x6d, 0x82, 0x8b, 0x27, 0x8f, 0x1f, 0x01, 0x76, 0x6c, 0xcf, 0xf0, 0x8d, 0xe7, 0x54, 0x35, 0xac, 0xf0, 0x71, 0x84, 0x5d, 0x30, 0xd2, 0x0a, 0x0a, 0x25, 0x0d, 0xcb, 0x8f, 0xd8, 0x16, 0x1d, 0x90, 0x19, 0x36, 0x3b, 0xc0, 0x53, 0x0a, 0x0a, 0x25, 0x11, 0xfb, 0x12, 0x14, 0x75, 0x7b, 0xcc, 0xba, 0x2e, 0xc1, 0x63, 0xf5, 0x22, 0xa1, 0x14, 0x04, 0x16, 0x51, 0x82, 0x7e, 0x7a, 0xf2, 0x2a, 0x53, 0x54, 0x0a, 0x02, 0x13, 0x94, 0x6b, 0xb0, 0x46, 0x06, 0x03, 0x97, 0x19, 0x0f, 0x0d, 0x89, 0x1b, 0x42, 0x29, 0x82, 0x39, 0x71, 0xeb, 0x11, 0xe4, 0xc2, 0x38, 0xb0, 0x92, 0xcc, 0x22, 0xa1, 0x3a, 0xe2, 0x65, 0x2e, 0xb9, 0x93, 0x57, 0x72, 0x56, 0x28, 0xbc, 0x04, 0x45, 0xc3, 0x53, 0x27, 0x8f, 0xcc, 0xc9, 0xed, 0xe4, 0x4e, 0x4e, 0x29, 0x18, 0x5e, 0xf4, 0x40, 0x57, 0xfe, 0x2e, 0x09, 0xa5, 0xe9, 0x47, 0x72, 0x5c, 0x87, 0x9c, 0x69, 0x6b, 0x84, 0xa7, 0x96, 0xf8, 0x85, 0x66, 0xe7, 0x2d, 0xef, 0xea, 0x95, 0x66, 0xc0, 0x57, 0x22, 0xcd, 0xad, 0xbf, 0x27, 0x20, 0x17, 0xc2, 0xf8, 0x0c, 0xa4, 0x1d, 0xe2, 0x0f, 0xb9, 0xb9, 0xcc, 0x7e, 0x12, 0x25, 0x14, 0x3e, 0x66, 0xb8, 0xe7, 0x10, 0x8b, 0xa7, 0x40, 0x80, 0xb3, 0x31, 0xfb, 0xae, 0x26, 0x25, 0x3a, 0xbf, 0x7e, 0xd8, 0xa3, 0x11, 0xb5, 0x7c, 0x2f, 0xfc, 0xae, 0x01, 0x5e, 0x0b, 0x60, 0x7c, 0x13, 0xd6, 0x7d, 0x97, 0x18, 0xe6, 0x14, 0x37, 0xcd, 0xb9, 0x28, 0x14, 0x44, 0xe4, 0x3d, 0x38, 0x17, 0xda, 0xd5, 0xa9, 0x4f, 0xb4, 0x21, 0xd5, 0x27, 0x4a, 0x59, 0xfe, 0x02, 0x7b, 0x36, 0x20, 0xd4, 0x03, 0x79, 0xa8, 0x5b, 0xfe, 0x47, 0x02, 0xd6, 0xc3, 0x0b, 0x93, 0x1e, 0x05, 0xeb, 0x10, 0x80, 0x58, 0x96, 0xed, 0xc7, 0xc3, 0x35, 0x9f, 0xca, 0x73, 0x7a, 0x95, 0x6a, 0xa4, 0xa4, 0xc4, 0x0c, 0x6c, 0x8d, 0x00, 0x26, 0x92, 0xa5, 0x61, 0xbb, 0x08, 0x85, 0xe0, 0x17, 0x10, 0xfe, 0x33, 0x9a, 0xb8, 0x62, 0x83, 0x80, 0xd8, 0xcd, 0x0a, 0x6f, 0x42, 0xe6, 0x98, 0x0e, 0x0c, 0x2b, 0x78, 0xd7, 0x14, 0x83, 0xf0, 0xad, 0x36, 0x1d, 0xbd, 0xd5, 0xee, 0x3f, 0x86, 0x0d, 0xcd, 0x1e, 0xcd, 0xba, 0xbb, 0x8f, 0x66, 0xae, 0xf9, 0xde, 0x97, 0x89, 0xaf, 0x61, 0xd2, 0x62, 0x7e, 0x9b, 0x4c, 0x1d, 0x74, 0xf6, 0xff, 0x98, 0xdc, 0x3a, 0x10, 0x7a, 0x9d, 0x70, 0x99, 0x0a, 0xed, 0x9b, 0x54, 0x63, 0xae, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x03, 0xf1, 0x99, 0x1b, 0x1c, 0x00, 0x00, } golang-gogoprotobuf-0.5/protoc-gen-gogo/descriptor/descriptor_gostring.gen.go000066400000000000000000000614451317075173200277340ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: descriptor.proto /* Package descriptor is a generated protocol buffer package. It is generated from these files: descriptor.proto It has these top-level messages: FileDescriptorSet FileDescriptorProto DescriptorProto ExtensionRangeOptions FieldDescriptorProto OneofDescriptorProto EnumDescriptorProto EnumValueDescriptorProto ServiceDescriptorProto MethodDescriptorProto FileOptions MessageOptions FieldOptions OneofOptions EnumOptions EnumValueOptions ServiceOptions MethodOptions UninterpretedOption SourceCodeInfo GeneratedCodeInfo */ package descriptor import fmt "fmt" import strings "strings" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import sort "sort" import strconv "strconv" import reflect "reflect" import proto "github.com/gogo/protobuf/proto" import math "math" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func (this *FileDescriptorSet) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&descriptor.FileDescriptorSet{") if this.File != nil { s = append(s, "File: "+fmt.Sprintf("%#v", this.File)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FileDescriptorProto) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 16) s = append(s, "&descriptor.FileDescriptorProto{") if this.Name != nil { s = append(s, "Name: "+valueToGoStringDescriptor(this.Name, "string")+",\n") } if this.Package != nil { s = append(s, "Package: "+valueToGoStringDescriptor(this.Package, "string")+",\n") } if this.Dependency != nil { s = append(s, "Dependency: "+fmt.Sprintf("%#v", this.Dependency)+",\n") } if this.PublicDependency != nil { s = append(s, "PublicDependency: "+fmt.Sprintf("%#v", this.PublicDependency)+",\n") } if this.WeakDependency != nil { s = append(s, "WeakDependency: "+fmt.Sprintf("%#v", this.WeakDependency)+",\n") } if this.MessageType != nil { s = append(s, "MessageType: "+fmt.Sprintf("%#v", this.MessageType)+",\n") } if this.EnumType != nil { s = append(s, "EnumType: "+fmt.Sprintf("%#v", this.EnumType)+",\n") } if this.Service != nil { s = append(s, "Service: "+fmt.Sprintf("%#v", this.Service)+",\n") } if this.Extension != nil { s = append(s, "Extension: "+fmt.Sprintf("%#v", this.Extension)+",\n") } if this.Options != nil { s = append(s, "Options: "+fmt.Sprintf("%#v", this.Options)+",\n") } if this.SourceCodeInfo != nil { s = append(s, "SourceCodeInfo: "+fmt.Sprintf("%#v", this.SourceCodeInfo)+",\n") } if this.Syntax != nil { s = append(s, "Syntax: "+valueToGoStringDescriptor(this.Syntax, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DescriptorProto) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&descriptor.DescriptorProto{") if this.Name != nil { s = append(s, "Name: "+valueToGoStringDescriptor(this.Name, "string")+",\n") } if this.Field != nil { s = append(s, "Field: "+fmt.Sprintf("%#v", this.Field)+",\n") } if this.Extension != nil { s = append(s, "Extension: "+fmt.Sprintf("%#v", this.Extension)+",\n") } if this.NestedType != nil { s = append(s, "NestedType: "+fmt.Sprintf("%#v", this.NestedType)+",\n") } if this.EnumType != nil { s = append(s, "EnumType: "+fmt.Sprintf("%#v", this.EnumType)+",\n") } if this.ExtensionRange != nil { s = append(s, "ExtensionRange: "+fmt.Sprintf("%#v", this.ExtensionRange)+",\n") } if this.OneofDecl != nil { s = append(s, "OneofDecl: "+fmt.Sprintf("%#v", this.OneofDecl)+",\n") } if this.Options != nil { s = append(s, "Options: "+fmt.Sprintf("%#v", this.Options)+",\n") } if this.ReservedRange != nil { s = append(s, "ReservedRange: "+fmt.Sprintf("%#v", this.ReservedRange)+",\n") } if this.ReservedName != nil { s = append(s, "ReservedName: "+fmt.Sprintf("%#v", this.ReservedName)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DescriptorProto_ExtensionRange) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&descriptor.DescriptorProto_ExtensionRange{") if this.Start != nil { s = append(s, "Start: "+valueToGoStringDescriptor(this.Start, "int32")+",\n") } if this.End != nil { s = append(s, "End: "+valueToGoStringDescriptor(this.End, "int32")+",\n") } if this.Options != nil { s = append(s, "Options: "+fmt.Sprintf("%#v", this.Options)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DescriptorProto_ReservedRange) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&descriptor.DescriptorProto_ReservedRange{") if this.Start != nil { s = append(s, "Start: "+valueToGoStringDescriptor(this.Start, "int32")+",\n") } if this.End != nil { s = append(s, "End: "+valueToGoStringDescriptor(this.End, "int32")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ExtensionRangeOptions) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&descriptor.ExtensionRangeOptions{") if this.UninterpretedOption != nil { s = append(s, "UninterpretedOption: "+fmt.Sprintf("%#v", this.UninterpretedOption)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringDescriptor(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FieldDescriptorProto) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&descriptor.FieldDescriptorProto{") if this.Name != nil { s = append(s, "Name: "+valueToGoStringDescriptor(this.Name, "string")+",\n") } if this.Number != nil { s = append(s, "Number: "+valueToGoStringDescriptor(this.Number, "int32")+",\n") } if this.Label != nil { s = append(s, "Label: "+valueToGoStringDescriptor(this.Label, "FieldDescriptorProto_Label")+",\n") } if this.Type != nil { s = append(s, "Type: "+valueToGoStringDescriptor(this.Type, "FieldDescriptorProto_Type")+",\n") } if this.TypeName != nil { s = append(s, "TypeName: "+valueToGoStringDescriptor(this.TypeName, "string")+",\n") } if this.Extendee != nil { s = append(s, "Extendee: "+valueToGoStringDescriptor(this.Extendee, "string")+",\n") } if this.DefaultValue != nil { s = append(s, "DefaultValue: "+valueToGoStringDescriptor(this.DefaultValue, "string")+",\n") } if this.OneofIndex != nil { s = append(s, "OneofIndex: "+valueToGoStringDescriptor(this.OneofIndex, "int32")+",\n") } if this.JsonName != nil { s = append(s, "JsonName: "+valueToGoStringDescriptor(this.JsonName, "string")+",\n") } if this.Options != nil { s = append(s, "Options: "+fmt.Sprintf("%#v", this.Options)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OneofDescriptorProto) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&descriptor.OneofDescriptorProto{") if this.Name != nil { s = append(s, "Name: "+valueToGoStringDescriptor(this.Name, "string")+",\n") } if this.Options != nil { s = append(s, "Options: "+fmt.Sprintf("%#v", this.Options)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *EnumDescriptorProto) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&descriptor.EnumDescriptorProto{") if this.Name != nil { s = append(s, "Name: "+valueToGoStringDescriptor(this.Name, "string")+",\n") } if this.Value != nil { s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") } if this.Options != nil { s = append(s, "Options: "+fmt.Sprintf("%#v", this.Options)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *EnumValueDescriptorProto) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&descriptor.EnumValueDescriptorProto{") if this.Name != nil { s = append(s, "Name: "+valueToGoStringDescriptor(this.Name, "string")+",\n") } if this.Number != nil { s = append(s, "Number: "+valueToGoStringDescriptor(this.Number, "int32")+",\n") } if this.Options != nil { s = append(s, "Options: "+fmt.Sprintf("%#v", this.Options)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ServiceDescriptorProto) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&descriptor.ServiceDescriptorProto{") if this.Name != nil { s = append(s, "Name: "+valueToGoStringDescriptor(this.Name, "string")+",\n") } if this.Method != nil { s = append(s, "Method: "+fmt.Sprintf("%#v", this.Method)+",\n") } if this.Options != nil { s = append(s, "Options: "+fmt.Sprintf("%#v", this.Options)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MethodDescriptorProto) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 10) s = append(s, "&descriptor.MethodDescriptorProto{") if this.Name != nil { s = append(s, "Name: "+valueToGoStringDescriptor(this.Name, "string")+",\n") } if this.InputType != nil { s = append(s, "InputType: "+valueToGoStringDescriptor(this.InputType, "string")+",\n") } if this.OutputType != nil { s = append(s, "OutputType: "+valueToGoStringDescriptor(this.OutputType, "string")+",\n") } if this.Options != nil { s = append(s, "Options: "+fmt.Sprintf("%#v", this.Options)+",\n") } if this.ClientStreaming != nil { s = append(s, "ClientStreaming: "+valueToGoStringDescriptor(this.ClientStreaming, "bool")+",\n") } if this.ServerStreaming != nil { s = append(s, "ServerStreaming: "+valueToGoStringDescriptor(this.ServerStreaming, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FileOptions) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 23) s = append(s, "&descriptor.FileOptions{") if this.JavaPackage != nil { s = append(s, "JavaPackage: "+valueToGoStringDescriptor(this.JavaPackage, "string")+",\n") } if this.JavaOuterClassname != nil { s = append(s, "JavaOuterClassname: "+valueToGoStringDescriptor(this.JavaOuterClassname, "string")+",\n") } if this.JavaMultipleFiles != nil { s = append(s, "JavaMultipleFiles: "+valueToGoStringDescriptor(this.JavaMultipleFiles, "bool")+",\n") } if this.JavaGenerateEqualsAndHash != nil { s = append(s, "JavaGenerateEqualsAndHash: "+valueToGoStringDescriptor(this.JavaGenerateEqualsAndHash, "bool")+",\n") } if this.JavaStringCheckUtf8 != nil { s = append(s, "JavaStringCheckUtf8: "+valueToGoStringDescriptor(this.JavaStringCheckUtf8, "bool")+",\n") } if this.OptimizeFor != nil { s = append(s, "OptimizeFor: "+valueToGoStringDescriptor(this.OptimizeFor, "FileOptions_OptimizeMode")+",\n") } if this.GoPackage != nil { s = append(s, "GoPackage: "+valueToGoStringDescriptor(this.GoPackage, "string")+",\n") } if this.CcGenericServices != nil { s = append(s, "CcGenericServices: "+valueToGoStringDescriptor(this.CcGenericServices, "bool")+",\n") } if this.JavaGenericServices != nil { s = append(s, "JavaGenericServices: "+valueToGoStringDescriptor(this.JavaGenericServices, "bool")+",\n") } if this.PyGenericServices != nil { s = append(s, "PyGenericServices: "+valueToGoStringDescriptor(this.PyGenericServices, "bool")+",\n") } if this.PhpGenericServices != nil { s = append(s, "PhpGenericServices: "+valueToGoStringDescriptor(this.PhpGenericServices, "bool")+",\n") } if this.Deprecated != nil { s = append(s, "Deprecated: "+valueToGoStringDescriptor(this.Deprecated, "bool")+",\n") } if this.CcEnableArenas != nil { s = append(s, "CcEnableArenas: "+valueToGoStringDescriptor(this.CcEnableArenas, "bool")+",\n") } if this.ObjcClassPrefix != nil { s = append(s, "ObjcClassPrefix: "+valueToGoStringDescriptor(this.ObjcClassPrefix, "string")+",\n") } if this.CsharpNamespace != nil { s = append(s, "CsharpNamespace: "+valueToGoStringDescriptor(this.CsharpNamespace, "string")+",\n") } if this.SwiftPrefix != nil { s = append(s, "SwiftPrefix: "+valueToGoStringDescriptor(this.SwiftPrefix, "string")+",\n") } if this.PhpClassPrefix != nil { s = append(s, "PhpClassPrefix: "+valueToGoStringDescriptor(this.PhpClassPrefix, "string")+",\n") } if this.PhpNamespace != nil { s = append(s, "PhpNamespace: "+valueToGoStringDescriptor(this.PhpNamespace, "string")+",\n") } if this.UninterpretedOption != nil { s = append(s, "UninterpretedOption: "+fmt.Sprintf("%#v", this.UninterpretedOption)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringDescriptor(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MessageOptions) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 9) s = append(s, "&descriptor.MessageOptions{") if this.MessageSetWireFormat != nil { s = append(s, "MessageSetWireFormat: "+valueToGoStringDescriptor(this.MessageSetWireFormat, "bool")+",\n") } if this.NoStandardDescriptorAccessor != nil { s = append(s, "NoStandardDescriptorAccessor: "+valueToGoStringDescriptor(this.NoStandardDescriptorAccessor, "bool")+",\n") } if this.Deprecated != nil { s = append(s, "Deprecated: "+valueToGoStringDescriptor(this.Deprecated, "bool")+",\n") } if this.MapEntry != nil { s = append(s, "MapEntry: "+valueToGoStringDescriptor(this.MapEntry, "bool")+",\n") } if this.UninterpretedOption != nil { s = append(s, "UninterpretedOption: "+fmt.Sprintf("%#v", this.UninterpretedOption)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringDescriptor(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FieldOptions) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 11) s = append(s, "&descriptor.FieldOptions{") if this.Ctype != nil { s = append(s, "Ctype: "+valueToGoStringDescriptor(this.Ctype, "FieldOptions_CType")+",\n") } if this.Packed != nil { s = append(s, "Packed: "+valueToGoStringDescriptor(this.Packed, "bool")+",\n") } if this.Jstype != nil { s = append(s, "Jstype: "+valueToGoStringDescriptor(this.Jstype, "FieldOptions_JSType")+",\n") } if this.Lazy != nil { s = append(s, "Lazy: "+valueToGoStringDescriptor(this.Lazy, "bool")+",\n") } if this.Deprecated != nil { s = append(s, "Deprecated: "+valueToGoStringDescriptor(this.Deprecated, "bool")+",\n") } if this.Weak != nil { s = append(s, "Weak: "+valueToGoStringDescriptor(this.Weak, "bool")+",\n") } if this.UninterpretedOption != nil { s = append(s, "UninterpretedOption: "+fmt.Sprintf("%#v", this.UninterpretedOption)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringDescriptor(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OneofOptions) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&descriptor.OneofOptions{") if this.UninterpretedOption != nil { s = append(s, "UninterpretedOption: "+fmt.Sprintf("%#v", this.UninterpretedOption)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringDescriptor(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *EnumOptions) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&descriptor.EnumOptions{") if this.AllowAlias != nil { s = append(s, "AllowAlias: "+valueToGoStringDescriptor(this.AllowAlias, "bool")+",\n") } if this.Deprecated != nil { s = append(s, "Deprecated: "+valueToGoStringDescriptor(this.Deprecated, "bool")+",\n") } if this.UninterpretedOption != nil { s = append(s, "UninterpretedOption: "+fmt.Sprintf("%#v", this.UninterpretedOption)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringDescriptor(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *EnumValueOptions) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&descriptor.EnumValueOptions{") if this.Deprecated != nil { s = append(s, "Deprecated: "+valueToGoStringDescriptor(this.Deprecated, "bool")+",\n") } if this.UninterpretedOption != nil { s = append(s, "UninterpretedOption: "+fmt.Sprintf("%#v", this.UninterpretedOption)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringDescriptor(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ServiceOptions) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&descriptor.ServiceOptions{") if this.Deprecated != nil { s = append(s, "Deprecated: "+valueToGoStringDescriptor(this.Deprecated, "bool")+",\n") } if this.UninterpretedOption != nil { s = append(s, "UninterpretedOption: "+fmt.Sprintf("%#v", this.UninterpretedOption)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringDescriptor(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MethodOptions) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&descriptor.MethodOptions{") if this.Deprecated != nil { s = append(s, "Deprecated: "+valueToGoStringDescriptor(this.Deprecated, "bool")+",\n") } if this.IdempotencyLevel != nil { s = append(s, "IdempotencyLevel: "+valueToGoStringDescriptor(this.IdempotencyLevel, "MethodOptions_IdempotencyLevel")+",\n") } if this.UninterpretedOption != nil { s = append(s, "UninterpretedOption: "+fmt.Sprintf("%#v", this.UninterpretedOption)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringDescriptor(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UninterpretedOption) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 11) s = append(s, "&descriptor.UninterpretedOption{") if this.Name != nil { s = append(s, "Name: "+fmt.Sprintf("%#v", this.Name)+",\n") } if this.IdentifierValue != nil { s = append(s, "IdentifierValue: "+valueToGoStringDescriptor(this.IdentifierValue, "string")+",\n") } if this.PositiveIntValue != nil { s = append(s, "PositiveIntValue: "+valueToGoStringDescriptor(this.PositiveIntValue, "uint64")+",\n") } if this.NegativeIntValue != nil { s = append(s, "NegativeIntValue: "+valueToGoStringDescriptor(this.NegativeIntValue, "int64")+",\n") } if this.DoubleValue != nil { s = append(s, "DoubleValue: "+valueToGoStringDescriptor(this.DoubleValue, "float64")+",\n") } if this.StringValue != nil { s = append(s, "StringValue: "+valueToGoStringDescriptor(this.StringValue, "byte")+",\n") } if this.AggregateValue != nil { s = append(s, "AggregateValue: "+valueToGoStringDescriptor(this.AggregateValue, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UninterpretedOption_NamePart) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&descriptor.UninterpretedOption_NamePart{") if this.NamePart != nil { s = append(s, "NamePart: "+valueToGoStringDescriptor(this.NamePart, "string")+",\n") } if this.IsExtension != nil { s = append(s, "IsExtension: "+valueToGoStringDescriptor(this.IsExtension, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *SourceCodeInfo) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&descriptor.SourceCodeInfo{") if this.Location != nil { s = append(s, "Location: "+fmt.Sprintf("%#v", this.Location)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *SourceCodeInfo_Location) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 9) s = append(s, "&descriptor.SourceCodeInfo_Location{") if this.Path != nil { s = append(s, "Path: "+fmt.Sprintf("%#v", this.Path)+",\n") } if this.Span != nil { s = append(s, "Span: "+fmt.Sprintf("%#v", this.Span)+",\n") } if this.LeadingComments != nil { s = append(s, "LeadingComments: "+valueToGoStringDescriptor(this.LeadingComments, "string")+",\n") } if this.TrailingComments != nil { s = append(s, "TrailingComments: "+valueToGoStringDescriptor(this.TrailingComments, "string")+",\n") } if this.LeadingDetachedComments != nil { s = append(s, "LeadingDetachedComments: "+fmt.Sprintf("%#v", this.LeadingDetachedComments)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *GeneratedCodeInfo) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&descriptor.GeneratedCodeInfo{") if this.Annotation != nil { s = append(s, "Annotation: "+fmt.Sprintf("%#v", this.Annotation)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *GeneratedCodeInfo_Annotation) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&descriptor.GeneratedCodeInfo_Annotation{") if this.Path != nil { s = append(s, "Path: "+fmt.Sprintf("%#v", this.Path)+",\n") } if this.SourceFile != nil { s = append(s, "SourceFile: "+valueToGoStringDescriptor(this.SourceFile, "string")+",\n") } if this.Begin != nil { s = append(s, "Begin: "+valueToGoStringDescriptor(this.Begin, "int32")+",\n") } if this.End != nil { s = append(s, "End: "+valueToGoStringDescriptor(this.End, "int32")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringDescriptor(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func extensionToGoStringDescriptor(m github_com_gogo_protobuf_proto.Message) string { e := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(m) if e == nil { return "nil" } s := "proto.NewUnsafeXXX_InternalExtensions(map[int32]proto.Extension{" keys := make([]int, 0, len(e)) for k := range e { keys = append(keys, int(k)) } sort.Ints(keys) ss := []string{} for _, k := range keys { ss = append(ss, strconv.Itoa(k)+": "+e[int32(k)].GoString()) } s += strings.Join(ss, ",") + "})" return s } golang-gogoprotobuf-0.5/protoc-gen-gogo/descriptor/descriptor_test.go000066400000000000000000000015251317075173200263000ustar00rootroot00000000000000package descriptor_test import ( "fmt" "testing" tpb "github.com/gogo/protobuf/proto/testdata" "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" ) func TestMessage(t *testing.T) { var msg *descriptor.DescriptorProto fd, md := descriptor.ForMessage(msg) if pkg, want := fd.GetPackage(), "google.protobuf"; pkg != want { t.Errorf("descriptor.ForMessage(%T).GetPackage() = %q; want %q", msg, pkg, want) } if name, want := md.GetName(), "DescriptorProto"; name != want { t.Fatalf("descriptor.ForMessage(%T).GetName() = %q; want %q", msg, name, want) } } func Example_Options() { var msg *tpb.MyMessageSet _, md := descriptor.ForMessage(msg) if md.GetOptions().GetMessageSetWireFormat() { fmt.Printf("%v uses option message_set_wire_format.\n", md.GetName()) } // Output: // MyMessageSet uses option message_set_wire_format. } golang-gogoprotobuf-0.5/protoc-gen-gogo/descriptor/helper.go000066400000000000000000000247371317075173200243540ustar00rootroot00000000000000// 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. package descriptor import ( "strings" ) func (msg *DescriptorProto) GetMapFields() (*FieldDescriptorProto, *FieldDescriptorProto) { if !msg.GetOptions().GetMapEntry() { return nil, nil } return msg.GetField()[0], msg.GetField()[1] } func dotToUnderscore(r rune) rune { if r == '.' { return '_' } return r } func (field *FieldDescriptorProto) WireType() (wire int) { switch *field.Type { case FieldDescriptorProto_TYPE_DOUBLE: return 1 case FieldDescriptorProto_TYPE_FLOAT: return 5 case FieldDescriptorProto_TYPE_INT64: return 0 case FieldDescriptorProto_TYPE_UINT64: return 0 case FieldDescriptorProto_TYPE_INT32: return 0 case FieldDescriptorProto_TYPE_UINT32: return 0 case FieldDescriptorProto_TYPE_FIXED64: return 1 case FieldDescriptorProto_TYPE_FIXED32: return 5 case FieldDescriptorProto_TYPE_BOOL: return 0 case FieldDescriptorProto_TYPE_STRING: return 2 case FieldDescriptorProto_TYPE_GROUP: return 2 case FieldDescriptorProto_TYPE_MESSAGE: return 2 case FieldDescriptorProto_TYPE_BYTES: return 2 case FieldDescriptorProto_TYPE_ENUM: return 0 case FieldDescriptorProto_TYPE_SFIXED32: return 5 case FieldDescriptorProto_TYPE_SFIXED64: return 1 case FieldDescriptorProto_TYPE_SINT32: return 0 case FieldDescriptorProto_TYPE_SINT64: return 0 } panic("unreachable") } func (field *FieldDescriptorProto) GetKeyUint64() (x uint64) { packed := field.IsPacked() wireType := field.WireType() fieldNumber := field.GetNumber() if packed { wireType = 2 } x = uint64(uint32(fieldNumber)<<3 | uint32(wireType)) return x } func (field *FieldDescriptorProto) GetKey3Uint64() (x uint64) { packed := field.IsPacked3() wireType := field.WireType() fieldNumber := field.GetNumber() if packed { wireType = 2 } x = uint64(uint32(fieldNumber)<<3 | uint32(wireType)) return x } func (field *FieldDescriptorProto) GetKey() []byte { x := field.GetKeyUint64() i := 0 keybuf := make([]byte, 0) for i = 0; x > 127; i++ { keybuf = append(keybuf, 0x80|uint8(x&0x7F)) x >>= 7 } keybuf = append(keybuf, uint8(x)) return keybuf } func (field *FieldDescriptorProto) GetKey3() []byte { x := field.GetKey3Uint64() i := 0 keybuf := make([]byte, 0) for i = 0; x > 127; i++ { keybuf = append(keybuf, 0x80|uint8(x&0x7F)) x >>= 7 } keybuf = append(keybuf, uint8(x)) return keybuf } func (desc *FileDescriptorSet) GetField(packageName, messageName, fieldName string) *FieldDescriptorProto { msg := desc.GetMessage(packageName, messageName) if msg == nil { return nil } for _, field := range msg.GetField() { if field.GetName() == fieldName { return field } } return nil } func (file *FileDescriptorProto) GetMessage(typeName string) *DescriptorProto { for _, msg := range file.GetMessageType() { if msg.GetName() == typeName { return msg } nes := file.GetNestedMessage(msg, strings.TrimPrefix(typeName, msg.GetName()+".")) if nes != nil { return nes } } return nil } func (file *FileDescriptorProto) GetNestedMessage(msg *DescriptorProto, typeName string) *DescriptorProto { for _, nes := range msg.GetNestedType() { if nes.GetName() == typeName { return nes } res := file.GetNestedMessage(nes, strings.TrimPrefix(typeName, nes.GetName()+".")) if res != nil { return res } } return nil } func (desc *FileDescriptorSet) GetMessage(packageName string, typeName string) *DescriptorProto { for _, file := range desc.GetFile() { if strings.Map(dotToUnderscore, file.GetPackage()) != strings.Map(dotToUnderscore, packageName) { continue } for _, msg := range file.GetMessageType() { if msg.GetName() == typeName { return msg } } for _, msg := range file.GetMessageType() { for _, nes := range msg.GetNestedType() { if nes.GetName() == typeName { return nes } if msg.GetName()+"."+nes.GetName() == typeName { return nes } } } } return nil } func (desc *FileDescriptorSet) IsProto3(packageName string, typeName string) bool { for _, file := range desc.GetFile() { if strings.Map(dotToUnderscore, file.GetPackage()) != strings.Map(dotToUnderscore, packageName) { continue } for _, msg := range file.GetMessageType() { if msg.GetName() == typeName { return file.GetSyntax() == "proto3" } } for _, msg := range file.GetMessageType() { for _, nes := range msg.GetNestedType() { if nes.GetName() == typeName { return file.GetSyntax() == "proto3" } if msg.GetName()+"."+nes.GetName() == typeName { return file.GetSyntax() == "proto3" } } } } return false } func (msg *DescriptorProto) IsExtendable() bool { return len(msg.GetExtensionRange()) > 0 } func (desc *FileDescriptorSet) FindExtension(packageName string, typeName string, fieldName string) (extPackageName string, field *FieldDescriptorProto) { parent := desc.GetMessage(packageName, typeName) if parent == nil { return "", nil } if !parent.IsExtendable() { return "", nil } extendee := "." + packageName + "." + typeName for _, file := range desc.GetFile() { for _, ext := range file.GetExtension() { if strings.Map(dotToUnderscore, file.GetPackage()) == strings.Map(dotToUnderscore, packageName) { if !(ext.GetExtendee() == typeName || ext.GetExtendee() == extendee) { continue } } else { if ext.GetExtendee() != extendee { continue } } if ext.GetName() == fieldName { return file.GetPackage(), ext } } } return "", nil } func (desc *FileDescriptorSet) FindExtensionByFieldNumber(packageName string, typeName string, fieldNum int32) (extPackageName string, field *FieldDescriptorProto) { parent := desc.GetMessage(packageName, typeName) if parent == nil { return "", nil } if !parent.IsExtendable() { return "", nil } extendee := "." + packageName + "." + typeName for _, file := range desc.GetFile() { for _, ext := range file.GetExtension() { if strings.Map(dotToUnderscore, file.GetPackage()) == strings.Map(dotToUnderscore, packageName) { if !(ext.GetExtendee() == typeName || ext.GetExtendee() == extendee) { continue } } else { if ext.GetExtendee() != extendee { continue } } if ext.GetNumber() == fieldNum { return file.GetPackage(), ext } } } return "", nil } func (desc *FileDescriptorSet) FindMessage(packageName string, typeName string, fieldName string) (msgPackageName string, msgName string) { parent := desc.GetMessage(packageName, typeName) if parent == nil { return "", "" } field := parent.GetFieldDescriptor(fieldName) if field == nil { var extPackageName string extPackageName, field = desc.FindExtension(packageName, typeName, fieldName) if field == nil { return "", "" } packageName = extPackageName } typeNames := strings.Split(field.GetTypeName(), ".") if len(typeNames) == 1 { msg := desc.GetMessage(packageName, typeName) if msg == nil { return "", "" } return packageName, msg.GetName() } if len(typeNames) > 2 { for i := 1; i < len(typeNames)-1; i++ { packageName = strings.Join(typeNames[1:len(typeNames)-i], ".") typeName = strings.Join(typeNames[len(typeNames)-i:], ".") msg := desc.GetMessage(packageName, typeName) if msg != nil { typeNames := strings.Split(msg.GetName(), ".") if len(typeNames) == 1 { return packageName, msg.GetName() } return strings.Join(typeNames[1:len(typeNames)-1], "."), typeNames[len(typeNames)-1] } } } return "", "" } func (msg *DescriptorProto) GetFieldDescriptor(fieldName string) *FieldDescriptorProto { for _, field := range msg.GetField() { if field.GetName() == fieldName { return field } } return nil } func (desc *FileDescriptorSet) GetEnum(packageName string, typeName string) *EnumDescriptorProto { for _, file := range desc.GetFile() { if strings.Map(dotToUnderscore, file.GetPackage()) != strings.Map(dotToUnderscore, packageName) { continue } for _, enum := range file.GetEnumType() { if enum.GetName() == typeName { return enum } } } return nil } func (f *FieldDescriptorProto) IsEnum() bool { return *f.Type == FieldDescriptorProto_TYPE_ENUM } func (f *FieldDescriptorProto) IsMessage() bool { return *f.Type == FieldDescriptorProto_TYPE_MESSAGE } func (f *FieldDescriptorProto) IsBytes() bool { return *f.Type == FieldDescriptorProto_TYPE_BYTES } func (f *FieldDescriptorProto) IsRepeated() bool { return f.Label != nil && *f.Label == FieldDescriptorProto_LABEL_REPEATED } func (f *FieldDescriptorProto) IsString() bool { return *f.Type == FieldDescriptorProto_TYPE_STRING } func (f *FieldDescriptorProto) IsBool() bool { return *f.Type == FieldDescriptorProto_TYPE_BOOL } func (f *FieldDescriptorProto) IsRequired() bool { return f.Label != nil && *f.Label == FieldDescriptorProto_LABEL_REQUIRED } func (f *FieldDescriptorProto) IsPacked() bool { return f.Options != nil && f.GetOptions().GetPacked() } func (f *FieldDescriptorProto) IsPacked3() bool { if f.IsRepeated() && f.IsScalar() { if f.Options == nil || f.GetOptions().Packed == nil { return true } return f.Options != nil && f.GetOptions().GetPacked() } return false } func (m *DescriptorProto) HasExtension() bool { return len(m.ExtensionRange) > 0 } golang-gogoprotobuf-0.5/protoc-gen-gogo/doc.go000066400000000000000000000046051317075173200214540ustar00rootroot00000000000000// 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 golang-gogoprotobuf-0.5/protoc-gen-gogo/generator/000077500000000000000000000000001317075173200223415ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogo/generator/generator.go000066400000000000000000003243571317075173200246740ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // 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. /* The code generator for the plugin for the Google protocol buffer compiler. It generates Go code from the protocol buffer description files read by the main routine. */ package generator import ( "bufio" "bytes" "compress/gzip" "fmt" "go/parser" "go/printer" "go/token" "log" "os" "path" "sort" "strconv" "strings" "unicode" "unicode/utf8" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" plugin "github.com/gogo/protobuf/protoc-gen-gogo/plugin" ) // generatedCodeVersion indicates a version of the generated code. // It is incremented whenever an incompatibility between the generated code and // proto package is introduced; the generated code references // a constant, proto.ProtoPackageIsVersionN (where N is generatedCodeVersion). const generatedCodeVersion = 2 // A Plugin provides functionality to add to the output during Go code generation, // such as to produce RPC stubs. type Plugin interface { // Name identifies the plugin. Name() string // Init is called once after data structures are built but before // code generation begins. Init(g *Generator) // Generate produces the code generated by the plugin for this file, // except for the imports, by calling the generator's methods P, In, and Out. Generate(file *FileDescriptor) // GenerateImports produces the import declarations for this file. // It is called after Generate. GenerateImports(file *FileDescriptor) } type pluginSlice []Plugin func (ps pluginSlice) Len() int { return len(ps) } func (ps pluginSlice) Less(i, j int) bool { return ps[i].Name() < ps[j].Name() } func (ps pluginSlice) Swap(i, j int) { ps[i], ps[j] = ps[j], ps[i] } var plugins pluginSlice // RegisterPlugin installs a (second-order) plugin to be run when the Go output is generated. // It is typically called during initialization. func RegisterPlugin(p Plugin) { plugins = append(plugins, p) } // Each type we import as a protocol buffer (other than FileDescriptorProto) needs // a pointer to the FileDescriptorProto that represents it. These types achieve that // wrapping by placing each Proto inside a struct with the pointer to its File. The // structs have the same names as their contents, with "Proto" removed. // FileDescriptor is used to store the things that it points to. // The file and package name method are common to messages and enums. type common struct { file *descriptor.FileDescriptorProto // File this object comes from. } // PackageName is name in the package clause in the generated file. func (c *common) PackageName() string { return uniquePackageOf(c.file) } func (c *common) File() *descriptor.FileDescriptorProto { return c.file } func fileIsProto3(file *descriptor.FileDescriptorProto) bool { return file.GetSyntax() == "proto3" } func (c *common) proto3() bool { return fileIsProto3(c.file) } // Descriptor represents a protocol buffer message. type Descriptor struct { common *descriptor.DescriptorProto parent *Descriptor // The containing message, if any. nested []*Descriptor // Inner messages, if any. enums []*EnumDescriptor // Inner enums, if any. ext []*ExtensionDescriptor // Extensions, if any. typename []string // Cached typename vector. index int // The index into the container, whether the file or another message. path string // The SourceCodeInfo path as comma-separated integers. group bool } // TypeName returns the elements of the dotted type name. // The package name is not part of this name. func (d *Descriptor) TypeName() []string { if d.typename != nil { return d.typename } n := 0 for parent := d; parent != nil; parent = parent.parent { n++ } s := make([]string, n, n) for parent := d; parent != nil; parent = parent.parent { n-- s[n] = parent.GetName() } d.typename = s return s } func (d *Descriptor) allowOneof() bool { return true } // EnumDescriptor describes an enum. If it's at top level, its parent will be nil. // Otherwise it will be the descriptor of the message in which it is defined. type EnumDescriptor struct { common *descriptor.EnumDescriptorProto parent *Descriptor // The containing message, if any. typename []string // Cached typename vector. index int // The index into the container, whether the file or a message. path string // The SourceCodeInfo path as comma-separated integers. } // TypeName returns the elements of the dotted type name. // The package name is not part of this name. func (e *EnumDescriptor) TypeName() (s []string) { if e.typename != nil { return e.typename } name := e.GetName() if e.parent == nil { s = make([]string, 1) } else { pname := e.parent.TypeName() s = make([]string, len(pname)+1) copy(s, pname) } s[len(s)-1] = name e.typename = s return s } // alias provides the TypeName corrected for the application of any naming // extensions on the enum type. It should be used for generating references to // the Go types and for calculating prefixes. func (e *EnumDescriptor) alias() (s []string) { s = e.TypeName() if gogoproto.IsEnumCustomName(e.EnumDescriptorProto) { s[len(s)-1] = gogoproto.GetEnumCustomName(e.EnumDescriptorProto) } return } // Everything but the last element of the full type name, CamelCased. // The values of type Foo.Bar are call Foo_value1... not Foo_Bar_value1... . func (e *EnumDescriptor) prefix() string { typeName := e.alias() if e.parent == nil { // If the enum is not part of a message, the prefix is just the type name. return CamelCase(typeName[len(typeName)-1]) + "_" } return CamelCaseSlice(typeName[0:len(typeName)-1]) + "_" } // The integer value of the named constant in this enumerated type. func (e *EnumDescriptor) integerValueAsString(name string) string { for _, c := range e.Value { if c.GetName() == name { return fmt.Sprint(c.GetNumber()) } } log.Fatal("cannot find value for enum constant") return "" } // ExtensionDescriptor describes an extension. If it's at top level, its parent will be nil. // Otherwise it will be the descriptor of the message in which it is defined. type ExtensionDescriptor struct { common *descriptor.FieldDescriptorProto parent *Descriptor // The containing message, if any. } // TypeName returns the elements of the dotted type name. // The package name is not part of this name. func (e *ExtensionDescriptor) TypeName() (s []string) { name := e.GetName() if e.parent == nil { // top-level extension s = make([]string, 1) } else { pname := e.parent.TypeName() s = make([]string, len(pname)+1) copy(s, pname) } s[len(s)-1] = name return s } // DescName returns the variable name used for the generated descriptor. func (e *ExtensionDescriptor) DescName() string { // The full type name. typeName := e.TypeName() // Each scope of the extension is individually CamelCased, and all are joined with "_" with an "E_" prefix. for i, s := range typeName { typeName[i] = CamelCase(s) } return "E_" + strings.Join(typeName, "_") } // ImportedDescriptor describes a type that has been publicly imported from another file. type ImportedDescriptor struct { common o Object } func (id *ImportedDescriptor) TypeName() []string { return id.o.TypeName() } // FileDescriptor describes an protocol buffer descriptor file (.proto). // It includes slices of all the messages and enums defined within it. // Those slices are constructed by WrapTypes. type FileDescriptor struct { *descriptor.FileDescriptorProto desc []*Descriptor // All the messages defined in this file. enum []*EnumDescriptor // All the enums defined in this file. ext []*ExtensionDescriptor // All the top-level extensions defined in this file. imp []*ImportedDescriptor // All types defined in files publicly imported by this file. // Comments, stored as a map of path (comma-separated integers) to the comment. comments map[string]*descriptor.SourceCodeInfo_Location // The full list of symbols that are exported, // as a map from the exported object to its symbols. // This is used for supporting public imports. exported map[Object][]symbol index int // The index of this file in the list of files to generate code for proto3 bool // whether to generate proto3 code for this file } // PackageName is the package name we'll use in the generated code to refer to this file. func (d *FileDescriptor) PackageName() string { return uniquePackageOf(d.FileDescriptorProto) } // VarName is the variable name we'll use in the generated code to refer // to the compressed bytes of this descriptor. It is not exported, so // it is only valid inside the generated package. func (d *FileDescriptor) VarName() string { return fmt.Sprintf("fileDescriptor%v", FileName(d)) } // goPackageOption interprets the file's go_package option. // If there is no go_package, it returns ("", "", false). // If there's a simple name, it returns ("", pkg, true). // If the option implies an import path, it returns (impPath, pkg, true). func (d *FileDescriptor) goPackageOption() (impPath, pkg string, ok bool) { pkg = d.GetOptions().GetGoPackage() if pkg == "" { return } ok = true // The presence of a slash implies there's an import path. slash := strings.LastIndex(pkg, "/") if slash < 0 { return } impPath, pkg = pkg, pkg[slash+1:] // A semicolon-delimited suffix overrides the package name. sc := strings.IndexByte(impPath, ';') if sc < 0 { return } impPath, pkg = impPath[:sc], impPath[sc+1:] return } // goPackageName returns the Go package name to use in the // generated Go file. The result explicit reports whether the name // came from an option go_package statement. If explicit is false, // the name was derived from the protocol buffer's package statement // or the input file name. func (d *FileDescriptor) goPackageName() (name string, explicit bool) { // Does the file have a "go_package" option? if _, pkg, ok := d.goPackageOption(); ok { return pkg, true } // Does the file have a package clause? if pkg := d.GetPackage(); pkg != "" { return pkg, false } // Use the file base name. return baseName(d.GetName()), false } // goFileName returns the output name for the generated Go file. func (d *FileDescriptor) goFileName() string { name := *d.Name if ext := path.Ext(name); ext == ".proto" || ext == ".protodevel" { name = name[:len(name)-len(ext)] } name += ".pb.go" // Does the file have a "go_package" option? // If it does, it may override the filename. if impPath, _, ok := d.goPackageOption(); ok && impPath != "" { // Replace the existing dirname with the declared import path. _, name = path.Split(name) name = path.Join(impPath, name) return name } return name } func (d *FileDescriptor) addExport(obj Object, sym symbol) { d.exported[obj] = append(d.exported[obj], sym) } // symbol is an interface representing an exported Go symbol. type symbol interface { // GenerateAlias should generate an appropriate alias // for the symbol from the named package. GenerateAlias(g *Generator, pkg string) } type messageSymbol struct { sym string hasExtensions, isMessageSet bool hasOneof bool getters []getterSymbol } type getterSymbol struct { name string typ string typeName string // canonical name in proto world; empty for proto.Message and similar genType bool // whether typ contains a generated type (message/group/enum) } func (ms *messageSymbol) GenerateAlias(g *Generator, pkg string) { remoteSym := pkg + "." + ms.sym g.P("type ", ms.sym, " ", remoteSym) g.P("func (m *", ms.sym, ") Reset() { (*", remoteSym, ")(m).Reset() }") g.P("func (m *", ms.sym, ") String() string { return (*", remoteSym, ")(m).String() }") g.P("func (*", ms.sym, ") ProtoMessage() {}") if ms.hasExtensions { g.P("func (*", ms.sym, ") ExtensionRangeArray() []", g.Pkg["proto"], ".ExtensionRange ", "{ return (*", remoteSym, ")(nil).ExtensionRangeArray() }") if ms.isMessageSet { g.P("func (m *", ms.sym, ") Marshal() ([]byte, error) ", "{ return (*", remoteSym, ")(m).Marshal() }") g.P("func (m *", ms.sym, ") Unmarshal(buf []byte) error ", "{ return (*", remoteSym, ")(m).Unmarshal(buf) }") } } if ms.hasOneof { // Oneofs and public imports do not mix well. // We can make them work okay for the binary format, // but they're going to break weirdly for text/JSON. enc := "_" + ms.sym + "_OneofMarshaler" dec := "_" + ms.sym + "_OneofUnmarshaler" size := "_" + ms.sym + "_OneofSizer" encSig := "(msg " + g.Pkg["proto"] + ".Message, b *" + g.Pkg["proto"] + ".Buffer) error" decSig := "(msg " + g.Pkg["proto"] + ".Message, tag, wire int, b *" + g.Pkg["proto"] + ".Buffer) (bool, error)" sizeSig := "(msg " + g.Pkg["proto"] + ".Message) int" g.P("func (m *", ms.sym, ") XXX_OneofFuncs() (func", encSig, ", func", decSig, ", func", sizeSig, ", []interface{}) {") g.P("return ", enc, ", ", dec, ", ", size, ", nil") g.P("}") g.P("func ", enc, encSig, " {") g.P("m := msg.(*", ms.sym, ")") g.P("m0 := (*", remoteSym, ")(m)") g.P("enc, _, _, _ := m0.XXX_OneofFuncs()") g.P("return enc(m0, b)") g.P("}") g.P("func ", dec, decSig, " {") g.P("m := msg.(*", ms.sym, ")") g.P("m0 := (*", remoteSym, ")(m)") g.P("_, dec, _, _ := m0.XXX_OneofFuncs()") g.P("return dec(m0, tag, wire, b)") g.P("}") g.P("func ", size, sizeSig, " {") g.P("m := msg.(*", ms.sym, ")") g.P("m0 := (*", remoteSym, ")(m)") g.P("_, _, size, _ := m0.XXX_OneofFuncs()") g.P("return size(m0)") g.P("}") } for _, get := range ms.getters { if get.typeName != "" { g.RecordTypeUse(get.typeName) } typ := get.typ val := "(*" + remoteSym + ")(m)." + get.name + "()" if get.genType { // typ will be "*pkg.T" (message/group) or "pkg.T" (enum) // or "map[t]*pkg.T" (map to message/enum). // The first two of those might have a "[]" prefix if it is repeated. // Drop any package qualifier since we have hoisted the type into this package. rep := strings.HasPrefix(typ, "[]") if rep { typ = typ[2:] } isMap := strings.HasPrefix(typ, "map[") star := typ[0] == '*' if !isMap { // map types handled lower down typ = typ[strings.Index(typ, ".")+1:] } if star { typ = "*" + typ } if rep { // Go does not permit conversion between slice types where both // element types are named. That means we need to generate a bit // of code in this situation. // typ is the element type. // val is the expression to get the slice from the imported type. ctyp := typ // conversion type expression; "Foo" or "(*Foo)" if star { ctyp = "(" + typ + ")" } g.P("func (m *", ms.sym, ") ", get.name, "() []", typ, " {") g.In() g.P("o := ", val) g.P("if o == nil {") g.In() g.P("return nil") g.Out() g.P("}") g.P("s := make([]", typ, ", len(o))") g.P("for i, x := range o {") g.In() g.P("s[i] = ", ctyp, "(x)") g.Out() g.P("}") g.P("return s") g.Out() g.P("}") continue } if isMap { // Split map[keyTyp]valTyp. bra, ket := strings.Index(typ, "["), strings.Index(typ, "]") keyTyp, valTyp := typ[bra+1:ket], typ[ket+1:] // Drop any package qualifier. // Only the value type may be foreign. star := valTyp[0] == '*' valTyp = valTyp[strings.Index(valTyp, ".")+1:] if star { valTyp = "*" + valTyp } maptyp := "map[" + keyTyp + "]" + valTyp g.P("func (m *", ms.sym, ") ", get.name, "() ", typ, " {") g.P("o := ", val) g.P("if o == nil { return nil }") g.P("s := make(", maptyp, ", len(o))") g.P("for k, v := range o {") g.P("s[k] = (", valTyp, ")(v)") g.P("}") g.P("return s") g.P("}") continue } // Convert imported type into the forwarding type. val = "(" + typ + ")(" + val + ")" } g.P("func (m *", ms.sym, ") ", get.name, "() ", typ, " { return ", val, " }") } } type enumSymbol struct { name string proto3 bool // Whether this came from a proto3 file. } func (es enumSymbol) GenerateAlias(g *Generator, pkg string) { s := es.name g.P("type ", s, " ", pkg, ".", s) g.P("var ", s, "_name = ", pkg, ".", s, "_name") g.P("var ", s, "_value = ", pkg, ".", s, "_value") g.P("func (x ", s, ") String() string { return (", pkg, ".", s, ")(x).String() }") if !es.proto3 { g.P("func (x ", s, ") Enum() *", s, "{ return (*", s, ")((", pkg, ".", s, ")(x).Enum()) }") g.P("func (x *", s, ") UnmarshalJSON(data []byte) error { return (*", pkg, ".", s, ")(x).UnmarshalJSON(data) }") } } type constOrVarSymbol struct { sym string typ string // either "const" or "var" cast string // if non-empty, a type cast is required (used for enums) } func (cs constOrVarSymbol) GenerateAlias(g *Generator, pkg string) { v := pkg + "." + cs.sym if cs.cast != "" { v = cs.cast + "(" + v + ")" } g.P(cs.typ, " ", cs.sym, " = ", v) } // Object is an interface abstracting the abilities shared by enums, messages, extensions and imported objects. type Object interface { PackageName() string // The name we use in our output (a_b_c), possibly renamed for uniqueness. TypeName() []string File() *descriptor.FileDescriptorProto } // Each package name we generate must be unique. The package we're generating // gets its own name but every other package must have a unique name that does // not conflict in the code we generate. These names are chosen globally (although // they don't have to be, it simplifies things to do them globally). func uniquePackageOf(fd *descriptor.FileDescriptorProto) string { s, ok := uniquePackageName[fd] if !ok { log.Fatal("internal error: no package name defined for " + fd.GetName()) } return s } // Generator is the type whose methods generate the output, stored in the associated response structure. type Generator struct { *bytes.Buffer Request *plugin.CodeGeneratorRequest // The input. Response *plugin.CodeGeneratorResponse // The output. Param map[string]string // Command-line parameters. PackageImportPath string // Go import path of the package we're generating code for ImportPrefix string // String to prefix to imported package file names. ImportMap map[string]string // Mapping from .proto file name to import path Pkg map[string]string // The names under which we import support packages packageName string // What we're calling ourselves. allFiles []*FileDescriptor // All files in the tree allFilesByName map[string]*FileDescriptor // All files by filename. genFiles []*FileDescriptor // Those files we will generate output for. file *FileDescriptor // The file we are compiling now. usedPackages map[string]bool // Names of packages used in current file. typeNameToObject map[string]Object // Key is a fully-qualified name in input syntax. init []string // Lines to emit in the init function. indent string writeOutput bool customImports []string writtenImports map[string]bool // For de-duplicating written imports } // New creates a new generator and allocates the request and response protobufs. func New() *Generator { g := new(Generator) g.Buffer = new(bytes.Buffer) g.Request = new(plugin.CodeGeneratorRequest) g.Response = new(plugin.CodeGeneratorResponse) g.writtenImports = make(map[string]bool) uniquePackageName = make(map[*descriptor.FileDescriptorProto]string) pkgNamesInUse = make(map[string][]*FileDescriptor) return g } // Error reports a problem, including an error, and exits the program. func (g *Generator) Error(err error, msgs ...string) { s := strings.Join(msgs, " ") + ":" + err.Error() log.Print("protoc-gen-gogo: error:", s) os.Exit(1) } // Fail reports a problem and exits the program. func (g *Generator) Fail(msgs ...string) { s := strings.Join(msgs, " ") log.Print("protoc-gen-gogo: error:", s) os.Exit(1) } // CommandLineParameters breaks the comma-separated list of key=value pairs // in the parameter (a member of the request protobuf) into a key/value map. // It then sets file name mappings defined by those entries. func (g *Generator) CommandLineParameters(parameter string) { g.Param = make(map[string]string) for _, p := range strings.Split(parameter, ",") { if i := strings.Index(p, "="); i < 0 { g.Param[p] = "" } else { g.Param[p[0:i]] = p[i+1:] } } g.ImportMap = make(map[string]string) pluginList := "none" // Default list of plugin names to enable (empty means all). for k, v := range g.Param { switch k { case "import_prefix": g.ImportPrefix = v case "import_path": g.PackageImportPath = v case "plugins": pluginList = v default: if len(k) > 0 && k[0] == 'M' { g.ImportMap[k[1:]] = v } } } if pluginList == "" { return } if pluginList == "none" { pluginList = "" } gogoPluginNames := []string{"unmarshal", "unsafeunmarshaler", "union", "stringer", "size", "protosizer", "populate", "marshalto", "unsafemarshaler", "gostring", "face", "equal", "enumstringer", "embedcheck", "description", "defaultcheck", "oneofcheck", "compare"} pluginList = strings.Join(append(gogoPluginNames, pluginList), "+") if pluginList != "" { // Amend the set of plugins. enabled := make(map[string]bool) for _, name := range strings.Split(pluginList, "+") { enabled[name] = true } var nplugins pluginSlice for _, p := range plugins { if enabled[p.Name()] { nplugins = append(nplugins, p) } } sort.Sort(nplugins) plugins = nplugins } } // DefaultPackageName returns the package name printed for the object. // If its file is in a different package, it returns the package name we're using for this file, plus ".". // Otherwise it returns the empty string. func (g *Generator) DefaultPackageName(obj Object) string { pkg := obj.PackageName() if pkg == g.packageName { return "" } return pkg + "." } // For each input file, the unique package name to use, underscored. var uniquePackageName = make(map[*descriptor.FileDescriptorProto]string) // Package names already registered. Key is the name from the .proto file; // value is the name that appears in the generated code. var pkgNamesInUse = make(map[string][]*FileDescriptor) // Create and remember a guaranteed unique package name for this file descriptor. // Pkg is the candidate name. If f is nil, it's a builtin package like "proto" and // has no file descriptor. func RegisterUniquePackageName(pkg string, f *FileDescriptor) string { // Convert dots to underscores before finding a unique alias. pkg = strings.Map(badToUnderscore, pkg) var i = -1 var ptr *FileDescriptor = nil for i, ptr = range pkgNamesInUse[pkg] { if ptr == f { if i == 0 { return pkg } return pkg + strconv.Itoa(i) } } pkgNamesInUse[pkg] = append(pkgNamesInUse[pkg], f) i += 1 if i > 0 { pkg = pkg + strconv.Itoa(i) } if f != nil { uniquePackageName[f.FileDescriptorProto] = pkg } return pkg } var isGoKeyword = map[string]bool{ "break": true, "case": true, "chan": true, "const": true, "continue": true, "default": true, "else": true, "defer": true, "fallthrough": true, "for": true, "func": true, "go": true, "goto": true, "if": true, "import": true, "interface": true, "map": true, "package": true, "range": true, "return": true, "select": true, "struct": true, "switch": true, "type": true, "var": true, } // defaultGoPackage returns the package name to use, // derived from the import path of the package we're building code for. func (g *Generator) defaultGoPackage() string { p := g.PackageImportPath if i := strings.LastIndex(p, "/"); i >= 0 { p = p[i+1:] } if p == "" { return "" } p = strings.Map(badToUnderscore, p) // Identifier must not be keyword: insert _. if isGoKeyword[p] { p = "_" + p } // Identifier must not begin with digit: insert _. if r, _ := utf8.DecodeRuneInString(p); unicode.IsDigit(r) { p = "_" + p } return p } // SetPackageNames sets the package name for this run. // The package name must agree across all files being generated. // It also defines unique package names for all imported files. func (g *Generator) SetPackageNames() { // Register the name for this package. It will be the first name // registered so is guaranteed to be unmodified. pkg, explicit := g.genFiles[0].goPackageName() // Check all files for an explicit go_package option. for _, f := range g.genFiles { thisPkg, thisExplicit := f.goPackageName() if thisExplicit { if !explicit { // Let this file's go_package option serve for all input files. pkg, explicit = thisPkg, true } else if thisPkg != pkg { g.Fail("inconsistent package names:", thisPkg, pkg) } } } // If we don't have an explicit go_package option but we have an // import path, use that. if !explicit { p := g.defaultGoPackage() if p != "" { pkg, explicit = p, true } } // If there was no go_package and no import path to use, // double-check that all the inputs have the same implicit // Go package name. if !explicit { for _, f := range g.genFiles { thisPkg, _ := f.goPackageName() if thisPkg != pkg { g.Fail("inconsistent package names:", thisPkg, pkg) } } } g.packageName = RegisterUniquePackageName(pkg, g.genFiles[0]) // Register the support package names. They might collide with the // name of a package we import. g.Pkg = map[string]string{ "fmt": RegisterUniquePackageName("fmt", nil), "math": RegisterUniquePackageName("math", nil), "proto": RegisterUniquePackageName("proto", nil), "golang_proto": RegisterUniquePackageName("golang_proto", nil), } AllFiles: for _, f := range g.allFiles { for _, genf := range g.genFiles { if f == genf { // In this package already. uniquePackageName[f.FileDescriptorProto] = g.packageName continue AllFiles } } // The file is a dependency, so we want to ignore its go_package option // because that is only relevant for its specific generated output. pkg := f.GetPackage() if pkg == "" { pkg = baseName(*f.Name) } RegisterUniquePackageName(pkg, f) } } // WrapTypes walks the incoming data, wrapping DescriptorProtos, EnumDescriptorProtos // and FileDescriptorProtos into file-referenced objects within the Generator. // It also creates the list of files to generate and so should be called before GenerateAllFiles. func (g *Generator) WrapTypes() { g.allFiles = make([]*FileDescriptor, 0, len(g.Request.ProtoFile)) g.allFilesByName = make(map[string]*FileDescriptor, len(g.allFiles)) for _, f := range g.Request.ProtoFile { // We must wrap the descriptors before we wrap the enums descs := wrapDescriptors(f) g.buildNestedDescriptors(descs) enums := wrapEnumDescriptors(f, descs) g.buildNestedEnums(descs, enums) exts := wrapExtensions(f) fd := &FileDescriptor{ FileDescriptorProto: f, desc: descs, enum: enums, ext: exts, exported: make(map[Object][]symbol), proto3: fileIsProto3(f), } extractComments(fd) g.allFiles = append(g.allFiles, fd) g.allFilesByName[f.GetName()] = fd } for _, fd := range g.allFiles { fd.imp = wrapImported(fd.FileDescriptorProto, g) } g.genFiles = make([]*FileDescriptor, 0, len(g.Request.FileToGenerate)) for _, fileName := range g.Request.FileToGenerate { fd := g.allFilesByName[fileName] if fd == nil { g.Fail("could not find file named", fileName) } fd.index = len(g.genFiles) g.genFiles = append(g.genFiles, fd) } } // Scan the descriptors in this file. For each one, build the slice of nested descriptors func (g *Generator) buildNestedDescriptors(descs []*Descriptor) { for _, desc := range descs { if len(desc.NestedType) != 0 { for _, nest := range descs { if nest.parent == desc { desc.nested = append(desc.nested, nest) } } if len(desc.nested) != len(desc.NestedType) { g.Fail("internal error: nesting failure for", desc.GetName()) } } } } func (g *Generator) buildNestedEnums(descs []*Descriptor, enums []*EnumDescriptor) { for _, desc := range descs { if len(desc.EnumType) != 0 { for _, enum := range enums { if enum.parent == desc { desc.enums = append(desc.enums, enum) } } if len(desc.enums) != len(desc.EnumType) { g.Fail("internal error: enum nesting failure for", desc.GetName()) } } } } // Construct the Descriptor func newDescriptor(desc *descriptor.DescriptorProto, parent *Descriptor, file *descriptor.FileDescriptorProto, index int) *Descriptor { d := &Descriptor{ common: common{file}, DescriptorProto: desc, parent: parent, index: index, } if parent == nil { d.path = fmt.Sprintf("%d,%d", messagePath, index) } else { d.path = fmt.Sprintf("%s,%d,%d", parent.path, messageMessagePath, index) } // The only way to distinguish a group from a message is whether // the containing message has a TYPE_GROUP field that matches. if parent != nil { parts := d.TypeName() if file.Package != nil { parts = append([]string{*file.Package}, parts...) } exp := "." + strings.Join(parts, ".") for _, field := range parent.Field { if field.GetType() == descriptor.FieldDescriptorProto_TYPE_GROUP && field.GetTypeName() == exp { d.group = true break } } } for _, field := range desc.Extension { d.ext = append(d.ext, &ExtensionDescriptor{common{file}, field, d}) } return d } // Return a slice of all the Descriptors defined within this file func wrapDescriptors(file *descriptor.FileDescriptorProto) []*Descriptor { sl := make([]*Descriptor, 0, len(file.MessageType)+10) for i, desc := range file.MessageType { sl = wrapThisDescriptor(sl, desc, nil, file, i) } return sl } // Wrap this Descriptor, recursively func wrapThisDescriptor(sl []*Descriptor, desc *descriptor.DescriptorProto, parent *Descriptor, file *descriptor.FileDescriptorProto, index int) []*Descriptor { sl = append(sl, newDescriptor(desc, parent, file, index)) me := sl[len(sl)-1] for i, nested := range desc.NestedType { sl = wrapThisDescriptor(sl, nested, me, file, i) } return sl } // Construct the EnumDescriptor func newEnumDescriptor(desc *descriptor.EnumDescriptorProto, parent *Descriptor, file *descriptor.FileDescriptorProto, index int) *EnumDescriptor { ed := &EnumDescriptor{ common: common{file}, EnumDescriptorProto: desc, parent: parent, index: index, } if parent == nil { ed.path = fmt.Sprintf("%d,%d", enumPath, index) } else { ed.path = fmt.Sprintf("%s,%d,%d", parent.path, messageEnumPath, index) } return ed } // Return a slice of all the EnumDescriptors defined within this file func wrapEnumDescriptors(file *descriptor.FileDescriptorProto, descs []*Descriptor) []*EnumDescriptor { sl := make([]*EnumDescriptor, 0, len(file.EnumType)+10) // Top-level enums. for i, enum := range file.EnumType { sl = append(sl, newEnumDescriptor(enum, nil, file, i)) } // Enums within messages. Enums within embedded messages appear in the outer-most message. for _, nested := range descs { for i, enum := range nested.EnumType { sl = append(sl, newEnumDescriptor(enum, nested, file, i)) } } return sl } // Return a slice of all the top-level ExtensionDescriptors defined within this file. func wrapExtensions(file *descriptor.FileDescriptorProto) []*ExtensionDescriptor { var sl []*ExtensionDescriptor for _, field := range file.Extension { sl = append(sl, &ExtensionDescriptor{common{file}, field, nil}) } return sl } // Return a slice of all the types that are publicly imported into this file. func wrapImported(file *descriptor.FileDescriptorProto, g *Generator) (sl []*ImportedDescriptor) { for _, index := range file.PublicDependency { df := g.fileByName(file.Dependency[index]) for _, d := range df.desc { if d.GetOptions().GetMapEntry() { continue } sl = append(sl, &ImportedDescriptor{common{file}, d}) } for _, e := range df.enum { sl = append(sl, &ImportedDescriptor{common{file}, e}) } for _, ext := range df.ext { sl = append(sl, &ImportedDescriptor{common{file}, ext}) } } return } func extractComments(file *FileDescriptor) { file.comments = make(map[string]*descriptor.SourceCodeInfo_Location) for _, loc := range file.GetSourceCodeInfo().GetLocation() { if loc.LeadingComments == nil { continue } var p []string for _, n := range loc.Path { p = append(p, strconv.Itoa(int(n))) } file.comments[strings.Join(p, ",")] = loc } } // BuildTypeNameMap builds the map from fully qualified type names to objects. // The key names for the map come from the input data, which puts a period at the beginning. // It should be called after SetPackageNames and before GenerateAllFiles. func (g *Generator) BuildTypeNameMap() { g.typeNameToObject = make(map[string]Object) for _, f := range g.allFiles { // The names in this loop are defined by the proto world, not us, so the // package name may be empty. If so, the dotted package name of X will // be ".X"; otherwise it will be ".pkg.X". dottedPkg := "." + f.GetPackage() if dottedPkg != "." { dottedPkg += "." } for _, enum := range f.enum { name := dottedPkg + dottedSlice(enum.TypeName()) g.typeNameToObject[name] = enum } for _, desc := range f.desc { name := dottedPkg + dottedSlice(desc.TypeName()) g.typeNameToObject[name] = desc } } } // ObjectNamed, given a fully-qualified input type name as it appears in the input data, // returns the descriptor for the message or enum with that name. func (g *Generator) ObjectNamed(typeName string) Object { o, ok := g.typeNameToObject[typeName] if !ok { g.Fail("can't find object with type", typeName) } // If the file of this object isn't a direct dependency of the current file, // or in the current file, then this object has been publicly imported into // a dependency of the current file. // We should return the ImportedDescriptor object for it instead. direct := *o.File().Name == *g.file.Name if !direct { for _, dep := range g.file.Dependency { if *g.fileByName(dep).Name == *o.File().Name { direct = true break } } } if !direct { found := false Loop: for _, dep := range g.file.Dependency { df := g.fileByName(*g.fileByName(dep).Name) for _, td := range df.imp { if td.o == o { // Found it! o = td found = true break Loop } } } if !found { log.Printf("protoc-gen-gogo: WARNING: failed finding publicly imported dependency for %v, used in %v", typeName, *g.file.Name) } } return o } // P prints the arguments to the generated output. It handles strings and int32s, plus // handling indirections because they may be *string, etc. func (g *Generator) P(str ...interface{}) { if !g.writeOutput { return } g.WriteString(g.indent) for _, v := range str { switch s := v.(type) { case string: g.WriteString(s) case *string: g.WriteString(*s) case bool: fmt.Fprintf(g, "%t", s) case *bool: fmt.Fprintf(g, "%t", *s) case int: fmt.Fprintf(g, "%d", s) case *int32: fmt.Fprintf(g, "%d", *s) case *int64: fmt.Fprintf(g, "%d", *s) case float64: fmt.Fprintf(g, "%g", s) case *float64: fmt.Fprintf(g, "%g", *s) default: g.Fail(fmt.Sprintf("unknown type in printer: %T", v)) } } g.WriteByte('\n') } // addInitf stores the given statement to be printed inside the file's init function. // The statement is given as a format specifier and arguments. func (g *Generator) addInitf(stmt string, a ...interface{}) { g.init = append(g.init, fmt.Sprintf(stmt, a...)) } func (g *Generator) PrintImport(alias, pkg string) { statement := "import " + alias + " " + strconv.Quote(pkg) if g.writtenImports[statement] { return } g.P(statement) g.writtenImports[statement] = true } // In Indents the output one tab stop. func (g *Generator) In() { g.indent += "\t" } // Out unindents the output one tab stop. func (g *Generator) Out() { if len(g.indent) > 0 { g.indent = g.indent[1:] } } // GenerateAllFiles generates the output for all the files we're outputting. func (g *Generator) GenerateAllFiles() { // Initialize the plugins for _, p := range plugins { p.Init(g) } // Generate the output. The generator runs for every file, even the files // that we don't generate output for, so that we can collate the full list // of exported symbols to support public imports. genFileMap := make(map[*FileDescriptor]bool, len(g.genFiles)) for _, file := range g.genFiles { genFileMap[file] = true } for _, file := range g.allFiles { g.Reset() g.writeOutput = genFileMap[file] g.generate(file) if !g.writeOutput { continue } g.Response.File = append(g.Response.File, &plugin.CodeGeneratorResponse_File{ Name: proto.String(file.goFileName()), Content: proto.String(g.String()), }) } } // Run all the plugins associated with the file. func (g *Generator) runPlugins(file *FileDescriptor) { for _, p := range plugins { p.Generate(file) } } // FileOf return the FileDescriptor for this FileDescriptorProto. func (g *Generator) FileOf(fd *descriptor.FileDescriptorProto) *FileDescriptor { for _, file := range g.allFiles { if file.FileDescriptorProto == fd { return file } } g.Fail("could not find file in table:", fd.GetName()) return nil } // Fill the response protocol buffer with the generated output for all the files we're // supposed to generate. func (g *Generator) generate(file *FileDescriptor) { g.customImports = make([]string, 0) g.file = g.FileOf(file.FileDescriptorProto) g.usedPackages = make(map[string]bool) if g.file.index == 0 { // For one file in the package, assert version compatibility. g.P("// This is a compile-time assertion to ensure that this generated file") g.P("// is compatible with the proto package it is being compiled against.") g.P("// A compilation error at this line likely means your copy of the") g.P("// proto package needs to be updated.") if gogoproto.ImportsGoGoProto(file.FileDescriptorProto) { g.P("const _ = ", g.Pkg["proto"], ".GoGoProtoPackageIsVersion", generatedCodeVersion, " // please upgrade the proto package") } else { g.P("const _ = ", g.Pkg["proto"], ".ProtoPackageIsVersion", generatedCodeVersion, " // please upgrade the proto package") } g.P() } // Reset on each file g.writtenImports = make(map[string]bool) for _, td := range g.file.imp { g.generateImported(td) } for _, enum := range g.file.enum { g.generateEnum(enum) } for _, desc := range g.file.desc { // Don't generate virtual messages for maps. if desc.GetOptions().GetMapEntry() { continue } g.generateMessage(desc) } for _, ext := range g.file.ext { g.generateExtension(ext) } g.generateInitFunction() // Run the plugins before the imports so we know which imports are necessary. g.runPlugins(file) g.generateFileDescriptor(file) // Generate header and imports last, though they appear first in the output. rem := g.Buffer g.Buffer = new(bytes.Buffer) g.generateHeader() g.generateImports() if !g.writeOutput { return } g.Write(rem.Bytes()) // Reformat generated code. fset := token.NewFileSet() raw := g.Bytes() ast, err := parser.ParseFile(fset, "", g, parser.ParseComments) if err != nil { // Print out the bad code with line numbers. // This should never happen in practice, but it can while changing generated code, // so consider this a debugging aid. var src bytes.Buffer s := bufio.NewScanner(bytes.NewReader(raw)) for line := 1; s.Scan(); line++ { fmt.Fprintf(&src, "%5d\t%s\n", line, s.Bytes()) } if serr := s.Err(); serr != nil { g.Fail("bad Go source code was generated:", err.Error(), "\n"+string(raw)) } else { g.Fail("bad Go source code was generated:", err.Error(), "\n"+src.String()) } } g.Reset() err = (&printer.Config{Mode: printer.TabIndent | printer.UseSpaces, Tabwidth: 8}).Fprint(g, fset, ast) if err != nil { g.Fail("generated Go source code could not be reformatted:", err.Error()) } } // Generate the header, including package definition func (g *Generator) generateHeader() { g.P("// Code generated by protoc-gen-gogo. DO NOT EDIT.") g.P("// source: ", *g.file.Name) g.P() name := g.file.PackageName() if g.file.index == 0 { // Generate package docs for the first file in the package. g.P("/*") g.P("Package ", name, " is a generated protocol buffer package.") g.P() if loc, ok := g.file.comments[strconv.Itoa(packagePath)]; ok { // not using g.PrintComments because this is a /* */ comment block. text := strings.TrimSuffix(loc.GetLeadingComments(), "\n") for _, line := range strings.Split(text, "\n") { line = strings.TrimPrefix(line, " ") // ensure we don't escape from the block comment line = strings.Replace(line, "*/", "* /", -1) g.P(line) } g.P() } var topMsgs []string g.P("It is generated from these files:") for _, f := range g.genFiles { g.P("\t", f.Name) for _, msg := range f.desc { if msg.parent != nil { continue } topMsgs = append(topMsgs, CamelCaseSlice(msg.TypeName())) } } g.P() g.P("It has these top-level messages:") for _, msg := range topMsgs { g.P("\t", msg) } g.P("*/") } g.P("package ", name) g.P() } // PrintComments prints any comments from the source .proto file. // The path is a comma-separated list of integers. // It returns an indication of whether any comments were printed. // See descriptor.proto for its format. func (g *Generator) PrintComments(path string) bool { if !g.writeOutput { return false } if loc, ok := g.file.comments[path]; ok { text := strings.TrimSuffix(loc.GetLeadingComments(), "\n") for _, line := range strings.Split(text, "\n") { g.P("// ", strings.TrimPrefix(line, " ")) } return true } return false } // Comments returns any comments from the source .proto file and empty string if comments not found. // The path is a comma-separated list of intergers. // See descriptor.proto for its format. func (g *Generator) Comments(path string) string { loc, ok := g.file.comments[path] if !ok { return "" } text := strings.TrimSuffix(loc.GetLeadingComments(), "\n") return text } func (g *Generator) fileByName(filename string) *FileDescriptor { return g.allFilesByName[filename] } // weak returns whether the ith import of the current file is a weak import. func (g *Generator) weak(i int32) bool { for _, j := range g.file.WeakDependency { if j == i { return true } } return false } // Generate the imports func (g *Generator) generateImports() { // We almost always need a proto import. Rather than computing when we // do, which is tricky when there's a plugin, just import it and // reference it later. The same argument applies to the fmt and math packages. if gogoproto.ImportsGoGoProto(g.file.FileDescriptorProto) { g.PrintImport(g.Pkg["proto"], g.ImportPrefix+"github.com/gogo/protobuf/proto") if gogoproto.RegistersGolangProto(g.file.FileDescriptorProto) { g.PrintImport(g.Pkg["golang_proto"], g.ImportPrefix+"github.com/golang/protobuf/proto") } } else { g.PrintImport(g.Pkg["proto"], g.ImportPrefix+"github.com/golang/protobuf/proto") } g.PrintImport(g.Pkg["fmt"], "fmt") g.PrintImport(g.Pkg["math"], "math") for i, s := range g.file.Dependency { fd := g.fileByName(s) // Do not import our own package. if fd.PackageName() == g.packageName { continue } filename := fd.goFileName() // By default, import path is the dirname of the Go filename. importPath := path.Dir(filename) if substitution, ok := g.ImportMap[s]; ok { importPath = substitution } importPath = g.ImportPrefix + importPath // Skip weak imports. if g.weak(int32(i)) { g.P("// skipping weak import ", fd.PackageName(), " ", strconv.Quote(importPath)) continue } // We need to import all the dependencies, even if we don't reference them, // because other code and tools depend on having the full transitive closure // of protocol buffer types in the binary. if _, ok := g.usedPackages[fd.PackageName()]; ok { g.PrintImport(fd.PackageName(), importPath) } else { g.P("import _ ", strconv.Quote(importPath)) } } g.P() for _, s := range g.customImports { s1 := strings.Map(badToUnderscore, s) g.PrintImport(s1, s) } g.P() // TODO: may need to worry about uniqueness across plugins for _, p := range plugins { p.GenerateImports(g.file) g.P() } g.P("// Reference imports to suppress errors if they are not otherwise used.") g.P("var _ = ", g.Pkg["proto"], ".Marshal") if gogoproto.ImportsGoGoProto(g.file.FileDescriptorProto) && gogoproto.RegistersGolangProto(g.file.FileDescriptorProto) { g.P("var _ = ", g.Pkg["golang_proto"], ".Marshal") } g.P("var _ = ", g.Pkg["fmt"], ".Errorf") g.P("var _ = ", g.Pkg["math"], ".Inf") for _, cimport := range g.customImports { if cimport == "time" { g.P("var _ = time.Kitchen") break } } g.P() } func (g *Generator) generateImported(id *ImportedDescriptor) { // Don't generate public import symbols for files that we are generating // code for, since those symbols will already be in this package. // We can't simply avoid creating the ImportedDescriptor objects, // because g.genFiles isn't populated at that stage. tn := id.TypeName() sn := tn[len(tn)-1] df := g.FileOf(id.o.File()) filename := *df.Name for _, fd := range g.genFiles { if *fd.Name == filename { g.P("// Ignoring public import of ", sn, " from ", filename) g.P() return } } g.P("// ", sn, " from public import ", filename) g.usedPackages[df.PackageName()] = true for _, sym := range df.exported[id.o] { sym.GenerateAlias(g, df.PackageName()) } g.P() } // Generate the enum definitions for this EnumDescriptor. func (g *Generator) generateEnum(enum *EnumDescriptor) { // The full type name typeName := enum.alias() // The full type name, CamelCased. ccTypeName := CamelCaseSlice(typeName) ccPrefix := enum.prefix() g.PrintComments(enum.path) if !gogoproto.EnabledGoEnumPrefix(enum.file, enum.EnumDescriptorProto) { ccPrefix = "" } if gogoproto.HasEnumDecl(enum.file, enum.EnumDescriptorProto) { g.P("type ", ccTypeName, " int32") g.file.addExport(enum, enumSymbol{ccTypeName, enum.proto3()}) g.P("const (") g.In() for i, e := range enum.Value { g.PrintComments(fmt.Sprintf("%s,%d,%d", enum.path, enumValuePath, i)) name := *e.Name if gogoproto.IsEnumValueCustomName(e) { name = gogoproto.GetEnumValueCustomName(e) } name = ccPrefix + name g.P(name, " ", ccTypeName, " = ", e.Number) g.file.addExport(enum, constOrVarSymbol{name, "const", ccTypeName}) } g.Out() g.P(")") } g.P("var ", ccTypeName, "_name = map[int32]string{") g.In() generated := make(map[int32]bool) // avoid duplicate values for _, e := range enum.Value { duplicate := "" if _, present := generated[*e.Number]; present { duplicate = "// Duplicate value: " } g.P(duplicate, e.Number, ": ", strconv.Quote(*e.Name), ",") generated[*e.Number] = true } g.Out() g.P("}") g.P("var ", ccTypeName, "_value = map[string]int32{") g.In() for _, e := range enum.Value { g.P(strconv.Quote(*e.Name), ": ", e.Number, ",") } g.Out() g.P("}") if !enum.proto3() { g.P("func (x ", ccTypeName, ") Enum() *", ccTypeName, " {") g.In() g.P("p := new(", ccTypeName, ")") g.P("*p = x") g.P("return p") g.Out() g.P("}") } if gogoproto.IsGoEnumStringer(g.file.FileDescriptorProto, enum.EnumDescriptorProto) { g.P("func (x ", ccTypeName, ") String() string {") g.In() g.P("return ", g.Pkg["proto"], ".EnumName(", ccTypeName, "_name, int32(x))") g.Out() g.P("}") } if !enum.proto3() && !gogoproto.IsGoEnumStringer(g.file.FileDescriptorProto, enum.EnumDescriptorProto) { g.P("func (x ", ccTypeName, ") MarshalJSON() ([]byte, error) {") g.In() g.P("return ", g.Pkg["proto"], ".MarshalJSONEnum(", ccTypeName, "_name, int32(x))") g.Out() g.P("}") } if !enum.proto3() { g.P("func (x *", ccTypeName, ") UnmarshalJSON(data []byte) error {") g.In() g.P("value, err := ", g.Pkg["proto"], ".UnmarshalJSONEnum(", ccTypeName, `_value, data, "`, ccTypeName, `")`) g.P("if err != nil {") g.In() g.P("return err") g.Out() g.P("}") g.P("*x = ", ccTypeName, "(value)") g.P("return nil") g.Out() g.P("}") } var indexes []string for m := enum.parent; m != nil; m = m.parent { // XXX: skip groups? indexes = append([]string{strconv.Itoa(m.index)}, indexes...) } indexes = append(indexes, strconv.Itoa(enum.index)) g.P("func (", ccTypeName, ") EnumDescriptor() ([]byte, []int) { return ", g.file.VarName(), ", []int{", strings.Join(indexes, ", "), "} }") if enum.file.GetPackage() == "google.protobuf" && enum.GetName() == "NullValue" { g.P("func (", ccTypeName, `) XXX_WellKnownType() string { return "`, enum.GetName(), `" }`) } g.P() } // The tag is a string like "varint,2,opt,name=fieldname,def=7" that // identifies details of the field for the protocol buffer marshaling and unmarshaling // code. The fields are: // wire encoding // protocol tag number // opt,req,rep for optional, required, or repeated // packed whether the encoding is "packed" (optional; repeated primitives only) // name= the original declared name // enum= the name of the enum type if it is an enum-typed field. // proto3 if this field is in a proto3 message // def= string representation of the default value, if any. // The default value must be in a representation that can be used at run-time // to generate the default value. Thus bools become 0 and 1, for instance. func (g *Generator) goTag(message *Descriptor, field *descriptor.FieldDescriptorProto, wiretype string) string { optrepreq := "" switch { case isOptional(field): optrepreq = "opt" case isRequired(field): optrepreq = "req" case isRepeated(field): optrepreq = "rep" } var defaultValue string if dv := field.DefaultValue; dv != nil { // set means an explicit default defaultValue = *dv // Some types need tweaking. switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_BOOL: if defaultValue == "true" { defaultValue = "1" } else { defaultValue = "0" } case descriptor.FieldDescriptorProto_TYPE_STRING, descriptor.FieldDescriptorProto_TYPE_BYTES: // Nothing to do. Quoting is done for the whole tag. case descriptor.FieldDescriptorProto_TYPE_ENUM: // For enums we need to provide the integer constant. obj := g.ObjectNamed(field.GetTypeName()) if id, ok := obj.(*ImportedDescriptor); ok { // It is an enum that was publicly imported. // We need the underlying type. obj = id.o } enum, ok := obj.(*EnumDescriptor) if !ok { log.Printf("obj is a %T", obj) if id, ok := obj.(*ImportedDescriptor); ok { log.Printf("id.o is a %T", id.o) } g.Fail("unknown enum type", CamelCaseSlice(obj.TypeName())) } defaultValue = enum.integerValueAsString(defaultValue) } defaultValue = ",def=" + defaultValue } enum := "" if *field.Type == descriptor.FieldDescriptorProto_TYPE_ENUM { // We avoid using obj.PackageName(), because we want to use the // original (proto-world) package name. obj := g.ObjectNamed(field.GetTypeName()) if id, ok := obj.(*ImportedDescriptor); ok { obj = id.o } enum = ",enum=" if pkg := obj.File().GetPackage(); pkg != "" { enum += pkg + "." } enum += CamelCaseSlice(obj.TypeName()) } packed := "" if (field.Options != nil && field.Options.GetPacked()) || // Per https://developers.google.com/protocol-buffers/docs/proto3#simple: // "In proto3, repeated fields of scalar numeric types use packed encoding by default." (message.proto3() && (field.Options == nil || field.Options.Packed == nil) && isRepeated(field) && IsScalar(field)) { packed = ",packed" } fieldName := field.GetName() name := fieldName if *field.Type == descriptor.FieldDescriptorProto_TYPE_GROUP { // We must use the type name for groups instead of // the field name to preserve capitalization. // type_name in FieldDescriptorProto is fully-qualified, // but we only want the local part. name = *field.TypeName if i := strings.LastIndex(name, "."); i >= 0 { name = name[i+1:] } } if json := field.GetJsonName(); json != "" && json != name { // TODO: escaping might be needed, in which case // perhaps this should be in its own "json" tag. name += ",json=" + json } name = ",name=" + name embed := "" if gogoproto.IsEmbed(field) { embed = ",embedded=" + fieldName } ctype := "" if gogoproto.IsCustomType(field) { ctype = ",customtype=" + gogoproto.GetCustomType(field) } casttype := "" if gogoproto.IsCastType(field) { casttype = ",casttype=" + gogoproto.GetCastType(field) } castkey := "" if gogoproto.IsCastKey(field) { castkey = ",castkey=" + gogoproto.GetCastKey(field) } castvalue := "" if gogoproto.IsCastValue(field) { castvalue = ",castvalue=" + gogoproto.GetCastValue(field) // record the original message type for jsonpb reconstruction desc := g.ObjectNamed(field.GetTypeName()) if d, ok := desc.(*Descriptor); ok && d.GetOptions().GetMapEntry() { valueField := d.Field[1] if valueField.IsMessage() { castvalue += ",castvaluetype=" + strings.TrimPrefix(valueField.GetTypeName(), ".") } } } if message.proto3() { // We only need the extra tag for []byte fields; // no need to add noise for the others. if *field.Type != descriptor.FieldDescriptorProto_TYPE_MESSAGE && *field.Type != descriptor.FieldDescriptorProto_TYPE_GROUP && !field.IsRepeated() { name += ",proto3" } } oneof := "" if field.OneofIndex != nil { oneof = ",oneof" } stdtime := "" if gogoproto.IsStdTime(field) { stdtime = ",stdtime" } stdduration := "" if gogoproto.IsStdDuration(field) { stdduration = ",stdduration" } return strconv.Quote(fmt.Sprintf("%s,%d,%s%s%s%s%s%s%s%s%s%s%s%s%s", wiretype, field.GetNumber(), optrepreq, packed, name, enum, oneof, defaultValue, embed, ctype, casttype, castkey, castvalue, stdtime, stdduration)) } func needsStar(field *descriptor.FieldDescriptorProto, proto3 bool, allowOneOf bool) bool { if isRepeated(field) && (*field.Type != descriptor.FieldDescriptorProto_TYPE_MESSAGE || gogoproto.IsCustomType(field)) && (*field.Type != descriptor.FieldDescriptorProto_TYPE_GROUP) { return false } if *field.Type == descriptor.FieldDescriptorProto_TYPE_BYTES && !gogoproto.IsCustomType(field) { return false } if !gogoproto.IsNullable(field) { return false } if field.OneofIndex != nil && allowOneOf && (*field.Type != descriptor.FieldDescriptorProto_TYPE_MESSAGE) && (*field.Type != descriptor.FieldDescriptorProto_TYPE_GROUP) { return false } if proto3 && (*field.Type != descriptor.FieldDescriptorProto_TYPE_MESSAGE) && (*field.Type != descriptor.FieldDescriptorProto_TYPE_GROUP) && !gogoproto.IsCustomType(field) { return false } return true } // TypeName is the printed name appropriate for an item. If the object is in the current file, // TypeName drops the package name and underscores the rest. // Otherwise the object is from another package; and the result is the underscored // package name followed by the item name. // The result always has an initial capital. func (g *Generator) TypeName(obj Object) string { return g.DefaultPackageName(obj) + CamelCaseSlice(obj.TypeName()) } // TypeNameWithPackage is like TypeName, but always includes the package // name even if the object is in our own package. func (g *Generator) TypeNameWithPackage(obj Object) string { return obj.PackageName() + CamelCaseSlice(obj.TypeName()) } // GoType returns a string representing the type name, and the wire type func (g *Generator) GoType(message *Descriptor, field *descriptor.FieldDescriptorProto) (typ string, wire string) { // TODO: Options. switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: typ, wire = "float64", "fixed64" case descriptor.FieldDescriptorProto_TYPE_FLOAT: typ, wire = "float32", "fixed32" case descriptor.FieldDescriptorProto_TYPE_INT64: typ, wire = "int64", "varint" case descriptor.FieldDescriptorProto_TYPE_UINT64: typ, wire = "uint64", "varint" case descriptor.FieldDescriptorProto_TYPE_INT32: typ, wire = "int32", "varint" case descriptor.FieldDescriptorProto_TYPE_UINT32: typ, wire = "uint32", "varint" case descriptor.FieldDescriptorProto_TYPE_FIXED64: typ, wire = "uint64", "fixed64" case descriptor.FieldDescriptorProto_TYPE_FIXED32: typ, wire = "uint32", "fixed32" case descriptor.FieldDescriptorProto_TYPE_BOOL: typ, wire = "bool", "varint" case descriptor.FieldDescriptorProto_TYPE_STRING: typ, wire = "string", "bytes" case descriptor.FieldDescriptorProto_TYPE_GROUP: desc := g.ObjectNamed(field.GetTypeName()) typ, wire = g.TypeName(desc), "group" case descriptor.FieldDescriptorProto_TYPE_MESSAGE: desc := g.ObjectNamed(field.GetTypeName()) typ, wire = g.TypeName(desc), "bytes" case descriptor.FieldDescriptorProto_TYPE_BYTES: typ, wire = "[]byte", "bytes" case descriptor.FieldDescriptorProto_TYPE_ENUM: desc := g.ObjectNamed(field.GetTypeName()) typ, wire = g.TypeName(desc), "varint" case descriptor.FieldDescriptorProto_TYPE_SFIXED32: typ, wire = "int32", "fixed32" case descriptor.FieldDescriptorProto_TYPE_SFIXED64: typ, wire = "int64", "fixed64" case descriptor.FieldDescriptorProto_TYPE_SINT32: typ, wire = "int32", "zigzag32" case descriptor.FieldDescriptorProto_TYPE_SINT64: typ, wire = "int64", "zigzag64" default: g.Fail("unknown type for", field.GetName()) } switch { case gogoproto.IsCustomType(field) && gogoproto.IsCastType(field): g.Fail(field.GetName() + " cannot be custom type and cast type") case gogoproto.IsCustomType(field): var packageName string var err error packageName, typ, err = getCustomType(field) if err != nil { g.Fail(err.Error()) } if len(packageName) > 0 { g.customImports = append(g.customImports, packageName) } case gogoproto.IsCastType(field): var packageName string var err error packageName, typ, err = getCastType(field) if err != nil { g.Fail(err.Error()) } if len(packageName) > 0 { g.customImports = append(g.customImports, packageName) } case gogoproto.IsStdTime(field): g.customImports = append(g.customImports, "time") typ = "time.Time" case gogoproto.IsStdDuration(field): g.customImports = append(g.customImports, "time") typ = "time.Duration" } if needsStar(field, g.file.proto3 && field.Extendee == nil, message != nil && message.allowOneof()) { typ = "*" + typ } if isRepeated(field) { typ = "[]" + typ } return } // GoMapDescriptor is a full description of the map output struct. type GoMapDescriptor struct { GoType string KeyField *descriptor.FieldDescriptorProto KeyAliasField *descriptor.FieldDescriptorProto KeyTag string ValueField *descriptor.FieldDescriptorProto ValueAliasField *descriptor.FieldDescriptorProto ValueTag string } func (g *Generator) GoMapType(d *Descriptor, field *descriptor.FieldDescriptorProto) *GoMapDescriptor { if d == nil { byName := g.ObjectNamed(field.GetTypeName()) desc, ok := byName.(*Descriptor) if byName == nil || !ok || !desc.GetOptions().GetMapEntry() { g.Fail(fmt.Sprintf("field %s is not a map", field.GetTypeName())) return nil } d = desc } m := &GoMapDescriptor{ KeyField: d.Field[0], ValueField: d.Field[1], } // Figure out the Go types and tags for the key and value types. m.KeyAliasField, m.ValueAliasField = g.GetMapKeyField(field, m.KeyField), g.GetMapValueField(field, m.ValueField) keyType, keyWire := g.GoType(d, m.KeyAliasField) valType, valWire := g.GoType(d, m.ValueAliasField) m.KeyTag, m.ValueTag = g.goTag(d, m.KeyField, keyWire), g.goTag(d, m.ValueField, valWire) if gogoproto.IsCastType(field) { var packageName string var err error packageName, typ, err := getCastType(field) if err != nil { g.Fail(err.Error()) } if len(packageName) > 0 { g.customImports = append(g.customImports, packageName) } m.GoType = typ return m } // We don't use stars, except for message-typed values. // Message and enum types are the only two possibly foreign types used in maps, // so record their use. They are not permitted as map keys. keyType = strings.TrimPrefix(keyType, "*") switch *m.ValueAliasField.Type { case descriptor.FieldDescriptorProto_TYPE_ENUM: valType = strings.TrimPrefix(valType, "*") g.RecordTypeUse(m.ValueAliasField.GetTypeName()) case descriptor.FieldDescriptorProto_TYPE_MESSAGE: if !gogoproto.IsNullable(m.ValueAliasField) { valType = strings.TrimPrefix(valType, "*") } if !gogoproto.IsStdTime(field) && !gogoproto.IsStdDuration(field) { g.RecordTypeUse(m.ValueAliasField.GetTypeName()) } default: if gogoproto.IsCustomType(m.ValueAliasField) { if !gogoproto.IsNullable(m.ValueAliasField) { valType = strings.TrimPrefix(valType, "*") } g.RecordTypeUse(m.ValueAliasField.GetTypeName()) } else { valType = strings.TrimPrefix(valType, "*") } } m.GoType = fmt.Sprintf("map[%s]%s", keyType, valType) return m } func (g *Generator) RecordTypeUse(t string) { if obj, ok := g.typeNameToObject[t]; ok { // Call ObjectNamed to get the true object to record the use. obj = g.ObjectNamed(t) g.usedPackages[obj.PackageName()] = true } } // Method names that may be generated. Fields with these names get an // underscore appended. Any change to this set is a potential incompatible // API change because it changes generated field names. var methodNames = [...]string{ "Reset", "String", "ProtoMessage", "Marshal", "Unmarshal", "ExtensionRangeArray", "ExtensionMap", "Descriptor", "MarshalTo", "Equal", "VerboseEqual", "GoString", "ProtoSize", } // Names of messages in the `google.protobuf` package for which // we will generate XXX_WellKnownType methods. var wellKnownTypes = map[string]bool{ "Any": true, "Duration": true, "Empty": true, "Struct": true, "Timestamp": true, "Value": true, "ListValue": true, "DoubleValue": true, "FloatValue": true, "Int64Value": true, "UInt64Value": true, "Int32Value": true, "UInt32Value": true, "BoolValue": true, "StringValue": true, "BytesValue": true, } // Generate the type and default constant definitions for this Descriptor. func (g *Generator) generateMessage(message *Descriptor) { // The full type name typeName := message.TypeName() // The full type name, CamelCased. ccTypeName := CamelCaseSlice(typeName) usedNames := make(map[string]bool) for _, n := range methodNames { usedNames[n] = true } if !gogoproto.IsProtoSizer(message.file, message.DescriptorProto) { usedNames["Size"] = true } fieldNames := make(map[*descriptor.FieldDescriptorProto]string) fieldGetterNames := make(map[*descriptor.FieldDescriptorProto]string) fieldTypes := make(map[*descriptor.FieldDescriptorProto]string) mapFieldTypes := make(map[*descriptor.FieldDescriptorProto]string) oneofFieldName := make(map[int32]string) // indexed by oneof_index field of FieldDescriptorProto oneofDisc := make(map[int32]string) // name of discriminator method oneofTypeName := make(map[*descriptor.FieldDescriptorProto]string) // without star oneofInsertPoints := make(map[int32]int) // oneof_index => offset of g.Buffer // allocNames finds a conflict-free variation of the given strings, // consistently mutating their suffixes. // It returns the same number of strings. allocNames := func(ns ...string) []string { Loop: for { for _, n := range ns { if usedNames[n] { for i := range ns { ns[i] += "_" } continue Loop } } for _, n := range ns { usedNames[n] = true } return ns } } for _, field := range message.Field { // Allocate the getter and the field at the same time so name // collisions create field/method consistent names. // TODO: This allocation occurs based on the order of the fields // in the proto file, meaning that a change in the field // ordering can change generated Method/Field names. base := CamelCase(*field.Name) if gogoproto.IsCustomName(field) { base = gogoproto.GetCustomName(field) } ns := allocNames(base, "Get"+base) fieldName, fieldGetterName := ns[0], ns[1] fieldNames[field] = fieldName fieldGetterNames[field] = fieldGetterName } if gogoproto.HasTypeDecl(message.file, message.DescriptorProto) { g.PrintComments(message.path) g.P("type ", ccTypeName, " struct {") g.In() for i, field := range message.Field { fieldName := fieldNames[field] typename, wiretype := g.GoType(message, field) jsonName := *field.Name jsonTag := jsonName + ",omitempty" repeatedNativeType := (!field.IsMessage() && !gogoproto.IsCustomType(field) && field.IsRepeated()) if !gogoproto.IsNullable(field) && !repeatedNativeType { jsonTag = jsonName } gogoJsonTag := gogoproto.GetJsonTag(field) if gogoJsonTag != nil { jsonTag = *gogoJsonTag } gogoMoreTags := gogoproto.GetMoreTags(field) moreTags := "" if gogoMoreTags != nil { moreTags = " " + *gogoMoreTags } tag := fmt.Sprintf("protobuf:%s json:%q%s", g.goTag(message, field, wiretype), jsonTag, moreTags) if *field.Type == descriptor.FieldDescriptorProto_TYPE_MESSAGE && gogoproto.IsEmbed(field) { fieldName = "" } oneof := field.OneofIndex != nil && message.allowOneof() if oneof && oneofFieldName[*field.OneofIndex] == "" { odp := message.OneofDecl[int(*field.OneofIndex)] fname := allocNames(CamelCase(odp.GetName()))[0] // This is the first field of a oneof we haven't seen before. // Generate the union field. com := g.PrintComments(fmt.Sprintf("%s,%d,%d", message.path, messageOneofPath, *field.OneofIndex)) if com { g.P("//") } g.P("// Types that are valid to be assigned to ", fname, ":") // Generate the rest of this comment later, // when we've computed any disambiguation. oneofInsertPoints[*field.OneofIndex] = g.Buffer.Len() dname := "is" + ccTypeName + "_" + fname oneofFieldName[*field.OneofIndex] = fname oneofDisc[*field.OneofIndex] = dname otag := `protobuf_oneof:"` + odp.GetName() + `"` g.P(fname, " ", dname, " `", otag, "`") } if *field.Type == descriptor.FieldDescriptorProto_TYPE_MESSAGE { desc := g.ObjectNamed(field.GetTypeName()) if d, ok := desc.(*Descriptor); ok && d.GetOptions().GetMapEntry() { m := g.GoMapType(d, field) typename = m.GoType mapFieldTypes[field] = typename // record for the getter generation tag += fmt.Sprintf(" protobuf_key:%s protobuf_val:%s", m.KeyTag, m.ValueTag) } } fieldTypes[field] = typename if oneof { tname := ccTypeName + "_" + fieldName // It is possible for this to collide with a message or enum // nested in this message. Check for collisions. for { ok := true for _, desc := range message.nested { if CamelCaseSlice(desc.TypeName()) == tname { ok = false break } } for _, enum := range message.enums { if CamelCaseSlice(enum.TypeName()) == tname { ok = false break } } if !ok { tname += "_" continue } break } oneofTypeName[field] = tname continue } g.PrintComments(fmt.Sprintf("%s,%d,%d", message.path, messageFieldPath, i)) g.P(fieldName, "\t", typename, "\t`", tag, "`") if !gogoproto.IsStdTime(field) && !gogoproto.IsStdDuration(field) { g.RecordTypeUse(field.GetTypeName()) } } if len(message.ExtensionRange) > 0 { if gogoproto.HasExtensionsMap(g.file.FileDescriptorProto, message.DescriptorProto) { g.P(g.Pkg["proto"], ".XXX_InternalExtensions `json:\"-\"`") } else { g.P("XXX_extensions\t\t[]byte `protobuf:\"bytes,0,opt\" json:\"-\"`") } } if gogoproto.HasUnrecognized(g.file.FileDescriptorProto, message.DescriptorProto) && !message.proto3() { g.P("XXX_unrecognized\t[]byte `json:\"-\"`") } g.Out() g.P("}") } else { // Even if the type does not need to be generated, we need to iterate // over all its fields to be able to mark as used any imported types // used by those fields. for _, field := range message.Field { if !gogoproto.IsStdTime(field) && !gogoproto.IsStdDuration(field) { g.RecordTypeUse(field.GetTypeName()) } } } // Update g.Buffer to list valid oneof types. // We do this down here, after we've disambiguated the oneof type names. // We go in reverse order of insertion point to avoid invalidating offsets. for oi := int32(len(message.OneofDecl)); oi >= 0; oi-- { ip := oneofInsertPoints[oi] all := g.Buffer.Bytes() rem := all[ip:] g.Buffer = bytes.NewBuffer(all[:ip:ip]) // set cap so we don't scribble on rem for _, field := range message.Field { if field.OneofIndex == nil || *field.OneofIndex != oi { continue } g.P("//\t*", oneofTypeName[field]) } g.Buffer.Write(rem) } // Reset, String and ProtoMessage methods. g.P("func (m *", ccTypeName, ") Reset() { *m = ", ccTypeName, "{} }") if gogoproto.EnabledGoStringer(g.file.FileDescriptorProto, message.DescriptorProto) { g.P("func (m *", ccTypeName, ") String() string { return ", g.Pkg["proto"], ".CompactTextString(m) }") } g.P("func (*", ccTypeName, ") ProtoMessage() {}") var indexes []string for m := message; m != nil; m = m.parent { indexes = append([]string{strconv.Itoa(m.index)}, indexes...) } g.P("func (*", ccTypeName, ") Descriptor() ([]byte, []int) { return ", g.file.VarName(), ", []int{", strings.Join(indexes, ", "), "} }") // TODO: Revisit the decision to use a XXX_WellKnownType method // if we change proto.MessageName to work with multiple equivalents. if message.file.GetPackage() == "google.protobuf" && wellKnownTypes[message.GetName()] { g.P("func (*", ccTypeName, `) XXX_WellKnownType() string { return "`, message.GetName(), `" }`) } // Extension support methods var hasExtensions, isMessageSet bool if len(message.ExtensionRange) > 0 { hasExtensions = true // message_set_wire_format only makes sense when extensions are defined. if opts := message.Options; opts != nil && opts.GetMessageSetWireFormat() { isMessageSet = true g.P() g.P("func (m *", ccTypeName, ") Marshal() ([]byte, error) {") g.In() g.P("return ", g.Pkg["proto"], ".MarshalMessageSet(&m.XXX_InternalExtensions)") g.Out() g.P("}") g.P("func (m *", ccTypeName, ") Unmarshal(buf []byte) error {") g.In() g.P("return ", g.Pkg["proto"], ".UnmarshalMessageSet(buf, &m.XXX_InternalExtensions)") g.Out() g.P("}") g.P("func (m *", ccTypeName, ") MarshalJSON() ([]byte, error) {") g.In() g.P("return ", g.Pkg["proto"], ".MarshalMessageSetJSON(&m.XXX_InternalExtensions)") g.Out() g.P("}") g.P("func (m *", ccTypeName, ") UnmarshalJSON(buf []byte) error {") g.In() g.P("return ", g.Pkg["proto"], ".UnmarshalMessageSetJSON(buf, &m.XXX_InternalExtensions)") g.Out() g.P("}") g.P("// ensure ", ccTypeName, " satisfies proto.Marshaler and proto.Unmarshaler") g.P("var _ ", g.Pkg["proto"], ".Marshaler = (*", ccTypeName, ")(nil)") g.P("var _ ", g.Pkg["proto"], ".Unmarshaler = (*", ccTypeName, ")(nil)") } g.P() g.P("var extRange_", ccTypeName, " = []", g.Pkg["proto"], ".ExtensionRange{") g.In() for _, r := range message.ExtensionRange { end := fmt.Sprint(*r.End - 1) // make range inclusive on both ends g.P("{Start: ", r.Start, ", End: ", end, "},") } g.Out() g.P("}") g.P("func (*", ccTypeName, ") ExtensionRangeArray() []", g.Pkg["proto"], ".ExtensionRange {") g.In() g.P("return extRange_", ccTypeName) g.Out() g.P("}") if !gogoproto.HasExtensionsMap(g.file.FileDescriptorProto, message.DescriptorProto) { g.P("func (m *", ccTypeName, ") GetExtensions() *[]byte {") g.In() g.P("if m.XXX_extensions == nil {") g.In() g.P("m.XXX_extensions = make([]byte, 0)") g.Out() g.P("}") g.P("return &m.XXX_extensions") g.Out() g.P("}") } } // Default constants defNames := make(map[*descriptor.FieldDescriptorProto]string) for _, field := range message.Field { def := field.GetDefaultValue() if def == "" { continue } if !gogoproto.IsNullable(field) { g.Fail("illegal default value: ", field.GetName(), " in ", message.GetName(), " is not nullable and is thus not allowed to have a default value") } fieldname := "Default_" + ccTypeName + "_" + CamelCase(*field.Name) defNames[field] = fieldname typename, _ := g.GoType(message, field) if typename[0] == '*' { typename = typename[1:] } kind := "const " switch { case typename == "bool": case typename == "string": def = strconv.Quote(def) case typename == "[]byte": def = "[]byte(" + strconv.Quote(def) + ")" kind = "var " case def == "inf", def == "-inf", def == "nan": // These names are known to, and defined by, the protocol language. switch def { case "inf": def = "math.Inf(1)" case "-inf": def = "math.Inf(-1)" case "nan": def = "math.NaN()" } if *field.Type == descriptor.FieldDescriptorProto_TYPE_FLOAT { def = "float32(" + def + ")" } kind = "var " case *field.Type == descriptor.FieldDescriptorProto_TYPE_ENUM: // Must be an enum. Need to construct the prefixed name. obj := g.ObjectNamed(field.GetTypeName()) var enum *EnumDescriptor if id, ok := obj.(*ImportedDescriptor); ok { // The enum type has been publicly imported. enum, _ = id.o.(*EnumDescriptor) } else { enum, _ = obj.(*EnumDescriptor) } if enum == nil { log.Printf("don't know how to generate constant for %s", fieldname) continue } // hunt down the actual enum corresponding to the default var enumValue *descriptor.EnumValueDescriptorProto for _, ev := range enum.Value { if def == ev.GetName() { enumValue = ev } } if enumValue != nil { if gogoproto.IsEnumValueCustomName(enumValue) { def = gogoproto.GetEnumValueCustomName(enumValue) } } else { g.Fail(fmt.Sprintf("could not resolve default enum value for %v.%v", g.DefaultPackageName(obj), def)) } if gogoproto.EnabledGoEnumPrefix(enum.file, enum.EnumDescriptorProto) { def = g.DefaultPackageName(obj) + enum.prefix() + def } else { def = g.DefaultPackageName(obj) + def } } g.P(kind, fieldname, " ", typename, " = ", def) g.file.addExport(message, constOrVarSymbol{fieldname, kind, ""}) } g.P() // Oneof per-field types, discriminants and getters. if message.allowOneof() { // Generate unexported named types for the discriminant interfaces. // We shouldn't have to do this, but there was (~19 Aug 2015) a compiler/linker bug // that was triggered by using anonymous interfaces here. // TODO: Revisit this and consider reverting back to anonymous interfaces. for oi := range message.OneofDecl { dname := oneofDisc[int32(oi)] g.P("type ", dname, " interface {") g.In() g.P(dname, "()") if gogoproto.HasEqual(g.file.FileDescriptorProto, message.DescriptorProto) { g.P(`Equal(interface{}) bool`) } if gogoproto.HasVerboseEqual(g.file.FileDescriptorProto, message.DescriptorProto) { g.P(`VerboseEqual(interface{}) error`) } if gogoproto.IsMarshaler(g.file.FileDescriptorProto, message.DescriptorProto) || gogoproto.IsUnsafeMarshaler(g.file.FileDescriptorProto, message.DescriptorProto) { g.P(`MarshalTo([]byte) (int, error)`) } if gogoproto.IsSizer(g.file.FileDescriptorProto, message.DescriptorProto) { g.P(`Size() int`) } if gogoproto.IsProtoSizer(g.file.FileDescriptorProto, message.DescriptorProto) { g.P(`ProtoSize() int`) } g.Out() g.P("}") } g.P() for _, field := range message.Field { if field.OneofIndex == nil { continue } _, wiretype := g.GoType(message, field) tag := "protobuf:" + g.goTag(message, field, wiretype) g.P("type ", oneofTypeName[field], " struct{ ", fieldNames[field], " ", fieldTypes[field], " `", tag, "` }") if !gogoproto.IsStdTime(field) && !gogoproto.IsStdDuration(field) { g.RecordTypeUse(field.GetTypeName()) } } g.P() for _, field := range message.Field { if field.OneofIndex == nil { continue } g.P("func (*", oneofTypeName[field], ") ", oneofDisc[*field.OneofIndex], "() {}") } g.P() for oi := range message.OneofDecl { fname := oneofFieldName[int32(oi)] g.P("func (m *", ccTypeName, ") Get", fname, "() ", oneofDisc[int32(oi)], " {") g.P("if m != nil { return m.", fname, " }") g.P("return nil") g.P("}") } g.P() } // Field getters var getters []getterSymbol for _, field := range message.Field { oneof := field.OneofIndex != nil && message.allowOneof() if !oneof && !gogoproto.HasGoGetters(g.file.FileDescriptorProto, message.DescriptorProto) { continue } if gogoproto.IsEmbed(field) || gogoproto.IsCustomType(field) { continue } fname := fieldNames[field] typename, _ := g.GoType(message, field) if t, ok := mapFieldTypes[field]; ok { typename = t } mname := fieldGetterNames[field] star := "" if (*field.Type != descriptor.FieldDescriptorProto_TYPE_MESSAGE) && (*field.Type != descriptor.FieldDescriptorProto_TYPE_GROUP) && needsStar(field, g.file.proto3, message != nil && message.allowOneof()) && typename[0] == '*' { typename = typename[1:] star = "*" } // Only export getter symbols for basic types, // and for messages and enums in the same package. // Groups are not exported. // Foreign types can't be hoisted through a public import because // the importer may not already be importing the defining .proto. // As an example, imagine we have an import tree like this: // A.proto -> B.proto -> C.proto // If A publicly imports B, we need to generate the getters from B in A's output, // but if one such getter returns something from C then we cannot do that // because A is not importing C already. var getter, genType bool switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_GROUP: getter = false case descriptor.FieldDescriptorProto_TYPE_MESSAGE, descriptor.FieldDescriptorProto_TYPE_ENUM: // Only export getter if its return type is in this package. getter = g.ObjectNamed(field.GetTypeName()).PackageName() == message.PackageName() genType = true default: getter = true } if getter { getters = append(getters, getterSymbol{ name: mname, typ: typename, typeName: field.GetTypeName(), genType: genType, }) } g.P("func (m *", ccTypeName, ") "+mname+"() "+typename+" {") g.In() def, hasDef := defNames[field] typeDefaultIsNil := false // whether this field type's default value is a literal nil unless specified switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_BYTES: typeDefaultIsNil = !hasDef case descriptor.FieldDescriptorProto_TYPE_GROUP, descriptor.FieldDescriptorProto_TYPE_MESSAGE: typeDefaultIsNil = gogoproto.IsNullable(field) } if isRepeated(field) { typeDefaultIsNil = true } if typeDefaultIsNil && !oneof { // A bytes field with no explicit default needs less generated code, // as does a message or group field, or a repeated field. g.P("if m != nil {") g.In() g.P("return m." + fname) g.Out() g.P("}") g.P("return nil") g.Out() g.P("}") g.P() continue } if !gogoproto.IsNullable(field) { g.P("if m != nil {") g.In() g.P("return m." + fname) g.Out() g.P("}") } else if !oneof { if message.proto3() { g.P("if m != nil {") } else { g.P("if m != nil && m." + fname + " != nil {") } g.In() g.P("return " + star + "m." + fname) g.Out() g.P("}") } else { uname := oneofFieldName[*field.OneofIndex] tname := oneofTypeName[field] g.P("if x, ok := m.Get", uname, "().(*", tname, "); ok {") g.P("return x.", fname) g.P("}") } if hasDef { if *field.Type != descriptor.FieldDescriptorProto_TYPE_BYTES { g.P("return " + def) } else { // The default is a []byte var. // Make a copy when returning it to be safe. g.P("return append([]byte(nil), ", def, "...)") } } else { switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_GROUP, descriptor.FieldDescriptorProto_TYPE_MESSAGE: if field.OneofIndex != nil { g.P(`return nil`) } else { goTyp, _ := g.GoType(message, field) goTypName := GoTypeToName(goTyp) if !gogoproto.IsNullable(field) && gogoproto.IsStdDuration(field) { g.P("return 0") } else { g.P("return ", goTypName, "{}") } } case descriptor.FieldDescriptorProto_TYPE_BOOL: g.P("return false") case descriptor.FieldDescriptorProto_TYPE_STRING: g.P(`return ""`) case descriptor.FieldDescriptorProto_TYPE_BYTES: // This is only possible for oneof fields. g.P("return nil") case descriptor.FieldDescriptorProto_TYPE_ENUM: // The default default for an enum is the first value in the enum, // not zero. obj := g.ObjectNamed(field.GetTypeName()) var enum *EnumDescriptor if id, ok := obj.(*ImportedDescriptor); ok { // The enum type has been publicly imported. enum, _ = id.o.(*EnumDescriptor) } else { enum, _ = obj.(*EnumDescriptor) } if enum == nil { log.Printf("don't know how to generate getter for %s", field.GetName()) continue } if len(enum.Value) == 0 { g.P("return 0 // empty enum") } else { first := enum.Value[0].GetName() if gogoproto.IsEnumValueCustomName(enum.Value[0]) { first = gogoproto.GetEnumValueCustomName(enum.Value[0]) } if gogoproto.EnabledGoEnumPrefix(enum.file, enum.EnumDescriptorProto) { g.P("return ", g.DefaultPackageName(obj)+enum.prefix()+first) } else { g.P("return ", g.DefaultPackageName(obj)+first) } } default: g.P("return 0") } } g.Out() g.P("}") g.P() } if !message.group { ms := &messageSymbol{ sym: ccTypeName, hasExtensions: hasExtensions, isMessageSet: isMessageSet, hasOneof: len(message.OneofDecl) > 0, getters: getters, } g.file.addExport(message, ms) } // Oneof functions if len(message.OneofDecl) > 0 && message.allowOneof() { fieldWire := make(map[*descriptor.FieldDescriptorProto]string) // method enc := "_" + ccTypeName + "_OneofMarshaler" dec := "_" + ccTypeName + "_OneofUnmarshaler" size := "_" + ccTypeName + "_OneofSizer" encSig := "(msg " + g.Pkg["proto"] + ".Message, b *" + g.Pkg["proto"] + ".Buffer) error" decSig := "(msg " + g.Pkg["proto"] + ".Message, tag, wire int, b *" + g.Pkg["proto"] + ".Buffer) (bool, error)" sizeSig := "(msg " + g.Pkg["proto"] + ".Message) (n int)" g.P("// XXX_OneofFuncs is for the internal use of the proto package.") g.P("func (*", ccTypeName, ") XXX_OneofFuncs() (func", encSig, ", func", decSig, ", func", sizeSig, ", []interface{}) {") g.P("return ", enc, ", ", dec, ", ", size, ", []interface{}{") for _, field := range message.Field { if field.OneofIndex == nil { continue } g.P("(*", oneofTypeName[field], ")(nil),") } g.P("}") g.P("}") g.P() // marshaler g.P("func ", enc, encSig, " {") g.P("m := msg.(*", ccTypeName, ")") for oi, odp := range message.OneofDecl { g.P("// ", odp.GetName()) fname := oneofFieldName[int32(oi)] g.P("switch x := m.", fname, ".(type) {") for _, field := range message.Field { if field.OneofIndex == nil || int(*field.OneofIndex) != oi { continue } g.P("case *", oneofTypeName[field], ":") var wire, pre, post string val := "x." + fieldNames[field] // overridden for TYPE_BOOL canFail := false // only TYPE_MESSAGE and TYPE_GROUP can fail switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: wire = "WireFixed64" pre = "b.EncodeFixed64(" + g.Pkg["math"] + ".Float64bits(" post = "))" case descriptor.FieldDescriptorProto_TYPE_FLOAT: wire = "WireFixed32" pre = "b.EncodeFixed32(uint64(" + g.Pkg["math"] + ".Float32bits(" post = ")))" case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64: wire = "WireVarint" pre, post = "b.EncodeVarint(uint64(", "))" case descriptor.FieldDescriptorProto_TYPE_INT32, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM: wire = "WireVarint" pre, post = "b.EncodeVarint(uint64(", "))" case descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64: wire = "WireFixed64" pre, post = "b.EncodeFixed64(uint64(", "))" case descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32: wire = "WireFixed32" pre, post = "b.EncodeFixed32(uint64(", "))" case descriptor.FieldDescriptorProto_TYPE_BOOL: // bool needs special handling. g.P("t := uint64(0)") g.P("if ", val, " { t = 1 }") val = "t" wire = "WireVarint" pre, post = "b.EncodeVarint(", ")" case descriptor.FieldDescriptorProto_TYPE_STRING: wire = "WireBytes" pre, post = "b.EncodeStringBytes(", ")" case descriptor.FieldDescriptorProto_TYPE_GROUP: wire = "WireStartGroup" pre, post = "b.Marshal(", ")" canFail = true case descriptor.FieldDescriptorProto_TYPE_MESSAGE: wire = "WireBytes" pre, post = "b.EncodeMessage(", ")" canFail = true case descriptor.FieldDescriptorProto_TYPE_BYTES: wire = "WireBytes" pre, post = "b.EncodeRawBytes(", ")" case descriptor.FieldDescriptorProto_TYPE_SINT32: wire = "WireVarint" pre, post = "b.EncodeZigzag32(uint64(", "))" case descriptor.FieldDescriptorProto_TYPE_SINT64: wire = "WireVarint" pre, post = "b.EncodeZigzag64(uint64(", "))" default: g.Fail("unhandled oneof field type ", field.Type.String()) } fieldWire[field] = wire g.P("_ = b.EncodeVarint(", field.Number, "<<3|", g.Pkg["proto"], ".", wire, ")") if *field.Type == descriptor.FieldDescriptorProto_TYPE_BYTES && gogoproto.IsCustomType(field) { g.P(`dAtA, err := `, val, `.Marshal()`) g.P(`if err != nil {`) g.In() g.P(`return err`) g.Out() g.P(`}`) val = "dAtA" } else if gogoproto.IsStdTime(field) { pkg := g.useTypes() if gogoproto.IsNullable(field) { g.P(`dAtA, err := `, pkg, `.StdTimeMarshal(*`, val, `)`) } else { g.P(`dAtA, err := `, pkg, `.StdTimeMarshal(`, val, `)`) } g.P(`if err != nil {`) g.In() g.P(`return err`) g.Out() g.P(`}`) val = "dAtA" pre, post = "b.EncodeRawBytes(", ")" } else if gogoproto.IsStdDuration(field) { pkg := g.useTypes() if gogoproto.IsNullable(field) { g.P(`dAtA, err := `, pkg, `.StdDurationMarshal(*`, val, `)`) } else { g.P(`dAtA, err := `, pkg, `.StdDurationMarshal(`, val, `)`) } g.P(`if err != nil {`) g.In() g.P(`return err`) g.Out() g.P(`}`) val = "dAtA" pre, post = "b.EncodeRawBytes(", ")" } if !canFail { g.P("_ = ", pre, val, post) } else { g.P("if err := ", pre, val, post, "; err != nil {") g.In() g.P("return err") g.Out() g.P("}") } if *field.Type == descriptor.FieldDescriptorProto_TYPE_GROUP { g.P("_ = b.EncodeVarint(", field.Number, "<<3|", g.Pkg["proto"], ".WireEndGroup)") } } g.P("case nil:") g.P("default: return ", g.Pkg["fmt"], `.Errorf("`, ccTypeName, ".", fname, ` has unexpected type %T", x)`) g.P("}") } g.P("return nil") g.P("}") g.P() // unmarshaler g.P("func ", dec, decSig, " {") g.P("m := msg.(*", ccTypeName, ")") g.P("switch tag {") for _, field := range message.Field { if field.OneofIndex == nil { continue } odp := message.OneofDecl[int(*field.OneofIndex)] g.P("case ", field.Number, ": // ", odp.GetName(), ".", *field.Name) g.P("if wire != ", g.Pkg["proto"], ".", fieldWire[field], " {") g.P("return true, ", g.Pkg["proto"], ".ErrInternalBadWireType") g.P("}") lhs := "x, err" // overridden for TYPE_MESSAGE and TYPE_GROUP var dec, cast, cast2 string switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: dec, cast = "b.DecodeFixed64()", g.Pkg["math"]+".Float64frombits" case descriptor.FieldDescriptorProto_TYPE_FLOAT: dec, cast, cast2 = "b.DecodeFixed32()", "uint32", g.Pkg["math"]+".Float32frombits" case descriptor.FieldDescriptorProto_TYPE_INT64: dec, cast = "b.DecodeVarint()", "int64" case descriptor.FieldDescriptorProto_TYPE_UINT64: dec = "b.DecodeVarint()" case descriptor.FieldDescriptorProto_TYPE_INT32: dec, cast = "b.DecodeVarint()", "int32" case descriptor.FieldDescriptorProto_TYPE_FIXED64: dec = "b.DecodeFixed64()" case descriptor.FieldDescriptorProto_TYPE_FIXED32: dec, cast = "b.DecodeFixed32()", "uint32" case descriptor.FieldDescriptorProto_TYPE_BOOL: dec = "b.DecodeVarint()" // handled specially below case descriptor.FieldDescriptorProto_TYPE_STRING: dec = "b.DecodeStringBytes()" case descriptor.FieldDescriptorProto_TYPE_GROUP: g.P("msg := new(", fieldTypes[field][1:], ")") // drop star lhs = "err" dec = "b.DecodeGroup(msg)" // handled specially below case descriptor.FieldDescriptorProto_TYPE_MESSAGE: if gogoproto.IsStdTime(field) || gogoproto.IsStdDuration(field) { dec = "b.DecodeRawBytes(true)" } else { g.P("msg := new(", fieldTypes[field][1:], ")") // drop star lhs = "err" dec = "b.DecodeMessage(msg)" } // handled specially below case descriptor.FieldDescriptorProto_TYPE_BYTES: dec = "b.DecodeRawBytes(true)" case descriptor.FieldDescriptorProto_TYPE_UINT32: dec, cast = "b.DecodeVarint()", "uint32" case descriptor.FieldDescriptorProto_TYPE_ENUM: dec, cast = "b.DecodeVarint()", fieldTypes[field] case descriptor.FieldDescriptorProto_TYPE_SFIXED32: dec, cast = "b.DecodeFixed32()", "int32" case descriptor.FieldDescriptorProto_TYPE_SFIXED64: dec, cast = "b.DecodeFixed64()", "int64" case descriptor.FieldDescriptorProto_TYPE_SINT32: dec, cast = "b.DecodeZigzag32()", "int32" case descriptor.FieldDescriptorProto_TYPE_SINT64: dec, cast = "b.DecodeZigzag64()", "int64" default: g.Fail("unhandled oneof field type ", field.Type.String()) } g.P(lhs, " := ", dec) val := "x" if *field.Type == descriptor.FieldDescriptorProto_TYPE_BYTES && gogoproto.IsCustomType(field) { g.P(`if err != nil {`) g.In() g.P(`return true, err`) g.Out() g.P(`}`) _, ctyp, err := GetCustomType(field) if err != nil { panic(err) } g.P(`var cc `, ctyp) g.P(`c := &cc`) g.P(`err = c.Unmarshal(`, val, `)`) val = "*c" } else if gogoproto.IsStdTime(field) { pkg := g.useTypes() g.P(`if err != nil {`) g.In() g.P(`return true, err`) g.Out() g.P(`}`) g.P(`c := new(time.Time)`) g.P(`if err2 := `, pkg, `.StdTimeUnmarshal(c, `, val, `); err2 != nil {`) g.In() g.P(`return true, err`) g.Out() g.P(`}`) val = "c" } else if gogoproto.IsStdDuration(field) { pkg := g.useTypes() g.P(`if err != nil {`) g.In() g.P(`return true, err`) g.Out() g.P(`}`) g.P(`c := new(time.Duration)`) g.P(`if err2 := `, pkg, `.StdDurationUnmarshal(c, `, val, `); err2 != nil {`) g.In() g.P(`return true, err`) g.Out() g.P(`}`) val = "c" } if cast != "" { val = cast + "(" + val + ")" } if cast2 != "" { val = cast2 + "(" + val + ")" } switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_BOOL: val += " != 0" case descriptor.FieldDescriptorProto_TYPE_GROUP, descriptor.FieldDescriptorProto_TYPE_MESSAGE: if !gogoproto.IsStdTime(field) && !gogoproto.IsStdDuration(field) { val = "msg" } } if gogoproto.IsCastType(field) { _, typ, err := getCastType(field) if err != nil { g.Fail(err.Error()) } val = typ + "(" + val + ")" } g.P("m.", oneofFieldName[*field.OneofIndex], " = &", oneofTypeName[field], "{", val, "}") g.P("return true, err") } g.P("default: return false, nil") g.P("}") g.P("}") g.P() // sizer g.P("func ", size, sizeSig, " {") g.P("m := msg.(*", ccTypeName, ")") for oi, odp := range message.OneofDecl { g.P("// ", odp.GetName()) fname := oneofFieldName[int32(oi)] g.P("switch x := m.", fname, ".(type) {") for _, field := range message.Field { if field.OneofIndex == nil || int(*field.OneofIndex) != oi { continue } g.P("case *", oneofTypeName[field], ":") val := "x." + fieldNames[field] var wire, varint, fixed string switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_DOUBLE: wire = "WireFixed64" fixed = "8" case descriptor.FieldDescriptorProto_TYPE_FLOAT: wire = "WireFixed32" fixed = "4" case descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_INT32, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM: wire = "WireVarint" varint = val case descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_SFIXED64: wire = "WireFixed64" fixed = "8" case descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED32: wire = "WireFixed32" fixed = "4" case descriptor.FieldDescriptorProto_TYPE_BOOL: wire = "WireVarint" fixed = "1" case descriptor.FieldDescriptorProto_TYPE_STRING: wire = "WireBytes" fixed = "len(" + val + ")" varint = fixed case descriptor.FieldDescriptorProto_TYPE_GROUP: wire = "WireStartGroup" fixed = g.Pkg["proto"] + ".Size(" + val + ")" case descriptor.FieldDescriptorProto_TYPE_MESSAGE: wire = "WireBytes" if gogoproto.IsStdTime(field) { if gogoproto.IsNullable(field) { val = "*" + val } pkg := g.useTypes() g.P("s := ", pkg, ".SizeOfStdTime(", val, ")") } else if gogoproto.IsStdDuration(field) { if gogoproto.IsNullable(field) { val = "*" + val } pkg := g.useTypes() g.P("s := ", pkg, ".SizeOfStdDuration(", val, ")") } else { g.P("s := ", g.Pkg["proto"], ".Size(", val, ")") } fixed = "s" varint = fixed case descriptor.FieldDescriptorProto_TYPE_BYTES: wire = "WireBytes" if gogoproto.IsCustomType(field) { fixed = val + ".Size()" } else { fixed = "len(" + val + ")" } varint = fixed case descriptor.FieldDescriptorProto_TYPE_SINT32: wire = "WireVarint" varint = "(uint32(" + val + ") << 1) ^ uint32((int32(" + val + ") >> 31))" case descriptor.FieldDescriptorProto_TYPE_SINT64: wire = "WireVarint" varint = "uint64(" + val + " << 1) ^ uint64((int64(" + val + ") >> 63))" default: g.Fail("unhandled oneof field type ", field.Type.String()) } g.P("n += ", g.Pkg["proto"], ".SizeVarint(", field.Number, "<<3|", g.Pkg["proto"], ".", wire, ")") if varint != "" { g.P("n += ", g.Pkg["proto"], ".SizeVarint(uint64(", varint, "))") } if fixed != "" { g.P("n += ", fixed) } if *field.Type == descriptor.FieldDescriptorProto_TYPE_GROUP { g.P("n += ", g.Pkg["proto"], ".SizeVarint(", field.Number, "<<3|", g.Pkg["proto"], ".WireEndGroup)") } } g.P("case nil:") g.P("default:") g.P("panic(", g.Pkg["fmt"], ".Sprintf(\"proto: unexpected type %T in oneof\", x))") g.P("}") } g.P("return n") g.P("}") g.P() } for _, ext := range message.ext { g.generateExtension(ext) } fullName := strings.Join(message.TypeName(), ".") if g.file.Package != nil { fullName = *g.file.Package + "." + fullName } g.addInitf("%s.RegisterType((*%s)(nil), %q)", g.Pkg["proto"], ccTypeName, fullName) if gogoproto.ImportsGoGoProto(g.file.FileDescriptorProto) && gogoproto.RegistersGolangProto(g.file.FileDescriptorProto) { g.addInitf("%s.RegisterType((*%s)(nil), %q)", g.Pkg["golang_proto"], ccTypeName, fullName) } } func (g *Generator) generateExtension(ext *ExtensionDescriptor) { ccTypeName := ext.DescName() extObj := g.ObjectNamed(*ext.Extendee) var extDesc *Descriptor if id, ok := extObj.(*ImportedDescriptor); ok { // This is extending a publicly imported message. // We need the underlying type for goTag. extDesc = id.o.(*Descriptor) } else { extDesc = extObj.(*Descriptor) } extendedType := "*" + g.TypeName(extObj) // always use the original field := ext.FieldDescriptorProto fieldType, wireType := g.GoType(ext.parent, field) tag := g.goTag(extDesc, field, wireType) g.RecordTypeUse(*ext.Extendee) if n := ext.FieldDescriptorProto.TypeName; n != nil { // foreign extension type g.RecordTypeUse(*n) } typeName := ext.TypeName() // Special case for proto2 message sets: If this extension is extending // proto2_bridge.MessageSet, and its final name component is "message_set_extension", // then drop that last component. mset := false if extendedType == "*proto2_bridge.MessageSet" && typeName[len(typeName)-1] == "message_set_extension" { typeName = typeName[:len(typeName)-1] mset = true } // For text formatting, the package must be exactly what the .proto file declares, // ignoring overrides such as the go_package option, and with no dot/underscore mapping. extName := strings.Join(typeName, ".") if g.file.Package != nil { extName = *g.file.Package + "." + extName } g.P("var ", ccTypeName, " = &", g.Pkg["proto"], ".ExtensionDesc{") g.In() g.P("ExtendedType: (", extendedType, ")(nil),") g.P("ExtensionType: (", fieldType, ")(nil),") g.P("Field: ", field.Number, ",") g.P(`Name: "`, extName, `",`) g.P("Tag: ", tag, ",") g.P(`Filename: "`, g.file.GetName(), `",`) g.Out() g.P("}") g.P() if mset { // Generate a bit more code to register with message_set.go. g.addInitf("%s.RegisterMessageSetType((%s)(nil), %d, %q)", g.Pkg["proto"], fieldType, *field.Number, extName) if gogoproto.ImportsGoGoProto(g.file.FileDescriptorProto) && gogoproto.RegistersGolangProto(g.file.FileDescriptorProto) { g.addInitf("%s.RegisterMessageSetType((%s)(nil), %d, %q)", g.Pkg["golang_proto"], fieldType, *field.Number, extName) } } g.file.addExport(ext, constOrVarSymbol{ccTypeName, "var", ""}) } func (g *Generator) generateInitFunction() { for _, enum := range g.file.enum { g.generateEnumRegistration(enum) } for _, d := range g.file.desc { for _, ext := range d.ext { g.generateExtensionRegistration(ext) } } for _, ext := range g.file.ext { g.generateExtensionRegistration(ext) } if len(g.init) == 0 { return } g.P("func init() {") g.In() for _, l := range g.init { g.P(l) } g.Out() g.P("}") g.init = nil } func (g *Generator) generateFileDescriptor(file *FileDescriptor) { // Make a copy and trim source_code_info data. // TODO: Trim this more when we know exactly what we need. pb := proto.Clone(file.FileDescriptorProto).(*descriptor.FileDescriptorProto) pb.SourceCodeInfo = nil b, err := proto.Marshal(pb) if err != nil { g.Fail(err.Error()) } var buf bytes.Buffer w, _ := gzip.NewWriterLevel(&buf, gzip.BestCompression) w.Write(b) w.Close() b = buf.Bytes() v := file.VarName() g.P() g.P("func init() { ", g.Pkg["proto"], ".RegisterFile(", strconv.Quote(*file.Name), ", ", v, ") }") if gogoproto.ImportsGoGoProto(g.file.FileDescriptorProto) && gogoproto.RegistersGolangProto(g.file.FileDescriptorProto) { g.P("func init() { ", g.Pkg["golang_proto"], ".RegisterFile(", strconv.Quote(*file.Name), ", ", v, ") }") } g.P("var ", v, " = []byte{") g.In() g.P("// ", len(b), " bytes of a gzipped FileDescriptorProto") for len(b) > 0 { n := 16 if n > len(b) { n = len(b) } s := "" for _, c := range b[:n] { s += fmt.Sprintf("0x%02x,", c) } g.P(s) b = b[n:] } g.Out() g.P("}") } func (g *Generator) generateEnumRegistration(enum *EnumDescriptor) { // // We always print the full (proto-world) package name here. pkg := enum.File().GetPackage() if pkg != "" { pkg += "." } // The full type name typeName := enum.TypeName() // The full type name, CamelCased. ccTypeName := CamelCaseSlice(typeName) g.addInitf("%s.RegisterEnum(%q, %[3]s_name, %[3]s_value)", g.Pkg["proto"], pkg+ccTypeName, ccTypeName) if gogoproto.ImportsGoGoProto(g.file.FileDescriptorProto) && gogoproto.RegistersGolangProto(g.file.FileDescriptorProto) { g.addInitf("%s.RegisterEnum(%q, %[3]s_name, %[3]s_value)", g.Pkg["golang_proto"], pkg+ccTypeName, ccTypeName) } } func (g *Generator) generateExtensionRegistration(ext *ExtensionDescriptor) { g.addInitf("%s.RegisterExtension(%s)", g.Pkg["proto"], ext.DescName()) if gogoproto.ImportsGoGoProto(g.file.FileDescriptorProto) && gogoproto.RegistersGolangProto(g.file.FileDescriptorProto) { g.addInitf("%s.RegisterExtension(%s)", g.Pkg["golang_proto"], ext.DescName()) } } // And now lots of helper functions. // Is c an ASCII lower-case letter? func isASCIILower(c byte) bool { return 'a' <= c && c <= 'z' } // Is c an ASCII digit? func isASCIIDigit(c byte) bool { return '0' <= c && c <= '9' } // CamelCase returns the CamelCased name. // If there is an interior underscore followed by a lower case letter, // drop the underscore and convert the letter to upper case. // There is a remote possibility of this rewrite causing a name collision, // but it's so remote we're prepared to pretend it's nonexistent - since the // C++ generator lowercases names, it's extremely unlikely to have two fields // with different capitalizations. // In short, _my_field_name_2 becomes XMyFieldName_2. func CamelCase(s string) string { if s == "" { return "" } t := make([]byte, 0, 32) i := 0 if s[0] == '_' { // Need a capital letter; drop the '_'. t = append(t, 'X') i++ } // Invariant: if the next letter is lower case, it must be converted // to upper case. // That is, we process a word at a time, where words are marked by _ or // upper case letter. Digits are treated as words. for ; i < len(s); i++ { c := s[i] if c == '_' && i+1 < len(s) && isASCIILower(s[i+1]) { continue // Skip the underscore in s. } if isASCIIDigit(c) { t = append(t, c) continue } // Assume we have a letter now - if not, it's a bogus identifier. // The next word is a sequence of characters that must start upper case. if isASCIILower(c) { c ^= ' ' // Make it a capital letter. } t = append(t, c) // Guaranteed not lower case. // Accept lower case sequence that follows. for i+1 < len(s) && isASCIILower(s[i+1]) { i++ t = append(t, s[i]) } } return string(t) } // CamelCaseSlice is like CamelCase, but the argument is a slice of strings to // be joined with "_". func CamelCaseSlice(elem []string) string { return CamelCase(strings.Join(elem, "_")) } // dottedSlice turns a sliced name into a dotted name. func dottedSlice(elem []string) string { return strings.Join(elem, ".") } // Is this field optional? func isOptional(field *descriptor.FieldDescriptorProto) bool { return field.Label != nil && *field.Label == descriptor.FieldDescriptorProto_LABEL_OPTIONAL } // Is this field required? func isRequired(field *descriptor.FieldDescriptorProto) bool { return field.Label != nil && *field.Label == descriptor.FieldDescriptorProto_LABEL_REQUIRED } // Is this field repeated? func isRepeated(field *descriptor.FieldDescriptorProto) bool { return field.Label != nil && *field.Label == descriptor.FieldDescriptorProto_LABEL_REPEATED } // Is this field a scalar numeric type? func IsScalar(field *descriptor.FieldDescriptorProto) bool { if field.Type == nil { return false } switch *field.Type { case descriptor.FieldDescriptorProto_TYPE_DOUBLE, descriptor.FieldDescriptorProto_TYPE_FLOAT, descriptor.FieldDescriptorProto_TYPE_INT64, descriptor.FieldDescriptorProto_TYPE_UINT64, descriptor.FieldDescriptorProto_TYPE_INT32, descriptor.FieldDescriptorProto_TYPE_FIXED64, descriptor.FieldDescriptorProto_TYPE_FIXED32, descriptor.FieldDescriptorProto_TYPE_BOOL, descriptor.FieldDescriptorProto_TYPE_UINT32, descriptor.FieldDescriptorProto_TYPE_ENUM, descriptor.FieldDescriptorProto_TYPE_SFIXED32, descriptor.FieldDescriptorProto_TYPE_SFIXED64, descriptor.FieldDescriptorProto_TYPE_SINT32, descriptor.FieldDescriptorProto_TYPE_SINT64: return true default: return false } } // badToUnderscore is the mapping function used to generate Go names from package names, // which can be dotted in the input .proto file. It replaces non-identifier characters such as // dot or dash with underscore. func badToUnderscore(r rune) rune { if unicode.IsLetter(r) || unicode.IsDigit(r) || r == '_' { return r } return '_' } // baseName returns the last path element of the name, with the last dotted suffix removed. func baseName(name string) string { // First, find the last element if i := strings.LastIndex(name, "/"); i >= 0 { name = name[i+1:] } // Now drop the suffix if i := strings.LastIndex(name, "."); i >= 0 { name = name[0:i] } return name } // The SourceCodeInfo message describes the location of elements of a parsed // .proto file by way of a "path", which is a sequence of integers that // describe the route from a FileDescriptorProto to the relevant submessage. // The path alternates between a field number of a repeated field, and an index // into that repeated field. The constants below define the field numbers that // are used. // // See descriptor.proto for more information about this. const ( // tag numbers in FileDescriptorProto packagePath = 2 // package messagePath = 4 // message_type enumPath = 5 // enum_type // tag numbers in DescriptorProto messageFieldPath = 2 // field messageMessagePath = 3 // nested_type messageEnumPath = 4 // enum_type messageOneofPath = 8 // oneof_decl // tag numbers in EnumDescriptorProto enumValuePath = 2 // value ) golang-gogoprotobuf-0.5/protoc-gen-gogo/generator/helper.go000066400000000000000000000311061317075173200241500ustar00rootroot00000000000000// 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. package generator import ( "bytes" "go/parser" "go/printer" "go/token" "path" "strings" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" plugin "github.com/gogo/protobuf/protoc-gen-gogo/plugin" ) func (d *FileDescriptor) Messages() []*Descriptor { return d.desc } func (d *FileDescriptor) Enums() []*EnumDescriptor { return d.enum } func (d *Descriptor) IsGroup() bool { return d.group } func (g *Generator) IsGroup(field *descriptor.FieldDescriptorProto) bool { if d, ok := g.typeNameToObject[field.GetTypeName()].(*Descriptor); ok { return d.IsGroup() } return false } func (g *Generator) TypeNameByObject(typeName string) Object { o, ok := g.typeNameToObject[typeName] if !ok { g.Fail("can't find object with type", typeName) } return o } func (g *Generator) OneOfTypeName(message *Descriptor, field *descriptor.FieldDescriptorProto) string { typeName := message.TypeName() ccTypeName := CamelCaseSlice(typeName) fieldName := g.GetOneOfFieldName(message, field) tname := ccTypeName + "_" + fieldName // It is possible for this to collide with a message or enum // nested in this message. Check for collisions. ok := true for _, desc := range message.nested { if strings.Join(desc.TypeName(), "_") == tname { ok = false break } } for _, enum := range message.enums { if strings.Join(enum.TypeName(), "_") == tname { ok = false break } } if !ok { tname += "_" } return tname } type PluginImports interface { NewImport(pkg string) Single GenerateImports(file *FileDescriptor) } type pluginImports struct { generator *Generator singles []Single } func NewPluginImports(generator *Generator) *pluginImports { return &pluginImports{generator, make([]Single, 0)} } func (this *pluginImports) NewImport(pkg string) Single { imp := newImportedPackage(this.generator.ImportPrefix, pkg) this.singles = append(this.singles, imp) return imp } func (this *pluginImports) GenerateImports(file *FileDescriptor) { for _, s := range this.singles { if s.IsUsed() { this.generator.PrintImport(s.Name(), s.Location()) } } } type Single interface { Use() string IsUsed() bool Name() string Location() string } type importedPackage struct { used bool pkg string name string importPrefix string } func newImportedPackage(importPrefix, pkg string) *importedPackage { return &importedPackage{ pkg: pkg, importPrefix: importPrefix, } } func (this *importedPackage) Use() string { if !this.used { this.name = RegisterUniquePackageName(this.pkg, nil) this.used = true } return this.name } func (this *importedPackage) IsUsed() bool { return this.used } func (this *importedPackage) Name() string { return this.name } func (this *importedPackage) Location() string { return this.importPrefix + this.pkg } func (g *Generator) GetFieldName(message *Descriptor, field *descriptor.FieldDescriptorProto) string { goTyp, _ := g.GoType(message, field) fieldname := CamelCase(*field.Name) if gogoproto.IsCustomName(field) { fieldname = gogoproto.GetCustomName(field) } if gogoproto.IsEmbed(field) { fieldname = EmbedFieldName(goTyp) } if field.OneofIndex != nil { fieldname = message.OneofDecl[int(*field.OneofIndex)].GetName() fieldname = CamelCase(fieldname) } for _, f := range methodNames { if f == fieldname { return fieldname + "_" } } if !gogoproto.IsProtoSizer(message.file, message.DescriptorProto) { if fieldname == "Size" { return fieldname + "_" } } return fieldname } func (g *Generator) GetOneOfFieldName(message *Descriptor, field *descriptor.FieldDescriptorProto) string { goTyp, _ := g.GoType(message, field) fieldname := CamelCase(*field.Name) if gogoproto.IsCustomName(field) { fieldname = gogoproto.GetCustomName(field) } if gogoproto.IsEmbed(field) { fieldname = EmbedFieldName(goTyp) } for _, f := range methodNames { if f == fieldname { return fieldname + "_" } } if !gogoproto.IsProtoSizer(message.file, message.DescriptorProto) { if fieldname == "Size" { return fieldname + "_" } } return fieldname } func (g *Generator) IsMap(field *descriptor.FieldDescriptorProto) bool { if !field.IsMessage() { return false } byName := g.ObjectNamed(field.GetTypeName()) desc, ok := byName.(*Descriptor) if byName == nil || !ok || !desc.GetOptions().GetMapEntry() { return false } return true } func (g *Generator) GetMapKeyField(field, keyField *descriptor.FieldDescriptorProto) *descriptor.FieldDescriptorProto { if !gogoproto.IsCastKey(field) { return keyField } keyField = proto.Clone(keyField).(*descriptor.FieldDescriptorProto) if keyField.Options == nil { keyField.Options = &descriptor.FieldOptions{} } keyType := gogoproto.GetCastKey(field) if err := proto.SetExtension(keyField.Options, gogoproto.E_Casttype, &keyType); err != nil { g.Fail(err.Error()) } return keyField } func (g *Generator) GetMapValueField(field, valField *descriptor.FieldDescriptorProto) *descriptor.FieldDescriptorProto { if gogoproto.IsCustomType(field) && gogoproto.IsCastValue(field) { g.Fail("cannot have a customtype and casttype: ", field.String()) } valField = proto.Clone(valField).(*descriptor.FieldDescriptorProto) if valField.Options == nil { valField.Options = &descriptor.FieldOptions{} } stdtime := gogoproto.IsStdTime(field) if stdtime { if err := proto.SetExtension(valField.Options, gogoproto.E_Stdtime, &stdtime); err != nil { g.Fail(err.Error()) } } stddur := gogoproto.IsStdDuration(field) if stddur { if err := proto.SetExtension(valField.Options, gogoproto.E_Stdduration, &stddur); err != nil { g.Fail(err.Error()) } } if valType := gogoproto.GetCastValue(field); len(valType) > 0 { if err := proto.SetExtension(valField.Options, gogoproto.E_Casttype, &valType); err != nil { g.Fail(err.Error()) } } if valType := gogoproto.GetCustomType(field); len(valType) > 0 { if err := proto.SetExtension(valField.Options, gogoproto.E_Customtype, &valType); err != nil { g.Fail(err.Error()) } } nullable := gogoproto.IsNullable(field) if err := proto.SetExtension(valField.Options, gogoproto.E_Nullable, &nullable); err != nil { g.Fail(err.Error()) } return valField } // GoMapValueTypes returns the map value Go type and the alias map value Go type (for casting), taking into // account whether the map is nullable or the value is a message. func GoMapValueTypes(mapField, valueField *descriptor.FieldDescriptorProto, goValueType, goValueAliasType string) (nullable bool, outGoType string, outGoAliasType string) { nullable = gogoproto.IsNullable(mapField) && (valueField.IsMessage() || gogoproto.IsCustomType(mapField)) if nullable { // ensure the non-aliased Go value type is a pointer for consistency if strings.HasPrefix(goValueType, "*") { outGoType = goValueType } else { outGoType = "*" + goValueType } outGoAliasType = goValueAliasType } else { outGoType = strings.Replace(goValueType, "*", "", 1) outGoAliasType = strings.Replace(goValueAliasType, "*", "", 1) } return } func GoTypeToName(goTyp string) string { return strings.Replace(strings.Replace(goTyp, "*", "", -1), "[]", "", -1) } func EmbedFieldName(goTyp string) string { goTyp = GoTypeToName(goTyp) goTyps := strings.Split(goTyp, ".") if len(goTyps) == 1 { return goTyp } if len(goTyps) == 2 { return goTyps[1] } panic("unreachable") } func (g *Generator) GeneratePlugin(p Plugin) { plugins = []Plugin{p} p.Init(g) // Generate the output. The generator runs for every file, even the files // that we don't generate output for, so that we can collate the full list // of exported symbols to support public imports. genFileMap := make(map[*FileDescriptor]bool, len(g.genFiles)) for _, file := range g.genFiles { genFileMap[file] = true } for _, file := range g.allFiles { g.Reset() g.writeOutput = genFileMap[file] g.generatePlugin(file, p) if !g.writeOutput { continue } g.Response.File = append(g.Response.File, &plugin.CodeGeneratorResponse_File{ Name: proto.String(file.goFileName()), Content: proto.String(g.String()), }) } } func (g *Generator) SetFile(file *descriptor.FileDescriptorProto) { g.file = g.FileOf(file) } func (g *Generator) generatePlugin(file *FileDescriptor, p Plugin) { g.writtenImports = make(map[string]bool) g.file = g.FileOf(file.FileDescriptorProto) g.usedPackages = make(map[string]bool) // Run the plugins before the imports so we know which imports are necessary. p.Generate(file) // Generate header and imports last, though they appear first in the output. rem := g.Buffer g.Buffer = new(bytes.Buffer) g.generateHeader() p.GenerateImports(g.file) g.generateImports() if !g.writeOutput { return } g.Write(rem.Bytes()) // Reformat generated code. contents := string(g.Buffer.Bytes()) fset := token.NewFileSet() ast, err := parser.ParseFile(fset, "", g, parser.ParseComments) if err != nil { g.Fail("bad Go source code was generated:", contents, err.Error()) return } g.Reset() err = (&printer.Config{Mode: printer.TabIndent | printer.UseSpaces, Tabwidth: 8}).Fprint(g, fset, ast) if err != nil { g.Fail("generated Go source code could not be reformatted:", err.Error()) } } func GetCustomType(field *descriptor.FieldDescriptorProto) (packageName string, typ string, err error) { return getCustomType(field) } func getCustomType(field *descriptor.FieldDescriptorProto) (packageName string, typ string, err error) { if field.Options != nil { var v interface{} v, err = proto.GetExtension(field.Options, gogoproto.E_Customtype) if err == nil && v.(*string) != nil { ctype := *(v.(*string)) packageName, typ = splitCPackageType(ctype) return packageName, typ, nil } } return "", "", err } func splitCPackageType(ctype string) (packageName string, typ string) { ss := strings.Split(ctype, ".") if len(ss) == 1 { return "", ctype } packageName = strings.Join(ss[0:len(ss)-1], ".") typeName := ss[len(ss)-1] importStr := strings.Map(badToUnderscore, packageName) typ = importStr + "." + typeName return packageName, typ } func getCastType(field *descriptor.FieldDescriptorProto) (packageName string, typ string, err error) { if field.Options != nil { var v interface{} v, err = proto.GetExtension(field.Options, gogoproto.E_Casttype) if err == nil && v.(*string) != nil { ctype := *(v.(*string)) packageName, typ = splitCPackageType(ctype) return packageName, typ, nil } } return "", "", err } func FileName(file *FileDescriptor) string { fname := path.Base(file.FileDescriptorProto.GetName()) fname = strings.Replace(fname, ".proto", "", -1) fname = strings.Replace(fname, "-", "_", -1) fname = strings.Replace(fname, ".", "_", -1) return CamelCase(fname) } func (g *Generator) AllFiles() *descriptor.FileDescriptorSet { set := &descriptor.FileDescriptorSet{} set.File = make([]*descriptor.FileDescriptorProto, len(g.allFiles)) for i := range g.allFiles { set.File[i] = g.allFiles[i].FileDescriptorProto } return set } func (d *Descriptor) Path() string { return d.path } func (g *Generator) useTypes() string { pkg := strings.Map(badToUnderscore, "github.com/gogo/protobuf/types") g.customImports = append(g.customImports, "github.com/gogo/protobuf/types") return pkg } golang-gogoprotobuf-0.5/protoc-gen-gogo/generator/name_test.go000066400000000000000000000056101317075173200246510ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2013 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. package generator import ( "testing" "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" ) func TestCamelCase(t *testing.T) { tests := []struct { in, want string }{ {"one", "One"}, {"one_two", "OneTwo"}, {"_my_field_name_2", "XMyFieldName_2"}, {"Something_Capped", "Something_Capped"}, {"my_Name", "My_Name"}, {"OneTwo", "OneTwo"}, {"_", "X"}, {"_a_", "XA_"}, } for _, tc := range tests { if got := CamelCase(tc.in); got != tc.want { t.Errorf("CamelCase(%q) = %q, want %q", tc.in, got, tc.want) } } } func TestGoPackageOption(t *testing.T) { tests := []struct { in string impPath, pkg string ok bool }{ {"", "", "", false}, {"foo", "", "foo", true}, {"github.com/golang/bar", "github.com/golang/bar", "bar", true}, {"github.com/golang/bar;baz", "github.com/golang/bar", "baz", true}, } for _, tc := range tests { d := &FileDescriptor{ FileDescriptorProto: &descriptor.FileDescriptorProto{ Options: &descriptor.FileOptions{ GoPackage: &tc.in, }, }, } impPath, pkg, ok := d.goPackageOption() if impPath != tc.impPath || pkg != tc.pkg || ok != tc.ok { t.Errorf("go_package = %q => (%q, %q, %t), want (%q, %q, %t)", tc.in, impPath, pkg, ok, tc.impPath, tc.pkg, tc.ok) } } } golang-gogoprotobuf-0.5/protoc-gen-gogo/grpc/000077500000000000000000000000001317075173200213065ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogo/grpc/grpc.go000066400000000000000000000362221317075173200225750ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2015 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. // Package grpc outputs gRPC service descriptions in Go code. // It runs as a plugin for the Go protocol buffer compiler plugin. // It is linked in to protoc-gen-go. package grpc import ( "fmt" "path" "strconv" "strings" pb "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" "github.com/gogo/protobuf/protoc-gen-gogo/generator" ) // generatedCodeVersion indicates a version of the generated code. // It is incremented whenever an incompatibility between the generated code and // the grpc package is introduced; the generated code references // a constant, grpc.SupportPackageIsVersionN (where N is generatedCodeVersion). const generatedCodeVersion = 4 // Paths for packages used by code generated in this file, // relative to the import_prefix of the generator.Generator. const ( contextPkgPath = "golang.org/x/net/context" grpcPkgPath = "google.golang.org/grpc" ) func init() { generator.RegisterPlugin(new(grpc)) } // grpc is an implementation of the Go protocol buffer compiler's // plugin architecture. It generates bindings for gRPC support. type grpc struct { gen *generator.Generator } // Name returns the name of this plugin, "grpc". func (g *grpc) Name() string { return "grpc" } // The names for packages imported in the generated code. // They may vary from the final path component of the import path // if the name is used by other packages. var ( contextPkg string grpcPkg string ) // Init initializes the plugin. func (g *grpc) Init(gen *generator.Generator) { g.gen = gen contextPkg = generator.RegisterUniquePackageName("context", nil) grpcPkg = generator.RegisterUniquePackageName("grpc", nil) } // Given a type name defined in a .proto, return its object. // Also record that we're using it, to guarantee the associated import. func (g *grpc) objectNamed(name string) generator.Object { g.gen.RecordTypeUse(name) return g.gen.ObjectNamed(name) } // Given a type name defined in a .proto, return its name as we will print it. func (g *grpc) typeName(str string) string { return g.gen.TypeName(g.objectNamed(str)) } // P forwards to g.gen.P. func (g *grpc) P(args ...interface{}) { g.gen.P(args...) } // Generate generates code for the services in the given file. func (g *grpc) Generate(file *generator.FileDescriptor) { if len(file.FileDescriptorProto.Service) == 0 { return } g.P("// Reference imports to suppress errors if they are not otherwise used.") g.P("var _ ", contextPkg, ".Context") g.P("var _ ", grpcPkg, ".ClientConn") g.P() // Assert version compatibility. g.P("// This is a compile-time assertion to ensure that this generated file") g.P("// is compatible with the grpc package it is being compiled against.") g.P("const _ = ", grpcPkg, ".SupportPackageIsVersion", generatedCodeVersion) g.P() for i, service := range file.FileDescriptorProto.Service { g.generateService(file, service, i) } } // GenerateImports generates the import declaration for this file. func (g *grpc) GenerateImports(file *generator.FileDescriptor) { if len(file.FileDescriptorProto.Service) == 0 { return } g.P("import (") g.P(contextPkg, " ", strconv.Quote(path.Join(g.gen.ImportPrefix, contextPkgPath))) g.P(grpcPkg, " ", strconv.Quote(path.Join(g.gen.ImportPrefix, grpcPkgPath))) g.P(")") g.P() } // reservedClientName records whether a client name is reserved on the client side. var reservedClientName = map[string]bool{ // TODO: do we need any in gRPC? } func unexport(s string) string { return strings.ToLower(s[:1]) + s[1:] } // generateService generates all the code for the named service. func (g *grpc) generateService(file *generator.FileDescriptor, service *pb.ServiceDescriptorProto, index int) { path := fmt.Sprintf("6,%d", index) // 6 means service. origServName := service.GetName() fullServName := origServName if pkg := file.GetPackage(); pkg != "" { fullServName = pkg + "." + fullServName } servName := generator.CamelCase(origServName) g.P() g.P("// Client API for ", servName, " service") g.P() // Client interface. g.P("type ", servName, "Client interface {") for i, method := range service.Method { g.gen.PrintComments(fmt.Sprintf("%s,2,%d", path, i)) // 2 means method in a service. g.P(g.generateClientSignature(servName, method)) } g.P("}") g.P() // Client structure. g.P("type ", unexport(servName), "Client struct {") g.P("cc *", grpcPkg, ".ClientConn") g.P("}") g.P() // NewClient factory. g.P("func New", servName, "Client (cc *", grpcPkg, ".ClientConn) ", servName, "Client {") g.P("return &", unexport(servName), "Client{cc}") g.P("}") g.P() var methodIndex, streamIndex int serviceDescVar := "_" + servName + "_serviceDesc" // Client method implementations. for _, method := range service.Method { var descExpr string if !method.GetServerStreaming() && !method.GetClientStreaming() { // Unary RPC method descExpr = fmt.Sprintf("&%s.Methods[%d]", serviceDescVar, methodIndex) methodIndex++ } else { // Streaming RPC method descExpr = fmt.Sprintf("&%s.Streams[%d]", serviceDescVar, streamIndex) streamIndex++ } g.generateClientMethod(servName, fullServName, serviceDescVar, method, descExpr) } g.P("// Server API for ", servName, " service") g.P() // Server interface. serverType := servName + "Server" g.P("type ", serverType, " interface {") for i, method := range service.Method { g.gen.PrintComments(fmt.Sprintf("%s,2,%d", path, i)) // 2 means method in a service. g.P(g.generateServerSignature(servName, method)) } g.P("}") g.P() // Server registration. g.P("func Register", servName, "Server(s *", grpcPkg, ".Server, srv ", serverType, ") {") g.P("s.RegisterService(&", serviceDescVar, `, srv)`) g.P("}") g.P() // Server handler implementations. var handlerNames []string for _, method := range service.Method { hname := g.generateServerMethod(servName, fullServName, method) handlerNames = append(handlerNames, hname) } // Service descriptor. g.P("var ", serviceDescVar, " = ", grpcPkg, ".ServiceDesc {") g.P("ServiceName: ", strconv.Quote(fullServName), ",") g.P("HandlerType: (*", serverType, ")(nil),") g.P("Methods: []", grpcPkg, ".MethodDesc{") for i, method := range service.Method { if method.GetServerStreaming() || method.GetClientStreaming() { continue } g.P("{") g.P("MethodName: ", strconv.Quote(method.GetName()), ",") g.P("Handler: ", handlerNames[i], ",") g.P("},") } g.P("},") g.P("Streams: []", grpcPkg, ".StreamDesc{") for i, method := range service.Method { if !method.GetServerStreaming() && !method.GetClientStreaming() { continue } g.P("{") g.P("StreamName: ", strconv.Quote(method.GetName()), ",") g.P("Handler: ", handlerNames[i], ",") if method.GetServerStreaming() { g.P("ServerStreams: true,") } if method.GetClientStreaming() { g.P("ClientStreams: true,") } g.P("},") } g.P("},") g.P("Metadata: \"", file.GetName(), "\",") g.P("}") g.P() } // generateClientSignature returns the client-side signature for a method. func (g *grpc) generateClientSignature(servName string, method *pb.MethodDescriptorProto) string { origMethName := method.GetName() methName := generator.CamelCase(origMethName) if reservedClientName[methName] { methName += "_" } reqArg := ", in *" + g.typeName(method.GetInputType()) if method.GetClientStreaming() { reqArg = "" } respName := "*" + g.typeName(method.GetOutputType()) if method.GetServerStreaming() || method.GetClientStreaming() { respName = servName + "_" + generator.CamelCase(origMethName) + "Client" } return fmt.Sprintf("%s(ctx %s.Context%s, opts ...%s.CallOption) (%s, error)", methName, contextPkg, reqArg, grpcPkg, respName) } func (g *grpc) generateClientMethod(servName, fullServName, serviceDescVar string, method *pb.MethodDescriptorProto, descExpr string) { sname := fmt.Sprintf("/%s/%s", fullServName, method.GetName()) methName := generator.CamelCase(method.GetName()) inType := g.typeName(method.GetInputType()) outType := g.typeName(method.GetOutputType()) g.P("func (c *", unexport(servName), "Client) ", g.generateClientSignature(servName, method), "{") if !method.GetServerStreaming() && !method.GetClientStreaming() { g.P("out := new(", outType, ")") // TODO: Pass descExpr to Invoke. g.P("err := ", grpcPkg, `.Invoke(ctx, "`, sname, `", in, out, c.cc, opts...)`) g.P("if err != nil { return nil, err }") g.P("return out, nil") g.P("}") g.P() return } streamType := unexport(servName) + methName + "Client" g.P("stream, err := ", grpcPkg, ".NewClientStream(ctx, ", descExpr, `, c.cc, "`, sname, `", opts...)`) g.P("if err != nil { return nil, err }") g.P("x := &", streamType, "{stream}") if !method.GetClientStreaming() { g.P("if err := x.ClientStream.SendMsg(in); err != nil { return nil, err }") g.P("if err := x.ClientStream.CloseSend(); err != nil { return nil, err }") } g.P("return x, nil") g.P("}") g.P() genSend := method.GetClientStreaming() genRecv := method.GetServerStreaming() genCloseAndRecv := !method.GetServerStreaming() // Stream auxiliary types and methods. g.P("type ", servName, "_", methName, "Client interface {") if genSend { g.P("Send(*", inType, ") error") } if genRecv { g.P("Recv() (*", outType, ", error)") } if genCloseAndRecv { g.P("CloseAndRecv() (*", outType, ", error)") } g.P(grpcPkg, ".ClientStream") g.P("}") g.P() g.P("type ", streamType, " struct {") g.P(grpcPkg, ".ClientStream") g.P("}") g.P() if genSend { g.P("func (x *", streamType, ") Send(m *", inType, ") error {") g.P("return x.ClientStream.SendMsg(m)") g.P("}") g.P() } if genRecv { g.P("func (x *", streamType, ") Recv() (*", outType, ", error) {") g.P("m := new(", outType, ")") g.P("if err := x.ClientStream.RecvMsg(m); err != nil { return nil, err }") g.P("return m, nil") g.P("}") g.P() } if genCloseAndRecv { g.P("func (x *", streamType, ") CloseAndRecv() (*", outType, ", error) {") g.P("if err := x.ClientStream.CloseSend(); err != nil { return nil, err }") g.P("m := new(", outType, ")") g.P("if err := x.ClientStream.RecvMsg(m); err != nil { return nil, err }") g.P("return m, nil") g.P("}") g.P() } } // generateServerSignature returns the server-side signature for a method. func (g *grpc) generateServerSignature(servName string, method *pb.MethodDescriptorProto) string { origMethName := method.GetName() methName := generator.CamelCase(origMethName) if reservedClientName[methName] { methName += "_" } var reqArgs []string ret := "error" if !method.GetServerStreaming() && !method.GetClientStreaming() { reqArgs = append(reqArgs, contextPkg+".Context") ret = "(*" + g.typeName(method.GetOutputType()) + ", error)" } if !method.GetClientStreaming() { reqArgs = append(reqArgs, "*"+g.typeName(method.GetInputType())) } if method.GetServerStreaming() || method.GetClientStreaming() { reqArgs = append(reqArgs, servName+"_"+generator.CamelCase(origMethName)+"Server") } return methName + "(" + strings.Join(reqArgs, ", ") + ") " + ret } func (g *grpc) generateServerMethod(servName, fullServName string, method *pb.MethodDescriptorProto) string { methName := generator.CamelCase(method.GetName()) hname := fmt.Sprintf("_%s_%s_Handler", servName, methName) inType := g.typeName(method.GetInputType()) outType := g.typeName(method.GetOutputType()) if !method.GetServerStreaming() && !method.GetClientStreaming() { g.P("func ", hname, "(srv interface{}, ctx ", contextPkg, ".Context, dec func(interface{}) error, interceptor ", grpcPkg, ".UnaryServerInterceptor) (interface{}, error) {") g.P("in := new(", inType, ")") g.P("if err := dec(in); err != nil { return nil, err }") g.P("if interceptor == nil { return srv.(", servName, "Server).", methName, "(ctx, in) }") g.P("info := &", grpcPkg, ".UnaryServerInfo{") g.P("Server: srv,") g.P("FullMethod: ", strconv.Quote(fmt.Sprintf("/%s/%s", fullServName, methName)), ",") g.P("}") g.P("handler := func(ctx ", contextPkg, ".Context, req interface{}) (interface{}, error) {") g.P("return srv.(", servName, "Server).", methName, "(ctx, req.(*", inType, "))") g.P("}") g.P("return interceptor(ctx, in, info, handler)") g.P("}") g.P() return hname } streamType := unexport(servName) + methName + "Server" g.P("func ", hname, "(srv interface{}, stream ", grpcPkg, ".ServerStream) error {") if !method.GetClientStreaming() { g.P("m := new(", inType, ")") g.P("if err := stream.RecvMsg(m); err != nil { return err }") g.P("return srv.(", servName, "Server).", methName, "(m, &", streamType, "{stream})") } else { g.P("return srv.(", servName, "Server).", methName, "(&", streamType, "{stream})") } g.P("}") g.P() genSend := method.GetServerStreaming() genSendAndClose := !method.GetServerStreaming() genRecv := method.GetClientStreaming() // Stream auxiliary types and methods. g.P("type ", servName, "_", methName, "Server interface {") if genSend { g.P("Send(*", outType, ") error") } if genSendAndClose { g.P("SendAndClose(*", outType, ") error") } if genRecv { g.P("Recv() (*", inType, ", error)") } g.P(grpcPkg, ".ServerStream") g.P("}") g.P() g.P("type ", streamType, " struct {") g.P(grpcPkg, ".ServerStream") g.P("}") g.P() if genSend { g.P("func (x *", streamType, ") Send(m *", outType, ") error {") g.P("return x.ServerStream.SendMsg(m)") g.P("}") g.P() } if genSendAndClose { g.P("func (x *", streamType, ") SendAndClose(m *", outType, ") error {") g.P("return x.ServerStream.SendMsg(m)") g.P("}") g.P() } if genRecv { g.P("func (x *", streamType, ") Recv() (*", inType, ", error) {") g.P("m := new(", inType, ")") g.P("if err := x.ServerStream.RecvMsg(m); err != nil { return nil, err }") g.P("return m, nil") g.P("}") g.P() } return hname } golang-gogoprotobuf-0.5/protoc-gen-gogo/main.go000066400000000000000000000050301317075173200216240ustar00rootroot00000000000000// 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())) } golang-gogoprotobuf-0.5/protoc-gen-gogo/plugin/000077500000000000000000000000001317075173200216515ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogo/plugin/Makefile000066400000000000000000000040421317075173200233110ustar00rootroot00000000000000# 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. # Not stored here, but plugin.proto is in https://github.com/google/protobuf/ # at src/google/protobuf/compiler/plugin.proto # Also we need to fix an import. 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:. -I=../../protobuf/google/protobuf/compiler/:../../protobuf/ ../../protobuf/google/protobuf/compiler/plugin.proto golang-gogoprotobuf-0.5/protoc-gen-gogo/plugin/plugin.pb.go000066400000000000000000000315641317075173200241070ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: plugin.proto /* Package plugin_go is a generated protocol buffer package. It is generated from these files: plugin.proto It has these top-level messages: Version CodeGeneratorRequest CodeGeneratorResponse */ package plugin_go import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import google_protobuf "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package // The version number of protocol compiler. type Version struct { Major *int32 `protobuf:"varint,1,opt,name=major" json:"major,omitempty"` Minor *int32 `protobuf:"varint,2,opt,name=minor" json:"minor,omitempty"` Patch *int32 `protobuf:"varint,3,opt,name=patch" json:"patch,omitempty"` // A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should // be empty for mainline stable releases. Suffix *string `protobuf:"bytes,4,opt,name=suffix" json:"suffix,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Version) Reset() { *m = Version{} } func (m *Version) String() string { return proto.CompactTextString(m) } func (*Version) ProtoMessage() {} func (*Version) Descriptor() ([]byte, []int) { return fileDescriptorPlugin, []int{0} } func (m *Version) GetMajor() int32 { if m != nil && m.Major != nil { return *m.Major } return 0 } func (m *Version) GetMinor() int32 { if m != nil && m.Minor != nil { return *m.Minor } return 0 } func (m *Version) GetPatch() int32 { if m != nil && m.Patch != nil { return *m.Patch } return 0 } func (m *Version) GetSuffix() string { if m != nil && m.Suffix != nil { return *m.Suffix } return "" } // An encoded CodeGeneratorRequest is written to the plugin's stdin. type CodeGeneratorRequest struct { // The .proto files that were explicitly listed on the command-line. The // code generator should generate code only for these files. Each file's // descriptor will be included in proto_file, below. FileToGenerate []string `protobuf:"bytes,1,rep,name=file_to_generate,json=fileToGenerate" json:"file_to_generate,omitempty"` // The generator parameter passed on the command-line. Parameter *string `protobuf:"bytes,2,opt,name=parameter" json:"parameter,omitempty"` // FileDescriptorProtos for all files in files_to_generate and everything // they import. The files will appear in topological order, so each file // appears before any file that imports it. // // protoc guarantees that all proto_files will be written after // the fields above, even though this is not technically guaranteed by the // protobuf wire format. This theoretically could allow a plugin to stream // in the FileDescriptorProtos and handle them one by one rather than read // the entire set into memory at once. However, as of this writing, this // is not similarly optimized on protoc's end -- it will store all fields in // memory at once before sending them to the plugin. // // Type names of fields and extensions in the FileDescriptorProto are always // fully qualified. ProtoFile []*google_protobuf.FileDescriptorProto `protobuf:"bytes,15,rep,name=proto_file,json=protoFile" json:"proto_file,omitempty"` // The version number of protocol compiler. CompilerVersion *Version `protobuf:"bytes,3,opt,name=compiler_version,json=compilerVersion" json:"compiler_version,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CodeGeneratorRequest) Reset() { *m = CodeGeneratorRequest{} } func (m *CodeGeneratorRequest) String() string { return proto.CompactTextString(m) } func (*CodeGeneratorRequest) ProtoMessage() {} func (*CodeGeneratorRequest) Descriptor() ([]byte, []int) { return fileDescriptorPlugin, []int{1} } func (m *CodeGeneratorRequest) GetFileToGenerate() []string { if m != nil { return m.FileToGenerate } return nil } func (m *CodeGeneratorRequest) GetParameter() string { if m != nil && m.Parameter != nil { return *m.Parameter } return "" } func (m *CodeGeneratorRequest) GetProtoFile() []*google_protobuf.FileDescriptorProto { if m != nil { return m.ProtoFile } return nil } func (m *CodeGeneratorRequest) GetCompilerVersion() *Version { if m != nil { return m.CompilerVersion } return nil } // The plugin writes an encoded CodeGeneratorResponse to stdout. type CodeGeneratorResponse struct { // Error message. If non-empty, code generation failed. The plugin process // should exit with status code zero even if it reports an error in this way. // // This should be used to indicate errors in .proto files which prevent the // code generator from generating correct code. Errors which indicate a // problem in protoc itself -- such as the input CodeGeneratorRequest being // unparseable -- should be reported by writing a message to stderr and // exiting with a non-zero status code. Error *string `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"` File []*CodeGeneratorResponse_File `protobuf:"bytes,15,rep,name=file" json:"file,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CodeGeneratorResponse) Reset() { *m = CodeGeneratorResponse{} } func (m *CodeGeneratorResponse) String() string { return proto.CompactTextString(m) } func (*CodeGeneratorResponse) ProtoMessage() {} func (*CodeGeneratorResponse) Descriptor() ([]byte, []int) { return fileDescriptorPlugin, []int{2} } func (m *CodeGeneratorResponse) GetError() string { if m != nil && m.Error != nil { return *m.Error } return "" } func (m *CodeGeneratorResponse) GetFile() []*CodeGeneratorResponse_File { if m != nil { return m.File } return nil } // Represents a single generated file. type CodeGeneratorResponse_File struct { // The file name, relative to the output directory. The name must not // contain "." or ".." components and must be relative, not be absolute (so, // the file cannot lie outside the output directory). "/" must be used as // the path separator, not "\". // // If the name is omitted, the content will be appended to the previous // file. This allows the generator to break large files into small chunks, // and allows the generated text to be streamed back to protoc so that large // files need not reside completely in memory at one time. Note that as of // this writing protoc does not optimize for this -- it will read the entire // CodeGeneratorResponse before writing files to disk. Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` // If non-empty, indicates that the named file should already exist, and the // content here is to be inserted into that file at a defined insertion // point. This feature allows a code generator to extend the output // produced by another code generator. The original generator may provide // insertion points by placing special annotations in the file that look // like: // @@protoc_insertion_point(NAME) // The annotation can have arbitrary text before and after it on the line, // which allows it to be placed in a comment. NAME should be replaced with // an identifier naming the point -- this is what other generators will use // as the insertion_point. Code inserted at this point will be placed // immediately above the line containing the insertion point (thus multiple // insertions to the same point will come out in the order they were added). // The double-@ is intended to make it unlikely that the generated code // could contain things that look like insertion points by accident. // // For example, the C++ code generator places the following line in the // .pb.h files that it generates: // // @@protoc_insertion_point(namespace_scope) // This line appears within the scope of the file's package namespace, but // outside of any particular class. Another plugin can then specify the // insertion_point "namespace_scope" to generate additional classes or // other declarations that should be placed in this scope. // // Note that if the line containing the insertion point begins with // whitespace, the same whitespace will be added to every line of the // inserted text. This is useful for languages like Python, where // indentation matters. In these languages, the insertion point comment // should be indented the same amount as any inserted code will need to be // in order to work correctly in that context. // // The code generator that generates the initial file and the one which // inserts into it must both run as part of a single invocation of protoc. // Code generators are executed in the order in which they appear on the // command line. // // If |insertion_point| is present, |name| must also be present. InsertionPoint *string `protobuf:"bytes,2,opt,name=insertion_point,json=insertionPoint" json:"insertion_point,omitempty"` // The file contents. Content *string `protobuf:"bytes,15,opt,name=content" json:"content,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CodeGeneratorResponse_File) Reset() { *m = CodeGeneratorResponse_File{} } func (m *CodeGeneratorResponse_File) String() string { return proto.CompactTextString(m) } func (*CodeGeneratorResponse_File) ProtoMessage() {} func (*CodeGeneratorResponse_File) Descriptor() ([]byte, []int) { return fileDescriptorPlugin, []int{2, 0} } func (m *CodeGeneratorResponse_File) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } func (m *CodeGeneratorResponse_File) GetInsertionPoint() string { if m != nil && m.InsertionPoint != nil { return *m.InsertionPoint } return "" } func (m *CodeGeneratorResponse_File) GetContent() string { if m != nil && m.Content != nil { return *m.Content } return "" } func init() { proto.RegisterType((*Version)(nil), "google.protobuf.compiler.Version") proto.RegisterType((*CodeGeneratorRequest)(nil), "google.protobuf.compiler.CodeGeneratorRequest") proto.RegisterType((*CodeGeneratorResponse)(nil), "google.protobuf.compiler.CodeGeneratorResponse") proto.RegisterType((*CodeGeneratorResponse_File)(nil), "google.protobuf.compiler.CodeGeneratorResponse.File") } func init() { proto.RegisterFile("plugin.proto", fileDescriptorPlugin) } var fileDescriptorPlugin = []byte{ // 383 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xcd, 0x6a, 0xd5, 0x40, 0x14, 0xc7, 0x89, 0x37, 0xb5, 0xe4, 0xb4, 0x34, 0x65, 0xa8, 0x32, 0x94, 0x2e, 0xe2, 0x45, 0x30, 0xab, 0x14, 0x8a, 0xe0, 0xbe, 0x15, 0x75, 0xe1, 0xe2, 0x32, 0x88, 0x0b, 0x41, 0x42, 0x4c, 0x4f, 0xe2, 0x48, 0x32, 0x67, 0x9c, 0x99, 0x88, 0x4f, 0xea, 0x7b, 0xf8, 0x06, 0x32, 0x1f, 0xa9, 0x72, 0xf1, 0xee, 0xe6, 0xff, 0x3b, 0xf3, 0x71, 0xce, 0x8f, 0x81, 0x53, 0x3d, 0x2d, 0xa3, 0x54, 0x8d, 0x36, 0xe4, 0x88, 0xf1, 0x91, 0x68, 0x9c, 0x30, 0xa6, 0x2f, 0xcb, 0xd0, 0xf4, 0x34, 0x6b, 0x39, 0xa1, 0xb9, 0xac, 0x62, 0xe5, 0x7a, 0xad, 0x5c, 0xdf, 0xa3, 0xed, 0x8d, 0xd4, 0x8e, 0x4c, 0xdc, 0xbd, 0xed, 0xe1, 0xf8, 0x23, 0x1a, 0x2b, 0x49, 0xb1, 0x0b, 0x38, 0x9a, 0xbb, 0x6f, 0x64, 0x78, 0x56, 0x65, 0xf5, 0x91, 0x88, 0x21, 0x50, 0xa9, 0xc8, 0xf0, 0x47, 0x89, 0xfa, 0xe0, 0xa9, 0xee, 0x5c, 0xff, 0x95, 0x6f, 0x22, 0x0d, 0x81, 0x3d, 0x85, 0xc7, 0x76, 0x19, 0x06, 0xf9, 0x93, 0xe7, 0x55, 0x56, 0x17, 0x22, 0xa5, 0xed, 0xef, 0x0c, 0x2e, 0xee, 0xe8, 0x1e, 0xdf, 0xa2, 0x42, 0xd3, 0x39, 0x32, 0x02, 0xbf, 0x2f, 0x68, 0x1d, 0xab, 0xe1, 0x7c, 0x90, 0x13, 0xb6, 0x8e, 0xda, 0x31, 0xd6, 0x90, 0x67, 0xd5, 0xa6, 0x2e, 0xc4, 0x99, 0xe7, 0x1f, 0x28, 0x9d, 0x40, 0x76, 0x05, 0x85, 0xee, 0x4c, 0x37, 0xa3, 0xc3, 0xd8, 0x4a, 0x21, 0xfe, 0x02, 0x76, 0x07, 0x10, 0xc6, 0x69, 0xfd, 0x29, 0x5e, 0x56, 0x9b, 0xfa, 0xe4, 0xe6, 0x79, 0xb3, 0xaf, 0xe5, 0x8d, 0x9c, 0xf0, 0xf5, 0x83, 0x80, 0x9d, 0xc7, 0xa2, 0x08, 0x55, 0x5f, 0x61, 0xef, 0xe1, 0x7c, 0x15, 0xd7, 0xfe, 0x88, 0x4e, 0xc2, 0x78, 0x27, 0x37, 0xcf, 0x9a, 0x43, 0x86, 0x9b, 0x24, 0x4f, 0x94, 0x2b, 0x49, 0x60, 0xfb, 0x2b, 0x83, 0x27, 0x7b, 0x33, 0x5b, 0x4d, 0xca, 0xa2, 0x77, 0x87, 0xc6, 0x24, 0xcf, 0x85, 0x88, 0x81, 0xbd, 0x83, 0xfc, 0x9f, 0xe6, 0x5f, 0x1e, 0x7e, 0xf1, 0xbf, 0x97, 0x86, 0xd9, 0x44, 0xb8, 0xe1, 0xf2, 0x33, 0xe4, 0x61, 0x1e, 0x06, 0xb9, 0xea, 0x66, 0x4c, 0xcf, 0x84, 0x35, 0x7b, 0x01, 0xa5, 0x54, 0x16, 0x8d, 0x93, 0xa4, 0x5a, 0x4d, 0x52, 0xb9, 0x24, 0xf3, 0xec, 0x01, 0xef, 0x3c, 0x65, 0x1c, 0x8e, 0x7b, 0x52, 0x0e, 0x95, 0xe3, 0x65, 0xd8, 0xb0, 0xc6, 0xdb, 0x57, 0x70, 0xd5, 0xd3, 0x7c, 0xb0, 0xbf, 0xdb, 0xd3, 0x5d, 0xf8, 0x9b, 0x41, 0xaf, 0xfd, 0x54, 0xc4, 0x9f, 0xda, 0x8e, 0xf4, 0x27, 0x00, 0x00, 0xff, 0xff, 0x7a, 0x72, 0x3d, 0x18, 0xb5, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/000077500000000000000000000000001317075173200221645ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/Makefile000066400000000000000000000051171317075173200236300ustar00rootroot00000000000000# 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. all: @echo run make test test: regenerate testbuild #test: regenerate testbuild extension_test # ./extension_test # @echo PASS my_test/test.pb.go: my_test/test.proto protoc --gogo_out=Mmulti/multi1.proto=github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi:. $< regenerate: my_test/test.pb.go go install github.com/gogo/protobuf/protoc-min-version protoc-min-version --version="3.0.0" --gogo_out=. ./my_test/test.proto nuke: clean testbuild: buildprotos go test buildprotos: # Invoke protoc once to generate three independent .pb.go files in the same package. protoc --gogo_out=. multi/multi1.proto multi/multi2.proto multi/multi3.proto #extension_test: extension_test.$O # $(LD) -L. -o $@ $< #multi.a: multi3.pb.$O multi2.pb.$O multi1.pb.$O # rm -f multi.a # $(QUOTED_GOBIN)/gopack grc $@ $< #test.pb.go: imp.pb.go #multi1.pb.go: multi2.pb.go multi3.pb.go #main.$O: imp.pb.$O test.pb.$O multi.a #extension_test.$O: extension_base.pb.$O extension_extra.pb.$O extension_user.pb.$O golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/extension_base.proto000066400000000000000000000036731317075173200262700ustar00rootroot00000000000000// 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. syntax = "proto2"; package extension_base; message BaseMessage { optional int32 height = 1; extensions 4 to 9; extensions 16 to max; } // Another message that may be extended, using message_set_wire_format. message OldStyleMessage { option message_set_wire_format = true; extensions 100 to max; } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/extension_extra.proto000066400000000000000000000033501317075173200264710ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2011 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. syntax = "proto2"; package extension_extra; message ExtraMessage { optional int32 width = 1; } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/extension_test.go000066400000000000000000000151001317075173200255630ustar00rootroot00000000000000// 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 that we can use protocol buffers that use extensions. package testdata /* import ( "bytes" "regexp" "testing" "github.com/golang/protobuf/proto" base "extension_base.pb" user "extension_user.pb" ) func TestSingleFieldExtension(t *testing.T) { bm := &base.BaseMessage{ Height: proto.Int32(178), } // Use extension within scope of another type. vol := proto.Uint32(11) err := proto.SetExtension(bm, user.E_LoudMessage_Volume, vol) if err != nil { t.Fatal("Failed setting extension:", err) } buf, err := proto.Marshal(bm) if err != nil { t.Fatal("Failed encoding message with extension:", err) } bm_new := new(base.BaseMessage) if err := proto.Unmarshal(buf, bm_new); err != nil { t.Fatal("Failed decoding message with extension:", err) } if !proto.HasExtension(bm_new, user.E_LoudMessage_Volume) { t.Fatal("Decoded message didn't contain extension.") } vol_out, err := proto.GetExtension(bm_new, user.E_LoudMessage_Volume) if err != nil { t.Fatal("Failed getting extension:", err) } if v := vol_out.(*uint32); *v != *vol { t.Errorf("vol_out = %v, expected %v", *v, *vol) } proto.ClearExtension(bm_new, user.E_LoudMessage_Volume) if proto.HasExtension(bm_new, user.E_LoudMessage_Volume) { t.Fatal("Failed clearing extension.") } } func TestMessageExtension(t *testing.T) { bm := &base.BaseMessage{ Height: proto.Int32(179), } // Use extension that is itself a message. um := &user.UserMessage{ Name: proto.String("Dave"), Rank: proto.String("Major"), } err := proto.SetExtension(bm, user.E_LoginMessage_UserMessage, um) if err != nil { t.Fatal("Failed setting extension:", err) } buf, err := proto.Marshal(bm) if err != nil { t.Fatal("Failed encoding message with extension:", err) } bm_new := new(base.BaseMessage) if err := proto.Unmarshal(buf, bm_new); err != nil { t.Fatal("Failed decoding message with extension:", err) } if !proto.HasExtension(bm_new, user.E_LoginMessage_UserMessage) { t.Fatal("Decoded message didn't contain extension.") } um_out, err := proto.GetExtension(bm_new, user.E_LoginMessage_UserMessage) if err != nil { t.Fatal("Failed getting extension:", err) } if n := um_out.(*user.UserMessage).Name; *n != *um.Name { t.Errorf("um_out.Name = %q, expected %q", *n, *um.Name) } if r := um_out.(*user.UserMessage).Rank; *r != *um.Rank { t.Errorf("um_out.Rank = %q, expected %q", *r, *um.Rank) } proto.ClearExtension(bm_new, user.E_LoginMessage_UserMessage) if proto.HasExtension(bm_new, user.E_LoginMessage_UserMessage) { t.Fatal("Failed clearing extension.") } } func TestTopLevelExtension(t *testing.T) { bm := &base.BaseMessage{ Height: proto.Int32(179), } width := proto.Int32(17) err := proto.SetExtension(bm, user.E_Width, width) if err != nil { t.Fatal("Failed setting extension:", err) } buf, err := proto.Marshal(bm) if err != nil { t.Fatal("Failed encoding message with extension:", err) } bm_new := new(base.BaseMessage) if err := proto.Unmarshal(buf, bm_new); err != nil { t.Fatal("Failed decoding message with extension:", err) } if !proto.HasExtension(bm_new, user.E_Width) { t.Fatal("Decoded message didn't contain extension.") } width_out, err := proto.GetExtension(bm_new, user.E_Width) if err != nil { t.Fatal("Failed getting extension:", err) } if w := width_out.(*int32); *w != *width { t.Errorf("width_out = %v, expected %v", *w, *width) } proto.ClearExtension(bm_new, user.E_Width) if proto.HasExtension(bm_new, user.E_Width) { t.Fatal("Failed clearing extension.") } } func TestMessageSetWireFormat(t *testing.T) { osm := new(base.OldStyleMessage) osp := &user.OldStyleParcel{ Name: proto.String("Dave"), Height: proto.Int32(178), } err := proto.SetExtension(osm, user.E_OldStyleParcel_MessageSetExtension, osp) if err != nil { t.Fatal("Failed setting extension:", err) } buf, err := proto.Marshal(osm) if err != nil { t.Fatal("Failed encoding message:", err) } // Data generated from Python implementation. expected := []byte{ 11, 16, 209, 15, 26, 9, 10, 4, 68, 97, 118, 101, 16, 178, 1, 12, } if !bytes.Equal(expected, buf) { t.Errorf("Encoding mismatch.\nwant %+v\n got %+v", expected, buf) } // Check that it is restored correctly. osm = new(base.OldStyleMessage) if err := proto.Unmarshal(buf, osm); err != nil { t.Fatal("Failed decoding message:", err) } osp_out, err := proto.GetExtension(osm, user.E_OldStyleParcel_MessageSetExtension) if err != nil { t.Fatal("Failed getting extension:", err) } osp = osp_out.(*user.OldStyleParcel) if *osp.Name != "Dave" || *osp.Height != 178 { t.Errorf("Retrieved extension from decoded message is not correct: %+v", osp) } } func main() { // simpler than rigging up gotest testing.Main(regexp.MatchString, []testing.InternalTest{ {"TestSingleFieldExtension", TestSingleFieldExtension}, {"TestMessageExtension", TestMessageExtension}, {"TestTopLevelExtension", TestTopLevelExtension}, }, []testing.InternalBenchmark{}, []testing.InternalExample{}) } */ golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/extension_user.proto000066400000000000000000000060441317075173200263270ustar00rootroot00000000000000// 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. syntax = "proto2"; import "extension_base.proto"; import "extension_extra.proto"; package extension_user; message UserMessage { optional string name = 1; optional string rank = 2; } // Extend with a message extend extension_base.BaseMessage { optional UserMessage user_message = 5; } // Extend with a foreign message extend extension_base.BaseMessage { optional extension_extra.ExtraMessage extra_message = 9; } // Extend with some primitive types extend extension_base.BaseMessage { optional int32 width = 6; optional int64 area = 7; } // Extend inside the scope of another type message LoudMessage { extend extension_base.BaseMessage { optional uint32 volume = 8; } extensions 100 to max; } // Extend inside the scope of another type, using a message. message LoginMessage { extend extension_base.BaseMessage { optional UserMessage user_message = 16; } } // Extend with a repeated field extend extension_base.BaseMessage { repeated Detail detail = 17; } message Detail { optional string color = 1; } // An extension of an extension message Announcement { optional string words = 1; extend LoudMessage { optional Announcement loud_ext = 100; } } // Something that can be put in a message set. message OldStyleParcel { extend extension_base.OldStyleMessage { optional OldStyleParcel message_set_extension = 2001; } required string name = 1; optional int32 height = 2; } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/grpc.proto000066400000000000000000000042211317075173200242030ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2015 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. syntax = "proto3"; package grpc.testing; message SimpleRequest { } message SimpleResponse { } message StreamMsg { } message StreamMsg2 { } service Test { rpc UnaryCall(SimpleRequest) returns (SimpleResponse); // This RPC streams from the server only. rpc Downstream(SimpleRequest) returns (stream StreamMsg); // This RPC streams from the client. rpc Upstream(stream StreamMsg) returns (SimpleResponse); // This one streams in both directions. rpc Bidi(stream StreamMsg) returns (stream StreamMsg2); } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/imp.pb.go.golden000066400000000000000000000065251317075173200251570ustar00rootroot00000000000000// Code generated by protoc-gen-go. // source: imp.proto // DO NOT EDIT! package imp import proto "github.com/golang/protobuf/proto" import "math" import "os" import imp1 "imp2.pb" // Reference proto & math imports to suppress error if they are not otherwise used. var _ = proto.GetString var _ = math.Inf // Types from public import imp2.proto type PubliclyImportedMessage imp1.PubliclyImportedMessage func (this *PubliclyImportedMessage) Reset() { (*imp1.PubliclyImportedMessage)(this).Reset() } func (this *PubliclyImportedMessage) String() string { return (*imp1.PubliclyImportedMessage)(this).String() } // PubliclyImportedMessage from public import imp.proto type ImportedMessage_Owner int32 const ( ImportedMessage_DAVE ImportedMessage_Owner = 1 ImportedMessage_MIKE ImportedMessage_Owner = 2 ) var ImportedMessage_Owner_name = map[int32]string{ 1: "DAVE", 2: "MIKE", } var ImportedMessage_Owner_value = map[string]int32{ "DAVE": 1, "MIKE": 2, } // NewImportedMessage_Owner is deprecated. Use x.Enum() instead. func NewImportedMessage_Owner(x ImportedMessage_Owner) *ImportedMessage_Owner { e := ImportedMessage_Owner(x) return &e } func (x ImportedMessage_Owner) Enum() *ImportedMessage_Owner { p := new(ImportedMessage_Owner) *p = x return p } func (x ImportedMessage_Owner) String() string { return proto.EnumName(ImportedMessage_Owner_name, int32(x)) } type ImportedMessage struct { Field *int64 `protobuf:"varint,1,req,name=field" json:"field,omitempty"` XXX_extensions map[int32][]byte `json:",omitempty"` XXX_unrecognized []byte `json:",omitempty"` } func (this *ImportedMessage) Reset() { *this = ImportedMessage{} } func (this *ImportedMessage) String() string { return proto.CompactTextString(this) } var extRange_ImportedMessage = []proto.ExtensionRange{ proto.ExtensionRange{90, 100}, } func (*ImportedMessage) ExtensionRangeArray() []proto.ExtensionRange { return extRange_ImportedMessage } func (this *ImportedMessage) ExtensionMap() map[int32][]byte { if this.XXX_extensions == nil { this.XXX_extensions = make(map[int32][]byte) } return this.XXX_extensions } type ImportedExtendable struct { XXX_extensions map[int32][]byte `json:",omitempty"` XXX_unrecognized []byte `json:",omitempty"` } func (this *ImportedExtendable) Reset() { *this = ImportedExtendable{} } func (this *ImportedExtendable) String() string { return proto.CompactTextString(this) } func (this *ImportedExtendable) Marshal() ([]byte, error) { return proto.MarshalMessageSet(this.ExtensionMap()) } func (this *ImportedExtendable) Unmarshal(buf []byte) error { return proto.UnmarshalMessageSet(buf, this.ExtensionMap()) } // ensure ImportedExtendable satisfies proto.Marshaler and proto.Unmarshaler var _ proto.Marshaler = (*ImportedExtendable)(nil) var _ proto.Unmarshaler = (*ImportedExtendable)(nil) var extRange_ImportedExtendable = []proto.ExtensionRange{ proto.ExtensionRange{100, 536870911}, } func (*ImportedExtendable) ExtensionRangeArray() []proto.ExtensionRange { return extRange_ImportedExtendable } func (this *ImportedExtendable) ExtensionMap() map[int32][]byte { if this.XXX_extensions == nil { this.XXX_extensions = make(map[int32][]byte) } return this.XXX_extensions } func init() { proto.RegisterEnum("imp.ImportedMessage_Owner", ImportedMessage_Owner_name, ImportedMessage_Owner_value) } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/imp.proto000066400000000000000000000045371317075173200240470ustar00rootroot00000000000000// 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. syntax = "proto2"; package imp; import "imp2.proto"; import "imp3.proto"; message ImportedMessage { required int64 field = 1; // The forwarded getters for these fields are fiddly to get right. optional ImportedMessage2 local_msg = 2; optional ForeignImportedMessage foreign_msg = 3; // in imp3.proto optional Owner enum_field = 4; oneof union { int32 state = 9; } repeated string name = 5; repeated Owner boss = 6; repeated ImportedMessage2 memo = 7; map msg_map = 8; enum Owner { DAVE = 1; MIKE = 2; } extensions 90 to 100; } message ImportedMessage2 { } message ImportedExtendable { option message_set_wire_format = true; extensions 100 to max; } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/imp2.proto000066400000000000000000000034411317075173200241220ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2011 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. syntax = "proto2"; package imp; message PubliclyImportedMessage { optional int64 field = 1; } enum PubliclyImportedEnum { GLASSES = 1; HAIR = 2; } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/imp3.proto000066400000000000000000000033471317075173200241300ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2012 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. syntax = "proto2"; package imp; message ForeignImportedMessage { optional string tuber = 1; } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/main_test.go000066400000000000000000000036401317075173200245010ustar00rootroot00000000000000// 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 simple binary to link together the protocol buffers in this test. package testdata import ( "testing" mytestpb "./my_test" multipb "github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi" ) func TestLink(t *testing.T) { _ = &multipb.Multi1{} _ = &mytestpb.Request{} } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/multi/000077500000000000000000000000001317075173200233165ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/multi/.gitignore000066400000000000000000000000101317075173200252750ustar00rootroot00000000000000*.pb.go golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/multi/multi1.proto000066400000000000000000000035451317075173200256250ustar00rootroot00000000000000// 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. syntax = "proto2"; import "multi/multi2.proto"; import "multi/multi3.proto"; package multitest; message Multi1 { required Multi2 multi2 = 1; optional Multi2.Color color = 2; optional Multi3.HatType hat_type = 3; } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/multi/multi2.proto000066400000000000000000000035011317075173200256160ustar00rootroot00000000000000// 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. syntax = "proto2"; package multitest; message Multi2 { required int32 required_value = 1; enum Color { BLUE = 1; GREEN = 2; RED = 3; }; optional Color color = 2; } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/multi/multi3.proto000066400000000000000000000034251317075173200256240ustar00rootroot00000000000000// 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. syntax = "proto2"; package multitest; message Multi3 { enum HatType { FEDORA = 1; FEZ = 2; }; optional HatType hat_type = 1; } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/my_test/000077500000000000000000000000001317075173200236505ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/my_test/test.pb.go000066400000000000000000000770431317075173200255710ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: my_test/test.proto /* Package my_test is a generated protocol buffer package. This package holds interesting messages. It is generated from these files: my_test/test.proto It has these top-level messages: Request Reply OtherBase ReplyExtensions OtherReplyExtensions OldReply Communique */ package my_test import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "multi" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type HatType int32 const ( // deliberately skipping 0 HatType_FEDORA HatType = 1 HatType_FEZ HatType = 2 ) var HatType_name = map[int32]string{ 1: "FEDORA", 2: "FEZ", } var HatType_value = map[string]int32{ "FEDORA": 1, "FEZ": 2, } func (x HatType) Enum() *HatType { p := new(HatType) *p = x return p } func (x HatType) String() string { return proto.EnumName(HatType_name, int32(x)) } func (x *HatType) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(HatType_value, data, "HatType") if err != nil { return err } *x = HatType(value) return nil } func (HatType) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{0} } // This enum represents days of the week. type Days int32 const ( Days_MONDAY Days = 1 Days_TUESDAY Days = 2 Days_LUNDI Days = 1 ) var Days_name = map[int32]string{ 1: "MONDAY", 2: "TUESDAY", // Duplicate value: 1: "LUNDI", } var Days_value = map[string]int32{ "MONDAY": 1, "TUESDAY": 2, "LUNDI": 1, } func (x Days) Enum() *Days { p := new(Days) *p = x return p } func (x Days) String() string { return proto.EnumName(Days_name, int32(x)) } func (x *Days) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(Days_value, data, "Days") if err != nil { return err } *x = Days(value) return nil } func (Days) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{1} } type Request_Color int32 const ( Request_RED Request_Color = 0 Request_GREEN Request_Color = 1 Request_BLUE Request_Color = 2 ) var Request_Color_name = map[int32]string{ 0: "RED", 1: "GREEN", 2: "BLUE", } var Request_Color_value = map[string]int32{ "RED": 0, "GREEN": 1, "BLUE": 2, } func (x Request_Color) Enum() *Request_Color { p := new(Request_Color) *p = x return p } func (x Request_Color) String() string { return proto.EnumName(Request_Color_name, int32(x)) } func (x *Request_Color) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(Request_Color_value, data, "Request_Color") if err != nil { return err } *x = Request_Color(value) return nil } func (Request_Color) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{0, 0} } type Reply_Entry_Game int32 const ( Reply_Entry_FOOTBALL Reply_Entry_Game = 1 Reply_Entry_TENNIS Reply_Entry_Game = 2 ) var Reply_Entry_Game_name = map[int32]string{ 1: "FOOTBALL", 2: "TENNIS", } var Reply_Entry_Game_value = map[string]int32{ "FOOTBALL": 1, "TENNIS": 2, } func (x Reply_Entry_Game) Enum() *Reply_Entry_Game { p := new(Reply_Entry_Game) *p = x return p } func (x Reply_Entry_Game) String() string { return proto.EnumName(Reply_Entry_Game_name, int32(x)) } func (x *Reply_Entry_Game) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(Reply_Entry_Game_value, data, "Reply_Entry_Game") if err != nil { return err } *x = Reply_Entry_Game(value) return nil } func (Reply_Entry_Game) EnumDescriptor() ([]byte, []int) { return fileDescriptorTest, []int{1, 0, 0} } // This is a message that might be sent somewhere. type Request struct { Key []int64 `protobuf:"varint,1,rep,name=key" json:"key,omitempty"` // optional imp.ImportedMessage imported_message = 2; Hue *Request_Color `protobuf:"varint,3,opt,name=hue,enum=my.test.Request_Color" json:"hue,omitempty"` Hat *HatType `protobuf:"varint,4,opt,name=hat,enum=my.test.HatType,def=1" json:"hat,omitempty"` // optional imp.ImportedMessage.Owner owner = 6; Deadline *float32 `protobuf:"fixed32,7,opt,name=deadline,def=inf" json:"deadline,omitempty"` Somegroup *Request_SomeGroup `protobuf:"group,8,opt,name=SomeGroup,json=somegroup" json:"somegroup,omitempty"` // This is a map field. It will generate map[int32]string. NameMapping map[int32]string `protobuf:"bytes,14,rep,name=name_mapping,json=nameMapping" json:"name_mapping,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` // This is a map field whose value type is a message. MsgMapping map[int64]*Reply `protobuf:"bytes,15,rep,name=msg_mapping,json=msgMapping" json:"msg_mapping,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` Reset_ *int32 `protobuf:"varint,12,opt,name=reset" json:"reset,omitempty"` // This field should not conflict with any getters. GetKey_ *string `protobuf:"bytes,16,opt,name=get_key,json=getKey" json:"get_key,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Request) Reset() { *m = Request{} } func (m *Request) String() string { return proto.CompactTextString(m) } func (*Request) ProtoMessage() {} func (*Request) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{0} } const Default_Request_Hat HatType = HatType_FEDORA var Default_Request_Deadline float32 = float32(math.Inf(1)) func (m *Request) GetKey() []int64 { if m != nil { return m.Key } return nil } func (m *Request) GetHue() Request_Color { if m != nil && m.Hue != nil { return *m.Hue } return Request_RED } func (m *Request) GetHat() HatType { if m != nil && m.Hat != nil { return *m.Hat } return Default_Request_Hat } func (m *Request) GetDeadline() float32 { if m != nil && m.Deadline != nil { return *m.Deadline } return Default_Request_Deadline } func (m *Request) GetSomegroup() *Request_SomeGroup { if m != nil { return m.Somegroup } return nil } func (m *Request) GetNameMapping() map[int32]string { if m != nil { return m.NameMapping } return nil } func (m *Request) GetMsgMapping() map[int64]*Reply { if m != nil { return m.MsgMapping } return nil } func (m *Request) GetReset_() int32 { if m != nil && m.Reset_ != nil { return *m.Reset_ } return 0 } func (m *Request) GetGetKey_() string { if m != nil && m.GetKey_ != nil { return *m.GetKey_ } return "" } type Request_SomeGroup struct { GroupField *int32 `protobuf:"varint,9,opt,name=group_field,json=groupField" json:"group_field,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Request_SomeGroup) Reset() { *m = Request_SomeGroup{} } func (m *Request_SomeGroup) String() string { return proto.CompactTextString(m) } func (*Request_SomeGroup) ProtoMessage() {} func (*Request_SomeGroup) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{0, 0} } func (m *Request_SomeGroup) GetGroupField() int32 { if m != nil && m.GroupField != nil { return *m.GroupField } return 0 } type Reply struct { Found []*Reply_Entry `protobuf:"bytes,1,rep,name=found" json:"found,omitempty"` CompactKeys []int32 `protobuf:"varint,2,rep,packed,name=compact_keys,json=compactKeys" json:"compact_keys,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *Reply) Reset() { *m = Reply{} } func (m *Reply) String() string { return proto.CompactTextString(m) } func (*Reply) ProtoMessage() {} func (*Reply) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{1} } var extRange_Reply = []proto.ExtensionRange{ {Start: 100, End: 536870911}, } func (*Reply) ExtensionRangeArray() []proto.ExtensionRange { return extRange_Reply } func (m *Reply) GetFound() []*Reply_Entry { if m != nil { return m.Found } return nil } func (m *Reply) GetCompactKeys() []int32 { if m != nil { return m.CompactKeys } return nil } type Reply_Entry struct { KeyThatNeeds_1234Camel_CasIng *int64 `protobuf:"varint,1,req,name=key_that_needs_1234camel_CasIng,json=keyThatNeeds1234camelCasIng" json:"key_that_needs_1234camel_CasIng,omitempty"` Value *int64 `protobuf:"varint,2,opt,name=value,def=7" json:"value,omitempty"` XMyFieldName_2 *int64 `protobuf:"varint,3,opt,name=_my_field_name_2,json=MyFieldName2" json:"_my_field_name_2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Reply_Entry) Reset() { *m = Reply_Entry{} } func (m *Reply_Entry) String() string { return proto.CompactTextString(m) } func (*Reply_Entry) ProtoMessage() {} func (*Reply_Entry) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{1, 0} } const Default_Reply_Entry_Value int64 = 7 func (m *Reply_Entry) GetKeyThatNeeds_1234Camel_CasIng() int64 { if m != nil && m.KeyThatNeeds_1234Camel_CasIng != nil { return *m.KeyThatNeeds_1234Camel_CasIng } return 0 } func (m *Reply_Entry) GetValue() int64 { if m != nil && m.Value != nil { return *m.Value } return Default_Reply_Entry_Value } func (m *Reply_Entry) GetXMyFieldName_2() int64 { if m != nil && m.XMyFieldName_2 != nil { return *m.XMyFieldName_2 } return 0 } type OtherBase struct { Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *OtherBase) Reset() { *m = OtherBase{} } func (m *OtherBase) String() string { return proto.CompactTextString(m) } func (*OtherBase) ProtoMessage() {} func (*OtherBase) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{2} } var extRange_OtherBase = []proto.ExtensionRange{ {Start: 100, End: 536870911}, } func (*OtherBase) ExtensionRangeArray() []proto.ExtensionRange { return extRange_OtherBase } func (m *OtherBase) GetName() string { if m != nil && m.Name != nil { return *m.Name } return "" } type ReplyExtensions struct { XXX_unrecognized []byte `json:"-"` } func (m *ReplyExtensions) Reset() { *m = ReplyExtensions{} } func (m *ReplyExtensions) String() string { return proto.CompactTextString(m) } func (*ReplyExtensions) ProtoMessage() {} func (*ReplyExtensions) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{3} } var E_ReplyExtensions_Time = &proto.ExtensionDesc{ ExtendedType: (*Reply)(nil), ExtensionType: (*float64)(nil), Field: 101, Name: "my.test.ReplyExtensions.time", Tag: "fixed64,101,opt,name=time", Filename: "my_test/test.proto", } var E_ReplyExtensions_Carrot = &proto.ExtensionDesc{ ExtendedType: (*Reply)(nil), ExtensionType: (*ReplyExtensions)(nil), Field: 105, Name: "my.test.ReplyExtensions.carrot", Tag: "bytes,105,opt,name=carrot", Filename: "my_test/test.proto", } var E_ReplyExtensions_Donut = &proto.ExtensionDesc{ ExtendedType: (*OtherBase)(nil), ExtensionType: (*ReplyExtensions)(nil), Field: 101, Name: "my.test.ReplyExtensions.donut", Tag: "bytes,101,opt,name=donut", Filename: "my_test/test.proto", } type OtherReplyExtensions struct { Key *int32 `protobuf:"varint,1,opt,name=key" json:"key,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OtherReplyExtensions) Reset() { *m = OtherReplyExtensions{} } func (m *OtherReplyExtensions) String() string { return proto.CompactTextString(m) } func (*OtherReplyExtensions) ProtoMessage() {} func (*OtherReplyExtensions) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{4} } func (m *OtherReplyExtensions) GetKey() int32 { if m != nil && m.Key != nil { return *m.Key } return 0 } type OldReply struct { proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *OldReply) Reset() { *m = OldReply{} } func (m *OldReply) String() string { return proto.CompactTextString(m) } func (*OldReply) ProtoMessage() {} func (*OldReply) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{5} } func (m *OldReply) Marshal() ([]byte, error) { return proto.MarshalMessageSet(&m.XXX_InternalExtensions) } func (m *OldReply) Unmarshal(buf []byte) error { return proto.UnmarshalMessageSet(buf, &m.XXX_InternalExtensions) } func (m *OldReply) MarshalJSON() ([]byte, error) { return proto.MarshalMessageSetJSON(&m.XXX_InternalExtensions) } func (m *OldReply) UnmarshalJSON(buf []byte) error { return proto.UnmarshalMessageSetJSON(buf, &m.XXX_InternalExtensions) } // ensure OldReply satisfies proto.Marshaler and proto.Unmarshaler var _ proto.Marshaler = (*OldReply)(nil) var _ proto.Unmarshaler = (*OldReply)(nil) var extRange_OldReply = []proto.ExtensionRange{ {Start: 100, End: 2147483646}, } func (*OldReply) ExtensionRangeArray() []proto.ExtensionRange { return extRange_OldReply } type Communique struct { MakeMeCry *bool `protobuf:"varint,1,opt,name=make_me_cry,json=makeMeCry" json:"make_me_cry,omitempty"` // This is a oneof, called "union". // // Types that are valid to be assigned to Union: // *Communique_Number // *Communique_Name // *Communique_Data // *Communique_TempC // *Communique_Height // *Communique_Today // *Communique_Maybe // *Communique_Delta_ // *Communique_Msg // *Communique_Somegroup Union isCommunique_Union `protobuf_oneof:"union"` XXX_unrecognized []byte `json:"-"` } func (m *Communique) Reset() { *m = Communique{} } func (m *Communique) String() string { return proto.CompactTextString(m) } func (*Communique) ProtoMessage() {} func (*Communique) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{6} } type isCommunique_Union interface { isCommunique_Union() } type Communique_Number struct { Number int32 `protobuf:"varint,5,opt,name=number,oneof"` } type Communique_Name struct { Name string `protobuf:"bytes,6,opt,name=name,oneof"` } type Communique_Data struct { Data []byte `protobuf:"bytes,7,opt,name=data,oneof"` } type Communique_TempC struct { TempC float64 `protobuf:"fixed64,8,opt,name=temp_c,json=tempC,oneof"` } type Communique_Height struct { Height float32 `protobuf:"fixed32,9,opt,name=height,oneof"` } type Communique_Today struct { Today Days `protobuf:"varint,10,opt,name=today,enum=my.test.Days,oneof"` } type Communique_Maybe struct { Maybe bool `protobuf:"varint,11,opt,name=maybe,oneof"` } type Communique_Delta_ struct { Delta int32 `protobuf:"zigzag32,12,opt,name=delta,oneof"` } type Communique_Msg struct { Msg *Reply `protobuf:"bytes,13,opt,name=msg,oneof"` } type Communique_Somegroup struct { Somegroup *Communique_SomeGroup `protobuf:"group,14,opt,name=SomeGroup,json=somegroup,oneof"` } func (*Communique_Number) isCommunique_Union() {} func (*Communique_Name) isCommunique_Union() {} func (*Communique_Data) isCommunique_Union() {} func (*Communique_TempC) isCommunique_Union() {} func (*Communique_Height) isCommunique_Union() {} func (*Communique_Today) isCommunique_Union() {} func (*Communique_Maybe) isCommunique_Union() {} func (*Communique_Delta_) isCommunique_Union() {} func (*Communique_Msg) isCommunique_Union() {} func (*Communique_Somegroup) isCommunique_Union() {} func (m *Communique) GetUnion() isCommunique_Union { if m != nil { return m.Union } return nil } func (m *Communique) GetMakeMeCry() bool { if m != nil && m.MakeMeCry != nil { return *m.MakeMeCry } return false } func (m *Communique) GetNumber() int32 { if x, ok := m.GetUnion().(*Communique_Number); ok { return x.Number } return 0 } func (m *Communique) GetName() string { if x, ok := m.GetUnion().(*Communique_Name); ok { return x.Name } return "" } func (m *Communique) GetData() []byte { if x, ok := m.GetUnion().(*Communique_Data); ok { return x.Data } return nil } func (m *Communique) GetTempC() float64 { if x, ok := m.GetUnion().(*Communique_TempC); ok { return x.TempC } return 0 } func (m *Communique) GetHeight() float32 { if x, ok := m.GetUnion().(*Communique_Height); ok { return x.Height } return 0 } func (m *Communique) GetToday() Days { if x, ok := m.GetUnion().(*Communique_Today); ok { return x.Today } return Days_MONDAY } func (m *Communique) GetMaybe() bool { if x, ok := m.GetUnion().(*Communique_Maybe); ok { return x.Maybe } return false } func (m *Communique) GetDelta() int32 { if x, ok := m.GetUnion().(*Communique_Delta_); ok { return x.Delta } return 0 } func (m *Communique) GetMsg() *Reply { if x, ok := m.GetUnion().(*Communique_Msg); ok { return x.Msg } return nil } func (m *Communique) GetSomegroup() *Communique_SomeGroup { if x, ok := m.GetUnion().(*Communique_Somegroup); ok { return x.Somegroup } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*Communique) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _Communique_OneofMarshaler, _Communique_OneofUnmarshaler, _Communique_OneofSizer, []interface{}{ (*Communique_Number)(nil), (*Communique_Name)(nil), (*Communique_Data)(nil), (*Communique_TempC)(nil), (*Communique_Height)(nil), (*Communique_Today)(nil), (*Communique_Maybe)(nil), (*Communique_Delta_)(nil), (*Communique_Msg)(nil), (*Communique_Somegroup)(nil), } } func _Communique_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*Communique) // union switch x := m.Union.(type) { case *Communique_Number: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Number)) case *Communique_Name: _ = b.EncodeVarint(6<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Name) case *Communique_Data: _ = b.EncodeVarint(7<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Data) case *Communique_TempC: _ = b.EncodeVarint(8<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.TempC)) case *Communique_Height: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Height))) case *Communique_Today: _ = b.EncodeVarint(10<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Today)) case *Communique_Maybe: t := uint64(0) if x.Maybe { t = 1 } _ = b.EncodeVarint(11<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *Communique_Delta_: _ = b.EncodeVarint(12<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Delta)) case *Communique_Msg: _ = b.EncodeVarint(13<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Msg); err != nil { return err } case *Communique_Somegroup: _ = b.EncodeVarint(14<<3 | proto.WireStartGroup) if err := b.Marshal(x.Somegroup); err != nil { return err } _ = b.EncodeVarint(14<<3 | proto.WireEndGroup) case nil: default: return fmt.Errorf("Communique.Union has unexpected type %T", x) } return nil } func _Communique_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*Communique) switch tag { case 5: // union.number if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Communique_Number{int32(x)} return true, err case 6: // union.name if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Union = &Communique_Name{x} return true, err case 7: // union.data if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.Union = &Communique_Data{x} return true, err case 8: // union.temp_c if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.Union = &Communique_TempC{math.Float64frombits(x)} return true, err case 9: // union.height if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.Union = &Communique_Height{math.Float32frombits(uint32(x))} return true, err case 10: // union.today if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Communique_Today{Days(x)} return true, err case 11: // union.maybe if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &Communique_Maybe{x != 0} return true, err case 12: // union.delta if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.Union = &Communique_Delta_{int32(x)} return true, err case 13: // union.msg if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Reply) err := b.DecodeMessage(msg) m.Union = &Communique_Msg{msg} return true, err case 14: // union.somegroup if wire != proto.WireStartGroup { return true, proto.ErrInternalBadWireType } msg := new(Communique_SomeGroup) err := b.DecodeGroup(msg) m.Union = &Communique_Somegroup{msg} return true, err default: return false, nil } } func _Communique_OneofSizer(msg proto.Message) (n int) { m := msg.(*Communique) // union switch x := m.Union.(type) { case *Communique_Number: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Number)) case *Communique_Name: n += proto.SizeVarint(6<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Name))) n += len(x.Name) case *Communique_Data: n += proto.SizeVarint(7<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Data))) n += len(x.Data) case *Communique_TempC: n += proto.SizeVarint(8<<3 | proto.WireFixed64) n += 8 case *Communique_Height: n += proto.SizeVarint(9<<3 | proto.WireFixed32) n += 4 case *Communique_Today: n += proto.SizeVarint(10<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Today)) case *Communique_Maybe: n += proto.SizeVarint(11<<3 | proto.WireVarint) n += 1 case *Communique_Delta_: n += proto.SizeVarint(12<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.Delta) << 1) ^ uint32((int32(x.Delta) >> 31)))) case *Communique_Msg: s := proto.Size(x.Msg) n += proto.SizeVarint(13<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *Communique_Somegroup: n += proto.SizeVarint(14<<3 | proto.WireStartGroup) n += proto.Size(x.Somegroup) n += proto.SizeVarint(14<<3 | proto.WireEndGroup) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type Communique_SomeGroup struct { Member *string `protobuf:"bytes,15,opt,name=member" json:"member,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Communique_SomeGroup) Reset() { *m = Communique_SomeGroup{} } func (m *Communique_SomeGroup) String() string { return proto.CompactTextString(m) } func (*Communique_SomeGroup) ProtoMessage() {} func (*Communique_SomeGroup) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{6, 0} } func (m *Communique_SomeGroup) GetMember() string { if m != nil && m.Member != nil { return *m.Member } return "" } type Communique_Delta struct { XXX_unrecognized []byte `json:"-"` } func (m *Communique_Delta) Reset() { *m = Communique_Delta{} } func (m *Communique_Delta) String() string { return proto.CompactTextString(m) } func (*Communique_Delta) ProtoMessage() {} func (*Communique_Delta) Descriptor() ([]byte, []int) { return fileDescriptorTest, []int{6, 1} } var E_Tag = &proto.ExtensionDesc{ ExtendedType: (*Reply)(nil), ExtensionType: (*string)(nil), Field: 103, Name: "my.test.tag", Tag: "bytes,103,opt,name=tag", Filename: "my_test/test.proto", } var E_Donut = &proto.ExtensionDesc{ ExtendedType: (*Reply)(nil), ExtensionType: (*OtherReplyExtensions)(nil), Field: 106, Name: "my.test.donut", Tag: "bytes,106,opt,name=donut", Filename: "my_test/test.proto", } func init() { proto.RegisterType((*Request)(nil), "my.test.Request") proto.RegisterType((*Request_SomeGroup)(nil), "my.test.Request.SomeGroup") proto.RegisterType((*Reply)(nil), "my.test.Reply") proto.RegisterType((*Reply_Entry)(nil), "my.test.Reply.Entry") proto.RegisterType((*OtherBase)(nil), "my.test.OtherBase") proto.RegisterType((*ReplyExtensions)(nil), "my.test.ReplyExtensions") proto.RegisterType((*OtherReplyExtensions)(nil), "my.test.OtherReplyExtensions") proto.RegisterType((*OldReply)(nil), "my.test.OldReply") proto.RegisterType((*Communique)(nil), "my.test.Communique") proto.RegisterType((*Communique_SomeGroup)(nil), "my.test.Communique.SomeGroup") proto.RegisterType((*Communique_Delta)(nil), "my.test.Communique.Delta") proto.RegisterEnum("my.test.HatType", HatType_name, HatType_value) proto.RegisterEnum("my.test.Days", Days_name, Days_value) proto.RegisterEnum("my.test.Request_Color", Request_Color_name, Request_Color_value) proto.RegisterEnum("my.test.Reply_Entry_Game", Reply_Entry_Game_name, Reply_Entry_Game_value) proto.RegisterExtension(E_ReplyExtensions_Time) proto.RegisterExtension(E_ReplyExtensions_Carrot) proto.RegisterExtension(E_ReplyExtensions_Donut) proto.RegisterExtension(E_Tag) proto.RegisterExtension(E_Donut) } func init() { proto.RegisterFile("my_test/test.proto", fileDescriptorTest) } var fileDescriptorTest = []byte{ // 988 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0xdd, 0x6e, 0xe3, 0x44, 0x14, 0xce, 0xd8, 0x71, 0x7e, 0x4e, 0xb2, 0xad, 0x19, 0x55, 0xad, 0x15, 0xb4, 0x5b, 0x13, 0x28, 0x32, 0x15, 0xca, 0x6a, 0x0d, 0x12, 0xab, 0x48, 0x20, 0x9a, 0x9f, 0x36, 0xd5, 0x36, 0x89, 0x34, 0x6d, 0x2f, 0xe0, 0xc6, 0x9a, 0x8d, 0xa7, 0x8e, 0x69, 0xc6, 0xce, 0xda, 0x63, 0x84, 0xef, 0xfa, 0x14, 0xf0, 0x1a, 0xdc, 0xf3, 0x42, 0xbc, 0x45, 0xd1, 0x8c, 0x43, 0x92, 0x36, 0xab, 0xbd, 0xb1, 0x7c, 0xbe, 0xf9, 0xce, 0xe7, 0x39, 0x3f, 0xfe, 0x00, 0xf3, 0xdc, 0x13, 0x2c, 0x15, 0xaf, 0xe5, 0xa3, 0xb3, 0x4c, 0x62, 0x11, 0xe3, 0x2a, 0xcf, 0x3b, 0x32, 0x6c, 0x61, 0x9e, 0x2d, 0x44, 0xf8, 0x5a, 0x3d, 0xdf, 0x14, 0x87, 0xed, 0x7f, 0xcb, 0x50, 0x25, 0xec, 0x43, 0xc6, 0x52, 0x81, 0x4d, 0xd0, 0xef, 0x59, 0x6e, 0x21, 0x5b, 0x77, 0x74, 0x22, 0x5f, 0xb1, 0x03, 0xfa, 0x3c, 0x63, 0x96, 0x6e, 0x23, 0x67, 0xcf, 0x3d, 0xec, 0xac, 0x84, 0x3a, 0xab, 0x84, 0x4e, 0x3f, 0x5e, 0xc4, 0x09, 0x91, 0x14, 0x7c, 0x0a, 0xfa, 0x9c, 0x0a, 0xab, 0xac, 0x98, 0xe6, 0x9a, 0x39, 0xa2, 0xe2, 0x26, 0x5f, 0xb2, 0x6e, 0xe5, 0x7c, 0x38, 0x98, 0x92, 0x33, 0x22, 0x49, 0xf8, 0x18, 0x6a, 0x3e, 0xa3, 0xfe, 0x22, 0x8c, 0x98, 0x55, 0xb5, 0x91, 0xa3, 0x75, 0xf5, 0x30, 0xba, 0x23, 0x6b, 0x10, 0xbf, 0x85, 0x7a, 0x1a, 0x73, 0x16, 0x24, 0x71, 0xb6, 0xb4, 0x6a, 0x36, 0x72, 0xc0, 0x6d, 0xed, 0x7c, 0xfc, 0x3a, 0xe6, 0xec, 0x42, 0x32, 0xc8, 0x86, 0x8c, 0x07, 0xd0, 0x8c, 0x28, 0x67, 0x1e, 0xa7, 0xcb, 0x65, 0x18, 0x05, 0xd6, 0x9e, 0xad, 0x3b, 0x0d, 0xf7, 0x8b, 0x9d, 0xe4, 0x09, 0xe5, 0x6c, 0x5c, 0x70, 0x86, 0x91, 0x48, 0x72, 0xd2, 0x88, 0x36, 0x08, 0x3e, 0x83, 0x06, 0x4f, 0x83, 0xb5, 0xc8, 0xbe, 0x12, 0xb1, 0x77, 0x44, 0xc6, 0x69, 0xf0, 0x44, 0x03, 0xf8, 0x1a, 0xc0, 0x07, 0x60, 0x24, 0x2c, 0x65, 0xc2, 0x6a, 0xda, 0xc8, 0x31, 0x48, 0x11, 0xe0, 0x23, 0xa8, 0x06, 0x4c, 0x78, 0xb2, 0xcb, 0xa6, 0x8d, 0x9c, 0x3a, 0xa9, 0x04, 0x4c, 0xbc, 0x63, 0x79, 0xeb, 0x5b, 0xa8, 0xaf, 0xeb, 0xc1, 0xc7, 0xd0, 0x50, 0xd5, 0x78, 0x77, 0x21, 0x5b, 0xf8, 0x56, 0x5d, 0x29, 0x80, 0x82, 0xce, 0x25, 0xd2, 0xfa, 0x09, 0xcc, 0xe7, 0x05, 0x6c, 0x86, 0x27, 0xc9, 0x6a, 0x78, 0x07, 0x60, 0xfc, 0x4e, 0x17, 0x19, 0xb3, 0x34, 0xf5, 0xa9, 0x22, 0xe8, 0x6a, 0x6f, 0x51, 0x6b, 0x0c, 0xfb, 0xcf, 0xee, 0xbe, 0x9d, 0x8e, 0x8b, 0xf4, 0xaf, 0xb6, 0xd3, 0x1b, 0xee, 0xde, 0x56, 0xf9, 0xcb, 0x45, 0xbe, 0x25, 0xd7, 0x3e, 0x01, 0x43, 0x6d, 0x02, 0xae, 0x82, 0x4e, 0x86, 0x03, 0xb3, 0x84, 0xeb, 0x60, 0x5c, 0x90, 0xe1, 0x70, 0x62, 0x22, 0x5c, 0x83, 0x72, 0xef, 0xea, 0x76, 0x68, 0x6a, 0xed, 0xbf, 0x34, 0x30, 0x54, 0x2e, 0x3e, 0x05, 0xe3, 0x2e, 0xce, 0x22, 0x5f, 0xad, 0x5a, 0xc3, 0x3d, 0x78, 0x2a, 0xdd, 0x29, 0xba, 0x59, 0x50, 0xf0, 0x09, 0x34, 0x67, 0x31, 0x5f, 0xd2, 0x99, 0x6a, 0x5b, 0x6a, 0x69, 0xb6, 0xee, 0x18, 0x3d, 0xcd, 0x44, 0xa4, 0xb1, 0xc2, 0xdf, 0xb1, 0x3c, 0x6d, 0xfd, 0x8d, 0xc0, 0x28, 0x2a, 0x19, 0xc0, 0xf1, 0x3d, 0xcb, 0x3d, 0x31, 0xa7, 0xc2, 0x8b, 0x18, 0xf3, 0x53, 0xef, 0x8d, 0xfb, 0xdd, 0xf7, 0x33, 0xca, 0xd9, 0xc2, 0xeb, 0xd3, 0xf4, 0x32, 0x0a, 0x2c, 0x64, 0x6b, 0x8e, 0x4e, 0x3e, 0xbf, 0x67, 0xf9, 0xcd, 0x9c, 0x8a, 0x89, 0x24, 0xad, 0x39, 0x05, 0x05, 0x1f, 0x6d, 0x57, 0xaf, 0x77, 0xd1, 0x0f, 0xab, 0x82, 0xf1, 0xd7, 0x60, 0x7a, 0x3c, 0x2f, 0x46, 0xe3, 0xa9, 0x5d, 0x73, 0xd5, 0xff, 0xa1, 0x93, 0xe6, 0x38, 0x57, 0xe3, 0x91, 0xa3, 0x71, 0xdb, 0x36, 0x94, 0x2f, 0x28, 0x67, 0xb8, 0x09, 0xb5, 0xf3, 0xe9, 0xf4, 0xa6, 0x77, 0x76, 0x75, 0x65, 0x22, 0x0c, 0x50, 0xb9, 0x19, 0x4e, 0x26, 0x97, 0xd7, 0xa6, 0x76, 0x5a, 0xab, 0xf9, 0xe6, 0xc3, 0xc3, 0xc3, 0x83, 0xd6, 0xfe, 0x06, 0xea, 0x53, 0x31, 0x67, 0x49, 0x8f, 0xa6, 0x0c, 0x63, 0x28, 0x4b, 0x59, 0x35, 0x8a, 0x3a, 0x51, 0xef, 0x5b, 0xd4, 0x7f, 0x10, 0xec, 0xab, 0x2e, 0x0d, 0xff, 0x10, 0x2c, 0x4a, 0xc3, 0x38, 0x4a, 0xdd, 0x36, 0x94, 0x45, 0xc8, 0x19, 0x7e, 0x36, 0x22, 0x8b, 0xd9, 0xc8, 0x41, 0x44, 0x9d, 0xb9, 0x3f, 0x43, 0x65, 0x46, 0x93, 0x24, 0x16, 0x3b, 0xac, 0x50, 0x8d, 0xd7, 0x7a, 0x8a, 0x6e, 0xd4, 0xc9, 0x2a, 0xcf, 0xed, 0x81, 0xe1, 0xc7, 0x51, 0x26, 0x30, 0x5e, 0x53, 0xd7, 0x97, 0x56, 0x9f, 0xfa, 0x94, 0x48, 0x91, 0xda, 0x76, 0xe0, 0x40, 0xe5, 0x3c, 0x3b, 0xde, 0x5d, 0xde, 0xb6, 0x05, 0xb5, 0xe9, 0xc2, 0x57, 0x3c, 0x55, 0xfd, 0xe3, 0xe3, 0xe3, 0x63, 0xb5, 0xab, 0xd5, 0x50, 0xfb, 0x4f, 0x1d, 0xa0, 0x1f, 0x73, 0x9e, 0x45, 0xe1, 0x87, 0x8c, 0xe1, 0x57, 0xd0, 0xe0, 0xf4, 0x9e, 0x79, 0x9c, 0x79, 0xb3, 0xa4, 0x90, 0xa8, 0x91, 0xba, 0x84, 0xc6, 0xac, 0x9f, 0xe4, 0xd8, 0x82, 0x4a, 0x94, 0xf1, 0xf7, 0x2c, 0xb1, 0x0c, 0xa9, 0x3e, 0x2a, 0x91, 0x55, 0x8c, 0x0f, 0x56, 0x8d, 0xae, 0xc8, 0x46, 0x8f, 0x4a, 0x45, 0xab, 0x25, 0xea, 0x53, 0x41, 0x95, 0x31, 0x35, 0x25, 0x2a, 0x23, 0x7c, 0x04, 0x15, 0xc1, 0xf8, 0xd2, 0x9b, 0x29, 0x3b, 0x42, 0xa3, 0x12, 0x31, 0x64, 0xdc, 0x97, 0xf2, 0x73, 0x16, 0x06, 0x73, 0xa1, 0x7e, 0x53, 0x4d, 0xca, 0x17, 0x31, 0x3e, 0x01, 0x43, 0xc4, 0x3e, 0xcd, 0x2d, 0x50, 0x9e, 0xf8, 0x62, 0xdd, 0x9b, 0x01, 0xcd, 0x53, 0x25, 0x20, 0x4f, 0xf1, 0x21, 0x18, 0x9c, 0xe6, 0xef, 0x99, 0xd5, 0x90, 0x37, 0x97, 0xb8, 0x0a, 0x25, 0xee, 0xb3, 0x85, 0xa0, 0xca, 0x40, 0x3e, 0x93, 0xb8, 0x0a, 0x71, 0x1b, 0x74, 0x9e, 0x06, 0xd6, 0x8b, 0x8f, 0xfd, 0x94, 0xa3, 0x12, 0x91, 0x87, 0xf8, 0xc7, 0x6d, 0xff, 0xdc, 0x53, 0xfe, 0xf9, 0x72, 0xcd, 0xdc, 0xf4, 0x6e, 0x63, 0xa1, 0xa3, 0xd2, 0x96, 0x89, 0xb6, 0xbe, 0xdc, 0x36, 0xa3, 0x43, 0xa8, 0x70, 0xa6, 0xfa, 0xb7, 0x5f, 0x38, 0x56, 0x11, 0xb5, 0xaa, 0x60, 0x0c, 0xe4, 0x85, 0x7a, 0x55, 0x30, 0xb2, 0x28, 0x8c, 0xa3, 0xd3, 0x57, 0x50, 0x5d, 0xd9, 0xbd, 0x5c, 0xf3, 0xc2, 0xf0, 0x4d, 0x24, 0x4d, 0xe1, 0x7c, 0xf8, 0xab, 0xa9, 0x9d, 0x76, 0xa0, 0x2c, 0x4b, 0x97, 0x87, 0xe3, 0xe9, 0x64, 0x70, 0xf6, 0x8b, 0x89, 0x70, 0x03, 0xaa, 0x37, 0xb7, 0xc3, 0x6b, 0x19, 0x68, 0xd2, 0x35, 0xae, 0x6e, 0x27, 0x83, 0x4b, 0x13, 0xb5, 0x34, 0x13, 0x75, 0x6d, 0xd0, 0x05, 0x0d, 0x76, 0xf6, 0x35, 0x50, 0xd7, 0x90, 0x47, 0xdd, 0xfe, 0xff, 0x2b, 0xf9, 0x9c, 0xf3, 0x9b, 0xea, 0xce, 0xcb, 0xa7, 0x8b, 0xfa, 0xf1, 0x9d, 0xfc, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x43, 0x23, 0x7b, 0xca, 0x33, 0x07, 0x00, 0x00, } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/my_test/test.proto000066400000000000000000000106531317075173200257210ustar00rootroot00000000000000// 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. syntax = "proto2"; // This package holds interesting messages. package my.test; // dotted package name //import "imp.proto"; import "multi/multi1.proto"; // unused import enum HatType { // deliberately skipping 0 FEDORA = 1; FEZ = 2; } // This enum represents days of the week. enum Days { option allow_alias = true; MONDAY = 1; TUESDAY = 2; LUNDI = 1; // same value as MONDAY } // This is a message that might be sent somewhere. message Request { enum Color { RED = 0; GREEN = 1; BLUE = 2; } repeated int64 key = 1; // optional imp.ImportedMessage imported_message = 2; optional Color hue = 3; // no default optional HatType hat = 4 [default=FEDORA]; // optional imp.ImportedMessage.Owner owner = 6; optional float deadline = 7 [default=inf]; optional group SomeGroup = 8 { optional int32 group_field = 9; } // These foreign types are in imp2.proto, // which is publicly imported by imp.proto. // optional imp.PubliclyImportedMessage pub = 10; // optional imp.PubliclyImportedEnum pub_enum = 13 [default=HAIR]; // This is a map field. It will generate map[int32]string. map name_mapping = 14; // This is a map field whose value type is a message. map msg_mapping = 15; optional int32 reset = 12; // This field should not conflict with any getters. optional string get_key = 16; } message Reply { message Entry { required int64 key_that_needs_1234camel_CasIng = 1; optional int64 value = 2 [default=7]; optional int64 _my_field_name_2 = 3; enum Game { FOOTBALL = 1; TENNIS = 2; } } repeated Entry found = 1; repeated int32 compact_keys = 2 [packed=true]; extensions 100 to max; } message OtherBase { optional string name = 1; extensions 100 to max; } message ReplyExtensions { extend Reply { optional double time = 101; optional ReplyExtensions carrot = 105; } extend OtherBase { optional ReplyExtensions donut = 101; } } message OtherReplyExtensions { optional int32 key = 1; } // top-level extension extend Reply { optional string tag = 103; optional OtherReplyExtensions donut = 106; // optional imp.ImportedMessage elephant = 107; // extend with message from another file. } message OldReply { // Extensions will be encoded in MessageSet wire format. option message_set_wire_format = true; extensions 100 to max; } message Communique { optional bool make_me_cry = 1; // This is a oneof, called "union". oneof union { int32 number = 5; string name = 6; bytes data = 7; double temp_c = 8; float height = 9; Days today = 10; bool maybe = 11; sint32 delta = 12; // name will conflict with Delta below Reply msg = 13; group SomeGroup = 14 { optional string member = 15; } } message Delta {} } golang-gogoprotobuf-0.5/protoc-gen-gogo/testdata/proto3.proto000066400000000000000000000037231317075173200245040ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto3"; package proto3; message Request { enum Flavour { SWEET = 0; SOUR = 1; UMAMI = 2; GOPHERLICIOUS = 3; } string name = 1; repeated int64 key = 2; Flavour taste = 3; Book book = 4; repeated int64 unpacked = 5 [packed=false]; } message Book { string title = 1; bytes raw_data = 2; } golang-gogoprotobuf-0.5/protoc-gen-gogofast/000077500000000000000000000000001317075173200212315ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogofast/main.go000066400000000000000000000035661317075173200225160ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package main import ( "github.com/gogo/protobuf/vanity" "github.com/gogo/protobuf/vanity/command" ) func main() { req := command.Read() files := req.GetProtoFile() files = vanity.FilterFiles(files, vanity.NotGoogleProtobufDescriptorProto) vanity.ForEachFile(files, vanity.TurnOnMarshalerAll) vanity.ForEachFile(files, vanity.TurnOnSizerAll) vanity.ForEachFile(files, vanity.TurnOnUnmarshalerAll) resp := command.Generate(req) command.Write(resp) } golang-gogoprotobuf-0.5/protoc-gen-gogofaster/000077500000000000000000000000001317075173200215605ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogofaster/main.go000066400000000000000000000040651317075173200230400ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package main import ( "github.com/gogo/protobuf/vanity" "github.com/gogo/protobuf/vanity/command" ) func main() { req := command.Read() files := req.GetProtoFile() files = vanity.FilterFiles(files, vanity.NotGoogleProtobufDescriptorProto) vanity.ForEachFile(files, vanity.TurnOnMarshalerAll) vanity.ForEachFile(files, vanity.TurnOnSizerAll) vanity.ForEachFile(files, vanity.TurnOnUnmarshalerAll) vanity.ForEachFieldInFilesExcludingExtensions(vanity.OnlyProto2(files), vanity.TurnOffNullableForNativeTypesWithoutDefaultsOnly) vanity.ForEachFile(files, vanity.TurnOffGoUnrecognizedAll) resp := command.Generate(req) command.Write(resp) } golang-gogoprotobuf-0.5/protoc-gen-gogoslick/000077500000000000000000000000001317075173200214015ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogoslick/main.go000066400000000000000000000046721317075173200226650ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package main import ( "github.com/gogo/protobuf/vanity" "github.com/gogo/protobuf/vanity/command" ) func main() { req := command.Read() files := req.GetProtoFile() files = vanity.FilterFiles(files, vanity.NotGoogleProtobufDescriptorProto) vanity.ForEachFile(files, vanity.TurnOnMarshalerAll) vanity.ForEachFile(files, vanity.TurnOnSizerAll) vanity.ForEachFile(files, vanity.TurnOnUnmarshalerAll) vanity.ForEachFieldInFilesExcludingExtensions(vanity.OnlyProto2(files), vanity.TurnOffNullableForNativeTypesWithoutDefaultsOnly) vanity.ForEachFile(files, vanity.TurnOffGoUnrecognizedAll) vanity.ForEachFile(files, vanity.TurnOffGoEnumPrefixAll) vanity.ForEachFile(files, vanity.TurnOffGoEnumStringerAll) vanity.ForEachFile(files, vanity.TurnOnEnumStringerAll) vanity.ForEachFile(files, vanity.TurnOnEqualAll) vanity.ForEachFile(files, vanity.TurnOnGoStringAll) vanity.ForEachFile(files, vanity.TurnOffGoStringerAll) vanity.ForEachFile(files, vanity.TurnOnStringerAll) resp := command.Generate(req) command.Write(resp) } golang-gogoprotobuf-0.5/protoc-gen-gogotypes/000077500000000000000000000000001317075173200214405ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gogotypes/main.go000066400000000000000000000052671317075173200227250ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package main import ( "strings" "github.com/gogo/protobuf/vanity" "github.com/gogo/protobuf/vanity/command" ) func main() { req := command.Read() files := req.GetProtoFile() files = vanity.FilterFiles(files, vanity.NotGoogleProtobufDescriptorProto) vanity.ForEachFile(files, vanity.TurnOnMarshalerAll) vanity.ForEachFile(files, vanity.TurnOnSizerAll) vanity.ForEachFile(files, vanity.TurnOnUnmarshalerAll) vanity.ForEachFile(files, vanity.TurnOffGoEnumPrefixAll) vanity.ForEachFile(files, vanity.TurnOffGoEnumStringerAll) vanity.ForEachFile(files, vanity.TurnOnEnumStringerAll) vanity.ForEachFile(files, vanity.TurnOnEqualAll) vanity.ForEachFile(files, vanity.TurnOnGoStringAll) vanity.ForEachFile(files, vanity.TurnOffGoStringerAll) for _, file := range files { if strings.HasSuffix(file.GetName(), "struct.proto") { // TODO struct can also get a compare method when // https://github.com/gogo/protobuf/issues/221 is fixed continue } vanity.TurnOnCompareAll(file) } for _, file := range files { if strings.HasSuffix(file.GetName(), "timestamp.proto") || strings.HasSuffix(file.GetName(), "duration.proto") { continue } vanity.TurnOnStringerAll(file) vanity.TurnOnPopulateAll(file) } resp := command.Generate(req) command.Write(resp) } golang-gogoprotobuf-0.5/protoc-gen-gostring/000077500000000000000000000000001317075173200212545ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-gen-gostring/main.go000066400000000000000000000032751317075173200225360ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package main import ( "github.com/gogo/protobuf/plugin/gostring" "github.com/gogo/protobuf/vanity/command" ) func main() { req := command.Read() p := gostring.NewGoString() p.Overwrite() resp := command.GeneratePlugin(req, p, "_gostring.gen.go") command.Write(resp) } golang-gogoprotobuf-0.5/protoc-min-version/000077500000000000000000000000001317075173200211175ustar00rootroot00000000000000golang-gogoprotobuf-0.5/protoc-min-version/minversion.go000066400000000000000000000041241317075173200236400ustar00rootroot00000000000000// 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. package main import ( "fmt" "github.com/gogo/protobuf/version" "os" "os/exec" "strings" ) func filter(ss []string, flag string) ([]string, string) { s := make([]string, 0, len(ss)) var v string for i := range ss { if strings.Contains(ss[i], flag) { vs := strings.Split(ss[i], "=") v = vs[1] continue } s = append(s, ss[i]) } return s, v } func main() { args, min := filter(os.Args[1:], "-version") if !version.AtLeast(min) { fmt.Printf("protoc version not high enough to parse this proto file\n") return } gen := exec.Command("protoc", args...) out, err := gen.CombinedOutput() if err != nil { fmt.Printf("%s\n", string(out)) panic(err) } } golang-gogoprotobuf-0.5/sortkeys/000077500000000000000000000000001317075173200172305ustar00rootroot00000000000000golang-gogoprotobuf-0.5/sortkeys/sortkeys.go000066400000000000000000000062151317075173200214460ustar00rootroot00000000000000// 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. package sortkeys import ( "sort" ) func Strings(l []string) { sort.Strings(l) } func Float64s(l []float64) { sort.Float64s(l) } func Float32s(l []float32) { sort.Sort(Float32Slice(l)) } func Int64s(l []int64) { sort.Sort(Int64Slice(l)) } func Int32s(l []int32) { sort.Sort(Int32Slice(l)) } func Uint64s(l []uint64) { sort.Sort(Uint64Slice(l)) } func Uint32s(l []uint32) { sort.Sort(Uint32Slice(l)) } func Bools(l []bool) { sort.Sort(BoolSlice(l)) } type BoolSlice []bool func (p BoolSlice) Len() int { return len(p) } func (p BoolSlice) Less(i, j int) bool { return p[j] } func (p BoolSlice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } type Int64Slice []int64 func (p Int64Slice) Len() int { return len(p) } func (p Int64Slice) Less(i, j int) bool { return p[i] < p[j] } func (p Int64Slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } type Int32Slice []int32 func (p Int32Slice) Len() int { return len(p) } func (p Int32Slice) Less(i, j int) bool { return p[i] < p[j] } func (p Int32Slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } type Uint64Slice []uint64 func (p Uint64Slice) Len() int { return len(p) } func (p Uint64Slice) Less(i, j int) bool { return p[i] < p[j] } func (p Uint64Slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } type Uint32Slice []uint32 func (p Uint32Slice) Len() int { return len(p) } func (p Uint32Slice) Less(i, j int) bool { return p[i] < p[j] } func (p Uint32Slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } type Float32Slice []float32 func (p Float32Slice) Len() int { return len(p) } func (p Float32Slice) Less(i, j int) bool { return p[i] < p[j] } func (p Float32Slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } golang-gogoprotobuf-0.5/test/000077500000000000000000000000001317075173200163245ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/.gitignore000066400000000000000000000000061317075173200203100ustar00rootroot00000000000000*.dat golang-gogoprotobuf-0.5/test/Makefile000066400000000000000000000036041317075173200177670ustar00rootroot00000000000000# 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 go install github.com/gogo/protobuf/protoc-gen-combo protoc --gogo_out=. --proto_path=../:../../../../:../protobuf/:. thetest.proto protoc-gen-combo --default=false --gogo_out=. --proto_path=../:../../../../:../protobuf/:. thetest.proto cp uuid.go ./combos/both/ cp uuid.go ./combos/marshaler/ cp uuid.go ./combos/unmarshaler/ cp bug_test.go ./combos/both/ cp bug_test.go ./combos/marshaler/ cp bug_test.go ./combos/unmarshaler/ golang-gogoprotobuf-0.5/test/asymetric-issue125/000077500000000000000000000000001317075173200217025ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/asymetric-issue125/Makefile000066400000000000000000000027521317075173200233500ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. asym.proto) golang-gogoprotobuf-0.5/test/asymetric-issue125/asym.pb.go000066400000000000000000000333001317075173200236010ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: asym.proto /* Package asym is a generated protocol buffer package. It is generated from these files: asym.proto It has these top-level messages: M MyType */ package asym import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type M struct { Arr []MyType `protobuf:"bytes,1,rep,name=arr,customtype=MyType" json:"arr"` XXX_unrecognized []byte `json:"-"` } func (m *M) Reset() { *m = M{} } func (m *M) String() string { return proto.CompactTextString(m) } func (*M) ProtoMessage() {} func (*M) Descriptor() ([]byte, []int) { return fileDescriptorAsym, []int{0} } type MyType struct { XXX_unrecognized []byte `json:"-"` } func (m *MyType) Reset() { *m = MyType{} } func (m *MyType) String() string { return proto.CompactTextString(m) } func (*MyType) ProtoMessage() {} func (*MyType) Descriptor() ([]byte, []int) { return fileDescriptorAsym, []int{1} } func init() { proto.RegisterType((*M)(nil), "asym.M") proto.RegisterType((*MyType)(nil), "asym.MyType") } func (this *M) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*M) if !ok { that2, ok := that.(M) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *M") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *M but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *M but is not nil && this == nil") } if len(this.Arr) != len(that1.Arr) { return fmt.Errorf("Arr this(%v) Not Equal that(%v)", len(this.Arr), len(that1.Arr)) } for i := range this.Arr { if !this.Arr[i].Equal(that1.Arr[i]) { return fmt.Errorf("Arr this[%v](%v) Not Equal that[%v](%v)", i, this.Arr[i], i, that1.Arr[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *M) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*M) if !ok { that2, ok := that.(M) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Arr) != len(that1.Arr) { return false } for i := range this.Arr { if !this.Arr[i].Equal(that1.Arr[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *MyType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MyType) if !ok { that2, ok := that.(MyType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MyType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MyType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MyType but is not nil && this == nil") } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *MyType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MyType) if !ok { that2, ok := that.(MyType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (m *M) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *M) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Arr) > 0 { for _, msg := range m.Arr { dAtA[i] = 0xa i++ i = encodeVarintAsym(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintAsym(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedM(r randyAsym, easy bool) *M { this := &M{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.Arr = make([]MyType, v1) for i := 0; i < v1; i++ { v2 := NewPopulatedMyType(r) this.Arr[i] = *v2 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedAsym(r, 2) } return this } type randyAsym interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneAsym(r randyAsym) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringAsym(r randyAsym) string { v3 := r.Intn(100) tmps := make([]rune, v3) for i := 0; i < v3; i++ { tmps[i] = randUTF8RuneAsym(r) } return string(tmps) } func randUnrecognizedAsym(r randyAsym, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldAsym(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldAsym(dAtA []byte, r randyAsym, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateAsym(dAtA, uint64(key)) v4 := r.Int63() if r.Intn(2) == 0 { v4 *= -1 } dAtA = encodeVarintPopulateAsym(dAtA, uint64(v4)) case 1: dAtA = encodeVarintPopulateAsym(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateAsym(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateAsym(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateAsym(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateAsym(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *M) Size() (n int) { var l int _ = l if len(m.Arr) > 0 { for _, e := range m.Arr { l = e.Size() n += 1 + l + sovAsym(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovAsym(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozAsym(x uint64) (n int) { return sovAsym(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *M) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowAsym } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: M: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: M: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Arr", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowAsym } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthAsym } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v MyType m.Arr = append(m.Arr, v) if err := m.Arr[len(m.Arr)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAsym(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthAsym } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *MyType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowAsym } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MyType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MyType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipAsym(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthAsym } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipAsym(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowAsym } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowAsym } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowAsym } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthAsym } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowAsym } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipAsym(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthAsym = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowAsym = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("asym.proto", fileDescriptorAsym) } var fileDescriptorAsym = []byte{ // 163 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4a, 0x2c, 0xae, 0xcc, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x01, 0xb1, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0x92, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0x34, 0x29, 0xa9, 0x72, 0x31, 0xfa, 0x0a, 0x29, 0x70, 0x31, 0x27, 0x16, 0x15, 0x49, 0x30, 0x2a, 0x30, 0x6b, 0xf0, 0x38, 0xf1, 0x9d, 0xb8, 0x27, 0xcf, 0x70, 0xeb, 0x9e, 0x3c, 0x9b, 0x6f, 0x65, 0x48, 0x65, 0x41, 0x6a, 0x10, 0x48, 0x4a, 0x49, 0x8a, 0x0b, 0xca, 0xb5, 0x12, 0xd8, 0xb1, 0x40, 0x9e, 0xe1, 0xc7, 0x02, 0x79, 0x86, 0x8e, 0x85, 0xf2, 0x0c, 0x0b, 0x16, 0xca, 0x33, 0x38, 0xc9, 0x3c, 0x78, 0x28, 0xc7, 0xf8, 0xe3, 0xa1, 0x1c, 0xe3, 0x8a, 0x47, 0x72, 0x8c, 0x3b, 0x1e, 0xc9, 0x31, 0x9e, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9c, 0x0b, 0x12, 0x6c, 0xa2, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/asymetric-issue125/asym.proto000066400000000000000000000040641317075173200237440ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 asym; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.testgen_all) = true; message M { repeated bytes arr = 1 [(gogoproto.customtype) = "MyType", (gogoproto.nullable) = false]; } message MyType { option (gogoproto.marshaler) = false; option (gogoproto.sizer) = false; option (gogoproto.populate) = false; option (gogoproto.testgen) = false; } golang-gogoprotobuf-0.5/test/asymetric-issue125/asym_test.go000066400000000000000000000031421317075173200242410ustar00rootroot00000000000000// 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. package asym import ( "testing" ) func TestAsym(t *testing.T) { m := &M{[]MyType{{}, {}}, nil} if err := m.VerboseEqual(m); err != nil { t.Fatalf("should be equal: %v", err) } } golang-gogoprotobuf-0.5/test/asymetric-issue125/asympb_test.go000066400000000000000000000125721317075173200245720ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: asym.proto /* Package asym is a generated protocol buffer package. It is generated from these files: asym.proto It has these top-level messages: M MyType */ package asym import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &M{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &M{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &M{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &M{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &M{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedM(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &M{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/asymetric-issue125/pop.go000066400000000000000000000040021317075173200230230ustar00rootroot00000000000000// 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. package asym func NewPopulatedMyType(r randyAsym) *MyType { this := &MyType{} return this } func (m MyType) Marshal() (data []byte, err error) { size := m.Size() data = make([]byte, size) n, err := m.MarshalTo(data) if err != nil { return nil, err } return data[:n], nil } func (m *MyType) MarshalTo(data []byte) (int, error) { var i int _ = i var l int _ = l if m.XXX_unrecognized != nil { i += copy(data[i:], m.XXX_unrecognized) } return i, nil } func (m *MyType) Size() (n int) { var l int _ = l if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } golang-gogoprotobuf-0.5/test/bug_test.go000066400000000000000000000276111317075173200204760ustar00rootroot00000000000000// 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. package test import ( "fmt" "math" "math/rand" "testing" "time" "github.com/gogo/protobuf/proto" ) //http://code.google.com/p/goprotobuf/issues/detail?id=39 func TestBugUint32VarintSize(t *testing.T) { temp := uint32(math.MaxUint32) n := &NinOptNative{} n.Field5 = &temp data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != 6 { t.Fatalf("data should be length 6, but its %#v", data) } } func TestBugZeroLengthSliceSize(t *testing.T) { n := &NinRepPackedNative{ Field8: []int64{}, } size := n.Size() data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != size { t.Fatalf("expected %v, but got %v", len(data), size) } } //http://code.google.com/p/goprotobuf/issues/detail?id=40 func TestBugPackedProtoSize(t *testing.T) { n := &NinRepPackedNative{ Field4: []int64{172960727389894724, 2360337516664475010, 860833876131988189, 9068073014890763245, 7794843386260381831, 4023536436053141786, 8992311247496919020, 4330096163611305776, 4490411416244976467, 7873947349172707443, 2754969595834279669, 1360667855926938684, 4771480785172657389, 4875578924966668055, 8070579869808877481, 9128179594766551001, 4630419407064527516, 863844540220372892, 8208727650143073487, 7086117356301045838, 7779695211931506151, 5493835345187563535, 9119767633370806007, 9054342025895349248, 1887303228838508438, 7624573031734528281, 1874668389749611225, 3517684643468970593, 6677697606628877758, 7293473953189936168, 444475066704085538, 8594971141363049302, 1146643249094989673, 733393306232853371, 7721178528893916886, 7784452000911004429, 6436373110242711440, 6897422461738321237, 8772249155667732778, 6211871464311393541, 3061903718310406883, 7845488913176136641, 8342255034663902574, 3443058984649725748, 8410801047334832902, 7496541071517841153, 4305416923521577765, 7814967600020476457, 8671843803465481186, 3490266370361096855, 1447425664719091336, 653218597262334239, 8306243902880091940, 7851896059762409081, 5936760560798954978, 5755724498441478025, 7022701569985035966, 3707709584811468220, 529069456924666920, 7986469043681522462, 3092513330689518836, 5103541550470476202, 3577384161242626406, 3733428084624703294, 8388690542440473117, 3262468785346149388, 8788358556558007570, 5476276940198542020, 7277903243119461239, 5065861426928605020, 7533460976202697734, 1749213838654236956, 557497603941617931, 5496307611456481108, 6444547750062831720, 6992758776744205596, 7356719693428537399, 2896328872476734507, 381447079530132038, 598300737753233118, 3687980626612697715, 7240924191084283349, 8172414415307971170, 4847024388701257185, 2081764168600256551, 3394217778539123488, 6244660626429310923, 8301712215675381614, 5360615125359461174, 8410140945829785773, 3152963269026381373, 6197275282781459633, 4419829061407546410, 6262035523070047537, 2837207483933463885, 2158105736666826128, 8150764172235490711}, Field7: []int32{249451845, 1409974015, 393609128, 435232428, 1817529040, 91769006, 861170933, 1556185603, 1568580279, 1236375273, 512276621, 693633711, 967580535, 1950715977, 853431462, 1362390253, 159591204, 111900629, 322985263, 279671129, 1592548430, 465651370, 733849989, 1172059400, 1574824441, 263541092, 1271612397, 1520584358, 467078791, 117698716, 1098255064, 2054264846, 1766452305, 1267576395, 1557505617, 1187833560, 956187431, 1970977586, 1160235159, 1610259028, 489585797, 459139078, 566263183, 954319278, 1545018565, 1753946743, 948214318, 422878159, 883926576, 1424009347, 824732372, 1290433180, 80297942, 417294230, 1402647904, 2078392782, 220505045, 787368129, 463781454, 293083578, 808156928, 293976361}, Field9: []uint32{0xaa4976e8, 0x3da8cc4c, 0x8c470d83, 0x344d964e, 0x5b90925, 0xa4c4d34e, 0x666eff19, 0xc238e552, 0x9be53bb6, 0x56364245, 0x33ee079d, 0x96bf0ede, 0x7941b74f, 0xdb07cb47, 0x6d76d827, 0x9b211d5d, 0x2798adb6, 0xe48b0c3b, 0x87061b21, 0x48f4e4d2, 0x3e5d5c12, 0x5ee91288, 0x336d4f35, 0xe1d44941, 0xc065548d, 0x2953d73f, 0x873af451, 0xfc769db, 0x9f1bf8da, 0x9baafdfc, 0xf1d3d770, 0x5bb5d2b4, 0xc2c67c48, 0x6845c4c1, 0xa48f32b0, 0xbb04bb70, 0xa5b1ca36, 0x8d98356a, 0x2171f654, 0x5ae279b0, 0x6c4a3d6b, 0x4fff5468, 0xcf9bf851, 0x68513614, 0xdbecd9b0, 0x9553ed3c, 0xa494a736, 0x42205438, 0xbf8e5caa, 0xd3283c6, 0x76d20788, 0x9179826f, 0x96b24f85, 0xbc2eacf4, 0xe4afae0b, 0x4bca85cb, 0x35e63b5b, 0xd7ccee0c, 0x2b506bb9, 0xe78e9f44, 0x9ad232f1, 0x99a37335, 0xa5d6ffc8}, Field11: []uint64{0x53c01ebc, 0x4fb85ba6, 0x8805eea1, 0xb20ec896, 0x93b63410, 0xec7c9492, 0x50765a28, 0x19592106, 0x2ecc59b3, 0x39cd474f, 0xe4c9e47, 0x444f48c5, 0xe7731d32, 0xf3f43975, 0x603caedd, 0xbb05a1af, 0xa808e34e, 0x88580b07, 0x4c96bbd1, 0x730b4ab9, 0xed126e2b, 0x6db48205, 0x154ba1b9, 0xc26bfb6a, 0x389aa052, 0x869d966c, 0x7c86b366, 0xcc8edbcd, 0xfa8d6dad, 0xcf5857d9, 0x2d9cda0f, 0x1218a0b8, 0x41bf997, 0xf0ca65ac, 0xa610d4b9, 0x8d362e28, 0xb7212d87, 0x8e0fe109, 0xbee041d9, 0x759be2f6, 0x35fef4f3, 0xaeacdb71, 0x10888852, 0xf4e28117, 0xe2a14812, 0x73b748dc, 0xd1c3c6b2, 0xfef41bf0, 0xc9b43b62, 0x810e4faa, 0xcaa41c06, 0x1893fe0d, 0xedc7c850, 0xd12b9eaa, 0x467ee1a9, 0xbe84756b, 0xda7b1680, 0xdc069ffe, 0xf1e7e9f9, 0xb3d95370, 0xa92b77df, 0x5693ac41, 0xd04b7287, 0x27aebf15, 0x837b316e, 0x4dbe2263, 0xbab70c67, 0x547dab21, 0x3c346c1f, 0xb8ef0e4e, 0xfe2d03ce, 0xe1d75955, 0xfec1306, 0xba35c23e, 0xb784ed04, 0x2a4e33aa, 0x7e19d09a, 0x3827c1fe, 0xf3a51561, 0xef765e2b, 0xb044256c, 0x62b322be, 0xf34d56be, 0xeb71b369, 0xffe1294f, 0x237fe8d0, 0x77a1473b, 0x239e1196, 0xdd19bf3d, 0x82c91fe1, 0x95361c57, 0xffea3f1b, 0x1a094c84}, Field12: []int64{8308420747267165049, 3664160795077875961, 7868970059161834817, 7237335984251173739, 5254748003907196506, 3362259627111837480, 430460752854552122, 5119635556501066533, 1277716037866233522, 9185775384759813768, 833932430882717888, 7986528304451297640, 6792233378368656337, 2074207091120609721, 1788723326198279432, 7756514594746453657, 2283775964901597324, 3061497730110517191, 7733947890656120277, 626967303632386244, 7822928600388582821, 3489658753000061230, 168869995163005961, 248814782163480763, 477885608911386247, 4198422415674133867, 3379354662797976109, 9925112544736939, 1486335136459138480, 4561560414032850671, 1010864164014091267, 186722821683803084, 5106357936724819318, 1298160820191228988, 4675403242419953145, 7130634540106489752, 7101280006672440929, 7176058292431955718, 9109875054097770321, 6810974877085322872, 4736707874303993641, 8993135362721382187, 6857881554990254283, 3704748883307461680, 1099360832887634994, 5207691918707192633, 5984721695043995243}, } size := proto.Size(n) data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != size { t.Fatalf("expected %v, but got %v diff is %v", len(data), size, len(data)-size) } } func testSize(m interface { proto.Message Size() int }, desc string, expected int) ([]byte, error) { data, err := proto.Marshal(m) if err != nil { return nil, err } protoSize := proto.Size(m) mSize := m.Size() lenData := len(data) if protoSize != mSize || protoSize != lenData || mSize != lenData { return nil, fmt.Errorf("%s proto.Size(m){%d} != m.Size(){%d} != len(data){%d}", desc, protoSize, mSize, lenData) } if got := protoSize; got != expected { return nil, fmt.Errorf("%s proto.Size(m) got %d expected %d", desc, got, expected) } if got := mSize; got != expected { return nil, fmt.Errorf("%s m.Size() got %d expected %d", desc, got, expected) } if got := lenData; got != expected { return nil, fmt.Errorf("%s len(data) got %d expected %d", desc, got, expected) } return data, nil } func TestInt32Int64Compatibility(t *testing.T) { //test nullable int32 and int64 data1, err := testSize(&NinOptNative{ Field3: proto.Int32(-1), }, "nullable", 11) if err != nil { t.Error(err) } //change marshaled data1 to unmarshal into 4th field which is an int64 data1[0] = uint8(uint32(4 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) u1 := &NinOptNative{} if err = proto.Unmarshal(data1, u1); err != nil { t.Error(err) } if !u1.Equal(&NinOptNative{ Field4: proto.Int64(-1), }) { t.Error("nullable unmarshaled int32 is not the same int64") } //test non-nullable int32 and int64 data2, err := testSize(&NidOptNative{ Field3: -1, }, "non nullable", 67) if err != nil { t.Error(err) } //change marshaled data2 to unmarshal into 4th field which is an int64 field3 := uint8(uint32(3 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) field4 := uint8(uint32(4 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) for i, c := range data2 { if c == field4 { data2[i] = field3 } else if c == field3 { data2[i] = field4 } } u2 := &NidOptNative{} if err = proto.Unmarshal(data2, u2); err != nil { t.Error(err) } if !u2.Equal(&NidOptNative{ Field4: -1, }) { t.Error("non nullable unmarshaled int32 is not the same int64") } //test packed repeated int32 and int64 m4 := &NinRepPackedNative{ Field3: []int32{-1}, } data4, err := testSize(m4, "packed", 12) if err != nil { t.Error(err) } u4 := &NinRepPackedNative{} if err := proto.Unmarshal(data4, u4); err != nil { t.Error(err) } if err := u4.VerboseEqual(m4); err != nil { t.Fatalf("%#v", u4) } //test repeated int32 and int64 if _, err := testSize(&NinRepNative{ Field3: []int32{-1}, }, "repeated", 11); err != nil { t.Error(err) } t.Logf("tested all") } func TestRepeatedExtensionsMsgsIssue161(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) rep := 10 nins := make([]*NinOptNative, rep) for i := range nins { nins[i] = NewPopulatedNinOptNative(r, true) } input := &MyExtendable{} if err := proto.SetExtension(input, E_FieldE, nins); err != nil { t.Fatal(err) } data, err := proto.Marshal(input) if err != nil { t.Fatal(err) } output := &MyExtendable{} if err := proto.Unmarshal(data, output); err != nil { t.Fatal(err) } if !input.Equal(output) { t.Fatal("expected equal") } data2, err2 := proto.Marshal(output) if err2 != nil { t.Fatal(err2) } if len(data) != len(data2) { t.Fatal("expected equal length buffers") } } func TestRepeatedExtensionsFieldsIssue161(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) rep := 10 ints := make([]int64, rep) for i := range ints { ints[i] = r.Int63() } input := &MyExtendable{} if err := proto.SetExtension(input, E_FieldD, ints); err != nil { t.Fatal(err) } data, err := proto.Marshal(input) if err != nil { t.Fatal(err) } output := &MyExtendable{} if err := proto.Unmarshal(data, output); err != nil { t.Fatal(err) } if !input.Equal(output) { t.Fatal("expected equal") } data2, err2 := proto.Marshal(output) if err2 != nil { t.Fatal(err2) } if len(data) != len(data2) { t.Fatal("expected equal length buffers") } } golang-gogoprotobuf-0.5/test/casttype/000077500000000000000000000000001317075173200201605ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/casttype/Makefile000066400000000000000000000031631317075173200216230ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2015, 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-combo go install github.com/gogo/protobuf/protoc-gen-gogo protoc-gen-combo --gogo_out=. --version="3.0.0" --proto_path=../../../../../:../../protobuf/:. casttype.proto golang-gogoprotobuf-0.5/test/casttype/casttype.proto000066400000000000000000000104071317075173200231030ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 casttype; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Castaway { optional int64 Int32Ptr = 1 [(gogoproto.casttype) = "int32"]; optional int64 Int32 = 2 [(gogoproto.casttype) = "int32", (gogoproto.nullable) = false]; optional uint64 MyUint64Ptr = 3 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; optional uint64 MyUint64 = 4 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type", (gogoproto.nullable) = false]; optional float MyFloat32Ptr = 5 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type"]; optional float MyFloat32 = 6 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type", (gogoproto.nullable) = false]; optional double MyFloat64Ptr = 7 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type"]; optional double MyFloat64 = 8 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type", (gogoproto.nullable) = false]; optional bytes MyBytes = 9 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.Bytes"]; optional bytes NormalBytes = 10; repeated uint64 MyUint64s = 11 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyMap = 12 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyMapType"]; map MyCustomMap = 13 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyStringType", (gogoproto.castvalue) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyNullableMap = 14 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type"]; map MyEmbeddedMap = 15 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type", (gogoproto.nullable) = false]; optional string String = 16 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyStringType"]; } message Wilson { optional int64 Int64 = 1; } golang-gogoprotobuf-0.5/test/casttype/combos/000077500000000000000000000000001317075173200214425ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/casttype/combos/both/000077500000000000000000000000001317075173200223765ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/casttype/combos/both/casttype.pb.go000066400000000000000000002717061317075173200251760ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/casttype.proto /* Package casttype is a generated protocol buffer package. It is generated from these files: combos/both/casttype.proto It has these top-level messages: Castaway Wilson */ package casttype import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_casttype "github.com/gogo/protobuf/test/casttype" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Castaway struct { Int32Ptr *int32 `protobuf:"varint,1,opt,name=Int32Ptr,casttype=int32" json:"Int32Ptr,omitempty"` Int32 int32 `protobuf:"varint,2,opt,name=Int32,casttype=int32" json:"Int32"` MyUint64Ptr *github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,3,opt,name=MyUint64Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64Ptr,omitempty"` MyUint64 github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,4,opt,name=MyUint64,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64"` MyFloat32Ptr *github_com_gogo_protobuf_test_casttype.MyFloat32Type `protobuf:"fixed32,5,opt,name=MyFloat32Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyFloat32Type" json:"MyFloat32Ptr,omitempty"` MyFloat32 github_com_gogo_protobuf_test_casttype.MyFloat32Type `protobuf:"fixed32,6,opt,name=MyFloat32,casttype=github.com/gogo/protobuf/test/casttype.MyFloat32Type" json:"MyFloat32"` MyFloat64Ptr *github_com_gogo_protobuf_test_casttype.MyFloat64Type `protobuf:"fixed64,7,opt,name=MyFloat64Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyFloat64Type" json:"MyFloat64Ptr,omitempty"` MyFloat64 github_com_gogo_protobuf_test_casttype.MyFloat64Type `protobuf:"fixed64,8,opt,name=MyFloat64,casttype=github.com/gogo/protobuf/test/casttype.MyFloat64Type" json:"MyFloat64"` MyBytes github_com_gogo_protobuf_test_casttype.Bytes `protobuf:"bytes,9,opt,name=MyBytes,casttype=github.com/gogo/protobuf/test/casttype.Bytes" json:"MyBytes,omitempty"` NormalBytes []byte `protobuf:"bytes,10,opt,name=NormalBytes" json:"NormalBytes,omitempty"` MyUint64S []github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,11,rep,name=MyUint64s,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64s,omitempty"` MyMap github_com_gogo_protobuf_test_casttype.MyMapType `protobuf:"bytes,12,rep,name=MyMap,casttype=github.com/gogo/protobuf/test/casttype.MyMapType" json:"MyMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` MyCustomMap map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"bytes,13,rep,name=MyCustomMap,castkey=github.com/gogo/protobuf/test/casttype.MyStringType,castvalue=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyCustomMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` MyNullableMap map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson `protobuf:"bytes,14,rep,name=MyNullableMap,castkey=github.com/gogo/protobuf/test/casttype.MyInt32Type" json:"MyNullableMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` MyEmbeddedMap map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson `protobuf:"bytes,15,rep,name=MyEmbeddedMap,castkey=github.com/gogo/protobuf/test/casttype.MyInt32Type" json:"MyEmbeddedMap" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` String_ *github_com_gogo_protobuf_test_casttype.MyStringType `protobuf:"bytes,16,opt,name=String,casttype=github.com/gogo/protobuf/test/casttype.MyStringType" json:"String,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Castaway) Reset() { *m = Castaway{} } func (*Castaway) ProtoMessage() {} func (*Castaway) Descriptor() ([]byte, []int) { return fileDescriptorCasttype, []int{0} } type Wilson struct { Int64 *int64 `protobuf:"varint,1,opt,name=Int64" json:"Int64,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Wilson) Reset() { *m = Wilson{} } func (*Wilson) ProtoMessage() {} func (*Wilson) Descriptor() ([]byte, []int) { return fileDescriptorCasttype, []int{1} } func init() { proto.RegisterType((*Castaway)(nil), "casttype.Castaway") proto.RegisterType((*Wilson)(nil), "casttype.Wilson") } func (this *Castaway) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CasttypeDescription() } func (this *Wilson) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CasttypeDescription() } func CasttypeDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4198 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0xe6, 0xe2, 0x87, 0x04, 0x0e, 0x40, 0x70, 0x79, 0x49, 0xcb, 0x30, 0x1d, 0x83, 0x14, 0xe5, 0x1f, 0xda, 0x4e, 0x28, 0x8f, 0xfe, 0x0d, 0x25, 0x76, 0x01, 0x12, 0x62, 0xa0, 0x12, 0x24, 0xb3, 0x24, 0x23, 0xc9, 0xed, 0xcc, 0xce, 0x72, 0x71, 0x09, 0xae, 0xb4, 0xd8, 0xdd, 0xec, 0x2e, 0x24, 0x43, 0xd3, 0x07, 0x35, 0x6e, 0x9b, 0x49, 0x3b, 0xfd, 0xef, 0x4c, 0x13, 0xd7, 0x71, 0xdb, 0xcc, 0xb4, 0x4e, 0x93, 0xb6, 0x49, 0x9a, 0x26, 0x4d, 0xfb, 0x94, 0x97, 0xb4, 0x7e, 0xea, 0x24, 0x6f, 0x7d, 0xe8, 0xc8, 0x16, 0xeb, 0x99, 0x3a, 0xad, 0xdb, 0xba, 0x8d, 0x1f, 0x32, 0xf2, 0x4b, 0xe7, 0xfe, 0x2d, 0x16, 0x3f, 0xd4, 0x82, 0xca, 0xd8, 0x79, 0x22, 0xf6, 0xdc, 0xf3, 0x7d, 0xf7, 0xdc, 0x73, 0xcf, 0xbd, 0xe7, 0xdc, 0xbb, 0x4b, 0xf8, 0xda, 0x39, 0x98, 0x6b, 0xd8, 0x76, 0xc3, 0xc4, 0xc7, 0x1d, 0xd7, 0xf6, 0xed, 0x9d, 0xd6, 0xee, 0xf1, 0x3a, 0xf6, 0x74, 0xd7, 0x70, 0x7c, 0xdb, 0x5d, 0xa4, 0x32, 0x34, 0xc1, 0x34, 0x16, 0x85, 0xc6, 0x7c, 0x0d, 0x26, 0x2f, 0x18, 0x26, 0x5e, 0x0e, 0x14, 0x37, 0xb1, 0x8f, 0xce, 0x41, 0x62, 0xd7, 0x30, 0x71, 0x5e, 0x9a, 0x8b, 0x2f, 0x64, 0x4e, 0x3c, 0xba, 0xd8, 0x03, 0x5a, 0xec, 0x46, 0x6c, 0x10, 0xb1, 0x42, 0x11, 0xf3, 0x6f, 0x25, 0x60, 0x6a, 0x40, 0x2b, 0x42, 0x90, 0xb0, 0xb4, 0x26, 0x61, 0x94, 0x16, 0xd2, 0x0a, 0xfd, 0x8d, 0xf2, 0x30, 0xe6, 0x68, 0xfa, 0x35, 0xad, 0x81, 0xf3, 0x31, 0x2a, 0x16, 0x8f, 0xa8, 0x00, 0x50, 0xc7, 0x0e, 0xb6, 0xea, 0xd8, 0xd2, 0xdb, 0xf9, 0xf8, 0x5c, 0x7c, 0x21, 0xad, 0x84, 0x24, 0xe8, 0x69, 0x98, 0x74, 0x5a, 0x3b, 0xa6, 0xa1, 0xab, 0x21, 0x35, 0x98, 0x8b, 0x2f, 0x24, 0x15, 0x99, 0x35, 0x2c, 0x77, 0x94, 0x9f, 0x80, 0x89, 0x1b, 0x58, 0xbb, 0x16, 0x56, 0xcd, 0x50, 0xd5, 0x1c, 0x11, 0x87, 0x14, 0x97, 0x20, 0xdb, 0xc4, 0x9e, 0xa7, 0x35, 0xb0, 0xea, 0xb7, 0x1d, 0x9c, 0x4f, 0xd0, 0xd1, 0xcf, 0xf5, 0x8d, 0xbe, 0x77, 0xe4, 0x19, 0x8e, 0xda, 0x6a, 0x3b, 0x18, 0x95, 0x20, 0x8d, 0xad, 0x56, 0x93, 0x31, 0x24, 0x0f, 0xf0, 0x5f, 0xc5, 0x6a, 0x35, 0x7b, 0x59, 0x52, 0x04, 0xc6, 0x29, 0xc6, 0x3c, 0xec, 0x5e, 0x37, 0x74, 0x9c, 0x1f, 0xa5, 0x04, 0x4f, 0xf4, 0x11, 0x6c, 0xb2, 0xf6, 0x5e, 0x0e, 0x81, 0x43, 0x4b, 0x90, 0xc6, 0x2f, 0xfa, 0xd8, 0xf2, 0x0c, 0xdb, 0xca, 0x8f, 0x51, 0x92, 0xc7, 0x06, 0xcc, 0x22, 0x36, 0xeb, 0xbd, 0x14, 0x1d, 0x1c, 0x3a, 0x03, 0x63, 0xb6, 0xe3, 0x1b, 0xb6, 0xe5, 0xe5, 0x53, 0x73, 0xd2, 0x42, 0xe6, 0xc4, 0x47, 0x06, 0x06, 0xc2, 0x3a, 0xd3, 0x51, 0x84, 0x32, 0xaa, 0x82, 0xec, 0xd9, 0x2d, 0x57, 0xc7, 0xaa, 0x6e, 0xd7, 0xb1, 0x6a, 0x58, 0xbb, 0x76, 0x3e, 0x4d, 0x09, 0x66, 0xfb, 0x07, 0x42, 0x15, 0x97, 0xec, 0x3a, 0xae, 0x5a, 0xbb, 0xb6, 0x92, 0xf3, 0xba, 0x9e, 0xd1, 0x11, 0x18, 0xf5, 0xda, 0x96, 0xaf, 0xbd, 0x98, 0xcf, 0xd2, 0x08, 0xe1, 0x4f, 0xf3, 0x7f, 0x3f, 0x0a, 0x13, 0xc3, 0x84, 0xd8, 0x79, 0x48, 0xee, 0x92, 0x51, 0xe6, 0x63, 0x87, 0xf1, 0x01, 0xc3, 0x74, 0x3b, 0x71, 0xf4, 0x3e, 0x9d, 0x58, 0x82, 0x8c, 0x85, 0x3d, 0x1f, 0xd7, 0x59, 0x44, 0xc4, 0x87, 0x8c, 0x29, 0x60, 0xa0, 0xfe, 0x90, 0x4a, 0xdc, 0x57, 0x48, 0x5d, 0x86, 0x89, 0xc0, 0x24, 0xd5, 0xd5, 0xac, 0x86, 0x88, 0xcd, 0xe3, 0x51, 0x96, 0x2c, 0x56, 0x04, 0x4e, 0x21, 0x30, 0x25, 0x87, 0xbb, 0x9e, 0xd1, 0x32, 0x80, 0x6d, 0x61, 0x7b, 0x57, 0xad, 0x63, 0xdd, 0xcc, 0xa7, 0x0e, 0xf0, 0xd2, 0x3a, 0x51, 0xe9, 0xf3, 0x92, 0xcd, 0xa4, 0xba, 0x89, 0x9e, 0xed, 0x84, 0xda, 0xd8, 0x01, 0x91, 0x52, 0x63, 0x8b, 0xac, 0x2f, 0xda, 0xb6, 0x21, 0xe7, 0x62, 0x12, 0xf7, 0xb8, 0xce, 0x47, 0x96, 0xa6, 0x46, 0x2c, 0x46, 0x8e, 0x4c, 0xe1, 0x30, 0x36, 0xb0, 0x71, 0x37, 0xfc, 0x88, 0x8e, 0x41, 0x20, 0x50, 0x69, 0x58, 0x01, 0xdd, 0x85, 0xb2, 0x42, 0xb8, 0xa6, 0x35, 0xf1, 0xcc, 0x4d, 0xc8, 0x75, 0xbb, 0x07, 0x4d, 0x43, 0xd2, 0xf3, 0x35, 0xd7, 0xa7, 0x51, 0x98, 0x54, 0xd8, 0x03, 0x92, 0x21, 0x8e, 0xad, 0x3a, 0xdd, 0xe5, 0x92, 0x0a, 0xf9, 0x89, 0x7e, 0xae, 0x33, 0xe0, 0x38, 0x1d, 0xf0, 0xe3, 0xfd, 0x33, 0xda, 0xc5, 0xdc, 0x3b, 0xee, 0x99, 0xb3, 0x30, 0xde, 0x35, 0x80, 0x61, 0xbb, 0x9e, 0xff, 0x25, 0x78, 0x60, 0x20, 0x35, 0xba, 0x0c, 0xd3, 0x2d, 0xcb, 0xb0, 0x7c, 0xec, 0x3a, 0x2e, 0x26, 0x11, 0xcb, 0xba, 0xca, 0xff, 0xfb, 0xd8, 0x01, 0x31, 0xb7, 0x1d, 0xd6, 0x66, 0x2c, 0xca, 0x54, 0xab, 0x5f, 0xf8, 0x54, 0x3a, 0xf5, 0xf6, 0x98, 0x7c, 0xeb, 0xd6, 0xad, 0x5b, 0xb1, 0xf9, 0x2f, 0x8c, 0xc2, 0xf4, 0xa0, 0x35, 0x33, 0x70, 0xf9, 0x1e, 0x81, 0x51, 0xab, 0xd5, 0xdc, 0xc1, 0x2e, 0x75, 0x52, 0x52, 0xe1, 0x4f, 0xa8, 0x04, 0x49, 0x53, 0xdb, 0xc1, 0x66, 0x3e, 0x31, 0x27, 0x2d, 0xe4, 0x4e, 0x3c, 0x3d, 0xd4, 0xaa, 0x5c, 0x5c, 0x25, 0x10, 0x85, 0x21, 0xd1, 0x73, 0x90, 0xe0, 0x5b, 0x34, 0x61, 0x78, 0x6a, 0x38, 0x06, 0xb2, 0x96, 0x14, 0x8a, 0x43, 0x0f, 0x43, 0x9a, 0xfc, 0x65, 0xb1, 0x31, 0x4a, 0x6d, 0x4e, 0x11, 0x01, 0x89, 0x0b, 0x34, 0x03, 0x29, 0xba, 0x4c, 0xea, 0x58, 0xa4, 0xb6, 0xe0, 0x99, 0x04, 0x56, 0x1d, 0xef, 0x6a, 0x2d, 0xd3, 0x57, 0xaf, 0x6b, 0x66, 0x0b, 0xd3, 0x80, 0x4f, 0x2b, 0x59, 0x2e, 0xfc, 0x34, 0x91, 0xa1, 0x59, 0xc8, 0xb0, 0x55, 0x65, 0x58, 0x75, 0xfc, 0x22, 0xdd, 0x3d, 0x93, 0x0a, 0x5b, 0x68, 0x55, 0x22, 0x21, 0xdd, 0x5f, 0xf5, 0x6c, 0x4b, 0x84, 0x26, 0xed, 0x82, 0x08, 0x68, 0xf7, 0x67, 0x7b, 0x37, 0xee, 0x47, 0x06, 0x0f, 0xaf, 0x37, 0xa6, 0xe6, 0xbf, 0x13, 0x83, 0x04, 0xdd, 0x2f, 0x26, 0x20, 0xb3, 0x75, 0x65, 0xa3, 0xa2, 0x2e, 0xaf, 0x6f, 0x97, 0x57, 0x2b, 0xb2, 0x84, 0x72, 0x00, 0x54, 0x70, 0x61, 0x75, 0xbd, 0xb4, 0x25, 0xc7, 0x82, 0xe7, 0xea, 0xda, 0xd6, 0x99, 0x53, 0x72, 0x3c, 0x00, 0x6c, 0x33, 0x41, 0x22, 0xac, 0x70, 0xf2, 0x84, 0x9c, 0x44, 0x32, 0x64, 0x19, 0x41, 0xf5, 0x72, 0x65, 0xf9, 0xcc, 0x29, 0x79, 0xb4, 0x5b, 0x72, 0xf2, 0x84, 0x3c, 0x86, 0xc6, 0x21, 0x4d, 0x25, 0xe5, 0xf5, 0xf5, 0x55, 0x39, 0x15, 0x70, 0x6e, 0x6e, 0x29, 0xd5, 0xb5, 0x15, 0x39, 0x1d, 0x70, 0xae, 0x28, 0xeb, 0xdb, 0x1b, 0x32, 0x04, 0x0c, 0xb5, 0xca, 0xe6, 0x66, 0x69, 0xa5, 0x22, 0x67, 0x02, 0x8d, 0xf2, 0x95, 0xad, 0xca, 0xa6, 0x9c, 0xed, 0x32, 0xeb, 0xe4, 0x09, 0x79, 0x3c, 0xe8, 0xa2, 0xb2, 0xb6, 0x5d, 0x93, 0x73, 0x68, 0x12, 0xc6, 0x59, 0x17, 0xc2, 0x88, 0x89, 0x1e, 0xd1, 0x99, 0x53, 0xb2, 0xdc, 0x31, 0x84, 0xb1, 0x4c, 0x76, 0x09, 0xce, 0x9c, 0x92, 0xd1, 0xfc, 0x12, 0x24, 0x69, 0x74, 0x21, 0x04, 0xb9, 0xd5, 0x52, 0xb9, 0xb2, 0xaa, 0xae, 0x6f, 0x6c, 0x55, 0xd7, 0xd7, 0x4a, 0xab, 0xb2, 0xd4, 0x91, 0x29, 0x95, 0x4f, 0x6d, 0x57, 0x95, 0xca, 0xb2, 0x1c, 0x0b, 0xcb, 0x36, 0x2a, 0xa5, 0xad, 0xca, 0xb2, 0x1c, 0x9f, 0xd7, 0x61, 0x7a, 0xd0, 0x3e, 0x39, 0x70, 0x65, 0x84, 0xa6, 0x38, 0x76, 0xc0, 0x14, 0x53, 0xae, 0xbe, 0x29, 0xfe, 0xb2, 0x04, 0x53, 0x03, 0x72, 0xc5, 0xc0, 0x4e, 0x9e, 0x87, 0x24, 0x0b, 0x51, 0x96, 0x3d, 0x9f, 0x1c, 0x98, 0x74, 0x68, 0xc0, 0xf6, 0x65, 0x50, 0x8a, 0x0b, 0x57, 0x10, 0xf1, 0x03, 0x2a, 0x08, 0x42, 0xd1, 0x67, 0xe4, 0x4b, 0x12, 0xe4, 0x0f, 0xe2, 0x8e, 0xd8, 0x28, 0x62, 0x5d, 0x1b, 0xc5, 0xf9, 0x5e, 0x03, 0x8e, 0x1e, 0x3c, 0x86, 0x3e, 0x2b, 0x5e, 0x93, 0xe0, 0xc8, 0xe0, 0x42, 0x6b, 0xa0, 0x0d, 0xcf, 0xc1, 0x68, 0x13, 0xfb, 0x7b, 0xb6, 0x28, 0x36, 0x1e, 0x1f, 0x90, 0xc2, 0x48, 0x73, 0xaf, 0xaf, 0x38, 0x2a, 0x9c, 0x03, 0xe3, 0x07, 0x55, 0x4b, 0xcc, 0x9a, 0x3e, 0x4b, 0x3f, 0x1f, 0x83, 0x07, 0x06, 0x92, 0x0f, 0x34, 0xf4, 0x11, 0x00, 0xc3, 0x72, 0x5a, 0x3e, 0x2b, 0x28, 0xd8, 0xfe, 0x94, 0xa6, 0x12, 0xba, 0xf6, 0xc9, 0xde, 0xd3, 0xf2, 0x83, 0xf6, 0x38, 0x6d, 0x07, 0x26, 0xa2, 0x0a, 0xe7, 0x3a, 0x86, 0x26, 0xa8, 0xa1, 0x85, 0x03, 0x46, 0xda, 0x97, 0xab, 0x9f, 0x01, 0x59, 0x37, 0x0d, 0x6c, 0xf9, 0xaa, 0xe7, 0xbb, 0x58, 0x6b, 0x1a, 0x56, 0x83, 0x6e, 0xc0, 0xa9, 0x62, 0x72, 0x57, 0x33, 0x3d, 0xac, 0x4c, 0xb0, 0xe6, 0x4d, 0xd1, 0x4a, 0x10, 0x34, 0xc7, 0xb9, 0x21, 0xc4, 0x68, 0x17, 0x82, 0x35, 0x07, 0x88, 0xf9, 0x6f, 0xa5, 0x20, 0x13, 0x2a, 0x4b, 0xd1, 0x51, 0xc8, 0x5e, 0xd5, 0xae, 0x6b, 0xaa, 0x38, 0x6a, 0x30, 0x4f, 0x64, 0x88, 0x6c, 0x83, 0x1f, 0x37, 0x9e, 0x81, 0x69, 0xaa, 0x62, 0xb7, 0x7c, 0xec, 0xaa, 0xba, 0xa9, 0x79, 0x1e, 0x75, 0x5a, 0x8a, 0xaa, 0x22, 0xd2, 0xb6, 0x4e, 0x9a, 0x96, 0x44, 0x0b, 0x3a, 0x0d, 0x53, 0x14, 0xd1, 0x6c, 0x99, 0xbe, 0xe1, 0x98, 0x58, 0x25, 0x87, 0x1f, 0x8f, 0x6e, 0xc4, 0x81, 0x65, 0x93, 0x44, 0xa3, 0xc6, 0x15, 0x88, 0x45, 0x1e, 0x5a, 0x86, 0x47, 0x28, 0xac, 0x81, 0x2d, 0xec, 0x6a, 0x3e, 0x56, 0xf1, 0x67, 0x5a, 0x9a, 0xe9, 0xa9, 0x9a, 0x55, 0x57, 0xf7, 0x34, 0x6f, 0x2f, 0x3f, 0x4d, 0x08, 0xca, 0xb1, 0xbc, 0xa4, 0x3c, 0x44, 0x14, 0x57, 0xb8, 0x5e, 0x85, 0xaa, 0x95, 0xac, 0xfa, 0x27, 0x35, 0x6f, 0x0f, 0x15, 0xe1, 0x08, 0x65, 0xf1, 0x7c, 0xd7, 0xb0, 0x1a, 0xaa, 0xbe, 0x87, 0xf5, 0x6b, 0x6a, 0xcb, 0xdf, 0x3d, 0x97, 0x7f, 0x38, 0xdc, 0x3f, 0xb5, 0x70, 0x93, 0xea, 0x2c, 0x11, 0x95, 0x6d, 0x7f, 0xf7, 0x1c, 0xda, 0x84, 0x2c, 0x99, 0x8c, 0xa6, 0x71, 0x13, 0xab, 0xbb, 0xb6, 0x4b, 0x33, 0x4b, 0x6e, 0xc0, 0xca, 0x0e, 0x79, 0x70, 0x71, 0x9d, 0x03, 0x6a, 0x76, 0x1d, 0x17, 0x93, 0x9b, 0x1b, 0x95, 0xca, 0xb2, 0x92, 0x11, 0x2c, 0x17, 0x6c, 0x97, 0x04, 0x54, 0xc3, 0x0e, 0x1c, 0x9c, 0x61, 0x01, 0xd5, 0xb0, 0x85, 0x7b, 0x4f, 0xc3, 0x94, 0xae, 0xb3, 0x31, 0x1b, 0xba, 0xca, 0x8f, 0x28, 0x5e, 0x5e, 0xee, 0x72, 0x96, 0xae, 0xaf, 0x30, 0x05, 0x1e, 0xe3, 0x1e, 0x7a, 0x16, 0x1e, 0xe8, 0x38, 0x2b, 0x0c, 0x9c, 0xec, 0x1b, 0x65, 0x2f, 0xf4, 0x34, 0x4c, 0x39, 0xed, 0x7e, 0x20, 0xea, 0xea, 0xd1, 0x69, 0xf7, 0xc2, 0xce, 0xc2, 0xb4, 0xb3, 0xe7, 0xf4, 0xe3, 0xa6, 0xc2, 0x38, 0xe4, 0xec, 0x39, 0xbd, 0xc0, 0xc7, 0xe8, 0x79, 0xd5, 0xc5, 0xba, 0xe6, 0xe3, 0x7a, 0xfe, 0xc1, 0xb0, 0x7a, 0xa8, 0x01, 0x1d, 0x07, 0x59, 0xd7, 0x55, 0x6c, 0x69, 0x3b, 0x26, 0x56, 0x35, 0x17, 0x5b, 0x9a, 0x97, 0x9f, 0x0d, 0x2b, 0xe7, 0x74, 0xbd, 0x42, 0x5b, 0x4b, 0xb4, 0x11, 0x3d, 0x05, 0x93, 0xf6, 0xce, 0x55, 0x9d, 0x85, 0xa4, 0xea, 0xb8, 0x78, 0xd7, 0x78, 0x31, 0xff, 0x28, 0xf5, 0xef, 0x04, 0x69, 0xa0, 0x01, 0xb9, 0x41, 0xc5, 0xe8, 0x49, 0x90, 0x75, 0x6f, 0x4f, 0x73, 0x1d, 0x5a, 0x13, 0x78, 0x8e, 0xa6, 0xe3, 0xfc, 0x63, 0x4c, 0x95, 0xc9, 0xd7, 0x84, 0x98, 0x2c, 0x09, 0xef, 0x86, 0xb1, 0xeb, 0x0b, 0xc6, 0x27, 0xd8, 0x92, 0xa0, 0x32, 0xce, 0xb6, 0x00, 0x32, 0x71, 0x45, 0x57, 0xc7, 0x0b, 0x54, 0x2d, 0xe7, 0xec, 0x39, 0xe1, 0x7e, 0x8f, 0xc1, 0x38, 0xd1, 0xec, 0x74, 0xfa, 0x24, 0xab, 0x67, 0x9c, 0xbd, 0x50, 0x8f, 0x1f, 0x58, 0x69, 0x39, 0x5f, 0x84, 0x6c, 0x38, 0x3e, 0x51, 0x1a, 0x58, 0x84, 0xca, 0x12, 0xc9, 0xf5, 0x4b, 0xeb, 0xcb, 0x24, 0x4b, 0xbf, 0x50, 0x91, 0x63, 0xa4, 0x5a, 0x58, 0xad, 0x6e, 0x55, 0x54, 0x65, 0x7b, 0x6d, 0xab, 0x5a, 0xab, 0xc8, 0xf1, 0x70, 0x59, 0xfa, 0xfd, 0x18, 0xe4, 0xba, 0x4f, 0x18, 0xe8, 0xe3, 0xf0, 0xa0, 0xb8, 0x0e, 0xf0, 0xb0, 0xaf, 0xde, 0x30, 0x5c, 0xba, 0x64, 0x9a, 0x1a, 0xab, 0xb0, 0x83, 0x49, 0x9b, 0xe6, 0x5a, 0x9b, 0xd8, 0xbf, 0x64, 0xb8, 0x64, 0x41, 0x34, 0x35, 0x1f, 0xad, 0xc2, 0xac, 0x65, 0xab, 0x9e, 0xaf, 0x59, 0x75, 0xcd, 0xad, 0xab, 0x9d, 0x8b, 0x18, 0x55, 0xd3, 0x75, 0xec, 0x79, 0x36, 0x4b, 0x55, 0x01, 0xcb, 0x47, 0x2c, 0x7b, 0x93, 0x2b, 0x77, 0xf6, 0xf0, 0x12, 0x57, 0xed, 0x09, 0xb0, 0xf8, 0x41, 0x01, 0xf6, 0x30, 0xa4, 0x9b, 0x9a, 0xa3, 0x62, 0xcb, 0x77, 0xdb, 0xb4, 0xae, 0x4c, 0x29, 0xa9, 0xa6, 0xe6, 0x54, 0xc8, 0xf3, 0x87, 0x53, 0xde, 0xff, 0x6b, 0x1c, 0xb2, 0xe1, 0xda, 0x92, 0x94, 0xea, 0x3a, 0xcd, 0x23, 0x12, 0xdd, 0x69, 0x8e, 0xdd, 0xb3, 0x12, 0x5d, 0x5c, 0x22, 0x09, 0xa6, 0x38, 0xca, 0x2a, 0x3e, 0x85, 0x21, 0x49, 0x72, 0x27, 0x7b, 0x0b, 0x66, 0xa7, 0x98, 0x94, 0xc2, 0x9f, 0xd0, 0x0a, 0x8c, 0x5e, 0xf5, 0x28, 0xf7, 0x28, 0xe5, 0x7e, 0xf4, 0xde, 0xdc, 0x17, 0x37, 0x29, 0x79, 0xfa, 0xe2, 0xa6, 0xba, 0xb6, 0xae, 0xd4, 0x4a, 0xab, 0x0a, 0x87, 0xa3, 0x87, 0x20, 0x61, 0x6a, 0x37, 0xdb, 0xdd, 0xa9, 0x88, 0x8a, 0x86, 0x75, 0xfc, 0x43, 0x90, 0xb8, 0x81, 0xb5, 0x6b, 0xdd, 0x09, 0x80, 0x8a, 0x3e, 0xc0, 0xd0, 0x3f, 0x0e, 0x49, 0xea, 0x2f, 0x04, 0xc0, 0x3d, 0x26, 0x8f, 0xa0, 0x14, 0x24, 0x96, 0xd6, 0x15, 0x12, 0xfe, 0x32, 0x64, 0x99, 0x54, 0xdd, 0xa8, 0x56, 0x96, 0x2a, 0x72, 0x6c, 0xfe, 0x34, 0x8c, 0x32, 0x27, 0x90, 0xa5, 0x11, 0xb8, 0x41, 0x1e, 0xe1, 0x8f, 0x9c, 0x43, 0x12, 0xad, 0xdb, 0xb5, 0x72, 0x45, 0x91, 0x63, 0xe1, 0xe9, 0xf5, 0x20, 0x1b, 0x2e, 0x2b, 0x3f, 0x9c, 0x98, 0xfa, 0x07, 0x09, 0x32, 0xa1, 0x32, 0x91, 0x14, 0x28, 0x9a, 0x69, 0xda, 0x37, 0x54, 0xcd, 0x34, 0x34, 0x8f, 0x07, 0x05, 0x50, 0x51, 0x89, 0x48, 0x86, 0x9d, 0xb4, 0x0f, 0xc5, 0xf8, 0x57, 0x25, 0x90, 0x7b, 0x4b, 0xcc, 0x1e, 0x03, 0xa5, 0x9f, 0xa9, 0x81, 0xaf, 0x48, 0x90, 0xeb, 0xae, 0x2b, 0x7b, 0xcc, 0x3b, 0xfa, 0x33, 0x35, 0xef, 0xcd, 0x18, 0x8c, 0x77, 0x55, 0x93, 0xc3, 0x5a, 0xf7, 0x19, 0x98, 0x34, 0xea, 0xb8, 0xe9, 0xd8, 0x3e, 0xb6, 0xf4, 0xb6, 0x6a, 0xe2, 0xeb, 0xd8, 0xcc, 0xcf, 0xd3, 0x8d, 0xe2, 0xf8, 0xbd, 0xeb, 0xd5, 0xc5, 0x6a, 0x07, 0xb7, 0x4a, 0x60, 0xc5, 0xa9, 0xea, 0x72, 0xa5, 0xb6, 0xb1, 0xbe, 0x55, 0x59, 0x5b, 0xba, 0xa2, 0x6e, 0xaf, 0xfd, 0xfc, 0xda, 0xfa, 0xa5, 0x35, 0x45, 0x36, 0x7a, 0xd4, 0x3e, 0xc0, 0xa5, 0xbe, 0x01, 0x72, 0xaf, 0x51, 0xe8, 0x41, 0x18, 0x64, 0x96, 0x3c, 0x82, 0xa6, 0x60, 0x62, 0x6d, 0x5d, 0xdd, 0xac, 0x2e, 0x57, 0xd4, 0xca, 0x85, 0x0b, 0x95, 0xa5, 0xad, 0x4d, 0x76, 0x80, 0x0f, 0xb4, 0xb7, 0xba, 0x17, 0xf5, 0xcb, 0x71, 0x98, 0x1a, 0x60, 0x09, 0x2a, 0xf1, 0xb3, 0x03, 0x3b, 0xce, 0x7c, 0x6c, 0x18, 0xeb, 0x17, 0x49, 0xca, 0xdf, 0xd0, 0x5c, 0x9f, 0x1f, 0x35, 0x9e, 0x04, 0xe2, 0x25, 0xcb, 0x37, 0x76, 0x0d, 0xec, 0xf2, 0xfb, 0x0e, 0x76, 0xa0, 0x98, 0xe8, 0xc8, 0xd9, 0x95, 0xc7, 0x47, 0x01, 0x39, 0xb6, 0x67, 0xf8, 0xc6, 0x75, 0xac, 0x1a, 0x96, 0xb8, 0x1c, 0x21, 0x07, 0x8c, 0x84, 0x22, 0x8b, 0x96, 0xaa, 0xe5, 0x07, 0xda, 0x16, 0x6e, 0x68, 0x3d, 0xda, 0x64, 0x03, 0x8f, 0x2b, 0xb2, 0x68, 0x09, 0xb4, 0x8f, 0x42, 0xb6, 0x6e, 0xb7, 0x48, 0xd5, 0xc5, 0xf4, 0x48, 0xbe, 0x90, 0x94, 0x0c, 0x93, 0x05, 0x2a, 0xbc, 0x9e, 0xee, 0xdc, 0xca, 0x64, 0x95, 0x0c, 0x93, 0x31, 0x95, 0x27, 0x60, 0x42, 0x6b, 0x34, 0x5c, 0x42, 0x2e, 0x88, 0xd8, 0x09, 0x21, 0x17, 0x88, 0xa9, 0xe2, 0xcc, 0x45, 0x48, 0x09, 0x3f, 0x90, 0x94, 0x4c, 0x3c, 0xa1, 0x3a, 0xec, 0x66, 0x2e, 0xb6, 0x90, 0x56, 0x52, 0x96, 0x68, 0x3c, 0x0a, 0x59, 0xc3, 0x53, 0x3b, 0x97, 0xcc, 0xb1, 0xb9, 0xd8, 0x42, 0x4a, 0xc9, 0x18, 0x5e, 0x70, 0x41, 0x37, 0xff, 0x5a, 0x0c, 0x72, 0xdd, 0x97, 0xe4, 0x68, 0x19, 0x52, 0xa6, 0xad, 0x6b, 0x34, 0xb4, 0xd8, 0x1b, 0x9a, 0x85, 0x88, 0x7b, 0xf5, 0xc5, 0x55, 0xae, 0xaf, 0x04, 0xc8, 0x99, 0x7f, 0x96, 0x20, 0x25, 0xc4, 0xe8, 0x08, 0x24, 0x1c, 0xcd, 0xdf, 0xa3, 0x74, 0xc9, 0x72, 0x4c, 0x96, 0x14, 0xfa, 0x4c, 0xe4, 0x9e, 0xa3, 0x59, 0x34, 0x04, 0xb8, 0x9c, 0x3c, 0x93, 0x79, 0x35, 0xb1, 0x56, 0xa7, 0xc7, 0x0f, 0xbb, 0xd9, 0xc4, 0x96, 0xef, 0x89, 0x79, 0xe5, 0xf2, 0x25, 0x2e, 0x46, 0x4f, 0xc3, 0xa4, 0xef, 0x6a, 0x86, 0xd9, 0xa5, 0x9b, 0xa0, 0xba, 0xb2, 0x68, 0x08, 0x94, 0x8b, 0xf0, 0x90, 0xe0, 0xad, 0x63, 0x5f, 0xd3, 0xf7, 0x70, 0xbd, 0x03, 0x1a, 0xa5, 0x37, 0xb0, 0x0f, 0x72, 0x85, 0x65, 0xde, 0x2e, 0xb0, 0xf3, 0x3f, 0x94, 0x60, 0x52, 0x1c, 0x98, 0xea, 0x81, 0xb3, 0x6a, 0x00, 0x9a, 0x65, 0xd9, 0x7e, 0xd8, 0x5d, 0xfd, 0xa1, 0xdc, 0x87, 0x5b, 0x2c, 0x05, 0x20, 0x25, 0x44, 0x30, 0xd3, 0x04, 0xe8, 0xb4, 0x1c, 0xe8, 0xb6, 0x59, 0xc8, 0xf0, 0x37, 0x20, 0xf4, 0x35, 0x1a, 0x3b, 0x62, 0x03, 0x13, 0x91, 0x93, 0x15, 0x9a, 0x86, 0xe4, 0x0e, 0x6e, 0x18, 0x16, 0xbf, 0xd7, 0x64, 0x0f, 0xe2, 0xae, 0x36, 0x11, 0xdc, 0xd5, 0x96, 0x2f, 0xc3, 0x94, 0x6e, 0x37, 0x7b, 0xcd, 0x2d, 0xcb, 0x3d, 0xc7, 0x7c, 0xef, 0x93, 0xd2, 0x0b, 0xd0, 0x29, 0x31, 0xbf, 0x1c, 0x8b, 0xaf, 0x6c, 0x94, 0xbf, 0x1a, 0x9b, 0x59, 0x61, 0xb8, 0x0d, 0x31, 0x4c, 0x05, 0xef, 0x9a, 0x58, 0x27, 0xa6, 0xc3, 0x8f, 0x1f, 0x87, 0x8f, 0x35, 0x0c, 0x7f, 0xaf, 0xb5, 0xb3, 0xa8, 0xdb, 0xcd, 0xe3, 0x0d, 0xbb, 0x61, 0x77, 0x5e, 0x1b, 0x92, 0x27, 0xfa, 0x40, 0x7f, 0xf1, 0x57, 0x87, 0xe9, 0x40, 0x3a, 0x13, 0xf9, 0x9e, 0xb1, 0xb8, 0x06, 0x53, 0x5c, 0x59, 0xa5, 0xef, 0x2e, 0xd8, 0x11, 0x02, 0xdd, 0xf3, 0xfe, 0x27, 0xff, 0xcd, 0xb7, 0x68, 0xae, 0x56, 0x26, 0x39, 0x94, 0xb4, 0xb1, 0x53, 0x46, 0x51, 0x81, 0x07, 0xba, 0xf8, 0xd8, 0xba, 0xc4, 0x6e, 0x04, 0xe3, 0xf7, 0x39, 0xe3, 0x54, 0x88, 0x71, 0x93, 0x43, 0x8b, 0x4b, 0x30, 0x7e, 0x18, 0xae, 0x7f, 0xe4, 0x5c, 0x59, 0x1c, 0x26, 0x59, 0x81, 0x09, 0x4a, 0xa2, 0xb7, 0x3c, 0xdf, 0x6e, 0xd2, 0x4d, 0xef, 0xde, 0x34, 0xff, 0xf4, 0x16, 0x5b, 0x28, 0x39, 0x02, 0x5b, 0x0a, 0x50, 0xc5, 0x22, 0xd0, 0xd7, 0x35, 0x75, 0xac, 0x9b, 0x11, 0x0c, 0xaf, 0x73, 0x43, 0x02, 0xfd, 0xe2, 0xa7, 0x61, 0x9a, 0xfc, 0xa6, 0x7b, 0x52, 0xd8, 0x92, 0xe8, 0xdb, 0xae, 0xfc, 0x0f, 0x5f, 0x62, 0x6b, 0x71, 0x2a, 0x20, 0x08, 0xd9, 0x14, 0x9a, 0xc5, 0x06, 0xf6, 0x7d, 0xec, 0x7a, 0xaa, 0x66, 0x0e, 0x32, 0x2f, 0x74, 0x5d, 0x90, 0xff, 0xe2, 0x3b, 0xdd, 0xb3, 0xb8, 0xc2, 0x90, 0x25, 0xd3, 0x2c, 0x6e, 0xc3, 0x83, 0x03, 0xa2, 0x62, 0x08, 0xce, 0x97, 0x39, 0xe7, 0x74, 0x5f, 0x64, 0x10, 0xda, 0x0d, 0x10, 0xf2, 0x60, 0x2e, 0x87, 0xe0, 0xfc, 0x23, 0xce, 0x89, 0x38, 0x56, 0x4c, 0x29, 0x61, 0xbc, 0x08, 0x93, 0xd7, 0xb1, 0xbb, 0x63, 0x7b, 0xfc, 0x8a, 0x66, 0x08, 0xba, 0x57, 0x38, 0xdd, 0x04, 0x07, 0xd2, 0x3b, 0x1b, 0xc2, 0xf5, 0x2c, 0xa4, 0x76, 0x35, 0x1d, 0x0f, 0x41, 0xf1, 0x25, 0x4e, 0x31, 0x46, 0xf4, 0x09, 0xb4, 0x04, 0xd9, 0x86, 0xcd, 0xd3, 0x52, 0x34, 0xfc, 0x55, 0x0e, 0xcf, 0x08, 0x0c, 0xa7, 0x70, 0x6c, 0xa7, 0x65, 0x92, 0x9c, 0x15, 0x4d, 0xf1, 0xc7, 0x82, 0x42, 0x60, 0x38, 0xc5, 0x21, 0xdc, 0xfa, 0x27, 0x82, 0xc2, 0x0b, 0xf9, 0xf3, 0x79, 0xc8, 0xd8, 0x96, 0xd9, 0xb6, 0xad, 0x61, 0x8c, 0xf8, 0x53, 0xce, 0x00, 0x1c, 0x42, 0x08, 0xce, 0x43, 0x7a, 0xd8, 0x89, 0xf8, 0xb3, 0x77, 0xc4, 0xf2, 0x10, 0x33, 0xb0, 0x02, 0x13, 0x62, 0x83, 0x32, 0x6c, 0x6b, 0x08, 0x8a, 0x3f, 0xe7, 0x14, 0xb9, 0x10, 0x8c, 0x0f, 0xc3, 0xc7, 0x9e, 0xdf, 0xc0, 0xc3, 0x90, 0xbc, 0x26, 0x86, 0xc1, 0x21, 0xdc, 0x95, 0x3b, 0xd8, 0xd2, 0xf7, 0x86, 0x63, 0xf8, 0x8a, 0x70, 0xa5, 0xc0, 0x10, 0x8a, 0x25, 0x18, 0x6f, 0x6a, 0xae, 0xb7, 0xa7, 0x99, 0x43, 0x4d, 0xc7, 0x5f, 0x70, 0x8e, 0x6c, 0x00, 0xe2, 0x1e, 0x69, 0x59, 0x87, 0xa1, 0xf9, 0xaa, 0xf0, 0x48, 0x08, 0xc6, 0x97, 0x9e, 0xe7, 0xd3, 0xfb, 0xac, 0xc3, 0xb0, 0x7d, 0x4d, 0x2c, 0x3d, 0x86, 0xad, 0x85, 0x19, 0xcf, 0x43, 0xda, 0x33, 0x6e, 0x0e, 0x45, 0xf3, 0x97, 0x62, 0xa6, 0x29, 0x80, 0x80, 0xaf, 0xc0, 0x43, 0x03, 0xd3, 0xc4, 0x10, 0x64, 0x7f, 0xc5, 0xc9, 0x8e, 0x0c, 0x48, 0x15, 0x7c, 0x4b, 0x38, 0x2c, 0xe5, 0x5f, 0x8b, 0x2d, 0x01, 0xf7, 0x70, 0x6d, 0x90, 0x83, 0x82, 0xa7, 0xed, 0x1e, 0xce, 0x6b, 0x5f, 0x17, 0x5e, 0x63, 0xd8, 0x2e, 0xaf, 0x6d, 0xc1, 0x11, 0xce, 0x78, 0xb8, 0x79, 0xfd, 0x86, 0xd8, 0x58, 0x19, 0x7a, 0xbb, 0x7b, 0x76, 0x7f, 0x01, 0x66, 0x02, 0x77, 0x8a, 0x8a, 0xd4, 0x53, 0x9b, 0x9a, 0x33, 0x04, 0xf3, 0x37, 0x39, 0xb3, 0xd8, 0xf1, 0x83, 0x92, 0xd6, 0xab, 0x69, 0x0e, 0x21, 0xbf, 0x0c, 0x79, 0x41, 0xde, 0xb2, 0x5c, 0xac, 0xdb, 0x0d, 0xcb, 0xb8, 0x89, 0xeb, 0x43, 0x50, 0xff, 0x4d, 0xcf, 0x54, 0x6d, 0x87, 0xe0, 0x84, 0xb9, 0x0a, 0x72, 0x50, 0xab, 0xa8, 0x46, 0xd3, 0xb1, 0x5d, 0x3f, 0x82, 0xf1, 0x5b, 0x62, 0xa6, 0x02, 0x5c, 0x95, 0xc2, 0x8a, 0x15, 0xc8, 0xd1, 0xc7, 0x61, 0x43, 0xf2, 0x6f, 0x39, 0xd1, 0x78, 0x07, 0xc5, 0x37, 0x0e, 0xdd, 0x6e, 0x3a, 0x9a, 0x3b, 0xcc, 0xfe, 0xf7, 0x6d, 0xb1, 0x71, 0x70, 0x08, 0xdf, 0x38, 0xfc, 0xb6, 0x83, 0x49, 0xb6, 0x1f, 0x82, 0xe1, 0x3b, 0x62, 0xe3, 0x10, 0x18, 0x4e, 0x21, 0x0a, 0x86, 0x21, 0x28, 0xfe, 0x4e, 0x50, 0x08, 0x0c, 0xa1, 0xf8, 0x54, 0x27, 0xd1, 0xba, 0xb8, 0x61, 0x78, 0xbe, 0xcb, 0xea, 0xe0, 0x7b, 0x53, 0x7d, 0xf7, 0x9d, 0xee, 0x22, 0x4c, 0x09, 0x41, 0x8b, 0x17, 0x61, 0xa2, 0xa7, 0xc4, 0x40, 0x51, 0xdf, 0x7e, 0xe4, 0x7f, 0xf9, 0x3d, 0xbe, 0x19, 0x75, 0x57, 0x18, 0xc5, 0x55, 0x32, 0xef, 0xdd, 0x75, 0x40, 0x34, 0xd9, 0x4b, 0xef, 0x05, 0x53, 0xdf, 0x55, 0x06, 0x14, 0x2f, 0xc0, 0x78, 0x57, 0x0d, 0x10, 0x4d, 0xf5, 0x2b, 0x9c, 0x2a, 0x1b, 0x2e, 0x01, 0x8a, 0xa7, 0x21, 0x41, 0xf2, 0x79, 0x34, 0xfc, 0x57, 0x39, 0x9c, 0xaa, 0x17, 0x3f, 0x01, 0x29, 0x91, 0xc7, 0xa3, 0xa1, 0xbf, 0xc6, 0xa1, 0x01, 0x84, 0xc0, 0x45, 0x0e, 0x8f, 0x86, 0x7f, 0x4e, 0xc0, 0x05, 0x84, 0xc0, 0x87, 0x77, 0xe1, 0xf7, 0x7e, 0x23, 0xc1, 0xf7, 0x61, 0xe1, 0xbb, 0xf3, 0x30, 0xc6, 0x93, 0x77, 0x34, 0xfa, 0xf3, 0xbc, 0x73, 0x81, 0x28, 0x9e, 0x85, 0xe4, 0x90, 0x0e, 0xff, 0x4d, 0x0e, 0x65, 0xfa, 0xc5, 0x25, 0xc8, 0x84, 0x12, 0x76, 0x34, 0xfc, 0xb7, 0x38, 0x3c, 0x8c, 0x22, 0xa6, 0xf3, 0x84, 0x1d, 0x4d, 0xf0, 0xdb, 0xc2, 0x74, 0x8e, 0x20, 0x6e, 0x13, 0xb9, 0x3a, 0x1a, 0xfd, 0x3b, 0xc2, 0xeb, 0x02, 0x52, 0x7c, 0x1e, 0xd2, 0xc1, 0xfe, 0x1b, 0x8d, 0xff, 0x5d, 0x8e, 0xef, 0x60, 0x88, 0x07, 0x42, 0xfb, 0x7f, 0x34, 0xc5, 0xef, 0x09, 0x0f, 0x84, 0x50, 0x64, 0x19, 0xf5, 0xe6, 0xf4, 0x68, 0xa6, 0xdf, 0x17, 0xcb, 0xa8, 0x27, 0xa5, 0x93, 0xd9, 0xa4, 0xdb, 0x60, 0x34, 0xc5, 0x1f, 0x88, 0xd9, 0xa4, 0xfa, 0xc4, 0x8c, 0xde, 0x24, 0x19, 0xcd, 0xf1, 0x87, 0xc2, 0x8c, 0x9e, 0x1c, 0x59, 0xdc, 0x00, 0xd4, 0x9f, 0x20, 0xa3, 0xf9, 0xbe, 0xc0, 0xf9, 0x26, 0xfb, 0xf2, 0x63, 0xf1, 0x12, 0x1c, 0x19, 0x9c, 0x1c, 0xa3, 0x59, 0xbf, 0xf8, 0x5e, 0xcf, 0x71, 0x26, 0x9c, 0x1b, 0x8b, 0x5b, 0x9d, 0x5d, 0x36, 0x9c, 0x18, 0xa3, 0x69, 0x5f, 0x7e, 0xaf, 0x7b, 0xa3, 0x0d, 0xe7, 0xc5, 0x62, 0x09, 0xa0, 0x93, 0x93, 0xa2, 0xb9, 0x5e, 0xe1, 0x5c, 0x21, 0x10, 0x59, 0x1a, 0x3c, 0x25, 0x45, 0xe3, 0xbf, 0x24, 0x96, 0x06, 0x47, 0x90, 0xa5, 0x21, 0xb2, 0x51, 0x34, 0xfa, 0x55, 0xb1, 0x34, 0x04, 0xa4, 0x78, 0x1e, 0x52, 0x56, 0xcb, 0x34, 0x49, 0x6c, 0xa1, 0x7b, 0x7f, 0xce, 0x94, 0xff, 0xd1, 0xfb, 0x1c, 0x2c, 0x00, 0xc5, 0xd3, 0x90, 0xc4, 0xcd, 0x1d, 0x5c, 0x8f, 0x42, 0xfe, 0xc7, 0xfb, 0x62, 0x3f, 0x21, 0xda, 0xc5, 0xe7, 0x01, 0xd8, 0x61, 0x9a, 0xbe, 0x25, 0x8a, 0xc0, 0xfe, 0xe7, 0xfb, 0xfc, 0x4b, 0x89, 0x0e, 0xa4, 0x43, 0xc0, 0xbe, 0xbb, 0xb8, 0x37, 0xc1, 0x3b, 0xdd, 0x04, 0xf4, 0x00, 0xfe, 0x2c, 0x8c, 0x5d, 0xf5, 0x6c, 0xcb, 0xd7, 0x1a, 0x51, 0xe8, 0xff, 0xe2, 0x68, 0xa1, 0x4f, 0x1c, 0xd6, 0xb4, 0x5d, 0xec, 0x6b, 0x0d, 0x2f, 0x0a, 0xfb, 0xdf, 0x1c, 0x1b, 0x00, 0x08, 0x58, 0xd7, 0x3c, 0x7f, 0x98, 0x71, 0xff, 0x8f, 0x00, 0x0b, 0x00, 0x31, 0x9a, 0xfc, 0xbe, 0x86, 0xdb, 0x51, 0xd8, 0x77, 0x85, 0xd1, 0x5c, 0xbf, 0xf8, 0x09, 0x48, 0x93, 0x9f, 0xec, 0xeb, 0xa1, 0x08, 0xf0, 0xff, 0x72, 0x70, 0x07, 0x41, 0x7a, 0xf6, 0xfc, 0xba, 0x6f, 0x44, 0x3b, 0xfb, 0xff, 0xf8, 0x4c, 0x0b, 0xfd, 0x62, 0x09, 0x32, 0x9e, 0x5f, 0xaf, 0xb7, 0x78, 0x45, 0x13, 0x01, 0xff, 0xf1, 0xfb, 0xc1, 0x21, 0x37, 0xc0, 0x94, 0x8f, 0x0e, 0xbe, 0xac, 0x83, 0x15, 0x7b, 0xc5, 0x66, 0xd7, 0x74, 0xf0, 0xf5, 0x09, 0x98, 0xd1, 0xed, 0xe6, 0x8e, 0xed, 0x1d, 0xdf, 0xb1, 0xfd, 0xbd, 0xe3, 0xc2, 0x67, 0xfc, 0x8a, 0x2d, 0xf0, 0xe1, 0xcc, 0xe1, 0xee, 0xe6, 0xe6, 0x7f, 0x34, 0x0e, 0xa9, 0x25, 0xcd, 0xf3, 0xb5, 0x1b, 0x5a, 0x1b, 0x3d, 0x06, 0xa9, 0xaa, 0xe5, 0x9f, 0x3c, 0xb1, 0xe1, 0xbb, 0xf4, 0xdd, 0x52, 0xbc, 0x9c, 0xbe, 0x7b, 0x7b, 0x36, 0x69, 0x10, 0x99, 0x12, 0x34, 0xa1, 0x63, 0x90, 0xa4, 0xbf, 0xe9, 0xf5, 0x64, 0xbc, 0x3c, 0xfe, 0xfa, 0xed, 0xd9, 0x91, 0x8e, 0x1e, 0x6b, 0x43, 0x57, 0x20, 0x53, 0x6b, 0x6f, 0x1b, 0x96, 0x7f, 0xe6, 0x14, 0xa1, 0x23, 0xa3, 0x4e, 0x94, 0xcf, 0xde, 0xbd, 0x3d, 0x7b, 0xf2, 0x40, 0x03, 0x49, 0x2e, 0xec, 0x0c, 0x4c, 0xa0, 0xe9, 0xa7, 0x93, 0x61, 0x2e, 0x74, 0x09, 0x52, 0xe2, 0x91, 0x5d, 0xf3, 0x97, 0xcf, 0x73, 0x13, 0xee, 0x8b, 0x3b, 0x20, 0x43, 0xbf, 0x08, 0xd9, 0x5a, 0xfb, 0x82, 0x69, 0x6b, 0xdc, 0x07, 0xc9, 0x39, 0x69, 0x21, 0x56, 0x3e, 0x77, 0xf7, 0xf6, 0xec, 0xa9, 0xa1, 0x89, 0x39, 0x9c, 0x32, 0x77, 0xb1, 0xa1, 0x17, 0x20, 0x1d, 0x3c, 0xd3, 0x17, 0x09, 0xb1, 0xf2, 0xc7, 0xb9, 0xdd, 0xf7, 0x47, 0xdf, 0xa1, 0x0b, 0x59, 0xce, 0xdc, 0x3d, 0x36, 0x27, 0x2d, 0x48, 0xf7, 0x63, 0x39, 0xf7, 0x49, 0x17, 0x5b, 0xc8, 0xf2, 0x33, 0xa7, 0xe8, 0x9b, 0x0b, 0xe9, 0x7e, 0x2d, 0xe7, 0xf4, 0x1d, 0x3a, 0x74, 0x11, 0xc6, 0x6a, 0xed, 0x72, 0xdb, 0xc7, 0x1e, 0xfd, 0xa4, 0x28, 0x5b, 0x7e, 0xe6, 0xee, 0xed, 0xd9, 0x8f, 0x0e, 0xc9, 0x4a, 0x71, 0x8a, 0x20, 0x40, 0x73, 0x90, 0x59, 0xb3, 0xdd, 0xa6, 0x66, 0x32, 0x3e, 0x60, 0x6f, 0x62, 0x42, 0x22, 0xb4, 0x4d, 0x46, 0xc2, 0x66, 0xdb, 0xa3, 0xff, 0xcc, 0xf1, 0x53, 0xc4, 0x64, 0x87, 0x09, 0x19, 0x90, 0xac, 0xb5, 0x6b, 0x9a, 0x93, 0xcf, 0xd2, 0xd7, 0x04, 0x8f, 0x2c, 0x06, 0x08, 0xb1, 0xb6, 0x16, 0x69, 0x3b, 0xfd, 0x9e, 0xa2, 0x7c, 0xea, 0xee, 0xed, 0xd9, 0x67, 0x86, 0xee, 0xb1, 0xa6, 0x39, 0xb4, 0x3b, 0xd6, 0x03, 0xfa, 0xb6, 0x44, 0x16, 0x16, 0xbb, 0x6a, 0x25, 0x3d, 0x8e, 0xd3, 0x1e, 0x8f, 0x0d, 0xec, 0x31, 0xd0, 0x62, 0xfd, 0x5a, 0x9f, 0x7d, 0xe3, 0x10, 0x23, 0x65, 0xc7, 0x19, 0xd2, 0xf5, 0xaf, 0xbf, 0x71, 0xdf, 0x8b, 0x36, 0xb0, 0x00, 0xbd, 0x24, 0xc1, 0x78, 0xad, 0xbd, 0xc6, 0x13, 0x2b, 0xb1, 0x3c, 0xc7, 0x3f, 0xf9, 0x1f, 0x64, 0x79, 0x48, 0x8f, 0xd9, 0x7e, 0xe6, 0xb3, 0x6f, 0xcc, 0x9e, 0x18, 0xda, 0x08, 0xba, 0x05, 0x51, 0x1b, 0xba, 0xfb, 0x44, 0x9f, 0xa3, 0x56, 0x54, 0x48, 0x92, 0xae, 0xe3, 0x3a, 0xb1, 0x62, 0xe2, 0x1e, 0x56, 0x84, 0xf4, 0x98, 0x15, 0x45, 0x12, 0xf5, 0xf7, 0x6f, 0x49, 0x88, 0x0f, 0xad, 0xc3, 0x28, 0xf3, 0x30, 0xfd, 0x9c, 0x2d, 0x7d, 0xc8, 0x30, 0xec, 0x4c, 0x8e, 0xc2, 0x69, 0x66, 0xce, 0x01, 0x74, 0x62, 0x0c, 0xc9, 0x10, 0xbf, 0x86, 0xdb, 0xfc, 0x9b, 0x45, 0xf2, 0x13, 0x4d, 0x77, 0xbe, 0xc9, 0x95, 0x16, 0x12, 0xfc, 0x43, 0xdb, 0x62, 0xec, 0x9c, 0x34, 0xf3, 0x1c, 0xc8, 0xbd, 0xb1, 0x72, 0x28, 0xbc, 0x02, 0xa8, 0x7f, 0xc6, 0xc2, 0x0c, 0x49, 0xc6, 0xf0, 0x78, 0x98, 0x21, 0x73, 0x42, 0xee, 0xf8, 0xfc, 0x92, 0x61, 0x7a, 0xb6, 0xd5, 0xc7, 0xd9, 0xeb, 0xff, 0x9f, 0x8e, 0x73, 0xbe, 0x00, 0xa3, 0x4c, 0x48, 0xc6, 0x52, 0xa5, 0xe9, 0x83, 0x66, 0x39, 0x85, 0x3d, 0x94, 0x57, 0x5f, 0xbf, 0x53, 0x18, 0xf9, 0xc1, 0x9d, 0xc2, 0xc8, 0xbf, 0xdc, 0x29, 0x8c, 0xbc, 0x79, 0xa7, 0x20, 0xbd, 0x7d, 0xa7, 0x20, 0xbd, 0x7b, 0xa7, 0x20, 0xfd, 0xe4, 0x4e, 0x41, 0xba, 0xb5, 0x5f, 0x90, 0xbe, 0xb2, 0x5f, 0x90, 0xbe, 0xb1, 0x5f, 0x90, 0xbe, 0xbb, 0x5f, 0x90, 0xbe, 0xb7, 0x5f, 0x90, 0x5e, 0xdf, 0x2f, 0x48, 0x3f, 0xd8, 0x2f, 0x48, 0x6f, 0xee, 0x17, 0xa4, 0xb7, 0xf7, 0x0b, 0x23, 0xef, 0xee, 0x17, 0xa4, 0x9f, 0xec, 0x17, 0x46, 0x6e, 0xfd, 0x5b, 0x61, 0xe4, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x5c, 0x03, 0x59, 0xec, 0x56, 0x37, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Castaway) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Castaway") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Castaway but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Castaway but is not nil && this == nil") } if this.Int32Ptr != nil && that1.Int32Ptr != nil { if *this.Int32Ptr != *that1.Int32Ptr { return fmt.Errorf("Int32Ptr this(%v) Not Equal that(%v)", *this.Int32Ptr, *that1.Int32Ptr) } } else if this.Int32Ptr != nil { return fmt.Errorf("this.Int32Ptr == nil && that.Int32Ptr != nil") } else if that1.Int32Ptr != nil { return fmt.Errorf("Int32Ptr this(%v) Not Equal that(%v)", this.Int32Ptr, that1.Int32Ptr) } if this.Int32 != that1.Int32 { return fmt.Errorf("Int32 this(%v) Not Equal that(%v)", this.Int32, that1.Int32) } if this.MyUint64Ptr != nil && that1.MyUint64Ptr != nil { if *this.MyUint64Ptr != *that1.MyUint64Ptr { return fmt.Errorf("MyUint64Ptr this(%v) Not Equal that(%v)", *this.MyUint64Ptr, *that1.MyUint64Ptr) } } else if this.MyUint64Ptr != nil { return fmt.Errorf("this.MyUint64Ptr == nil && that.MyUint64Ptr != nil") } else if that1.MyUint64Ptr != nil { return fmt.Errorf("MyUint64Ptr this(%v) Not Equal that(%v)", this.MyUint64Ptr, that1.MyUint64Ptr) } if this.MyUint64 != that1.MyUint64 { return fmt.Errorf("MyUint64 this(%v) Not Equal that(%v)", this.MyUint64, that1.MyUint64) } if this.MyFloat32Ptr != nil && that1.MyFloat32Ptr != nil { if *this.MyFloat32Ptr != *that1.MyFloat32Ptr { return fmt.Errorf("MyFloat32Ptr this(%v) Not Equal that(%v)", *this.MyFloat32Ptr, *that1.MyFloat32Ptr) } } else if this.MyFloat32Ptr != nil { return fmt.Errorf("this.MyFloat32Ptr == nil && that.MyFloat32Ptr != nil") } else if that1.MyFloat32Ptr != nil { return fmt.Errorf("MyFloat32Ptr this(%v) Not Equal that(%v)", this.MyFloat32Ptr, that1.MyFloat32Ptr) } if this.MyFloat32 != that1.MyFloat32 { return fmt.Errorf("MyFloat32 this(%v) Not Equal that(%v)", this.MyFloat32, that1.MyFloat32) } if this.MyFloat64Ptr != nil && that1.MyFloat64Ptr != nil { if *this.MyFloat64Ptr != *that1.MyFloat64Ptr { return fmt.Errorf("MyFloat64Ptr this(%v) Not Equal that(%v)", *this.MyFloat64Ptr, *that1.MyFloat64Ptr) } } else if this.MyFloat64Ptr != nil { return fmt.Errorf("this.MyFloat64Ptr == nil && that.MyFloat64Ptr != nil") } else if that1.MyFloat64Ptr != nil { return fmt.Errorf("MyFloat64Ptr this(%v) Not Equal that(%v)", this.MyFloat64Ptr, that1.MyFloat64Ptr) } if this.MyFloat64 != that1.MyFloat64 { return fmt.Errorf("MyFloat64 this(%v) Not Equal that(%v)", this.MyFloat64, that1.MyFloat64) } if !bytes.Equal(this.MyBytes, that1.MyBytes) { return fmt.Errorf("MyBytes this(%v) Not Equal that(%v)", this.MyBytes, that1.MyBytes) } if !bytes.Equal(this.NormalBytes, that1.NormalBytes) { return fmt.Errorf("NormalBytes this(%v) Not Equal that(%v)", this.NormalBytes, that1.NormalBytes) } if len(this.MyUint64S) != len(that1.MyUint64S) { return fmt.Errorf("MyUint64S this(%v) Not Equal that(%v)", len(this.MyUint64S), len(that1.MyUint64S)) } for i := range this.MyUint64S { if this.MyUint64S[i] != that1.MyUint64S[i] { return fmt.Errorf("MyUint64S this[%v](%v) Not Equal that[%v](%v)", i, this.MyUint64S[i], i, that1.MyUint64S[i]) } } if len(this.MyMap) != len(that1.MyMap) { return fmt.Errorf("MyMap this(%v) Not Equal that(%v)", len(this.MyMap), len(that1.MyMap)) } for i := range this.MyMap { if this.MyMap[i] != that1.MyMap[i] { return fmt.Errorf("MyMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyMap[i], i, that1.MyMap[i]) } } if len(this.MyCustomMap) != len(that1.MyCustomMap) { return fmt.Errorf("MyCustomMap this(%v) Not Equal that(%v)", len(this.MyCustomMap), len(that1.MyCustomMap)) } for i := range this.MyCustomMap { if this.MyCustomMap[i] != that1.MyCustomMap[i] { return fmt.Errorf("MyCustomMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyCustomMap[i], i, that1.MyCustomMap[i]) } } if len(this.MyNullableMap) != len(that1.MyNullableMap) { return fmt.Errorf("MyNullableMap this(%v) Not Equal that(%v)", len(this.MyNullableMap), len(that1.MyNullableMap)) } for i := range this.MyNullableMap { if !this.MyNullableMap[i].Equal(that1.MyNullableMap[i]) { return fmt.Errorf("MyNullableMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyNullableMap[i], i, that1.MyNullableMap[i]) } } if len(this.MyEmbeddedMap) != len(that1.MyEmbeddedMap) { return fmt.Errorf("MyEmbeddedMap this(%v) Not Equal that(%v)", len(this.MyEmbeddedMap), len(that1.MyEmbeddedMap)) } for i := range this.MyEmbeddedMap { a := this.MyEmbeddedMap[i] b := that1.MyEmbeddedMap[i] if !(&a).Equal(&b) { return fmt.Errorf("MyEmbeddedMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyEmbeddedMap[i], i, that1.MyEmbeddedMap[i]) } } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return fmt.Errorf("String_ this(%v) Not Equal that(%v)", *this.String_, *that1.String_) } } else if this.String_ != nil { return fmt.Errorf("this.String_ == nil && that.String_ != nil") } else if that1.String_ != nil { return fmt.Errorf("String_ this(%v) Not Equal that(%v)", this.String_, that1.String_) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Castaway) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int32Ptr != nil && that1.Int32Ptr != nil { if *this.Int32Ptr != *that1.Int32Ptr { return false } } else if this.Int32Ptr != nil { return false } else if that1.Int32Ptr != nil { return false } if this.Int32 != that1.Int32 { return false } if this.MyUint64Ptr != nil && that1.MyUint64Ptr != nil { if *this.MyUint64Ptr != *that1.MyUint64Ptr { return false } } else if this.MyUint64Ptr != nil { return false } else if that1.MyUint64Ptr != nil { return false } if this.MyUint64 != that1.MyUint64 { return false } if this.MyFloat32Ptr != nil && that1.MyFloat32Ptr != nil { if *this.MyFloat32Ptr != *that1.MyFloat32Ptr { return false } } else if this.MyFloat32Ptr != nil { return false } else if that1.MyFloat32Ptr != nil { return false } if this.MyFloat32 != that1.MyFloat32 { return false } if this.MyFloat64Ptr != nil && that1.MyFloat64Ptr != nil { if *this.MyFloat64Ptr != *that1.MyFloat64Ptr { return false } } else if this.MyFloat64Ptr != nil { return false } else if that1.MyFloat64Ptr != nil { return false } if this.MyFloat64 != that1.MyFloat64 { return false } if !bytes.Equal(this.MyBytes, that1.MyBytes) { return false } if !bytes.Equal(this.NormalBytes, that1.NormalBytes) { return false } if len(this.MyUint64S) != len(that1.MyUint64S) { return false } for i := range this.MyUint64S { if this.MyUint64S[i] != that1.MyUint64S[i] { return false } } if len(this.MyMap) != len(that1.MyMap) { return false } for i := range this.MyMap { if this.MyMap[i] != that1.MyMap[i] { return false } } if len(this.MyCustomMap) != len(that1.MyCustomMap) { return false } for i := range this.MyCustomMap { if this.MyCustomMap[i] != that1.MyCustomMap[i] { return false } } if len(this.MyNullableMap) != len(that1.MyNullableMap) { return false } for i := range this.MyNullableMap { if !this.MyNullableMap[i].Equal(that1.MyNullableMap[i]) { return false } } if len(this.MyEmbeddedMap) != len(that1.MyEmbeddedMap) { return false } for i := range this.MyEmbeddedMap { a := this.MyEmbeddedMap[i] b := that1.MyEmbeddedMap[i] if !(&a).Equal(&b) { return false } } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return false } } else if this.String_ != nil { return false } else if that1.String_ != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Wilson) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Wilson") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Wilson but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Wilson but is not nil && this == nil") } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", *this.Int64, *that1.Int64) } } else if this.Int64 != nil { return fmt.Errorf("this.Int64 == nil && that.Int64 != nil") } else if that1.Int64 != nil { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", this.Int64, that1.Int64) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Wilson) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return false } } else if this.Int64 != nil { return false } else if that1.Int64 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type CastawayFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt32Ptr() *int32 GetInt32() int32 GetMyUint64Ptr() *github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyUint64() github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyFloat32Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat32Type GetMyFloat32() github_com_gogo_protobuf_test_casttype.MyFloat32Type GetMyFloat64Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat64Type GetMyFloat64() github_com_gogo_protobuf_test_casttype.MyFloat64Type GetMyBytes() github_com_gogo_protobuf_test_casttype.Bytes GetNormalBytes() []byte GetMyUint64S() []github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyMap() github_com_gogo_protobuf_test_casttype.MyMapType GetMyCustomMap() map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyNullableMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson GetMyEmbeddedMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson GetString_() *github_com_gogo_protobuf_test_casttype.MyStringType } func (this *Castaway) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Castaway) TestProto() github_com_gogo_protobuf_proto.Message { return NewCastawayFromFace(this) } func (this *Castaway) GetInt32Ptr() *int32 { return this.Int32Ptr } func (this *Castaway) GetInt32() int32 { return this.Int32 } func (this *Castaway) GetMyUint64Ptr() *github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64Ptr } func (this *Castaway) GetMyUint64() github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64 } func (this *Castaway) GetMyFloat32Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat32Type { return this.MyFloat32Ptr } func (this *Castaway) GetMyFloat32() github_com_gogo_protobuf_test_casttype.MyFloat32Type { return this.MyFloat32 } func (this *Castaway) GetMyFloat64Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat64Type { return this.MyFloat64Ptr } func (this *Castaway) GetMyFloat64() github_com_gogo_protobuf_test_casttype.MyFloat64Type { return this.MyFloat64 } func (this *Castaway) GetMyBytes() github_com_gogo_protobuf_test_casttype.Bytes { return this.MyBytes } func (this *Castaway) GetNormalBytes() []byte { return this.NormalBytes } func (this *Castaway) GetMyUint64S() []github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64S } func (this *Castaway) GetMyMap() github_com_gogo_protobuf_test_casttype.MyMapType { return this.MyMap } func (this *Castaway) GetMyCustomMap() map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyCustomMap } func (this *Castaway) GetMyNullableMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson { return this.MyNullableMap } func (this *Castaway) GetMyEmbeddedMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson { return this.MyEmbeddedMap } func (this *Castaway) GetString_() *github_com_gogo_protobuf_test_casttype.MyStringType { return this.String_ } func NewCastawayFromFace(that CastawayFace) *Castaway { this := &Castaway{} this.Int32Ptr = that.GetInt32Ptr() this.Int32 = that.GetInt32() this.MyUint64Ptr = that.GetMyUint64Ptr() this.MyUint64 = that.GetMyUint64() this.MyFloat32Ptr = that.GetMyFloat32Ptr() this.MyFloat32 = that.GetMyFloat32() this.MyFloat64Ptr = that.GetMyFloat64Ptr() this.MyFloat64 = that.GetMyFloat64() this.MyBytes = that.GetMyBytes() this.NormalBytes = that.GetNormalBytes() this.MyUint64S = that.GetMyUint64S() this.MyMap = that.GetMyMap() this.MyCustomMap = that.GetMyCustomMap() this.MyNullableMap = that.GetMyNullableMap() this.MyEmbeddedMap = that.GetMyEmbeddedMap() this.String_ = that.GetString_() return this } type WilsonFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt64() *int64 } func (this *Wilson) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Wilson) TestProto() github_com_gogo_protobuf_proto.Message { return NewWilsonFromFace(this) } func (this *Wilson) GetInt64() *int64 { return this.Int64 } func NewWilsonFromFace(that WilsonFace) *Wilson { this := &Wilson{} this.Int64 = that.GetInt64() return this } func (this *Castaway) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&casttype.Castaway{") if this.Int32Ptr != nil { s = append(s, "Int32Ptr: "+valueToGoStringCasttype(this.Int32Ptr, "int32")+",\n") } s = append(s, "Int32: "+fmt.Sprintf("%#v", this.Int32)+",\n") if this.MyUint64Ptr != nil { s = append(s, "MyUint64Ptr: "+valueToGoStringCasttype(this.MyUint64Ptr, "github_com_gogo_protobuf_test_casttype.MyUint64Type")+",\n") } s = append(s, "MyUint64: "+fmt.Sprintf("%#v", this.MyUint64)+",\n") if this.MyFloat32Ptr != nil { s = append(s, "MyFloat32Ptr: "+valueToGoStringCasttype(this.MyFloat32Ptr, "github_com_gogo_protobuf_test_casttype.MyFloat32Type")+",\n") } s = append(s, "MyFloat32: "+fmt.Sprintf("%#v", this.MyFloat32)+",\n") if this.MyFloat64Ptr != nil { s = append(s, "MyFloat64Ptr: "+valueToGoStringCasttype(this.MyFloat64Ptr, "github_com_gogo_protobuf_test_casttype.MyFloat64Type")+",\n") } s = append(s, "MyFloat64: "+fmt.Sprintf("%#v", this.MyFloat64)+",\n") if this.MyBytes != nil { s = append(s, "MyBytes: "+valueToGoStringCasttype(this.MyBytes, "github_com_gogo_protobuf_test_casttype.Bytes")+",\n") } if this.NormalBytes != nil { s = append(s, "NormalBytes: "+valueToGoStringCasttype(this.NormalBytes, "byte")+",\n") } if this.MyUint64S != nil { s = append(s, "MyUint64S: "+fmt.Sprintf("%#v", this.MyUint64S)+",\n") } keysForMyMap := make([]string, 0, len(this.MyMap)) for k := range this.MyMap { keysForMyMap = append(keysForMyMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyMap) mapStringForMyMap := "github_com_gogo_protobuf_test_casttype.MyMapType{" for _, k := range keysForMyMap { mapStringForMyMap += fmt.Sprintf("%#v: %#v,", k, this.MyMap[k]) } mapStringForMyMap += "}" if this.MyMap != nil { s = append(s, "MyMap: "+mapStringForMyMap+",\n") } keysForMyCustomMap := make([]string, 0, len(this.MyCustomMap)) for k := range this.MyCustomMap { keysForMyCustomMap = append(keysForMyCustomMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyCustomMap) mapStringForMyCustomMap := "map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type{" for _, k := range keysForMyCustomMap { mapStringForMyCustomMap += fmt.Sprintf("%#v: %#v,", k, this.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(k)]) } mapStringForMyCustomMap += "}" if this.MyCustomMap != nil { s = append(s, "MyCustomMap: "+mapStringForMyCustomMap+",\n") } keysForMyNullableMap := make([]int32, 0, len(this.MyNullableMap)) for k := range this.MyNullableMap { keysForMyNullableMap = append(keysForMyNullableMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyNullableMap) mapStringForMyNullableMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson{" for _, k := range keysForMyNullableMap { mapStringForMyNullableMap += fmt.Sprintf("%#v: %#v,", k, this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyNullableMap += "}" if this.MyNullableMap != nil { s = append(s, "MyNullableMap: "+mapStringForMyNullableMap+",\n") } keysForMyEmbeddedMap := make([]int32, 0, len(this.MyEmbeddedMap)) for k := range this.MyEmbeddedMap { keysForMyEmbeddedMap = append(keysForMyEmbeddedMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyEmbeddedMap) mapStringForMyEmbeddedMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson{" for _, k := range keysForMyEmbeddedMap { mapStringForMyEmbeddedMap += fmt.Sprintf("%#v: %#v,", k, this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyEmbeddedMap += "}" if this.MyEmbeddedMap != nil { s = append(s, "MyEmbeddedMap: "+mapStringForMyEmbeddedMap+",\n") } if this.String_ != nil { s = append(s, "String_: "+valueToGoStringCasttype(this.String_, "github_com_gogo_protobuf_test_casttype.MyStringType")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Wilson) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&casttype.Wilson{") if this.Int64 != nil { s = append(s, "Int64: "+valueToGoStringCasttype(this.Int64, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringCasttype(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Castaway) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Castaway) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Int32Ptr != nil { dAtA[i] = 0x8 i++ i = encodeVarintCasttype(dAtA, i, uint64(*m.Int32Ptr)) } dAtA[i] = 0x10 i++ i = encodeVarintCasttype(dAtA, i, uint64(m.Int32)) if m.MyUint64Ptr != nil { dAtA[i] = 0x18 i++ i = encodeVarintCasttype(dAtA, i, uint64(*m.MyUint64Ptr)) } dAtA[i] = 0x20 i++ i = encodeVarintCasttype(dAtA, i, uint64(m.MyUint64)) if m.MyFloat32Ptr != nil { dAtA[i] = 0x2d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.MyFloat32Ptr)))) i += 4 } dAtA[i] = 0x35 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.MyFloat32)))) i += 4 if m.MyFloat64Ptr != nil { dAtA[i] = 0x39 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.MyFloat64Ptr)))) i += 8 } dAtA[i] = 0x41 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.MyFloat64)))) i += 8 if m.MyBytes != nil { dAtA[i] = 0x4a i++ i = encodeVarintCasttype(dAtA, i, uint64(len(m.MyBytes))) i += copy(dAtA[i:], m.MyBytes) } if m.NormalBytes != nil { dAtA[i] = 0x52 i++ i = encodeVarintCasttype(dAtA, i, uint64(len(m.NormalBytes))) i += copy(dAtA[i:], m.NormalBytes) } if len(m.MyUint64S) > 0 { for _, num := range m.MyUint64S { dAtA[i] = 0x58 i++ i = encodeVarintCasttype(dAtA, i, uint64(num)) } } if len(m.MyMap) > 0 { for k := range m.MyMap { dAtA[i] = 0x62 i++ v := m.MyMap[k] mapSize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) i = encodeVarintCasttype(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintCasttype(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintCasttype(dAtA, i, uint64(v)) } } if len(m.MyCustomMap) > 0 { for k := range m.MyCustomMap { dAtA[i] = 0x6a i++ v := m.MyCustomMap[k] mapSize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) i = encodeVarintCasttype(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintCasttype(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintCasttype(dAtA, i, uint64(v)) } } if len(m.MyNullableMap) > 0 { for k := range m.MyNullableMap { dAtA[i] = 0x72 i++ v := m.MyNullableMap[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovCasttype(uint64(msgSize)) } mapSize := 1 + sovCasttype(uint64(k)) + msgSize i = encodeVarintCasttype(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintCasttype(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintCasttype(dAtA, i, uint64(v.Size())) n1, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } } } if len(m.MyEmbeddedMap) > 0 { for k := range m.MyEmbeddedMap { dAtA[i] = 0x7a i++ v := m.MyEmbeddedMap[k] msgSize := 0 if (&v) != nil { msgSize = (&v).Size() msgSize += 1 + sovCasttype(uint64(msgSize)) } mapSize := 1 + sovCasttype(uint64(k)) + msgSize i = encodeVarintCasttype(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintCasttype(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintCasttype(dAtA, i, uint64((&v).Size())) n2, err := (&v).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } } if m.String_ != nil { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ i = encodeVarintCasttype(dAtA, i, uint64(len(*m.String_))) i += copy(dAtA[i:], *m.String_) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Wilson) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Wilson) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Int64 != nil { dAtA[i] = 0x8 i++ i = encodeVarintCasttype(dAtA, i, uint64(*m.Int64)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintCasttype(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedCastaway(r randyCasttype, easy bool) *Castaway { this := &Castaway{} if r.Intn(10) != 0 { v1 := int32(r.Int63()) if r.Intn(2) == 0 { v1 *= -1 } this.Int32Ptr = &v1 } this.Int32 = int32(r.Int63()) if r.Intn(2) == 0 { this.Int32 *= -1 } if r.Intn(10) != 0 { v2 := github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) this.MyUint64Ptr = &v2 } this.MyUint64 = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) if r.Intn(10) != 0 { v3 := github_com_gogo_protobuf_test_casttype.MyFloat32Type(r.Float32()) if r.Intn(2) == 0 { v3 *= -1 } this.MyFloat32Ptr = &v3 } this.MyFloat32 = github_com_gogo_protobuf_test_casttype.MyFloat32Type(r.Float32()) if r.Intn(2) == 0 { this.MyFloat32 *= -1 } if r.Intn(10) != 0 { v4 := github_com_gogo_protobuf_test_casttype.MyFloat64Type(r.Float64()) if r.Intn(2) == 0 { v4 *= -1 } this.MyFloat64Ptr = &v4 } this.MyFloat64 = github_com_gogo_protobuf_test_casttype.MyFloat64Type(r.Float64()) if r.Intn(2) == 0 { this.MyFloat64 *= -1 } if r.Intn(10) != 0 { v5 := r.Intn(100) this.MyBytes = make(github_com_gogo_protobuf_test_casttype.Bytes, v5) for i := 0; i < v5; i++ { this.MyBytes[i] = byte(r.Intn(256)) } } if r.Intn(10) != 0 { v6 := r.Intn(100) this.NormalBytes = make([]byte, v6) for i := 0; i < v6; i++ { this.NormalBytes[i] = byte(r.Intn(256)) } } if r.Intn(10) != 0 { v7 := r.Intn(10) this.MyUint64S = make([]github_com_gogo_protobuf_test_casttype.MyUint64Type, v7) for i := 0; i < v7; i++ { this.MyUint64S[i] = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v8 := r.Intn(10) this.MyMap = make(github_com_gogo_protobuf_test_casttype.MyMapType) for i := 0; i < v8; i++ { v9 := randStringCasttype(r) this.MyMap[v9] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.MyCustomMap = make(map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type) for i := 0; i < v10; i++ { v11 := github_com_gogo_protobuf_test_casttype.MyStringType(randStringCasttype(r)) this.MyCustomMap[v11] = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.MyNullableMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson) for i := 0; i < v12; i++ { this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(int32(r.Int31()))] = NewPopulatedWilson(r, easy) } } if r.Intn(10) != 0 { v13 := r.Intn(10) this.MyEmbeddedMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson) for i := 0; i < v13; i++ { this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(int32(r.Int31()))] = *NewPopulatedWilson(r, easy) } } if r.Intn(10) != 0 { v14 := github_com_gogo_protobuf_test_casttype.MyStringType(randStringCasttype(r)) this.String_ = &v14 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCasttype(r, 17) } return this } func NewPopulatedWilson(r randyCasttype, easy bool) *Wilson { this := &Wilson{} if r.Intn(10) != 0 { v15 := int64(r.Int63()) if r.Intn(2) == 0 { v15 *= -1 } this.Int64 = &v15 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCasttype(r, 2) } return this } type randyCasttype interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneCasttype(r randyCasttype) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringCasttype(r randyCasttype) string { v16 := r.Intn(100) tmps := make([]rune, v16) for i := 0; i < v16; i++ { tmps[i] = randUTF8RuneCasttype(r) } return string(tmps) } func randUnrecognizedCasttype(r randyCasttype, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldCasttype(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldCasttype(dAtA []byte, r randyCasttype, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) v17 := r.Int63() if r.Intn(2) == 0 { v17 *= -1 } dAtA = encodeVarintPopulateCasttype(dAtA, uint64(v17)) case 1: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateCasttype(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateCasttype(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Castaway) Size() (n int) { var l int _ = l if m.Int32Ptr != nil { n += 1 + sovCasttype(uint64(*m.Int32Ptr)) } n += 1 + sovCasttype(uint64(m.Int32)) if m.MyUint64Ptr != nil { n += 1 + sovCasttype(uint64(*m.MyUint64Ptr)) } n += 1 + sovCasttype(uint64(m.MyUint64)) if m.MyFloat32Ptr != nil { n += 5 } n += 5 if m.MyFloat64Ptr != nil { n += 9 } n += 9 if m.MyBytes != nil { l = len(m.MyBytes) n += 1 + l + sovCasttype(uint64(l)) } if m.NormalBytes != nil { l = len(m.NormalBytes) n += 1 + l + sovCasttype(uint64(l)) } if len(m.MyUint64S) > 0 { for _, e := range m.MyUint64S { n += 1 + sovCasttype(uint64(e)) } } if len(m.MyMap) > 0 { for k, v := range m.MyMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyCustomMap) > 0 { for k, v := range m.MyCustomMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyNullableMap) > 0 { for k, v := range m.MyNullableMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovCasttype(uint64(l)) } mapEntrySize := 1 + sovCasttype(uint64(k)) + l n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyEmbeddedMap) > 0 { for k, v := range m.MyEmbeddedMap { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovCasttype(uint64(k)) + 1 + l + sovCasttype(uint64(l)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if m.String_ != nil { l = len(*m.String_) n += 2 + l + sovCasttype(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Wilson) Size() (n int) { var l int _ = l if m.Int64 != nil { n += 1 + sovCasttype(uint64(*m.Int64)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovCasttype(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozCasttype(x uint64) (n int) { return sovCasttype(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Castaway) String() string { if this == nil { return "nil" } keysForMyMap := make([]string, 0, len(this.MyMap)) for k := range this.MyMap { keysForMyMap = append(keysForMyMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyMap) mapStringForMyMap := "github_com_gogo_protobuf_test_casttype.MyMapType{" for _, k := range keysForMyMap { mapStringForMyMap += fmt.Sprintf("%v: %v,", k, this.MyMap[k]) } mapStringForMyMap += "}" keysForMyCustomMap := make([]string, 0, len(this.MyCustomMap)) for k := range this.MyCustomMap { keysForMyCustomMap = append(keysForMyCustomMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyCustomMap) mapStringForMyCustomMap := "map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type{" for _, k := range keysForMyCustomMap { mapStringForMyCustomMap += fmt.Sprintf("%v: %v,", k, this.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(k)]) } mapStringForMyCustomMap += "}" keysForMyNullableMap := make([]int32, 0, len(this.MyNullableMap)) for k := range this.MyNullableMap { keysForMyNullableMap = append(keysForMyNullableMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyNullableMap) mapStringForMyNullableMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson{" for _, k := range keysForMyNullableMap { mapStringForMyNullableMap += fmt.Sprintf("%v: %v,", k, this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyNullableMap += "}" keysForMyEmbeddedMap := make([]int32, 0, len(this.MyEmbeddedMap)) for k := range this.MyEmbeddedMap { keysForMyEmbeddedMap = append(keysForMyEmbeddedMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyEmbeddedMap) mapStringForMyEmbeddedMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson{" for _, k := range keysForMyEmbeddedMap { mapStringForMyEmbeddedMap += fmt.Sprintf("%v: %v,", k, this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyEmbeddedMap += "}" s := strings.Join([]string{`&Castaway{`, `Int32Ptr:` + valueToStringCasttype(this.Int32Ptr) + `,`, `Int32:` + fmt.Sprintf("%v", this.Int32) + `,`, `MyUint64Ptr:` + valueToStringCasttype(this.MyUint64Ptr) + `,`, `MyUint64:` + fmt.Sprintf("%v", this.MyUint64) + `,`, `MyFloat32Ptr:` + valueToStringCasttype(this.MyFloat32Ptr) + `,`, `MyFloat32:` + fmt.Sprintf("%v", this.MyFloat32) + `,`, `MyFloat64Ptr:` + valueToStringCasttype(this.MyFloat64Ptr) + `,`, `MyFloat64:` + fmt.Sprintf("%v", this.MyFloat64) + `,`, `MyBytes:` + valueToStringCasttype(this.MyBytes) + `,`, `NormalBytes:` + valueToStringCasttype(this.NormalBytes) + `,`, `MyUint64S:` + fmt.Sprintf("%v", this.MyUint64S) + `,`, `MyMap:` + mapStringForMyMap + `,`, `MyCustomMap:` + mapStringForMyCustomMap + `,`, `MyNullableMap:` + mapStringForMyNullableMap + `,`, `MyEmbeddedMap:` + mapStringForMyEmbeddedMap + `,`, `String_:` + valueToStringCasttype(this.String_) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Wilson) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Wilson{`, `Int64:` + valueToStringCasttype(this.Int64) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringCasttype(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Castaway) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Castaway: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Castaway: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Ptr", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Int32Ptr = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int32", wireType) } m.Int32 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Int32 |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field MyUint64Ptr", wireType) } var v github_com_gogo_protobuf_test_casttype.MyUint64Type for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } m.MyUint64Ptr = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field MyUint64", wireType) } m.MyUint64 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.MyUint64 |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } case 5: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field MyFloat32Ptr", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := github_com_gogo_protobuf_test_casttype.MyFloat32Type(math.Float32frombits(v)) m.MyFloat32Ptr = &v2 case 6: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field MyFloat32", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.MyFloat32 = github_com_gogo_protobuf_test_casttype.MyFloat32Type(math.Float32frombits(v)) case 7: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field MyFloat64Ptr", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := github_com_gogo_protobuf_test_casttype.MyFloat64Type(math.Float64frombits(v)) m.MyFloat64Ptr = &v2 case 8: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field MyFloat64", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.MyFloat64 = github_com_gogo_protobuf_test_casttype.MyFloat64Type(math.Float64frombits(v)) case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyBytes", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.MyBytes = append(m.MyBytes[:0], dAtA[iNdEx:postIndex]...) if m.MyBytes == nil { m.MyBytes = []byte{} } iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NormalBytes", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.NormalBytes = append(m.NormalBytes[:0], dAtA[iNdEx:postIndex]...) if m.NormalBytes == nil { m.NormalBytes = []byte{} } iNdEx = postIndex case 11: if wireType == 0 { var v github_com_gogo_protobuf_test_casttype.MyUint64Type for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } m.MyUint64S = append(m.MyUint64S, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v github_com_gogo_protobuf_test_casttype.MyUint64Type for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } m.MyUint64S = append(m.MyUint64S, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field MyUint64S", wireType) } case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MyMap == nil { m.MyMap = make(github_com_gogo_protobuf_test_casttype.MyMapType) } var mapkey string var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthCasttype } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MyMap[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyCustomMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MyCustomMap == nil { m.MyCustomMap = make(map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type) } var mapkey github_com_gogo_protobuf_test_casttype.MyStringType var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthCasttype } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = github_com_gogo_protobuf_test_casttype.MyStringType(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(mapkey)] = ((github_com_gogo_protobuf_test_casttype.MyUint64Type)(mapvalue)) iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyNullableMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MyNullableMap == nil { m.MyNullableMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson) } var mapkey int32 var mapvalue *Wilson for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthCasttype } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthCasttype } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Wilson{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(mapkey)] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyEmbeddedMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MyEmbeddedMap == nil { m.MyEmbeddedMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson) } var mapkey int32 mapvalue := &Wilson{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthCasttype } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthCasttype } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Wilson{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(mapkey)] = *mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field String_", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := github_com_gogo_protobuf_test_casttype.MyStringType(dAtA[iNdEx:postIndex]) m.String_ = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Wilson) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Wilson: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Wilson: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int64", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Int64 = &v default: iNdEx = preIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipCasttype(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCasttype } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCasttype } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCasttype } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthCasttype } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCasttype } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipCasttype(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthCasttype = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowCasttype = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/both/casttype.proto", fileDescriptorCasttype) } var fileDescriptorCasttype = []byte{ // 694 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0xbf, 0x6f, 0xd3, 0x4c, 0x18, 0xc7, 0xfd, 0x34, 0x4d, 0x9b, 0x5c, 0x9a, 0xf7, 0x8d, 0x4e, 0x0c, 0x56, 0x24, 0xce, 0x56, 0xab, 0x22, 0x0f, 0x90, 0x54, 0x69, 0x54, 0xaa, 0x82, 0x18, 0x5c, 0x15, 0xa9, 0x08, 0x17, 0x64, 0xa8, 0x2a, 0x10, 0x8b, 0xd3, 0x9a, 0x34, 0xc2, 0x89, 0xa3, 0xf8, 0x02, 0xf2, 0x56, 0x95, 0x01, 0x89, 0xbf, 0x84, 0x91, 0x05, 0x89, 0x91, 0xb1, 0x63, 0x47, 0xa6, 0xb4, 0x36, 0x4b, 0xd9, 0x3a, 0x56, 0x99, 0xd0, 0xdd, 0x39, 0xb1, 0xfb, 0x03, 0x94, 0xa6, 0xdb, 0x3d, 0x77, 0xcf, 0xf3, 0x79, 0xbe, 0xf7, 0xdc, 0x73, 0x77, 0xa8, 0xb8, 0xed, 0x36, 0x6b, 0xae, 0x57, 0xae, 0xb9, 0x74, 0xb7, 0xbc, 0x6d, 0x79, 0x94, 0xfa, 0x6d, 0xbb, 0xd4, 0xee, 0xb8, 0xd4, 0xc5, 0x99, 0x81, 0x5d, 0xbc, 0x57, 0x6f, 0xd0, 0xdd, 0x6e, 0xad, 0xb4, 0xed, 0x36, 0xcb, 0x75, 0xb7, 0xee, 0x96, 0xb9, 0x43, 0xad, 0xfb, 0x96, 0x5b, 0xdc, 0xe0, 0x23, 0x11, 0x38, 0xfb, 0x3b, 0x8f, 0x32, 0xab, 0x96, 0x47, 0xad, 0x0f, 0x96, 0x8f, 0xe7, 0x51, 0x66, 0xbd, 0x45, 0x17, 0x2b, 0xcf, 0x69, 0x47, 0x06, 0x15, 0xb4, 0x94, 0x9e, 0xed, 0xf7, 0x94, 0x74, 0x83, 0xcd, 0x99, 0xc3, 0x25, 0x3c, 0x87, 0xd2, 0x7c, 0x2c, 0x4f, 0x70, 0x9f, 0xfc, 0x41, 0x4f, 0x91, 0x62, 0x3f, 0xb1, 0x86, 0x5f, 0xa1, 0x9c, 0xe1, 0x6f, 0x36, 0x5a, 0x74, 0xa9, 0xca, 0x70, 0x29, 0x15, 0xb4, 0x49, 0xfd, 0x7e, 0xbf, 0xa7, 0x2c, 0xfe, 0x55, 0x20, 0xb5, 0x3d, 0x1a, 0x6f, 0x6c, 0x10, 0xfd, 0xd2, 0x6f, 0xdb, 0x66, 0x92, 0x85, 0xb7, 0x50, 0x66, 0x60, 0xca, 0x93, 0x9c, 0xfb, 0x20, 0x92, 0x30, 0x16, 0x7b, 0x08, 0xc3, 0x6f, 0xd0, 0x8c, 0xe1, 0x3f, 0x76, 0x5c, 0x2b, 0xaa, 0x41, 0x5a, 0x05, 0x6d, 0x42, 0x5f, 0xee, 0xf7, 0x94, 0xea, 0xc8, 0xe0, 0x28, 0x9c, 0x93, 0xcf, 0xd1, 0xf0, 0x6b, 0x94, 0x1d, 0xda, 0xf2, 0x14, 0x47, 0x3f, 0x8c, 0x74, 0x8f, 0x87, 0x8f, 0x71, 0x09, 0xe5, 0xa2, 0xdc, 0xd3, 0x2a, 0x68, 0x30, 0x8e, 0xf2, 0xa8, 0x26, 0xe7, 0x68, 0x09, 0xe5, 0x4b, 0x55, 0x39, 0xc3, 0xd1, 0x63, 0x2a, 0x8f, 0xf0, 0x31, 0x0e, 0x3f, 0x41, 0xd3, 0x86, 0xaf, 0xfb, 0xd4, 0xf6, 0xe4, 0xac, 0x0a, 0xda, 0x8c, 0xbe, 0xd0, 0xef, 0x29, 0x77, 0x47, 0xa4, 0xf2, 0x38, 0x73, 0x00, 0xc0, 0x2a, 0xca, 0x6d, 0xb8, 0x9d, 0xa6, 0xe5, 0x08, 0x1e, 0x62, 0x3c, 0x33, 0x39, 0x85, 0x37, 0xd9, 0x4e, 0xc4, 0x69, 0x7b, 0x72, 0x4e, 0x4d, 0xdd, 0xa4, 0x27, 0x63, 0x12, 0x6e, 0xa0, 0xb4, 0xe1, 0x1b, 0x56, 0x5b, 0x9e, 0x51, 0x53, 0x5a, 0xae, 0x72, 0xbb, 0x34, 0x8c, 0x18, 0xdc, 0xad, 0x12, 0x5f, 0x5f, 0x6b, 0xd1, 0x8e, 0xaf, 0x57, 0xfb, 0x3d, 0x65, 0x61, 0xe4, 0x8c, 0x86, 0xd5, 0xe6, 0xe9, 0x44, 0x06, 0xfc, 0x0d, 0xd8, 0xc5, 0x5a, 0xed, 0x7a, 0xd4, 0x6d, 0xb2, 0x8c, 0x79, 0x9e, 0x71, 0xee, 0xca, 0x8c, 0x43, 0x2f, 0x91, 0xb7, 0xb5, 0x7f, 0x74, 0x8d, 0x9d, 0xbe, 0xa0, 0x9d, 0x46, 0xab, 0xce, 0x52, 0x7f, 0x3e, 0x1a, 0xfb, 0xd2, 0x0e, 0x15, 0xe0, 0x8f, 0x80, 0xf2, 0x86, 0xbf, 0xd1, 0x75, 0x1c, 0xab, 0xe6, 0xd8, 0x4c, 0xf9, 0x7f, 0x5c, 0xf9, 0xfc, 0x95, 0xca, 0x13, 0x7e, 0x42, 0xfb, 0xd2, 0xfe, 0x91, 0x52, 0x19, 0x59, 0x04, 0x7f, 0x82, 0xb8, 0x86, 0xf3, 0x39, 0xf1, 0x27, 0xae, 0x62, 0xad, 0x59, 0xb3, 0x77, 0x76, 0xec, 0x1d, 0xa6, 0xe2, 0xff, 0x7f, 0xa8, 0x48, 0xf8, 0x09, 0x15, 0x2b, 0xac, 0xeb, 0xc7, 0x57, 0x92, 0xe0, 0xe1, 0x67, 0x68, 0x4a, 0x54, 0x58, 0x2e, 0xa8, 0xa0, 0x65, 0xaf, 0xd9, 0x86, 0xf1, 0xe1, 0x98, 0x11, 0xa6, 0xb8, 0x8c, 0x50, 0xdc, 0x63, 0xb8, 0x80, 0x52, 0xef, 0x6c, 0x9f, 0xbf, 0xe2, 0x59, 0x93, 0x0d, 0xf1, 0x2d, 0x94, 0x7e, 0x6f, 0x39, 0x5d, 0x9b, 0xbf, 0xda, 0x93, 0xa6, 0x30, 0x56, 0x26, 0x96, 0xa1, 0xf8, 0x08, 0x15, 0x2e, 0xf6, 0xca, 0xb5, 0xe2, 0x4d, 0x84, 0x2f, 0x9f, 0x58, 0x92, 0x90, 0x16, 0x84, 0x3b, 0x49, 0x42, 0xae, 0x52, 0x88, 0x6b, 0xbe, 0xd5, 0x70, 0x3c, 0xb7, 0x75, 0x89, 0x79, 0xb1, 0xfe, 0x37, 0x63, 0xce, 0x12, 0x34, 0x25, 0x26, 0xd9, 0x5e, 0xd6, 0xf9, 0xf7, 0xc1, 0x7f, 0x39, 0x53, 0x18, 0xfa, 0xd3, 0x83, 0x80, 0x48, 0x87, 0x01, 0x91, 0x7e, 0x06, 0x44, 0x3a, 0x0e, 0x08, 0x9c, 0x04, 0x04, 0x4e, 0x03, 0x02, 0x67, 0x01, 0x81, 0xbd, 0x90, 0xc0, 0x97, 0x90, 0xc0, 0xd7, 0x90, 0xc0, 0xf7, 0x90, 0xc0, 0x8f, 0x90, 0xc0, 0x41, 0x48, 0xe0, 0x30, 0x24, 0x70, 0x1c, 0x12, 0x38, 0x09, 0x89, 0x74, 0x1a, 0x12, 0x38, 0x0b, 0x89, 0xb4, 0xf7, 0x8b, 0x48, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x0c, 0x8a, 0xc1, 0xaf, 0x07, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/casttype/combos/both/casttype.proto000066400000000000000000000104051317075173200253170ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 casttype; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Castaway { optional int64 Int32Ptr = 1 [(gogoproto.casttype) = "int32"]; optional int64 Int32 = 2 [(gogoproto.casttype) = "int32", (gogoproto.nullable) = false]; optional uint64 MyUint64Ptr = 3 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; optional uint64 MyUint64 = 4 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type", (gogoproto.nullable) = false]; optional float MyFloat32Ptr = 5 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type"]; optional float MyFloat32 = 6 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type", (gogoproto.nullable) = false]; optional double MyFloat64Ptr = 7 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type"]; optional double MyFloat64 = 8 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type", (gogoproto.nullable) = false]; optional bytes MyBytes = 9 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.Bytes"]; optional bytes NormalBytes = 10; repeated uint64 MyUint64s = 11 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyMap = 12 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyMapType"]; map MyCustomMap = 13 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyStringType", (gogoproto.castvalue) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyNullableMap = 14 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type"]; map MyEmbeddedMap = 15 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type", (gogoproto.nullable) = false]; optional string String = 16 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyStringType"]; } message Wilson { optional int64 Int64 = 1; } golang-gogoprotobuf-0.5/test/casttype/combos/both/casttypepb_test.go000066400000000000000000000350161317075173200261470ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/casttype.proto /* Package casttype is a generated protocol buffer package. It is generated from these files: combos/both/casttype.proto It has these top-level messages: Castaway Wilson */ package casttype import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestCastawayProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCastawayMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCastawayProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCastawayProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastaway(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Castaway{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestWilsonProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestWilsonMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkWilsonProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkWilsonProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedWilson(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Wilson{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCastawayJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestWilsonJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCastawayProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastawayProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCasttypeDescription(t *testing.T) { CasttypeDescription() } func TestCastawayVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestWilsonVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCastawayFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestWilsonFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCastawayGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestWilsonGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCastawaySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCastawaySize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestWilsonSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkWilsonSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCastawayStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestWilsonStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/casttype/combos/marshaler/000077500000000000000000000000001317075173200234205ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/casttype/combos/marshaler/casttype.pb.go000066400000000000000000002163611317075173200262140ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/casttype.proto /* Package casttype is a generated protocol buffer package. It is generated from these files: combos/marshaler/casttype.proto It has these top-level messages: Castaway Wilson */ package casttype import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_casttype "github.com/gogo/protobuf/test/casttype" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Castaway struct { Int32Ptr *int32 `protobuf:"varint,1,opt,name=Int32Ptr,casttype=int32" json:"Int32Ptr,omitempty"` Int32 int32 `protobuf:"varint,2,opt,name=Int32,casttype=int32" json:"Int32"` MyUint64Ptr *github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,3,opt,name=MyUint64Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64Ptr,omitempty"` MyUint64 github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,4,opt,name=MyUint64,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64"` MyFloat32Ptr *github_com_gogo_protobuf_test_casttype.MyFloat32Type `protobuf:"fixed32,5,opt,name=MyFloat32Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyFloat32Type" json:"MyFloat32Ptr,omitempty"` MyFloat32 github_com_gogo_protobuf_test_casttype.MyFloat32Type `protobuf:"fixed32,6,opt,name=MyFloat32,casttype=github.com/gogo/protobuf/test/casttype.MyFloat32Type" json:"MyFloat32"` MyFloat64Ptr *github_com_gogo_protobuf_test_casttype.MyFloat64Type `protobuf:"fixed64,7,opt,name=MyFloat64Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyFloat64Type" json:"MyFloat64Ptr,omitempty"` MyFloat64 github_com_gogo_protobuf_test_casttype.MyFloat64Type `protobuf:"fixed64,8,opt,name=MyFloat64,casttype=github.com/gogo/protobuf/test/casttype.MyFloat64Type" json:"MyFloat64"` MyBytes github_com_gogo_protobuf_test_casttype.Bytes `protobuf:"bytes,9,opt,name=MyBytes,casttype=github.com/gogo/protobuf/test/casttype.Bytes" json:"MyBytes,omitempty"` NormalBytes []byte `protobuf:"bytes,10,opt,name=NormalBytes" json:"NormalBytes,omitempty"` MyUint64S []github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,11,rep,name=MyUint64s,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64s,omitempty"` MyMap github_com_gogo_protobuf_test_casttype.MyMapType `protobuf:"bytes,12,rep,name=MyMap,casttype=github.com/gogo/protobuf/test/casttype.MyMapType" json:"MyMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` MyCustomMap map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"bytes,13,rep,name=MyCustomMap,castkey=github.com/gogo/protobuf/test/casttype.MyStringType,castvalue=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyCustomMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` MyNullableMap map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson `protobuf:"bytes,14,rep,name=MyNullableMap,castkey=github.com/gogo/protobuf/test/casttype.MyInt32Type" json:"MyNullableMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` MyEmbeddedMap map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson `protobuf:"bytes,15,rep,name=MyEmbeddedMap,castkey=github.com/gogo/protobuf/test/casttype.MyInt32Type" json:"MyEmbeddedMap" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` String_ *github_com_gogo_protobuf_test_casttype.MyStringType `protobuf:"bytes,16,opt,name=String,casttype=github.com/gogo/protobuf/test/casttype.MyStringType" json:"String,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Castaway) Reset() { *m = Castaway{} } func (*Castaway) ProtoMessage() {} func (*Castaway) Descriptor() ([]byte, []int) { return fileDescriptorCasttype, []int{0} } type Wilson struct { Int64 *int64 `protobuf:"varint,1,opt,name=Int64" json:"Int64,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Wilson) Reset() { *m = Wilson{} } func (*Wilson) ProtoMessage() {} func (*Wilson) Descriptor() ([]byte, []int) { return fileDescriptorCasttype, []int{1} } func init() { proto.RegisterType((*Castaway)(nil), "casttype.Castaway") proto.RegisterType((*Wilson)(nil), "casttype.Wilson") } func (this *Castaway) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CasttypeDescription() } func (this *Wilson) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CasttypeDescription() } func CasttypeDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4197 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0x5b, 0x70, 0x1b, 0xd7, 0x79, 0xe6, 0xe2, 0x42, 0x02, 0x3f, 0x40, 0x70, 0x79, 0x48, 0xcb, 0x30, 0x1d, 0x83, 0x14, 0xe5, 0x0b, 0x6d, 0x27, 0x94, 0x47, 0x77, 0x43, 0x89, 0x5d, 0x80, 0x84, 0x18, 0xa8, 0x04, 0xc9, 0x2c, 0xc9, 0x48, 0x72, 0x3b, 0xb3, 0xb3, 0x5c, 0x1c, 0x82, 0x2b, 0x2d, 0x76, 0x37, 0xbb, 0x0b, 0xc9, 0xd0, 0xf4, 0x41, 0x8d, 0xdb, 0x66, 0xd2, 0x4e, 0xef, 0x9d, 0x69, 0xe2, 0x3a, 0x6e, 0x9b, 0x99, 0xd6, 0x69, 0xd2, 0x4b, 0xd2, 0x5c, 0x9a, 0xf6, 0x29, 0x2f, 0x69, 0xfd, 0xd4, 0x49, 0xde, 0xfa, 0xd0, 0x91, 0x2d, 0xd6, 0x33, 0x75, 0x5a, 0xb7, 0x75, 0x1b, 0x3f, 0x64, 0xe4, 0x97, 0xce, 0xb9, 0x2d, 0x16, 0x17, 0x6a, 0x41, 0x65, 0xec, 0x3c, 0x11, 0xfb, 0x9f, 0xff, 0xfb, 0xce, 0x7f, 0xfe, 0xf3, 0x9f, 0xf3, 0xff, 0xe7, 0xec, 0x12, 0xbe, 0x76, 0x0e, 0xe6, 0x1a, 0xb6, 0xdd, 0x30, 0xf1, 0x71, 0xc7, 0xb5, 0x7d, 0x7b, 0xa7, 0xb5, 0x7b, 0xbc, 0x8e, 0x3d, 0xdd, 0x35, 0x1c, 0xdf, 0x76, 0x17, 0xa9, 0x0c, 0x4d, 0x30, 0x8d, 0x45, 0xa1, 0x31, 0x5f, 0x83, 0xc9, 0x0b, 0x86, 0x89, 0x97, 0x03, 0xc5, 0x4d, 0xec, 0xa3, 0x73, 0x90, 0xd8, 0x35, 0x4c, 0x9c, 0x97, 0xe6, 0xe2, 0x0b, 0x99, 0x13, 0x8f, 0x2e, 0xf6, 0x80, 0x16, 0xbb, 0x11, 0x1b, 0x44, 0xac, 0x50, 0xc4, 0xfc, 0x5b, 0x09, 0x98, 0x1a, 0xd0, 0x8a, 0x10, 0x24, 0x2c, 0xad, 0x49, 0x18, 0xa5, 0x85, 0xb4, 0x42, 0x7f, 0xa3, 0x3c, 0x8c, 0x39, 0x9a, 0x7e, 0x4d, 0x6b, 0xe0, 0x7c, 0x8c, 0x8a, 0xc5, 0x23, 0x2a, 0x00, 0xd4, 0xb1, 0x83, 0xad, 0x3a, 0xb6, 0xf4, 0x76, 0x3e, 0x3e, 0x17, 0x5f, 0x48, 0x2b, 0x21, 0x09, 0x7a, 0x1a, 0x26, 0x9d, 0xd6, 0x8e, 0x69, 0xe8, 0x6a, 0x48, 0x0d, 0xe6, 0xe2, 0x0b, 0x49, 0x45, 0x66, 0x0d, 0xcb, 0x1d, 0xe5, 0x27, 0x60, 0xe2, 0x06, 0xd6, 0xae, 0x85, 0x55, 0x33, 0x54, 0x35, 0x47, 0xc4, 0x21, 0xc5, 0x25, 0xc8, 0x36, 0xb1, 0xe7, 0x69, 0x0d, 0xac, 0xfa, 0x6d, 0x07, 0xe7, 0x13, 0x74, 0xf4, 0x73, 0x7d, 0xa3, 0xef, 0x1d, 0x79, 0x86, 0xa3, 0xb6, 0xda, 0x0e, 0x46, 0x25, 0x48, 0x63, 0xab, 0xd5, 0x64, 0x0c, 0xc9, 0x03, 0xfc, 0x57, 0xb1, 0x5a, 0xcd, 0x5e, 0x96, 0x14, 0x81, 0x71, 0x8a, 0x31, 0x0f, 0xbb, 0xd7, 0x0d, 0x1d, 0xe7, 0x47, 0x29, 0xc1, 0x13, 0x7d, 0x04, 0x9b, 0xac, 0xbd, 0x97, 0x43, 0xe0, 0xd0, 0x12, 0xa4, 0xf1, 0x8b, 0x3e, 0xb6, 0x3c, 0xc3, 0xb6, 0xf2, 0x63, 0x94, 0xe4, 0xb1, 0x01, 0xb3, 0x88, 0xcd, 0x7a, 0x2f, 0x45, 0x07, 0x87, 0xce, 0xc0, 0x98, 0xed, 0xf8, 0x86, 0x6d, 0x79, 0xf9, 0xd4, 0x9c, 0xb4, 0x90, 0x39, 0xf1, 0x91, 0x81, 0x81, 0xb0, 0xce, 0x74, 0x14, 0xa1, 0x8c, 0xaa, 0x20, 0x7b, 0x76, 0xcb, 0xd5, 0xb1, 0xaa, 0xdb, 0x75, 0xac, 0x1a, 0xd6, 0xae, 0x9d, 0x4f, 0x53, 0x82, 0xd9, 0xfe, 0x81, 0x50, 0xc5, 0x25, 0xbb, 0x8e, 0xab, 0xd6, 0xae, 0xad, 0xe4, 0xbc, 0xae, 0x67, 0x74, 0x04, 0x46, 0xbd, 0xb6, 0xe5, 0x6b, 0x2f, 0xe6, 0xb3, 0x34, 0x42, 0xf8, 0xd3, 0xfc, 0xdf, 0x8f, 0xc2, 0xc4, 0x30, 0x21, 0x76, 0x1e, 0x92, 0xbb, 0x64, 0x94, 0xf9, 0xd8, 0x61, 0x7c, 0xc0, 0x30, 0xdd, 0x4e, 0x1c, 0xbd, 0x4f, 0x27, 0x96, 0x20, 0x63, 0x61, 0xcf, 0xc7, 0x75, 0x16, 0x11, 0xf1, 0x21, 0x63, 0x0a, 0x18, 0xa8, 0x3f, 0xa4, 0x12, 0xf7, 0x15, 0x52, 0x97, 0x61, 0x22, 0x30, 0x49, 0x75, 0x35, 0xab, 0x21, 0x62, 0xf3, 0x78, 0x94, 0x25, 0x8b, 0x15, 0x81, 0x53, 0x08, 0x4c, 0xc9, 0xe1, 0xae, 0x67, 0xb4, 0x0c, 0x60, 0x5b, 0xd8, 0xde, 0x55, 0xeb, 0x58, 0x37, 0xf3, 0xa9, 0x03, 0xbc, 0xb4, 0x4e, 0x54, 0xfa, 0xbc, 0x64, 0x33, 0xa9, 0x6e, 0xa2, 0x67, 0x3b, 0xa1, 0x36, 0x76, 0x40, 0xa4, 0xd4, 0xd8, 0x22, 0xeb, 0x8b, 0xb6, 0x6d, 0xc8, 0xb9, 0x98, 0xc4, 0x3d, 0xae, 0xf3, 0x91, 0xa5, 0xa9, 0x11, 0x8b, 0x91, 0x23, 0x53, 0x38, 0x8c, 0x0d, 0x6c, 0xdc, 0x0d, 0x3f, 0xa2, 0x63, 0x10, 0x08, 0x54, 0x1a, 0x56, 0x40, 0x77, 0xa1, 0xac, 0x10, 0xae, 0x69, 0x4d, 0x3c, 0x73, 0x13, 0x72, 0xdd, 0xee, 0x41, 0xd3, 0x90, 0xf4, 0x7c, 0xcd, 0xf5, 0x69, 0x14, 0x26, 0x15, 0xf6, 0x80, 0x64, 0x88, 0x63, 0xab, 0x4e, 0x77, 0xb9, 0xa4, 0x42, 0x7e, 0xa2, 0x9f, 0xeb, 0x0c, 0x38, 0x4e, 0x07, 0xfc, 0x78, 0xff, 0x8c, 0x76, 0x31, 0xf7, 0x8e, 0x7b, 0xe6, 0x2c, 0x8c, 0x77, 0x0d, 0x60, 0xd8, 0xae, 0xe7, 0x7f, 0x09, 0x1e, 0x18, 0x48, 0x8d, 0x2e, 0xc3, 0x74, 0xcb, 0x32, 0x2c, 0x1f, 0xbb, 0x8e, 0x8b, 0x49, 0xc4, 0xb2, 0xae, 0xf2, 0xff, 0x3e, 0x76, 0x40, 0xcc, 0x6d, 0x87, 0xb5, 0x19, 0x8b, 0x32, 0xd5, 0xea, 0x17, 0x3e, 0x95, 0x4e, 0xbd, 0x3d, 0x26, 0xdf, 0xba, 0x75, 0xeb, 0x56, 0x6c, 0xfe, 0x0b, 0xa3, 0x30, 0x3d, 0x68, 0xcd, 0x0c, 0x5c, 0xbe, 0x47, 0x60, 0xd4, 0x6a, 0x35, 0x77, 0xb0, 0x4b, 0x9d, 0x94, 0x54, 0xf8, 0x13, 0x2a, 0x41, 0xd2, 0xd4, 0x76, 0xb0, 0x99, 0x4f, 0xcc, 0x49, 0x0b, 0xb9, 0x13, 0x4f, 0x0f, 0xb5, 0x2a, 0x17, 0x57, 0x09, 0x44, 0x61, 0x48, 0xf4, 0x1c, 0x24, 0xf8, 0x16, 0x4d, 0x18, 0x9e, 0x1a, 0x8e, 0x81, 0xac, 0x25, 0x85, 0xe2, 0xd0, 0xc3, 0x90, 0x26, 0x7f, 0x59, 0x6c, 0x8c, 0x52, 0x9b, 0x53, 0x44, 0x40, 0xe2, 0x02, 0xcd, 0x40, 0x8a, 0x2e, 0x93, 0x3a, 0x16, 0xa9, 0x2d, 0x78, 0x26, 0x81, 0x55, 0xc7, 0xbb, 0x5a, 0xcb, 0xf4, 0xd5, 0xeb, 0x9a, 0xd9, 0xc2, 0x34, 0xe0, 0xd3, 0x4a, 0x96, 0x0b, 0x3f, 0x4d, 0x64, 0x68, 0x16, 0x32, 0x6c, 0x55, 0x19, 0x56, 0x1d, 0xbf, 0x48, 0x77, 0xcf, 0xa4, 0xc2, 0x16, 0x5a, 0x95, 0x48, 0x48, 0xf7, 0x57, 0x3d, 0xdb, 0x12, 0xa1, 0x49, 0xbb, 0x20, 0x02, 0xda, 0xfd, 0xd9, 0xde, 0x8d, 0xfb, 0x91, 0xc1, 0xc3, 0xeb, 0x8d, 0xa9, 0xf9, 0xef, 0xc4, 0x20, 0x41, 0xf7, 0x8b, 0x09, 0xc8, 0x6c, 0x5d, 0xd9, 0xa8, 0xa8, 0xcb, 0xeb, 0xdb, 0xe5, 0xd5, 0x8a, 0x2c, 0xa1, 0x1c, 0x00, 0x15, 0x5c, 0x58, 0x5d, 0x2f, 0x6d, 0xc9, 0xb1, 0xe0, 0xb9, 0xba, 0xb6, 0x75, 0xe6, 0x94, 0x1c, 0x0f, 0x00, 0xdb, 0x4c, 0x90, 0x08, 0x2b, 0x9c, 0x3c, 0x21, 0x27, 0x91, 0x0c, 0x59, 0x46, 0x50, 0xbd, 0x5c, 0x59, 0x3e, 0x73, 0x4a, 0x1e, 0xed, 0x96, 0x9c, 0x3c, 0x21, 0x8f, 0xa1, 0x71, 0x48, 0x53, 0x49, 0x79, 0x7d, 0x7d, 0x55, 0x4e, 0x05, 0x9c, 0x9b, 0x5b, 0x4a, 0x75, 0x6d, 0x45, 0x4e, 0x07, 0x9c, 0x2b, 0xca, 0xfa, 0xf6, 0x86, 0x0c, 0x01, 0x43, 0xad, 0xb2, 0xb9, 0x59, 0x5a, 0xa9, 0xc8, 0x99, 0x40, 0xa3, 0x7c, 0x65, 0xab, 0xb2, 0x29, 0x67, 0xbb, 0xcc, 0x3a, 0x79, 0x42, 0x1e, 0x0f, 0xba, 0xa8, 0xac, 0x6d, 0xd7, 0xe4, 0x1c, 0x9a, 0x84, 0x71, 0xd6, 0x85, 0x30, 0x62, 0xa2, 0x47, 0x74, 0xe6, 0x94, 0x2c, 0x77, 0x0c, 0x61, 0x2c, 0x93, 0x5d, 0x82, 0x33, 0xa7, 0x64, 0x34, 0xbf, 0x04, 0x49, 0x1a, 0x5d, 0x08, 0x41, 0x6e, 0xb5, 0x54, 0xae, 0xac, 0xaa, 0xeb, 0x1b, 0x5b, 0xd5, 0xf5, 0xb5, 0xd2, 0xaa, 0x2c, 0x75, 0x64, 0x4a, 0xe5, 0x53, 0xdb, 0x55, 0xa5, 0xb2, 0x2c, 0xc7, 0xc2, 0xb2, 0x8d, 0x4a, 0x69, 0xab, 0xb2, 0x2c, 0xc7, 0xe7, 0x75, 0x98, 0x1e, 0xb4, 0x4f, 0x0e, 0x5c, 0x19, 0xa1, 0x29, 0x8e, 0x1d, 0x30, 0xc5, 0x94, 0xab, 0x6f, 0x8a, 0xbf, 0x2c, 0xc1, 0xd4, 0x80, 0x5c, 0x31, 0xb0, 0x93, 0xe7, 0x21, 0xc9, 0x42, 0x94, 0x65, 0xcf, 0x27, 0x07, 0x26, 0x1d, 0x1a, 0xb0, 0x7d, 0x19, 0x94, 0xe2, 0xc2, 0x15, 0x44, 0xfc, 0x80, 0x0a, 0x82, 0x50, 0xf4, 0x19, 0xf9, 0x92, 0x04, 0xf9, 0x83, 0xb8, 0x23, 0x36, 0x8a, 0x58, 0xd7, 0x46, 0x71, 0xbe, 0xd7, 0x80, 0xa3, 0x07, 0x8f, 0xa1, 0xcf, 0x8a, 0xd7, 0x24, 0x38, 0x32, 0xb8, 0xd0, 0x1a, 0x68, 0xc3, 0x73, 0x30, 0xda, 0xc4, 0xfe, 0x9e, 0x2d, 0x8a, 0x8d, 0xc7, 0x07, 0xa4, 0x30, 0xd2, 0xdc, 0xeb, 0x2b, 0x8e, 0x0a, 0xe7, 0xc0, 0xf8, 0x41, 0xd5, 0x12, 0xb3, 0xa6, 0xcf, 0xd2, 0xcf, 0xc7, 0xe0, 0x81, 0x81, 0xe4, 0x03, 0x0d, 0x7d, 0x04, 0xc0, 0xb0, 0x9c, 0x96, 0xcf, 0x0a, 0x0a, 0xb6, 0x3f, 0xa5, 0xa9, 0x84, 0xae, 0x7d, 0xb2, 0xf7, 0xb4, 0xfc, 0xa0, 0x3d, 0x4e, 0xdb, 0x81, 0x89, 0xa8, 0xc2, 0xb9, 0x8e, 0xa1, 0x09, 0x6a, 0x68, 0xe1, 0x80, 0x91, 0xf6, 0xe5, 0xea, 0x67, 0x40, 0xd6, 0x4d, 0x03, 0x5b, 0xbe, 0xea, 0xf9, 0x2e, 0xd6, 0x9a, 0x86, 0xd5, 0xa0, 0x1b, 0x70, 0xaa, 0x98, 0xdc, 0xd5, 0x4c, 0x0f, 0x2b, 0x13, 0xac, 0x79, 0x53, 0xb4, 0x12, 0x04, 0xcd, 0x71, 0x6e, 0x08, 0x31, 0xda, 0x85, 0x60, 0xcd, 0x01, 0x62, 0xfe, 0x9b, 0x29, 0xc8, 0x84, 0xca, 0x52, 0x74, 0x14, 0xb2, 0x57, 0xb5, 0xeb, 0x9a, 0x2a, 0x8e, 0x1a, 0xcc, 0x13, 0x19, 0x22, 0xdb, 0xe0, 0xc7, 0x8d, 0x67, 0x60, 0x9a, 0xaa, 0xd8, 0x2d, 0x1f, 0xbb, 0xaa, 0x6e, 0x6a, 0x9e, 0x47, 0x9d, 0x96, 0xa2, 0xaa, 0x88, 0xb4, 0xad, 0x93, 0xa6, 0x25, 0xd1, 0x82, 0x4e, 0xc3, 0x14, 0x45, 0x34, 0x5b, 0xa6, 0x6f, 0x38, 0x26, 0x56, 0xc9, 0xe1, 0xc7, 0xa3, 0x1b, 0x71, 0x60, 0xd9, 0x24, 0xd1, 0xa8, 0x71, 0x05, 0x62, 0x91, 0x87, 0x96, 0xe1, 0x11, 0x0a, 0x6b, 0x60, 0x0b, 0xbb, 0x9a, 0x8f, 0x55, 0xfc, 0x99, 0x96, 0x66, 0x7a, 0xaa, 0x66, 0xd5, 0xd5, 0x3d, 0xcd, 0xdb, 0xcb, 0x4f, 0x13, 0x82, 0x72, 0x2c, 0x2f, 0x29, 0x0f, 0x11, 0xc5, 0x15, 0xae, 0x57, 0xa1, 0x6a, 0x25, 0xab, 0xfe, 0x49, 0xcd, 0xdb, 0x43, 0x45, 0x38, 0x42, 0x59, 0x3c, 0xdf, 0x35, 0xac, 0x86, 0xaa, 0xef, 0x61, 0xfd, 0x9a, 0xda, 0xf2, 0x77, 0xcf, 0xe5, 0x1f, 0x0e, 0xf7, 0x4f, 0x2d, 0xdc, 0xa4, 0x3a, 0x4b, 0x44, 0x65, 0xdb, 0xdf, 0x3d, 0x87, 0x36, 0x21, 0x4b, 0x26, 0xa3, 0x69, 0xdc, 0xc4, 0xea, 0xae, 0xed, 0xd2, 0xcc, 0x92, 0x1b, 0xb0, 0xb2, 0x43, 0x1e, 0x5c, 0x5c, 0xe7, 0x80, 0x9a, 0x5d, 0xc7, 0xc5, 0xe4, 0xe6, 0x46, 0xa5, 0xb2, 0xac, 0x64, 0x04, 0xcb, 0x05, 0xdb, 0x25, 0x01, 0xd5, 0xb0, 0x03, 0x07, 0x67, 0x58, 0x40, 0x35, 0x6c, 0xe1, 0xde, 0xd3, 0x30, 0xa5, 0xeb, 0x6c, 0xcc, 0x86, 0xae, 0xf2, 0x23, 0x8a, 0x97, 0x97, 0xbb, 0x9c, 0xa5, 0xeb, 0x2b, 0x4c, 0x81, 0xc7, 0xb8, 0x87, 0x9e, 0x85, 0x07, 0x3a, 0xce, 0x0a, 0x03, 0x27, 0xfb, 0x46, 0xd9, 0x0b, 0x3d, 0x0d, 0x53, 0x4e, 0xbb, 0x1f, 0x88, 0xba, 0x7a, 0x74, 0xda, 0xbd, 0xb0, 0xb3, 0x30, 0xed, 0xec, 0x39, 0xfd, 0xb8, 0xa9, 0x30, 0x0e, 0x39, 0x7b, 0x4e, 0x2f, 0xf0, 0x31, 0x7a, 0x5e, 0x75, 0xb1, 0xae, 0xf9, 0xb8, 0x9e, 0x7f, 0x30, 0xac, 0x1e, 0x6a, 0x40, 0xc7, 0x41, 0xd6, 0x75, 0x15, 0x5b, 0xda, 0x8e, 0x89, 0x55, 0xcd, 0xc5, 0x96, 0xe6, 0xe5, 0x67, 0xc3, 0xca, 0x39, 0x5d, 0xaf, 0xd0, 0xd6, 0x12, 0x6d, 0x44, 0x4f, 0xc1, 0xa4, 0xbd, 0x73, 0x55, 0x67, 0x21, 0xa9, 0x3a, 0x2e, 0xde, 0x35, 0x5e, 0xcc, 0x3f, 0x4a, 0xfd, 0x3b, 0x41, 0x1a, 0x68, 0x40, 0x6e, 0x50, 0x31, 0x7a, 0x12, 0x64, 0xdd, 0xdb, 0xd3, 0x5c, 0x87, 0xd6, 0x04, 0x9e, 0xa3, 0xe9, 0x38, 0xff, 0x18, 0x53, 0x65, 0xf2, 0x35, 0x21, 0x26, 0x4b, 0xc2, 0xbb, 0x61, 0xec, 0xfa, 0x82, 0xf1, 0x09, 0xb6, 0x24, 0xa8, 0x8c, 0xb3, 0x2d, 0x80, 0x4c, 0x5c, 0xd1, 0xd5, 0xf1, 0x02, 0x55, 0xcb, 0x39, 0x7b, 0x4e, 0xb8, 0xdf, 0x63, 0x30, 0x4e, 0x34, 0x3b, 0x9d, 0x3e, 0xc9, 0xea, 0x19, 0x67, 0x2f, 0xd4, 0xe3, 0x07, 0x56, 0x5a, 0xce, 0x17, 0x21, 0x1b, 0x8e, 0x4f, 0x94, 0x06, 0x16, 0xa1, 0xb2, 0x44, 0x72, 0xfd, 0xd2, 0xfa, 0x32, 0xc9, 0xd2, 0x2f, 0x54, 0xe4, 0x18, 0xa9, 0x16, 0x56, 0xab, 0x5b, 0x15, 0x55, 0xd9, 0x5e, 0xdb, 0xaa, 0xd6, 0x2a, 0x72, 0x3c, 0x5c, 0x96, 0x7e, 0x3f, 0x06, 0xb9, 0xee, 0x13, 0x06, 0xfa, 0x38, 0x3c, 0x28, 0xae, 0x03, 0x3c, 0xec, 0xab, 0x37, 0x0c, 0x97, 0x2e, 0x99, 0xa6, 0xc6, 0x2a, 0xec, 0x60, 0xd2, 0xa6, 0xb9, 0xd6, 0x26, 0xf6, 0x2f, 0x19, 0x2e, 0x59, 0x10, 0x4d, 0xcd, 0x47, 0xab, 0x30, 0x6b, 0xd9, 0xaa, 0xe7, 0x6b, 0x56, 0x5d, 0x73, 0xeb, 0x6a, 0xe7, 0x22, 0x46, 0xd5, 0x74, 0x1d, 0x7b, 0x9e, 0xcd, 0x52, 0x55, 0xc0, 0xf2, 0x11, 0xcb, 0xde, 0xe4, 0xca, 0x9d, 0x3d, 0xbc, 0xc4, 0x55, 0x7b, 0x02, 0x2c, 0x7e, 0x50, 0x80, 0x3d, 0x0c, 0xe9, 0xa6, 0xe6, 0xa8, 0xd8, 0xf2, 0xdd, 0x36, 0xad, 0x2b, 0x53, 0x4a, 0xaa, 0xa9, 0x39, 0x15, 0xf2, 0xfc, 0xe1, 0x94, 0xf7, 0xff, 0x1a, 0x87, 0x6c, 0xb8, 0xb6, 0x24, 0xa5, 0xba, 0x4e, 0xf3, 0x88, 0x44, 0x77, 0x9a, 0x63, 0xf7, 0xac, 0x44, 0x17, 0x97, 0x48, 0x82, 0x29, 0x8e, 0xb2, 0x8a, 0x4f, 0x61, 0x48, 0x92, 0xdc, 0xc9, 0xde, 0x82, 0xd9, 0x29, 0x26, 0xa5, 0xf0, 0x27, 0xb4, 0x02, 0xa3, 0x57, 0x3d, 0xca, 0x3d, 0x4a, 0xb9, 0x1f, 0xbd, 0x37, 0xf7, 0xc5, 0x4d, 0x4a, 0x9e, 0xbe, 0xb8, 0xa9, 0xae, 0xad, 0x2b, 0xb5, 0xd2, 0xaa, 0xc2, 0xe1, 0xe8, 0x21, 0x48, 0x98, 0xda, 0xcd, 0x76, 0x77, 0x2a, 0xa2, 0xa2, 0x61, 0x1d, 0xff, 0x10, 0x24, 0x6e, 0x60, 0xed, 0x5a, 0x77, 0x02, 0xa0, 0xa2, 0x0f, 0x30, 0xf4, 0x8f, 0x43, 0x92, 0xfa, 0x0b, 0x01, 0x70, 0x8f, 0xc9, 0x23, 0x28, 0x05, 0x89, 0xa5, 0x75, 0x85, 0x84, 0xbf, 0x0c, 0x59, 0x26, 0x55, 0x37, 0xaa, 0x95, 0xa5, 0x8a, 0x1c, 0x9b, 0x3f, 0x0d, 0xa3, 0xcc, 0x09, 0x64, 0x69, 0x04, 0x6e, 0x90, 0x47, 0xf8, 0x23, 0xe7, 0x90, 0x44, 0xeb, 0x76, 0xad, 0x5c, 0x51, 0xe4, 0x58, 0x78, 0x7a, 0x3d, 0xc8, 0x86, 0xcb, 0xca, 0x0f, 0x27, 0xa6, 0xfe, 0x41, 0x82, 0x4c, 0xa8, 0x4c, 0x24, 0x05, 0x8a, 0x66, 0x9a, 0xf6, 0x0d, 0x55, 0x33, 0x0d, 0xcd, 0xe3, 0x41, 0x01, 0x54, 0x54, 0x22, 0x92, 0x61, 0x27, 0xed, 0x43, 0x31, 0xfe, 0x55, 0x09, 0xe4, 0xde, 0x12, 0xb3, 0xc7, 0x40, 0xe9, 0x67, 0x6a, 0xe0, 0x2b, 0x12, 0xe4, 0xba, 0xeb, 0xca, 0x1e, 0xf3, 0x8e, 0xfe, 0x4c, 0xcd, 0x7b, 0x33, 0x06, 0xe3, 0x5d, 0xd5, 0xe4, 0xb0, 0xd6, 0x7d, 0x06, 0x26, 0x8d, 0x3a, 0x6e, 0x3a, 0xb6, 0x8f, 0x2d, 0xbd, 0xad, 0x9a, 0xf8, 0x3a, 0x36, 0xf3, 0xf3, 0x74, 0xa3, 0x38, 0x7e, 0xef, 0x7a, 0x75, 0xb1, 0xda, 0xc1, 0xad, 0x12, 0x58, 0x71, 0xaa, 0xba, 0x5c, 0xa9, 0x6d, 0xac, 0x6f, 0x55, 0xd6, 0x96, 0xae, 0xa8, 0xdb, 0x6b, 0x3f, 0xbf, 0xb6, 0x7e, 0x69, 0x4d, 0x91, 0x8d, 0x1e, 0xb5, 0x0f, 0x70, 0xa9, 0x6f, 0x80, 0xdc, 0x6b, 0x14, 0x7a, 0x10, 0x06, 0x99, 0x25, 0x8f, 0xa0, 0x29, 0x98, 0x58, 0x5b, 0x57, 0x37, 0xab, 0xcb, 0x15, 0xb5, 0x72, 0xe1, 0x42, 0x65, 0x69, 0x6b, 0x93, 0x1d, 0xe0, 0x03, 0xed, 0xad, 0xee, 0x45, 0xfd, 0x72, 0x1c, 0xa6, 0x06, 0x58, 0x82, 0x4a, 0xfc, 0xec, 0xc0, 0x8e, 0x33, 0x1f, 0x1b, 0xc6, 0xfa, 0x45, 0x92, 0xf2, 0x37, 0x34, 0xd7, 0xe7, 0x47, 0x8d, 0x27, 0x81, 0x78, 0xc9, 0xf2, 0x8d, 0x5d, 0x03, 0xbb, 0xfc, 0xbe, 0x83, 0x1d, 0x28, 0x26, 0x3a, 0x72, 0x76, 0xe5, 0xf1, 0x51, 0x40, 0x8e, 0xed, 0x19, 0xbe, 0x71, 0x1d, 0xab, 0x86, 0x25, 0x2e, 0x47, 0xc8, 0x01, 0x23, 0xa1, 0xc8, 0xa2, 0xa5, 0x6a, 0xf9, 0x81, 0xb6, 0x85, 0x1b, 0x5a, 0x8f, 0x36, 0xd9, 0xc0, 0xe3, 0x8a, 0x2c, 0x5a, 0x02, 0xed, 0xa3, 0x90, 0xad, 0xdb, 0x2d, 0x52, 0x75, 0x31, 0x3d, 0x92, 0x2f, 0x24, 0x25, 0xc3, 0x64, 0x81, 0x0a, 0xaf, 0xa7, 0x3b, 0xb7, 0x32, 0x59, 0x25, 0xc3, 0x64, 0x4c, 0xe5, 0x09, 0x98, 0xd0, 0x1a, 0x0d, 0x97, 0x90, 0x0b, 0x22, 0x76, 0x42, 0xc8, 0x05, 0x62, 0xaa, 0x38, 0x73, 0x11, 0x52, 0xc2, 0x0f, 0x24, 0x25, 0x13, 0x4f, 0xa8, 0x0e, 0xbb, 0x99, 0x8b, 0x2d, 0xa4, 0x95, 0x94, 0x25, 0x1a, 0x8f, 0x42, 0xd6, 0xf0, 0xd4, 0xce, 0x25, 0x73, 0x6c, 0x2e, 0xb6, 0x90, 0x52, 0x32, 0x86, 0x17, 0x5c, 0xd0, 0xcd, 0xbf, 0x16, 0x83, 0x5c, 0xf7, 0x25, 0x39, 0x5a, 0x86, 0x94, 0x69, 0xeb, 0x1a, 0x0d, 0x2d, 0xf6, 0x86, 0x66, 0x21, 0xe2, 0x5e, 0x7d, 0x71, 0x95, 0xeb, 0x2b, 0x01, 0x72, 0xe6, 0x9f, 0x25, 0x48, 0x09, 0x31, 0x3a, 0x02, 0x09, 0x47, 0xf3, 0xf7, 0x28, 0x5d, 0xb2, 0x1c, 0x93, 0x25, 0x85, 0x3e, 0x13, 0xb9, 0xe7, 0x68, 0x16, 0x0d, 0x01, 0x2e, 0x27, 0xcf, 0x64, 0x5e, 0x4d, 0xac, 0xd5, 0xe9, 0xf1, 0xc3, 0x6e, 0x36, 0xb1, 0xe5, 0x7b, 0x62, 0x5e, 0xb9, 0x7c, 0x89, 0x8b, 0xd1, 0xd3, 0x30, 0xe9, 0xbb, 0x9a, 0x61, 0x76, 0xe9, 0x26, 0xa8, 0xae, 0x2c, 0x1a, 0x02, 0xe5, 0x22, 0x3c, 0x24, 0x78, 0xeb, 0xd8, 0xd7, 0xf4, 0x3d, 0x5c, 0xef, 0x80, 0x46, 0xe9, 0x0d, 0xec, 0x83, 0x5c, 0x61, 0x99, 0xb7, 0x0b, 0xec, 0xfc, 0x0f, 0x25, 0x98, 0x14, 0x07, 0xa6, 0x7a, 0xe0, 0xac, 0x1a, 0x80, 0x66, 0x59, 0xb6, 0x1f, 0x76, 0x57, 0x7f, 0x28, 0xf7, 0xe1, 0x16, 0x4b, 0x01, 0x48, 0x09, 0x11, 0xcc, 0x34, 0x01, 0x3a, 0x2d, 0x07, 0xba, 0x6d, 0x16, 0x32, 0xfc, 0x0d, 0x08, 0x7d, 0x8d, 0xc6, 0x8e, 0xd8, 0xc0, 0x44, 0xe4, 0x64, 0x85, 0xa6, 0x21, 0xb9, 0x83, 0x1b, 0x86, 0xc5, 0xef, 0x35, 0xd9, 0x83, 0xb8, 0xab, 0x4d, 0x04, 0x77, 0xb5, 0xe5, 0xcb, 0x30, 0xa5, 0xdb, 0xcd, 0x5e, 0x73, 0xcb, 0x72, 0xcf, 0x31, 0xdf, 0xfb, 0xa4, 0xf4, 0x02, 0x74, 0x4a, 0xcc, 0x2f, 0xc7, 0xe2, 0x2b, 0x1b, 0xe5, 0xaf, 0xc6, 0x66, 0x56, 0x18, 0x6e, 0x43, 0x0c, 0x53, 0xc1, 0xbb, 0x26, 0xd6, 0x89, 0xe9, 0xf0, 0xe3, 0xc7, 0xe1, 0x63, 0x0d, 0xc3, 0xdf, 0x6b, 0xed, 0x2c, 0xea, 0x76, 0xf3, 0x78, 0xc3, 0x6e, 0xd8, 0x9d, 0xd7, 0x86, 0xe4, 0x89, 0x3e, 0xd0, 0x5f, 0xfc, 0xd5, 0x61, 0x3a, 0x90, 0xce, 0x44, 0xbe, 0x67, 0x2c, 0xae, 0xc1, 0x14, 0x57, 0x56, 0xe9, 0xbb, 0x0b, 0x76, 0x84, 0x40, 0xf7, 0xbc, 0xff, 0xc9, 0x7f, 0xe3, 0x2d, 0x9a, 0xab, 0x95, 0x49, 0x0e, 0x25, 0x6d, 0xec, 0x94, 0x51, 0x54, 0xe0, 0x81, 0x2e, 0x3e, 0xb6, 0x2e, 0xb1, 0x1b, 0xc1, 0xf8, 0x7d, 0xce, 0x38, 0x15, 0x62, 0xdc, 0xe4, 0xd0, 0xe2, 0x12, 0x8c, 0x1f, 0x86, 0xeb, 0x1f, 0x39, 0x57, 0x16, 0x87, 0x49, 0x56, 0x60, 0x82, 0x92, 0xe8, 0x2d, 0xcf, 0xb7, 0x9b, 0x74, 0xd3, 0xbb, 0x37, 0xcd, 0x3f, 0xbd, 0xc5, 0x16, 0x4a, 0x8e, 0xc0, 0x96, 0x02, 0x54, 0xb1, 0x08, 0xf4, 0x75, 0x4d, 0x1d, 0xeb, 0x66, 0x04, 0xc3, 0xeb, 0xdc, 0x90, 0x40, 0xbf, 0xf8, 0x69, 0x98, 0x26, 0xbf, 0xe9, 0x9e, 0x14, 0xb6, 0x24, 0xfa, 0xb6, 0x2b, 0xff, 0xc3, 0x97, 0xd8, 0x5a, 0x9c, 0x0a, 0x08, 0x42, 0x36, 0x85, 0x66, 0xb1, 0x81, 0x7d, 0x1f, 0xbb, 0x9e, 0xaa, 0x99, 0x83, 0xcc, 0x0b, 0x5d, 0x17, 0xe4, 0xbf, 0xf8, 0x4e, 0xf7, 0x2c, 0xae, 0x30, 0x64, 0xc9, 0x34, 0x8b, 0xdb, 0xf0, 0xe0, 0x80, 0xa8, 0x18, 0x82, 0xf3, 0x65, 0xce, 0x39, 0xdd, 0x17, 0x19, 0x84, 0x76, 0x03, 0x84, 0x3c, 0x98, 0xcb, 0x21, 0x38, 0xff, 0x88, 0x73, 0x22, 0x8e, 0x15, 0x53, 0x4a, 0x18, 0x2f, 0xc2, 0xe4, 0x75, 0xec, 0xee, 0xd8, 0x1e, 0xbf, 0xa2, 0x19, 0x82, 0xee, 0x15, 0x4e, 0x37, 0xc1, 0x81, 0xf4, 0xce, 0x86, 0x70, 0x3d, 0x0b, 0xa9, 0x5d, 0x4d, 0xc7, 0x43, 0x50, 0x7c, 0x89, 0x53, 0x8c, 0x11, 0x7d, 0x02, 0x2d, 0x41, 0xb6, 0x61, 0xf3, 0xb4, 0x14, 0x0d, 0x7f, 0x95, 0xc3, 0x33, 0x02, 0xc3, 0x29, 0x1c, 0xdb, 0x69, 0x99, 0x24, 0x67, 0x45, 0x53, 0xfc, 0xb1, 0xa0, 0x10, 0x18, 0x4e, 0x71, 0x08, 0xb7, 0xfe, 0x89, 0xa0, 0xf0, 0x42, 0xfe, 0x7c, 0x1e, 0x32, 0xb6, 0x65, 0xb6, 0x6d, 0x6b, 0x18, 0x23, 0xfe, 0x94, 0x33, 0x00, 0x87, 0x10, 0x82, 0xf3, 0x90, 0x1e, 0x76, 0x22, 0xfe, 0xec, 0x1d, 0xb1, 0x3c, 0xc4, 0x0c, 0xac, 0xc0, 0x84, 0xd8, 0xa0, 0x0c, 0xdb, 0x1a, 0x82, 0xe2, 0xcf, 0x39, 0x45, 0x2e, 0x04, 0xe3, 0xc3, 0xf0, 0xb1, 0xe7, 0x37, 0xf0, 0x30, 0x24, 0xaf, 0x89, 0x61, 0x70, 0x08, 0x77, 0xe5, 0x0e, 0xb6, 0xf4, 0xbd, 0xe1, 0x18, 0xbe, 0x22, 0x5c, 0x29, 0x30, 0x84, 0x62, 0x09, 0xc6, 0x9b, 0x9a, 0xeb, 0xed, 0x69, 0xe6, 0x50, 0xd3, 0xf1, 0x17, 0x9c, 0x23, 0x1b, 0x80, 0xb8, 0x47, 0x5a, 0xd6, 0x61, 0x68, 0xbe, 0x2a, 0x3c, 0x12, 0x82, 0xf1, 0xa5, 0xe7, 0xf9, 0xf4, 0x3e, 0xeb, 0x30, 0x6c, 0x5f, 0x13, 0x4b, 0x8f, 0x61, 0x6b, 0x61, 0xc6, 0xf3, 0x90, 0xf6, 0x8c, 0x9b, 0x43, 0xd1, 0xfc, 0xa5, 0x98, 0x69, 0x0a, 0x20, 0xe0, 0x2b, 0xf0, 0xd0, 0xc0, 0x34, 0x31, 0x04, 0xd9, 0x5f, 0x71, 0xb2, 0x23, 0x03, 0x52, 0x05, 0xdf, 0x12, 0x0e, 0x4b, 0xf9, 0xd7, 0x62, 0x4b, 0xc0, 0x3d, 0x5c, 0x1b, 0xe4, 0xa0, 0xe0, 0x69, 0xbb, 0x87, 0xf3, 0xda, 0xdf, 0x08, 0xaf, 0x31, 0x6c, 0x97, 0xd7, 0xb6, 0xe0, 0x08, 0x67, 0x3c, 0xdc, 0xbc, 0x7e, 0x5d, 0x6c, 0xac, 0x0c, 0xbd, 0xdd, 0x3d, 0xbb, 0xbf, 0x00, 0x33, 0x81, 0x3b, 0x45, 0x45, 0xea, 0xa9, 0x4d, 0xcd, 0x19, 0x82, 0xf9, 0x1b, 0x9c, 0x59, 0xec, 0xf8, 0x41, 0x49, 0xeb, 0xd5, 0x34, 0x87, 0x90, 0x5f, 0x86, 0xbc, 0x20, 0x6f, 0x59, 0x2e, 0xd6, 0xed, 0x86, 0x65, 0xdc, 0xc4, 0xf5, 0x21, 0xa8, 0xff, 0xb6, 0x67, 0xaa, 0xb6, 0x43, 0x70, 0xc2, 0x5c, 0x05, 0x39, 0xa8, 0x55, 0x54, 0xa3, 0xe9, 0xd8, 0xae, 0x1f, 0xc1, 0xf8, 0x4d, 0x31, 0x53, 0x01, 0xae, 0x4a, 0x61, 0xc5, 0x0a, 0xe4, 0xe8, 0xe3, 0xb0, 0x21, 0xf9, 0x2d, 0x4e, 0x34, 0xde, 0x41, 0xf1, 0x8d, 0x43, 0xb7, 0x9b, 0x8e, 0xe6, 0x0e, 0xb3, 0xff, 0x7d, 0x5b, 0x6c, 0x1c, 0x1c, 0xc2, 0x37, 0x0e, 0xbf, 0xed, 0x60, 0x92, 0xed, 0x87, 0x60, 0xf8, 0x8e, 0xd8, 0x38, 0x04, 0x86, 0x53, 0x88, 0x82, 0x61, 0x08, 0x8a, 0xbf, 0x13, 0x14, 0x02, 0x43, 0x28, 0x3e, 0xd5, 0x49, 0xb4, 0x2e, 0x6e, 0x18, 0x9e, 0xef, 0xb2, 0x3a, 0xf8, 0xde, 0x54, 0xdf, 0x7d, 0xa7, 0xbb, 0x08, 0x53, 0x42, 0xd0, 0xe2, 0x45, 0x98, 0xe8, 0x29, 0x31, 0x50, 0xd4, 0xb7, 0x1f, 0xf9, 0x5f, 0x7e, 0x8f, 0x6f, 0x46, 0xdd, 0x15, 0x46, 0x71, 0x95, 0xcc, 0x7b, 0x77, 0x1d, 0x10, 0x4d, 0xf6, 0xd2, 0x7b, 0xc1, 0xd4, 0x77, 0x95, 0x01, 0xc5, 0x0b, 0x30, 0xde, 0x55, 0x03, 0x44, 0x53, 0xfd, 0x0a, 0xa7, 0xca, 0x86, 0x4b, 0x80, 0xe2, 0x69, 0x48, 0x90, 0x7c, 0x1e, 0x0d, 0xff, 0x55, 0x0e, 0xa7, 0xea, 0xc5, 0x4f, 0x40, 0x4a, 0xe4, 0xf1, 0x68, 0xe8, 0xaf, 0x71, 0x68, 0x00, 0x21, 0x70, 0x91, 0xc3, 0xa3, 0xe1, 0x9f, 0x13, 0x70, 0x01, 0x21, 0xf0, 0xe1, 0x5d, 0xf8, 0xbd, 0xdf, 0x48, 0xf0, 0x7d, 0x58, 0xf8, 0xee, 0x3c, 0x8c, 0xf1, 0xe4, 0x1d, 0x8d, 0xfe, 0x3c, 0xef, 0x5c, 0x20, 0x8a, 0x67, 0x21, 0x39, 0xa4, 0xc3, 0x7f, 0x93, 0x43, 0x99, 0x7e, 0x71, 0x09, 0x32, 0xa1, 0x84, 0x1d, 0x0d, 0xff, 0x2d, 0x0e, 0x0f, 0xa3, 0x88, 0xe9, 0x3c, 0x61, 0x47, 0x13, 0xfc, 0xb6, 0x30, 0x9d, 0x23, 0x88, 0xdb, 0x44, 0xae, 0x8e, 0x46, 0xff, 0x8e, 0xf0, 0xba, 0x80, 0x14, 0x9f, 0x87, 0x74, 0xb0, 0xff, 0x46, 0xe3, 0x7f, 0x97, 0xe3, 0x3b, 0x18, 0xe2, 0x81, 0xd0, 0xfe, 0x1f, 0x4d, 0xf1, 0x7b, 0xc2, 0x03, 0x21, 0x14, 0x59, 0x46, 0xbd, 0x39, 0x3d, 0x9a, 0xe9, 0xf7, 0xc5, 0x32, 0xea, 0x49, 0xe9, 0x64, 0x36, 0xe9, 0x36, 0x18, 0x4d, 0xf1, 0x07, 0x62, 0x36, 0xa9, 0x3e, 0x31, 0xa3, 0x37, 0x49, 0x46, 0x73, 0xfc, 0xa1, 0x30, 0xa3, 0x27, 0x47, 0x16, 0x37, 0x00, 0xf5, 0x27, 0xc8, 0x68, 0xbe, 0x2f, 0x70, 0xbe, 0xc9, 0xbe, 0xfc, 0x58, 0xbc, 0x04, 0x47, 0x06, 0x27, 0xc7, 0x68, 0xd6, 0x2f, 0xbe, 0xd7, 0x73, 0x9c, 0x09, 0xe7, 0xc6, 0xe2, 0x56, 0x67, 0x97, 0x0d, 0x27, 0xc6, 0x68, 0xda, 0x97, 0xdf, 0xeb, 0xde, 0x68, 0xc3, 0x79, 0xb1, 0x58, 0x02, 0xe8, 0xe4, 0xa4, 0x68, 0xae, 0x57, 0x38, 0x57, 0x08, 0x44, 0x96, 0x06, 0x4f, 0x49, 0xd1, 0xf8, 0x2f, 0x89, 0xa5, 0xc1, 0x11, 0x64, 0x69, 0x88, 0x6c, 0x14, 0x8d, 0x7e, 0x55, 0x2c, 0x0d, 0x01, 0x29, 0x9e, 0x87, 0x94, 0xd5, 0x32, 0x4d, 0x12, 0x5b, 0xe8, 0xde, 0x9f, 0x33, 0xe5, 0x7f, 0xf4, 0x3e, 0x07, 0x0b, 0x40, 0xf1, 0x34, 0x24, 0x71, 0x73, 0x07, 0xd7, 0xa3, 0x90, 0xff, 0xf1, 0xbe, 0xd8, 0x4f, 0x88, 0x76, 0xf1, 0x79, 0x00, 0x76, 0x98, 0xa6, 0x6f, 0x89, 0x22, 0xb0, 0xff, 0xf9, 0x3e, 0xff, 0x52, 0xa2, 0x03, 0xe9, 0x10, 0xb0, 0xef, 0x2e, 0xee, 0x4d, 0xf0, 0x4e, 0x37, 0x01, 0x3d, 0x80, 0x3f, 0x0b, 0x63, 0x57, 0x3d, 0xdb, 0xf2, 0xb5, 0x46, 0x14, 0xfa, 0xbf, 0x38, 0x5a, 0xe8, 0x13, 0x87, 0x35, 0x6d, 0x17, 0xfb, 0x5a, 0xc3, 0x8b, 0xc2, 0xfe, 0x37, 0xc7, 0x06, 0x00, 0x02, 0xd6, 0x35, 0xcf, 0x1f, 0x66, 0xdc, 0xff, 0x23, 0xc0, 0x02, 0x40, 0x8c, 0x26, 0xbf, 0xaf, 0xe1, 0x76, 0x14, 0xf6, 0x5d, 0x61, 0x34, 0xd7, 0x2f, 0x7e, 0x02, 0xd2, 0xe4, 0x27, 0xfb, 0x7a, 0x28, 0x02, 0xfc, 0xbf, 0x1c, 0xdc, 0x41, 0x90, 0x9e, 0x3d, 0xbf, 0xee, 0x1b, 0xd1, 0xce, 0xfe, 0x3f, 0x3e, 0xd3, 0x42, 0xbf, 0x58, 0x82, 0x8c, 0xe7, 0xd7, 0xeb, 0x2d, 0x5e, 0xd1, 0x44, 0xc0, 0x7f, 0xfc, 0x7e, 0x70, 0xc8, 0x0d, 0x30, 0xe5, 0xa3, 0x83, 0x2f, 0xeb, 0x60, 0xc5, 0x5e, 0xb1, 0xd9, 0x35, 0x1d, 0x7c, 0x6b, 0x02, 0x66, 0x75, 0xbb, 0xb9, 0x63, 0x7b, 0xc7, 0x83, 0x8d, 0xe4, 0xb8, 0x70, 0x1c, 0xbf, 0x67, 0x0b, 0x1c, 0x39, 0x73, 0xb8, 0x0b, 0xba, 0xf9, 0x1f, 0x8d, 0x43, 0x6a, 0x49, 0xf3, 0x7c, 0xed, 0x86, 0xd6, 0x46, 0x8f, 0x41, 0xaa, 0x6a, 0xf9, 0x27, 0x4f, 0x6c, 0xf8, 0x2e, 0x7d, 0xc1, 0x14, 0x2f, 0xa7, 0xef, 0xde, 0x9e, 0x4d, 0x1a, 0x44, 0xa6, 0x04, 0x4d, 0xe8, 0x18, 0x24, 0xe9, 0x6f, 0x7a, 0x47, 0x19, 0x2f, 0x8f, 0xbf, 0x7e, 0x7b, 0x76, 0xa4, 0xa3, 0xc7, 0xda, 0xd0, 0x15, 0xc8, 0xd4, 0xda, 0xdb, 0x86, 0xe5, 0x9f, 0x39, 0x45, 0xe8, 0xc8, 0xd0, 0x13, 0xe5, 0xb3, 0x77, 0x6f, 0xcf, 0x9e, 0x3c, 0xd0, 0x40, 0x92, 0x10, 0x3b, 0x03, 0x13, 0x68, 0xfa, 0xfd, 0x64, 0x98, 0x0b, 0x5d, 0x82, 0x94, 0x78, 0x64, 0x77, 0xfd, 0xe5, 0xf3, 0xdc, 0x84, 0xfb, 0xe2, 0x0e, 0xc8, 0xd0, 0x2f, 0x42, 0xb6, 0xd6, 0xbe, 0x60, 0xda, 0x1a, 0xf7, 0x41, 0x72, 0x4e, 0x5a, 0x88, 0x95, 0xcf, 0xdd, 0xbd, 0x3d, 0x7b, 0x6a, 0x68, 0x62, 0x0e, 0xa7, 0xcc, 0x5d, 0x6c, 0xe8, 0x05, 0x48, 0x07, 0xcf, 0xf4, 0x6d, 0x42, 0xac, 0xfc, 0x71, 0x6e, 0xf7, 0xfd, 0xd1, 0x77, 0xe8, 0x42, 0x96, 0x33, 0x77, 0x8f, 0xcd, 0x49, 0x0b, 0xd2, 0xfd, 0x58, 0xce, 0x7d, 0xd2, 0xc5, 0x16, 0xb2, 0xfc, 0xcc, 0x29, 0xfa, 0xfa, 0x42, 0xba, 0x5f, 0xcb, 0x39, 0x7d, 0x87, 0x0e, 0x5d, 0x84, 0xb1, 0x5a, 0xbb, 0xdc, 0xf6, 0xb1, 0x47, 0xbf, 0x2b, 0xca, 0x96, 0x9f, 0xb9, 0x7b, 0x7b, 0xf6, 0xa3, 0x43, 0xb2, 0x52, 0x9c, 0x22, 0x08, 0xd0, 0x1c, 0x64, 0xd6, 0x6c, 0xb7, 0xa9, 0x99, 0x8c, 0x0f, 0xd8, 0xeb, 0x98, 0x90, 0x08, 0x6d, 0x93, 0x91, 0xb0, 0xd9, 0xf6, 0xe8, 0x7f, 0x74, 0xfc, 0x14, 0x31, 0xd9, 0x61, 0x42, 0x06, 0x24, 0x6b, 0xed, 0x9a, 0xe6, 0xe4, 0xb3, 0xf4, 0x5d, 0xc1, 0x23, 0x8b, 0x01, 0x42, 0xac, 0xad, 0x45, 0xda, 0x4e, 0x3f, 0xaa, 0x28, 0x9f, 0xba, 0x7b, 0x7b, 0xf6, 0x99, 0xa1, 0x7b, 0xac, 0x69, 0x0e, 0xed, 0x8e, 0xf5, 0x80, 0xbe, 0x2d, 0x91, 0x85, 0xc5, 0xee, 0x5b, 0x49, 0x8f, 0xe3, 0xb4, 0xc7, 0x63, 0x03, 0x7b, 0x0c, 0xb4, 0x58, 0xbf, 0xd6, 0x67, 0xdf, 0x38, 0xc4, 0x48, 0xd9, 0x99, 0x86, 0x74, 0xfd, 0xeb, 0x6f, 0xdc, 0xf7, 0xa2, 0x0d, 0x2c, 0x40, 0x2f, 0x49, 0x30, 0x5e, 0x6b, 0xaf, 0xf1, 0xec, 0x4a, 0x2c, 0xcf, 0xf1, 0xef, 0xfe, 0x07, 0x59, 0x1e, 0xd2, 0x63, 0xb6, 0x9f, 0xf9, 0xec, 0x1b, 0xb3, 0x27, 0x86, 0x36, 0x82, 0x6e, 0x41, 0xd4, 0x86, 0xee, 0x3e, 0xd1, 0xe7, 0xa8, 0x15, 0x15, 0x92, 0xa9, 0xeb, 0xb8, 0x4e, 0xac, 0x98, 0xb8, 0x87, 0x15, 0x21, 0x3d, 0x66, 0x45, 0x91, 0x44, 0xfd, 0xfd, 0x5b, 0x12, 0xe2, 0x43, 0xeb, 0x30, 0xca, 0x3c, 0x4c, 0xbf, 0x69, 0x4b, 0x1f, 0x32, 0x0c, 0x3b, 0x93, 0xa3, 0x70, 0x9a, 0x99, 0x73, 0x00, 0x9d, 0x18, 0x43, 0x32, 0xc4, 0xaf, 0xe1, 0x36, 0xff, 0x70, 0x91, 0xfc, 0x44, 0xd3, 0x9d, 0x0f, 0x73, 0xa5, 0x85, 0x04, 0xff, 0xda, 0xb6, 0x18, 0x3b, 0x27, 0xcd, 0x3c, 0x07, 0x72, 0x6f, 0xac, 0x1c, 0x0a, 0xaf, 0x00, 0xea, 0x9f, 0xb1, 0x30, 0x43, 0x92, 0x31, 0x3c, 0x1e, 0x66, 0xc8, 0x9c, 0x90, 0x3b, 0x3e, 0xbf, 0x64, 0x98, 0x9e, 0x6d, 0xf5, 0x71, 0xf6, 0xfa, 0xff, 0xa7, 0xe3, 0x9c, 0x2f, 0xc0, 0x28, 0x13, 0x92, 0xb1, 0x54, 0x69, 0xfa, 0xa0, 0x59, 0x4e, 0x61, 0x0f, 0xe5, 0xd5, 0xd7, 0xef, 0x14, 0x46, 0x7e, 0x70, 0xa7, 0x30, 0xf2, 0x2f, 0x77, 0x0a, 0x23, 0x6f, 0xde, 0x29, 0x48, 0x6f, 0xdf, 0x29, 0x48, 0xef, 0xde, 0x29, 0x48, 0x3f, 0xb9, 0x53, 0x90, 0x6e, 0xed, 0x17, 0xa4, 0xaf, 0xec, 0x17, 0xa4, 0xaf, 0xef, 0x17, 0xa4, 0xef, 0xee, 0x17, 0xa4, 0xef, 0xed, 0x17, 0xa4, 0xd7, 0xf7, 0x0b, 0xd2, 0x0f, 0xf6, 0x0b, 0x23, 0x6f, 0xee, 0x17, 0xa4, 0xb7, 0xf7, 0x0b, 0x23, 0xef, 0xee, 0x17, 0xa4, 0x9f, 0xec, 0x17, 0x46, 0x6e, 0xfd, 0x5b, 0x61, 0xe4, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x63, 0xc3, 0xed, 0xb0, 0x5b, 0x37, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Castaway) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Castaway") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Castaway but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Castaway but is not nil && this == nil") } if this.Int32Ptr != nil && that1.Int32Ptr != nil { if *this.Int32Ptr != *that1.Int32Ptr { return fmt.Errorf("Int32Ptr this(%v) Not Equal that(%v)", *this.Int32Ptr, *that1.Int32Ptr) } } else if this.Int32Ptr != nil { return fmt.Errorf("this.Int32Ptr == nil && that.Int32Ptr != nil") } else if that1.Int32Ptr != nil { return fmt.Errorf("Int32Ptr this(%v) Not Equal that(%v)", this.Int32Ptr, that1.Int32Ptr) } if this.Int32 != that1.Int32 { return fmt.Errorf("Int32 this(%v) Not Equal that(%v)", this.Int32, that1.Int32) } if this.MyUint64Ptr != nil && that1.MyUint64Ptr != nil { if *this.MyUint64Ptr != *that1.MyUint64Ptr { return fmt.Errorf("MyUint64Ptr this(%v) Not Equal that(%v)", *this.MyUint64Ptr, *that1.MyUint64Ptr) } } else if this.MyUint64Ptr != nil { return fmt.Errorf("this.MyUint64Ptr == nil && that.MyUint64Ptr != nil") } else if that1.MyUint64Ptr != nil { return fmt.Errorf("MyUint64Ptr this(%v) Not Equal that(%v)", this.MyUint64Ptr, that1.MyUint64Ptr) } if this.MyUint64 != that1.MyUint64 { return fmt.Errorf("MyUint64 this(%v) Not Equal that(%v)", this.MyUint64, that1.MyUint64) } if this.MyFloat32Ptr != nil && that1.MyFloat32Ptr != nil { if *this.MyFloat32Ptr != *that1.MyFloat32Ptr { return fmt.Errorf("MyFloat32Ptr this(%v) Not Equal that(%v)", *this.MyFloat32Ptr, *that1.MyFloat32Ptr) } } else if this.MyFloat32Ptr != nil { return fmt.Errorf("this.MyFloat32Ptr == nil && that.MyFloat32Ptr != nil") } else if that1.MyFloat32Ptr != nil { return fmt.Errorf("MyFloat32Ptr this(%v) Not Equal that(%v)", this.MyFloat32Ptr, that1.MyFloat32Ptr) } if this.MyFloat32 != that1.MyFloat32 { return fmt.Errorf("MyFloat32 this(%v) Not Equal that(%v)", this.MyFloat32, that1.MyFloat32) } if this.MyFloat64Ptr != nil && that1.MyFloat64Ptr != nil { if *this.MyFloat64Ptr != *that1.MyFloat64Ptr { return fmt.Errorf("MyFloat64Ptr this(%v) Not Equal that(%v)", *this.MyFloat64Ptr, *that1.MyFloat64Ptr) } } else if this.MyFloat64Ptr != nil { return fmt.Errorf("this.MyFloat64Ptr == nil && that.MyFloat64Ptr != nil") } else if that1.MyFloat64Ptr != nil { return fmt.Errorf("MyFloat64Ptr this(%v) Not Equal that(%v)", this.MyFloat64Ptr, that1.MyFloat64Ptr) } if this.MyFloat64 != that1.MyFloat64 { return fmt.Errorf("MyFloat64 this(%v) Not Equal that(%v)", this.MyFloat64, that1.MyFloat64) } if !bytes.Equal(this.MyBytes, that1.MyBytes) { return fmt.Errorf("MyBytes this(%v) Not Equal that(%v)", this.MyBytes, that1.MyBytes) } if !bytes.Equal(this.NormalBytes, that1.NormalBytes) { return fmt.Errorf("NormalBytes this(%v) Not Equal that(%v)", this.NormalBytes, that1.NormalBytes) } if len(this.MyUint64S) != len(that1.MyUint64S) { return fmt.Errorf("MyUint64S this(%v) Not Equal that(%v)", len(this.MyUint64S), len(that1.MyUint64S)) } for i := range this.MyUint64S { if this.MyUint64S[i] != that1.MyUint64S[i] { return fmt.Errorf("MyUint64S this[%v](%v) Not Equal that[%v](%v)", i, this.MyUint64S[i], i, that1.MyUint64S[i]) } } if len(this.MyMap) != len(that1.MyMap) { return fmt.Errorf("MyMap this(%v) Not Equal that(%v)", len(this.MyMap), len(that1.MyMap)) } for i := range this.MyMap { if this.MyMap[i] != that1.MyMap[i] { return fmt.Errorf("MyMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyMap[i], i, that1.MyMap[i]) } } if len(this.MyCustomMap) != len(that1.MyCustomMap) { return fmt.Errorf("MyCustomMap this(%v) Not Equal that(%v)", len(this.MyCustomMap), len(that1.MyCustomMap)) } for i := range this.MyCustomMap { if this.MyCustomMap[i] != that1.MyCustomMap[i] { return fmt.Errorf("MyCustomMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyCustomMap[i], i, that1.MyCustomMap[i]) } } if len(this.MyNullableMap) != len(that1.MyNullableMap) { return fmt.Errorf("MyNullableMap this(%v) Not Equal that(%v)", len(this.MyNullableMap), len(that1.MyNullableMap)) } for i := range this.MyNullableMap { if !this.MyNullableMap[i].Equal(that1.MyNullableMap[i]) { return fmt.Errorf("MyNullableMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyNullableMap[i], i, that1.MyNullableMap[i]) } } if len(this.MyEmbeddedMap) != len(that1.MyEmbeddedMap) { return fmt.Errorf("MyEmbeddedMap this(%v) Not Equal that(%v)", len(this.MyEmbeddedMap), len(that1.MyEmbeddedMap)) } for i := range this.MyEmbeddedMap { a := this.MyEmbeddedMap[i] b := that1.MyEmbeddedMap[i] if !(&a).Equal(&b) { return fmt.Errorf("MyEmbeddedMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyEmbeddedMap[i], i, that1.MyEmbeddedMap[i]) } } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return fmt.Errorf("String_ this(%v) Not Equal that(%v)", *this.String_, *that1.String_) } } else if this.String_ != nil { return fmt.Errorf("this.String_ == nil && that.String_ != nil") } else if that1.String_ != nil { return fmt.Errorf("String_ this(%v) Not Equal that(%v)", this.String_, that1.String_) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Castaway) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int32Ptr != nil && that1.Int32Ptr != nil { if *this.Int32Ptr != *that1.Int32Ptr { return false } } else if this.Int32Ptr != nil { return false } else if that1.Int32Ptr != nil { return false } if this.Int32 != that1.Int32 { return false } if this.MyUint64Ptr != nil && that1.MyUint64Ptr != nil { if *this.MyUint64Ptr != *that1.MyUint64Ptr { return false } } else if this.MyUint64Ptr != nil { return false } else if that1.MyUint64Ptr != nil { return false } if this.MyUint64 != that1.MyUint64 { return false } if this.MyFloat32Ptr != nil && that1.MyFloat32Ptr != nil { if *this.MyFloat32Ptr != *that1.MyFloat32Ptr { return false } } else if this.MyFloat32Ptr != nil { return false } else if that1.MyFloat32Ptr != nil { return false } if this.MyFloat32 != that1.MyFloat32 { return false } if this.MyFloat64Ptr != nil && that1.MyFloat64Ptr != nil { if *this.MyFloat64Ptr != *that1.MyFloat64Ptr { return false } } else if this.MyFloat64Ptr != nil { return false } else if that1.MyFloat64Ptr != nil { return false } if this.MyFloat64 != that1.MyFloat64 { return false } if !bytes.Equal(this.MyBytes, that1.MyBytes) { return false } if !bytes.Equal(this.NormalBytes, that1.NormalBytes) { return false } if len(this.MyUint64S) != len(that1.MyUint64S) { return false } for i := range this.MyUint64S { if this.MyUint64S[i] != that1.MyUint64S[i] { return false } } if len(this.MyMap) != len(that1.MyMap) { return false } for i := range this.MyMap { if this.MyMap[i] != that1.MyMap[i] { return false } } if len(this.MyCustomMap) != len(that1.MyCustomMap) { return false } for i := range this.MyCustomMap { if this.MyCustomMap[i] != that1.MyCustomMap[i] { return false } } if len(this.MyNullableMap) != len(that1.MyNullableMap) { return false } for i := range this.MyNullableMap { if !this.MyNullableMap[i].Equal(that1.MyNullableMap[i]) { return false } } if len(this.MyEmbeddedMap) != len(that1.MyEmbeddedMap) { return false } for i := range this.MyEmbeddedMap { a := this.MyEmbeddedMap[i] b := that1.MyEmbeddedMap[i] if !(&a).Equal(&b) { return false } } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return false } } else if this.String_ != nil { return false } else if that1.String_ != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Wilson) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Wilson") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Wilson but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Wilson but is not nil && this == nil") } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", *this.Int64, *that1.Int64) } } else if this.Int64 != nil { return fmt.Errorf("this.Int64 == nil && that.Int64 != nil") } else if that1.Int64 != nil { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", this.Int64, that1.Int64) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Wilson) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return false } } else if this.Int64 != nil { return false } else if that1.Int64 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type CastawayFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt32Ptr() *int32 GetInt32() int32 GetMyUint64Ptr() *github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyUint64() github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyFloat32Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat32Type GetMyFloat32() github_com_gogo_protobuf_test_casttype.MyFloat32Type GetMyFloat64Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat64Type GetMyFloat64() github_com_gogo_protobuf_test_casttype.MyFloat64Type GetMyBytes() github_com_gogo_protobuf_test_casttype.Bytes GetNormalBytes() []byte GetMyUint64S() []github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyMap() github_com_gogo_protobuf_test_casttype.MyMapType GetMyCustomMap() map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyNullableMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson GetMyEmbeddedMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson GetString_() *github_com_gogo_protobuf_test_casttype.MyStringType } func (this *Castaway) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Castaway) TestProto() github_com_gogo_protobuf_proto.Message { return NewCastawayFromFace(this) } func (this *Castaway) GetInt32Ptr() *int32 { return this.Int32Ptr } func (this *Castaway) GetInt32() int32 { return this.Int32 } func (this *Castaway) GetMyUint64Ptr() *github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64Ptr } func (this *Castaway) GetMyUint64() github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64 } func (this *Castaway) GetMyFloat32Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat32Type { return this.MyFloat32Ptr } func (this *Castaway) GetMyFloat32() github_com_gogo_protobuf_test_casttype.MyFloat32Type { return this.MyFloat32 } func (this *Castaway) GetMyFloat64Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat64Type { return this.MyFloat64Ptr } func (this *Castaway) GetMyFloat64() github_com_gogo_protobuf_test_casttype.MyFloat64Type { return this.MyFloat64 } func (this *Castaway) GetMyBytes() github_com_gogo_protobuf_test_casttype.Bytes { return this.MyBytes } func (this *Castaway) GetNormalBytes() []byte { return this.NormalBytes } func (this *Castaway) GetMyUint64S() []github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64S } func (this *Castaway) GetMyMap() github_com_gogo_protobuf_test_casttype.MyMapType { return this.MyMap } func (this *Castaway) GetMyCustomMap() map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyCustomMap } func (this *Castaway) GetMyNullableMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson { return this.MyNullableMap } func (this *Castaway) GetMyEmbeddedMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson { return this.MyEmbeddedMap } func (this *Castaway) GetString_() *github_com_gogo_protobuf_test_casttype.MyStringType { return this.String_ } func NewCastawayFromFace(that CastawayFace) *Castaway { this := &Castaway{} this.Int32Ptr = that.GetInt32Ptr() this.Int32 = that.GetInt32() this.MyUint64Ptr = that.GetMyUint64Ptr() this.MyUint64 = that.GetMyUint64() this.MyFloat32Ptr = that.GetMyFloat32Ptr() this.MyFloat32 = that.GetMyFloat32() this.MyFloat64Ptr = that.GetMyFloat64Ptr() this.MyFloat64 = that.GetMyFloat64() this.MyBytes = that.GetMyBytes() this.NormalBytes = that.GetNormalBytes() this.MyUint64S = that.GetMyUint64S() this.MyMap = that.GetMyMap() this.MyCustomMap = that.GetMyCustomMap() this.MyNullableMap = that.GetMyNullableMap() this.MyEmbeddedMap = that.GetMyEmbeddedMap() this.String_ = that.GetString_() return this } type WilsonFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt64() *int64 } func (this *Wilson) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Wilson) TestProto() github_com_gogo_protobuf_proto.Message { return NewWilsonFromFace(this) } func (this *Wilson) GetInt64() *int64 { return this.Int64 } func NewWilsonFromFace(that WilsonFace) *Wilson { this := &Wilson{} this.Int64 = that.GetInt64() return this } func (this *Castaway) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&casttype.Castaway{") if this.Int32Ptr != nil { s = append(s, "Int32Ptr: "+valueToGoStringCasttype(this.Int32Ptr, "int32")+",\n") } s = append(s, "Int32: "+fmt.Sprintf("%#v", this.Int32)+",\n") if this.MyUint64Ptr != nil { s = append(s, "MyUint64Ptr: "+valueToGoStringCasttype(this.MyUint64Ptr, "github_com_gogo_protobuf_test_casttype.MyUint64Type")+",\n") } s = append(s, "MyUint64: "+fmt.Sprintf("%#v", this.MyUint64)+",\n") if this.MyFloat32Ptr != nil { s = append(s, "MyFloat32Ptr: "+valueToGoStringCasttype(this.MyFloat32Ptr, "github_com_gogo_protobuf_test_casttype.MyFloat32Type")+",\n") } s = append(s, "MyFloat32: "+fmt.Sprintf("%#v", this.MyFloat32)+",\n") if this.MyFloat64Ptr != nil { s = append(s, "MyFloat64Ptr: "+valueToGoStringCasttype(this.MyFloat64Ptr, "github_com_gogo_protobuf_test_casttype.MyFloat64Type")+",\n") } s = append(s, "MyFloat64: "+fmt.Sprintf("%#v", this.MyFloat64)+",\n") if this.MyBytes != nil { s = append(s, "MyBytes: "+valueToGoStringCasttype(this.MyBytes, "github_com_gogo_protobuf_test_casttype.Bytes")+",\n") } if this.NormalBytes != nil { s = append(s, "NormalBytes: "+valueToGoStringCasttype(this.NormalBytes, "byte")+",\n") } if this.MyUint64S != nil { s = append(s, "MyUint64S: "+fmt.Sprintf("%#v", this.MyUint64S)+",\n") } keysForMyMap := make([]string, 0, len(this.MyMap)) for k := range this.MyMap { keysForMyMap = append(keysForMyMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyMap) mapStringForMyMap := "github_com_gogo_protobuf_test_casttype.MyMapType{" for _, k := range keysForMyMap { mapStringForMyMap += fmt.Sprintf("%#v: %#v,", k, this.MyMap[k]) } mapStringForMyMap += "}" if this.MyMap != nil { s = append(s, "MyMap: "+mapStringForMyMap+",\n") } keysForMyCustomMap := make([]string, 0, len(this.MyCustomMap)) for k := range this.MyCustomMap { keysForMyCustomMap = append(keysForMyCustomMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyCustomMap) mapStringForMyCustomMap := "map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type{" for _, k := range keysForMyCustomMap { mapStringForMyCustomMap += fmt.Sprintf("%#v: %#v,", k, this.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(k)]) } mapStringForMyCustomMap += "}" if this.MyCustomMap != nil { s = append(s, "MyCustomMap: "+mapStringForMyCustomMap+",\n") } keysForMyNullableMap := make([]int32, 0, len(this.MyNullableMap)) for k := range this.MyNullableMap { keysForMyNullableMap = append(keysForMyNullableMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyNullableMap) mapStringForMyNullableMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson{" for _, k := range keysForMyNullableMap { mapStringForMyNullableMap += fmt.Sprintf("%#v: %#v,", k, this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyNullableMap += "}" if this.MyNullableMap != nil { s = append(s, "MyNullableMap: "+mapStringForMyNullableMap+",\n") } keysForMyEmbeddedMap := make([]int32, 0, len(this.MyEmbeddedMap)) for k := range this.MyEmbeddedMap { keysForMyEmbeddedMap = append(keysForMyEmbeddedMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyEmbeddedMap) mapStringForMyEmbeddedMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson{" for _, k := range keysForMyEmbeddedMap { mapStringForMyEmbeddedMap += fmt.Sprintf("%#v: %#v,", k, this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyEmbeddedMap += "}" if this.MyEmbeddedMap != nil { s = append(s, "MyEmbeddedMap: "+mapStringForMyEmbeddedMap+",\n") } if this.String_ != nil { s = append(s, "String_: "+valueToGoStringCasttype(this.String_, "github_com_gogo_protobuf_test_casttype.MyStringType")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Wilson) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&casttype.Wilson{") if this.Int64 != nil { s = append(s, "Int64: "+valueToGoStringCasttype(this.Int64, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringCasttype(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Castaway) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Castaway) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Int32Ptr != nil { dAtA[i] = 0x8 i++ i = encodeVarintCasttype(dAtA, i, uint64(*m.Int32Ptr)) } dAtA[i] = 0x10 i++ i = encodeVarintCasttype(dAtA, i, uint64(m.Int32)) if m.MyUint64Ptr != nil { dAtA[i] = 0x18 i++ i = encodeVarintCasttype(dAtA, i, uint64(*m.MyUint64Ptr)) } dAtA[i] = 0x20 i++ i = encodeVarintCasttype(dAtA, i, uint64(m.MyUint64)) if m.MyFloat32Ptr != nil { dAtA[i] = 0x2d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.MyFloat32Ptr)))) i += 4 } dAtA[i] = 0x35 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.MyFloat32)))) i += 4 if m.MyFloat64Ptr != nil { dAtA[i] = 0x39 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.MyFloat64Ptr)))) i += 8 } dAtA[i] = 0x41 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.MyFloat64)))) i += 8 if m.MyBytes != nil { dAtA[i] = 0x4a i++ i = encodeVarintCasttype(dAtA, i, uint64(len(m.MyBytes))) i += copy(dAtA[i:], m.MyBytes) } if m.NormalBytes != nil { dAtA[i] = 0x52 i++ i = encodeVarintCasttype(dAtA, i, uint64(len(m.NormalBytes))) i += copy(dAtA[i:], m.NormalBytes) } if len(m.MyUint64S) > 0 { for _, num := range m.MyUint64S { dAtA[i] = 0x58 i++ i = encodeVarintCasttype(dAtA, i, uint64(num)) } } if len(m.MyMap) > 0 { for k := range m.MyMap { dAtA[i] = 0x62 i++ v := m.MyMap[k] mapSize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) i = encodeVarintCasttype(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintCasttype(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintCasttype(dAtA, i, uint64(v)) } } if len(m.MyCustomMap) > 0 { for k := range m.MyCustomMap { dAtA[i] = 0x6a i++ v := m.MyCustomMap[k] mapSize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) i = encodeVarintCasttype(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintCasttype(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintCasttype(dAtA, i, uint64(v)) } } if len(m.MyNullableMap) > 0 { for k := range m.MyNullableMap { dAtA[i] = 0x72 i++ v := m.MyNullableMap[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovCasttype(uint64(msgSize)) } mapSize := 1 + sovCasttype(uint64(k)) + msgSize i = encodeVarintCasttype(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintCasttype(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintCasttype(dAtA, i, uint64(v.Size())) n1, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } } } if len(m.MyEmbeddedMap) > 0 { for k := range m.MyEmbeddedMap { dAtA[i] = 0x7a i++ v := m.MyEmbeddedMap[k] msgSize := 0 if (&v) != nil { msgSize = (&v).Size() msgSize += 1 + sovCasttype(uint64(msgSize)) } mapSize := 1 + sovCasttype(uint64(k)) + msgSize i = encodeVarintCasttype(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintCasttype(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintCasttype(dAtA, i, uint64((&v).Size())) n2, err := (&v).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } } if m.String_ != nil { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ i = encodeVarintCasttype(dAtA, i, uint64(len(*m.String_))) i += copy(dAtA[i:], *m.String_) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Wilson) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Wilson) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Int64 != nil { dAtA[i] = 0x8 i++ i = encodeVarintCasttype(dAtA, i, uint64(*m.Int64)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintCasttype(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedCastaway(r randyCasttype, easy bool) *Castaway { this := &Castaway{} if r.Intn(10) != 0 { v1 := int32(r.Int63()) if r.Intn(2) == 0 { v1 *= -1 } this.Int32Ptr = &v1 } this.Int32 = int32(r.Int63()) if r.Intn(2) == 0 { this.Int32 *= -1 } if r.Intn(10) != 0 { v2 := github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) this.MyUint64Ptr = &v2 } this.MyUint64 = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) if r.Intn(10) != 0 { v3 := github_com_gogo_protobuf_test_casttype.MyFloat32Type(r.Float32()) if r.Intn(2) == 0 { v3 *= -1 } this.MyFloat32Ptr = &v3 } this.MyFloat32 = github_com_gogo_protobuf_test_casttype.MyFloat32Type(r.Float32()) if r.Intn(2) == 0 { this.MyFloat32 *= -1 } if r.Intn(10) != 0 { v4 := github_com_gogo_protobuf_test_casttype.MyFloat64Type(r.Float64()) if r.Intn(2) == 0 { v4 *= -1 } this.MyFloat64Ptr = &v4 } this.MyFloat64 = github_com_gogo_protobuf_test_casttype.MyFloat64Type(r.Float64()) if r.Intn(2) == 0 { this.MyFloat64 *= -1 } if r.Intn(10) != 0 { v5 := r.Intn(100) this.MyBytes = make(github_com_gogo_protobuf_test_casttype.Bytes, v5) for i := 0; i < v5; i++ { this.MyBytes[i] = byte(r.Intn(256)) } } if r.Intn(10) != 0 { v6 := r.Intn(100) this.NormalBytes = make([]byte, v6) for i := 0; i < v6; i++ { this.NormalBytes[i] = byte(r.Intn(256)) } } if r.Intn(10) != 0 { v7 := r.Intn(10) this.MyUint64S = make([]github_com_gogo_protobuf_test_casttype.MyUint64Type, v7) for i := 0; i < v7; i++ { this.MyUint64S[i] = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v8 := r.Intn(10) this.MyMap = make(github_com_gogo_protobuf_test_casttype.MyMapType) for i := 0; i < v8; i++ { v9 := randStringCasttype(r) this.MyMap[v9] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.MyCustomMap = make(map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type) for i := 0; i < v10; i++ { v11 := github_com_gogo_protobuf_test_casttype.MyStringType(randStringCasttype(r)) this.MyCustomMap[v11] = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.MyNullableMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson) for i := 0; i < v12; i++ { this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(int32(r.Int31()))] = NewPopulatedWilson(r, easy) } } if r.Intn(10) != 0 { v13 := r.Intn(10) this.MyEmbeddedMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson) for i := 0; i < v13; i++ { this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(int32(r.Int31()))] = *NewPopulatedWilson(r, easy) } } if r.Intn(10) != 0 { v14 := github_com_gogo_protobuf_test_casttype.MyStringType(randStringCasttype(r)) this.String_ = &v14 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCasttype(r, 17) } return this } func NewPopulatedWilson(r randyCasttype, easy bool) *Wilson { this := &Wilson{} if r.Intn(10) != 0 { v15 := int64(r.Int63()) if r.Intn(2) == 0 { v15 *= -1 } this.Int64 = &v15 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCasttype(r, 2) } return this } type randyCasttype interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneCasttype(r randyCasttype) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringCasttype(r randyCasttype) string { v16 := r.Intn(100) tmps := make([]rune, v16) for i := 0; i < v16; i++ { tmps[i] = randUTF8RuneCasttype(r) } return string(tmps) } func randUnrecognizedCasttype(r randyCasttype, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldCasttype(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldCasttype(dAtA []byte, r randyCasttype, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) v17 := r.Int63() if r.Intn(2) == 0 { v17 *= -1 } dAtA = encodeVarintPopulateCasttype(dAtA, uint64(v17)) case 1: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateCasttype(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateCasttype(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Castaway) Size() (n int) { var l int _ = l if m.Int32Ptr != nil { n += 1 + sovCasttype(uint64(*m.Int32Ptr)) } n += 1 + sovCasttype(uint64(m.Int32)) if m.MyUint64Ptr != nil { n += 1 + sovCasttype(uint64(*m.MyUint64Ptr)) } n += 1 + sovCasttype(uint64(m.MyUint64)) if m.MyFloat32Ptr != nil { n += 5 } n += 5 if m.MyFloat64Ptr != nil { n += 9 } n += 9 if m.MyBytes != nil { l = len(m.MyBytes) n += 1 + l + sovCasttype(uint64(l)) } if m.NormalBytes != nil { l = len(m.NormalBytes) n += 1 + l + sovCasttype(uint64(l)) } if len(m.MyUint64S) > 0 { for _, e := range m.MyUint64S { n += 1 + sovCasttype(uint64(e)) } } if len(m.MyMap) > 0 { for k, v := range m.MyMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyCustomMap) > 0 { for k, v := range m.MyCustomMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyNullableMap) > 0 { for k, v := range m.MyNullableMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovCasttype(uint64(l)) } mapEntrySize := 1 + sovCasttype(uint64(k)) + l n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyEmbeddedMap) > 0 { for k, v := range m.MyEmbeddedMap { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovCasttype(uint64(k)) + 1 + l + sovCasttype(uint64(l)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if m.String_ != nil { l = len(*m.String_) n += 2 + l + sovCasttype(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Wilson) Size() (n int) { var l int _ = l if m.Int64 != nil { n += 1 + sovCasttype(uint64(*m.Int64)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovCasttype(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozCasttype(x uint64) (n int) { return sovCasttype(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Castaway) String() string { if this == nil { return "nil" } keysForMyMap := make([]string, 0, len(this.MyMap)) for k := range this.MyMap { keysForMyMap = append(keysForMyMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyMap) mapStringForMyMap := "github_com_gogo_protobuf_test_casttype.MyMapType{" for _, k := range keysForMyMap { mapStringForMyMap += fmt.Sprintf("%v: %v,", k, this.MyMap[k]) } mapStringForMyMap += "}" keysForMyCustomMap := make([]string, 0, len(this.MyCustomMap)) for k := range this.MyCustomMap { keysForMyCustomMap = append(keysForMyCustomMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyCustomMap) mapStringForMyCustomMap := "map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type{" for _, k := range keysForMyCustomMap { mapStringForMyCustomMap += fmt.Sprintf("%v: %v,", k, this.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(k)]) } mapStringForMyCustomMap += "}" keysForMyNullableMap := make([]int32, 0, len(this.MyNullableMap)) for k := range this.MyNullableMap { keysForMyNullableMap = append(keysForMyNullableMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyNullableMap) mapStringForMyNullableMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson{" for _, k := range keysForMyNullableMap { mapStringForMyNullableMap += fmt.Sprintf("%v: %v,", k, this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyNullableMap += "}" keysForMyEmbeddedMap := make([]int32, 0, len(this.MyEmbeddedMap)) for k := range this.MyEmbeddedMap { keysForMyEmbeddedMap = append(keysForMyEmbeddedMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyEmbeddedMap) mapStringForMyEmbeddedMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson{" for _, k := range keysForMyEmbeddedMap { mapStringForMyEmbeddedMap += fmt.Sprintf("%v: %v,", k, this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyEmbeddedMap += "}" s := strings.Join([]string{`&Castaway{`, `Int32Ptr:` + valueToStringCasttype(this.Int32Ptr) + `,`, `Int32:` + fmt.Sprintf("%v", this.Int32) + `,`, `MyUint64Ptr:` + valueToStringCasttype(this.MyUint64Ptr) + `,`, `MyUint64:` + fmt.Sprintf("%v", this.MyUint64) + `,`, `MyFloat32Ptr:` + valueToStringCasttype(this.MyFloat32Ptr) + `,`, `MyFloat32:` + fmt.Sprintf("%v", this.MyFloat32) + `,`, `MyFloat64Ptr:` + valueToStringCasttype(this.MyFloat64Ptr) + `,`, `MyFloat64:` + fmt.Sprintf("%v", this.MyFloat64) + `,`, `MyBytes:` + valueToStringCasttype(this.MyBytes) + `,`, `NormalBytes:` + valueToStringCasttype(this.NormalBytes) + `,`, `MyUint64S:` + fmt.Sprintf("%v", this.MyUint64S) + `,`, `MyMap:` + mapStringForMyMap + `,`, `MyCustomMap:` + mapStringForMyCustomMap + `,`, `MyNullableMap:` + mapStringForMyNullableMap + `,`, `MyEmbeddedMap:` + mapStringForMyEmbeddedMap + `,`, `String_:` + valueToStringCasttype(this.String_) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Wilson) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Wilson{`, `Int64:` + valueToStringCasttype(this.Int64) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringCasttype(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/marshaler/casttype.proto", fileDescriptorCasttype) } var fileDescriptorCasttype = []byte{ // 698 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0xbf, 0x6f, 0xd3, 0x4c, 0x18, 0xc7, 0x7d, 0x4d, 0xd3, 0x26, 0x97, 0xe6, 0x7d, 0xa3, 0x13, 0x83, 0x55, 0x89, 0xb3, 0xd5, 0xaa, 0xc8, 0x03, 0x24, 0x55, 0x1a, 0x95, 0xaa, 0x20, 0x06, 0x57, 0x45, 0x2a, 0xc2, 0x05, 0x19, 0xaa, 0x0a, 0xc4, 0x72, 0x69, 0x4d, 0x1a, 0xe1, 0xc4, 0x91, 0x7d, 0x01, 0x79, 0xab, 0xca, 0x80, 0xc4, 0x5f, 0xc2, 0xc8, 0x82, 0xc4, 0xc8, 0xd8, 0xb1, 0x23, 0x53, 0x5a, 0x9b, 0xa5, 0x6c, 0x1d, 0xab, 0x4c, 0xe8, 0xee, 0x9c, 0xd8, 0xfd, 0x01, 0x4a, 0xdc, 0xed, 0x9e, 0xbb, 0xe7, 0xf9, 0x3c, 0xdf, 0x7b, 0xee, 0xb9, 0x3b, 0xa8, 0xec, 0x38, 0xad, 0xba, 0xe3, 0x55, 0x5a, 0xc4, 0xf5, 0xf6, 0x88, 0x6d, 0xb9, 0x95, 0x1d, 0xe2, 0x51, 0xea, 0x77, 0xac, 0x72, 0xc7, 0x75, 0xa8, 0x83, 0x72, 0x03, 0x7b, 0xf6, 0x5e, 0xa3, 0x49, 0xf7, 0xba, 0xf5, 0xf2, 0x8e, 0xd3, 0xaa, 0x34, 0x9c, 0x86, 0x53, 0xe1, 0x0e, 0xf5, 0xee, 0x5b, 0x6e, 0x71, 0x83, 0x8f, 0x44, 0xe0, 0xdc, 0xef, 0x22, 0xcc, 0xad, 0x11, 0x8f, 0x92, 0x0f, 0xc4, 0x47, 0x0b, 0x30, 0xb7, 0xd1, 0xa6, 0x4b, 0xd5, 0xe7, 0xd4, 0x95, 0x81, 0x0a, 0xb4, 0x8c, 0x9e, 0xef, 0xf7, 0x94, 0x6c, 0x93, 0xcd, 0x99, 0xc3, 0x25, 0x34, 0x0f, 0xb3, 0x7c, 0x2c, 0x4f, 0x70, 0x9f, 0xe2, 0x61, 0x4f, 0x91, 0x62, 0x3f, 0xb1, 0x86, 0x5e, 0xc1, 0x82, 0xe1, 0x6f, 0x35, 0xdb, 0x74, 0xb9, 0xc6, 0x70, 0x19, 0x15, 0x68, 0x93, 0xfa, 0xfd, 0x7e, 0x4f, 0x59, 0xfa, 0xab, 0x40, 0x6a, 0x79, 0x34, 0xde, 0xd8, 0x20, 0xfa, 0xa5, 0xdf, 0xb1, 0xcc, 0x24, 0x0b, 0x6d, 0xc3, 0xdc, 0xc0, 0x94, 0x27, 0x39, 0xf7, 0x41, 0x24, 0x21, 0x15, 0x7b, 0x08, 0x43, 0x6f, 0xe0, 0x8c, 0xe1, 0x3f, 0xb6, 0x1d, 0x12, 0xd5, 0x20, 0xab, 0x02, 0x6d, 0x42, 0x5f, 0xe9, 0xf7, 0x94, 0xda, 0xc8, 0xe0, 0x28, 0x9c, 0x93, 0x2f, 0xd0, 0xd0, 0x6b, 0x98, 0x1f, 0xda, 0xf2, 0x14, 0x47, 0x3f, 0x8c, 0x74, 0xa7, 0xc3, 0xc7, 0xb8, 0x84, 0x72, 0x51, 0xee, 0x69, 0x15, 0x68, 0x20, 0x8d, 0xf2, 0xa8, 0x26, 0x17, 0x68, 0x09, 0xe5, 0xcb, 0x35, 0x39, 0xc7, 0xd1, 0x29, 0x95, 0x47, 0xf8, 0x18, 0x87, 0x9e, 0xc0, 0x69, 0xc3, 0xd7, 0x7d, 0x6a, 0x79, 0x72, 0x5e, 0x05, 0xda, 0x8c, 0xbe, 0xd8, 0xef, 0x29, 0x77, 0x47, 0xa4, 0xf2, 0x38, 0x73, 0x00, 0x40, 0x2a, 0x2c, 0x6c, 0x3a, 0x6e, 0x8b, 0xd8, 0x82, 0x07, 0x19, 0xcf, 0x4c, 0x4e, 0xa1, 0x2d, 0xb6, 0x13, 0x71, 0xda, 0x9e, 0x5c, 0x50, 0x33, 0x37, 0xe9, 0xc9, 0x98, 0x84, 0x9a, 0x30, 0x6b, 0xf8, 0x06, 0xe9, 0xc8, 0x33, 0x6a, 0x46, 0x2b, 0x54, 0x6f, 0x97, 0x87, 0x11, 0x83, 0xbb, 0x55, 0xe6, 0xeb, 0xeb, 0x6d, 0xea, 0xfa, 0x7a, 0xad, 0xdf, 0x53, 0x16, 0x47, 0xce, 0x68, 0x90, 0x0e, 0x4f, 0x27, 0x32, 0xa0, 0x6f, 0x80, 0x5d, 0xac, 0xb5, 0xae, 0x47, 0x9d, 0x16, 0xcb, 0x58, 0xe4, 0x19, 0xe7, 0xaf, 0xcd, 0x38, 0xf4, 0x12, 0x79, 0xdb, 0x07, 0xc7, 0x63, 0xec, 0xf4, 0x05, 0x75, 0x9b, 0xed, 0x06, 0x4b, 0xfd, 0xf9, 0x38, 0xf5, 0xa5, 0x1d, 0x2a, 0x40, 0x1f, 0x01, 0x2c, 0x1a, 0xfe, 0x66, 0xd7, 0xb6, 0x49, 0xdd, 0xb6, 0x98, 0xf2, 0xff, 0xb8, 0xf2, 0x85, 0x6b, 0x95, 0x27, 0xfc, 0x84, 0xf6, 0xe5, 0x83, 0x63, 0xa5, 0x3a, 0xb2, 0x08, 0xfe, 0x04, 0x71, 0x0d, 0x17, 0x73, 0xa2, 0x4f, 0x5c, 0xc5, 0x7a, 0xab, 0x6e, 0xed, 0xee, 0x5a, 0xbb, 0x4c, 0xc5, 0xff, 0xff, 0x50, 0x91, 0xf0, 0x13, 0x2a, 0x56, 0x59, 0xd7, 0xa7, 0x57, 0x92, 0xe0, 0xa1, 0x67, 0x70, 0x4a, 0x54, 0x58, 0x2e, 0xa9, 0x40, 0xcb, 0x8f, 0xd9, 0x86, 0xf1, 0xe1, 0x98, 0x11, 0x66, 0x76, 0x05, 0xc2, 0xb8, 0xc7, 0x50, 0x09, 0x66, 0xde, 0x59, 0x3e, 0x7f, 0xc5, 0xf3, 0x26, 0x1b, 0xa2, 0x5b, 0x30, 0xfb, 0x9e, 0xd8, 0x5d, 0x8b, 0xbf, 0xda, 0x93, 0xa6, 0x30, 0x56, 0x27, 0x56, 0xc0, 0xec, 0x23, 0x58, 0xba, 0xdc, 0x2b, 0x63, 0xc5, 0x9b, 0x10, 0x5d, 0x3d, 0xb1, 0x24, 0x21, 0x2b, 0x08, 0x77, 0x92, 0x84, 0x42, 0xb5, 0x14, 0xd7, 0x7c, 0xbb, 0x69, 0x7b, 0x4e, 0xfb, 0x0a, 0xf3, 0x72, 0xfd, 0x6f, 0xc6, 0x9c, 0xc3, 0x70, 0x4a, 0x4c, 0xb2, 0xbd, 0x6c, 0xf0, 0xef, 0x83, 0xff, 0x72, 0xa6, 0x30, 0xf4, 0xa7, 0x87, 0x01, 0x96, 0x8e, 0x02, 0x2c, 0xfd, 0x0c, 0xb0, 0x74, 0x12, 0x60, 0x70, 0x1a, 0x60, 0x70, 0x16, 0x60, 0x70, 0x1e, 0x60, 0xb0, 0x1f, 0x62, 0xf0, 0x25, 0xc4, 0xe0, 0x6b, 0x88, 0xc1, 0xf7, 0x10, 0x83, 0x1f, 0x21, 0x06, 0x87, 0x21, 0x06, 0x47, 0x21, 0x96, 0x4e, 0x42, 0x0c, 0x4e, 0x43, 0x2c, 0x9d, 0x85, 0x18, 0x9c, 0x87, 0x58, 0xda, 0xff, 0x85, 0xa5, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xec, 0xe2, 0x9e, 0x1c, 0xb4, 0x07, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/casttype/combos/marshaler/casttype.proto000066400000000000000000000104061317075173200263420ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 casttype; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Castaway { optional int64 Int32Ptr = 1 [(gogoproto.casttype) = "int32"]; optional int64 Int32 = 2 [(gogoproto.casttype) = "int32", (gogoproto.nullable) = false]; optional uint64 MyUint64Ptr = 3 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; optional uint64 MyUint64 = 4 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type", (gogoproto.nullable) = false]; optional float MyFloat32Ptr = 5 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type"]; optional float MyFloat32 = 6 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type", (gogoproto.nullable) = false]; optional double MyFloat64Ptr = 7 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type"]; optional double MyFloat64 = 8 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type", (gogoproto.nullable) = false]; optional bytes MyBytes = 9 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.Bytes"]; optional bytes NormalBytes = 10; repeated uint64 MyUint64s = 11 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyMap = 12 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyMapType"]; map MyCustomMap = 13 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyStringType", (gogoproto.castvalue) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyNullableMap = 14 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type"]; map MyEmbeddedMap = 15 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type", (gogoproto.nullable) = false]; optional string String = 16 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyStringType"]; } message Wilson { optional int64 Int64 = 1; } golang-gogoprotobuf-0.5/test/casttype/combos/marshaler/casttypepb_test.go000066400000000000000000000350301317075173200271650ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/casttype.proto /* Package casttype is a generated protocol buffer package. It is generated from these files: combos/marshaler/casttype.proto It has these top-level messages: Castaway Wilson */ package casttype import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestCastawayProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCastawayMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCastawayProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCastawayProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastaway(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Castaway{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestWilsonProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestWilsonMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkWilsonProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkWilsonProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedWilson(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Wilson{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCastawayJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestWilsonJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCastawayProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastawayProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCasttypeDescription(t *testing.T) { CasttypeDescription() } func TestCastawayVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestWilsonVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCastawayFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestWilsonFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCastawayGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestWilsonGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCastawaySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCastawaySize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestWilsonSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkWilsonSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCastawayStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestWilsonStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/casttype/combos/neither/000077500000000000000000000000001317075173200231005ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/casttype/combos/neither/casttype.pb.go000066400000000000000000002052141317075173200256670ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/casttype.proto /* Package casttype is a generated protocol buffer package. It is generated from these files: combos/neither/casttype.proto It has these top-level messages: Castaway Wilson */ package casttype import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_casttype "github.com/gogo/protobuf/test/casttype" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Castaway struct { Int32Ptr *int32 `protobuf:"varint,1,opt,name=Int32Ptr,casttype=int32" json:"Int32Ptr,omitempty"` Int32 int32 `protobuf:"varint,2,opt,name=Int32,casttype=int32" json:"Int32"` MyUint64Ptr *github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,3,opt,name=MyUint64Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64Ptr,omitempty"` MyUint64 github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,4,opt,name=MyUint64,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64"` MyFloat32Ptr *github_com_gogo_protobuf_test_casttype.MyFloat32Type `protobuf:"fixed32,5,opt,name=MyFloat32Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyFloat32Type" json:"MyFloat32Ptr,omitempty"` MyFloat32 github_com_gogo_protobuf_test_casttype.MyFloat32Type `protobuf:"fixed32,6,opt,name=MyFloat32,casttype=github.com/gogo/protobuf/test/casttype.MyFloat32Type" json:"MyFloat32"` MyFloat64Ptr *github_com_gogo_protobuf_test_casttype.MyFloat64Type `protobuf:"fixed64,7,opt,name=MyFloat64Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyFloat64Type" json:"MyFloat64Ptr,omitempty"` MyFloat64 github_com_gogo_protobuf_test_casttype.MyFloat64Type `protobuf:"fixed64,8,opt,name=MyFloat64,casttype=github.com/gogo/protobuf/test/casttype.MyFloat64Type" json:"MyFloat64"` MyBytes github_com_gogo_protobuf_test_casttype.Bytes `protobuf:"bytes,9,opt,name=MyBytes,casttype=github.com/gogo/protobuf/test/casttype.Bytes" json:"MyBytes,omitempty"` NormalBytes []byte `protobuf:"bytes,10,opt,name=NormalBytes" json:"NormalBytes,omitempty"` MyUint64S []github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,11,rep,name=MyUint64s,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64s,omitempty"` MyMap github_com_gogo_protobuf_test_casttype.MyMapType `protobuf:"bytes,12,rep,name=MyMap,casttype=github.com/gogo/protobuf/test/casttype.MyMapType" json:"MyMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` MyCustomMap map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"bytes,13,rep,name=MyCustomMap,castkey=github.com/gogo/protobuf/test/casttype.MyStringType,castvalue=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyCustomMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` MyNullableMap map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson `protobuf:"bytes,14,rep,name=MyNullableMap,castkey=github.com/gogo/protobuf/test/casttype.MyInt32Type" json:"MyNullableMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` MyEmbeddedMap map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson `protobuf:"bytes,15,rep,name=MyEmbeddedMap,castkey=github.com/gogo/protobuf/test/casttype.MyInt32Type" json:"MyEmbeddedMap" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` String_ *github_com_gogo_protobuf_test_casttype.MyStringType `protobuf:"bytes,16,opt,name=String,casttype=github.com/gogo/protobuf/test/casttype.MyStringType" json:"String,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Castaway) Reset() { *m = Castaway{} } func (*Castaway) ProtoMessage() {} func (*Castaway) Descriptor() ([]byte, []int) { return fileDescriptorCasttype, []int{0} } type Wilson struct { Int64 *int64 `protobuf:"varint,1,opt,name=Int64" json:"Int64,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Wilson) Reset() { *m = Wilson{} } func (*Wilson) ProtoMessage() {} func (*Wilson) Descriptor() ([]byte, []int) { return fileDescriptorCasttype, []int{1} } func init() { proto.RegisterType((*Castaway)(nil), "casttype.Castaway") proto.RegisterType((*Wilson)(nil), "casttype.Wilson") } func (this *Castaway) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CasttypeDescription() } func (this *Wilson) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CasttypeDescription() } func CasttypeDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4200 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0x5b, 0x70, 0x1b, 0xd7, 0x79, 0xe6, 0xe2, 0x42, 0x02, 0x3f, 0x40, 0x70, 0x79, 0x48, 0xcb, 0x30, 0x1d, 0x83, 0x14, 0xe5, 0x0b, 0x6d, 0x27, 0x94, 0x47, 0x77, 0x43, 0x89, 0x5d, 0x80, 0x84, 0x18, 0xa8, 0x04, 0xc9, 0x2c, 0xc9, 0x48, 0x72, 0x3b, 0xb3, 0xb3, 0x5c, 0x1c, 0x82, 0x2b, 0x2d, 0x76, 0x37, 0xbb, 0x0b, 0xc9, 0xd0, 0xf4, 0x41, 0x8d, 0xdb, 0x66, 0xd2, 0x4e, 0xef, 0x9d, 0x69, 0xe2, 0x3a, 0x6e, 0x9b, 0x99, 0xd6, 0x69, 0xd2, 0x4b, 0x2e, 0x4d, 0x9a, 0xf6, 0x29, 0x2f, 0x69, 0xfd, 0xd4, 0x49, 0xde, 0xfa, 0xd0, 0x91, 0x2d, 0xd6, 0x33, 0x75, 0x5a, 0xb7, 0x75, 0x1b, 0x3f, 0x64, 0xe4, 0x97, 0xce, 0xb9, 0x2d, 0x16, 0x17, 0x6a, 0x41, 0x65, 0xec, 0x3c, 0x11, 0xfb, 0x9f, 0xff, 0xfb, 0xce, 0x7f, 0xfe, 0xf3, 0x9f, 0xf3, 0xff, 0xe7, 0xec, 0x12, 0xbe, 0x76, 0x0e, 0xe6, 0x1a, 0xb6, 0xdd, 0x30, 0xf1, 0x71, 0xc7, 0xb5, 0x7d, 0x7b, 0xa7, 0xb5, 0x7b, 0xbc, 0x8e, 0x3d, 0xdd, 0x35, 0x1c, 0xdf, 0x76, 0x17, 0xa9, 0x0c, 0x4d, 0x30, 0x8d, 0x45, 0xa1, 0x31, 0x5f, 0x83, 0xc9, 0x0b, 0x86, 0x89, 0x97, 0x03, 0xc5, 0x4d, 0xec, 0xa3, 0x73, 0x90, 0xd8, 0x35, 0x4c, 0x9c, 0x97, 0xe6, 0xe2, 0x0b, 0x99, 0x13, 0x8f, 0x2e, 0xf6, 0x80, 0x16, 0xbb, 0x11, 0x1b, 0x44, 0xac, 0x50, 0xc4, 0xfc, 0x5b, 0x09, 0x98, 0x1a, 0xd0, 0x8a, 0x10, 0x24, 0x2c, 0xad, 0x49, 0x18, 0xa5, 0x85, 0xb4, 0x42, 0x7f, 0xa3, 0x3c, 0x8c, 0x39, 0x9a, 0x7e, 0x4d, 0x6b, 0xe0, 0x7c, 0x8c, 0x8a, 0xc5, 0x23, 0x2a, 0x00, 0xd4, 0xb1, 0x83, 0xad, 0x3a, 0xb6, 0xf4, 0x76, 0x3e, 0x3e, 0x17, 0x5f, 0x48, 0x2b, 0x21, 0x09, 0x7a, 0x1a, 0x26, 0x9d, 0xd6, 0x8e, 0x69, 0xe8, 0x6a, 0x48, 0x0d, 0xe6, 0xe2, 0x0b, 0x49, 0x45, 0x66, 0x0d, 0xcb, 0x1d, 0xe5, 0x27, 0x60, 0xe2, 0x06, 0xd6, 0xae, 0x85, 0x55, 0x33, 0x54, 0x35, 0x47, 0xc4, 0x21, 0xc5, 0x25, 0xc8, 0x36, 0xb1, 0xe7, 0x69, 0x0d, 0xac, 0xfa, 0x6d, 0x07, 0xe7, 0x13, 0x74, 0xf4, 0x73, 0x7d, 0xa3, 0xef, 0x1d, 0x79, 0x86, 0xa3, 0xb6, 0xda, 0x0e, 0x46, 0x25, 0x48, 0x63, 0xab, 0xd5, 0x64, 0x0c, 0xc9, 0x03, 0xfc, 0x57, 0xb1, 0x5a, 0xcd, 0x5e, 0x96, 0x14, 0x81, 0x71, 0x8a, 0x31, 0x0f, 0xbb, 0xd7, 0x0d, 0x1d, 0xe7, 0x47, 0x29, 0xc1, 0x13, 0x7d, 0x04, 0x9b, 0xac, 0xbd, 0x97, 0x43, 0xe0, 0xd0, 0x12, 0xa4, 0xf1, 0x8b, 0x3e, 0xb6, 0x3c, 0xc3, 0xb6, 0xf2, 0x63, 0x94, 0xe4, 0xb1, 0x01, 0xb3, 0x88, 0xcd, 0x7a, 0x2f, 0x45, 0x07, 0x87, 0xce, 0xc0, 0x98, 0xed, 0xf8, 0x86, 0x6d, 0x79, 0xf9, 0xd4, 0x9c, 0xb4, 0x90, 0x39, 0xf1, 0x91, 0x81, 0x81, 0xb0, 0xce, 0x74, 0x14, 0xa1, 0x8c, 0xaa, 0x20, 0x7b, 0x76, 0xcb, 0xd5, 0xb1, 0xaa, 0xdb, 0x75, 0xac, 0x1a, 0xd6, 0xae, 0x9d, 0x4f, 0x53, 0x82, 0xd9, 0xfe, 0x81, 0x50, 0xc5, 0x25, 0xbb, 0x8e, 0xab, 0xd6, 0xae, 0xad, 0xe4, 0xbc, 0xae, 0x67, 0x74, 0x04, 0x46, 0xbd, 0xb6, 0xe5, 0x6b, 0x2f, 0xe6, 0xb3, 0x34, 0x42, 0xf8, 0xd3, 0xfc, 0xdf, 0x8f, 0xc2, 0xc4, 0x30, 0x21, 0x76, 0x1e, 0x92, 0xbb, 0x64, 0x94, 0xf9, 0xd8, 0x61, 0x7c, 0xc0, 0x30, 0xdd, 0x4e, 0x1c, 0xbd, 0x4f, 0x27, 0x96, 0x20, 0x63, 0x61, 0xcf, 0xc7, 0x75, 0x16, 0x11, 0xf1, 0x21, 0x63, 0x0a, 0x18, 0xa8, 0x3f, 0xa4, 0x12, 0xf7, 0x15, 0x52, 0x97, 0x61, 0x22, 0x30, 0x49, 0x75, 0x35, 0xab, 0x21, 0x62, 0xf3, 0x78, 0x94, 0x25, 0x8b, 0x15, 0x81, 0x53, 0x08, 0x4c, 0xc9, 0xe1, 0xae, 0x67, 0xb4, 0x0c, 0x60, 0x5b, 0xd8, 0xde, 0x55, 0xeb, 0x58, 0x37, 0xf3, 0xa9, 0x03, 0xbc, 0xb4, 0x4e, 0x54, 0xfa, 0xbc, 0x64, 0x33, 0xa9, 0x6e, 0xa2, 0x67, 0x3b, 0xa1, 0x36, 0x76, 0x40, 0xa4, 0xd4, 0xd8, 0x22, 0xeb, 0x8b, 0xb6, 0x6d, 0xc8, 0xb9, 0x98, 0xc4, 0x3d, 0xae, 0xf3, 0x91, 0xa5, 0xa9, 0x11, 0x8b, 0x91, 0x23, 0x53, 0x38, 0x8c, 0x0d, 0x6c, 0xdc, 0x0d, 0x3f, 0xa2, 0x63, 0x10, 0x08, 0x54, 0x1a, 0x56, 0x40, 0x77, 0xa1, 0xac, 0x10, 0xae, 0x69, 0x4d, 0x3c, 0x73, 0x13, 0x72, 0xdd, 0xee, 0x41, 0xd3, 0x90, 0xf4, 0x7c, 0xcd, 0xf5, 0x69, 0x14, 0x26, 0x15, 0xf6, 0x80, 0x64, 0x88, 0x63, 0xab, 0x4e, 0x77, 0xb9, 0xa4, 0x42, 0x7e, 0xa2, 0x9f, 0xeb, 0x0c, 0x38, 0x4e, 0x07, 0xfc, 0x78, 0xff, 0x8c, 0x76, 0x31, 0xf7, 0x8e, 0x7b, 0xe6, 0x2c, 0x8c, 0x77, 0x0d, 0x60, 0xd8, 0xae, 0xe7, 0x7f, 0x09, 0x1e, 0x18, 0x48, 0x8d, 0x2e, 0xc3, 0x74, 0xcb, 0x32, 0x2c, 0x1f, 0xbb, 0x8e, 0x8b, 0x49, 0xc4, 0xb2, 0xae, 0xf2, 0xff, 0x3e, 0x76, 0x40, 0xcc, 0x6d, 0x87, 0xb5, 0x19, 0x8b, 0x32, 0xd5, 0xea, 0x17, 0x3e, 0x95, 0x4e, 0xbd, 0x3d, 0x26, 0xdf, 0xba, 0x75, 0xeb, 0x56, 0x6c, 0xfe, 0x0b, 0xa3, 0x30, 0x3d, 0x68, 0xcd, 0x0c, 0x5c, 0xbe, 0x47, 0x60, 0xd4, 0x6a, 0x35, 0x77, 0xb0, 0x4b, 0x9d, 0x94, 0x54, 0xf8, 0x13, 0x2a, 0x41, 0xd2, 0xd4, 0x76, 0xb0, 0x99, 0x4f, 0xcc, 0x49, 0x0b, 0xb9, 0x13, 0x4f, 0x0f, 0xb5, 0x2a, 0x17, 0x57, 0x09, 0x44, 0x61, 0x48, 0xf4, 0x1c, 0x24, 0xf8, 0x16, 0x4d, 0x18, 0x9e, 0x1a, 0x8e, 0x81, 0xac, 0x25, 0x85, 0xe2, 0xd0, 0xc3, 0x90, 0x26, 0x7f, 0x59, 0x6c, 0x8c, 0x52, 0x9b, 0x53, 0x44, 0x40, 0xe2, 0x02, 0xcd, 0x40, 0x8a, 0x2e, 0x93, 0x3a, 0x16, 0xa9, 0x2d, 0x78, 0x26, 0x81, 0x55, 0xc7, 0xbb, 0x5a, 0xcb, 0xf4, 0xd5, 0xeb, 0x9a, 0xd9, 0xc2, 0x34, 0xe0, 0xd3, 0x4a, 0x96, 0x0b, 0x3f, 0x4d, 0x64, 0x68, 0x16, 0x32, 0x6c, 0x55, 0x19, 0x56, 0x1d, 0xbf, 0x48, 0x77, 0xcf, 0xa4, 0xc2, 0x16, 0x5a, 0x95, 0x48, 0x48, 0xf7, 0x57, 0x3d, 0xdb, 0x12, 0xa1, 0x49, 0xbb, 0x20, 0x02, 0xda, 0xfd, 0xd9, 0xde, 0x8d, 0xfb, 0x91, 0xc1, 0xc3, 0xeb, 0x8d, 0xa9, 0xf9, 0xef, 0xc4, 0x20, 0x41, 0xf7, 0x8b, 0x09, 0xc8, 0x6c, 0x5d, 0xd9, 0xa8, 0xa8, 0xcb, 0xeb, 0xdb, 0xe5, 0xd5, 0x8a, 0x2c, 0xa1, 0x1c, 0x00, 0x15, 0x5c, 0x58, 0x5d, 0x2f, 0x6d, 0xc9, 0xb1, 0xe0, 0xb9, 0xba, 0xb6, 0x75, 0xe6, 0x94, 0x1c, 0x0f, 0x00, 0xdb, 0x4c, 0x90, 0x08, 0x2b, 0x9c, 0x3c, 0x21, 0x27, 0x91, 0x0c, 0x59, 0x46, 0x50, 0xbd, 0x5c, 0x59, 0x3e, 0x73, 0x4a, 0x1e, 0xed, 0x96, 0x9c, 0x3c, 0x21, 0x8f, 0xa1, 0x71, 0x48, 0x53, 0x49, 0x79, 0x7d, 0x7d, 0x55, 0x4e, 0x05, 0x9c, 0x9b, 0x5b, 0x4a, 0x75, 0x6d, 0x45, 0x4e, 0x07, 0x9c, 0x2b, 0xca, 0xfa, 0xf6, 0x86, 0x0c, 0x01, 0x43, 0xad, 0xb2, 0xb9, 0x59, 0x5a, 0xa9, 0xc8, 0x99, 0x40, 0xa3, 0x7c, 0x65, 0xab, 0xb2, 0x29, 0x67, 0xbb, 0xcc, 0x3a, 0x79, 0x42, 0x1e, 0x0f, 0xba, 0xa8, 0xac, 0x6d, 0xd7, 0xe4, 0x1c, 0x9a, 0x84, 0x71, 0xd6, 0x85, 0x30, 0x62, 0xa2, 0x47, 0x74, 0xe6, 0x94, 0x2c, 0x77, 0x0c, 0x61, 0x2c, 0x93, 0x5d, 0x82, 0x33, 0xa7, 0x64, 0x34, 0xbf, 0x04, 0x49, 0x1a, 0x5d, 0x08, 0x41, 0x6e, 0xb5, 0x54, 0xae, 0xac, 0xaa, 0xeb, 0x1b, 0x5b, 0xd5, 0xf5, 0xb5, 0xd2, 0xaa, 0x2c, 0x75, 0x64, 0x4a, 0xe5, 0x53, 0xdb, 0x55, 0xa5, 0xb2, 0x2c, 0xc7, 0xc2, 0xb2, 0x8d, 0x4a, 0x69, 0xab, 0xb2, 0x2c, 0xc7, 0xe7, 0x75, 0x98, 0x1e, 0xb4, 0x4f, 0x0e, 0x5c, 0x19, 0xa1, 0x29, 0x8e, 0x1d, 0x30, 0xc5, 0x94, 0xab, 0x6f, 0x8a, 0xbf, 0x2c, 0xc1, 0xd4, 0x80, 0x5c, 0x31, 0xb0, 0x93, 0xe7, 0x21, 0xc9, 0x42, 0x94, 0x65, 0xcf, 0x27, 0x07, 0x26, 0x1d, 0x1a, 0xb0, 0x7d, 0x19, 0x94, 0xe2, 0xc2, 0x15, 0x44, 0xfc, 0x80, 0x0a, 0x82, 0x50, 0xf4, 0x19, 0xf9, 0x92, 0x04, 0xf9, 0x83, 0xb8, 0x23, 0x36, 0x8a, 0x58, 0xd7, 0x46, 0x71, 0xbe, 0xd7, 0x80, 0xa3, 0x07, 0x8f, 0xa1, 0xcf, 0x8a, 0xd7, 0x24, 0x38, 0x32, 0xb8, 0xd0, 0x1a, 0x68, 0xc3, 0x73, 0x30, 0xda, 0xc4, 0xfe, 0x9e, 0x2d, 0x8a, 0x8d, 0xc7, 0x07, 0xa4, 0x30, 0xd2, 0xdc, 0xeb, 0x2b, 0x8e, 0x0a, 0xe7, 0xc0, 0xf8, 0x41, 0xd5, 0x12, 0xb3, 0xa6, 0xcf, 0xd2, 0xcf, 0xc7, 0xe0, 0x81, 0x81, 0xe4, 0x03, 0x0d, 0x7d, 0x04, 0xc0, 0xb0, 0x9c, 0x96, 0xcf, 0x0a, 0x0a, 0xb6, 0x3f, 0xa5, 0xa9, 0x84, 0xae, 0x7d, 0xb2, 0xf7, 0xb4, 0xfc, 0xa0, 0x3d, 0x4e, 0xdb, 0x81, 0x89, 0xa8, 0xc2, 0xb9, 0x8e, 0xa1, 0x09, 0x6a, 0x68, 0xe1, 0x80, 0x91, 0xf6, 0xe5, 0xea, 0x67, 0x40, 0xd6, 0x4d, 0x03, 0x5b, 0xbe, 0xea, 0xf9, 0x2e, 0xd6, 0x9a, 0x86, 0xd5, 0xa0, 0x1b, 0x70, 0xaa, 0x98, 0xdc, 0xd5, 0x4c, 0x0f, 0x2b, 0x13, 0xac, 0x79, 0x53, 0xb4, 0x12, 0x04, 0xcd, 0x71, 0x6e, 0x08, 0x31, 0xda, 0x85, 0x60, 0xcd, 0x01, 0x62, 0xfe, 0x5b, 0x29, 0xc8, 0x84, 0xca, 0x52, 0x74, 0x14, 0xb2, 0x57, 0xb5, 0xeb, 0x9a, 0x2a, 0x8e, 0x1a, 0xcc, 0x13, 0x19, 0x22, 0xdb, 0xe0, 0xc7, 0x8d, 0x67, 0x60, 0x9a, 0xaa, 0xd8, 0x2d, 0x1f, 0xbb, 0xaa, 0x6e, 0x6a, 0x9e, 0x47, 0x9d, 0x96, 0xa2, 0xaa, 0x88, 0xb4, 0xad, 0x93, 0xa6, 0x25, 0xd1, 0x82, 0x4e, 0xc3, 0x14, 0x45, 0x34, 0x5b, 0xa6, 0x6f, 0x38, 0x26, 0x56, 0xc9, 0xe1, 0xc7, 0xa3, 0x1b, 0x71, 0x60, 0xd9, 0x24, 0xd1, 0xa8, 0x71, 0x05, 0x62, 0x91, 0x87, 0x96, 0xe1, 0x11, 0x0a, 0x6b, 0x60, 0x0b, 0xbb, 0x9a, 0x8f, 0x55, 0xfc, 0x99, 0x96, 0x66, 0x7a, 0xaa, 0x66, 0xd5, 0xd5, 0x3d, 0xcd, 0xdb, 0xcb, 0x4f, 0x13, 0x82, 0x72, 0x2c, 0x2f, 0x29, 0x0f, 0x11, 0xc5, 0x15, 0xae, 0x57, 0xa1, 0x6a, 0x25, 0xab, 0xfe, 0x49, 0xcd, 0xdb, 0x43, 0x45, 0x38, 0x42, 0x59, 0x3c, 0xdf, 0x35, 0xac, 0x86, 0xaa, 0xef, 0x61, 0xfd, 0x9a, 0xda, 0xf2, 0x77, 0xcf, 0xe5, 0x1f, 0x0e, 0xf7, 0x4f, 0x2d, 0xdc, 0xa4, 0x3a, 0x4b, 0x44, 0x65, 0xdb, 0xdf, 0x3d, 0x87, 0x36, 0x21, 0x4b, 0x26, 0xa3, 0x69, 0xdc, 0xc4, 0xea, 0xae, 0xed, 0xd2, 0xcc, 0x92, 0x1b, 0xb0, 0xb2, 0x43, 0x1e, 0x5c, 0x5c, 0xe7, 0x80, 0x9a, 0x5d, 0xc7, 0xc5, 0xe4, 0xe6, 0x46, 0xa5, 0xb2, 0xac, 0x64, 0x04, 0xcb, 0x05, 0xdb, 0x25, 0x01, 0xd5, 0xb0, 0x03, 0x07, 0x67, 0x58, 0x40, 0x35, 0x6c, 0xe1, 0xde, 0xd3, 0x30, 0xa5, 0xeb, 0x6c, 0xcc, 0x86, 0xae, 0xf2, 0x23, 0x8a, 0x97, 0x97, 0xbb, 0x9c, 0xa5, 0xeb, 0x2b, 0x4c, 0x81, 0xc7, 0xb8, 0x87, 0x9e, 0x85, 0x07, 0x3a, 0xce, 0x0a, 0x03, 0x27, 0xfb, 0x46, 0xd9, 0x0b, 0x3d, 0x0d, 0x53, 0x4e, 0xbb, 0x1f, 0x88, 0xba, 0x7a, 0x74, 0xda, 0xbd, 0xb0, 0xb3, 0x30, 0xed, 0xec, 0x39, 0xfd, 0xb8, 0xa9, 0x30, 0x0e, 0x39, 0x7b, 0x4e, 0x2f, 0xf0, 0x31, 0x7a, 0x5e, 0x75, 0xb1, 0xae, 0xf9, 0xb8, 0x9e, 0x7f, 0x30, 0xac, 0x1e, 0x6a, 0x40, 0xc7, 0x41, 0xd6, 0x75, 0x15, 0x5b, 0xda, 0x8e, 0x89, 0x55, 0xcd, 0xc5, 0x96, 0xe6, 0xe5, 0x67, 0xc3, 0xca, 0x39, 0x5d, 0xaf, 0xd0, 0xd6, 0x12, 0x6d, 0x44, 0x4f, 0xc1, 0xa4, 0xbd, 0x73, 0x55, 0x67, 0x21, 0xa9, 0x3a, 0x2e, 0xde, 0x35, 0x5e, 0xcc, 0x3f, 0x4a, 0xfd, 0x3b, 0x41, 0x1a, 0x68, 0x40, 0x6e, 0x50, 0x31, 0x7a, 0x12, 0x64, 0xdd, 0xdb, 0xd3, 0x5c, 0x87, 0xd6, 0x04, 0x9e, 0xa3, 0xe9, 0x38, 0xff, 0x18, 0x53, 0x65, 0xf2, 0x35, 0x21, 0x26, 0x4b, 0xc2, 0xbb, 0x61, 0xec, 0xfa, 0x82, 0xf1, 0x09, 0xb6, 0x24, 0xa8, 0x8c, 0xb3, 0x2d, 0x80, 0x4c, 0x5c, 0xd1, 0xd5, 0xf1, 0x02, 0x55, 0xcb, 0x39, 0x7b, 0x4e, 0xb8, 0xdf, 0x63, 0x30, 0x4e, 0x34, 0x3b, 0x9d, 0x3e, 0xc9, 0xea, 0x19, 0x67, 0x2f, 0xd4, 0xe3, 0x07, 0x56, 0x5a, 0xce, 0x17, 0x21, 0x1b, 0x8e, 0x4f, 0x94, 0x06, 0x16, 0xa1, 0xb2, 0x44, 0x72, 0xfd, 0xd2, 0xfa, 0x32, 0xc9, 0xd2, 0x2f, 0x54, 0xe4, 0x18, 0xa9, 0x16, 0x56, 0xab, 0x5b, 0x15, 0x55, 0xd9, 0x5e, 0xdb, 0xaa, 0xd6, 0x2a, 0x72, 0x3c, 0x5c, 0x96, 0x7e, 0x3f, 0x06, 0xb9, 0xee, 0x13, 0x06, 0xfa, 0x38, 0x3c, 0x28, 0xae, 0x03, 0x3c, 0xec, 0xab, 0x37, 0x0c, 0x97, 0x2e, 0x99, 0xa6, 0xc6, 0x2a, 0xec, 0x60, 0xd2, 0xa6, 0xb9, 0xd6, 0x26, 0xf6, 0x2f, 0x19, 0x2e, 0x59, 0x10, 0x4d, 0xcd, 0x47, 0xab, 0x30, 0x6b, 0xd9, 0xaa, 0xe7, 0x6b, 0x56, 0x5d, 0x73, 0xeb, 0x6a, 0xe7, 0x22, 0x46, 0xd5, 0x74, 0x1d, 0x7b, 0x9e, 0xcd, 0x52, 0x55, 0xc0, 0xf2, 0x11, 0xcb, 0xde, 0xe4, 0xca, 0x9d, 0x3d, 0xbc, 0xc4, 0x55, 0x7b, 0x02, 0x2c, 0x7e, 0x50, 0x80, 0x3d, 0x0c, 0xe9, 0xa6, 0xe6, 0xa8, 0xd8, 0xf2, 0xdd, 0x36, 0xad, 0x2b, 0x53, 0x4a, 0xaa, 0xa9, 0x39, 0x15, 0xf2, 0xfc, 0xe1, 0x94, 0xf7, 0xff, 0x1a, 0x87, 0x6c, 0xb8, 0xb6, 0x24, 0xa5, 0xba, 0x4e, 0xf3, 0x88, 0x44, 0x77, 0x9a, 0x63, 0xf7, 0xac, 0x44, 0x17, 0x97, 0x48, 0x82, 0x29, 0x8e, 0xb2, 0x8a, 0x4f, 0x61, 0x48, 0x92, 0xdc, 0xc9, 0xde, 0x82, 0xd9, 0x29, 0x26, 0xa5, 0xf0, 0x27, 0xb4, 0x02, 0xa3, 0x57, 0x3d, 0xca, 0x3d, 0x4a, 0xb9, 0x1f, 0xbd, 0x37, 0xf7, 0xc5, 0x4d, 0x4a, 0x9e, 0xbe, 0xb8, 0xa9, 0xae, 0xad, 0x2b, 0xb5, 0xd2, 0xaa, 0xc2, 0xe1, 0xe8, 0x21, 0x48, 0x98, 0xda, 0xcd, 0x76, 0x77, 0x2a, 0xa2, 0xa2, 0x61, 0x1d, 0xff, 0x10, 0x24, 0x6e, 0x60, 0xed, 0x5a, 0x77, 0x02, 0xa0, 0xa2, 0x0f, 0x30, 0xf4, 0x8f, 0x43, 0x92, 0xfa, 0x0b, 0x01, 0x70, 0x8f, 0xc9, 0x23, 0x28, 0x05, 0x89, 0xa5, 0x75, 0x85, 0x84, 0xbf, 0x0c, 0x59, 0x26, 0x55, 0x37, 0xaa, 0x95, 0xa5, 0x8a, 0x1c, 0x9b, 0x3f, 0x0d, 0xa3, 0xcc, 0x09, 0x64, 0x69, 0x04, 0x6e, 0x90, 0x47, 0xf8, 0x23, 0xe7, 0x90, 0x44, 0xeb, 0x76, 0xad, 0x5c, 0x51, 0xe4, 0x58, 0x78, 0x7a, 0x3d, 0xc8, 0x86, 0xcb, 0xca, 0x0f, 0x27, 0xa6, 0xfe, 0x41, 0x82, 0x4c, 0xa8, 0x4c, 0x24, 0x05, 0x8a, 0x66, 0x9a, 0xf6, 0x0d, 0x55, 0x33, 0x0d, 0xcd, 0xe3, 0x41, 0x01, 0x54, 0x54, 0x22, 0x92, 0x61, 0x27, 0xed, 0x43, 0x31, 0xfe, 0x55, 0x09, 0xe4, 0xde, 0x12, 0xb3, 0xc7, 0x40, 0xe9, 0x67, 0x6a, 0xe0, 0x2b, 0x12, 0xe4, 0xba, 0xeb, 0xca, 0x1e, 0xf3, 0x8e, 0xfe, 0x4c, 0xcd, 0x7b, 0x33, 0x06, 0xe3, 0x5d, 0xd5, 0xe4, 0xb0, 0xd6, 0x7d, 0x06, 0x26, 0x8d, 0x3a, 0x6e, 0x3a, 0xb6, 0x8f, 0x2d, 0xbd, 0xad, 0x9a, 0xf8, 0x3a, 0x36, 0xf3, 0xf3, 0x74, 0xa3, 0x38, 0x7e, 0xef, 0x7a, 0x75, 0xb1, 0xda, 0xc1, 0xad, 0x12, 0x58, 0x71, 0xaa, 0xba, 0x5c, 0xa9, 0x6d, 0xac, 0x6f, 0x55, 0xd6, 0x96, 0xae, 0xa8, 0xdb, 0x6b, 0x3f, 0xbf, 0xb6, 0x7e, 0x69, 0x4d, 0x91, 0x8d, 0x1e, 0xb5, 0x0f, 0x70, 0xa9, 0x6f, 0x80, 0xdc, 0x6b, 0x14, 0x7a, 0x10, 0x06, 0x99, 0x25, 0x8f, 0xa0, 0x29, 0x98, 0x58, 0x5b, 0x57, 0x37, 0xab, 0xcb, 0x15, 0xb5, 0x72, 0xe1, 0x42, 0x65, 0x69, 0x6b, 0x93, 0x1d, 0xe0, 0x03, 0xed, 0xad, 0xee, 0x45, 0xfd, 0x72, 0x1c, 0xa6, 0x06, 0x58, 0x82, 0x4a, 0xfc, 0xec, 0xc0, 0x8e, 0x33, 0x1f, 0x1b, 0xc6, 0xfa, 0x45, 0x92, 0xf2, 0x37, 0x34, 0xd7, 0xe7, 0x47, 0x8d, 0x27, 0x81, 0x78, 0xc9, 0xf2, 0x8d, 0x5d, 0x03, 0xbb, 0xfc, 0xbe, 0x83, 0x1d, 0x28, 0x26, 0x3a, 0x72, 0x76, 0xe5, 0xf1, 0x51, 0x40, 0x8e, 0xed, 0x19, 0xbe, 0x71, 0x1d, 0xab, 0x86, 0x25, 0x2e, 0x47, 0xc8, 0x01, 0x23, 0xa1, 0xc8, 0xa2, 0xa5, 0x6a, 0xf9, 0x81, 0xb6, 0x85, 0x1b, 0x5a, 0x8f, 0x36, 0xd9, 0xc0, 0xe3, 0x8a, 0x2c, 0x5a, 0x02, 0xed, 0xa3, 0x90, 0xad, 0xdb, 0x2d, 0x52, 0x75, 0x31, 0x3d, 0x92, 0x2f, 0x24, 0x25, 0xc3, 0x64, 0x81, 0x0a, 0xaf, 0xa7, 0x3b, 0xb7, 0x32, 0x59, 0x25, 0xc3, 0x64, 0x4c, 0xe5, 0x09, 0x98, 0xd0, 0x1a, 0x0d, 0x97, 0x90, 0x0b, 0x22, 0x76, 0x42, 0xc8, 0x05, 0x62, 0xaa, 0x38, 0x73, 0x11, 0x52, 0xc2, 0x0f, 0x24, 0x25, 0x13, 0x4f, 0xa8, 0x0e, 0xbb, 0x99, 0x8b, 0x2d, 0xa4, 0x95, 0x94, 0x25, 0x1a, 0x8f, 0x42, 0xd6, 0xf0, 0xd4, 0xce, 0x25, 0x73, 0x6c, 0x2e, 0xb6, 0x90, 0x52, 0x32, 0x86, 0x17, 0x5c, 0xd0, 0xcd, 0xbf, 0x16, 0x83, 0x5c, 0xf7, 0x25, 0x39, 0x5a, 0x86, 0x94, 0x69, 0xeb, 0x1a, 0x0d, 0x2d, 0xf6, 0x86, 0x66, 0x21, 0xe2, 0x5e, 0x7d, 0x71, 0x95, 0xeb, 0x2b, 0x01, 0x72, 0xe6, 0x9f, 0x25, 0x48, 0x09, 0x31, 0x3a, 0x02, 0x09, 0x47, 0xf3, 0xf7, 0x28, 0x5d, 0xb2, 0x1c, 0x93, 0x25, 0x85, 0x3e, 0x13, 0xb9, 0xe7, 0x68, 0x16, 0x0d, 0x01, 0x2e, 0x27, 0xcf, 0x64, 0x5e, 0x4d, 0xac, 0xd5, 0xe9, 0xf1, 0xc3, 0x6e, 0x36, 0xb1, 0xe5, 0x7b, 0x62, 0x5e, 0xb9, 0x7c, 0x89, 0x8b, 0xd1, 0xd3, 0x30, 0xe9, 0xbb, 0x9a, 0x61, 0x76, 0xe9, 0x26, 0xa8, 0xae, 0x2c, 0x1a, 0x02, 0xe5, 0x22, 0x3c, 0x24, 0x78, 0xeb, 0xd8, 0xd7, 0xf4, 0x3d, 0x5c, 0xef, 0x80, 0x46, 0xe9, 0x0d, 0xec, 0x83, 0x5c, 0x61, 0x99, 0xb7, 0x0b, 0xec, 0xfc, 0x0f, 0x25, 0x98, 0x14, 0x07, 0xa6, 0x7a, 0xe0, 0xac, 0x1a, 0x80, 0x66, 0x59, 0xb6, 0x1f, 0x76, 0x57, 0x7f, 0x28, 0xf7, 0xe1, 0x16, 0x4b, 0x01, 0x48, 0x09, 0x11, 0xcc, 0x34, 0x01, 0x3a, 0x2d, 0x07, 0xba, 0x6d, 0x16, 0x32, 0xfc, 0x0d, 0x08, 0x7d, 0x8d, 0xc6, 0x8e, 0xd8, 0xc0, 0x44, 0xe4, 0x64, 0x85, 0xa6, 0x21, 0xb9, 0x83, 0x1b, 0x86, 0xc5, 0xef, 0x35, 0xd9, 0x83, 0xb8, 0xab, 0x4d, 0x04, 0x77, 0xb5, 0xe5, 0xcb, 0x30, 0xa5, 0xdb, 0xcd, 0x5e, 0x73, 0xcb, 0x72, 0xcf, 0x31, 0xdf, 0xfb, 0xa4, 0xf4, 0x02, 0x74, 0x4a, 0xcc, 0x2f, 0xc7, 0xe2, 0x2b, 0x1b, 0xe5, 0xaf, 0xc6, 0x66, 0x56, 0x18, 0x6e, 0x43, 0x0c, 0x53, 0xc1, 0xbb, 0x26, 0xd6, 0x89, 0xe9, 0xf0, 0xe3, 0xc7, 0xe1, 0x63, 0x0d, 0xc3, 0xdf, 0x6b, 0xed, 0x2c, 0xea, 0x76, 0xf3, 0x78, 0xc3, 0x6e, 0xd8, 0x9d, 0xd7, 0x86, 0xe4, 0x89, 0x3e, 0xd0, 0x5f, 0xfc, 0xd5, 0x61, 0x3a, 0x90, 0xce, 0x44, 0xbe, 0x67, 0x2c, 0xae, 0xc1, 0x14, 0x57, 0x56, 0xe9, 0xbb, 0x0b, 0x76, 0x84, 0x40, 0xf7, 0xbc, 0xff, 0xc9, 0x7f, 0xe3, 0x2d, 0x9a, 0xab, 0x95, 0x49, 0x0e, 0x25, 0x6d, 0xec, 0x94, 0x51, 0x54, 0xe0, 0x81, 0x2e, 0x3e, 0xb6, 0x2e, 0xb1, 0x1b, 0xc1, 0xf8, 0x7d, 0xce, 0x38, 0x15, 0x62, 0xdc, 0xe4, 0xd0, 0xe2, 0x12, 0x8c, 0x1f, 0x86, 0xeb, 0x1f, 0x39, 0x57, 0x16, 0x87, 0x49, 0x56, 0x60, 0x82, 0x92, 0xe8, 0x2d, 0xcf, 0xb7, 0x9b, 0x74, 0xd3, 0xbb, 0x37, 0xcd, 0x3f, 0xbd, 0xc5, 0x16, 0x4a, 0x8e, 0xc0, 0x96, 0x02, 0x54, 0xb1, 0x08, 0xf4, 0x75, 0x4d, 0x1d, 0xeb, 0x66, 0x04, 0xc3, 0xeb, 0xdc, 0x90, 0x40, 0xbf, 0xf8, 0x69, 0x98, 0x26, 0xbf, 0xe9, 0x9e, 0x14, 0xb6, 0x24, 0xfa, 0xb6, 0x2b, 0xff, 0xc3, 0x97, 0xd8, 0x5a, 0x9c, 0x0a, 0x08, 0x42, 0x36, 0x85, 0x66, 0xb1, 0x81, 0x7d, 0x1f, 0xbb, 0x9e, 0xaa, 0x99, 0x83, 0xcc, 0x0b, 0x5d, 0x17, 0xe4, 0xbf, 0xf8, 0x4e, 0xf7, 0x2c, 0xae, 0x30, 0x64, 0xc9, 0x34, 0x8b, 0xdb, 0xf0, 0xe0, 0x80, 0xa8, 0x18, 0x82, 0xf3, 0x65, 0xce, 0x39, 0xdd, 0x17, 0x19, 0x84, 0x76, 0x03, 0x84, 0x3c, 0x98, 0xcb, 0x21, 0x38, 0xff, 0x88, 0x73, 0x22, 0x8e, 0x15, 0x53, 0x4a, 0x18, 0x2f, 0xc2, 0xe4, 0x75, 0xec, 0xee, 0xd8, 0x1e, 0xbf, 0xa2, 0x19, 0x82, 0xee, 0x15, 0x4e, 0x37, 0xc1, 0x81, 0xf4, 0xce, 0x86, 0x70, 0x3d, 0x0b, 0xa9, 0x5d, 0x4d, 0xc7, 0x43, 0x50, 0x7c, 0x89, 0x53, 0x8c, 0x11, 0x7d, 0x02, 0x2d, 0x41, 0xb6, 0x61, 0xf3, 0xb4, 0x14, 0x0d, 0x7f, 0x95, 0xc3, 0x33, 0x02, 0xc3, 0x29, 0x1c, 0xdb, 0x69, 0x99, 0x24, 0x67, 0x45, 0x53, 0xfc, 0xb1, 0xa0, 0x10, 0x18, 0x4e, 0x71, 0x08, 0xb7, 0xfe, 0x89, 0xa0, 0xf0, 0x42, 0xfe, 0x7c, 0x1e, 0x32, 0xb6, 0x65, 0xb6, 0x6d, 0x6b, 0x18, 0x23, 0xfe, 0x94, 0x33, 0x00, 0x87, 0x10, 0x82, 0xf3, 0x90, 0x1e, 0x76, 0x22, 0xfe, 0xec, 0x1d, 0xb1, 0x3c, 0xc4, 0x0c, 0xac, 0xc0, 0x84, 0xd8, 0xa0, 0x0c, 0xdb, 0x1a, 0x82, 0xe2, 0xcf, 0x39, 0x45, 0x2e, 0x04, 0xe3, 0xc3, 0xf0, 0xb1, 0xe7, 0x37, 0xf0, 0x30, 0x24, 0xaf, 0x89, 0x61, 0x70, 0x08, 0x77, 0xe5, 0x0e, 0xb6, 0xf4, 0xbd, 0xe1, 0x18, 0xbe, 0x22, 0x5c, 0x29, 0x30, 0x84, 0x62, 0x09, 0xc6, 0x9b, 0x9a, 0xeb, 0xed, 0x69, 0xe6, 0x50, 0xd3, 0xf1, 0x17, 0x9c, 0x23, 0x1b, 0x80, 0xb8, 0x47, 0x5a, 0xd6, 0x61, 0x68, 0xbe, 0x2a, 0x3c, 0x12, 0x82, 0xf1, 0xa5, 0xe7, 0xf9, 0xf4, 0x3e, 0xeb, 0x30, 0x6c, 0x5f, 0x13, 0x4b, 0x8f, 0x61, 0x6b, 0x61, 0xc6, 0xf3, 0x90, 0xf6, 0x8c, 0x9b, 0x43, 0xd1, 0xfc, 0xa5, 0x98, 0x69, 0x0a, 0x20, 0xe0, 0x2b, 0xf0, 0xd0, 0xc0, 0x34, 0x31, 0x04, 0xd9, 0x5f, 0x71, 0xb2, 0x23, 0x03, 0x52, 0x05, 0xdf, 0x12, 0x0e, 0x4b, 0xf9, 0xd7, 0x62, 0x4b, 0xc0, 0x3d, 0x5c, 0x1b, 0xe4, 0xa0, 0xe0, 0x69, 0xbb, 0x87, 0xf3, 0xda, 0xdf, 0x08, 0xaf, 0x31, 0x6c, 0x97, 0xd7, 0xb6, 0xe0, 0x08, 0x67, 0x3c, 0xdc, 0xbc, 0x7e, 0x5d, 0x6c, 0xac, 0x0c, 0xbd, 0xdd, 0x3d, 0xbb, 0xbf, 0x00, 0x33, 0x81, 0x3b, 0x45, 0x45, 0xea, 0xa9, 0x4d, 0xcd, 0x19, 0x82, 0xf9, 0x1b, 0x9c, 0x59, 0xec, 0xf8, 0x41, 0x49, 0xeb, 0xd5, 0x34, 0x87, 0x90, 0x5f, 0x86, 0xbc, 0x20, 0x6f, 0x59, 0x2e, 0xd6, 0xed, 0x86, 0x65, 0xdc, 0xc4, 0xf5, 0x21, 0xa8, 0xbf, 0xd9, 0x33, 0x55, 0xdb, 0x21, 0x38, 0x61, 0xae, 0x82, 0x1c, 0xd4, 0x2a, 0xaa, 0xd1, 0x74, 0x6c, 0xd7, 0x8f, 0x60, 0xfc, 0x96, 0x98, 0xa9, 0x00, 0x57, 0xa5, 0xb0, 0x62, 0x05, 0x72, 0xf4, 0x71, 0xd8, 0x90, 0xfc, 0x5b, 0x4e, 0x34, 0xde, 0x41, 0xf1, 0x8d, 0x43, 0xb7, 0x9b, 0x8e, 0xe6, 0x0e, 0xb3, 0xff, 0x7d, 0x5b, 0x6c, 0x1c, 0x1c, 0xc2, 0x37, 0x0e, 0xbf, 0xed, 0x60, 0x92, 0xed, 0x87, 0x60, 0xf8, 0x8e, 0xd8, 0x38, 0x04, 0x86, 0x53, 0x88, 0x82, 0x61, 0x08, 0x8a, 0xbf, 0x13, 0x14, 0x02, 0x43, 0x28, 0x3e, 0xd5, 0x49, 0xb4, 0x2e, 0x6e, 0x18, 0x9e, 0xef, 0xb2, 0x3a, 0xf8, 0xde, 0x54, 0xdf, 0x7d, 0xa7, 0xbb, 0x08, 0x53, 0x42, 0xd0, 0xe2, 0x45, 0x98, 0xe8, 0x29, 0x31, 0x50, 0xd4, 0xb7, 0x1f, 0xf9, 0x5f, 0x7e, 0x8f, 0x6f, 0x46, 0xdd, 0x15, 0x46, 0x71, 0x95, 0xcc, 0x7b, 0x77, 0x1d, 0x10, 0x4d, 0xf6, 0xd2, 0x7b, 0xc1, 0xd4, 0x77, 0x95, 0x01, 0xc5, 0x0b, 0x30, 0xde, 0x55, 0x03, 0x44, 0x53, 0xfd, 0x0a, 0xa7, 0xca, 0x86, 0x4b, 0x80, 0xe2, 0x69, 0x48, 0x90, 0x7c, 0x1e, 0x0d, 0xff, 0x55, 0x0e, 0xa7, 0xea, 0xc5, 0x4f, 0x40, 0x4a, 0xe4, 0xf1, 0x68, 0xe8, 0xaf, 0x71, 0x68, 0x00, 0x21, 0x70, 0x91, 0xc3, 0xa3, 0xe1, 0x9f, 0x13, 0x70, 0x01, 0x21, 0xf0, 0xe1, 0x5d, 0xf8, 0xbd, 0xdf, 0x48, 0xf0, 0x7d, 0x58, 0xf8, 0xee, 0x3c, 0x8c, 0xf1, 0xe4, 0x1d, 0x8d, 0xfe, 0x3c, 0xef, 0x5c, 0x20, 0x8a, 0x67, 0x21, 0x39, 0xa4, 0xc3, 0x7f, 0x93, 0x43, 0x99, 0x7e, 0x71, 0x09, 0x32, 0xa1, 0x84, 0x1d, 0x0d, 0xff, 0x2d, 0x0e, 0x0f, 0xa3, 0x88, 0xe9, 0x3c, 0x61, 0x47, 0x13, 0xfc, 0xb6, 0x30, 0x9d, 0x23, 0x88, 0xdb, 0x44, 0xae, 0x8e, 0x46, 0xff, 0x8e, 0xf0, 0xba, 0x80, 0x14, 0x9f, 0x87, 0x74, 0xb0, 0xff, 0x46, 0xe3, 0x7f, 0x97, 0xe3, 0x3b, 0x18, 0xe2, 0x81, 0xd0, 0xfe, 0x1f, 0x4d, 0xf1, 0x7b, 0xc2, 0x03, 0x21, 0x14, 0x59, 0x46, 0xbd, 0x39, 0x3d, 0x9a, 0xe9, 0xf7, 0xc5, 0x32, 0xea, 0x49, 0xe9, 0x64, 0x36, 0xe9, 0x36, 0x18, 0x4d, 0xf1, 0x07, 0x62, 0x36, 0xa9, 0x3e, 0x31, 0xa3, 0x37, 0x49, 0x46, 0x73, 0xfc, 0xa1, 0x30, 0xa3, 0x27, 0x47, 0x16, 0x37, 0x00, 0xf5, 0x27, 0xc8, 0x68, 0xbe, 0x2f, 0x70, 0xbe, 0xc9, 0xbe, 0xfc, 0x58, 0xbc, 0x04, 0x47, 0x06, 0x27, 0xc7, 0x68, 0xd6, 0x2f, 0xbe, 0xd7, 0x73, 0x9c, 0x09, 0xe7, 0xc6, 0xe2, 0x56, 0x67, 0x97, 0x0d, 0x27, 0xc6, 0x68, 0xda, 0x97, 0xdf, 0xeb, 0xde, 0x68, 0xc3, 0x79, 0xb1, 0x58, 0x02, 0xe8, 0xe4, 0xa4, 0x68, 0xae, 0x57, 0x38, 0x57, 0x08, 0x44, 0x96, 0x06, 0x4f, 0x49, 0xd1, 0xf8, 0x2f, 0x89, 0xa5, 0xc1, 0x11, 0x64, 0x69, 0x88, 0x6c, 0x14, 0x8d, 0x7e, 0x55, 0x2c, 0x0d, 0x01, 0x29, 0x9e, 0x87, 0x94, 0xd5, 0x32, 0x4d, 0x12, 0x5b, 0xe8, 0xde, 0x9f, 0x33, 0xe5, 0x7f, 0xf4, 0x3e, 0x07, 0x0b, 0x40, 0xf1, 0x34, 0x24, 0x71, 0x73, 0x07, 0xd7, 0xa3, 0x90, 0xff, 0xf1, 0xbe, 0xd8, 0x4f, 0x88, 0x76, 0xf1, 0x79, 0x00, 0x76, 0x98, 0xa6, 0x6f, 0x89, 0x22, 0xb0, 0xff, 0xf9, 0x3e, 0xff, 0x52, 0xa2, 0x03, 0xe9, 0x10, 0xb0, 0xef, 0x2e, 0xee, 0x4d, 0xf0, 0x4e, 0x37, 0x01, 0x3d, 0x80, 0x3f, 0x0b, 0x63, 0x57, 0x3d, 0xdb, 0xf2, 0xb5, 0x46, 0x14, 0xfa, 0xbf, 0x38, 0x5a, 0xe8, 0x13, 0x87, 0x35, 0x6d, 0x17, 0xfb, 0x5a, 0xc3, 0x8b, 0xc2, 0xfe, 0x37, 0xc7, 0x06, 0x00, 0x02, 0xd6, 0x35, 0xcf, 0x1f, 0x66, 0xdc, 0xff, 0x23, 0xc0, 0x02, 0x40, 0x8c, 0x26, 0xbf, 0xaf, 0xe1, 0x76, 0x14, 0xf6, 0x5d, 0x61, 0x34, 0xd7, 0x2f, 0x7e, 0x02, 0xd2, 0xe4, 0x27, 0xfb, 0x7a, 0x28, 0x02, 0xfc, 0xbf, 0x1c, 0xdc, 0x41, 0x90, 0x9e, 0x3d, 0xbf, 0xee, 0x1b, 0xd1, 0xce, 0xfe, 0x3f, 0x3e, 0xd3, 0x42, 0xbf, 0x58, 0x82, 0x8c, 0xe7, 0xd7, 0xeb, 0x2d, 0x5e, 0xd1, 0x44, 0xc0, 0x7f, 0xfc, 0x7e, 0x70, 0xc8, 0x0d, 0x30, 0xe5, 0xa3, 0x83, 0x2f, 0xeb, 0x60, 0xc5, 0x5e, 0xb1, 0xd9, 0x35, 0x1d, 0x7c, 0x73, 0x02, 0x1e, 0xd1, 0xed, 0xe6, 0x8e, 0xed, 0x1d, 0xb7, 0xb0, 0xe1, 0xef, 0x61, 0xf7, 0xb8, 0x70, 0x1b, 0xbf, 0x65, 0x0b, 0xdc, 0x38, 0x73, 0xb8, 0xeb, 0xb9, 0xf9, 0x1f, 0x8d, 0x43, 0x6a, 0x49, 0xf3, 0x7c, 0xed, 0x86, 0xd6, 0x46, 0x8f, 0x41, 0xaa, 0x6a, 0xf9, 0x27, 0x4f, 0x6c, 0xf8, 0x2e, 0x7d, 0xbd, 0x14, 0x2f, 0xa7, 0xef, 0xde, 0x9e, 0x4d, 0x1a, 0x44, 0xa6, 0x04, 0x4d, 0xe8, 0x18, 0x24, 0xe9, 0x6f, 0x7a, 0x43, 0x19, 0x2f, 0x8f, 0xbf, 0x7e, 0x7b, 0x76, 0xa4, 0xa3, 0xc7, 0xda, 0xd0, 0x15, 0xc8, 0xd4, 0xda, 0xdb, 0x86, 0xe5, 0x9f, 0x39, 0x45, 0xe8, 0xc8, 0xc0, 0x13, 0xe5, 0xb3, 0x77, 0x6f, 0xcf, 0x9e, 0x3c, 0xd0, 0x40, 0x92, 0x0e, 0x3b, 0x03, 0x13, 0x68, 0xfa, 0xf5, 0x64, 0x98, 0x0b, 0x5d, 0x82, 0x94, 0x78, 0x64, 0x37, 0xfd, 0xe5, 0xf3, 0xdc, 0x84, 0xfb, 0xe2, 0x0e, 0xc8, 0xd0, 0x2f, 0x42, 0xb6, 0xd6, 0xbe, 0x60, 0xda, 0x1a, 0xf7, 0x41, 0x72, 0x4e, 0x5a, 0x88, 0x95, 0xcf, 0xdd, 0xbd, 0x3d, 0x7b, 0x6a, 0x68, 0x62, 0x0e, 0xa7, 0xcc, 0x5d, 0x6c, 0xe8, 0x05, 0x48, 0x07, 0xcf, 0xf4, 0x5d, 0x42, 0xac, 0xfc, 0x71, 0x6e, 0xf7, 0xfd, 0xd1, 0x77, 0xe8, 0x42, 0x96, 0x33, 0x77, 0x8f, 0xcd, 0x49, 0x0b, 0xd2, 0xfd, 0x58, 0xce, 0x7d, 0xd2, 0xc5, 0x16, 0xb2, 0xfc, 0xcc, 0x29, 0xfa, 0xf2, 0x42, 0xba, 0x5f, 0xcb, 0x39, 0x7d, 0x87, 0x0e, 0x5d, 0x84, 0xb1, 0x5a, 0xbb, 0xdc, 0xf6, 0xb1, 0x47, 0xbf, 0x2a, 0xca, 0x96, 0x9f, 0xb9, 0x7b, 0x7b, 0xf6, 0xa3, 0x43, 0xb2, 0x52, 0x9c, 0x22, 0x08, 0xd0, 0x1c, 0x64, 0xd6, 0x6c, 0xb7, 0xa9, 0x99, 0x8c, 0x0f, 0xd8, 0xcb, 0x98, 0x90, 0x08, 0x6d, 0x93, 0x91, 0xb0, 0xd9, 0xf6, 0xe8, 0xff, 0x73, 0xfc, 0x14, 0x31, 0xd9, 0x61, 0x42, 0x06, 0x24, 0x6b, 0xed, 0x9a, 0xe6, 0xe4, 0xb3, 0xf4, 0x4d, 0xc1, 0x23, 0x8b, 0x01, 0x42, 0xac, 0xad, 0x45, 0xda, 0x4e, 0x3f, 0xa9, 0x28, 0x9f, 0xba, 0x7b, 0x7b, 0xf6, 0x99, 0xa1, 0x7b, 0xac, 0x69, 0x0e, 0xed, 0x8e, 0xf5, 0x80, 0xbe, 0x2d, 0x91, 0x85, 0xc5, 0x6e, 0x5b, 0x49, 0x8f, 0xe3, 0xb4, 0xc7, 0x63, 0x03, 0x7b, 0x0c, 0xb4, 0x58, 0xbf, 0xd6, 0x67, 0xdf, 0x38, 0xc4, 0x48, 0xd9, 0x89, 0x86, 0x74, 0xfd, 0xeb, 0x6f, 0xdc, 0xf7, 0xa2, 0x0d, 0x2c, 0x40, 0x2f, 0x49, 0x30, 0x5e, 0x6b, 0xaf, 0xf1, 0xdc, 0x4a, 0x2c, 0xcf, 0xf1, 0xaf, 0xfe, 0x07, 0x59, 0x1e, 0xd2, 0x63, 0xb6, 0x9f, 0xf9, 0xec, 0x1b, 0xb3, 0x27, 0x86, 0x36, 0x82, 0x6e, 0x41, 0xd4, 0x86, 0xee, 0x3e, 0xd1, 0xe7, 0xa8, 0x15, 0x15, 0x92, 0xa7, 0xeb, 0xb8, 0x4e, 0xac, 0x98, 0xb8, 0x87, 0x15, 0x21, 0x3d, 0x66, 0x45, 0x91, 0x44, 0xfd, 0xfd, 0x5b, 0x12, 0xe2, 0x43, 0xeb, 0x30, 0xca, 0x3c, 0x4c, 0xbf, 0x68, 0x4b, 0x1f, 0x32, 0x0c, 0x3b, 0x93, 0xa3, 0x70, 0x9a, 0x99, 0x73, 0x00, 0x9d, 0x18, 0x43, 0x32, 0xc4, 0xaf, 0xe1, 0x36, 0xff, 0x6c, 0x91, 0xfc, 0x44, 0xd3, 0x9d, 0xcf, 0x72, 0xa5, 0x85, 0x04, 0xff, 0xd6, 0xb6, 0x18, 0x3b, 0x27, 0xcd, 0x3c, 0x07, 0x72, 0x6f, 0xac, 0x1c, 0x0a, 0xaf, 0x00, 0xea, 0x9f, 0xb1, 0x30, 0x43, 0x92, 0x31, 0x3c, 0x1e, 0x66, 0xc8, 0x9c, 0x90, 0x3b, 0x3e, 0xbf, 0x64, 0x98, 0x9e, 0x6d, 0xf5, 0x71, 0xf6, 0xfa, 0xff, 0xa7, 0xe3, 0x9c, 0x2f, 0xc0, 0x28, 0x13, 0x92, 0xb1, 0x54, 0x69, 0xfa, 0xa0, 0x59, 0x4e, 0x61, 0x0f, 0xe5, 0xd5, 0xd7, 0xef, 0x14, 0x46, 0x7e, 0x70, 0xa7, 0x30, 0xf2, 0x2f, 0x77, 0x0a, 0x23, 0x6f, 0xde, 0x29, 0x48, 0x6f, 0xdf, 0x29, 0x48, 0xef, 0xde, 0x29, 0x48, 0x3f, 0xb9, 0x53, 0x90, 0x6e, 0xed, 0x17, 0xa4, 0xaf, 0xec, 0x17, 0xa4, 0xaf, 0xef, 0x17, 0xa4, 0xef, 0xee, 0x17, 0xa4, 0xef, 0xed, 0x17, 0xa4, 0xd7, 0xf7, 0x0b, 0x23, 0x3f, 0xd8, 0x2f, 0x8c, 0xbc, 0xb9, 0x5f, 0x90, 0xde, 0xde, 0x2f, 0x8c, 0xbc, 0xbb, 0x5f, 0x90, 0x7e, 0xb2, 0x5f, 0x18, 0xb9, 0xf5, 0x6f, 0x85, 0x91, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x51, 0x4c, 0xdc, 0x45, 0x59, 0x37, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Castaway) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Castaway") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Castaway but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Castaway but is not nil && this == nil") } if this.Int32Ptr != nil && that1.Int32Ptr != nil { if *this.Int32Ptr != *that1.Int32Ptr { return fmt.Errorf("Int32Ptr this(%v) Not Equal that(%v)", *this.Int32Ptr, *that1.Int32Ptr) } } else if this.Int32Ptr != nil { return fmt.Errorf("this.Int32Ptr == nil && that.Int32Ptr != nil") } else if that1.Int32Ptr != nil { return fmt.Errorf("Int32Ptr this(%v) Not Equal that(%v)", this.Int32Ptr, that1.Int32Ptr) } if this.Int32 != that1.Int32 { return fmt.Errorf("Int32 this(%v) Not Equal that(%v)", this.Int32, that1.Int32) } if this.MyUint64Ptr != nil && that1.MyUint64Ptr != nil { if *this.MyUint64Ptr != *that1.MyUint64Ptr { return fmt.Errorf("MyUint64Ptr this(%v) Not Equal that(%v)", *this.MyUint64Ptr, *that1.MyUint64Ptr) } } else if this.MyUint64Ptr != nil { return fmt.Errorf("this.MyUint64Ptr == nil && that.MyUint64Ptr != nil") } else if that1.MyUint64Ptr != nil { return fmt.Errorf("MyUint64Ptr this(%v) Not Equal that(%v)", this.MyUint64Ptr, that1.MyUint64Ptr) } if this.MyUint64 != that1.MyUint64 { return fmt.Errorf("MyUint64 this(%v) Not Equal that(%v)", this.MyUint64, that1.MyUint64) } if this.MyFloat32Ptr != nil && that1.MyFloat32Ptr != nil { if *this.MyFloat32Ptr != *that1.MyFloat32Ptr { return fmt.Errorf("MyFloat32Ptr this(%v) Not Equal that(%v)", *this.MyFloat32Ptr, *that1.MyFloat32Ptr) } } else if this.MyFloat32Ptr != nil { return fmt.Errorf("this.MyFloat32Ptr == nil && that.MyFloat32Ptr != nil") } else if that1.MyFloat32Ptr != nil { return fmt.Errorf("MyFloat32Ptr this(%v) Not Equal that(%v)", this.MyFloat32Ptr, that1.MyFloat32Ptr) } if this.MyFloat32 != that1.MyFloat32 { return fmt.Errorf("MyFloat32 this(%v) Not Equal that(%v)", this.MyFloat32, that1.MyFloat32) } if this.MyFloat64Ptr != nil && that1.MyFloat64Ptr != nil { if *this.MyFloat64Ptr != *that1.MyFloat64Ptr { return fmt.Errorf("MyFloat64Ptr this(%v) Not Equal that(%v)", *this.MyFloat64Ptr, *that1.MyFloat64Ptr) } } else if this.MyFloat64Ptr != nil { return fmt.Errorf("this.MyFloat64Ptr == nil && that.MyFloat64Ptr != nil") } else if that1.MyFloat64Ptr != nil { return fmt.Errorf("MyFloat64Ptr this(%v) Not Equal that(%v)", this.MyFloat64Ptr, that1.MyFloat64Ptr) } if this.MyFloat64 != that1.MyFloat64 { return fmt.Errorf("MyFloat64 this(%v) Not Equal that(%v)", this.MyFloat64, that1.MyFloat64) } if !bytes.Equal(this.MyBytes, that1.MyBytes) { return fmt.Errorf("MyBytes this(%v) Not Equal that(%v)", this.MyBytes, that1.MyBytes) } if !bytes.Equal(this.NormalBytes, that1.NormalBytes) { return fmt.Errorf("NormalBytes this(%v) Not Equal that(%v)", this.NormalBytes, that1.NormalBytes) } if len(this.MyUint64S) != len(that1.MyUint64S) { return fmt.Errorf("MyUint64S this(%v) Not Equal that(%v)", len(this.MyUint64S), len(that1.MyUint64S)) } for i := range this.MyUint64S { if this.MyUint64S[i] != that1.MyUint64S[i] { return fmt.Errorf("MyUint64S this[%v](%v) Not Equal that[%v](%v)", i, this.MyUint64S[i], i, that1.MyUint64S[i]) } } if len(this.MyMap) != len(that1.MyMap) { return fmt.Errorf("MyMap this(%v) Not Equal that(%v)", len(this.MyMap), len(that1.MyMap)) } for i := range this.MyMap { if this.MyMap[i] != that1.MyMap[i] { return fmt.Errorf("MyMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyMap[i], i, that1.MyMap[i]) } } if len(this.MyCustomMap) != len(that1.MyCustomMap) { return fmt.Errorf("MyCustomMap this(%v) Not Equal that(%v)", len(this.MyCustomMap), len(that1.MyCustomMap)) } for i := range this.MyCustomMap { if this.MyCustomMap[i] != that1.MyCustomMap[i] { return fmt.Errorf("MyCustomMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyCustomMap[i], i, that1.MyCustomMap[i]) } } if len(this.MyNullableMap) != len(that1.MyNullableMap) { return fmt.Errorf("MyNullableMap this(%v) Not Equal that(%v)", len(this.MyNullableMap), len(that1.MyNullableMap)) } for i := range this.MyNullableMap { if !this.MyNullableMap[i].Equal(that1.MyNullableMap[i]) { return fmt.Errorf("MyNullableMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyNullableMap[i], i, that1.MyNullableMap[i]) } } if len(this.MyEmbeddedMap) != len(that1.MyEmbeddedMap) { return fmt.Errorf("MyEmbeddedMap this(%v) Not Equal that(%v)", len(this.MyEmbeddedMap), len(that1.MyEmbeddedMap)) } for i := range this.MyEmbeddedMap { a := this.MyEmbeddedMap[i] b := that1.MyEmbeddedMap[i] if !(&a).Equal(&b) { return fmt.Errorf("MyEmbeddedMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyEmbeddedMap[i], i, that1.MyEmbeddedMap[i]) } } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return fmt.Errorf("String_ this(%v) Not Equal that(%v)", *this.String_, *that1.String_) } } else if this.String_ != nil { return fmt.Errorf("this.String_ == nil && that.String_ != nil") } else if that1.String_ != nil { return fmt.Errorf("String_ this(%v) Not Equal that(%v)", this.String_, that1.String_) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Castaway) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int32Ptr != nil && that1.Int32Ptr != nil { if *this.Int32Ptr != *that1.Int32Ptr { return false } } else if this.Int32Ptr != nil { return false } else if that1.Int32Ptr != nil { return false } if this.Int32 != that1.Int32 { return false } if this.MyUint64Ptr != nil && that1.MyUint64Ptr != nil { if *this.MyUint64Ptr != *that1.MyUint64Ptr { return false } } else if this.MyUint64Ptr != nil { return false } else if that1.MyUint64Ptr != nil { return false } if this.MyUint64 != that1.MyUint64 { return false } if this.MyFloat32Ptr != nil && that1.MyFloat32Ptr != nil { if *this.MyFloat32Ptr != *that1.MyFloat32Ptr { return false } } else if this.MyFloat32Ptr != nil { return false } else if that1.MyFloat32Ptr != nil { return false } if this.MyFloat32 != that1.MyFloat32 { return false } if this.MyFloat64Ptr != nil && that1.MyFloat64Ptr != nil { if *this.MyFloat64Ptr != *that1.MyFloat64Ptr { return false } } else if this.MyFloat64Ptr != nil { return false } else if that1.MyFloat64Ptr != nil { return false } if this.MyFloat64 != that1.MyFloat64 { return false } if !bytes.Equal(this.MyBytes, that1.MyBytes) { return false } if !bytes.Equal(this.NormalBytes, that1.NormalBytes) { return false } if len(this.MyUint64S) != len(that1.MyUint64S) { return false } for i := range this.MyUint64S { if this.MyUint64S[i] != that1.MyUint64S[i] { return false } } if len(this.MyMap) != len(that1.MyMap) { return false } for i := range this.MyMap { if this.MyMap[i] != that1.MyMap[i] { return false } } if len(this.MyCustomMap) != len(that1.MyCustomMap) { return false } for i := range this.MyCustomMap { if this.MyCustomMap[i] != that1.MyCustomMap[i] { return false } } if len(this.MyNullableMap) != len(that1.MyNullableMap) { return false } for i := range this.MyNullableMap { if !this.MyNullableMap[i].Equal(that1.MyNullableMap[i]) { return false } } if len(this.MyEmbeddedMap) != len(that1.MyEmbeddedMap) { return false } for i := range this.MyEmbeddedMap { a := this.MyEmbeddedMap[i] b := that1.MyEmbeddedMap[i] if !(&a).Equal(&b) { return false } } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return false } } else if this.String_ != nil { return false } else if that1.String_ != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Wilson) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Wilson") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Wilson but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Wilson but is not nil && this == nil") } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", *this.Int64, *that1.Int64) } } else if this.Int64 != nil { return fmt.Errorf("this.Int64 == nil && that.Int64 != nil") } else if that1.Int64 != nil { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", this.Int64, that1.Int64) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Wilson) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return false } } else if this.Int64 != nil { return false } else if that1.Int64 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type CastawayFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt32Ptr() *int32 GetInt32() int32 GetMyUint64Ptr() *github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyUint64() github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyFloat32Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat32Type GetMyFloat32() github_com_gogo_protobuf_test_casttype.MyFloat32Type GetMyFloat64Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat64Type GetMyFloat64() github_com_gogo_protobuf_test_casttype.MyFloat64Type GetMyBytes() github_com_gogo_protobuf_test_casttype.Bytes GetNormalBytes() []byte GetMyUint64S() []github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyMap() github_com_gogo_protobuf_test_casttype.MyMapType GetMyCustomMap() map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyNullableMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson GetMyEmbeddedMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson GetString_() *github_com_gogo_protobuf_test_casttype.MyStringType } func (this *Castaway) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Castaway) TestProto() github_com_gogo_protobuf_proto.Message { return NewCastawayFromFace(this) } func (this *Castaway) GetInt32Ptr() *int32 { return this.Int32Ptr } func (this *Castaway) GetInt32() int32 { return this.Int32 } func (this *Castaway) GetMyUint64Ptr() *github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64Ptr } func (this *Castaway) GetMyUint64() github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64 } func (this *Castaway) GetMyFloat32Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat32Type { return this.MyFloat32Ptr } func (this *Castaway) GetMyFloat32() github_com_gogo_protobuf_test_casttype.MyFloat32Type { return this.MyFloat32 } func (this *Castaway) GetMyFloat64Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat64Type { return this.MyFloat64Ptr } func (this *Castaway) GetMyFloat64() github_com_gogo_protobuf_test_casttype.MyFloat64Type { return this.MyFloat64 } func (this *Castaway) GetMyBytes() github_com_gogo_protobuf_test_casttype.Bytes { return this.MyBytes } func (this *Castaway) GetNormalBytes() []byte { return this.NormalBytes } func (this *Castaway) GetMyUint64S() []github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64S } func (this *Castaway) GetMyMap() github_com_gogo_protobuf_test_casttype.MyMapType { return this.MyMap } func (this *Castaway) GetMyCustomMap() map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyCustomMap } func (this *Castaway) GetMyNullableMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson { return this.MyNullableMap } func (this *Castaway) GetMyEmbeddedMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson { return this.MyEmbeddedMap } func (this *Castaway) GetString_() *github_com_gogo_protobuf_test_casttype.MyStringType { return this.String_ } func NewCastawayFromFace(that CastawayFace) *Castaway { this := &Castaway{} this.Int32Ptr = that.GetInt32Ptr() this.Int32 = that.GetInt32() this.MyUint64Ptr = that.GetMyUint64Ptr() this.MyUint64 = that.GetMyUint64() this.MyFloat32Ptr = that.GetMyFloat32Ptr() this.MyFloat32 = that.GetMyFloat32() this.MyFloat64Ptr = that.GetMyFloat64Ptr() this.MyFloat64 = that.GetMyFloat64() this.MyBytes = that.GetMyBytes() this.NormalBytes = that.GetNormalBytes() this.MyUint64S = that.GetMyUint64S() this.MyMap = that.GetMyMap() this.MyCustomMap = that.GetMyCustomMap() this.MyNullableMap = that.GetMyNullableMap() this.MyEmbeddedMap = that.GetMyEmbeddedMap() this.String_ = that.GetString_() return this } type WilsonFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt64() *int64 } func (this *Wilson) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Wilson) TestProto() github_com_gogo_protobuf_proto.Message { return NewWilsonFromFace(this) } func (this *Wilson) GetInt64() *int64 { return this.Int64 } func NewWilsonFromFace(that WilsonFace) *Wilson { this := &Wilson{} this.Int64 = that.GetInt64() return this } func (this *Castaway) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&casttype.Castaway{") if this.Int32Ptr != nil { s = append(s, "Int32Ptr: "+valueToGoStringCasttype(this.Int32Ptr, "int32")+",\n") } s = append(s, "Int32: "+fmt.Sprintf("%#v", this.Int32)+",\n") if this.MyUint64Ptr != nil { s = append(s, "MyUint64Ptr: "+valueToGoStringCasttype(this.MyUint64Ptr, "github_com_gogo_protobuf_test_casttype.MyUint64Type")+",\n") } s = append(s, "MyUint64: "+fmt.Sprintf("%#v", this.MyUint64)+",\n") if this.MyFloat32Ptr != nil { s = append(s, "MyFloat32Ptr: "+valueToGoStringCasttype(this.MyFloat32Ptr, "github_com_gogo_protobuf_test_casttype.MyFloat32Type")+",\n") } s = append(s, "MyFloat32: "+fmt.Sprintf("%#v", this.MyFloat32)+",\n") if this.MyFloat64Ptr != nil { s = append(s, "MyFloat64Ptr: "+valueToGoStringCasttype(this.MyFloat64Ptr, "github_com_gogo_protobuf_test_casttype.MyFloat64Type")+",\n") } s = append(s, "MyFloat64: "+fmt.Sprintf("%#v", this.MyFloat64)+",\n") if this.MyBytes != nil { s = append(s, "MyBytes: "+valueToGoStringCasttype(this.MyBytes, "github_com_gogo_protobuf_test_casttype.Bytes")+",\n") } if this.NormalBytes != nil { s = append(s, "NormalBytes: "+valueToGoStringCasttype(this.NormalBytes, "byte")+",\n") } if this.MyUint64S != nil { s = append(s, "MyUint64S: "+fmt.Sprintf("%#v", this.MyUint64S)+",\n") } keysForMyMap := make([]string, 0, len(this.MyMap)) for k := range this.MyMap { keysForMyMap = append(keysForMyMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyMap) mapStringForMyMap := "github_com_gogo_protobuf_test_casttype.MyMapType{" for _, k := range keysForMyMap { mapStringForMyMap += fmt.Sprintf("%#v: %#v,", k, this.MyMap[k]) } mapStringForMyMap += "}" if this.MyMap != nil { s = append(s, "MyMap: "+mapStringForMyMap+",\n") } keysForMyCustomMap := make([]string, 0, len(this.MyCustomMap)) for k := range this.MyCustomMap { keysForMyCustomMap = append(keysForMyCustomMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyCustomMap) mapStringForMyCustomMap := "map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type{" for _, k := range keysForMyCustomMap { mapStringForMyCustomMap += fmt.Sprintf("%#v: %#v,", k, this.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(k)]) } mapStringForMyCustomMap += "}" if this.MyCustomMap != nil { s = append(s, "MyCustomMap: "+mapStringForMyCustomMap+",\n") } keysForMyNullableMap := make([]int32, 0, len(this.MyNullableMap)) for k := range this.MyNullableMap { keysForMyNullableMap = append(keysForMyNullableMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyNullableMap) mapStringForMyNullableMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson{" for _, k := range keysForMyNullableMap { mapStringForMyNullableMap += fmt.Sprintf("%#v: %#v,", k, this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyNullableMap += "}" if this.MyNullableMap != nil { s = append(s, "MyNullableMap: "+mapStringForMyNullableMap+",\n") } keysForMyEmbeddedMap := make([]int32, 0, len(this.MyEmbeddedMap)) for k := range this.MyEmbeddedMap { keysForMyEmbeddedMap = append(keysForMyEmbeddedMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyEmbeddedMap) mapStringForMyEmbeddedMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson{" for _, k := range keysForMyEmbeddedMap { mapStringForMyEmbeddedMap += fmt.Sprintf("%#v: %#v,", k, this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyEmbeddedMap += "}" if this.MyEmbeddedMap != nil { s = append(s, "MyEmbeddedMap: "+mapStringForMyEmbeddedMap+",\n") } if this.String_ != nil { s = append(s, "String_: "+valueToGoStringCasttype(this.String_, "github_com_gogo_protobuf_test_casttype.MyStringType")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Wilson) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&casttype.Wilson{") if this.Int64 != nil { s = append(s, "Int64: "+valueToGoStringCasttype(this.Int64, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringCasttype(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedCastaway(r randyCasttype, easy bool) *Castaway { this := &Castaway{} if r.Intn(10) != 0 { v1 := int32(r.Int63()) if r.Intn(2) == 0 { v1 *= -1 } this.Int32Ptr = &v1 } this.Int32 = int32(r.Int63()) if r.Intn(2) == 0 { this.Int32 *= -1 } if r.Intn(10) != 0 { v2 := github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) this.MyUint64Ptr = &v2 } this.MyUint64 = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) if r.Intn(10) != 0 { v3 := github_com_gogo_protobuf_test_casttype.MyFloat32Type(r.Float32()) if r.Intn(2) == 0 { v3 *= -1 } this.MyFloat32Ptr = &v3 } this.MyFloat32 = github_com_gogo_protobuf_test_casttype.MyFloat32Type(r.Float32()) if r.Intn(2) == 0 { this.MyFloat32 *= -1 } if r.Intn(10) != 0 { v4 := github_com_gogo_protobuf_test_casttype.MyFloat64Type(r.Float64()) if r.Intn(2) == 0 { v4 *= -1 } this.MyFloat64Ptr = &v4 } this.MyFloat64 = github_com_gogo_protobuf_test_casttype.MyFloat64Type(r.Float64()) if r.Intn(2) == 0 { this.MyFloat64 *= -1 } if r.Intn(10) != 0 { v5 := r.Intn(100) this.MyBytes = make(github_com_gogo_protobuf_test_casttype.Bytes, v5) for i := 0; i < v5; i++ { this.MyBytes[i] = byte(r.Intn(256)) } } if r.Intn(10) != 0 { v6 := r.Intn(100) this.NormalBytes = make([]byte, v6) for i := 0; i < v6; i++ { this.NormalBytes[i] = byte(r.Intn(256)) } } if r.Intn(10) != 0 { v7 := r.Intn(10) this.MyUint64S = make([]github_com_gogo_protobuf_test_casttype.MyUint64Type, v7) for i := 0; i < v7; i++ { this.MyUint64S[i] = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v8 := r.Intn(10) this.MyMap = make(github_com_gogo_protobuf_test_casttype.MyMapType) for i := 0; i < v8; i++ { v9 := randStringCasttype(r) this.MyMap[v9] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.MyCustomMap = make(map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type) for i := 0; i < v10; i++ { v11 := github_com_gogo_protobuf_test_casttype.MyStringType(randStringCasttype(r)) this.MyCustomMap[v11] = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.MyNullableMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson) for i := 0; i < v12; i++ { this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(int32(r.Int31()))] = NewPopulatedWilson(r, easy) } } if r.Intn(10) != 0 { v13 := r.Intn(10) this.MyEmbeddedMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson) for i := 0; i < v13; i++ { this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(int32(r.Int31()))] = *NewPopulatedWilson(r, easy) } } if r.Intn(10) != 0 { v14 := github_com_gogo_protobuf_test_casttype.MyStringType(randStringCasttype(r)) this.String_ = &v14 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCasttype(r, 17) } return this } func NewPopulatedWilson(r randyCasttype, easy bool) *Wilson { this := &Wilson{} if r.Intn(10) != 0 { v15 := int64(r.Int63()) if r.Intn(2) == 0 { v15 *= -1 } this.Int64 = &v15 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCasttype(r, 2) } return this } type randyCasttype interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneCasttype(r randyCasttype) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringCasttype(r randyCasttype) string { v16 := r.Intn(100) tmps := make([]rune, v16) for i := 0; i < v16; i++ { tmps[i] = randUTF8RuneCasttype(r) } return string(tmps) } func randUnrecognizedCasttype(r randyCasttype, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldCasttype(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldCasttype(dAtA []byte, r randyCasttype, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) v17 := r.Int63() if r.Intn(2) == 0 { v17 *= -1 } dAtA = encodeVarintPopulateCasttype(dAtA, uint64(v17)) case 1: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateCasttype(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateCasttype(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Castaway) Size() (n int) { var l int _ = l if m.Int32Ptr != nil { n += 1 + sovCasttype(uint64(*m.Int32Ptr)) } n += 1 + sovCasttype(uint64(m.Int32)) if m.MyUint64Ptr != nil { n += 1 + sovCasttype(uint64(*m.MyUint64Ptr)) } n += 1 + sovCasttype(uint64(m.MyUint64)) if m.MyFloat32Ptr != nil { n += 5 } n += 5 if m.MyFloat64Ptr != nil { n += 9 } n += 9 if m.MyBytes != nil { l = len(m.MyBytes) n += 1 + l + sovCasttype(uint64(l)) } if m.NormalBytes != nil { l = len(m.NormalBytes) n += 1 + l + sovCasttype(uint64(l)) } if len(m.MyUint64S) > 0 { for _, e := range m.MyUint64S { n += 1 + sovCasttype(uint64(e)) } } if len(m.MyMap) > 0 { for k, v := range m.MyMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyCustomMap) > 0 { for k, v := range m.MyCustomMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyNullableMap) > 0 { for k, v := range m.MyNullableMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovCasttype(uint64(l)) } mapEntrySize := 1 + sovCasttype(uint64(k)) + l n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyEmbeddedMap) > 0 { for k, v := range m.MyEmbeddedMap { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovCasttype(uint64(k)) + 1 + l + sovCasttype(uint64(l)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if m.String_ != nil { l = len(*m.String_) n += 2 + l + sovCasttype(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Wilson) Size() (n int) { var l int _ = l if m.Int64 != nil { n += 1 + sovCasttype(uint64(*m.Int64)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovCasttype(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozCasttype(x uint64) (n int) { return sovCasttype(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Castaway) String() string { if this == nil { return "nil" } keysForMyMap := make([]string, 0, len(this.MyMap)) for k := range this.MyMap { keysForMyMap = append(keysForMyMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyMap) mapStringForMyMap := "github_com_gogo_protobuf_test_casttype.MyMapType{" for _, k := range keysForMyMap { mapStringForMyMap += fmt.Sprintf("%v: %v,", k, this.MyMap[k]) } mapStringForMyMap += "}" keysForMyCustomMap := make([]string, 0, len(this.MyCustomMap)) for k := range this.MyCustomMap { keysForMyCustomMap = append(keysForMyCustomMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyCustomMap) mapStringForMyCustomMap := "map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type{" for _, k := range keysForMyCustomMap { mapStringForMyCustomMap += fmt.Sprintf("%v: %v,", k, this.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(k)]) } mapStringForMyCustomMap += "}" keysForMyNullableMap := make([]int32, 0, len(this.MyNullableMap)) for k := range this.MyNullableMap { keysForMyNullableMap = append(keysForMyNullableMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyNullableMap) mapStringForMyNullableMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson{" for _, k := range keysForMyNullableMap { mapStringForMyNullableMap += fmt.Sprintf("%v: %v,", k, this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyNullableMap += "}" keysForMyEmbeddedMap := make([]int32, 0, len(this.MyEmbeddedMap)) for k := range this.MyEmbeddedMap { keysForMyEmbeddedMap = append(keysForMyEmbeddedMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyEmbeddedMap) mapStringForMyEmbeddedMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson{" for _, k := range keysForMyEmbeddedMap { mapStringForMyEmbeddedMap += fmt.Sprintf("%v: %v,", k, this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyEmbeddedMap += "}" s := strings.Join([]string{`&Castaway{`, `Int32Ptr:` + valueToStringCasttype(this.Int32Ptr) + `,`, `Int32:` + fmt.Sprintf("%v", this.Int32) + `,`, `MyUint64Ptr:` + valueToStringCasttype(this.MyUint64Ptr) + `,`, `MyUint64:` + fmt.Sprintf("%v", this.MyUint64) + `,`, `MyFloat32Ptr:` + valueToStringCasttype(this.MyFloat32Ptr) + `,`, `MyFloat32:` + fmt.Sprintf("%v", this.MyFloat32) + `,`, `MyFloat64Ptr:` + valueToStringCasttype(this.MyFloat64Ptr) + `,`, `MyFloat64:` + fmt.Sprintf("%v", this.MyFloat64) + `,`, `MyBytes:` + valueToStringCasttype(this.MyBytes) + `,`, `NormalBytes:` + valueToStringCasttype(this.NormalBytes) + `,`, `MyUint64S:` + fmt.Sprintf("%v", this.MyUint64S) + `,`, `MyMap:` + mapStringForMyMap + `,`, `MyCustomMap:` + mapStringForMyCustomMap + `,`, `MyNullableMap:` + mapStringForMyNullableMap + `,`, `MyEmbeddedMap:` + mapStringForMyEmbeddedMap + `,`, `String_:` + valueToStringCasttype(this.String_) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Wilson) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Wilson{`, `Int64:` + valueToStringCasttype(this.Int64) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringCasttype(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/neither/casttype.proto", fileDescriptorCasttype) } var fileDescriptorCasttype = []byte{ // 695 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0xbf, 0x6f, 0xd3, 0x40, 0x14, 0xc7, 0x7d, 0x4d, 0xd3, 0x26, 0x97, 0x06, 0xa2, 0x13, 0x83, 0x55, 0xa9, 0x67, 0xab, 0x55, 0x91, 0x07, 0x48, 0xaa, 0x34, 0x2a, 0x55, 0x41, 0x0c, 0xae, 0x8a, 0x54, 0x84, 0x0b, 0x32, 0x54, 0x15, 0x88, 0xc5, 0x69, 0x4d, 0x6a, 0xe1, 0xd8, 0x51, 0x7c, 0x01, 0x79, 0xab, 0xca, 0x80, 0xc4, 0x5f, 0xc2, 0xc8, 0x82, 0xc4, 0xc8, 0xd8, 0xb1, 0x23, 0x53, 0x5a, 0x9b, 0xa5, 0x6c, 0x1d, 0xab, 0x4c, 0xe8, 0xee, 0x1c, 0xdb, 0xfd, 0x01, 0x4a, 0xdd, 0xed, 0xde, 0xdd, 0x7b, 0x9f, 0xf7, 0xbd, 0x77, 0xef, 0xee, 0xe0, 0xcc, 0xb6, 0xdb, 0x6e, 0xba, 0x5e, 0xcd, 0x31, 0x2d, 0xb2, 0x6b, 0x76, 0x6b, 0xdb, 0x86, 0x47, 0x88, 0xdf, 0x31, 0xab, 0x9d, 0xae, 0x4b, 0x5c, 0x54, 0x18, 0xda, 0xd3, 0xf7, 0x5b, 0x16, 0xd9, 0xed, 0x35, 0xab, 0xdb, 0x6e, 0xbb, 0xd6, 0x72, 0x5b, 0x6e, 0x8d, 0x39, 0x34, 0x7b, 0xef, 0x98, 0xc5, 0x0c, 0x36, 0xe2, 0x81, 0xb3, 0x7f, 0xca, 0xb0, 0xb0, 0x6a, 0x78, 0xc4, 0xf8, 0x68, 0xf8, 0x68, 0x1e, 0x16, 0xd6, 0x1d, 0xb2, 0x58, 0x7f, 0x41, 0xba, 0x22, 0x90, 0x81, 0x92, 0x53, 0x8b, 0x83, 0xbe, 0x94, 0xb7, 0xe8, 0x9c, 0x1e, 0x2f, 0xa1, 0x39, 0x98, 0x67, 0x63, 0x71, 0x8c, 0xf9, 0x94, 0x0f, 0xfa, 0x92, 0x90, 0xf8, 0xf1, 0x35, 0xf4, 0x1a, 0x96, 0x34, 0x7f, 0xd3, 0x72, 0xc8, 0x52, 0x83, 0xe2, 0x72, 0x32, 0x50, 0xc6, 0xd5, 0x07, 0x83, 0xbe, 0xb4, 0xf8, 0x4f, 0x81, 0xc4, 0xf4, 0x48, 0xb2, 0xb1, 0x61, 0xf4, 0x2b, 0xbf, 0x63, 0xea, 0x69, 0x16, 0xda, 0x82, 0x85, 0xa1, 0x29, 0x8e, 0x33, 0xee, 0xc3, 0x48, 0x42, 0x26, 0x76, 0x0c, 0x43, 0x6f, 0xe1, 0x94, 0xe6, 0x3f, 0xb1, 0x5d, 0x23, 0xaa, 0x41, 0x5e, 0x06, 0xca, 0x98, 0xba, 0x3c, 0xe8, 0x4b, 0x8d, 0x91, 0xc1, 0x51, 0x38, 0x23, 0x9f, 0xa3, 0xa1, 0x37, 0xb0, 0x18, 0xdb, 0xe2, 0x04, 0x43, 0x3f, 0x8a, 0x74, 0x67, 0xc3, 0x27, 0xb8, 0x94, 0x72, 0x5e, 0xee, 0x49, 0x19, 0x28, 0x20, 0x8b, 0xf2, 0xa8, 0x26, 0xe7, 0x68, 0x29, 0xe5, 0x4b, 0x0d, 0xb1, 0xc0, 0xd0, 0x19, 0x95, 0x47, 0xf8, 0x04, 0x87, 0x9e, 0xc2, 0x49, 0xcd, 0x57, 0x7d, 0x62, 0x7a, 0x62, 0x51, 0x06, 0xca, 0x94, 0xba, 0x30, 0xe8, 0x4b, 0xf7, 0x46, 0xa4, 0xb2, 0x38, 0x7d, 0x08, 0x40, 0x32, 0x2c, 0x6d, 0xb8, 0xdd, 0xb6, 0x61, 0x73, 0x1e, 0xa4, 0x3c, 0x3d, 0x3d, 0x85, 0x36, 0xe9, 0x4e, 0xf8, 0x69, 0x7b, 0x62, 0x49, 0xce, 0xdd, 0xa4, 0x27, 0x13, 0x12, 0xb2, 0x60, 0x5e, 0xf3, 0x35, 0xa3, 0x23, 0x4e, 0xc9, 0x39, 0xa5, 0x54, 0x9f, 0xa9, 0xc6, 0x11, 0xc3, 0xbb, 0x55, 0x65, 0xeb, 0x6b, 0x0e, 0xe9, 0xfa, 0x6a, 0x63, 0xd0, 0x97, 0x16, 0x46, 0xce, 0xa8, 0x19, 0x1d, 0x96, 0x8e, 0x67, 0x40, 0xdf, 0x01, 0xbd, 0x58, 0xab, 0x3d, 0x8f, 0xb8, 0x6d, 0x9a, 0xb1, 0xcc, 0x32, 0xce, 0x5d, 0x99, 0x31, 0xf6, 0xe2, 0x79, 0x9d, 0xfd, 0xa3, 0x6b, 0xec, 0xf4, 0x25, 0xe9, 0x5a, 0x4e, 0x8b, 0xa6, 0xfe, 0x72, 0x94, 0xf9, 0xd2, 0xc6, 0x0a, 0xd0, 0x27, 0x00, 0xcb, 0x9a, 0xbf, 0xd1, 0xb3, 0x6d, 0xa3, 0x69, 0x9b, 0x54, 0xf9, 0x2d, 0xa6, 0x7c, 0xfe, 0x4a, 0xe5, 0x29, 0x3f, 0xae, 0x7d, 0x69, 0xff, 0x48, 0xaa, 0x8f, 0x2c, 0x82, 0x3d, 0x41, 0x4c, 0xc3, 0xf9, 0x9c, 0xe8, 0x33, 0x53, 0xb1, 0xd6, 0x6e, 0x9a, 0x3b, 0x3b, 0xe6, 0x0e, 0x55, 0x71, 0xfb, 0x3f, 0x2a, 0x52, 0x7e, 0x5c, 0xc5, 0x0a, 0xed, 0xfa, 0xec, 0x4a, 0x52, 0x3c, 0xf4, 0x1c, 0x4e, 0xf0, 0x0a, 0x8b, 0x15, 0x19, 0x28, 0xc5, 0x6b, 0xb6, 0x61, 0x72, 0x38, 0x7a, 0x84, 0x99, 0x5e, 0x86, 0x30, 0xe9, 0x31, 0x54, 0x81, 0xb9, 0xf7, 0xa6, 0xcf, 0x5e, 0xf1, 0xa2, 0x4e, 0x87, 0xe8, 0x0e, 0xcc, 0x7f, 0x30, 0xec, 0x9e, 0xc9, 0x5e, 0xed, 0x71, 0x9d, 0x1b, 0x2b, 0x63, 0xcb, 0x60, 0xfa, 0x31, 0xac, 0x5c, 0xec, 0x95, 0x6b, 0xc5, 0xeb, 0x10, 0x5d, 0x3e, 0xb1, 0x34, 0x21, 0xcf, 0x09, 0x77, 0xd3, 0x84, 0x52, 0xbd, 0x92, 0xd4, 0x7c, 0xcb, 0xb2, 0x3d, 0xd7, 0xb9, 0xc4, 0xbc, 0x58, 0xff, 0x9b, 0x31, 0x67, 0x31, 0x9c, 0xe0, 0x93, 0x74, 0x2f, 0xeb, 0xec, 0xfb, 0x60, 0xbf, 0x9c, 0xce, 0x0d, 0xf5, 0xd9, 0x41, 0x80, 0x85, 0xc3, 0x00, 0x0b, 0xbf, 0x02, 0x2c, 0x1c, 0x07, 0x18, 0x9c, 0x04, 0x18, 0x9c, 0x06, 0x18, 0x9c, 0x05, 0x18, 0xec, 0x85, 0x18, 0x7c, 0x0d, 0x31, 0xf8, 0x16, 0x62, 0xf0, 0x23, 0xc4, 0xe0, 0x67, 0x88, 0xc1, 0x41, 0x88, 0x85, 0xc3, 0x10, 0x0b, 0xc7, 0x21, 0x06, 0x27, 0x21, 0x16, 0x4e, 0x43, 0x0c, 0xce, 0x42, 0x2c, 0xec, 0xfd, 0xc6, 0xc2, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x22, 0x40, 0x8d, 0xb2, 0x07, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/casttype/combos/neither/casttype.proto000066400000000000000000000104071317075173200260230ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 casttype; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Castaway { optional int64 Int32Ptr = 1 [(gogoproto.casttype) = "int32"]; optional int64 Int32 = 2 [(gogoproto.casttype) = "int32", (gogoproto.nullable) = false]; optional uint64 MyUint64Ptr = 3 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; optional uint64 MyUint64 = 4 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type", (gogoproto.nullable) = false]; optional float MyFloat32Ptr = 5 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type"]; optional float MyFloat32 = 6 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type", (gogoproto.nullable) = false]; optional double MyFloat64Ptr = 7 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type"]; optional double MyFloat64 = 8 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type", (gogoproto.nullable) = false]; optional bytes MyBytes = 9 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.Bytes"]; optional bytes NormalBytes = 10; repeated uint64 MyUint64s = 11 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyMap = 12 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyMapType"]; map MyCustomMap = 13 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyStringType", (gogoproto.castvalue) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyNullableMap = 14 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type"]; map MyEmbeddedMap = 15 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type", (gogoproto.nullable) = false]; optional string String = 16 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyStringType"]; } message Wilson { optional int64 Int64 = 1; } golang-gogoprotobuf-0.5/test/casttype/combos/neither/casttypepb_test.go000066400000000000000000000320241317075173200266450ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/casttype.proto /* Package casttype is a generated protocol buffer package. It is generated from these files: combos/neither/casttype.proto It has these top-level messages: Castaway Wilson */ package casttype import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestCastawayProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCastawayProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCastawayProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastaway(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Castaway{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestWilsonProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkWilsonProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkWilsonProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedWilson(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Wilson{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCastawayJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestWilsonJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCastawayProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastawayProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCasttypeDescription(t *testing.T) { CasttypeDescription() } func TestCastawayVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestWilsonVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCastawayFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestWilsonFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCastawayGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestWilsonGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCastawaySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCastawaySize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestWilsonSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkWilsonSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCastawayStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestWilsonStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/casttype/combos/unmarshaler/000077500000000000000000000000001317075173200237635ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/casttype/combos/unmarshaler/casttype.pb.go000066400000000000000000002607031317075173200265560ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/casttype.proto /* Package casttype is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/casttype.proto It has these top-level messages: Castaway Wilson */ package casttype import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_casttype "github.com/gogo/protobuf/test/casttype" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import io "io" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Castaway struct { Int32Ptr *int32 `protobuf:"varint,1,opt,name=Int32Ptr,casttype=int32" json:"Int32Ptr,omitempty"` Int32 int32 `protobuf:"varint,2,opt,name=Int32,casttype=int32" json:"Int32"` MyUint64Ptr *github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,3,opt,name=MyUint64Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64Ptr,omitempty"` MyUint64 github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,4,opt,name=MyUint64,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64"` MyFloat32Ptr *github_com_gogo_protobuf_test_casttype.MyFloat32Type `protobuf:"fixed32,5,opt,name=MyFloat32Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyFloat32Type" json:"MyFloat32Ptr,omitempty"` MyFloat32 github_com_gogo_protobuf_test_casttype.MyFloat32Type `protobuf:"fixed32,6,opt,name=MyFloat32,casttype=github.com/gogo/protobuf/test/casttype.MyFloat32Type" json:"MyFloat32"` MyFloat64Ptr *github_com_gogo_protobuf_test_casttype.MyFloat64Type `protobuf:"fixed64,7,opt,name=MyFloat64Ptr,casttype=github.com/gogo/protobuf/test/casttype.MyFloat64Type" json:"MyFloat64Ptr,omitempty"` MyFloat64 github_com_gogo_protobuf_test_casttype.MyFloat64Type `protobuf:"fixed64,8,opt,name=MyFloat64,casttype=github.com/gogo/protobuf/test/casttype.MyFloat64Type" json:"MyFloat64"` MyBytes github_com_gogo_protobuf_test_casttype.Bytes `protobuf:"bytes,9,opt,name=MyBytes,casttype=github.com/gogo/protobuf/test/casttype.Bytes" json:"MyBytes,omitempty"` NormalBytes []byte `protobuf:"bytes,10,opt,name=NormalBytes" json:"NormalBytes,omitempty"` MyUint64S []github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,11,rep,name=MyUint64s,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyUint64s,omitempty"` MyMap github_com_gogo_protobuf_test_casttype.MyMapType `protobuf:"bytes,12,rep,name=MyMap,casttype=github.com/gogo/protobuf/test/casttype.MyMapType" json:"MyMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` MyCustomMap map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"bytes,13,rep,name=MyCustomMap,castkey=github.com/gogo/protobuf/test/casttype.MyStringType,castvalue=github.com/gogo/protobuf/test/casttype.MyUint64Type" json:"MyCustomMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` MyNullableMap map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson `protobuf:"bytes,14,rep,name=MyNullableMap,castkey=github.com/gogo/protobuf/test/casttype.MyInt32Type" json:"MyNullableMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` MyEmbeddedMap map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson `protobuf:"bytes,15,rep,name=MyEmbeddedMap,castkey=github.com/gogo/protobuf/test/casttype.MyInt32Type" json:"MyEmbeddedMap" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` String_ *github_com_gogo_protobuf_test_casttype.MyStringType `protobuf:"bytes,16,opt,name=String,casttype=github.com/gogo/protobuf/test/casttype.MyStringType" json:"String,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Castaway) Reset() { *m = Castaway{} } func (*Castaway) ProtoMessage() {} func (*Castaway) Descriptor() ([]byte, []int) { return fileDescriptorCasttype, []int{0} } type Wilson struct { Int64 *int64 `protobuf:"varint,1,opt,name=Int64" json:"Int64,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Wilson) Reset() { *m = Wilson{} } func (*Wilson) ProtoMessage() {} func (*Wilson) Descriptor() ([]byte, []int) { return fileDescriptorCasttype, []int{1} } func init() { proto.RegisterType((*Castaway)(nil), "casttype.Castaway") proto.RegisterType((*Wilson)(nil), "casttype.Wilson") } func (this *Castaway) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CasttypeDescription() } func (this *Wilson) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CasttypeDescription() } func CasttypeDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4199 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x7b, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0x3f, 0x17, 0x1f, 0x24, 0x70, 0x00, 0x82, 0xcb, 0x4b, 0x5a, 0x86, 0xe9, 0x18, 0xa4, 0x28, 0x7f, 0xd0, 0x76, 0x42, 0x79, 0xf4, 0x6d, 0x28, 0xb1, 0xff, 0x00, 0x09, 0x31, 0xd0, 0x9f, 0x20, 0x99, 0x25, 0x19, 0x49, 0x6e, 0x67, 0x76, 0x96, 0x8b, 0x4b, 0x70, 0xa5, 0xc5, 0xee, 0x66, 0x77, 0x21, 0x19, 0x9a, 0x3e, 0xa8, 0x71, 0xdb, 0x4c, 0xda, 0xe9, 0x77, 0x67, 0x9a, 0xb8, 0x8e, 0xdb, 0x66, 0xa6, 0x75, 0x9a, 0xf4, 0x23, 0x69, 0x1a, 0x37, 0xed, 0x53, 0x5e, 0xd2, 0xfa, 0xa9, 0x93, 0xbc, 0xf5, 0xa1, 0x23, 0x5b, 0xac, 0x67, 0xea, 0xb4, 0x6e, 0xeb, 0x36, 0x7e, 0xc8, 0xc8, 0x2f, 0x9d, 0xfb, 0xb5, 0x58, 0x7c, 0x50, 0x0b, 0x2a, 0x63, 0xe7, 0x89, 0xd8, 0x73, 0xcf, 0xef, 0x77, 0xcf, 0x3d, 0xf7, 0xdc, 0x7b, 0xce, 0xbd, 0xbb, 0x84, 0x6f, 0x9c, 0x83, 0xb9, 0x86, 0x6d, 0x37, 0x4c, 0x7c, 0xdc, 0x71, 0x6d, 0xdf, 0xde, 0x69, 0xed, 0x1e, 0xaf, 0x63, 0x4f, 0x77, 0x0d, 0xc7, 0xb7, 0xdd, 0x45, 0x2a, 0x43, 0x13, 0x4c, 0x63, 0x51, 0x68, 0xcc, 0xd7, 0x60, 0xf2, 0x82, 0x61, 0xe2, 0xe5, 0x40, 0x71, 0x13, 0xfb, 0xe8, 0x1c, 0x24, 0x76, 0x0d, 0x13, 0xe7, 0xa5, 0xb9, 0xf8, 0x42, 0xe6, 0xc4, 0xa3, 0x8b, 0x3d, 0xa0, 0xc5, 0x6e, 0xc4, 0x06, 0x11, 0x2b, 0x14, 0x31, 0xff, 0x76, 0x02, 0xa6, 0x06, 0xb4, 0x22, 0x04, 0x09, 0x4b, 0x6b, 0x12, 0x46, 0x69, 0x21, 0xad, 0xd0, 0xdf, 0x28, 0x0f, 0x63, 0x8e, 0xa6, 0x5f, 0xd3, 0x1a, 0x38, 0x1f, 0xa3, 0x62, 0xf1, 0x88, 0x0a, 0x00, 0x75, 0xec, 0x60, 0xab, 0x8e, 0x2d, 0xbd, 0x9d, 0x8f, 0xcf, 0xc5, 0x17, 0xd2, 0x4a, 0x48, 0x82, 0x9e, 0x86, 0x49, 0xa7, 0xb5, 0x63, 0x1a, 0xba, 0x1a, 0x52, 0x83, 0xb9, 0xf8, 0x42, 0x52, 0x91, 0x59, 0xc3, 0x72, 0x47, 0xf9, 0x09, 0x98, 0xb8, 0x81, 0xb5, 0x6b, 0x61, 0xd5, 0x0c, 0x55, 0xcd, 0x11, 0x71, 0x48, 0x71, 0x09, 0xb2, 0x4d, 0xec, 0x79, 0x5a, 0x03, 0xab, 0x7e, 0xdb, 0xc1, 0xf9, 0x04, 0x1d, 0xfd, 0x5c, 0xdf, 0xe8, 0x7b, 0x47, 0x9e, 0xe1, 0xa8, 0xad, 0xb6, 0x83, 0x51, 0x09, 0xd2, 0xd8, 0x6a, 0x35, 0x19, 0x43, 0xf2, 0x00, 0xff, 0x55, 0xac, 0x56, 0xb3, 0x97, 0x25, 0x45, 0x60, 0x9c, 0x62, 0xcc, 0xc3, 0xee, 0x75, 0x43, 0xc7, 0xf9, 0x51, 0x4a, 0xf0, 0x44, 0x1f, 0xc1, 0x26, 0x6b, 0xef, 0xe5, 0x10, 0x38, 0xb4, 0x04, 0x69, 0xfc, 0xa2, 0x8f, 0x2d, 0xcf, 0xb0, 0xad, 0xfc, 0x18, 0x25, 0x79, 0x6c, 0xc0, 0x2c, 0x62, 0xb3, 0xde, 0x4b, 0xd1, 0xc1, 0xa1, 0x33, 0x30, 0x66, 0x3b, 0xbe, 0x61, 0x5b, 0x5e, 0x3e, 0x35, 0x27, 0x2d, 0x64, 0x4e, 0x7c, 0x6c, 0x60, 0x20, 0xac, 0x33, 0x1d, 0x45, 0x28, 0xa3, 0x2a, 0xc8, 0x9e, 0xdd, 0x72, 0x75, 0xac, 0xea, 0x76, 0x1d, 0xab, 0x86, 0xb5, 0x6b, 0xe7, 0xd3, 0x94, 0x60, 0xb6, 0x7f, 0x20, 0x54, 0x71, 0xc9, 0xae, 0xe3, 0xaa, 0xb5, 0x6b, 0x2b, 0x39, 0xaf, 0xeb, 0x19, 0x1d, 0x81, 0x51, 0xaf, 0x6d, 0xf9, 0xda, 0x8b, 0xf9, 0x2c, 0x8d, 0x10, 0xfe, 0x34, 0xff, 0x77, 0xa3, 0x30, 0x31, 0x4c, 0x88, 0x9d, 0x87, 0xe4, 0x2e, 0x19, 0x65, 0x3e, 0x76, 0x18, 0x1f, 0x30, 0x4c, 0xb7, 0x13, 0x47, 0xef, 0xd3, 0x89, 0x25, 0xc8, 0x58, 0xd8, 0xf3, 0x71, 0x9d, 0x45, 0x44, 0x7c, 0xc8, 0x98, 0x02, 0x06, 0xea, 0x0f, 0xa9, 0xc4, 0x7d, 0x85, 0xd4, 0x65, 0x98, 0x08, 0x4c, 0x52, 0x5d, 0xcd, 0x6a, 0x88, 0xd8, 0x3c, 0x1e, 0x65, 0xc9, 0x62, 0x45, 0xe0, 0x14, 0x02, 0x53, 0x72, 0xb8, 0xeb, 0x19, 0x2d, 0x03, 0xd8, 0x16, 0xb6, 0x77, 0xd5, 0x3a, 0xd6, 0xcd, 0x7c, 0xea, 0x00, 0x2f, 0xad, 0x13, 0x95, 0x3e, 0x2f, 0xd9, 0x4c, 0xaa, 0x9b, 0xe8, 0xd9, 0x4e, 0xa8, 0x8d, 0x1d, 0x10, 0x29, 0x35, 0xb6, 0xc8, 0xfa, 0xa2, 0x6d, 0x1b, 0x72, 0x2e, 0x26, 0x71, 0x8f, 0xeb, 0x7c, 0x64, 0x69, 0x6a, 0xc4, 0x62, 0xe4, 0xc8, 0x14, 0x0e, 0x63, 0x03, 0x1b, 0x77, 0xc3, 0x8f, 0xe8, 0x18, 0x04, 0x02, 0x95, 0x86, 0x15, 0xd0, 0x5d, 0x28, 0x2b, 0x84, 0x6b, 0x5a, 0x13, 0xcf, 0xdc, 0x84, 0x5c, 0xb7, 0x7b, 0xd0, 0x34, 0x24, 0x3d, 0x5f, 0x73, 0x7d, 0x1a, 0x85, 0x49, 0x85, 0x3d, 0x20, 0x19, 0xe2, 0xd8, 0xaa, 0xd3, 0x5d, 0x2e, 0xa9, 0x90, 0x9f, 0xe8, 0xff, 0x75, 0x06, 0x1c, 0xa7, 0x03, 0x7e, 0xbc, 0x7f, 0x46, 0xbb, 0x98, 0x7b, 0xc7, 0x3d, 0x73, 0x16, 0xc6, 0xbb, 0x06, 0x30, 0x6c, 0xd7, 0xf3, 0xbf, 0x00, 0x0f, 0x0c, 0xa4, 0x46, 0x97, 0x61, 0xba, 0x65, 0x19, 0x96, 0x8f, 0x5d, 0xc7, 0xc5, 0x24, 0x62, 0x59, 0x57, 0xf9, 0x7f, 0x1b, 0x3b, 0x20, 0xe6, 0xb6, 0xc3, 0xda, 0x8c, 0x45, 0x99, 0x6a, 0xf5, 0x0b, 0x9f, 0x4a, 0xa7, 0xde, 0x19, 0x93, 0x6f, 0xdd, 0xba, 0x75, 0x2b, 0x36, 0xff, 0xa5, 0x51, 0x98, 0x1e, 0xb4, 0x66, 0x06, 0x2e, 0xdf, 0x23, 0x30, 0x6a, 0xb5, 0x9a, 0x3b, 0xd8, 0xa5, 0x4e, 0x4a, 0x2a, 0xfc, 0x09, 0x95, 0x20, 0x69, 0x6a, 0x3b, 0xd8, 0xcc, 0x27, 0xe6, 0xa4, 0x85, 0xdc, 0x89, 0xa7, 0x87, 0x5a, 0x95, 0x8b, 0xab, 0x04, 0xa2, 0x30, 0x24, 0x7a, 0x0e, 0x12, 0x7c, 0x8b, 0x26, 0x0c, 0x4f, 0x0d, 0xc7, 0x40, 0xd6, 0x92, 0x42, 0x71, 0xe8, 0x61, 0x48, 0x93, 0xbf, 0x2c, 0x36, 0x46, 0xa9, 0xcd, 0x29, 0x22, 0x20, 0x71, 0x81, 0x66, 0x20, 0x45, 0x97, 0x49, 0x1d, 0x8b, 0xd4, 0x16, 0x3c, 0x93, 0xc0, 0xaa, 0xe3, 0x5d, 0xad, 0x65, 0xfa, 0xea, 0x75, 0xcd, 0x6c, 0x61, 0x1a, 0xf0, 0x69, 0x25, 0xcb, 0x85, 0x9f, 0x25, 0x32, 0x34, 0x0b, 0x19, 0xb6, 0xaa, 0x0c, 0xab, 0x8e, 0x5f, 0xa4, 0xbb, 0x67, 0x52, 0x61, 0x0b, 0xad, 0x4a, 0x24, 0xa4, 0xfb, 0xab, 0x9e, 0x6d, 0x89, 0xd0, 0xa4, 0x5d, 0x10, 0x01, 0xed, 0xfe, 0x6c, 0xef, 0xc6, 0xfd, 0xc8, 0xe0, 0xe1, 0xf5, 0xc6, 0xd4, 0xfc, 0xeb, 0x31, 0x48, 0xd0, 0xfd, 0x62, 0x02, 0x32, 0x5b, 0x57, 0x36, 0x2a, 0xea, 0xf2, 0xfa, 0x76, 0x79, 0xb5, 0x22, 0x4b, 0x28, 0x07, 0x40, 0x05, 0x17, 0x56, 0xd7, 0x4b, 0x5b, 0x72, 0x2c, 0x78, 0xae, 0xae, 0x6d, 0x9d, 0x39, 0x25, 0xc7, 0x03, 0xc0, 0x36, 0x13, 0x24, 0xc2, 0x0a, 0x27, 0x4f, 0xc8, 0x49, 0x24, 0x43, 0x96, 0x11, 0x54, 0x2f, 0x57, 0x96, 0xcf, 0x9c, 0x92, 0x47, 0xbb, 0x25, 0x27, 0x4f, 0xc8, 0x63, 0x68, 0x1c, 0xd2, 0x54, 0x52, 0x5e, 0x5f, 0x5f, 0x95, 0x53, 0x01, 0xe7, 0xe6, 0x96, 0x52, 0x5d, 0x5b, 0x91, 0xd3, 0x01, 0xe7, 0x8a, 0xb2, 0xbe, 0xbd, 0x21, 0x43, 0xc0, 0x50, 0xab, 0x6c, 0x6e, 0x96, 0x56, 0x2a, 0x72, 0x26, 0xd0, 0x28, 0x5f, 0xd9, 0xaa, 0x6c, 0xca, 0xd9, 0x2e, 0xb3, 0x4e, 0x9e, 0x90, 0xc7, 0x83, 0x2e, 0x2a, 0x6b, 0xdb, 0x35, 0x39, 0x87, 0x26, 0x61, 0x9c, 0x75, 0x21, 0x8c, 0x98, 0xe8, 0x11, 0x9d, 0x39, 0x25, 0xcb, 0x1d, 0x43, 0x18, 0xcb, 0x64, 0x97, 0xe0, 0xcc, 0x29, 0x19, 0xcd, 0x2f, 0x41, 0x92, 0x46, 0x17, 0x42, 0x90, 0x5b, 0x2d, 0x95, 0x2b, 0xab, 0xea, 0xfa, 0xc6, 0x56, 0x75, 0x7d, 0xad, 0xb4, 0x2a, 0x4b, 0x1d, 0x99, 0x52, 0xf9, 0xcc, 0x76, 0x55, 0xa9, 0x2c, 0xcb, 0xb1, 0xb0, 0x6c, 0xa3, 0x52, 0xda, 0xaa, 0x2c, 0xcb, 0xf1, 0x79, 0x1d, 0xa6, 0x07, 0xed, 0x93, 0x03, 0x57, 0x46, 0x68, 0x8a, 0x63, 0x07, 0x4c, 0x31, 0xe5, 0xea, 0x9b, 0xe2, 0xaf, 0x4a, 0x30, 0x35, 0x20, 0x57, 0x0c, 0xec, 0xe4, 0x79, 0x48, 0xb2, 0x10, 0x65, 0xd9, 0xf3, 0xc9, 0x81, 0x49, 0x87, 0x06, 0x6c, 0x5f, 0x06, 0xa5, 0xb8, 0x70, 0x05, 0x11, 0x3f, 0xa0, 0x82, 0x20, 0x14, 0x7d, 0x46, 0xbe, 0x24, 0x41, 0xfe, 0x20, 0xee, 0x88, 0x8d, 0x22, 0xd6, 0xb5, 0x51, 0x9c, 0xef, 0x35, 0xe0, 0xe8, 0xc1, 0x63, 0xe8, 0xb3, 0xe2, 0x35, 0x09, 0x8e, 0x0c, 0x2e, 0xb4, 0x06, 0xda, 0xf0, 0x1c, 0x8c, 0x36, 0xb1, 0xbf, 0x67, 0x8b, 0x62, 0xe3, 0xf1, 0x01, 0x29, 0x8c, 0x34, 0xf7, 0xfa, 0x8a, 0xa3, 0xc2, 0x39, 0x30, 0x7e, 0x50, 0xb5, 0xc4, 0xac, 0xe9, 0xb3, 0xf4, 0x8b, 0x31, 0x78, 0x60, 0x20, 0xf9, 0x40, 0x43, 0x1f, 0x01, 0x30, 0x2c, 0xa7, 0xe5, 0xb3, 0x82, 0x82, 0xed, 0x4f, 0x69, 0x2a, 0xa1, 0x6b, 0x9f, 0xec, 0x3d, 0x2d, 0x3f, 0x68, 0x8f, 0xd3, 0x76, 0x60, 0x22, 0xaa, 0x70, 0xae, 0x63, 0x68, 0x82, 0x1a, 0x5a, 0x38, 0x60, 0xa4, 0x7d, 0xb9, 0xfa, 0x19, 0x90, 0x75, 0xd3, 0xc0, 0x96, 0xaf, 0x7a, 0xbe, 0x8b, 0xb5, 0xa6, 0x61, 0x35, 0xe8, 0x06, 0x9c, 0x2a, 0x26, 0x77, 0x35, 0xd3, 0xc3, 0xca, 0x04, 0x6b, 0xde, 0x14, 0xad, 0x04, 0x41, 0x73, 0x9c, 0x1b, 0x42, 0x8c, 0x76, 0x21, 0x58, 0x73, 0x80, 0x98, 0xff, 0x76, 0x0a, 0x32, 0xa1, 0xb2, 0x14, 0x1d, 0x85, 0xec, 0x55, 0xed, 0xba, 0xa6, 0x8a, 0xa3, 0x06, 0xf3, 0x44, 0x86, 0xc8, 0x36, 0xf8, 0x71, 0xe3, 0x19, 0x98, 0xa6, 0x2a, 0x76, 0xcb, 0xc7, 0xae, 0xaa, 0x9b, 0x9a, 0xe7, 0x51, 0xa7, 0xa5, 0xa8, 0x2a, 0x22, 0x6d, 0xeb, 0xa4, 0x69, 0x49, 0xb4, 0xa0, 0xd3, 0x30, 0x45, 0x11, 0xcd, 0x96, 0xe9, 0x1b, 0x8e, 0x89, 0x55, 0x72, 0xf8, 0xf1, 0xe8, 0x46, 0x1c, 0x58, 0x36, 0x49, 0x34, 0x6a, 0x5c, 0x81, 0x58, 0xe4, 0xa1, 0x65, 0x78, 0x84, 0xc2, 0x1a, 0xd8, 0xc2, 0xae, 0xe6, 0x63, 0x15, 0x7f, 0xae, 0xa5, 0x99, 0x9e, 0xaa, 0x59, 0x75, 0x75, 0x4f, 0xf3, 0xf6, 0xf2, 0xd3, 0x84, 0xa0, 0x1c, 0xcb, 0x4b, 0xca, 0x43, 0x44, 0x71, 0x85, 0xeb, 0x55, 0xa8, 0x5a, 0xc9, 0xaa, 0x7f, 0x5a, 0xf3, 0xf6, 0x50, 0x11, 0x8e, 0x50, 0x16, 0xcf, 0x77, 0x0d, 0xab, 0xa1, 0xea, 0x7b, 0x58, 0xbf, 0xa6, 0xb6, 0xfc, 0xdd, 0x73, 0xf9, 0x87, 0xc3, 0xfd, 0x53, 0x0b, 0x37, 0xa9, 0xce, 0x12, 0x51, 0xd9, 0xf6, 0x77, 0xcf, 0xa1, 0x4d, 0xc8, 0x92, 0xc9, 0x68, 0x1a, 0x37, 0xb1, 0xba, 0x6b, 0xbb, 0x34, 0xb3, 0xe4, 0x06, 0xac, 0xec, 0x90, 0x07, 0x17, 0xd7, 0x39, 0xa0, 0x66, 0xd7, 0x71, 0x31, 0xb9, 0xb9, 0x51, 0xa9, 0x2c, 0x2b, 0x19, 0xc1, 0x72, 0xc1, 0x76, 0x49, 0x40, 0x35, 0xec, 0xc0, 0xc1, 0x19, 0x16, 0x50, 0x0d, 0x5b, 0xb8, 0xf7, 0x34, 0x4c, 0xe9, 0x3a, 0x1b, 0xb3, 0xa1, 0xab, 0xfc, 0x88, 0xe2, 0xe5, 0xe5, 0x2e, 0x67, 0xe9, 0xfa, 0x0a, 0x53, 0xe0, 0x31, 0xee, 0xa1, 0x67, 0xe1, 0x81, 0x8e, 0xb3, 0xc2, 0xc0, 0xc9, 0xbe, 0x51, 0xf6, 0x42, 0x4f, 0xc3, 0x94, 0xd3, 0xee, 0x07, 0xa2, 0xae, 0x1e, 0x9d, 0x76, 0x2f, 0xec, 0x2c, 0x4c, 0x3b, 0x7b, 0x4e, 0x3f, 0x6e, 0x2a, 0x8c, 0x43, 0xce, 0x9e, 0xd3, 0x0b, 0x7c, 0x8c, 0x9e, 0x57, 0x5d, 0xac, 0x6b, 0x3e, 0xae, 0xe7, 0x1f, 0x0c, 0xab, 0x87, 0x1a, 0xd0, 0x71, 0x90, 0x75, 0x5d, 0xc5, 0x96, 0xb6, 0x63, 0x62, 0x55, 0x73, 0xb1, 0xa5, 0x79, 0xf9, 0xd9, 0xb0, 0x72, 0x4e, 0xd7, 0x2b, 0xb4, 0xb5, 0x44, 0x1b, 0xd1, 0x53, 0x30, 0x69, 0xef, 0x5c, 0xd5, 0x59, 0x48, 0xaa, 0x8e, 0x8b, 0x77, 0x8d, 0x17, 0xf3, 0x8f, 0x52, 0xff, 0x4e, 0x90, 0x06, 0x1a, 0x90, 0x1b, 0x54, 0x8c, 0x9e, 0x04, 0x59, 0xf7, 0xf6, 0x34, 0xd7, 0xa1, 0x35, 0x81, 0xe7, 0x68, 0x3a, 0xce, 0x3f, 0xc6, 0x54, 0x99, 0x7c, 0x4d, 0x88, 0xc9, 0x92, 0xf0, 0x6e, 0x18, 0xbb, 0xbe, 0x60, 0x7c, 0x82, 0x2d, 0x09, 0x2a, 0xe3, 0x6c, 0x0b, 0x20, 0x13, 0x57, 0x74, 0x75, 0xbc, 0x40, 0xd5, 0x72, 0xce, 0x9e, 0x13, 0xee, 0xf7, 0x18, 0x8c, 0x13, 0xcd, 0x4e, 0xa7, 0x4f, 0xb2, 0x7a, 0xc6, 0xd9, 0x0b, 0xf5, 0xf8, 0xa1, 0x95, 0x96, 0xf3, 0x45, 0xc8, 0x86, 0xe3, 0x13, 0xa5, 0x81, 0x45, 0xa8, 0x2c, 0x91, 0x5c, 0xbf, 0xb4, 0xbe, 0x4c, 0xb2, 0xf4, 0x0b, 0x15, 0x39, 0x46, 0xaa, 0x85, 0xd5, 0xea, 0x56, 0x45, 0x55, 0xb6, 0xd7, 0xb6, 0xaa, 0xb5, 0x8a, 0x1c, 0x0f, 0x97, 0xa5, 0xdf, 0x8f, 0x41, 0xae, 0xfb, 0x84, 0x81, 0x3e, 0x09, 0x0f, 0x8a, 0xeb, 0x00, 0x0f, 0xfb, 0xea, 0x0d, 0xc3, 0xa5, 0x4b, 0xa6, 0xa9, 0xb1, 0x0a, 0x3b, 0x98, 0xb4, 0x69, 0xae, 0xb5, 0x89, 0xfd, 0x4b, 0x86, 0x4b, 0x16, 0x44, 0x53, 0xf3, 0xd1, 0x2a, 0xcc, 0x5a, 0xb6, 0xea, 0xf9, 0x9a, 0x55, 0xd7, 0xdc, 0xba, 0xda, 0xb9, 0x88, 0x51, 0x35, 0x5d, 0xc7, 0x9e, 0x67, 0xb3, 0x54, 0x15, 0xb0, 0x7c, 0xcc, 0xb2, 0x37, 0xb9, 0x72, 0x67, 0x0f, 0x2f, 0x71, 0xd5, 0x9e, 0x00, 0x8b, 0x1f, 0x14, 0x60, 0x0f, 0x43, 0xba, 0xa9, 0x39, 0x2a, 0xb6, 0x7c, 0xb7, 0x4d, 0xeb, 0xca, 0x94, 0x92, 0x6a, 0x6a, 0x4e, 0x85, 0x3c, 0x7f, 0x34, 0xe5, 0xfd, 0xbf, 0xc4, 0x21, 0x1b, 0xae, 0x2d, 0x49, 0xa9, 0xae, 0xd3, 0x3c, 0x22, 0xd1, 0x9d, 0xe6, 0xd8, 0x3d, 0x2b, 0xd1, 0xc5, 0x25, 0x92, 0x60, 0x8a, 0xa3, 0xac, 0xe2, 0x53, 0x18, 0x92, 0x24, 0x77, 0xb2, 0xb7, 0x60, 0x76, 0x8a, 0x49, 0x29, 0xfc, 0x09, 0xad, 0xc0, 0xe8, 0x55, 0x8f, 0x72, 0x8f, 0x52, 0xee, 0x47, 0xef, 0xcd, 0x7d, 0x71, 0x93, 0x92, 0xa7, 0x2f, 0x6e, 0xaa, 0x6b, 0xeb, 0x4a, 0xad, 0xb4, 0xaa, 0x70, 0x38, 0x7a, 0x08, 0x12, 0xa6, 0x76, 0xb3, 0xdd, 0x9d, 0x8a, 0xa8, 0x68, 0x58, 0xc7, 0x3f, 0x04, 0x89, 0x1b, 0x58, 0xbb, 0xd6, 0x9d, 0x00, 0xa8, 0xe8, 0x43, 0x0c, 0xfd, 0xe3, 0x90, 0xa4, 0xfe, 0x42, 0x00, 0xdc, 0x63, 0xf2, 0x08, 0x4a, 0x41, 0x62, 0x69, 0x5d, 0x21, 0xe1, 0x2f, 0x43, 0x96, 0x49, 0xd5, 0x8d, 0x6a, 0x65, 0xa9, 0x22, 0xc7, 0xe6, 0x4f, 0xc3, 0x28, 0x73, 0x02, 0x59, 0x1a, 0x81, 0x1b, 0xe4, 0x11, 0xfe, 0xc8, 0x39, 0x24, 0xd1, 0xba, 0x5d, 0x2b, 0x57, 0x14, 0x39, 0x16, 0x9e, 0x5e, 0x0f, 0xb2, 0xe1, 0xb2, 0xf2, 0xa3, 0x89, 0xa9, 0xbf, 0x97, 0x20, 0x13, 0x2a, 0x13, 0x49, 0x81, 0xa2, 0x99, 0xa6, 0x7d, 0x43, 0xd5, 0x4c, 0x43, 0xf3, 0x78, 0x50, 0x00, 0x15, 0x95, 0x88, 0x64, 0xd8, 0x49, 0xfb, 0x48, 0x8c, 0x7f, 0x55, 0x02, 0xb9, 0xb7, 0xc4, 0xec, 0x31, 0x50, 0xfa, 0x99, 0x1a, 0xf8, 0x8a, 0x04, 0xb9, 0xee, 0xba, 0xb2, 0xc7, 0xbc, 0xa3, 0x3f, 0x53, 0xf3, 0xde, 0x8a, 0xc1, 0x78, 0x57, 0x35, 0x39, 0xac, 0x75, 0x9f, 0x83, 0x49, 0xa3, 0x8e, 0x9b, 0x8e, 0xed, 0x63, 0x4b, 0x6f, 0xab, 0x26, 0xbe, 0x8e, 0xcd, 0xfc, 0x3c, 0xdd, 0x28, 0x8e, 0xdf, 0xbb, 0x5e, 0x5d, 0xac, 0x76, 0x70, 0xab, 0x04, 0x56, 0x9c, 0xaa, 0x2e, 0x57, 0x6a, 0x1b, 0xeb, 0x5b, 0x95, 0xb5, 0xa5, 0x2b, 0xea, 0xf6, 0xda, 0xff, 0x5f, 0x5b, 0xbf, 0xb4, 0xa6, 0xc8, 0x46, 0x8f, 0xda, 0x87, 0xb8, 0xd4, 0x37, 0x40, 0xee, 0x35, 0x0a, 0x3d, 0x08, 0x83, 0xcc, 0x92, 0x47, 0xd0, 0x14, 0x4c, 0xac, 0xad, 0xab, 0x9b, 0xd5, 0xe5, 0x8a, 0x5a, 0xb9, 0x70, 0xa1, 0xb2, 0xb4, 0xb5, 0xc9, 0x0e, 0xf0, 0x81, 0xf6, 0x56, 0xf7, 0xa2, 0x7e, 0x39, 0x0e, 0x53, 0x03, 0x2c, 0x41, 0x25, 0x7e, 0x76, 0x60, 0xc7, 0x99, 0x4f, 0x0c, 0x63, 0xfd, 0x22, 0x49, 0xf9, 0x1b, 0x9a, 0xeb, 0xf3, 0xa3, 0xc6, 0x93, 0x40, 0xbc, 0x64, 0xf9, 0xc6, 0xae, 0x81, 0x5d, 0x7e, 0xdf, 0xc1, 0x0e, 0x14, 0x13, 0x1d, 0x39, 0xbb, 0xf2, 0xf8, 0x38, 0x20, 0xc7, 0xf6, 0x0c, 0xdf, 0xb8, 0x8e, 0x55, 0xc3, 0x12, 0x97, 0x23, 0xe4, 0x80, 0x91, 0x50, 0x64, 0xd1, 0x52, 0xb5, 0xfc, 0x40, 0xdb, 0xc2, 0x0d, 0xad, 0x47, 0x9b, 0x6c, 0xe0, 0x71, 0x45, 0x16, 0x2d, 0x81, 0xf6, 0x51, 0xc8, 0xd6, 0xed, 0x16, 0xa9, 0xba, 0x98, 0x1e, 0xc9, 0x17, 0x92, 0x92, 0x61, 0xb2, 0x40, 0x85, 0xd7, 0xd3, 0x9d, 0x5b, 0x99, 0xac, 0x92, 0x61, 0x32, 0xa6, 0xf2, 0x04, 0x4c, 0x68, 0x8d, 0x86, 0x4b, 0xc8, 0x05, 0x11, 0x3b, 0x21, 0xe4, 0x02, 0x31, 0x55, 0x9c, 0xb9, 0x08, 0x29, 0xe1, 0x07, 0x92, 0x92, 0x89, 0x27, 0x54, 0x87, 0xdd, 0xcc, 0xc5, 0x16, 0xd2, 0x4a, 0xca, 0x12, 0x8d, 0x47, 0x21, 0x6b, 0x78, 0x6a, 0xe7, 0x92, 0x39, 0x36, 0x17, 0x5b, 0x48, 0x29, 0x19, 0xc3, 0x0b, 0x2e, 0xe8, 0xe6, 0x5f, 0x8b, 0x41, 0xae, 0xfb, 0x92, 0x1c, 0x2d, 0x43, 0xca, 0xb4, 0x75, 0x8d, 0x86, 0x16, 0x7b, 0x43, 0xb3, 0x10, 0x71, 0xaf, 0xbe, 0xb8, 0xca, 0xf5, 0x95, 0x00, 0x39, 0xf3, 0x4f, 0x12, 0xa4, 0x84, 0x18, 0x1d, 0x81, 0x84, 0xa3, 0xf9, 0x7b, 0x94, 0x2e, 0x59, 0x8e, 0xc9, 0x92, 0x42, 0x9f, 0x89, 0xdc, 0x73, 0x34, 0x8b, 0x86, 0x00, 0x97, 0x93, 0x67, 0x32, 0xaf, 0x26, 0xd6, 0xea, 0xf4, 0xf8, 0x61, 0x37, 0x9b, 0xd8, 0xf2, 0x3d, 0x31, 0xaf, 0x5c, 0xbe, 0xc4, 0xc5, 0xe8, 0x69, 0x98, 0xf4, 0x5d, 0xcd, 0x30, 0xbb, 0x74, 0x13, 0x54, 0x57, 0x16, 0x0d, 0x81, 0x72, 0x11, 0x1e, 0x12, 0xbc, 0x75, 0xec, 0x6b, 0xfa, 0x1e, 0xae, 0x77, 0x40, 0xa3, 0xf4, 0x06, 0xf6, 0x41, 0xae, 0xb0, 0xcc, 0xdb, 0x05, 0x76, 0xfe, 0x87, 0x12, 0x4c, 0x8a, 0x03, 0x53, 0x3d, 0x70, 0x56, 0x0d, 0x40, 0xb3, 0x2c, 0xdb, 0x0f, 0xbb, 0xab, 0x3f, 0x94, 0xfb, 0x70, 0x8b, 0xa5, 0x00, 0xa4, 0x84, 0x08, 0x66, 0x9a, 0x00, 0x9d, 0x96, 0x03, 0xdd, 0x36, 0x0b, 0x19, 0xfe, 0x06, 0x84, 0xbe, 0x46, 0x63, 0x47, 0x6c, 0x60, 0x22, 0x72, 0xb2, 0x42, 0xd3, 0x90, 0xdc, 0xc1, 0x0d, 0xc3, 0xe2, 0xf7, 0x9a, 0xec, 0x41, 0xdc, 0xd5, 0x26, 0x82, 0xbb, 0xda, 0xf2, 0x65, 0x98, 0xd2, 0xed, 0x66, 0xaf, 0xb9, 0x65, 0xb9, 0xe7, 0x98, 0xef, 0x7d, 0x5a, 0x7a, 0x01, 0x3a, 0x25, 0xe6, 0x57, 0x63, 0xf1, 0x95, 0x8d, 0xf2, 0xd7, 0x63, 0x33, 0x2b, 0x0c, 0xb7, 0x21, 0x86, 0xa9, 0xe0, 0x5d, 0x13, 0xeb, 0xc4, 0x74, 0xf8, 0xf1, 0xe3, 0xf0, 0x89, 0x86, 0xe1, 0xef, 0xb5, 0x76, 0x16, 0x75, 0xbb, 0x79, 0xbc, 0x61, 0x37, 0xec, 0xce, 0x6b, 0x43, 0xf2, 0x44, 0x1f, 0xe8, 0x2f, 0xfe, 0xea, 0x30, 0x1d, 0x48, 0x67, 0x22, 0xdf, 0x33, 0x16, 0xd7, 0x60, 0x8a, 0x2b, 0xab, 0xf4, 0xdd, 0x05, 0x3b, 0x42, 0xa0, 0x7b, 0xde, 0xff, 0xe4, 0xbf, 0xf5, 0x36, 0xcd, 0xd5, 0xca, 0x24, 0x87, 0x92, 0x36, 0x76, 0xca, 0x28, 0x2a, 0xf0, 0x40, 0x17, 0x1f, 0x5b, 0x97, 0xd8, 0x8d, 0x60, 0xfc, 0x3e, 0x67, 0x9c, 0x0a, 0x31, 0x6e, 0x72, 0x68, 0x71, 0x09, 0xc6, 0x0f, 0xc3, 0xf5, 0x0f, 0x9c, 0x2b, 0x8b, 0xc3, 0x24, 0x2b, 0x30, 0x41, 0x49, 0xf4, 0x96, 0xe7, 0xdb, 0x4d, 0xba, 0xe9, 0xdd, 0x9b, 0xe6, 0x1f, 0xdf, 0x66, 0x0b, 0x25, 0x47, 0x60, 0x4b, 0x01, 0xaa, 0x58, 0x04, 0xfa, 0xba, 0xa6, 0x8e, 0x75, 0x33, 0x82, 0xe1, 0x0d, 0x6e, 0x48, 0xa0, 0x5f, 0xfc, 0x2c, 0x4c, 0x93, 0xdf, 0x74, 0x4f, 0x0a, 0x5b, 0x12, 0x7d, 0xdb, 0x95, 0xff, 0xe1, 0x4b, 0x6c, 0x2d, 0x4e, 0x05, 0x04, 0x21, 0x9b, 0x42, 0xb3, 0xd8, 0xc0, 0xbe, 0x8f, 0x5d, 0x4f, 0xd5, 0xcc, 0x41, 0xe6, 0x85, 0xae, 0x0b, 0xf2, 0x5f, 0x7e, 0xb7, 0x7b, 0x16, 0x57, 0x18, 0xb2, 0x64, 0x9a, 0xc5, 0x6d, 0x78, 0x70, 0x40, 0x54, 0x0c, 0xc1, 0xf9, 0x32, 0xe7, 0x9c, 0xee, 0x8b, 0x0c, 0x42, 0xbb, 0x01, 0x42, 0x1e, 0xcc, 0xe5, 0x10, 0x9c, 0x7f, 0xc0, 0x39, 0x11, 0xc7, 0x8a, 0x29, 0x25, 0x8c, 0x17, 0x61, 0xf2, 0x3a, 0x76, 0x77, 0x6c, 0x8f, 0x5f, 0xd1, 0x0c, 0x41, 0xf7, 0x0a, 0xa7, 0x9b, 0xe0, 0x40, 0x7a, 0x67, 0x43, 0xb8, 0x9e, 0x85, 0xd4, 0xae, 0xa6, 0xe3, 0x21, 0x28, 0xbe, 0xc2, 0x29, 0xc6, 0x88, 0x3e, 0x81, 0x96, 0x20, 0xdb, 0xb0, 0x79, 0x5a, 0x8a, 0x86, 0xbf, 0xca, 0xe1, 0x19, 0x81, 0xe1, 0x14, 0x8e, 0xed, 0xb4, 0x4c, 0x92, 0xb3, 0xa2, 0x29, 0xfe, 0x50, 0x50, 0x08, 0x0c, 0xa7, 0x38, 0x84, 0x5b, 0xff, 0x48, 0x50, 0x78, 0x21, 0x7f, 0x3e, 0x0f, 0x19, 0xdb, 0x32, 0xdb, 0xb6, 0x35, 0x8c, 0x11, 0x7f, 0xcc, 0x19, 0x80, 0x43, 0x08, 0xc1, 0x79, 0x48, 0x0f, 0x3b, 0x11, 0x7f, 0xf2, 0xae, 0x58, 0x1e, 0x62, 0x06, 0x56, 0x60, 0x42, 0x6c, 0x50, 0x86, 0x6d, 0x0d, 0x41, 0xf1, 0xa7, 0x9c, 0x22, 0x17, 0x82, 0xf1, 0x61, 0xf8, 0xd8, 0xf3, 0x1b, 0x78, 0x18, 0x92, 0xd7, 0xc4, 0x30, 0x38, 0x84, 0xbb, 0x72, 0x07, 0x5b, 0xfa, 0xde, 0x70, 0x0c, 0x5f, 0x13, 0xae, 0x14, 0x18, 0x42, 0xb1, 0x04, 0xe3, 0x4d, 0xcd, 0xf5, 0xf6, 0x34, 0x73, 0xa8, 0xe9, 0xf8, 0x33, 0xce, 0x91, 0x0d, 0x40, 0xdc, 0x23, 0x2d, 0xeb, 0x30, 0x34, 0x5f, 0x17, 0x1e, 0x09, 0xc1, 0xf8, 0xd2, 0xf3, 0x7c, 0x7a, 0x9f, 0x75, 0x18, 0xb6, 0x6f, 0x88, 0xa5, 0xc7, 0xb0, 0xb5, 0x30, 0xe3, 0x79, 0x48, 0x7b, 0xc6, 0xcd, 0xa1, 0x68, 0xfe, 0x5c, 0xcc, 0x34, 0x05, 0x10, 0xf0, 0x15, 0x78, 0x68, 0x60, 0x9a, 0x18, 0x82, 0xec, 0x2f, 0x38, 0xd9, 0x91, 0x01, 0xa9, 0x82, 0x6f, 0x09, 0x87, 0xa5, 0xfc, 0x4b, 0xb1, 0x25, 0xe0, 0x1e, 0xae, 0x0d, 0x72, 0x50, 0xf0, 0xb4, 0xdd, 0xc3, 0x79, 0xed, 0xaf, 0x84, 0xd7, 0x18, 0xb6, 0xcb, 0x6b, 0x5b, 0x70, 0x84, 0x33, 0x1e, 0x6e, 0x5e, 0xbf, 0x29, 0x36, 0x56, 0x86, 0xde, 0xee, 0x9e, 0xdd, 0x9f, 0x83, 0x99, 0xc0, 0x9d, 0xa2, 0x22, 0xf5, 0xd4, 0xa6, 0xe6, 0x0c, 0xc1, 0xfc, 0x2d, 0xce, 0x2c, 0x76, 0xfc, 0xa0, 0xa4, 0xf5, 0x6a, 0x9a, 0x43, 0xc8, 0x2f, 0x43, 0x5e, 0x90, 0xb7, 0x2c, 0x17, 0xeb, 0x76, 0xc3, 0x32, 0x6e, 0xe2, 0xfa, 0x10, 0xd4, 0x7f, 0xdd, 0x33, 0x55, 0xdb, 0x21, 0x38, 0x61, 0xae, 0x82, 0x1c, 0xd4, 0x2a, 0xaa, 0xd1, 0x74, 0x6c, 0xd7, 0x8f, 0x60, 0xfc, 0xb6, 0x98, 0xa9, 0x00, 0x57, 0xa5, 0xb0, 0x62, 0x05, 0x72, 0xf4, 0x71, 0xd8, 0x90, 0xfc, 0x1b, 0x4e, 0x34, 0xde, 0x41, 0xf1, 0x8d, 0x43, 0xb7, 0x9b, 0x8e, 0xe6, 0x0e, 0xb3, 0xff, 0x7d, 0x47, 0x6c, 0x1c, 0x1c, 0xc2, 0x37, 0x0e, 0xbf, 0xed, 0x60, 0x92, 0xed, 0x87, 0x60, 0x78, 0x5d, 0x6c, 0x1c, 0x02, 0xc3, 0x29, 0x44, 0xc1, 0x30, 0x04, 0xc5, 0xdf, 0x0a, 0x0a, 0x81, 0x21, 0x14, 0x9f, 0xe9, 0x24, 0x5a, 0x17, 0x37, 0x0c, 0xcf, 0x77, 0x59, 0x1d, 0x7c, 0x6f, 0xaa, 0xef, 0xbe, 0xdb, 0x5d, 0x84, 0x29, 0x21, 0x68, 0xf1, 0x22, 0x4c, 0xf4, 0x94, 0x18, 0x28, 0xea, 0xdb, 0x8f, 0xfc, 0x2f, 0xbe, 0xcf, 0x37, 0xa3, 0xee, 0x0a, 0xa3, 0xb8, 0x4a, 0xe6, 0xbd, 0xbb, 0x0e, 0x88, 0x26, 0x7b, 0xe9, 0xfd, 0x60, 0xea, 0xbb, 0xca, 0x80, 0xe2, 0x05, 0x18, 0xef, 0xaa, 0x01, 0xa2, 0xa9, 0x7e, 0x89, 0x53, 0x65, 0xc3, 0x25, 0x40, 0xf1, 0x34, 0x24, 0x48, 0x3e, 0x8f, 0x86, 0xff, 0x32, 0x87, 0x53, 0xf5, 0xe2, 0xa7, 0x20, 0x25, 0xf2, 0x78, 0x34, 0xf4, 0x57, 0x38, 0x34, 0x80, 0x10, 0xb8, 0xc8, 0xe1, 0xd1, 0xf0, 0x2f, 0x08, 0xb8, 0x80, 0x10, 0xf8, 0xf0, 0x2e, 0xfc, 0xde, 0xaf, 0x25, 0xf8, 0x3e, 0x2c, 0x7c, 0x77, 0x1e, 0xc6, 0x78, 0xf2, 0x8e, 0x46, 0x7f, 0x91, 0x77, 0x2e, 0x10, 0xc5, 0xb3, 0x90, 0x1c, 0xd2, 0xe1, 0xbf, 0xce, 0xa1, 0x4c, 0xbf, 0xb8, 0x04, 0x99, 0x50, 0xc2, 0x8e, 0x86, 0xff, 0x06, 0x87, 0x87, 0x51, 0xc4, 0x74, 0x9e, 0xb0, 0xa3, 0x09, 0x7e, 0x53, 0x98, 0xce, 0x11, 0xc4, 0x6d, 0x22, 0x57, 0x47, 0xa3, 0x7f, 0x4b, 0x78, 0x5d, 0x40, 0x8a, 0xcf, 0x43, 0x3a, 0xd8, 0x7f, 0xa3, 0xf1, 0xbf, 0xcd, 0xf1, 0x1d, 0x0c, 0xf1, 0x40, 0x68, 0xff, 0x8f, 0xa6, 0xf8, 0x1d, 0xe1, 0x81, 0x10, 0x8a, 0x2c, 0xa3, 0xde, 0x9c, 0x1e, 0xcd, 0xf4, 0xbb, 0x62, 0x19, 0xf5, 0xa4, 0x74, 0x32, 0x9b, 0x74, 0x1b, 0x8c, 0xa6, 0xf8, 0x3d, 0x31, 0x9b, 0x54, 0x9f, 0x98, 0xd1, 0x9b, 0x24, 0xa3, 0x39, 0x7e, 0x5f, 0x98, 0xd1, 0x93, 0x23, 0x8b, 0x1b, 0x80, 0xfa, 0x13, 0x64, 0x34, 0xdf, 0x97, 0x38, 0xdf, 0x64, 0x5f, 0x7e, 0x2c, 0x5e, 0x82, 0x23, 0x83, 0x93, 0x63, 0x34, 0xeb, 0x97, 0xdf, 0xef, 0x39, 0xce, 0x84, 0x73, 0x63, 0x71, 0xab, 0xb3, 0xcb, 0x86, 0x13, 0x63, 0x34, 0xed, 0xcb, 0xef, 0x77, 0x6f, 0xb4, 0xe1, 0xbc, 0x58, 0x2c, 0x01, 0x74, 0x72, 0x52, 0x34, 0xd7, 0x2b, 0x9c, 0x2b, 0x04, 0x22, 0x4b, 0x83, 0xa7, 0xa4, 0x68, 0xfc, 0x57, 0xc4, 0xd2, 0xe0, 0x08, 0xb2, 0x34, 0x44, 0x36, 0x8a, 0x46, 0xbf, 0x2a, 0x96, 0x86, 0x80, 0x14, 0xcf, 0x43, 0xca, 0x6a, 0x99, 0x26, 0x89, 0x2d, 0x74, 0xef, 0xcf, 0x99, 0xf2, 0x3f, 0xfa, 0x80, 0x83, 0x05, 0xa0, 0x78, 0x1a, 0x92, 0xb8, 0xb9, 0x83, 0xeb, 0x51, 0xc8, 0x7f, 0xff, 0x40, 0xec, 0x27, 0x44, 0xbb, 0xf8, 0x3c, 0x00, 0x3b, 0x4c, 0xd3, 0xb7, 0x44, 0x11, 0xd8, 0xff, 0xf8, 0x80, 0x7f, 0x29, 0xd1, 0x81, 0x74, 0x08, 0xd8, 0x77, 0x17, 0xf7, 0x26, 0x78, 0xb7, 0x9b, 0x80, 0x1e, 0xc0, 0x9f, 0x85, 0xb1, 0xab, 0x9e, 0x6d, 0xf9, 0x5a, 0x23, 0x0a, 0xfd, 0x9f, 0x1c, 0x2d, 0xf4, 0x89, 0xc3, 0x9a, 0xb6, 0x8b, 0x7d, 0xad, 0xe1, 0x45, 0x61, 0xff, 0x8b, 0x63, 0x03, 0x00, 0x01, 0xeb, 0x9a, 0xe7, 0x0f, 0x33, 0xee, 0xff, 0x16, 0x60, 0x01, 0x20, 0x46, 0x93, 0xdf, 0xd7, 0x70, 0x3b, 0x0a, 0xfb, 0x9e, 0x30, 0x9a, 0xeb, 0x17, 0x3f, 0x05, 0x69, 0xf2, 0x93, 0x7d, 0x3d, 0x14, 0x01, 0xfe, 0x1f, 0x0e, 0xee, 0x20, 0x48, 0xcf, 0x9e, 0x5f, 0xf7, 0x8d, 0x68, 0x67, 0xff, 0x2f, 0x9f, 0x69, 0xa1, 0x5f, 0x2c, 0x41, 0xc6, 0xf3, 0xeb, 0xf5, 0x16, 0xaf, 0x68, 0x22, 0xe0, 0x3f, 0xfe, 0x20, 0x38, 0xe4, 0x06, 0x98, 0xf2, 0xd1, 0xc1, 0x97, 0x75, 0xb0, 0x62, 0xaf, 0xd8, 0xec, 0x9a, 0x0e, 0x5e, 0x9f, 0x80, 0xa3, 0xba, 0xdd, 0xdc, 0xb1, 0xbd, 0xe3, 0xa1, 0x6d, 0xe8, 0xb8, 0x70, 0x1d, 0xbf, 0x69, 0x0b, 0x5c, 0x39, 0x73, 0xb8, 0x2b, 0xba, 0xf9, 0x1f, 0x8d, 0x43, 0x6a, 0x49, 0xf3, 0x7c, 0xed, 0x86, 0xd6, 0x46, 0x8f, 0x41, 0xaa, 0x6a, 0xf9, 0x27, 0x4f, 0x6c, 0xf8, 0x2e, 0x7d, 0xc5, 0x14, 0x2f, 0xa7, 0xef, 0xde, 0x9e, 0x4d, 0x1a, 0x44, 0xa6, 0x04, 0x4d, 0xe8, 0x18, 0x24, 0xe9, 0x6f, 0x7a, 0x4b, 0x19, 0x2f, 0x8f, 0xbf, 0x71, 0x7b, 0x76, 0xa4, 0xa3, 0xc7, 0xda, 0xd0, 0x15, 0xc8, 0xd4, 0xda, 0xdb, 0x86, 0xe5, 0x9f, 0x39, 0x45, 0xe8, 0xc8, 0xe0, 0x13, 0xe5, 0xb3, 0x77, 0x6f, 0xcf, 0x9e, 0x3c, 0xd0, 0x40, 0x92, 0x12, 0x3b, 0x03, 0x13, 0x68, 0xfa, 0x05, 0x65, 0x98, 0x0b, 0x5d, 0x82, 0x94, 0x78, 0x64, 0xb7, 0xfd, 0xe5, 0xf3, 0xdc, 0x84, 0xfb, 0xe2, 0x0e, 0xc8, 0xd0, 0xcf, 0x43, 0xb6, 0xd6, 0xbe, 0x60, 0xda, 0x1a, 0xf7, 0x41, 0x72, 0x4e, 0x5a, 0x88, 0x95, 0xcf, 0xdd, 0xbd, 0x3d, 0x7b, 0x6a, 0x68, 0x62, 0x0e, 0xa7, 0xcc, 0x5d, 0x6c, 0xe8, 0x05, 0x48, 0x07, 0xcf, 0xf4, 0x7d, 0x42, 0xac, 0xfc, 0x49, 0x6e, 0xf7, 0xfd, 0xd1, 0x77, 0xe8, 0x42, 0x96, 0x33, 0x77, 0x8f, 0xcd, 0x49, 0x0b, 0xd2, 0xfd, 0x58, 0xce, 0x7d, 0xd2, 0xc5, 0x16, 0xb2, 0xfc, 0xcc, 0x29, 0xfa, 0x02, 0x43, 0xba, 0x5f, 0xcb, 0x39, 0x7d, 0x87, 0x0e, 0x5d, 0x84, 0xb1, 0x5a, 0xbb, 0xdc, 0xf6, 0xb1, 0x47, 0xbf, 0x2c, 0xca, 0x96, 0x9f, 0xb9, 0x7b, 0x7b, 0xf6, 0xe3, 0x43, 0xb2, 0x52, 0x9c, 0x22, 0x08, 0xd0, 0x1c, 0x64, 0xd6, 0x6c, 0xb7, 0xa9, 0x99, 0x8c, 0x0f, 0xd8, 0x0b, 0x99, 0x90, 0x08, 0x6d, 0x93, 0x91, 0xb0, 0xd9, 0xf6, 0xe8, 0xff, 0x74, 0xfc, 0x14, 0x31, 0xd9, 0x61, 0x42, 0x06, 0x24, 0x6b, 0xed, 0x9a, 0xe6, 0xe4, 0xb3, 0xf4, 0x6d, 0xc1, 0x23, 0x8b, 0x01, 0x42, 0xac, 0xad, 0x45, 0xda, 0x4e, 0x3f, 0xab, 0x28, 0x9f, 0xba, 0x7b, 0x7b, 0xf6, 0x99, 0xa1, 0x7b, 0xac, 0x69, 0x0e, 0xed, 0x8e, 0xf5, 0x80, 0xbe, 0x23, 0x91, 0x85, 0xc5, 0x6e, 0x5c, 0x49, 0x8f, 0xe3, 0xb4, 0xc7, 0x63, 0x03, 0x7b, 0x0c, 0xb4, 0x58, 0xbf, 0xd6, 0xe7, 0xdf, 0x3c, 0xc4, 0x48, 0xd9, 0xa9, 0x86, 0x74, 0xfd, 0xab, 0x6f, 0xde, 0xf7, 0xa2, 0x0d, 0x2c, 0x40, 0x2f, 0x49, 0x30, 0x5e, 0x6b, 0xaf, 0xf1, 0xfc, 0x4a, 0x2c, 0xcf, 0xf1, 0x2f, 0xff, 0x07, 0x59, 0x1e, 0xd2, 0x63, 0xb6, 0x9f, 0xf9, 0xfc, 0x9b, 0xb3, 0x27, 0x86, 0x36, 0x82, 0x6e, 0x41, 0xd4, 0x86, 0xee, 0x3e, 0xd1, 0x17, 0xa8, 0x15, 0x15, 0x92, 0xab, 0xeb, 0xb8, 0x4e, 0xac, 0x98, 0xb8, 0x87, 0x15, 0x21, 0x3d, 0x66, 0x45, 0x91, 0x44, 0xfd, 0xfd, 0x5b, 0x12, 0xe2, 0x43, 0xeb, 0x30, 0xca, 0x3c, 0x4c, 0xbf, 0x6a, 0x4b, 0x1f, 0x32, 0x0c, 0x3b, 0x93, 0xa3, 0x70, 0x9a, 0x99, 0x73, 0x00, 0x9d, 0x18, 0x43, 0x32, 0xc4, 0xaf, 0xe1, 0x36, 0xff, 0x74, 0x91, 0xfc, 0x44, 0xd3, 0x9d, 0x4f, 0x73, 0xa5, 0x85, 0x04, 0xff, 0xde, 0xb6, 0x18, 0x3b, 0x27, 0xcd, 0x3c, 0x07, 0x72, 0x6f, 0xac, 0x1c, 0x0a, 0xaf, 0x00, 0xea, 0x9f, 0xb1, 0x30, 0x43, 0x92, 0x31, 0x3c, 0x1e, 0x66, 0xc8, 0x9c, 0x90, 0x3b, 0x3e, 0xbf, 0x64, 0x98, 0x9e, 0x6d, 0xf5, 0x71, 0xf6, 0xfa, 0xff, 0xa7, 0xe3, 0x9c, 0x2f, 0xc0, 0x28, 0x13, 0x92, 0xb1, 0x54, 0x69, 0xfa, 0xa0, 0x59, 0x4e, 0x61, 0x0f, 0xe5, 0xd5, 0x37, 0xee, 0x14, 0x46, 0x7e, 0x70, 0xa7, 0x30, 0xf2, 0xcf, 0x77, 0x0a, 0x23, 0x6f, 0xdd, 0x29, 0x48, 0xef, 0xdc, 0x29, 0x48, 0xef, 0xdd, 0x29, 0x48, 0x3f, 0xb9, 0x53, 0x90, 0x6e, 0xed, 0x17, 0xa4, 0xaf, 0xed, 0x17, 0xa4, 0x6f, 0xee, 0x17, 0xa4, 0xef, 0xee, 0x17, 0xa4, 0xef, 0xed, 0x17, 0xa4, 0x37, 0xf6, 0x0b, 0x23, 0x3f, 0xd8, 0x2f, 0x48, 0x6f, 0xed, 0x17, 0xa4, 0x77, 0xf6, 0x0b, 0x23, 0xef, 0xed, 0x17, 0xa4, 0x9f, 0xec, 0x17, 0x46, 0x6e, 0xfd, 0x6b, 0x61, 0xe4, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x23, 0xb5, 0x7f, 0xa8, 0x5d, 0x37, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Castaway) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Castaway") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Castaway but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Castaway but is not nil && this == nil") } if this.Int32Ptr != nil && that1.Int32Ptr != nil { if *this.Int32Ptr != *that1.Int32Ptr { return fmt.Errorf("Int32Ptr this(%v) Not Equal that(%v)", *this.Int32Ptr, *that1.Int32Ptr) } } else if this.Int32Ptr != nil { return fmt.Errorf("this.Int32Ptr == nil && that.Int32Ptr != nil") } else if that1.Int32Ptr != nil { return fmt.Errorf("Int32Ptr this(%v) Not Equal that(%v)", this.Int32Ptr, that1.Int32Ptr) } if this.Int32 != that1.Int32 { return fmt.Errorf("Int32 this(%v) Not Equal that(%v)", this.Int32, that1.Int32) } if this.MyUint64Ptr != nil && that1.MyUint64Ptr != nil { if *this.MyUint64Ptr != *that1.MyUint64Ptr { return fmt.Errorf("MyUint64Ptr this(%v) Not Equal that(%v)", *this.MyUint64Ptr, *that1.MyUint64Ptr) } } else if this.MyUint64Ptr != nil { return fmt.Errorf("this.MyUint64Ptr == nil && that.MyUint64Ptr != nil") } else if that1.MyUint64Ptr != nil { return fmt.Errorf("MyUint64Ptr this(%v) Not Equal that(%v)", this.MyUint64Ptr, that1.MyUint64Ptr) } if this.MyUint64 != that1.MyUint64 { return fmt.Errorf("MyUint64 this(%v) Not Equal that(%v)", this.MyUint64, that1.MyUint64) } if this.MyFloat32Ptr != nil && that1.MyFloat32Ptr != nil { if *this.MyFloat32Ptr != *that1.MyFloat32Ptr { return fmt.Errorf("MyFloat32Ptr this(%v) Not Equal that(%v)", *this.MyFloat32Ptr, *that1.MyFloat32Ptr) } } else if this.MyFloat32Ptr != nil { return fmt.Errorf("this.MyFloat32Ptr == nil && that.MyFloat32Ptr != nil") } else if that1.MyFloat32Ptr != nil { return fmt.Errorf("MyFloat32Ptr this(%v) Not Equal that(%v)", this.MyFloat32Ptr, that1.MyFloat32Ptr) } if this.MyFloat32 != that1.MyFloat32 { return fmt.Errorf("MyFloat32 this(%v) Not Equal that(%v)", this.MyFloat32, that1.MyFloat32) } if this.MyFloat64Ptr != nil && that1.MyFloat64Ptr != nil { if *this.MyFloat64Ptr != *that1.MyFloat64Ptr { return fmt.Errorf("MyFloat64Ptr this(%v) Not Equal that(%v)", *this.MyFloat64Ptr, *that1.MyFloat64Ptr) } } else if this.MyFloat64Ptr != nil { return fmt.Errorf("this.MyFloat64Ptr == nil && that.MyFloat64Ptr != nil") } else if that1.MyFloat64Ptr != nil { return fmt.Errorf("MyFloat64Ptr this(%v) Not Equal that(%v)", this.MyFloat64Ptr, that1.MyFloat64Ptr) } if this.MyFloat64 != that1.MyFloat64 { return fmt.Errorf("MyFloat64 this(%v) Not Equal that(%v)", this.MyFloat64, that1.MyFloat64) } if !bytes.Equal(this.MyBytes, that1.MyBytes) { return fmt.Errorf("MyBytes this(%v) Not Equal that(%v)", this.MyBytes, that1.MyBytes) } if !bytes.Equal(this.NormalBytes, that1.NormalBytes) { return fmt.Errorf("NormalBytes this(%v) Not Equal that(%v)", this.NormalBytes, that1.NormalBytes) } if len(this.MyUint64S) != len(that1.MyUint64S) { return fmt.Errorf("MyUint64S this(%v) Not Equal that(%v)", len(this.MyUint64S), len(that1.MyUint64S)) } for i := range this.MyUint64S { if this.MyUint64S[i] != that1.MyUint64S[i] { return fmt.Errorf("MyUint64S this[%v](%v) Not Equal that[%v](%v)", i, this.MyUint64S[i], i, that1.MyUint64S[i]) } } if len(this.MyMap) != len(that1.MyMap) { return fmt.Errorf("MyMap this(%v) Not Equal that(%v)", len(this.MyMap), len(that1.MyMap)) } for i := range this.MyMap { if this.MyMap[i] != that1.MyMap[i] { return fmt.Errorf("MyMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyMap[i], i, that1.MyMap[i]) } } if len(this.MyCustomMap) != len(that1.MyCustomMap) { return fmt.Errorf("MyCustomMap this(%v) Not Equal that(%v)", len(this.MyCustomMap), len(that1.MyCustomMap)) } for i := range this.MyCustomMap { if this.MyCustomMap[i] != that1.MyCustomMap[i] { return fmt.Errorf("MyCustomMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyCustomMap[i], i, that1.MyCustomMap[i]) } } if len(this.MyNullableMap) != len(that1.MyNullableMap) { return fmt.Errorf("MyNullableMap this(%v) Not Equal that(%v)", len(this.MyNullableMap), len(that1.MyNullableMap)) } for i := range this.MyNullableMap { if !this.MyNullableMap[i].Equal(that1.MyNullableMap[i]) { return fmt.Errorf("MyNullableMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyNullableMap[i], i, that1.MyNullableMap[i]) } } if len(this.MyEmbeddedMap) != len(that1.MyEmbeddedMap) { return fmt.Errorf("MyEmbeddedMap this(%v) Not Equal that(%v)", len(this.MyEmbeddedMap), len(that1.MyEmbeddedMap)) } for i := range this.MyEmbeddedMap { a := this.MyEmbeddedMap[i] b := that1.MyEmbeddedMap[i] if !(&a).Equal(&b) { return fmt.Errorf("MyEmbeddedMap this[%v](%v) Not Equal that[%v](%v)", i, this.MyEmbeddedMap[i], i, that1.MyEmbeddedMap[i]) } } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return fmt.Errorf("String_ this(%v) Not Equal that(%v)", *this.String_, *that1.String_) } } else if this.String_ != nil { return fmt.Errorf("this.String_ == nil && that.String_ != nil") } else if that1.String_ != nil { return fmt.Errorf("String_ this(%v) Not Equal that(%v)", this.String_, that1.String_) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Castaway) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int32Ptr != nil && that1.Int32Ptr != nil { if *this.Int32Ptr != *that1.Int32Ptr { return false } } else if this.Int32Ptr != nil { return false } else if that1.Int32Ptr != nil { return false } if this.Int32 != that1.Int32 { return false } if this.MyUint64Ptr != nil && that1.MyUint64Ptr != nil { if *this.MyUint64Ptr != *that1.MyUint64Ptr { return false } } else if this.MyUint64Ptr != nil { return false } else if that1.MyUint64Ptr != nil { return false } if this.MyUint64 != that1.MyUint64 { return false } if this.MyFloat32Ptr != nil && that1.MyFloat32Ptr != nil { if *this.MyFloat32Ptr != *that1.MyFloat32Ptr { return false } } else if this.MyFloat32Ptr != nil { return false } else if that1.MyFloat32Ptr != nil { return false } if this.MyFloat32 != that1.MyFloat32 { return false } if this.MyFloat64Ptr != nil && that1.MyFloat64Ptr != nil { if *this.MyFloat64Ptr != *that1.MyFloat64Ptr { return false } } else if this.MyFloat64Ptr != nil { return false } else if that1.MyFloat64Ptr != nil { return false } if this.MyFloat64 != that1.MyFloat64 { return false } if !bytes.Equal(this.MyBytes, that1.MyBytes) { return false } if !bytes.Equal(this.NormalBytes, that1.NormalBytes) { return false } if len(this.MyUint64S) != len(that1.MyUint64S) { return false } for i := range this.MyUint64S { if this.MyUint64S[i] != that1.MyUint64S[i] { return false } } if len(this.MyMap) != len(that1.MyMap) { return false } for i := range this.MyMap { if this.MyMap[i] != that1.MyMap[i] { return false } } if len(this.MyCustomMap) != len(that1.MyCustomMap) { return false } for i := range this.MyCustomMap { if this.MyCustomMap[i] != that1.MyCustomMap[i] { return false } } if len(this.MyNullableMap) != len(that1.MyNullableMap) { return false } for i := range this.MyNullableMap { if !this.MyNullableMap[i].Equal(that1.MyNullableMap[i]) { return false } } if len(this.MyEmbeddedMap) != len(that1.MyEmbeddedMap) { return false } for i := range this.MyEmbeddedMap { a := this.MyEmbeddedMap[i] b := that1.MyEmbeddedMap[i] if !(&a).Equal(&b) { return false } } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return false } } else if this.String_ != nil { return false } else if that1.String_ != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Wilson) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Wilson") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Wilson but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Wilson but is not nil && this == nil") } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", *this.Int64, *that1.Int64) } } else if this.Int64 != nil { return fmt.Errorf("this.Int64 == nil && that.Int64 != nil") } else if that1.Int64 != nil { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", this.Int64, that1.Int64) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Wilson) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return false } } else if this.Int64 != nil { return false } else if that1.Int64 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type CastawayFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt32Ptr() *int32 GetInt32() int32 GetMyUint64Ptr() *github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyUint64() github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyFloat32Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat32Type GetMyFloat32() github_com_gogo_protobuf_test_casttype.MyFloat32Type GetMyFloat64Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat64Type GetMyFloat64() github_com_gogo_protobuf_test_casttype.MyFloat64Type GetMyBytes() github_com_gogo_protobuf_test_casttype.Bytes GetNormalBytes() []byte GetMyUint64S() []github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyMap() github_com_gogo_protobuf_test_casttype.MyMapType GetMyCustomMap() map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type GetMyNullableMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson GetMyEmbeddedMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson GetString_() *github_com_gogo_protobuf_test_casttype.MyStringType } func (this *Castaway) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Castaway) TestProto() github_com_gogo_protobuf_proto.Message { return NewCastawayFromFace(this) } func (this *Castaway) GetInt32Ptr() *int32 { return this.Int32Ptr } func (this *Castaway) GetInt32() int32 { return this.Int32 } func (this *Castaway) GetMyUint64Ptr() *github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64Ptr } func (this *Castaway) GetMyUint64() github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64 } func (this *Castaway) GetMyFloat32Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat32Type { return this.MyFloat32Ptr } func (this *Castaway) GetMyFloat32() github_com_gogo_protobuf_test_casttype.MyFloat32Type { return this.MyFloat32 } func (this *Castaway) GetMyFloat64Ptr() *github_com_gogo_protobuf_test_casttype.MyFloat64Type { return this.MyFloat64Ptr } func (this *Castaway) GetMyFloat64() github_com_gogo_protobuf_test_casttype.MyFloat64Type { return this.MyFloat64 } func (this *Castaway) GetMyBytes() github_com_gogo_protobuf_test_casttype.Bytes { return this.MyBytes } func (this *Castaway) GetNormalBytes() []byte { return this.NormalBytes } func (this *Castaway) GetMyUint64S() []github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyUint64S } func (this *Castaway) GetMyMap() github_com_gogo_protobuf_test_casttype.MyMapType { return this.MyMap } func (this *Castaway) GetMyCustomMap() map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type { return this.MyCustomMap } func (this *Castaway) GetMyNullableMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson { return this.MyNullableMap } func (this *Castaway) GetMyEmbeddedMap() map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson { return this.MyEmbeddedMap } func (this *Castaway) GetString_() *github_com_gogo_protobuf_test_casttype.MyStringType { return this.String_ } func NewCastawayFromFace(that CastawayFace) *Castaway { this := &Castaway{} this.Int32Ptr = that.GetInt32Ptr() this.Int32 = that.GetInt32() this.MyUint64Ptr = that.GetMyUint64Ptr() this.MyUint64 = that.GetMyUint64() this.MyFloat32Ptr = that.GetMyFloat32Ptr() this.MyFloat32 = that.GetMyFloat32() this.MyFloat64Ptr = that.GetMyFloat64Ptr() this.MyFloat64 = that.GetMyFloat64() this.MyBytes = that.GetMyBytes() this.NormalBytes = that.GetNormalBytes() this.MyUint64S = that.GetMyUint64S() this.MyMap = that.GetMyMap() this.MyCustomMap = that.GetMyCustomMap() this.MyNullableMap = that.GetMyNullableMap() this.MyEmbeddedMap = that.GetMyEmbeddedMap() this.String_ = that.GetString_() return this } type WilsonFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt64() *int64 } func (this *Wilson) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Wilson) TestProto() github_com_gogo_protobuf_proto.Message { return NewWilsonFromFace(this) } func (this *Wilson) GetInt64() *int64 { return this.Int64 } func NewWilsonFromFace(that WilsonFace) *Wilson { this := &Wilson{} this.Int64 = that.GetInt64() return this } func (this *Castaway) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&casttype.Castaway{") if this.Int32Ptr != nil { s = append(s, "Int32Ptr: "+valueToGoStringCasttype(this.Int32Ptr, "int32")+",\n") } s = append(s, "Int32: "+fmt.Sprintf("%#v", this.Int32)+",\n") if this.MyUint64Ptr != nil { s = append(s, "MyUint64Ptr: "+valueToGoStringCasttype(this.MyUint64Ptr, "github_com_gogo_protobuf_test_casttype.MyUint64Type")+",\n") } s = append(s, "MyUint64: "+fmt.Sprintf("%#v", this.MyUint64)+",\n") if this.MyFloat32Ptr != nil { s = append(s, "MyFloat32Ptr: "+valueToGoStringCasttype(this.MyFloat32Ptr, "github_com_gogo_protobuf_test_casttype.MyFloat32Type")+",\n") } s = append(s, "MyFloat32: "+fmt.Sprintf("%#v", this.MyFloat32)+",\n") if this.MyFloat64Ptr != nil { s = append(s, "MyFloat64Ptr: "+valueToGoStringCasttype(this.MyFloat64Ptr, "github_com_gogo_protobuf_test_casttype.MyFloat64Type")+",\n") } s = append(s, "MyFloat64: "+fmt.Sprintf("%#v", this.MyFloat64)+",\n") if this.MyBytes != nil { s = append(s, "MyBytes: "+valueToGoStringCasttype(this.MyBytes, "github_com_gogo_protobuf_test_casttype.Bytes")+",\n") } if this.NormalBytes != nil { s = append(s, "NormalBytes: "+valueToGoStringCasttype(this.NormalBytes, "byte")+",\n") } if this.MyUint64S != nil { s = append(s, "MyUint64S: "+fmt.Sprintf("%#v", this.MyUint64S)+",\n") } keysForMyMap := make([]string, 0, len(this.MyMap)) for k := range this.MyMap { keysForMyMap = append(keysForMyMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyMap) mapStringForMyMap := "github_com_gogo_protobuf_test_casttype.MyMapType{" for _, k := range keysForMyMap { mapStringForMyMap += fmt.Sprintf("%#v: %#v,", k, this.MyMap[k]) } mapStringForMyMap += "}" if this.MyMap != nil { s = append(s, "MyMap: "+mapStringForMyMap+",\n") } keysForMyCustomMap := make([]string, 0, len(this.MyCustomMap)) for k := range this.MyCustomMap { keysForMyCustomMap = append(keysForMyCustomMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyCustomMap) mapStringForMyCustomMap := "map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type{" for _, k := range keysForMyCustomMap { mapStringForMyCustomMap += fmt.Sprintf("%#v: %#v,", k, this.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(k)]) } mapStringForMyCustomMap += "}" if this.MyCustomMap != nil { s = append(s, "MyCustomMap: "+mapStringForMyCustomMap+",\n") } keysForMyNullableMap := make([]int32, 0, len(this.MyNullableMap)) for k := range this.MyNullableMap { keysForMyNullableMap = append(keysForMyNullableMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyNullableMap) mapStringForMyNullableMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson{" for _, k := range keysForMyNullableMap { mapStringForMyNullableMap += fmt.Sprintf("%#v: %#v,", k, this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyNullableMap += "}" if this.MyNullableMap != nil { s = append(s, "MyNullableMap: "+mapStringForMyNullableMap+",\n") } keysForMyEmbeddedMap := make([]int32, 0, len(this.MyEmbeddedMap)) for k := range this.MyEmbeddedMap { keysForMyEmbeddedMap = append(keysForMyEmbeddedMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyEmbeddedMap) mapStringForMyEmbeddedMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson{" for _, k := range keysForMyEmbeddedMap { mapStringForMyEmbeddedMap += fmt.Sprintf("%#v: %#v,", k, this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyEmbeddedMap += "}" if this.MyEmbeddedMap != nil { s = append(s, "MyEmbeddedMap: "+mapStringForMyEmbeddedMap+",\n") } if this.String_ != nil { s = append(s, "String_: "+valueToGoStringCasttype(this.String_, "github_com_gogo_protobuf_test_casttype.MyStringType")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Wilson) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&casttype.Wilson{") if this.Int64 != nil { s = append(s, "Int64: "+valueToGoStringCasttype(this.Int64, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringCasttype(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedCastaway(r randyCasttype, easy bool) *Castaway { this := &Castaway{} if r.Intn(10) != 0 { v1 := int32(r.Int63()) if r.Intn(2) == 0 { v1 *= -1 } this.Int32Ptr = &v1 } this.Int32 = int32(r.Int63()) if r.Intn(2) == 0 { this.Int32 *= -1 } if r.Intn(10) != 0 { v2 := github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) this.MyUint64Ptr = &v2 } this.MyUint64 = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) if r.Intn(10) != 0 { v3 := github_com_gogo_protobuf_test_casttype.MyFloat32Type(r.Float32()) if r.Intn(2) == 0 { v3 *= -1 } this.MyFloat32Ptr = &v3 } this.MyFloat32 = github_com_gogo_protobuf_test_casttype.MyFloat32Type(r.Float32()) if r.Intn(2) == 0 { this.MyFloat32 *= -1 } if r.Intn(10) != 0 { v4 := github_com_gogo_protobuf_test_casttype.MyFloat64Type(r.Float64()) if r.Intn(2) == 0 { v4 *= -1 } this.MyFloat64Ptr = &v4 } this.MyFloat64 = github_com_gogo_protobuf_test_casttype.MyFloat64Type(r.Float64()) if r.Intn(2) == 0 { this.MyFloat64 *= -1 } if r.Intn(10) != 0 { v5 := r.Intn(100) this.MyBytes = make(github_com_gogo_protobuf_test_casttype.Bytes, v5) for i := 0; i < v5; i++ { this.MyBytes[i] = byte(r.Intn(256)) } } if r.Intn(10) != 0 { v6 := r.Intn(100) this.NormalBytes = make([]byte, v6) for i := 0; i < v6; i++ { this.NormalBytes[i] = byte(r.Intn(256)) } } if r.Intn(10) != 0 { v7 := r.Intn(10) this.MyUint64S = make([]github_com_gogo_protobuf_test_casttype.MyUint64Type, v7) for i := 0; i < v7; i++ { this.MyUint64S[i] = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v8 := r.Intn(10) this.MyMap = make(github_com_gogo_protobuf_test_casttype.MyMapType) for i := 0; i < v8; i++ { v9 := randStringCasttype(r) this.MyMap[v9] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.MyCustomMap = make(map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type) for i := 0; i < v10; i++ { v11 := github_com_gogo_protobuf_test_casttype.MyStringType(randStringCasttype(r)) this.MyCustomMap[v11] = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.MyNullableMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson) for i := 0; i < v12; i++ { this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(int32(r.Int31()))] = NewPopulatedWilson(r, easy) } } if r.Intn(10) != 0 { v13 := r.Intn(10) this.MyEmbeddedMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson) for i := 0; i < v13; i++ { this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(int32(r.Int31()))] = *NewPopulatedWilson(r, easy) } } if r.Intn(10) != 0 { v14 := github_com_gogo_protobuf_test_casttype.MyStringType(randStringCasttype(r)) this.String_ = &v14 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCasttype(r, 17) } return this } func NewPopulatedWilson(r randyCasttype, easy bool) *Wilson { this := &Wilson{} if r.Intn(10) != 0 { v15 := int64(r.Int63()) if r.Intn(2) == 0 { v15 *= -1 } this.Int64 = &v15 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCasttype(r, 2) } return this } type randyCasttype interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneCasttype(r randyCasttype) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringCasttype(r randyCasttype) string { v16 := r.Intn(100) tmps := make([]rune, v16) for i := 0; i < v16; i++ { tmps[i] = randUTF8RuneCasttype(r) } return string(tmps) } func randUnrecognizedCasttype(r randyCasttype, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldCasttype(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldCasttype(dAtA []byte, r randyCasttype, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) v17 := r.Int63() if r.Intn(2) == 0 { v17 *= -1 } dAtA = encodeVarintPopulateCasttype(dAtA, uint64(v17)) case 1: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateCasttype(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateCasttype(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateCasttype(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Castaway) Size() (n int) { var l int _ = l if m.Int32Ptr != nil { n += 1 + sovCasttype(uint64(*m.Int32Ptr)) } n += 1 + sovCasttype(uint64(m.Int32)) if m.MyUint64Ptr != nil { n += 1 + sovCasttype(uint64(*m.MyUint64Ptr)) } n += 1 + sovCasttype(uint64(m.MyUint64)) if m.MyFloat32Ptr != nil { n += 5 } n += 5 if m.MyFloat64Ptr != nil { n += 9 } n += 9 if m.MyBytes != nil { l = len(m.MyBytes) n += 1 + l + sovCasttype(uint64(l)) } if m.NormalBytes != nil { l = len(m.NormalBytes) n += 1 + l + sovCasttype(uint64(l)) } if len(m.MyUint64S) > 0 { for _, e := range m.MyUint64S { n += 1 + sovCasttype(uint64(e)) } } if len(m.MyMap) > 0 { for k, v := range m.MyMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyCustomMap) > 0 { for k, v := range m.MyCustomMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovCasttype(uint64(len(k))) + 1 + sovCasttype(uint64(v)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyNullableMap) > 0 { for k, v := range m.MyNullableMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovCasttype(uint64(l)) } mapEntrySize := 1 + sovCasttype(uint64(k)) + l n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if len(m.MyEmbeddedMap) > 0 { for k, v := range m.MyEmbeddedMap { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovCasttype(uint64(k)) + 1 + l + sovCasttype(uint64(l)) n += mapEntrySize + 1 + sovCasttype(uint64(mapEntrySize)) } } if m.String_ != nil { l = len(*m.String_) n += 2 + l + sovCasttype(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Wilson) Size() (n int) { var l int _ = l if m.Int64 != nil { n += 1 + sovCasttype(uint64(*m.Int64)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovCasttype(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozCasttype(x uint64) (n int) { return sovCasttype(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Castaway) String() string { if this == nil { return "nil" } keysForMyMap := make([]string, 0, len(this.MyMap)) for k := range this.MyMap { keysForMyMap = append(keysForMyMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyMap) mapStringForMyMap := "github_com_gogo_protobuf_test_casttype.MyMapType{" for _, k := range keysForMyMap { mapStringForMyMap += fmt.Sprintf("%v: %v,", k, this.MyMap[k]) } mapStringForMyMap += "}" keysForMyCustomMap := make([]string, 0, len(this.MyCustomMap)) for k := range this.MyCustomMap { keysForMyCustomMap = append(keysForMyCustomMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForMyCustomMap) mapStringForMyCustomMap := "map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type{" for _, k := range keysForMyCustomMap { mapStringForMyCustomMap += fmt.Sprintf("%v: %v,", k, this.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(k)]) } mapStringForMyCustomMap += "}" keysForMyNullableMap := make([]int32, 0, len(this.MyNullableMap)) for k := range this.MyNullableMap { keysForMyNullableMap = append(keysForMyNullableMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyNullableMap) mapStringForMyNullableMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson{" for _, k := range keysForMyNullableMap { mapStringForMyNullableMap += fmt.Sprintf("%v: %v,", k, this.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyNullableMap += "}" keysForMyEmbeddedMap := make([]int32, 0, len(this.MyEmbeddedMap)) for k := range this.MyEmbeddedMap { keysForMyEmbeddedMap = append(keysForMyEmbeddedMap, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForMyEmbeddedMap) mapStringForMyEmbeddedMap := "map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson{" for _, k := range keysForMyEmbeddedMap { mapStringForMyEmbeddedMap += fmt.Sprintf("%v: %v,", k, this.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(k)]) } mapStringForMyEmbeddedMap += "}" s := strings.Join([]string{`&Castaway{`, `Int32Ptr:` + valueToStringCasttype(this.Int32Ptr) + `,`, `Int32:` + fmt.Sprintf("%v", this.Int32) + `,`, `MyUint64Ptr:` + valueToStringCasttype(this.MyUint64Ptr) + `,`, `MyUint64:` + fmt.Sprintf("%v", this.MyUint64) + `,`, `MyFloat32Ptr:` + valueToStringCasttype(this.MyFloat32Ptr) + `,`, `MyFloat32:` + fmt.Sprintf("%v", this.MyFloat32) + `,`, `MyFloat64Ptr:` + valueToStringCasttype(this.MyFloat64Ptr) + `,`, `MyFloat64:` + fmt.Sprintf("%v", this.MyFloat64) + `,`, `MyBytes:` + valueToStringCasttype(this.MyBytes) + `,`, `NormalBytes:` + valueToStringCasttype(this.NormalBytes) + `,`, `MyUint64S:` + fmt.Sprintf("%v", this.MyUint64S) + `,`, `MyMap:` + mapStringForMyMap + `,`, `MyCustomMap:` + mapStringForMyCustomMap + `,`, `MyNullableMap:` + mapStringForMyNullableMap + `,`, `MyEmbeddedMap:` + mapStringForMyEmbeddedMap + `,`, `String_:` + valueToStringCasttype(this.String_) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Wilson) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Wilson{`, `Int64:` + valueToStringCasttype(this.Int64) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringCasttype(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Castaway) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Castaway: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Castaway: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Ptr", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Int32Ptr = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int32", wireType) } m.Int32 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Int32 |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field MyUint64Ptr", wireType) } var v github_com_gogo_protobuf_test_casttype.MyUint64Type for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } m.MyUint64Ptr = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field MyUint64", wireType) } m.MyUint64 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.MyUint64 |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } case 5: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field MyFloat32Ptr", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := github_com_gogo_protobuf_test_casttype.MyFloat32Type(math.Float32frombits(v)) m.MyFloat32Ptr = &v2 case 6: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field MyFloat32", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.MyFloat32 = github_com_gogo_protobuf_test_casttype.MyFloat32Type(math.Float32frombits(v)) case 7: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field MyFloat64Ptr", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := github_com_gogo_protobuf_test_casttype.MyFloat64Type(math.Float64frombits(v)) m.MyFloat64Ptr = &v2 case 8: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field MyFloat64", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.MyFloat64 = github_com_gogo_protobuf_test_casttype.MyFloat64Type(math.Float64frombits(v)) case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyBytes", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.MyBytes = append(m.MyBytes[:0], dAtA[iNdEx:postIndex]...) if m.MyBytes == nil { m.MyBytes = []byte{} } iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NormalBytes", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.NormalBytes = append(m.NormalBytes[:0], dAtA[iNdEx:postIndex]...) if m.NormalBytes == nil { m.NormalBytes = []byte{} } iNdEx = postIndex case 11: if wireType == 0 { var v github_com_gogo_protobuf_test_casttype.MyUint64Type for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } m.MyUint64S = append(m.MyUint64S, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v github_com_gogo_protobuf_test_casttype.MyUint64Type for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } m.MyUint64S = append(m.MyUint64S, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field MyUint64S", wireType) } case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MyMap == nil { m.MyMap = make(github_com_gogo_protobuf_test_casttype.MyMapType) } var mapkey string var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthCasttype } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MyMap[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyCustomMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MyCustomMap == nil { m.MyCustomMap = make(map[github_com_gogo_protobuf_test_casttype.MyStringType]github_com_gogo_protobuf_test_casttype.MyUint64Type) } var mapkey github_com_gogo_protobuf_test_casttype.MyStringType var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthCasttype } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = github_com_gogo_protobuf_test_casttype.MyStringType(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MyCustomMap[github_com_gogo_protobuf_test_casttype.MyStringType(mapkey)] = ((github_com_gogo_protobuf_test_casttype.MyUint64Type)(mapvalue)) iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyNullableMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MyNullableMap == nil { m.MyNullableMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]*Wilson) } var mapkey int32 var mapvalue *Wilson for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthCasttype } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthCasttype } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Wilson{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MyNullableMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(mapkey)] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MyEmbeddedMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MyEmbeddedMap == nil { m.MyEmbeddedMap = make(map[github_com_gogo_protobuf_test_casttype.MyInt32Type]Wilson) } var mapkey int32 mapvalue := &Wilson{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthCasttype } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthCasttype } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Wilson{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MyEmbeddedMap[github_com_gogo_protobuf_test_casttype.MyInt32Type(mapkey)] = *mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field String_", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthCasttype } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := github_com_gogo_protobuf_test_casttype.MyStringType(dAtA[iNdEx:postIndex]) m.String_ = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Wilson) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Wilson: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Wilson: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int64", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCasttype } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Int64 = &v default: iNdEx = preIndex skippy, err := skipCasttype(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCasttype } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipCasttype(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCasttype } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCasttype } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCasttype } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthCasttype } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCasttype } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipCasttype(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthCasttype = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowCasttype = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/unmarshaler/casttype.proto", fileDescriptorCasttype) } var fileDescriptorCasttype = []byte{ // 698 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0xbf, 0x6f, 0xd3, 0x40, 0x14, 0xc7, 0x7d, 0x4d, 0xd3, 0x26, 0x97, 0x06, 0xa2, 0x13, 0x83, 0x55, 0x89, 0xb3, 0x69, 0x55, 0xe4, 0x01, 0x92, 0x2a, 0x8d, 0x4a, 0x55, 0x10, 0x83, 0xab, 0x22, 0x15, 0xe1, 0x82, 0x0c, 0x55, 0x05, 0x62, 0xb9, 0xb4, 0x26, 0x8d, 0x70, 0xec, 0xc8, 0xbe, 0x80, 0xbc, 0x55, 0x65, 0x40, 0xe2, 0x2f, 0x61, 0x64, 0x41, 0x62, 0x64, 0xec, 0xd8, 0x91, 0x29, 0xad, 0xcd, 0x52, 0xb6, 0x8e, 0x55, 0x26, 0x74, 0x77, 0x4e, 0xec, 0xfe, 0x00, 0xa5, 0xe9, 0x76, 0xef, 0xee, 0xbd, 0xcf, 0xfb, 0xde, 0xbb, 0x77, 0x77, 0xf0, 0xce, 0x96, 0xdb, 0xaa, 0xbb, 0x7e, 0xa5, 0xe3, 0xb4, 0x88, 0xe7, 0xef, 0x10, 0xdb, 0xf2, 0x2a, 0x5b, 0xc4, 0xa7, 0x34, 0x68, 0x5b, 0xe5, 0xb6, 0xe7, 0x52, 0x17, 0xe5, 0xfa, 0xf6, 0xf4, 0xfd, 0x46, 0x93, 0xee, 0x74, 0xea, 0xe5, 0x2d, 0xb7, 0x55, 0x69, 0xb8, 0x0d, 0xb7, 0xc2, 0x1d, 0xea, 0x9d, 0x77, 0xdc, 0xe2, 0x06, 0x1f, 0x89, 0xc0, 0x99, 0x3f, 0x45, 0x98, 0x5b, 0x21, 0x3e, 0x25, 0x1f, 0x49, 0x80, 0xe6, 0x60, 0x6e, 0xcd, 0xa1, 0x0b, 0xd5, 0x17, 0xd4, 0x93, 0x81, 0x0a, 0xb4, 0x8c, 0x9e, 0xef, 0x75, 0x95, 0x6c, 0x93, 0xcd, 0x99, 0x83, 0x25, 0x34, 0x0b, 0xb3, 0x7c, 0x2c, 0x8f, 0x71, 0x9f, 0xe2, 0x7e, 0x57, 0x91, 0x12, 0x3f, 0xb1, 0x86, 0x5e, 0xc3, 0x82, 0x11, 0x6c, 0x34, 0x1d, 0xba, 0x58, 0x63, 0xb8, 0x8c, 0x0a, 0xb4, 0x71, 0xfd, 0x41, 0xaf, 0xab, 0x2c, 0xfc, 0x53, 0x20, 0xb5, 0x7c, 0x9a, 0x6c, 0xac, 0x1f, 0xfd, 0x2a, 0x68, 0x5b, 0x66, 0x9a, 0x85, 0x36, 0x61, 0xae, 0x6f, 0xca, 0xe3, 0x9c, 0xfb, 0x30, 0x96, 0x30, 0x12, 0x7b, 0x00, 0x43, 0x6f, 0xe1, 0x94, 0x11, 0x3c, 0xb1, 0x5d, 0x12, 0xd7, 0x20, 0xab, 0x02, 0x6d, 0x4c, 0x5f, 0xea, 0x75, 0x95, 0xda, 0xd0, 0xe0, 0x38, 0x9c, 0x93, 0xcf, 0xd0, 0xd0, 0x1b, 0x98, 0x1f, 0xd8, 0xf2, 0x04, 0x47, 0x3f, 0x8a, 0x75, 0x8f, 0x86, 0x4f, 0x70, 0x29, 0xe5, 0xa2, 0xdc, 0x93, 0x2a, 0xd0, 0xc0, 0x28, 0xca, 0xe3, 0x9a, 0x9c, 0xa1, 0xa5, 0x94, 0x2f, 0xd6, 0xe4, 0x1c, 0x47, 0x8f, 0xa8, 0x3c, 0xc6, 0x27, 0x38, 0xf4, 0x14, 0x4e, 0x1a, 0x81, 0x1e, 0x50, 0xcb, 0x97, 0xf3, 0x2a, 0xd0, 0xa6, 0xf4, 0xf9, 0x5e, 0x57, 0xb9, 0x37, 0x24, 0x95, 0xc7, 0x99, 0x7d, 0x00, 0x52, 0x61, 0x61, 0xdd, 0xf5, 0x5a, 0xc4, 0x16, 0x3c, 0xc8, 0x78, 0x66, 0x7a, 0x0a, 0x6d, 0xb0, 0x9d, 0x88, 0xd3, 0xf6, 0xe5, 0x82, 0x9a, 0xb9, 0x4e, 0x4f, 0x26, 0x24, 0xd4, 0x84, 0x59, 0x23, 0x30, 0x48, 0x5b, 0x9e, 0x52, 0x33, 0x5a, 0xa1, 0x7a, 0xbb, 0x3c, 0x88, 0xe8, 0xdf, 0xad, 0x32, 0x5f, 0x5f, 0x75, 0xa8, 0x17, 0xe8, 0xb5, 0x5e, 0x57, 0x99, 0x1f, 0x3a, 0xa3, 0x41, 0xda, 0x3c, 0x9d, 0xc8, 0x80, 0xbe, 0x03, 0x76, 0xb1, 0x56, 0x3a, 0x3e, 0x75, 0x5b, 0x2c, 0x63, 0x91, 0x67, 0x9c, 0xbd, 0x34, 0xe3, 0xc0, 0x4b, 0xe4, 0x75, 0xf6, 0x0e, 0xaf, 0xb0, 0xd3, 0x97, 0xd4, 0x6b, 0x3a, 0x0d, 0x96, 0xfa, 0xcb, 0xe1, 0xc8, 0x97, 0x76, 0xa0, 0x00, 0x7d, 0x02, 0xb0, 0x68, 0x04, 0xeb, 0x1d, 0xdb, 0x26, 0x75, 0xdb, 0x62, 0xca, 0x6f, 0x70, 0xe5, 0x73, 0x97, 0x2a, 0x4f, 0xf9, 0x09, 0xed, 0x8b, 0x7b, 0x87, 0x4a, 0x75, 0x68, 0x11, 0xfc, 0x09, 0xe2, 0x1a, 0xce, 0xe6, 0x44, 0x9f, 0xb9, 0x8a, 0xd5, 0x56, 0xdd, 0xda, 0xde, 0xb6, 0xb6, 0x99, 0x8a, 0x9b, 0xff, 0x51, 0x91, 0xf2, 0x13, 0x2a, 0x96, 0x59, 0xd7, 0x8f, 0xae, 0x24, 0xc5, 0x43, 0xcf, 0xe1, 0x84, 0xa8, 0xb0, 0x5c, 0x52, 0x81, 0x96, 0xbf, 0x62, 0x1b, 0x26, 0x87, 0x63, 0xc6, 0x98, 0xe9, 0x25, 0x08, 0x93, 0x1e, 0x43, 0x25, 0x98, 0x79, 0x6f, 0x05, 0xfc, 0x15, 0xcf, 0x9b, 0x6c, 0x88, 0x6e, 0xc1, 0xec, 0x07, 0x62, 0x77, 0x2c, 0xfe, 0x6a, 0x8f, 0x9b, 0xc2, 0x58, 0x1e, 0x5b, 0x02, 0xd3, 0x8f, 0x61, 0xe9, 0x7c, 0xaf, 0x5c, 0x29, 0xde, 0x84, 0xe8, 0xe2, 0x89, 0xa5, 0x09, 0x59, 0x41, 0xb8, 0x9b, 0x26, 0x14, 0xaa, 0xa5, 0xa4, 0xe6, 0x9b, 0x4d, 0xdb, 0x77, 0x9d, 0x0b, 0xcc, 0xf3, 0xf5, 0xbf, 0x1e, 0x73, 0x06, 0xc3, 0x09, 0x31, 0xc9, 0xf6, 0xb2, 0xc6, 0xbf, 0x0f, 0xfe, 0xcb, 0x99, 0xc2, 0xd0, 0x9f, 0xed, 0x87, 0x58, 0x3a, 0x08, 0xb1, 0xf4, 0x2b, 0xc4, 0xd2, 0x51, 0x88, 0xc1, 0x71, 0x88, 0xc1, 0x49, 0x88, 0xc1, 0x69, 0x88, 0xc1, 0x6e, 0x84, 0xc1, 0xd7, 0x08, 0x83, 0x6f, 0x11, 0x06, 0x3f, 0x22, 0x0c, 0x7e, 0x46, 0x18, 0xec, 0x47, 0x58, 0x3a, 0x88, 0x30, 0x38, 0x8a, 0x30, 0x38, 0x8e, 0xb0, 0x74, 0x12, 0x61, 0x70, 0x1a, 0x61, 0x69, 0xf7, 0x37, 0x96, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0xa8, 0xc0, 0xa5, 0xf1, 0xb6, 0x07, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/casttype/combos/unmarshaler/casttype.proto000066400000000000000000000104061317075173200267050ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 casttype; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Castaway { optional int64 Int32Ptr = 1 [(gogoproto.casttype) = "int32"]; optional int64 Int32 = 2 [(gogoproto.casttype) = "int32", (gogoproto.nullable) = false]; optional uint64 MyUint64Ptr = 3 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; optional uint64 MyUint64 = 4 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type", (gogoproto.nullable) = false]; optional float MyFloat32Ptr = 5 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type"]; optional float MyFloat32 = 6 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat32Type", (gogoproto.nullable) = false]; optional double MyFloat64Ptr = 7 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type"]; optional double MyFloat64 = 8 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyFloat64Type", (gogoproto.nullable) = false]; optional bytes MyBytes = 9 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.Bytes"]; optional bytes NormalBytes = 10; repeated uint64 MyUint64s = 11 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyMap = 12 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyMapType"]; map MyCustomMap = 13 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyStringType", (gogoproto.castvalue) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; map MyNullableMap = 14 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type"]; map MyEmbeddedMap = 15 [(gogoproto.castkey) = "github.com/gogo/protobuf/test/casttype.MyInt32Type", (gogoproto.nullable) = false]; optional string String = 16 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyStringType"]; } message Wilson { optional int64 Int64 = 1; } golang-gogoprotobuf-0.5/test/casttype/combos/unmarshaler/casttypepb_test.go000066400000000000000000000320341317075173200275310ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/casttype.proto /* Package casttype is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/casttype.proto It has these top-level messages: Castaway Wilson */ package casttype import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestCastawayProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCastawayProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCastawayProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastaway(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Castaway{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestWilsonProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkWilsonProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkWilsonProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedWilson(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Wilson{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCastawayJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestWilsonJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCastawayProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastawayProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCasttypeDescription(t *testing.T) { CasttypeDescription() } func TestCastawayVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestWilsonVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCastawayFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestWilsonFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCastawayGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestWilsonGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCastawaySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCastawaySize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestWilsonSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkWilsonSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCastawayStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestWilsonStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/casttype/mytypes.go000066400000000000000000000036111317075173200222220ustar00rootroot00000000000000// 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. package casttype import ( "encoding/json" ) type MyInt32Type int32 type MyFloat32Type float32 type MyUint64Type uint64 type MyFloat64Type float64 type Bytes []byte func (this Bytes) MarshalJSON() ([]byte, error) { return json.Marshal([]byte(this)) } func (this *Bytes) UnmarshalJSON(data []byte) error { v := new([]byte) err := json.Unmarshal(data, v) if err != nil { return err } *this = *v return nil } type MyStringType string type MyMapType map[string]uint64 golang-gogoprotobuf-0.5/test/castvalue/000077500000000000000000000000001317075173200203135ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/castvalue/Makefile000066400000000000000000000040231317075173200217520ustar00rootroot00000000000000# 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: rm -rf combos go install github.com/gogo/protobuf/protoc-gen-combo go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. castvalue.proto protoc-gen-combo --default=false --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. castvalue.proto cp mytypes.go ./combos/both/ || true cp mytypes.go ./combos/marshaler/ || true cp mytypes.go ./combos/unmarshaler/ || true cp mytypes.go ./combos/unsafeboth/ || true cp mytypes.go ./combos/unsafemarshaler/ || true cp mytypes.go ./combos/unsafeunmarshaler/ || true golang-gogoprotobuf-0.5/test/castvalue/castvalue.pb.go000066400000000000000000001251771317075173200232460ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: castvalue.proto /* Package castvalue is a generated protocol buffer package. It is generated from these files: castvalue.proto It has these top-level messages: Castaway Wilson */ package castvalue import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Castaway struct { CastMapValueMessage map[int32]MyWilson `protobuf:"bytes,1,rep,name=CastMapValueMessage,castvalue=MyWilson,castvaluetype=castvalue.Wilson" json:"CastMapValueMessage" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` CastMapValueMessageNullable map[int32]*MyWilson `protobuf:"bytes,2,rep,name=CastMapValueMessageNullable,castvalue=MyWilson,castvaluetype=castvalue.Wilson" json:"CastMapValueMessageNullable,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *Castaway) Reset() { *m = Castaway{} } func (*Castaway) ProtoMessage() {} func (*Castaway) Descriptor() ([]byte, []int) { return fileDescriptorCastvalue, []int{0} } type Wilson struct { Int64 *int64 `protobuf:"varint,1,opt,name=Int64" json:"Int64,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Wilson) Reset() { *m = Wilson{} } func (*Wilson) ProtoMessage() {} func (*Wilson) Descriptor() ([]byte, []int) { return fileDescriptorCastvalue, []int{1} } func init() { proto.RegisterType((*Castaway)(nil), "castvalue.Castaway") proto.RegisterType((*Wilson)(nil), "castvalue.Wilson") } func (this *Castaway) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CastvalueDescription() } func (this *Wilson) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CastvalueDescription() } func CastvalueDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3858 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0xe6, 0xe2, 0x87, 0x04, 0x0e, 0x40, 0x70, 0x79, 0x49, 0x4b, 0x10, 0x1d, 0x43, 0x12, 0xfd, 0x23, 0xda, 0x4e, 0xa8, 0x8c, 0x2c, 0xc9, 0x32, 0xd4, 0xc4, 0x05, 0x41, 0x88, 0x81, 0xca, 0x1f, 0x64, 0x41, 0xc6, 0x52, 0xfa, 0xb0, 0xb3, 0x5c, 0x5c, 0x80, 0x2b, 0x2d, 0x76, 0x37, 0xbb, 0x0b, 0xc9, 0xd4, 0xf4, 0x41, 0x1d, 0xa7, 0xed, 0xa4, 0x9d, 0xfe, 0x77, 0xa6, 0x89, 0xeb, 0xb8, 0x6d, 0x66, 0x5a, 0xa7, 0x49, 0x7f, 0x92, 0xa6, 0x4d, 0xd3, 0x3e, 0xa5, 0x0f, 0x69, 0xfd, 0xd4, 0x49, 0xde, 0xfa, 0xd0, 0x69, 0x2d, 0xd6, 0x33, 0x75, 0x5b, 0xb7, 0x75, 0x1b, 0x3f, 0x64, 0xc6, 0xd3, 0x99, 0xce, 0xfd, 0x5b, 0xec, 0x02, 0x20, 0x17, 0x4c, 0xc7, 0xce, 0x13, 0x71, 0xcf, 0x3d, 0xdf, 0x77, 0xcf, 0x3d, 0xf7, 0xdc, 0x7b, 0xce, 0xbd, 0x4b, 0xf8, 0xea, 0x15, 0x38, 0xd3, 0xb1, 0xed, 0x8e, 0x89, 0xcf, 0x3b, 0xae, 0xed, 0xdb, 0xbb, 0xbd, 0xf6, 0xf9, 0x16, 0xf6, 0x74, 0xd7, 0x70, 0x7c, 0xdb, 0x5d, 0xa6, 0x32, 0x34, 0xc3, 0x34, 0x96, 0x85, 0xc6, 0xe2, 0x06, 0xcc, 0x5e, 0x33, 0x4c, 0xbc, 0x1a, 0x28, 0x36, 0xb1, 0x8f, 0xae, 0x40, 0xaa, 0x6d, 0x98, 0xb8, 0x28, 0x9d, 0x49, 0x2e, 0xe5, 0x2e, 0x3c, 0xb6, 0x3c, 0x00, 0x5a, 0x8e, 0x22, 0x1a, 0x44, 0xac, 0x50, 0xc4, 0xe2, 0x9b, 0x29, 0x98, 0x1b, 0xd1, 0x8b, 0x10, 0xa4, 0x2c, 0xad, 0x4b, 0x18, 0xa5, 0xa5, 0xac, 0x42, 0x7f, 0xa3, 0x22, 0x4c, 0x39, 0x9a, 0x7e, 0x5b, 0xeb, 0xe0, 0x62, 0x82, 0x8a, 0x45, 0x13, 0x95, 0x00, 0x5a, 0xd8, 0xc1, 0x56, 0x0b, 0x5b, 0xfa, 0x7e, 0x31, 0x79, 0x26, 0xb9, 0x94, 0x55, 0x42, 0x12, 0xf4, 0x34, 0xcc, 0x3a, 0xbd, 0x5d, 0xd3, 0xd0, 0xd5, 0x90, 0x1a, 0x9c, 0x49, 0x2e, 0xa5, 0x15, 0x99, 0x75, 0xac, 0xf6, 0x95, 0xcf, 0xc1, 0xcc, 0x5d, 0xac, 0xdd, 0x0e, 0xab, 0xe6, 0xa8, 0x6a, 0x81, 0x88, 0x43, 0x8a, 0x55, 0xc8, 0x77, 0xb1, 0xe7, 0x69, 0x1d, 0xac, 0xfa, 0xfb, 0x0e, 0x2e, 0xa6, 0xe8, 0xec, 0xcf, 0x0c, 0xcd, 0x7e, 0x70, 0xe6, 0x39, 0x8e, 0xda, 0xde, 0x77, 0x30, 0xaa, 0x40, 0x16, 0x5b, 0xbd, 0x2e, 0x63, 0x48, 0x1f, 0xe2, 0xbf, 0x9a, 0xd5, 0xeb, 0x0e, 0xb2, 0x64, 0x08, 0x8c, 0x53, 0x4c, 0x79, 0xd8, 0xbd, 0x63, 0xe8, 0xb8, 0x38, 0x49, 0x09, 0xce, 0x0d, 0x11, 0x34, 0x59, 0xff, 0x20, 0x87, 0xc0, 0xa1, 0x2a, 0x64, 0xf1, 0x8b, 0x3e, 0xb6, 0x3c, 0xc3, 0xb6, 0x8a, 0x53, 0x94, 0xe4, 0xf1, 0x11, 0xab, 0x88, 0xcd, 0xd6, 0x20, 0x45, 0x1f, 0x87, 0x2e, 0xc3, 0x94, 0xed, 0xf8, 0x86, 0x6d, 0x79, 0xc5, 0xcc, 0x19, 0x69, 0x29, 0x77, 0xe1, 0x43, 0x23, 0x03, 0x61, 0x8b, 0xe9, 0x28, 0x42, 0x19, 0xd5, 0x41, 0xf6, 0xec, 0x9e, 0xab, 0x63, 0x55, 0xb7, 0x5b, 0x58, 0x35, 0xac, 0xb6, 0x5d, 0xcc, 0x52, 0x82, 0xd3, 0xc3, 0x13, 0xa1, 0x8a, 0x55, 0xbb, 0x85, 0xeb, 0x56, 0xdb, 0x56, 0x0a, 0x5e, 0xa4, 0x8d, 0x4e, 0xc0, 0xa4, 0xb7, 0x6f, 0xf9, 0xda, 0x8b, 0xc5, 0x3c, 0x8d, 0x10, 0xde, 0x5a, 0xfc, 0xcb, 0x49, 0x98, 0x19, 0x27, 0xc4, 0xae, 0x42, 0xba, 0x4d, 0x66, 0x59, 0x4c, 0x1c, 0xc7, 0x07, 0x0c, 0x13, 0x75, 0xe2, 0xe4, 0x0f, 0xe9, 0xc4, 0x0a, 0xe4, 0x2c, 0xec, 0xf9, 0xb8, 0xc5, 0x22, 0x22, 0x39, 0x66, 0x4c, 0x01, 0x03, 0x0d, 0x87, 0x54, 0xea, 0x87, 0x0a, 0xa9, 0x1b, 0x30, 0x13, 0x98, 0xa4, 0xba, 0x9a, 0xd5, 0x11, 0xb1, 0x79, 0x3e, 0xce, 0x92, 0xe5, 0x9a, 0xc0, 0x29, 0x04, 0xa6, 0x14, 0x70, 0xa4, 0x8d, 0x56, 0x01, 0x6c, 0x0b, 0xdb, 0x6d, 0xb5, 0x85, 0x75, 0xb3, 0x98, 0x39, 0xc4, 0x4b, 0x5b, 0x44, 0x65, 0xc8, 0x4b, 0x36, 0x93, 0xea, 0x26, 0x7a, 0xae, 0x1f, 0x6a, 0x53, 0x87, 0x44, 0xca, 0x06, 0xdb, 0x64, 0x43, 0xd1, 0xb6, 0x03, 0x05, 0x17, 0x93, 0xb8, 0xc7, 0x2d, 0x3e, 0xb3, 0x2c, 0x35, 0x62, 0x39, 0x76, 0x66, 0x0a, 0x87, 0xb1, 0x89, 0x4d, 0xbb, 0xe1, 0x26, 0x7a, 0x14, 0x02, 0x81, 0x4a, 0xc3, 0x0a, 0xe8, 0x29, 0x94, 0x17, 0xc2, 0x4d, 0xad, 0x8b, 0x17, 0xee, 0x41, 0x21, 0xea, 0x1e, 0x34, 0x0f, 0x69, 0xcf, 0xd7, 0x5c, 0x9f, 0x46, 0x61, 0x5a, 0x61, 0x0d, 0x24, 0x43, 0x12, 0x5b, 0x2d, 0x7a, 0xca, 0xa5, 0x15, 0xf2, 0x13, 0xfd, 0x78, 0x7f, 0xc2, 0x49, 0x3a, 0xe1, 0x27, 0x86, 0x57, 0x34, 0xc2, 0x3c, 0x38, 0xef, 0x85, 0x67, 0x61, 0x3a, 0x32, 0x81, 0x71, 0x87, 0x5e, 0xfc, 0x29, 0x78, 0x68, 0x24, 0x35, 0xba, 0x01, 0xf3, 0x3d, 0xcb, 0xb0, 0x7c, 0xec, 0x3a, 0x2e, 0x26, 0x11, 0xcb, 0x86, 0x2a, 0xfe, 0xcb, 0xd4, 0x21, 0x31, 0xb7, 0x13, 0xd6, 0x66, 0x2c, 0xca, 0x5c, 0x6f, 0x58, 0xf8, 0x54, 0x36, 0xf3, 0xd6, 0x94, 0x7c, 0xff, 0xfe, 0xfd, 0xfb, 0x89, 0xc5, 0xcf, 0x4f, 0xc2, 0xfc, 0xa8, 0x3d, 0x33, 0x72, 0xfb, 0x9e, 0x80, 0x49, 0xab, 0xd7, 0xdd, 0xc5, 0x2e, 0x75, 0x52, 0x5a, 0xe1, 0x2d, 0x54, 0x81, 0xb4, 0xa9, 0xed, 0x62, 0xb3, 0x98, 0x3a, 0x23, 0x2d, 0x15, 0x2e, 0x3c, 0x3d, 0xd6, 0xae, 0x5c, 0x5e, 0x27, 0x10, 0x85, 0x21, 0xd1, 0xc7, 0x21, 0xc5, 0x8f, 0x68, 0xc2, 0xf0, 0xd4, 0x78, 0x0c, 0x64, 0x2f, 0x29, 0x14, 0x87, 0x1e, 0x86, 0x2c, 0xf9, 0xcb, 0x62, 0x63, 0x92, 0xda, 0x9c, 0x21, 0x02, 0x12, 0x17, 0x68, 0x01, 0x32, 0x74, 0x9b, 0xb4, 0xb0, 0x48, 0x6d, 0x41, 0x9b, 0x04, 0x56, 0x0b, 0xb7, 0xb5, 0x9e, 0xe9, 0xab, 0x77, 0x34, 0xb3, 0x87, 0x69, 0xc0, 0x67, 0x95, 0x3c, 0x17, 0x7e, 0x8a, 0xc8, 0xd0, 0x69, 0xc8, 0xb1, 0x5d, 0x65, 0x58, 0x2d, 0xfc, 0x22, 0x3d, 0x3d, 0xd3, 0x0a, 0xdb, 0x68, 0x75, 0x22, 0x21, 0xc3, 0xdf, 0xf2, 0x6c, 0x4b, 0x84, 0x26, 0x1d, 0x82, 0x08, 0xe8, 0xf0, 0xcf, 0x0e, 0x1e, 0xdc, 0x8f, 0x8c, 0x9e, 0xde, 0x60, 0x4c, 0x2d, 0x7e, 0x33, 0x01, 0x29, 0x7a, 0x5e, 0xcc, 0x40, 0x6e, 0xfb, 0x66, 0xa3, 0xa6, 0xae, 0x6e, 0xed, 0xac, 0xac, 0xd7, 0x64, 0x09, 0x15, 0x00, 0xa8, 0xe0, 0xda, 0xfa, 0x56, 0x65, 0x5b, 0x4e, 0x04, 0xed, 0xfa, 0xe6, 0xf6, 0xe5, 0x8b, 0x72, 0x32, 0x00, 0xec, 0x30, 0x41, 0x2a, 0xac, 0xf0, 0xcc, 0x05, 0x39, 0x8d, 0x64, 0xc8, 0x33, 0x82, 0xfa, 0x8d, 0xda, 0xea, 0xe5, 0x8b, 0xf2, 0x64, 0x54, 0xf2, 0xcc, 0x05, 0x79, 0x0a, 0x4d, 0x43, 0x96, 0x4a, 0x56, 0xb6, 0xb6, 0xd6, 0xe5, 0x4c, 0xc0, 0xd9, 0xdc, 0x56, 0xea, 0x9b, 0x6b, 0x72, 0x36, 0xe0, 0x5c, 0x53, 0xb6, 0x76, 0x1a, 0x32, 0x04, 0x0c, 0x1b, 0xb5, 0x66, 0xb3, 0xb2, 0x56, 0x93, 0x73, 0x81, 0xc6, 0xca, 0xcd, 0xed, 0x5a, 0x53, 0xce, 0x47, 0xcc, 0x7a, 0xe6, 0x82, 0x3c, 0x1d, 0x0c, 0x51, 0xdb, 0xdc, 0xd9, 0x90, 0x0b, 0x68, 0x16, 0xa6, 0xd9, 0x10, 0xc2, 0x88, 0x99, 0x01, 0xd1, 0xe5, 0x8b, 0xb2, 0xdc, 0x37, 0x84, 0xb1, 0xcc, 0x46, 0x04, 0x97, 0x2f, 0xca, 0x68, 0xb1, 0x0a, 0x69, 0x1a, 0x5d, 0x08, 0x41, 0x61, 0xbd, 0xb2, 0x52, 0x5b, 0x57, 0xb7, 0x1a, 0xdb, 0xf5, 0xad, 0xcd, 0xca, 0xba, 0x2c, 0xf5, 0x65, 0x4a, 0xed, 0x93, 0x3b, 0x75, 0xa5, 0xb6, 0x2a, 0x27, 0xc2, 0xb2, 0x46, 0xad, 0xb2, 0x5d, 0x5b, 0x95, 0x93, 0x8b, 0x3a, 0xcc, 0x8f, 0x3a, 0x27, 0x47, 0xee, 0x8c, 0xd0, 0x12, 0x27, 0x0e, 0x59, 0x62, 0xca, 0x35, 0xb4, 0xc4, 0x5f, 0x92, 0x60, 0x6e, 0x44, 0xae, 0x18, 0x39, 0xc8, 0xf3, 0x90, 0x66, 0x21, 0xca, 0xb2, 0xe7, 0x93, 0x23, 0x93, 0x0e, 0x0d, 0xd8, 0xa1, 0x0c, 0x4a, 0x71, 0xe1, 0x0a, 0x22, 0x79, 0x48, 0x05, 0x41, 0x28, 0x86, 0x8c, 0x7c, 0x49, 0x82, 0xe2, 0x61, 0xdc, 0x31, 0x07, 0x45, 0x22, 0x72, 0x50, 0x5c, 0x1d, 0x34, 0xe0, 0xec, 0xe1, 0x73, 0x18, 0xb2, 0xe2, 0x35, 0x09, 0x4e, 0x8c, 0x2e, 0xb4, 0x46, 0xda, 0xf0, 0x71, 0x98, 0xec, 0x62, 0x7f, 0xcf, 0x16, 0xc5, 0xc6, 0x13, 0x23, 0x52, 0x18, 0xe9, 0x1e, 0xf4, 0x15, 0x47, 0x85, 0x73, 0x60, 0xf2, 0xb0, 0x6a, 0x89, 0x59, 0x33, 0x64, 0xe9, 0xe7, 0x12, 0xf0, 0xd0, 0x48, 0xf2, 0x91, 0x86, 0x3e, 0x02, 0x60, 0x58, 0x4e, 0xcf, 0x67, 0x05, 0x05, 0x3b, 0x9f, 0xb2, 0x54, 0x42, 0xf7, 0x3e, 0x39, 0x7b, 0x7a, 0x7e, 0xd0, 0x9f, 0xa4, 0xfd, 0xc0, 0x44, 0x54, 0xe1, 0x4a, 0xdf, 0xd0, 0x14, 0x35, 0xb4, 0x74, 0xc8, 0x4c, 0x87, 0x72, 0xf5, 0x47, 0x41, 0xd6, 0x4d, 0x03, 0x5b, 0xbe, 0xea, 0xf9, 0x2e, 0xd6, 0xba, 0x86, 0xd5, 0xa1, 0x07, 0x70, 0xa6, 0x9c, 0x6e, 0x6b, 0xa6, 0x87, 0x95, 0x19, 0xd6, 0xdd, 0x14, 0xbd, 0x04, 0x41, 0x73, 0x9c, 0x1b, 0x42, 0x4c, 0x46, 0x10, 0xac, 0x3b, 0x40, 0x2c, 0x7e, 0x23, 0x03, 0xb9, 0x50, 0x59, 0x8a, 0xce, 0x42, 0xfe, 0x96, 0x76, 0x47, 0x53, 0xc5, 0x55, 0x83, 0x79, 0x22, 0x47, 0x64, 0x0d, 0x7e, 0xdd, 0xf8, 0x28, 0xcc, 0x53, 0x15, 0xbb, 0xe7, 0x63, 0x57, 0xd5, 0x4d, 0xcd, 0xf3, 0xa8, 0xd3, 0x32, 0x54, 0x15, 0x91, 0xbe, 0x2d, 0xd2, 0x55, 0x15, 0x3d, 0xe8, 0x12, 0xcc, 0x51, 0x44, 0xb7, 0x67, 0xfa, 0x86, 0x63, 0x62, 0x95, 0x5c, 0x7e, 0x3c, 0x7a, 0x10, 0x07, 0x96, 0xcd, 0x12, 0x8d, 0x0d, 0xae, 0x40, 0x2c, 0xf2, 0xd0, 0x2a, 0x3c, 0x42, 0x61, 0x1d, 0x6c, 0x61, 0x57, 0xf3, 0xb1, 0x8a, 0x3f, 0xd3, 0xd3, 0x4c, 0x4f, 0xd5, 0xac, 0x96, 0xba, 0xa7, 0x79, 0x7b, 0xc5, 0x79, 0x42, 0xb0, 0x92, 0x28, 0x4a, 0xca, 0x29, 0xa2, 0xb8, 0xc6, 0xf5, 0x6a, 0x54, 0xad, 0x62, 0xb5, 0x3e, 0xa1, 0x79, 0x7b, 0xa8, 0x0c, 0x27, 0x28, 0x8b, 0xe7, 0xbb, 0x86, 0xd5, 0x51, 0xf5, 0x3d, 0xac, 0xdf, 0x56, 0x7b, 0x7e, 0xfb, 0x4a, 0xf1, 0xe1, 0xf0, 0xf8, 0xd4, 0xc2, 0x26, 0xd5, 0xa9, 0x12, 0x95, 0x1d, 0xbf, 0x7d, 0x05, 0x35, 0x21, 0x4f, 0x16, 0xa3, 0x6b, 0xdc, 0xc3, 0x6a, 0xdb, 0x76, 0x69, 0x66, 0x29, 0x8c, 0xd8, 0xd9, 0x21, 0x0f, 0x2e, 0x6f, 0x71, 0xc0, 0x86, 0xdd, 0xc2, 0xe5, 0x74, 0xb3, 0x51, 0xab, 0xad, 0x2a, 0x39, 0xc1, 0x72, 0xcd, 0x76, 0x49, 0x40, 0x75, 0xec, 0xc0, 0xc1, 0x39, 0x16, 0x50, 0x1d, 0x5b, 0xb8, 0xf7, 0x12, 0xcc, 0xe9, 0x3a, 0x9b, 0xb3, 0xa1, 0xab, 0xfc, 0x8a, 0xe2, 0x15, 0xe5, 0x88, 0xb3, 0x74, 0x7d, 0x8d, 0x29, 0xf0, 0x18, 0xf7, 0xd0, 0x73, 0xf0, 0x50, 0xdf, 0x59, 0x61, 0xe0, 0xec, 0xd0, 0x2c, 0x07, 0xa1, 0x97, 0x60, 0xce, 0xd9, 0x1f, 0x06, 0xa2, 0xc8, 0x88, 0xce, 0xfe, 0x20, 0xec, 0x59, 0x98, 0x77, 0xf6, 0x9c, 0x61, 0xdc, 0x5c, 0x18, 0x87, 0x9c, 0x3d, 0x67, 0x10, 0xf8, 0x38, 0xbd, 0xaf, 0xba, 0x58, 0xd7, 0x7c, 0xdc, 0x2a, 0x9e, 0x0c, 0xab, 0x87, 0x3a, 0xd0, 0x79, 0x90, 0x75, 0x5d, 0xc5, 0x96, 0xb6, 0x6b, 0x62, 0x55, 0x73, 0xb1, 0xa5, 0x79, 0xc5, 0xd3, 0x61, 0xe5, 0x82, 0xae, 0xd7, 0x68, 0x6f, 0x85, 0x76, 0xa2, 0xa7, 0x60, 0xd6, 0xde, 0xbd, 0xa5, 0xb3, 0x90, 0x54, 0x1d, 0x17, 0xb7, 0x8d, 0x17, 0x8b, 0x8f, 0x51, 0xff, 0xce, 0x90, 0x0e, 0x1a, 0x90, 0x0d, 0x2a, 0x46, 0x4f, 0x82, 0xac, 0x7b, 0x7b, 0x9a, 0xeb, 0xd0, 0x9a, 0xc0, 0x73, 0x34, 0x1d, 0x17, 0x1f, 0x67, 0xaa, 0x4c, 0xbe, 0x29, 0xc4, 0x64, 0x4b, 0x78, 0x77, 0x8d, 0xb6, 0x2f, 0x18, 0xcf, 0xb1, 0x2d, 0x41, 0x65, 0x9c, 0x6d, 0x09, 0x64, 0xe2, 0x8a, 0xc8, 0xc0, 0x4b, 0x54, 0xad, 0xe0, 0xec, 0x39, 0xe1, 0x71, 0x1f, 0x85, 0x69, 0xa2, 0xd9, 0x1f, 0xf4, 0x49, 0x56, 0xcf, 0x38, 0x7b, 0xa1, 0x11, 0xdf, 0xb7, 0xd2, 0x72, 0xb1, 0x0c, 0xf9, 0x70, 0x7c, 0xa2, 0x2c, 0xb0, 0x08, 0x95, 0x25, 0x92, 0xeb, 0xab, 0x5b, 0xab, 0x24, 0x4b, 0x7f, 0xba, 0x26, 0x27, 0x48, 0xb5, 0xb0, 0x5e, 0xdf, 0xae, 0xa9, 0xca, 0xce, 0xe6, 0x76, 0x7d, 0xa3, 0x26, 0x27, 0xc3, 0x65, 0xe9, 0x77, 0x12, 0x50, 0x88, 0xde, 0x30, 0xd0, 0x8f, 0xc1, 0x49, 0xf1, 0x1c, 0xe0, 0x61, 0x5f, 0xbd, 0x6b, 0xb8, 0x74, 0xcb, 0x74, 0x35, 0x56, 0x61, 0x07, 0x8b, 0x36, 0xcf, 0xb5, 0x9a, 0xd8, 0x7f, 0xc1, 0x70, 0xc9, 0x86, 0xe8, 0x6a, 0x3e, 0x5a, 0x87, 0xd3, 0x96, 0xad, 0x7a, 0xbe, 0x66, 0xb5, 0x34, 0xb7, 0xa5, 0xf6, 0x1f, 0x62, 0x54, 0x4d, 0xd7, 0xb1, 0xe7, 0xd9, 0x2c, 0x55, 0x05, 0x2c, 0x1f, 0xb2, 0xec, 0x26, 0x57, 0xee, 0x9f, 0xe1, 0x15, 0xae, 0x3a, 0x10, 0x60, 0xc9, 0xc3, 0x02, 0xec, 0x61, 0xc8, 0x76, 0x35, 0x47, 0xc5, 0x96, 0xef, 0xee, 0xd3, 0xba, 0x32, 0xa3, 0x64, 0xba, 0x9a, 0x53, 0x23, 0xed, 0x0f, 0xa6, 0xbc, 0xff, 0x87, 0x24, 0xe4, 0xc3, 0xb5, 0x25, 0x29, 0xd5, 0x75, 0x9a, 0x47, 0x24, 0x7a, 0xd2, 0x3c, 0x7a, 0x64, 0x25, 0xba, 0x5c, 0x25, 0x09, 0xa6, 0x3c, 0xc9, 0x2a, 0x3e, 0x85, 0x21, 0x49, 0x72, 0x27, 0x67, 0x0b, 0x66, 0xb7, 0x98, 0x8c, 0xc2, 0x5b, 0x68, 0x0d, 0x26, 0x6f, 0x79, 0x94, 0x7b, 0x92, 0x72, 0x3f, 0x76, 0x34, 0xf7, 0xf5, 0x26, 0x25, 0xcf, 0x5e, 0x6f, 0xaa, 0x9b, 0x5b, 0xca, 0x46, 0x65, 0x5d, 0xe1, 0x70, 0x74, 0x0a, 0x52, 0xa6, 0x76, 0x6f, 0x3f, 0x9a, 0x8a, 0xa8, 0x68, 0x5c, 0xc7, 0x9f, 0x82, 0xd4, 0x5d, 0xac, 0xdd, 0x8e, 0x26, 0x00, 0x2a, 0x7a, 0x1f, 0x43, 0xff, 0x3c, 0xa4, 0xa9, 0xbf, 0x10, 0x00, 0xf7, 0x98, 0x3c, 0x81, 0x32, 0x90, 0xaa, 0x6e, 0x29, 0x24, 0xfc, 0x65, 0xc8, 0x33, 0xa9, 0xda, 0xa8, 0xd7, 0xaa, 0x35, 0x39, 0xb1, 0x78, 0x09, 0x26, 0x99, 0x13, 0xc8, 0xd6, 0x08, 0xdc, 0x20, 0x4f, 0xf0, 0x26, 0xe7, 0x90, 0x44, 0xef, 0xce, 0xc6, 0x4a, 0x4d, 0x91, 0x13, 0xe1, 0xe5, 0xf5, 0x20, 0x1f, 0x2e, 0x2b, 0x3f, 0x98, 0x98, 0xfa, 0x2b, 0x09, 0x72, 0xa1, 0x32, 0x91, 0x14, 0x28, 0x9a, 0x69, 0xda, 0x77, 0x55, 0xcd, 0x34, 0x34, 0x8f, 0x07, 0x05, 0x50, 0x51, 0x85, 0x48, 0xc6, 0x5d, 0xb4, 0x0f, 0xc4, 0xf8, 0x57, 0x25, 0x90, 0x07, 0x4b, 0xcc, 0x01, 0x03, 0xa5, 0x1f, 0xa9, 0x81, 0xaf, 0x48, 0x50, 0x88, 0xd6, 0x95, 0x03, 0xe6, 0x9d, 0xfd, 0x91, 0x9a, 0xf7, 0x46, 0x02, 0xa6, 0x23, 0xd5, 0xe4, 0xb8, 0xd6, 0x7d, 0x06, 0x66, 0x8d, 0x16, 0xee, 0x3a, 0xb6, 0x8f, 0x2d, 0x7d, 0x5f, 0x35, 0xf1, 0x1d, 0x6c, 0x16, 0x17, 0xe9, 0x41, 0x71, 0xfe, 0xe8, 0x7a, 0x75, 0xb9, 0xde, 0xc7, 0xad, 0x13, 0x58, 0x79, 0xae, 0xbe, 0x5a, 0xdb, 0x68, 0x6c, 0x6d, 0xd7, 0x36, 0xab, 0x37, 0xd5, 0x9d, 0xcd, 0x9f, 0xd8, 0xdc, 0x7a, 0x61, 0x53, 0x91, 0x8d, 0x01, 0xb5, 0xf7, 0x71, 0xab, 0x37, 0x40, 0x1e, 0x34, 0x0a, 0x9d, 0x84, 0x51, 0x66, 0xc9, 0x13, 0x68, 0x0e, 0x66, 0x36, 0xb7, 0xd4, 0x66, 0x7d, 0xb5, 0xa6, 0xd6, 0xae, 0x5d, 0xab, 0x55, 0xb7, 0x9b, 0xec, 0x02, 0x1f, 0x68, 0x6f, 0x47, 0x37, 0xf5, 0xcb, 0x49, 0x98, 0x1b, 0x61, 0x09, 0xaa, 0xf0, 0xbb, 0x03, 0xbb, 0xce, 0x7c, 0x64, 0x1c, 0xeb, 0x97, 0x49, 0xca, 0x6f, 0x68, 0xae, 0xcf, 0xaf, 0x1a, 0x4f, 0x02, 0xf1, 0x92, 0xe5, 0x1b, 0x6d, 0x03, 0xbb, 0xfc, 0xbd, 0x83, 0x5d, 0x28, 0x66, 0xfa, 0x72, 0xf6, 0xe4, 0xf1, 0x61, 0x40, 0x8e, 0xed, 0x19, 0xbe, 0x71, 0x07, 0xab, 0x86, 0x25, 0x1e, 0x47, 0xc8, 0x05, 0x23, 0xa5, 0xc8, 0xa2, 0xa7, 0x6e, 0xf9, 0x81, 0xb6, 0x85, 0x3b, 0xda, 0x80, 0x36, 0x39, 0xc0, 0x93, 0x8a, 0x2c, 0x7a, 0x02, 0xed, 0xb3, 0x90, 0x6f, 0xd9, 0x3d, 0x52, 0x75, 0x31, 0x3d, 0x92, 0x2f, 0x24, 0x25, 0xc7, 0x64, 0x81, 0x0a, 0xaf, 0xa7, 0xfb, 0xaf, 0x32, 0x79, 0x25, 0xc7, 0x64, 0x4c, 0xe5, 0x1c, 0xcc, 0x68, 0x9d, 0x8e, 0x4b, 0xc8, 0x05, 0x11, 0xbb, 0x21, 0x14, 0x02, 0x31, 0x55, 0x5c, 0xb8, 0x0e, 0x19, 0xe1, 0x07, 0x92, 0x92, 0x89, 0x27, 0x54, 0x87, 0xbd, 0xcc, 0x25, 0x96, 0xb2, 0x4a, 0xc6, 0x12, 0x9d, 0x67, 0x21, 0x6f, 0x78, 0x6a, 0xff, 0x91, 0x39, 0x71, 0x26, 0xb1, 0x94, 0x51, 0x72, 0x86, 0x17, 0x3c, 0xd0, 0x2d, 0xbe, 0x96, 0x80, 0x42, 0xf4, 0x91, 0x1c, 0xad, 0x42, 0xc6, 0xb4, 0x75, 0x8d, 0x86, 0x16, 0xfb, 0x42, 0xb3, 0x14, 0xf3, 0xae, 0xbe, 0xbc, 0xce, 0xf5, 0x95, 0x00, 0xb9, 0xf0, 0x77, 0x12, 0x64, 0x84, 0x18, 0x9d, 0x80, 0x94, 0xa3, 0xf9, 0x7b, 0x94, 0x2e, 0xbd, 0x92, 0x90, 0x25, 0x85, 0xb6, 0x89, 0xdc, 0x73, 0x34, 0x8b, 0x86, 0x00, 0x97, 0x93, 0x36, 0x59, 0x57, 0x13, 0x6b, 0x2d, 0x7a, 0xfd, 0xb0, 0xbb, 0x5d, 0x6c, 0xf9, 0x9e, 0x58, 0x57, 0x2e, 0xaf, 0x72, 0x31, 0x7a, 0x1a, 0x66, 0x7d, 0x57, 0x33, 0xcc, 0x88, 0x6e, 0x8a, 0xea, 0xca, 0xa2, 0x23, 0x50, 0x2e, 0xc3, 0x29, 0xc1, 0xdb, 0xc2, 0xbe, 0xa6, 0xef, 0xe1, 0x56, 0x1f, 0x34, 0x49, 0x5f, 0x60, 0x4f, 0x72, 0x85, 0x55, 0xde, 0x2f, 0xb0, 0x8b, 0xdf, 0x93, 0x60, 0x56, 0x5c, 0x98, 0x5a, 0x81, 0xb3, 0x36, 0x00, 0x34, 0xcb, 0xb2, 0xfd, 0xb0, 0xbb, 0x86, 0x43, 0x79, 0x08, 0xb7, 0x5c, 0x09, 0x40, 0x4a, 0x88, 0x60, 0xa1, 0x0b, 0xd0, 0xef, 0x39, 0xd4, 0x6d, 0xa7, 0x21, 0xc7, 0xbf, 0x80, 0xd0, 0xcf, 0x68, 0xec, 0x8a, 0x0d, 0x4c, 0x44, 0x6e, 0x56, 0x68, 0x1e, 0xd2, 0xbb, 0xb8, 0x63, 0x58, 0xfc, 0x5d, 0x93, 0x35, 0xc4, 0x5b, 0x6d, 0x2a, 0x78, 0xab, 0x5d, 0xb9, 0x01, 0x73, 0xba, 0xdd, 0x1d, 0x34, 0x77, 0x45, 0x1e, 0xb8, 0xe6, 0x7b, 0x9f, 0x90, 0x3e, 0x0d, 0xfd, 0x12, 0xf3, 0x4b, 0x89, 0xe4, 0x5a, 0x63, 0xe5, 0x2b, 0x89, 0x85, 0x35, 0x86, 0x6b, 0x88, 0x69, 0x2a, 0xb8, 0x6d, 0x62, 0x9d, 0x98, 0x0e, 0xdf, 0x7f, 0x02, 0x3e, 0xd2, 0x31, 0xfc, 0xbd, 0xde, 0xee, 0xb2, 0x6e, 0x77, 0xcf, 0x77, 0xec, 0x8e, 0xdd, 0xff, 0x6c, 0x48, 0x5a, 0xb4, 0x41, 0x7f, 0xf1, 0x4f, 0x87, 0xd9, 0x40, 0xba, 0x10, 0xfb, 0x9d, 0xb1, 0xbc, 0x09, 0x73, 0x5c, 0x59, 0xa5, 0xdf, 0x2e, 0xd8, 0x15, 0x02, 0x1d, 0xf9, 0xfe, 0x53, 0xfc, 0xfa, 0x9b, 0x34, 0x57, 0x2b, 0xb3, 0x1c, 0x4a, 0xfa, 0xd8, 0x2d, 0xa3, 0xac, 0xc0, 0x43, 0x11, 0x3e, 0xb6, 0x2f, 0xb1, 0x1b, 0xc3, 0xf8, 0x1d, 0xce, 0x38, 0x17, 0x62, 0x6c, 0x72, 0x68, 0xb9, 0x0a, 0xd3, 0xc7, 0xe1, 0xfa, 0x1b, 0xce, 0x95, 0xc7, 0x61, 0x92, 0x35, 0x98, 0xa1, 0x24, 0x7a, 0xcf, 0xf3, 0xed, 0x2e, 0x3d, 0xf4, 0x8e, 0xa6, 0xf9, 0xdb, 0x37, 0xd9, 0x46, 0x29, 0x10, 0x58, 0x35, 0x40, 0x95, 0xcb, 0x40, 0x3f, 0xd7, 0xb4, 0xb0, 0x6e, 0xc6, 0x30, 0xbc, 0xce, 0x0d, 0x09, 0xf4, 0xcb, 0x9f, 0x82, 0x79, 0xf2, 0x9b, 0x9e, 0x49, 0x61, 0x4b, 0xe2, 0x5f, 0xbb, 0x8a, 0xdf, 0x7b, 0x89, 0xed, 0xc5, 0xb9, 0x80, 0x20, 0x64, 0x53, 0x68, 0x15, 0x3b, 0xd8, 0xf7, 0xb1, 0xeb, 0xa9, 0x9a, 0x39, 0xca, 0xbc, 0xd0, 0x73, 0x41, 0xf1, 0x0b, 0x6f, 0x47, 0x57, 0x71, 0x8d, 0x21, 0x2b, 0xa6, 0x59, 0xde, 0x81, 0x93, 0x23, 0xa2, 0x62, 0x0c, 0xce, 0x97, 0x39, 0xe7, 0xfc, 0x50, 0x64, 0x10, 0xda, 0x06, 0x08, 0x79, 0xb0, 0x96, 0x63, 0x70, 0xfe, 0x16, 0xe7, 0x44, 0x1c, 0x2b, 0x96, 0x94, 0x30, 0x5e, 0x87, 0xd9, 0x3b, 0xd8, 0xdd, 0xb5, 0x3d, 0xfe, 0x44, 0x33, 0x06, 0xdd, 0x2b, 0x9c, 0x6e, 0x86, 0x03, 0xe9, 0x9b, 0x0d, 0xe1, 0x7a, 0x0e, 0x32, 0x6d, 0x4d, 0xc7, 0x63, 0x50, 0x7c, 0x91, 0x53, 0x4c, 0x11, 0x7d, 0x02, 0xad, 0x40, 0xbe, 0x63, 0xf3, 0xb4, 0x14, 0x0f, 0x7f, 0x95, 0xc3, 0x73, 0x02, 0xc3, 0x29, 0x1c, 0xdb, 0xe9, 0x99, 0x24, 0x67, 0xc5, 0x53, 0xfc, 0xb6, 0xa0, 0x10, 0x18, 0x4e, 0x71, 0x0c, 0xb7, 0xfe, 0x8e, 0xa0, 0xf0, 0x42, 0xfe, 0x7c, 0x1e, 0x72, 0xb6, 0x65, 0xee, 0xdb, 0xd6, 0x38, 0x46, 0xfc, 0x2e, 0x67, 0x00, 0x0e, 0x21, 0x04, 0x57, 0x21, 0x3b, 0xee, 0x42, 0xfc, 0xde, 0xdb, 0x62, 0x7b, 0x88, 0x15, 0x58, 0x83, 0x19, 0x71, 0x40, 0x19, 0xb6, 0x35, 0x06, 0xc5, 0xef, 0x73, 0x8a, 0x42, 0x08, 0xc6, 0xa7, 0xe1, 0x63, 0xcf, 0xef, 0xe0, 0x71, 0x48, 0x5e, 0x13, 0xd3, 0xe0, 0x10, 0xee, 0xca, 0x5d, 0x6c, 0xe9, 0x7b, 0xe3, 0x31, 0x7c, 0x59, 0xb8, 0x52, 0x60, 0x08, 0x45, 0x15, 0xa6, 0xbb, 0x9a, 0xeb, 0xed, 0x69, 0xe6, 0x58, 0xcb, 0xf1, 0x07, 0x9c, 0x23, 0x1f, 0x80, 0xb8, 0x47, 0x7a, 0xd6, 0x71, 0x68, 0xbe, 0x22, 0x3c, 0x12, 0x82, 0xf1, 0xad, 0xe7, 0xf9, 0xf4, 0x3d, 0xeb, 0x38, 0x6c, 0x5f, 0x15, 0x5b, 0x8f, 0x61, 0x37, 0xc2, 0x8c, 0x57, 0x21, 0xeb, 0x19, 0xf7, 0xc6, 0xa2, 0xf9, 0x43, 0xb1, 0xd2, 0x14, 0x40, 0xc0, 0x37, 0xe1, 0xd4, 0xc8, 0x34, 0x31, 0x06, 0xd9, 0x1f, 0x71, 0xb2, 0x13, 0x23, 0x52, 0x05, 0x3f, 0x12, 0x8e, 0x4b, 0xf9, 0xc7, 0xe2, 0x48, 0xc0, 0x03, 0x5c, 0x0d, 0x72, 0x51, 0xf0, 0xb4, 0xf6, 0xf1, 0xbc, 0xf6, 0x27, 0xc2, 0x6b, 0x0c, 0x1b, 0xf1, 0xda, 0x36, 0x9c, 0xe0, 0x8c, 0xc7, 0x5b, 0xd7, 0xaf, 0x89, 0x83, 0x95, 0xa1, 0x77, 0xa2, 0xab, 0xfb, 0x93, 0xb0, 0x10, 0xb8, 0x53, 0x54, 0xa4, 0x9e, 0xda, 0xd5, 0x9c, 0x31, 0x98, 0xbf, 0xce, 0x99, 0xc5, 0x89, 0x1f, 0x94, 0xb4, 0xde, 0x86, 0xe6, 0x10, 0xf2, 0x1b, 0x50, 0x14, 0xe4, 0x3d, 0xcb, 0xc5, 0xba, 0xdd, 0xb1, 0x8c, 0x7b, 0xb8, 0x35, 0x06, 0xf5, 0x9f, 0x0e, 0x2c, 0xd5, 0x4e, 0x08, 0x4e, 0x98, 0xeb, 0x20, 0x07, 0xb5, 0x8a, 0x6a, 0x74, 0x1d, 0xdb, 0xf5, 0x63, 0x18, 0xbf, 0x21, 0x56, 0x2a, 0xc0, 0xd5, 0x29, 0xac, 0x5c, 0x83, 0x02, 0x6d, 0x8e, 0x1b, 0x92, 0x7f, 0xc6, 0x89, 0xa6, 0xfb, 0x28, 0x7e, 0x70, 0xe8, 0x76, 0xd7, 0xd1, 0xdc, 0x71, 0xce, 0xbf, 0x3f, 0x17, 0x07, 0x07, 0x87, 0xf0, 0x83, 0xc3, 0xdf, 0x77, 0x30, 0xc9, 0xf6, 0x63, 0x30, 0x7c, 0x53, 0x1c, 0x1c, 0x02, 0xc3, 0x29, 0x44, 0xc1, 0x30, 0x06, 0xc5, 0x5f, 0x08, 0x0a, 0x81, 0x21, 0x14, 0x9f, 0xec, 0x27, 0x5a, 0x17, 0x77, 0x0c, 0xcf, 0x77, 0x59, 0x1d, 0x7c, 0x34, 0xd5, 0xb7, 0xde, 0x8e, 0x16, 0x61, 0x4a, 0x08, 0x5a, 0xbe, 0x0e, 0x33, 0x03, 0x25, 0x06, 0x8a, 0xfb, 0xdf, 0x8f, 0xe2, 0x4f, 0xbf, 0xcb, 0x0f, 0xa3, 0x68, 0x85, 0x51, 0x5e, 0x27, 0xeb, 0x1e, 0xad, 0x03, 0xe2, 0xc9, 0x5e, 0x7a, 0x37, 0x58, 0xfa, 0x48, 0x19, 0x50, 0xbe, 0x06, 0xd3, 0x91, 0x1a, 0x20, 0x9e, 0xea, 0xb3, 0x9c, 0x2a, 0x1f, 0x2e, 0x01, 0xca, 0x97, 0x20, 0x45, 0xf2, 0x79, 0x3c, 0xfc, 0x67, 0x38, 0x9c, 0xaa, 0x97, 0x3f, 0x06, 0x19, 0x91, 0xc7, 0xe3, 0xa1, 0x3f, 0xcb, 0xa1, 0x01, 0x84, 0xc0, 0x45, 0x0e, 0x8f, 0x87, 0xff, 0x9c, 0x80, 0x0b, 0x08, 0x81, 0x8f, 0xef, 0xc2, 0x6f, 0xff, 0x42, 0x8a, 0x9f, 0xc3, 0xc2, 0x77, 0x57, 0x61, 0x8a, 0x27, 0xef, 0x78, 0xf4, 0xe7, 0xf8, 0xe0, 0x02, 0x51, 0x7e, 0x16, 0xd2, 0x63, 0x3a, 0xfc, 0x17, 0x39, 0x94, 0xe9, 0x97, 0xab, 0x90, 0x0b, 0x25, 0xec, 0x78, 0xf8, 0x2f, 0x71, 0x78, 0x18, 0x45, 0x4c, 0xe7, 0x09, 0x3b, 0x9e, 0xe0, 0x97, 0x85, 0xe9, 0x1c, 0x41, 0xdc, 0x26, 0x72, 0x75, 0x3c, 0xfa, 0x57, 0x84, 0xd7, 0x05, 0xa4, 0xfc, 0x3c, 0x64, 0x83, 0xf3, 0x37, 0x1e, 0xff, 0xab, 0x1c, 0xdf, 0xc7, 0x10, 0x0f, 0x84, 0xce, 0xff, 0x78, 0x8a, 0x5f, 0x13, 0x1e, 0x08, 0xa1, 0xc8, 0x36, 0x1a, 0xcc, 0xe9, 0xf1, 0x4c, 0xbf, 0x2e, 0xb6, 0xd1, 0x40, 0x4a, 0x27, 0xab, 0x49, 0x8f, 0xc1, 0x78, 0x8a, 0xdf, 0x10, 0xab, 0x49, 0xf5, 0x89, 0x19, 0x83, 0x49, 0x32, 0x9e, 0xe3, 0x37, 0x85, 0x19, 0x03, 0x39, 0xb2, 0xdc, 0x00, 0x34, 0x9c, 0x20, 0xe3, 0xf9, 0x3e, 0xcf, 0xf9, 0x66, 0x87, 0xf2, 0x63, 0xf9, 0x05, 0x38, 0x31, 0x3a, 0x39, 0xc6, 0xb3, 0x7e, 0xe1, 0xdd, 0x81, 0xeb, 0x4c, 0x38, 0x37, 0x96, 0xb7, 0xfb, 0xa7, 0x6c, 0x38, 0x31, 0xc6, 0xd3, 0xbe, 0xfc, 0x6e, 0xf4, 0xa0, 0x0d, 0xe7, 0xc5, 0x72, 0x05, 0xa0, 0x9f, 0x93, 0xe2, 0xb9, 0x5e, 0xe1, 0x5c, 0x21, 0x10, 0xd9, 0x1a, 0x3c, 0x25, 0xc5, 0xe3, 0xbf, 0x28, 0xb6, 0x06, 0x47, 0x90, 0xad, 0x21, 0xb2, 0x51, 0x3c, 0xfa, 0x55, 0xb1, 0x35, 0x04, 0xa4, 0x7c, 0x15, 0x32, 0x56, 0xcf, 0x34, 0x49, 0x6c, 0xa1, 0xa3, 0xff, 0x9d, 0xa9, 0xf8, 0xaf, 0xef, 0x71, 0xb0, 0x00, 0x94, 0x2f, 0x41, 0x1a, 0x77, 0x77, 0x71, 0x2b, 0x0e, 0xf9, 0x6f, 0xef, 0x89, 0xf3, 0x84, 0x68, 0x97, 0x9f, 0x07, 0x60, 0x97, 0x69, 0xfa, 0x95, 0x28, 0x06, 0xfb, 0xef, 0xef, 0xf1, 0xff, 0x94, 0xe8, 0x43, 0xfa, 0x04, 0xec, 0xff, 0x2e, 0x8e, 0x26, 0x78, 0x3b, 0x4a, 0x40, 0x2f, 0xe0, 0xcf, 0xc1, 0xd4, 0x2d, 0xcf, 0xb6, 0x7c, 0xad, 0x13, 0x87, 0xfe, 0x0f, 0x8e, 0x16, 0xfa, 0xc4, 0x61, 0x5d, 0xdb, 0xc5, 0xbe, 0xd6, 0xf1, 0xe2, 0xb0, 0xff, 0xc9, 0xb1, 0x01, 0x80, 0x80, 0x75, 0xcd, 0xf3, 0xc7, 0x99, 0xf7, 0x7f, 0x09, 0xb0, 0x00, 0x10, 0xa3, 0xc9, 0xef, 0xdb, 0x78, 0x3f, 0x0e, 0xfb, 0x8e, 0x30, 0x9a, 0xeb, 0x97, 0x3f, 0x06, 0x59, 0xf2, 0x93, 0xfd, 0xf7, 0x50, 0x0c, 0xf8, 0xbf, 0x39, 0xb8, 0x8f, 0x20, 0x23, 0x7b, 0x7e, 0xcb, 0x37, 0xe2, 0x9d, 0xfd, 0x3f, 0x7c, 0xa5, 0x85, 0x7e, 0xb9, 0x02, 0x39, 0xcf, 0x6f, 0xb5, 0x7a, 0xbc, 0xa2, 0x89, 0x81, 0x7f, 0xff, 0xbd, 0xe0, 0x92, 0x1b, 0x60, 0x56, 0xce, 0x8e, 0x7e, 0xac, 0x83, 0x35, 0x7b, 0xcd, 0x66, 0xcf, 0x74, 0xf0, 0xbf, 0x29, 0x98, 0x09, 0xcc, 0x15, 0xef, 0x6a, 0x81, 0x60, 0xe1, 0x78, 0x2f, 0x72, 0x8b, 0x7f, 0x9d, 0x84, 0x4c, 0x55, 0xf3, 0x7c, 0xed, 0xae, 0xb6, 0x8f, 0x1c, 0x98, 0x23, 0xbf, 0x37, 0x34, 0x87, 0xbe, 0xef, 0xf0, 0x0d, 0xc5, 0x5f, 0x3c, 0x3f, 0xbc, 0xdc, 0x1f, 0x55, 0x20, 0x96, 0x47, 0xa8, 0xd3, 0x2f, 0xc5, 0x2b, 0xf2, 0xeb, 0xff, 0x78, 0x7a, 0xe2, 0xe7, 0xff, 0xe9, 0x74, 0x66, 0x63, 0xff, 0x05, 0xc3, 0xf4, 0x6c, 0x4b, 0x19, 0x45, 0x8d, 0x3e, 0x2b, 0xc1, 0xc3, 0x23, 0xe4, 0x9b, 0x7c, 0xd7, 0xf1, 0xef, 0x06, 0x17, 0xc7, 0x1c, 0x5a, 0xc0, 0x98, 0x09, 0xf9, 0xc8, 0xf0, 0x47, 0x0d, 0xb3, 0x70, 0x13, 0x8a, 0x87, 0xcd, 0x04, 0xc9, 0x90, 0xbc, 0x8d, 0xf7, 0xf9, 0x7f, 0xc4, 0x92, 0x9f, 0xe8, 0x5c, 0xff, 0x7f, 0xda, 0xa4, 0xa5, 0xdc, 0x85, 0xd9, 0x90, 0x75, 0x7c, 0x30, 0xd6, 0x5f, 0x4e, 0x5c, 0x91, 0x16, 0x34, 0x38, 0x13, 0x67, 0xe9, 0xff, 0x73, 0x88, 0xc5, 0x12, 0x4c, 0x32, 0x21, 0x9a, 0x87, 0x74, 0xdd, 0xf2, 0x2f, 0x5f, 0xa4, 0x54, 0x49, 0x85, 0x35, 0x56, 0xd6, 0x5f, 0x7f, 0x50, 0x9a, 0xf8, 0xee, 0x83, 0xd2, 0xc4, 0xdf, 0x3f, 0x28, 0x4d, 0xbc, 0xf1, 0xa0, 0x24, 0xbd, 0xf5, 0xa0, 0x24, 0xbd, 0xf3, 0xa0, 0x24, 0xfd, 0xe0, 0x41, 0x49, 0xba, 0x7f, 0x50, 0x92, 0xbe, 0x7c, 0x50, 0x92, 0xbe, 0x76, 0x50, 0x92, 0xbe, 0x75, 0x50, 0x92, 0xbe, 0x7d, 0x50, 0x92, 0x5e, 0x3f, 0x28, 0x4d, 0x7c, 0xf7, 0xa0, 0x34, 0xf1, 0xc6, 0x41, 0x49, 0x7a, 0xeb, 0xa0, 0x34, 0xf1, 0xce, 0x41, 0x49, 0xfa, 0xc1, 0x41, 0x69, 0xe2, 0xfe, 0x3f, 0x97, 0x26, 0xfe, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x07, 0x8f, 0xbf, 0x9f, 0x24, 0x32, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Castaway) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Castaway") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Castaway but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Castaway but is not nil && this == nil") } if len(this.CastMapValueMessage) != len(that1.CastMapValueMessage) { return fmt.Errorf("CastMapValueMessage this(%v) Not Equal that(%v)", len(this.CastMapValueMessage), len(that1.CastMapValueMessage)) } for i := range this.CastMapValueMessage { a := (Wilson)(this.CastMapValueMessage[i]) b := (Wilson)(that1.CastMapValueMessage[i]) if !(&a).Equal(&b) { return fmt.Errorf("CastMapValueMessage this[%v](%v) Not Equal that[%v](%v)", i, this.CastMapValueMessage[i], i, that1.CastMapValueMessage[i]) } } if len(this.CastMapValueMessageNullable) != len(that1.CastMapValueMessageNullable) { return fmt.Errorf("CastMapValueMessageNullable this(%v) Not Equal that(%v)", len(this.CastMapValueMessageNullable), len(that1.CastMapValueMessageNullable)) } for i := range this.CastMapValueMessageNullable { a := (*Wilson)(this.CastMapValueMessageNullable[i]) b := (*Wilson)(that1.CastMapValueMessageNullable[i]) if !a.Equal(b) { return fmt.Errorf("CastMapValueMessageNullable this[%v](%v) Not Equal that[%v](%v)", i, this.CastMapValueMessageNullable[i], i, that1.CastMapValueMessageNullable[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Castaway) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.CastMapValueMessage) != len(that1.CastMapValueMessage) { return false } for i := range this.CastMapValueMessage { a := (Wilson)(this.CastMapValueMessage[i]) b := (Wilson)(that1.CastMapValueMessage[i]) if !(&a).Equal(&b) { return false } } if len(this.CastMapValueMessageNullable) != len(that1.CastMapValueMessageNullable) { return false } for i := range this.CastMapValueMessageNullable { a := (*Wilson)(this.CastMapValueMessageNullable[i]) b := (*Wilson)(that1.CastMapValueMessageNullable[i]) if !a.Equal(b) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Wilson) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Wilson") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Wilson but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Wilson but is not nil && this == nil") } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", *this.Int64, *that1.Int64) } } else if this.Int64 != nil { return fmt.Errorf("this.Int64 == nil && that.Int64 != nil") } else if that1.Int64 != nil { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", this.Int64, that1.Int64) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Wilson) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return false } } else if this.Int64 != nil { return false } else if that1.Int64 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type CastawayFace interface { Proto() github_com_gogo_protobuf_proto.Message GetCastMapValueMessage() map[int32]MyWilson GetCastMapValueMessageNullable() map[int32]*MyWilson } func (this *Castaway) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Castaway) TestProto() github_com_gogo_protobuf_proto.Message { return NewCastawayFromFace(this) } func (this *Castaway) GetCastMapValueMessage() map[int32]MyWilson { return this.CastMapValueMessage } func (this *Castaway) GetCastMapValueMessageNullable() map[int32]*MyWilson { return this.CastMapValueMessageNullable } func NewCastawayFromFace(that CastawayFace) *Castaway { this := &Castaway{} this.CastMapValueMessage = that.GetCastMapValueMessage() this.CastMapValueMessageNullable = that.GetCastMapValueMessageNullable() return this } type WilsonFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt64() *int64 } func (this *Wilson) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Wilson) TestProto() github_com_gogo_protobuf_proto.Message { return NewWilsonFromFace(this) } func (this *Wilson) GetInt64() *int64 { return this.Int64 } func NewWilsonFromFace(that WilsonFace) *Wilson { this := &Wilson{} this.Int64 = that.GetInt64() return this } func (this *Castaway) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&castvalue.Castaway{") keysForCastMapValueMessage := make([]int32, 0, len(this.CastMapValueMessage)) for k := range this.CastMapValueMessage { keysForCastMapValueMessage = append(keysForCastMapValueMessage, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessage) mapStringForCastMapValueMessage := "map[int32]MyWilson{" for _, k := range keysForCastMapValueMessage { mapStringForCastMapValueMessage += fmt.Sprintf("%#v: %#v,", k, this.CastMapValueMessage[k]) } mapStringForCastMapValueMessage += "}" if this.CastMapValueMessage != nil { s = append(s, "CastMapValueMessage: "+mapStringForCastMapValueMessage+",\n") } keysForCastMapValueMessageNullable := make([]int32, 0, len(this.CastMapValueMessageNullable)) for k := range this.CastMapValueMessageNullable { keysForCastMapValueMessageNullable = append(keysForCastMapValueMessageNullable, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessageNullable) mapStringForCastMapValueMessageNullable := "map[int32]*MyWilson{" for _, k := range keysForCastMapValueMessageNullable { mapStringForCastMapValueMessageNullable += fmt.Sprintf("%#v: %#v,", k, this.CastMapValueMessageNullable[k]) } mapStringForCastMapValueMessageNullable += "}" if this.CastMapValueMessageNullable != nil { s = append(s, "CastMapValueMessageNullable: "+mapStringForCastMapValueMessageNullable+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Wilson) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&castvalue.Wilson{") if this.Int64 != nil { s = append(s, "Int64: "+valueToGoStringCastvalue(this.Int64, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringCastvalue(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedCastaway(r randyCastvalue, easy bool) *Castaway { this := &Castaway{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.CastMapValueMessage = make(map[int32]MyWilson) for i := 0; i < v1; i++ { this.CastMapValueMessage[int32(r.Int31())] = (MyWilson)(*NewPopulatedWilson(r, easy)) } } if r.Intn(10) != 0 { v2 := r.Intn(10) this.CastMapValueMessageNullable = make(map[int32]*MyWilson) for i := 0; i < v2; i++ { this.CastMapValueMessageNullable[int32(r.Int31())] = (*MyWilson)(NewPopulatedWilson(r, easy)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCastvalue(r, 3) } return this } func NewPopulatedWilson(r randyCastvalue, easy bool) *Wilson { this := &Wilson{} if r.Intn(10) != 0 { v3 := int64(r.Int63()) if r.Intn(2) == 0 { v3 *= -1 } this.Int64 = &v3 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCastvalue(r, 2) } return this } type randyCastvalue interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneCastvalue(r randyCastvalue) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringCastvalue(r randyCastvalue) string { v4 := r.Intn(100) tmps := make([]rune, v4) for i := 0; i < v4; i++ { tmps[i] = randUTF8RuneCastvalue(r) } return string(tmps) } func randUnrecognizedCastvalue(r randyCastvalue, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldCastvalue(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldCastvalue(dAtA []byte, r randyCastvalue, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) v5 := r.Int63() if r.Intn(2) == 0 { v5 *= -1 } dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(v5)) case 1: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateCastvalue(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Castaway) Size() (n int) { var l int _ = l if len(m.CastMapValueMessage) > 0 { for k, v := range m.CastMapValueMessage { _ = k _ = v l = ((*Wilson)(&v)).Size() mapEntrySize := 1 + sovCastvalue(uint64(k)) + 1 + l + sovCastvalue(uint64(l)) n += mapEntrySize + 1 + sovCastvalue(uint64(mapEntrySize)) } } if len(m.CastMapValueMessageNullable) > 0 { for k, v := range m.CastMapValueMessageNullable { _ = k _ = v l = 0 if v != nil { l = ((*Wilson)(v)).Size() l += 1 + sovCastvalue(uint64(l)) } mapEntrySize := 1 + sovCastvalue(uint64(k)) + l n += mapEntrySize + 1 + sovCastvalue(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Wilson) Size() (n int) { var l int _ = l if m.Int64 != nil { n += 1 + sovCastvalue(uint64(*m.Int64)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovCastvalue(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozCastvalue(x uint64) (n int) { return sovCastvalue(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Castaway) String() string { if this == nil { return "nil" } keysForCastMapValueMessage := make([]int32, 0, len(this.CastMapValueMessage)) for k := range this.CastMapValueMessage { keysForCastMapValueMessage = append(keysForCastMapValueMessage, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessage) mapStringForCastMapValueMessage := "map[int32]MyWilson{" for _, k := range keysForCastMapValueMessage { mapStringForCastMapValueMessage += fmt.Sprintf("%v: %v,", k, this.CastMapValueMessage[k]) } mapStringForCastMapValueMessage += "}" keysForCastMapValueMessageNullable := make([]int32, 0, len(this.CastMapValueMessageNullable)) for k := range this.CastMapValueMessageNullable { keysForCastMapValueMessageNullable = append(keysForCastMapValueMessageNullable, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessageNullable) mapStringForCastMapValueMessageNullable := "map[int32]*MyWilson{" for _, k := range keysForCastMapValueMessageNullable { mapStringForCastMapValueMessageNullable += fmt.Sprintf("%v: %v,", k, this.CastMapValueMessageNullable[k]) } mapStringForCastMapValueMessageNullable += "}" s := strings.Join([]string{`&Castaway{`, `CastMapValueMessage:` + mapStringForCastMapValueMessage + `,`, `CastMapValueMessageNullable:` + mapStringForCastMapValueMessageNullable + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Wilson) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Wilson{`, `Int64:` + valueToStringCastvalue(this.Int64) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringCastvalue(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("castvalue.proto", fileDescriptorCastvalue) } var fileDescriptorCastvalue = []byte{ // 342 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4f, 0x4e, 0x2c, 0x2e, 0x29, 0x4b, 0xcc, 0x29, 0x4d, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x84, 0x0b, 0x48, 0xe9, 0xa6, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xa7, 0xe7, 0xa7, 0xe7, 0xeb, 0x83, 0x55, 0x24, 0x95, 0xa6, 0x81, 0x79, 0x60, 0x0e, 0x98, 0x05, 0xd1, 0xa9, 0x74, 0x90, 0x99, 0x8b, 0xc3, 0x39, 0xb1, 0xb8, 0x24, 0xb1, 0x3c, 0xb1, 0x52, 0xa8, 0x80, 0x4b, 0x18, 0xc4, 0xf6, 0x4d, 0x2c, 0x08, 0x03, 0x99, 0xe5, 0x9b, 0x5a, 0x5c, 0x9c, 0x98, 0x9e, 0x2a, 0xc1, 0xa8, 0xc0, 0xac, 0xc1, 0x6d, 0xa4, 0xa3, 0x87, 0xb0, 0x15, 0xa6, 0x43, 0x0f, 0x8b, 0x72, 0xd7, 0xbc, 0x92, 0xa2, 0x4a, 0x27, 0x81, 0x13, 0xf7, 0xe4, 0x19, 0xba, 0xee, 0xcb, 0x73, 0xf8, 0x56, 0x86, 0x67, 0xe6, 0x14, 0xe7, 0xe7, 0x05, 0x61, 0x33, 0x5a, 0xa8, 0x85, 0x91, 0x4b, 0x1a, 0x8b, 0xb8, 0x5f, 0x69, 0x4e, 0x4e, 0x62, 0x52, 0x4e, 0xaa, 0x04, 0x13, 0xd8, 0x6a, 0x13, 0x22, 0xad, 0x86, 0x69, 0x83, 0x38, 0x81, 0x07, 0xc5, 0x7a, 0x7c, 0xd6, 0x48, 0x45, 0x72, 0x49, 0xe0, 0xf2, 0x89, 0x90, 0x00, 0x17, 0x73, 0x76, 0x6a, 0xa5, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x6b, 0x10, 0x88, 0x29, 0xa4, 0xce, 0xc5, 0x0a, 0x76, 0x8b, 0x04, 0x93, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x20, 0x92, 0xeb, 0xa0, 0x96, 0x41, 0xe4, 0xad, 0x98, 0x2c, 0x18, 0xa5, 0x12, 0xb9, 0x14, 0x08, 0xb9, 0x94, 0x42, 0x2b, 0x94, 0xe4, 0xb8, 0xd8, 0x20, 0x82, 0x42, 0x22, 0x5c, 0xac, 0x9e, 0x79, 0x25, 0x66, 0x26, 0x60, 0xa3, 0x98, 0x83, 0x20, 0x1c, 0x27, 0x9f, 0x13, 0x0f, 0xe5, 0x18, 0x2e, 0x3c, 0x94, 0x63, 0xb8, 0xf1, 0x50, 0x8e, 0xe1, 0xc1, 0x43, 0x39, 0xc6, 0x17, 0x0f, 0xe5, 0x18, 0x3f, 0x3c, 0x94, 0x63, 0xfc, 0xf1, 0x50, 0x8e, 0xb1, 0xe1, 0x91, 0x1c, 0xe3, 0x8a, 0x47, 0x72, 0x8c, 0x1b, 0x1e, 0xc9, 0x31, 0xee, 0x78, 0x24, 0xc7, 0x78, 0xe0, 0x91, 0x1c, 0xe3, 0x89, 0x47, 0x72, 0x0c, 0x17, 0x1e, 0xc9, 0x31, 0x3c, 0x78, 0x24, 0xc7, 0xf8, 0xe2, 0x91, 0x1c, 0xc3, 0x87, 0x47, 0x72, 0x8c, 0x3f, 0x1e, 0xc9, 0x31, 0x34, 0x3c, 0x96, 0x63, 0x00, 0x04, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x8b, 0x19, 0x68, 0x7d, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/castvalue/castvalue.proto000066400000000000000000000051341317075173200233720ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 castvalue; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Castaway { map CastMapValueMessage = 1 [(gogoproto.castvalue) = "MyWilson", (gogoproto.nullable) = false]; map CastMapValueMessageNullable = 2 [(gogoproto.castvalue) = "MyWilson"]; } message Wilson { optional int64 Int64 = 1; } golang-gogoprotobuf-0.5/test/castvalue/castvaluepb_test.go000066400000000000000000000317741317075173200242260ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: castvalue.proto /* Package castvalue is a generated protocol buffer package. It is generated from these files: castvalue.proto It has these top-level messages: Castaway Wilson */ package castvalue import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestCastawayProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCastawayProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCastawayProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastaway(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Castaway{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestWilsonProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkWilsonProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkWilsonProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedWilson(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Wilson{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCastawayJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestWilsonJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCastawayProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastawayProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastvalueDescription(t *testing.T) { CastvalueDescription() } func TestCastawayVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestWilsonVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCastawayFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestWilsonFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCastawayGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestWilsonGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCastawaySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCastawaySize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestWilsonSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkWilsonSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCastawayStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestWilsonStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/castvalue/combos/000077500000000000000000000000001317075173200215755ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/castvalue/combos/both/000077500000000000000000000000001317075173200225315ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/castvalue/combos/both/castvalue.pb.go000066400000000000000000001555211317075173200254600ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/castvalue.proto /* Package castvalue is a generated protocol buffer package. It is generated from these files: combos/both/castvalue.proto It has these top-level messages: Castaway Wilson */ package castvalue import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Castaway struct { CastMapValueMessage map[int32]MyWilson `protobuf:"bytes,1,rep,name=CastMapValueMessage,castvalue=MyWilson,castvaluetype=castvalue.Wilson" json:"CastMapValueMessage" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` CastMapValueMessageNullable map[int32]*MyWilson `protobuf:"bytes,2,rep,name=CastMapValueMessageNullable,castvalue=MyWilson,castvaluetype=castvalue.Wilson" json:"CastMapValueMessageNullable,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *Castaway) Reset() { *m = Castaway{} } func (*Castaway) ProtoMessage() {} func (*Castaway) Descriptor() ([]byte, []int) { return fileDescriptorCastvalue, []int{0} } type Wilson struct { Int64 *int64 `protobuf:"varint,1,opt,name=Int64" json:"Int64,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Wilson) Reset() { *m = Wilson{} } func (*Wilson) ProtoMessage() {} func (*Wilson) Descriptor() ([]byte, []int) { return fileDescriptorCastvalue, []int{1} } func init() { proto.RegisterType((*Castaway)(nil), "castvalue.Castaway") proto.RegisterType((*Wilson)(nil), "castvalue.Wilson") } func (this *Castaway) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CastvalueDescription() } func (this *Wilson) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CastvalueDescription() } func CastvalueDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3867 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0xe6, 0xe2, 0x87, 0x04, 0x0e, 0x40, 0x70, 0x79, 0x49, 0x4b, 0x10, 0x15, 0x43, 0x12, 0xfd, 0x23, 0xda, 0x4e, 0xc8, 0x8c, 0x2c, 0xc9, 0x32, 0xd4, 0xc4, 0x05, 0x41, 0x88, 0x81, 0xca, 0xbf, 0x2c, 0xc8, 0x58, 0x4a, 0x1f, 0x76, 0x96, 0x8b, 0x0b, 0x70, 0xa5, 0xc5, 0xee, 0x66, 0x77, 0x21, 0x99, 0x9a, 0x3e, 0xa8, 0xe3, 0xb4, 0x1d, 0xb7, 0xd3, 0xff, 0xce, 0x34, 0x71, 0x1d, 0xb7, 0xcd, 0x4c, 0xeb, 0x34, 0xe9, 0x4f, 0xd2, 0xb4, 0x69, 0xda, 0xa7, 0xf4, 0x21, 0xad, 0x9f, 0x3a, 0xc9, 0x5b, 0x1f, 0x3a, 0xad, 0xc5, 0x7a, 0xa6, 0x6e, 0xeb, 0xb6, 0x6e, 0xe3, 0x87, 0xcc, 0xf8, 0xa5, 0x73, 0xff, 0x16, 0xbb, 0x00, 0xc8, 0x05, 0x93, 0xb1, 0xfd, 0x44, 0xdc, 0x73, 0xcf, 0xf7, 0xdd, 0x73, 0xcf, 0x3d, 0xf7, 0x9e, 0x73, 0xef, 0x12, 0xbe, 0x76, 0x05, 0xce, 0xb6, 0x6d, 0xbb, 0x6d, 0xe2, 0x25, 0xc7, 0xb5, 0x7d, 0x7b, 0xb7, 0xdb, 0x5a, 0x6a, 0x62, 0x4f, 0x77, 0x0d, 0xc7, 0xb7, 0xdd, 0x45, 0x2a, 0x43, 0x53, 0x4c, 0x63, 0x51, 0x68, 0xcc, 0xaf, 0xc3, 0xf4, 0x35, 0xc3, 0xc4, 0x2b, 0x81, 0x62, 0x03, 0xfb, 0xe8, 0x0a, 0xa4, 0x5a, 0x86, 0x89, 0x8b, 0xd2, 0xd9, 0xe4, 0x42, 0xee, 0xc2, 0xa3, 0x8b, 0x7d, 0xa0, 0xc5, 0x28, 0x62, 0x8b, 0x88, 0x15, 0x8a, 0x98, 0x7f, 0x33, 0x05, 0x33, 0x43, 0x7a, 0x11, 0x82, 0x94, 0xa5, 0x75, 0x08, 0xa3, 0xb4, 0x90, 0x55, 0xe8, 0x6f, 0x54, 0x84, 0x09, 0x47, 0xd3, 0x6f, 0x6b, 0x6d, 0x5c, 0x4c, 0x50, 0xb1, 0x68, 0xa2, 0x12, 0x40, 0x13, 0x3b, 0xd8, 0x6a, 0x62, 0x4b, 0xdf, 0x2f, 0x26, 0xcf, 0x26, 0x17, 0xb2, 0x4a, 0x48, 0x82, 0x9e, 0x82, 0x69, 0xa7, 0xbb, 0x6b, 0x1a, 0xba, 0x1a, 0x52, 0x83, 0xb3, 0xc9, 0x85, 0xb4, 0x22, 0xb3, 0x8e, 0x95, 0x9e, 0xf2, 0x79, 0x98, 0xba, 0x8b, 0xb5, 0xdb, 0x61, 0xd5, 0x1c, 0x55, 0x2d, 0x10, 0x71, 0x48, 0xb1, 0x0a, 0xf9, 0x0e, 0xf6, 0x3c, 0xad, 0x8d, 0x55, 0x7f, 0xdf, 0xc1, 0xc5, 0x14, 0x9d, 0xfd, 0xd9, 0x81, 0xd9, 0xf7, 0xcf, 0x3c, 0xc7, 0x51, 0xdb, 0xfb, 0x0e, 0x46, 0x15, 0xc8, 0x62, 0xab, 0xdb, 0x61, 0x0c, 0xe9, 0x43, 0xfc, 0x57, 0xb3, 0xba, 0x9d, 0x7e, 0x96, 0x0c, 0x81, 0x71, 0x8a, 0x09, 0x0f, 0xbb, 0x77, 0x0c, 0x1d, 0x17, 0xc7, 0x29, 0xc1, 0xf9, 0x01, 0x82, 0x06, 0xeb, 0xef, 0xe7, 0x10, 0x38, 0x54, 0x85, 0x2c, 0x7e, 0xc1, 0xc7, 0x96, 0x67, 0xd8, 0x56, 0x71, 0x82, 0x92, 0x3c, 0x36, 0x64, 0x15, 0xb1, 0xd9, 0xec, 0xa7, 0xe8, 0xe1, 0xd0, 0x65, 0x98, 0xb0, 0x1d, 0xdf, 0xb0, 0x2d, 0xaf, 0x98, 0x39, 0x2b, 0x2d, 0xe4, 0x2e, 0x7c, 0x64, 0x68, 0x20, 0x6c, 0x32, 0x1d, 0x45, 0x28, 0xa3, 0x3a, 0xc8, 0x9e, 0xdd, 0x75, 0x75, 0xac, 0xea, 0x76, 0x13, 0xab, 0x86, 0xd5, 0xb2, 0x8b, 0x59, 0x4a, 0x70, 0x66, 0x70, 0x22, 0x54, 0xb1, 0x6a, 0x37, 0x71, 0xdd, 0x6a, 0xd9, 0x4a, 0xc1, 0x8b, 0xb4, 0xd1, 0x09, 0x18, 0xf7, 0xf6, 0x2d, 0x5f, 0x7b, 0xa1, 0x98, 0xa7, 0x11, 0xc2, 0x5b, 0xf3, 0x7f, 0x3d, 0x0e, 0x53, 0xa3, 0x84, 0xd8, 0x55, 0x48, 0xb7, 0xc8, 0x2c, 0x8b, 0x89, 0xe3, 0xf8, 0x80, 0x61, 0xa2, 0x4e, 0x1c, 0xff, 0x11, 0x9d, 0x58, 0x81, 0x9c, 0x85, 0x3d, 0x1f, 0x37, 0x59, 0x44, 0x24, 0x47, 0x8c, 0x29, 0x60, 0xa0, 0xc1, 0x90, 0x4a, 0xfd, 0x48, 0x21, 0x75, 0x03, 0xa6, 0x02, 0x93, 0x54, 0x57, 0xb3, 0xda, 0x22, 0x36, 0x97, 0xe2, 0x2c, 0x59, 0xac, 0x09, 0x9c, 0x42, 0x60, 0x4a, 0x01, 0x47, 0xda, 0x68, 0x05, 0xc0, 0xb6, 0xb0, 0xdd, 0x52, 0x9b, 0x58, 0x37, 0x8b, 0x99, 0x43, 0xbc, 0xb4, 0x49, 0x54, 0x06, 0xbc, 0x64, 0x33, 0xa9, 0x6e, 0xa2, 0x67, 0x7b, 0xa1, 0x36, 0x71, 0x48, 0xa4, 0xac, 0xb3, 0x4d, 0x36, 0x10, 0x6d, 0x3b, 0x50, 0x70, 0x31, 0x89, 0x7b, 0xdc, 0xe4, 0x33, 0xcb, 0x52, 0x23, 0x16, 0x63, 0x67, 0xa6, 0x70, 0x18, 0x9b, 0xd8, 0xa4, 0x1b, 0x6e, 0xa2, 0x47, 0x20, 0x10, 0xa8, 0x34, 0xac, 0x80, 0x9e, 0x42, 0x79, 0x21, 0xdc, 0xd0, 0x3a, 0x78, 0xee, 0x1e, 0x14, 0xa2, 0xee, 0x41, 0xb3, 0x90, 0xf6, 0x7c, 0xcd, 0xf5, 0x69, 0x14, 0xa6, 0x15, 0xd6, 0x40, 0x32, 0x24, 0xb1, 0xd5, 0xa4, 0xa7, 0x5c, 0x5a, 0x21, 0x3f, 0xd1, 0x4f, 0xf6, 0x26, 0x9c, 0xa4, 0x13, 0x7e, 0x7c, 0x70, 0x45, 0x23, 0xcc, 0xfd, 0xf3, 0x9e, 0x7b, 0x06, 0x26, 0x23, 0x13, 0x18, 0x75, 0xe8, 0xf9, 0x9f, 0x81, 0x87, 0x86, 0x52, 0xa3, 0x1b, 0x30, 0xdb, 0xb5, 0x0c, 0xcb, 0xc7, 0xae, 0xe3, 0x62, 0x12, 0xb1, 0x6c, 0xa8, 0xe2, 0xbf, 0x4d, 0x1c, 0x12, 0x73, 0x3b, 0x61, 0x6d, 0xc6, 0xa2, 0xcc, 0x74, 0x07, 0x85, 0x4f, 0x66, 0x33, 0x6f, 0x4d, 0xc8, 0xf7, 0xef, 0xdf, 0xbf, 0x9f, 0x98, 0xff, 0xc2, 0x38, 0xcc, 0x0e, 0xdb, 0x33, 0x43, 0xb7, 0xef, 0x09, 0x18, 0xb7, 0xba, 0x9d, 0x5d, 0xec, 0x52, 0x27, 0xa5, 0x15, 0xde, 0x42, 0x15, 0x48, 0x9b, 0xda, 0x2e, 0x36, 0x8b, 0xa9, 0xb3, 0xd2, 0x42, 0xe1, 0xc2, 0x53, 0x23, 0xed, 0xca, 0xc5, 0x35, 0x02, 0x51, 0x18, 0x12, 0x7d, 0x12, 0x52, 0xfc, 0x88, 0x26, 0x0c, 0x4f, 0x8e, 0xc6, 0x40, 0xf6, 0x92, 0x42, 0x71, 0xe8, 0x34, 0x64, 0xc9, 0x5f, 0x16, 0x1b, 0xe3, 0xd4, 0xe6, 0x0c, 0x11, 0x90, 0xb8, 0x40, 0x73, 0x90, 0xa1, 0xdb, 0xa4, 0x89, 0x45, 0x6a, 0x0b, 0xda, 0x24, 0xb0, 0x9a, 0xb8, 0xa5, 0x75, 0x4d, 0x5f, 0xbd, 0xa3, 0x99, 0x5d, 0x4c, 0x03, 0x3e, 0xab, 0xe4, 0xb9, 0xf0, 0x33, 0x44, 0x86, 0xce, 0x40, 0x8e, 0xed, 0x2a, 0xc3, 0x6a, 0xe2, 0x17, 0xe8, 0xe9, 0x99, 0x56, 0xd8, 0x46, 0xab, 0x13, 0x09, 0x19, 0xfe, 0x96, 0x67, 0x5b, 0x22, 0x34, 0xe9, 0x10, 0x44, 0x40, 0x87, 0x7f, 0xa6, 0xff, 0xe0, 0x7e, 0x78, 0xf8, 0xf4, 0xfa, 0x63, 0x6a, 0xfe, 0x5b, 0x09, 0x48, 0xd1, 0xf3, 0x62, 0x0a, 0x72, 0xdb, 0x37, 0xb7, 0x6a, 0xea, 0xca, 0xe6, 0xce, 0xf2, 0x5a, 0x4d, 0x96, 0x50, 0x01, 0x80, 0x0a, 0xae, 0xad, 0x6d, 0x56, 0xb6, 0xe5, 0x44, 0xd0, 0xae, 0x6f, 0x6c, 0x5f, 0xbe, 0x28, 0x27, 0x03, 0xc0, 0x0e, 0x13, 0xa4, 0xc2, 0x0a, 0x4f, 0x5f, 0x90, 0xd3, 0x48, 0x86, 0x3c, 0x23, 0xa8, 0xdf, 0xa8, 0xad, 0x5c, 0xbe, 0x28, 0x8f, 0x47, 0x25, 0x4f, 0x5f, 0x90, 0x27, 0xd0, 0x24, 0x64, 0xa9, 0x64, 0x79, 0x73, 0x73, 0x4d, 0xce, 0x04, 0x9c, 0x8d, 0x6d, 0xa5, 0xbe, 0xb1, 0x2a, 0x67, 0x03, 0xce, 0x55, 0x65, 0x73, 0x67, 0x4b, 0x86, 0x80, 0x61, 0xbd, 0xd6, 0x68, 0x54, 0x56, 0x6b, 0x72, 0x2e, 0xd0, 0x58, 0xbe, 0xb9, 0x5d, 0x6b, 0xc8, 0xf9, 0x88, 0x59, 0x4f, 0x5f, 0x90, 0x27, 0x83, 0x21, 0x6a, 0x1b, 0x3b, 0xeb, 0x72, 0x01, 0x4d, 0xc3, 0x24, 0x1b, 0x42, 0x18, 0x31, 0xd5, 0x27, 0xba, 0x7c, 0x51, 0x96, 0x7b, 0x86, 0x30, 0x96, 0xe9, 0x88, 0xe0, 0xf2, 0x45, 0x19, 0xcd, 0x57, 0x21, 0x4d, 0xa3, 0x0b, 0x21, 0x28, 0xac, 0x55, 0x96, 0x6b, 0x6b, 0xea, 0xe6, 0xd6, 0x76, 0x7d, 0x73, 0xa3, 0xb2, 0x26, 0x4b, 0x3d, 0x99, 0x52, 0xfb, 0xf4, 0x4e, 0x5d, 0xa9, 0xad, 0xc8, 0x89, 0xb0, 0x6c, 0xab, 0x56, 0xd9, 0xae, 0xad, 0xc8, 0xc9, 0x79, 0x1d, 0x66, 0x87, 0x9d, 0x93, 0x43, 0x77, 0x46, 0x68, 0x89, 0x13, 0x87, 0x2c, 0x31, 0xe5, 0x1a, 0x58, 0xe2, 0x2f, 0x4b, 0x30, 0x33, 0x24, 0x57, 0x0c, 0x1d, 0xe4, 0x39, 0x48, 0xb3, 0x10, 0x65, 0xd9, 0xf3, 0x89, 0xa1, 0x49, 0x87, 0x06, 0xec, 0x40, 0x06, 0xa5, 0xb8, 0x70, 0x05, 0x91, 0x3c, 0xa4, 0x82, 0x20, 0x14, 0x03, 0x46, 0xbe, 0x28, 0x41, 0xf1, 0x30, 0xee, 0x98, 0x83, 0x22, 0x11, 0x39, 0x28, 0xae, 0xf6, 0x1b, 0x70, 0xee, 0xf0, 0x39, 0x0c, 0x58, 0xf1, 0x9a, 0x04, 0x27, 0x86, 0x17, 0x5a, 0x43, 0x6d, 0xf8, 0x24, 0x8c, 0x77, 0xb0, 0xbf, 0x67, 0x8b, 0x62, 0xe3, 0xf1, 0x21, 0x29, 0x8c, 0x74, 0xf7, 0xfb, 0x8a, 0xa3, 0xc2, 0x39, 0x30, 0x79, 0x58, 0xb5, 0xc4, 0xac, 0x19, 0xb0, 0xf4, 0xa5, 0x04, 0x3c, 0x34, 0x94, 0x7c, 0xa8, 0xa1, 0x0f, 0x03, 0x18, 0x96, 0xd3, 0xf5, 0x59, 0x41, 0xc1, 0xce, 0xa7, 0x2c, 0x95, 0xd0, 0xbd, 0x4f, 0xce, 0x9e, 0xae, 0x1f, 0xf4, 0x27, 0x69, 0x3f, 0x30, 0x11, 0x55, 0xb8, 0xd2, 0x33, 0x34, 0x45, 0x0d, 0x2d, 0x1d, 0x32, 0xd3, 0x81, 0x5c, 0xfd, 0x71, 0x90, 0x75, 0xd3, 0xc0, 0x96, 0xaf, 0x7a, 0xbe, 0x8b, 0xb5, 0x8e, 0x61, 0xb5, 0xe9, 0x01, 0x9c, 0x29, 0xa7, 0x5b, 0x9a, 0xe9, 0x61, 0x65, 0x8a, 0x75, 0x37, 0x44, 0x2f, 0x41, 0xd0, 0x1c, 0xe7, 0x86, 0x10, 0xe3, 0x11, 0x04, 0xeb, 0x0e, 0x10, 0xf3, 0xdf, 0xcc, 0x40, 0x2e, 0x54, 0x96, 0xa2, 0x73, 0x90, 0xbf, 0xa5, 0xdd, 0xd1, 0x54, 0x71, 0xd5, 0x60, 0x9e, 0xc8, 0x11, 0xd9, 0x16, 0xbf, 0x6e, 0x7c, 0x1c, 0x66, 0xa9, 0x8a, 0xdd, 0xf5, 0xb1, 0xab, 0xea, 0xa6, 0xe6, 0x79, 0xd4, 0x69, 0x19, 0xaa, 0x8a, 0x48, 0xdf, 0x26, 0xe9, 0xaa, 0x8a, 0x1e, 0x74, 0x09, 0x66, 0x28, 0xa2, 0xd3, 0x35, 0x7d, 0xc3, 0x31, 0xb1, 0x4a, 0x2e, 0x3f, 0x1e, 0x3d, 0x88, 0x03, 0xcb, 0xa6, 0x89, 0xc6, 0x3a, 0x57, 0x20, 0x16, 0x79, 0x68, 0x05, 0x1e, 0xa6, 0xb0, 0x36, 0xb6, 0xb0, 0xab, 0xf9, 0x58, 0xc5, 0x9f, 0xeb, 0x6a, 0xa6, 0xa7, 0x6a, 0x56, 0x53, 0xdd, 0xd3, 0xbc, 0xbd, 0xe2, 0x2c, 0x21, 0x58, 0x4e, 0x14, 0x25, 0xe5, 0x14, 0x51, 0x5c, 0xe5, 0x7a, 0x35, 0xaa, 0x56, 0xb1, 0x9a, 0x9f, 0xd2, 0xbc, 0x3d, 0x54, 0x86, 0x13, 0x94, 0xc5, 0xf3, 0x5d, 0xc3, 0x6a, 0xab, 0xfa, 0x1e, 0xd6, 0x6f, 0xab, 0x5d, 0xbf, 0x75, 0xa5, 0x78, 0x3a, 0x3c, 0x3e, 0xb5, 0xb0, 0x41, 0x75, 0xaa, 0x44, 0x65, 0xc7, 0x6f, 0x5d, 0x41, 0x0d, 0xc8, 0x93, 0xc5, 0xe8, 0x18, 0xf7, 0xb0, 0xda, 0xb2, 0x5d, 0x9a, 0x59, 0x0a, 0x43, 0x76, 0x76, 0xc8, 0x83, 0x8b, 0x9b, 0x1c, 0xb0, 0x6e, 0x37, 0x71, 0x39, 0xdd, 0xd8, 0xaa, 0xd5, 0x56, 0x94, 0x9c, 0x60, 0xb9, 0x66, 0xbb, 0x24, 0xa0, 0xda, 0x76, 0xe0, 0xe0, 0x1c, 0x0b, 0xa8, 0xb6, 0x2d, 0xdc, 0x7b, 0x09, 0x66, 0x74, 0x9d, 0xcd, 0xd9, 0xd0, 0x55, 0x7e, 0x45, 0xf1, 0x8a, 0x72, 0xc4, 0x59, 0xba, 0xbe, 0xca, 0x14, 0x78, 0x8c, 0x7b, 0xe8, 0x59, 0x78, 0xa8, 0xe7, 0xac, 0x30, 0x70, 0x7a, 0x60, 0x96, 0xfd, 0xd0, 0x4b, 0x30, 0xe3, 0xec, 0x0f, 0x02, 0x51, 0x64, 0x44, 0x67, 0xbf, 0x1f, 0xf6, 0x0c, 0xcc, 0x3a, 0x7b, 0xce, 0x20, 0x6e, 0x26, 0x8c, 0x43, 0xce, 0x9e, 0xd3, 0x0f, 0x7c, 0x8c, 0xde, 0x57, 0x5d, 0xac, 0x6b, 0x3e, 0x6e, 0x16, 0x4f, 0x86, 0xd5, 0x43, 0x1d, 0x68, 0x09, 0x64, 0x5d, 0x57, 0xb1, 0xa5, 0xed, 0x9a, 0x58, 0xd5, 0x5c, 0x6c, 0x69, 0x5e, 0xf1, 0x4c, 0x58, 0xb9, 0xa0, 0xeb, 0x35, 0xda, 0x5b, 0xa1, 0x9d, 0xe8, 0x49, 0x98, 0xb6, 0x77, 0x6f, 0xe9, 0x2c, 0x24, 0x55, 0xc7, 0xc5, 0x2d, 0xe3, 0x85, 0xe2, 0xa3, 0xd4, 0xbf, 0x53, 0xa4, 0x83, 0x06, 0xe4, 0x16, 0x15, 0xa3, 0x27, 0x40, 0xd6, 0xbd, 0x3d, 0xcd, 0x75, 0x68, 0x4d, 0xe0, 0x39, 0x9a, 0x8e, 0x8b, 0x8f, 0x31, 0x55, 0x26, 0xdf, 0x10, 0x62, 0xb2, 0x25, 0xbc, 0xbb, 0x46, 0xcb, 0x17, 0x8c, 0xe7, 0xd9, 0x96, 0xa0, 0x32, 0xce, 0xb6, 0x00, 0x32, 0x71, 0x45, 0x64, 0xe0, 0x05, 0xaa, 0x56, 0x70, 0xf6, 0x9c, 0xf0, 0xb8, 0x8f, 0xc0, 0x24, 0xd1, 0xec, 0x0d, 0xfa, 0x04, 0xab, 0x67, 0x9c, 0xbd, 0xd0, 0x88, 0xef, 0x5b, 0x69, 0x39, 0x5f, 0x86, 0x7c, 0x38, 0x3e, 0x51, 0x16, 0x58, 0x84, 0xca, 0x12, 0xc9, 0xf5, 0xd5, 0xcd, 0x15, 0x92, 0xa5, 0x3f, 0x5b, 0x93, 0x13, 0xa4, 0x5a, 0x58, 0xab, 0x6f, 0xd7, 0x54, 0x65, 0x67, 0x63, 0xbb, 0xbe, 0x5e, 0x93, 0x93, 0xe1, 0xb2, 0xf4, 0xbb, 0x09, 0x28, 0x44, 0x6f, 0x18, 0xe8, 0x27, 0xe0, 0xa4, 0x78, 0x0e, 0xf0, 0xb0, 0xaf, 0xde, 0x35, 0x5c, 0xba, 0x65, 0x3a, 0x1a, 0xab, 0xb0, 0x83, 0x45, 0x9b, 0xe5, 0x5a, 0x0d, 0xec, 0x3f, 0x6f, 0xb8, 0x64, 0x43, 0x74, 0x34, 0x1f, 0xad, 0xc1, 0x19, 0xcb, 0x56, 0x3d, 0x5f, 0xb3, 0x9a, 0x9a, 0xdb, 0x54, 0x7b, 0x0f, 0x31, 0xaa, 0xa6, 0xeb, 0xd8, 0xf3, 0x6c, 0x96, 0xaa, 0x02, 0x96, 0x8f, 0x58, 0x76, 0x83, 0x2b, 0xf7, 0xce, 0xf0, 0x0a, 0x57, 0xed, 0x0b, 0xb0, 0xe4, 0x61, 0x01, 0x76, 0x1a, 0xb2, 0x1d, 0xcd, 0x51, 0xb1, 0xe5, 0xbb, 0xfb, 0xb4, 0xae, 0xcc, 0x28, 0x99, 0x8e, 0xe6, 0xd4, 0x48, 0xfb, 0x83, 0x29, 0xef, 0xff, 0x29, 0x09, 0xf9, 0x70, 0x6d, 0x49, 0x4a, 0x75, 0x9d, 0xe6, 0x11, 0x89, 0x9e, 0x34, 0x8f, 0x1c, 0x59, 0x89, 0x2e, 0x56, 0x49, 0x82, 0x29, 0x8f, 0xb3, 0x8a, 0x4f, 0x61, 0x48, 0x92, 0xdc, 0xc9, 0xd9, 0x82, 0xd9, 0x2d, 0x26, 0xa3, 0xf0, 0x16, 0x5a, 0x85, 0xf1, 0x5b, 0x1e, 0xe5, 0x1e, 0xa7, 0xdc, 0x8f, 0x1e, 0xcd, 0x7d, 0xbd, 0x41, 0xc9, 0xb3, 0xd7, 0x1b, 0xea, 0xc6, 0xa6, 0xb2, 0x5e, 0x59, 0x53, 0x38, 0x1c, 0x9d, 0x82, 0x94, 0xa9, 0xdd, 0xdb, 0x8f, 0xa6, 0x22, 0x2a, 0x1a, 0xd5, 0xf1, 0xa7, 0x20, 0x75, 0x17, 0x6b, 0xb7, 0xa3, 0x09, 0x80, 0x8a, 0xde, 0xc7, 0xd0, 0x5f, 0x82, 0x34, 0xf5, 0x17, 0x02, 0xe0, 0x1e, 0x93, 0xc7, 0x50, 0x06, 0x52, 0xd5, 0x4d, 0x85, 0x84, 0xbf, 0x0c, 0x79, 0x26, 0x55, 0xb7, 0xea, 0xb5, 0x6a, 0x4d, 0x4e, 0xcc, 0x5f, 0x82, 0x71, 0xe6, 0x04, 0xb2, 0x35, 0x02, 0x37, 0xc8, 0x63, 0xbc, 0xc9, 0x39, 0x24, 0xd1, 0xbb, 0xb3, 0xbe, 0x5c, 0x53, 0xe4, 0x44, 0x78, 0x79, 0x3d, 0xc8, 0x87, 0xcb, 0xca, 0x0f, 0x26, 0xa6, 0xfe, 0x46, 0x82, 0x5c, 0xa8, 0x4c, 0x24, 0x05, 0x8a, 0x66, 0x9a, 0xf6, 0x5d, 0x55, 0x33, 0x0d, 0xcd, 0xe3, 0x41, 0x01, 0x54, 0x54, 0x21, 0x92, 0x51, 0x17, 0xed, 0x03, 0x31, 0xfe, 0x55, 0x09, 0xe4, 0xfe, 0x12, 0xb3, 0xcf, 0x40, 0xe9, 0x43, 0x35, 0xf0, 0x15, 0x09, 0x0a, 0xd1, 0xba, 0xb2, 0xcf, 0xbc, 0x73, 0x1f, 0xaa, 0x79, 0x6f, 0x24, 0x60, 0x32, 0x52, 0x4d, 0x8e, 0x6a, 0xdd, 0xe7, 0x60, 0xda, 0x68, 0xe2, 0x8e, 0x63, 0xfb, 0xd8, 0xd2, 0xf7, 0x55, 0x13, 0xdf, 0xc1, 0x66, 0x71, 0x9e, 0x1e, 0x14, 0x4b, 0x47, 0xd7, 0xab, 0x8b, 0xf5, 0x1e, 0x6e, 0x8d, 0xc0, 0xca, 0x33, 0xf5, 0x95, 0xda, 0xfa, 0xd6, 0xe6, 0x76, 0x6d, 0xa3, 0x7a, 0x53, 0xdd, 0xd9, 0xf8, 0xa9, 0x8d, 0xcd, 0xe7, 0x37, 0x14, 0xd9, 0xe8, 0x53, 0x7b, 0x1f, 0xb7, 0xfa, 0x16, 0xc8, 0xfd, 0x46, 0xa1, 0x93, 0x30, 0xcc, 0x2c, 0x79, 0x0c, 0xcd, 0xc0, 0xd4, 0xc6, 0xa6, 0xda, 0xa8, 0xaf, 0xd4, 0xd4, 0xda, 0xb5, 0x6b, 0xb5, 0xea, 0x76, 0x83, 0x5d, 0xe0, 0x03, 0xed, 0xed, 0xe8, 0xa6, 0x7e, 0x39, 0x09, 0x33, 0x43, 0x2c, 0x41, 0x15, 0x7e, 0x77, 0x60, 0xd7, 0x99, 0x8f, 0x8d, 0x62, 0xfd, 0x22, 0x49, 0xf9, 0x5b, 0x9a, 0xeb, 0xf3, 0xab, 0xc6, 0x13, 0x40, 0xbc, 0x64, 0xf9, 0x46, 0xcb, 0xc0, 0x2e, 0x7f, 0xef, 0x60, 0x17, 0x8a, 0xa9, 0x9e, 0x9c, 0x3d, 0x79, 0x7c, 0x14, 0x90, 0x63, 0x7b, 0x86, 0x6f, 0xdc, 0xc1, 0xaa, 0x61, 0x89, 0xc7, 0x11, 0x72, 0xc1, 0x48, 0x29, 0xb2, 0xe8, 0xa9, 0x5b, 0x7e, 0xa0, 0x6d, 0xe1, 0xb6, 0xd6, 0xa7, 0x4d, 0x0e, 0xf0, 0xa4, 0x22, 0x8b, 0x9e, 0x40, 0xfb, 0x1c, 0xe4, 0x9b, 0x76, 0x97, 0x54, 0x5d, 0x4c, 0x8f, 0xe4, 0x0b, 0x49, 0xc9, 0x31, 0x59, 0xa0, 0xc2, 0xeb, 0xe9, 0xde, 0xab, 0x4c, 0x5e, 0xc9, 0x31, 0x19, 0x53, 0x39, 0x0f, 0x53, 0x5a, 0xbb, 0xed, 0x12, 0x72, 0x41, 0xc4, 0x6e, 0x08, 0x85, 0x40, 0x4c, 0x15, 0xe7, 0xae, 0x43, 0x46, 0xf8, 0x81, 0xa4, 0x64, 0xe2, 0x09, 0xd5, 0x61, 0x2f, 0x73, 0x89, 0x85, 0xac, 0x92, 0xb1, 0x44, 0xe7, 0x39, 0xc8, 0x1b, 0x9e, 0xda, 0x7b, 0x64, 0x4e, 0x9c, 0x4d, 0x2c, 0x64, 0x94, 0x9c, 0xe1, 0x05, 0x0f, 0x74, 0xf3, 0xaf, 0x25, 0xa0, 0x10, 0x7d, 0x24, 0x47, 0x2b, 0x90, 0x31, 0x6d, 0x5d, 0xa3, 0xa1, 0xc5, 0xbe, 0xd0, 0x2c, 0xc4, 0xbc, 0xab, 0x2f, 0xae, 0x71, 0x7d, 0x25, 0x40, 0xce, 0xfd, 0x83, 0x04, 0x19, 0x21, 0x46, 0x27, 0x20, 0xe5, 0x68, 0xfe, 0x1e, 0xa5, 0x4b, 0x2f, 0x27, 0x64, 0x49, 0xa1, 0x6d, 0x22, 0xf7, 0x1c, 0xcd, 0xa2, 0x21, 0xc0, 0xe5, 0xa4, 0x4d, 0xd6, 0xd5, 0xc4, 0x5a, 0x93, 0x5e, 0x3f, 0xec, 0x4e, 0x07, 0x5b, 0xbe, 0x27, 0xd6, 0x95, 0xcb, 0xab, 0x5c, 0x8c, 0x9e, 0x82, 0x69, 0xdf, 0xd5, 0x0c, 0x33, 0xa2, 0x9b, 0xa2, 0xba, 0xb2, 0xe8, 0x08, 0x94, 0xcb, 0x70, 0x4a, 0xf0, 0x36, 0xb1, 0xaf, 0xe9, 0x7b, 0xb8, 0xd9, 0x03, 0x8d, 0xd3, 0x17, 0xd8, 0x93, 0x5c, 0x61, 0x85, 0xf7, 0x0b, 0xec, 0xfc, 0xf7, 0x25, 0x98, 0x16, 0x17, 0xa6, 0x66, 0xe0, 0xac, 0x75, 0x00, 0xcd, 0xb2, 0x6c, 0x3f, 0xec, 0xae, 0xc1, 0x50, 0x1e, 0xc0, 0x2d, 0x56, 0x02, 0x90, 0x12, 0x22, 0x98, 0xeb, 0x00, 0xf4, 0x7a, 0x0e, 0x75, 0xdb, 0x19, 0xc8, 0xf1, 0x2f, 0x20, 0xf4, 0x33, 0x1a, 0xbb, 0x62, 0x03, 0x13, 0x91, 0x9b, 0x15, 0x9a, 0x85, 0xf4, 0x2e, 0x6e, 0x1b, 0x16, 0x7f, 0xd7, 0x64, 0x0d, 0xf1, 0x56, 0x9b, 0x0a, 0xde, 0x6a, 0x97, 0x6f, 0xc0, 0x8c, 0x6e, 0x77, 0xfa, 0xcd, 0x5d, 0x96, 0xfb, 0xae, 0xf9, 0xde, 0xa7, 0xa4, 0xcf, 0x42, 0xaf, 0xc4, 0xfc, 0x72, 0x22, 0xb9, 0xba, 0xb5, 0xfc, 0xd5, 0xc4, 0xdc, 0x2a, 0xc3, 0x6d, 0x89, 0x69, 0x2a, 0xb8, 0x65, 0x62, 0x9d, 0x98, 0x0e, 0x3f, 0x78, 0x1c, 0x3e, 0xd6, 0x36, 0xfc, 0xbd, 0xee, 0xee, 0xa2, 0x6e, 0x77, 0x96, 0xda, 0x76, 0xdb, 0xee, 0x7d, 0x36, 0x24, 0x2d, 0xda, 0xa0, 0xbf, 0xf8, 0xa7, 0xc3, 0x6c, 0x20, 0x9d, 0x8b, 0xfd, 0xce, 0x58, 0xde, 0x80, 0x19, 0xae, 0xac, 0xd2, 0x6f, 0x17, 0xec, 0x0a, 0x81, 0x8e, 0x7c, 0xff, 0x29, 0x7e, 0xe3, 0x4d, 0x9a, 0xab, 0x95, 0x69, 0x0e, 0x25, 0x7d, 0xec, 0x96, 0x51, 0x56, 0xe0, 0xa1, 0x08, 0x1f, 0xdb, 0x97, 0xd8, 0x8d, 0x61, 0xfc, 0x2e, 0x67, 0x9c, 0x09, 0x31, 0x36, 0x38, 0xb4, 0x5c, 0x85, 0xc9, 0xe3, 0x70, 0xfd, 0x1d, 0xe7, 0xca, 0xe3, 0x30, 0xc9, 0x2a, 0x4c, 0x51, 0x12, 0xbd, 0xeb, 0xf9, 0x76, 0x87, 0x1e, 0x7a, 0x47, 0xd3, 0xfc, 0xfd, 0x9b, 0x6c, 0xa3, 0x14, 0x08, 0xac, 0x1a, 0xa0, 0xca, 0x65, 0xa0, 0x9f, 0x6b, 0x9a, 0x58, 0x37, 0x63, 0x18, 0x5e, 0xe7, 0x86, 0x04, 0xfa, 0xe5, 0xcf, 0xc0, 0x2c, 0xf9, 0x4d, 0xcf, 0xa4, 0xb0, 0x25, 0xf1, 0xaf, 0x5d, 0xc5, 0xef, 0xbf, 0xc8, 0xf6, 0xe2, 0x4c, 0x40, 0x10, 0xb2, 0x29, 0xb4, 0x8a, 0x6d, 0xec, 0xfb, 0xd8, 0xf5, 0x54, 0xcd, 0x1c, 0x66, 0x5e, 0xe8, 0xb9, 0xa0, 0xf8, 0xc5, 0xb7, 0xa3, 0xab, 0xb8, 0xca, 0x90, 0x15, 0xd3, 0x2c, 0xef, 0xc0, 0xc9, 0x21, 0x51, 0x31, 0x02, 0xe7, 0xcb, 0x9c, 0x73, 0x76, 0x20, 0x32, 0x08, 0xed, 0x16, 0x08, 0x79, 0xb0, 0x96, 0x23, 0x70, 0xfe, 0x0e, 0xe7, 0x44, 0x1c, 0x2b, 0x96, 0x94, 0x30, 0x5e, 0x87, 0xe9, 0x3b, 0xd8, 0xdd, 0xb5, 0x3d, 0xfe, 0x44, 0x33, 0x02, 0xdd, 0x2b, 0x9c, 0x6e, 0x8a, 0x03, 0xe9, 0x9b, 0x0d, 0xe1, 0x7a, 0x16, 0x32, 0x2d, 0x4d, 0xc7, 0x23, 0x50, 0x7c, 0x89, 0x53, 0x4c, 0x10, 0x7d, 0x02, 0xad, 0x40, 0xbe, 0x6d, 0xf3, 0xb4, 0x14, 0x0f, 0x7f, 0x95, 0xc3, 0x73, 0x02, 0xc3, 0x29, 0x1c, 0xdb, 0xe9, 0x9a, 0x24, 0x67, 0xc5, 0x53, 0xfc, 0xae, 0xa0, 0x10, 0x18, 0x4e, 0x71, 0x0c, 0xb7, 0xfe, 0x9e, 0xa0, 0xf0, 0x42, 0xfe, 0x7c, 0x0e, 0x72, 0xb6, 0x65, 0xee, 0xdb, 0xd6, 0x28, 0x46, 0xfc, 0x3e, 0x67, 0x00, 0x0e, 0x21, 0x04, 0x57, 0x21, 0x3b, 0xea, 0x42, 0xfc, 0xc1, 0xdb, 0x62, 0x7b, 0x88, 0x15, 0x58, 0x85, 0x29, 0x71, 0x40, 0x19, 0xb6, 0x35, 0x02, 0xc5, 0x1f, 0x72, 0x8a, 0x42, 0x08, 0xc6, 0xa7, 0xe1, 0x63, 0xcf, 0x6f, 0xe3, 0x51, 0x48, 0x5e, 0x13, 0xd3, 0xe0, 0x10, 0xee, 0xca, 0x5d, 0x6c, 0xe9, 0x7b, 0xa3, 0x31, 0x7c, 0x45, 0xb8, 0x52, 0x60, 0x08, 0x45, 0x15, 0x26, 0x3b, 0x9a, 0xeb, 0xed, 0x69, 0xe6, 0x48, 0xcb, 0xf1, 0x47, 0x9c, 0x23, 0x1f, 0x80, 0xb8, 0x47, 0xba, 0xd6, 0x71, 0x68, 0xbe, 0x2a, 0x3c, 0x12, 0x82, 0xf1, 0xad, 0xe7, 0xf9, 0xf4, 0x3d, 0xeb, 0x38, 0x6c, 0x5f, 0x13, 0x5b, 0x8f, 0x61, 0xd7, 0xc3, 0x8c, 0x57, 0x21, 0xeb, 0x19, 0xf7, 0x46, 0xa2, 0xf9, 0x63, 0xb1, 0xd2, 0x14, 0x40, 0xc0, 0x37, 0xe1, 0xd4, 0xd0, 0x34, 0x31, 0x02, 0xd9, 0x9f, 0x70, 0xb2, 0x13, 0x43, 0x52, 0x05, 0x3f, 0x12, 0x8e, 0x4b, 0xf9, 0xa7, 0xe2, 0x48, 0xc0, 0x7d, 0x5c, 0x5b, 0xe4, 0xa2, 0xe0, 0x69, 0xad, 0xe3, 0x79, 0xed, 0xcf, 0x84, 0xd7, 0x18, 0x36, 0xe2, 0xb5, 0x6d, 0x38, 0xc1, 0x19, 0x8f, 0xb7, 0xae, 0x5f, 0x17, 0x07, 0x2b, 0x43, 0xef, 0x44, 0x57, 0xf7, 0xa7, 0x61, 0x2e, 0x70, 0xa7, 0xa8, 0x48, 0x3d, 0xb5, 0xa3, 0x39, 0x23, 0x30, 0x7f, 0x83, 0x33, 0x8b, 0x13, 0x3f, 0x28, 0x69, 0xbd, 0x75, 0xcd, 0x21, 0xe4, 0x37, 0xa0, 0x28, 0xc8, 0xbb, 0x96, 0x8b, 0x75, 0xbb, 0x6d, 0x19, 0xf7, 0x70, 0x73, 0x04, 0xea, 0x3f, 0xef, 0x5b, 0xaa, 0x9d, 0x10, 0x9c, 0x30, 0xd7, 0x41, 0x0e, 0x6a, 0x15, 0xd5, 0xe8, 0x38, 0xb6, 0xeb, 0xc7, 0x30, 0x7e, 0x53, 0xac, 0x54, 0x80, 0xab, 0x53, 0x58, 0xb9, 0x06, 0x05, 0xda, 0x1c, 0x35, 0x24, 0xff, 0x82, 0x13, 0x4d, 0xf6, 0x50, 0xfc, 0xe0, 0xd0, 0xed, 0x8e, 0xa3, 0xb9, 0xa3, 0x9c, 0x7f, 0x7f, 0x29, 0x0e, 0x0e, 0x0e, 0xe1, 0x07, 0x87, 0xbf, 0xef, 0x60, 0x92, 0xed, 0x47, 0x60, 0xf8, 0x96, 0x38, 0x38, 0x04, 0x86, 0x53, 0x88, 0x82, 0x61, 0x04, 0x8a, 0xbf, 0x12, 0x14, 0x02, 0x43, 0x28, 0x3e, 0xdd, 0x4b, 0xb4, 0x2e, 0x6e, 0x1b, 0x9e, 0xef, 0xb2, 0x3a, 0xf8, 0x68, 0xaa, 0x6f, 0xbf, 0x1d, 0x2d, 0xc2, 0x94, 0x10, 0xb4, 0x7c, 0x1d, 0xa6, 0xfa, 0x4a, 0x0c, 0x14, 0xf7, 0xbf, 0x1f, 0xc5, 0x9f, 0x7d, 0x97, 0x1f, 0x46, 0xd1, 0x0a, 0xa3, 0xbc, 0x46, 0xd6, 0x3d, 0x5a, 0x07, 0xc4, 0x93, 0xbd, 0xf8, 0x6e, 0xb0, 0xf4, 0x91, 0x32, 0xa0, 0x7c, 0x0d, 0x26, 0x23, 0x35, 0x40, 0x3c, 0xd5, 0xe7, 0x39, 0x55, 0x3e, 0x5c, 0x02, 0x94, 0x2f, 0x41, 0x8a, 0xe4, 0xf3, 0x78, 0xf8, 0xcf, 0x71, 0x38, 0x55, 0x2f, 0x7f, 0x02, 0x32, 0x22, 0x8f, 0xc7, 0x43, 0x7f, 0x9e, 0x43, 0x03, 0x08, 0x81, 0x8b, 0x1c, 0x1e, 0x0f, 0xff, 0x05, 0x01, 0x17, 0x10, 0x02, 0x1f, 0xdd, 0x85, 0xdf, 0xf9, 0xa5, 0x14, 0x3f, 0x87, 0x85, 0xef, 0xae, 0xc2, 0x04, 0x4f, 0xde, 0xf1, 0xe8, 0x97, 0xf8, 0xe0, 0x02, 0x51, 0x7e, 0x06, 0xd2, 0x23, 0x3a, 0xfc, 0x97, 0x39, 0x94, 0xe9, 0x97, 0xab, 0x90, 0x0b, 0x25, 0xec, 0x78, 0xf8, 0xaf, 0x70, 0x78, 0x18, 0x45, 0x4c, 0xe7, 0x09, 0x3b, 0x9e, 0xe0, 0x57, 0x85, 0xe9, 0x1c, 0x41, 0xdc, 0x26, 0x72, 0x75, 0x3c, 0xfa, 0xd7, 0x84, 0xd7, 0x05, 0xa4, 0xfc, 0x1c, 0x64, 0x83, 0xf3, 0x37, 0x1e, 0xff, 0xeb, 0x1c, 0xdf, 0xc3, 0x10, 0x0f, 0x84, 0xce, 0xff, 0x78, 0x8a, 0xdf, 0x10, 0x1e, 0x08, 0xa1, 0xc8, 0x36, 0xea, 0xcf, 0xe9, 0xf1, 0x4c, 0xbf, 0x29, 0xb6, 0x51, 0x5f, 0x4a, 0x27, 0xab, 0x49, 0x8f, 0xc1, 0x78, 0x8a, 0xdf, 0x12, 0xab, 0x49, 0xf5, 0x89, 0x19, 0xfd, 0x49, 0x32, 0x9e, 0xe3, 0xb7, 0x85, 0x19, 0x7d, 0x39, 0xb2, 0xbc, 0x05, 0x68, 0x30, 0x41, 0xc6, 0xf3, 0x7d, 0x81, 0xf3, 0x4d, 0x0f, 0xe4, 0xc7, 0xf2, 0xf3, 0x70, 0x62, 0x78, 0x72, 0x8c, 0x67, 0xfd, 0xe2, 0xbb, 0x7d, 0xd7, 0x99, 0x70, 0x6e, 0x2c, 0x6f, 0xf7, 0x4e, 0xd9, 0x70, 0x62, 0x8c, 0xa7, 0x7d, 0xf9, 0xdd, 0xe8, 0x41, 0x1b, 0xce, 0x8b, 0xe5, 0x0a, 0x40, 0x2f, 0x27, 0xc5, 0x73, 0xbd, 0xc2, 0xb9, 0x42, 0x20, 0xb2, 0x35, 0x78, 0x4a, 0x8a, 0xc7, 0x7f, 0x49, 0x6c, 0x0d, 0x8e, 0x20, 0x5b, 0x43, 0x64, 0xa3, 0x78, 0xf4, 0xab, 0x62, 0x6b, 0x08, 0x48, 0xf9, 0x2a, 0x64, 0xac, 0xae, 0x69, 0x92, 0xd8, 0x42, 0x47, 0xff, 0x3b, 0x53, 0xf1, 0xdf, 0xdf, 0xe3, 0x60, 0x01, 0x28, 0x5f, 0x82, 0x34, 0xee, 0xec, 0xe2, 0x66, 0x1c, 0xf2, 0x3f, 0xde, 0x13, 0xe7, 0x09, 0xd1, 0x2e, 0x3f, 0x07, 0xc0, 0x2e, 0xd3, 0xf4, 0x2b, 0x51, 0x0c, 0xf6, 0x3f, 0xdf, 0xe3, 0xff, 0x29, 0xd1, 0x83, 0xf4, 0x08, 0xd8, 0xff, 0x5d, 0x1c, 0x4d, 0xf0, 0x76, 0x94, 0x80, 0x5e, 0xc0, 0x9f, 0x85, 0x89, 0x5b, 0x9e, 0x6d, 0xf9, 0x5a, 0x3b, 0x0e, 0xfd, 0x5f, 0x1c, 0x2d, 0xf4, 0x89, 0xc3, 0x3a, 0xb6, 0x8b, 0x7d, 0xad, 0xed, 0xc5, 0x61, 0xff, 0x9b, 0x63, 0x03, 0x00, 0x01, 0xeb, 0x9a, 0xe7, 0x8f, 0x32, 0xef, 0xff, 0x11, 0x60, 0x01, 0x20, 0x46, 0x93, 0xdf, 0xb7, 0xf1, 0x7e, 0x1c, 0xf6, 0x1d, 0x61, 0x34, 0xd7, 0x2f, 0x7f, 0x02, 0xb2, 0xe4, 0x27, 0xfb, 0xef, 0xa1, 0x18, 0xf0, 0xff, 0x72, 0x70, 0x0f, 0x41, 0x46, 0xf6, 0xfc, 0xa6, 0x6f, 0xc4, 0x3b, 0xfb, 0xff, 0xf8, 0x4a, 0x0b, 0xfd, 0x72, 0x05, 0x72, 0x9e, 0xdf, 0x6c, 0x76, 0x79, 0x45, 0x13, 0x03, 0xff, 0xc1, 0x7b, 0xc1, 0x25, 0x37, 0xc0, 0x2c, 0x9f, 0x1b, 0xfe, 0x58, 0x07, 0xab, 0xf6, 0xaa, 0xcd, 0x9e, 0xe9, 0xe0, 0xa5, 0x34, 0x9c, 0xd6, 0xed, 0xce, 0xae, 0xed, 0x2d, 0xed, 0xda, 0xfe, 0xde, 0x52, 0x60, 0xba, 0x78, 0x63, 0x0b, 0x04, 0x73, 0xc7, 0x7b, 0x9d, 0x9b, 0xff, 0xdb, 0x24, 0x64, 0xaa, 0x9a, 0xe7, 0x6b, 0x77, 0xb5, 0x7d, 0xe4, 0xc0, 0x0c, 0xf9, 0xbd, 0xae, 0x39, 0xf4, 0xad, 0x87, 0x6f, 0x2e, 0xfe, 0xfa, 0xf9, 0xd1, 0xc5, 0xde, 0xa8, 0x02, 0xb1, 0x38, 0x44, 0x9d, 0x7e, 0x35, 0x5e, 0x96, 0x5f, 0xff, 0xe7, 0x33, 0x63, 0xbf, 0xf8, 0x2f, 0x67, 0x32, 0xeb, 0xfb, 0xcf, 0x1b, 0xa6, 0x67, 0x5b, 0xca, 0x30, 0x6a, 0xf4, 0x79, 0x09, 0x4e, 0x0f, 0x91, 0x6f, 0xf0, 0x1d, 0xc8, 0xbf, 0x21, 0x5c, 0x1c, 0x71, 0x68, 0x01, 0x63, 0x26, 0xe4, 0x23, 0xc3, 0x1f, 0x35, 0xcc, 0xdc, 0x4d, 0x28, 0x1e, 0x36, 0x13, 0x24, 0x43, 0xf2, 0x36, 0xde, 0xe7, 0xff, 0x1d, 0x4b, 0x7e, 0xa2, 0xf3, 0xbd, 0xff, 0x6f, 0x93, 0x16, 0x72, 0x17, 0xa6, 0x43, 0xd6, 0xf1, 0xc1, 0x58, 0x7f, 0x39, 0x71, 0x45, 0x9a, 0xd3, 0xe0, 0x6c, 0x9c, 0xa5, 0x3f, 0xe6, 0x10, 0xf3, 0x25, 0x18, 0x67, 0x42, 0x34, 0x0b, 0xe9, 0xba, 0xe5, 0x5f, 0xbe, 0x48, 0xa9, 0x92, 0x0a, 0x6b, 0x2c, 0xaf, 0xbd, 0xfe, 0xa0, 0x34, 0xf6, 0xbd, 0x07, 0xa5, 0xb1, 0x7f, 0x7c, 0x50, 0x1a, 0x7b, 0xe3, 0x41, 0x49, 0x7a, 0xeb, 0x41, 0x49, 0x7a, 0xe7, 0x41, 0x49, 0xfa, 0xe1, 0x83, 0x92, 0x74, 0xff, 0xa0, 0x24, 0x7d, 0xe5, 0xa0, 0x24, 0x7d, 0xfd, 0xa0, 0x24, 0x7d, 0xfb, 0xa0, 0x24, 0x7d, 0xe7, 0xa0, 0x24, 0xbd, 0x7e, 0x50, 0x92, 0xbe, 0x77, 0x50, 0x92, 0xde, 0x38, 0x28, 0x49, 0x6f, 0x1d, 0x94, 0xc6, 0xde, 0x39, 0x28, 0x49, 0x3f, 0x3c, 0x28, 0x8d, 0xdd, 0xff, 0xd7, 0xd2, 0xd8, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x0c, 0xf2, 0x2c, 0xad, 0x30, 0x32, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Castaway) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Castaway") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Castaway but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Castaway but is not nil && this == nil") } if len(this.CastMapValueMessage) != len(that1.CastMapValueMessage) { return fmt.Errorf("CastMapValueMessage this(%v) Not Equal that(%v)", len(this.CastMapValueMessage), len(that1.CastMapValueMessage)) } for i := range this.CastMapValueMessage { a := (Wilson)(this.CastMapValueMessage[i]) b := (Wilson)(that1.CastMapValueMessage[i]) if !(&a).Equal(&b) { return fmt.Errorf("CastMapValueMessage this[%v](%v) Not Equal that[%v](%v)", i, this.CastMapValueMessage[i], i, that1.CastMapValueMessage[i]) } } if len(this.CastMapValueMessageNullable) != len(that1.CastMapValueMessageNullable) { return fmt.Errorf("CastMapValueMessageNullable this(%v) Not Equal that(%v)", len(this.CastMapValueMessageNullable), len(that1.CastMapValueMessageNullable)) } for i := range this.CastMapValueMessageNullable { a := (*Wilson)(this.CastMapValueMessageNullable[i]) b := (*Wilson)(that1.CastMapValueMessageNullable[i]) if !a.Equal(b) { return fmt.Errorf("CastMapValueMessageNullable this[%v](%v) Not Equal that[%v](%v)", i, this.CastMapValueMessageNullable[i], i, that1.CastMapValueMessageNullable[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Castaway) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.CastMapValueMessage) != len(that1.CastMapValueMessage) { return false } for i := range this.CastMapValueMessage { a := (Wilson)(this.CastMapValueMessage[i]) b := (Wilson)(that1.CastMapValueMessage[i]) if !(&a).Equal(&b) { return false } } if len(this.CastMapValueMessageNullable) != len(that1.CastMapValueMessageNullable) { return false } for i := range this.CastMapValueMessageNullable { a := (*Wilson)(this.CastMapValueMessageNullable[i]) b := (*Wilson)(that1.CastMapValueMessageNullable[i]) if !a.Equal(b) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Wilson) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Wilson") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Wilson but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Wilson but is not nil && this == nil") } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", *this.Int64, *that1.Int64) } } else if this.Int64 != nil { return fmt.Errorf("this.Int64 == nil && that.Int64 != nil") } else if that1.Int64 != nil { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", this.Int64, that1.Int64) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Wilson) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return false } } else if this.Int64 != nil { return false } else if that1.Int64 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type CastawayFace interface { Proto() github_com_gogo_protobuf_proto.Message GetCastMapValueMessage() map[int32]MyWilson GetCastMapValueMessageNullable() map[int32]*MyWilson } func (this *Castaway) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Castaway) TestProto() github_com_gogo_protobuf_proto.Message { return NewCastawayFromFace(this) } func (this *Castaway) GetCastMapValueMessage() map[int32]MyWilson { return this.CastMapValueMessage } func (this *Castaway) GetCastMapValueMessageNullable() map[int32]*MyWilson { return this.CastMapValueMessageNullable } func NewCastawayFromFace(that CastawayFace) *Castaway { this := &Castaway{} this.CastMapValueMessage = that.GetCastMapValueMessage() this.CastMapValueMessageNullable = that.GetCastMapValueMessageNullable() return this } type WilsonFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt64() *int64 } func (this *Wilson) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Wilson) TestProto() github_com_gogo_protobuf_proto.Message { return NewWilsonFromFace(this) } func (this *Wilson) GetInt64() *int64 { return this.Int64 } func NewWilsonFromFace(that WilsonFace) *Wilson { this := &Wilson{} this.Int64 = that.GetInt64() return this } func (this *Castaway) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&castvalue.Castaway{") keysForCastMapValueMessage := make([]int32, 0, len(this.CastMapValueMessage)) for k := range this.CastMapValueMessage { keysForCastMapValueMessage = append(keysForCastMapValueMessage, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessage) mapStringForCastMapValueMessage := "map[int32]MyWilson{" for _, k := range keysForCastMapValueMessage { mapStringForCastMapValueMessage += fmt.Sprintf("%#v: %#v,", k, this.CastMapValueMessage[k]) } mapStringForCastMapValueMessage += "}" if this.CastMapValueMessage != nil { s = append(s, "CastMapValueMessage: "+mapStringForCastMapValueMessage+",\n") } keysForCastMapValueMessageNullable := make([]int32, 0, len(this.CastMapValueMessageNullable)) for k := range this.CastMapValueMessageNullable { keysForCastMapValueMessageNullable = append(keysForCastMapValueMessageNullable, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessageNullable) mapStringForCastMapValueMessageNullable := "map[int32]*MyWilson{" for _, k := range keysForCastMapValueMessageNullable { mapStringForCastMapValueMessageNullable += fmt.Sprintf("%#v: %#v,", k, this.CastMapValueMessageNullable[k]) } mapStringForCastMapValueMessageNullable += "}" if this.CastMapValueMessageNullable != nil { s = append(s, "CastMapValueMessageNullable: "+mapStringForCastMapValueMessageNullable+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Wilson) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&castvalue.Wilson{") if this.Int64 != nil { s = append(s, "Int64: "+valueToGoStringCastvalue(this.Int64, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringCastvalue(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Castaway) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Castaway) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.CastMapValueMessage) > 0 { for k := range m.CastMapValueMessage { dAtA[i] = 0xa i++ v := m.CastMapValueMessage[k] msgSize := 0 if ((*Wilson)(&v)) != nil { msgSize = ((*Wilson)(&v)).Size() msgSize += 1 + sovCastvalue(uint64(msgSize)) } mapSize := 1 + sovCastvalue(uint64(k)) + msgSize i = encodeVarintCastvalue(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintCastvalue(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintCastvalue(dAtA, i, uint64(((*Wilson)(&v)).Size())) n1, err := ((*Wilson)(&v)).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } } if len(m.CastMapValueMessageNullable) > 0 { for k := range m.CastMapValueMessageNullable { dAtA[i] = 0x12 i++ v := m.CastMapValueMessageNullable[k] msgSize := 0 if ((*Wilson)(v)) != nil { msgSize = ((*Wilson)(v)).Size() msgSize += 1 + sovCastvalue(uint64(msgSize)) } mapSize := 1 + sovCastvalue(uint64(k)) + msgSize i = encodeVarintCastvalue(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintCastvalue(dAtA, i, uint64(k)) if ((*Wilson)(v)) != nil { dAtA[i] = 0x12 i++ i = encodeVarintCastvalue(dAtA, i, uint64(((*Wilson)(v)).Size())) n2, err := ((*Wilson)(v)).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Wilson) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Wilson) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Int64 != nil { dAtA[i] = 0x8 i++ i = encodeVarintCastvalue(dAtA, i, uint64(*m.Int64)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintCastvalue(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedCastaway(r randyCastvalue, easy bool) *Castaway { this := &Castaway{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.CastMapValueMessage = make(map[int32]MyWilson) for i := 0; i < v1; i++ { this.CastMapValueMessage[int32(r.Int31())] = (MyWilson)(*NewPopulatedWilson(r, easy)) } } if r.Intn(10) != 0 { v2 := r.Intn(10) this.CastMapValueMessageNullable = make(map[int32]*MyWilson) for i := 0; i < v2; i++ { this.CastMapValueMessageNullable[int32(r.Int31())] = (*MyWilson)(NewPopulatedWilson(r, easy)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCastvalue(r, 3) } return this } func NewPopulatedWilson(r randyCastvalue, easy bool) *Wilson { this := &Wilson{} if r.Intn(10) != 0 { v3 := int64(r.Int63()) if r.Intn(2) == 0 { v3 *= -1 } this.Int64 = &v3 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCastvalue(r, 2) } return this } type randyCastvalue interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneCastvalue(r randyCastvalue) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringCastvalue(r randyCastvalue) string { v4 := r.Intn(100) tmps := make([]rune, v4) for i := 0; i < v4; i++ { tmps[i] = randUTF8RuneCastvalue(r) } return string(tmps) } func randUnrecognizedCastvalue(r randyCastvalue, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldCastvalue(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldCastvalue(dAtA []byte, r randyCastvalue, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) v5 := r.Int63() if r.Intn(2) == 0 { v5 *= -1 } dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(v5)) case 1: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateCastvalue(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Castaway) Size() (n int) { var l int _ = l if len(m.CastMapValueMessage) > 0 { for k, v := range m.CastMapValueMessage { _ = k _ = v l = ((*Wilson)(&v)).Size() mapEntrySize := 1 + sovCastvalue(uint64(k)) + 1 + l + sovCastvalue(uint64(l)) n += mapEntrySize + 1 + sovCastvalue(uint64(mapEntrySize)) } } if len(m.CastMapValueMessageNullable) > 0 { for k, v := range m.CastMapValueMessageNullable { _ = k _ = v l = 0 if v != nil { l = ((*Wilson)(v)).Size() l += 1 + sovCastvalue(uint64(l)) } mapEntrySize := 1 + sovCastvalue(uint64(k)) + l n += mapEntrySize + 1 + sovCastvalue(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Wilson) Size() (n int) { var l int _ = l if m.Int64 != nil { n += 1 + sovCastvalue(uint64(*m.Int64)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovCastvalue(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozCastvalue(x uint64) (n int) { return sovCastvalue(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Castaway) String() string { if this == nil { return "nil" } keysForCastMapValueMessage := make([]int32, 0, len(this.CastMapValueMessage)) for k := range this.CastMapValueMessage { keysForCastMapValueMessage = append(keysForCastMapValueMessage, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessage) mapStringForCastMapValueMessage := "map[int32]MyWilson{" for _, k := range keysForCastMapValueMessage { mapStringForCastMapValueMessage += fmt.Sprintf("%v: %v,", k, this.CastMapValueMessage[k]) } mapStringForCastMapValueMessage += "}" keysForCastMapValueMessageNullable := make([]int32, 0, len(this.CastMapValueMessageNullable)) for k := range this.CastMapValueMessageNullable { keysForCastMapValueMessageNullable = append(keysForCastMapValueMessageNullable, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessageNullable) mapStringForCastMapValueMessageNullable := "map[int32]*MyWilson{" for _, k := range keysForCastMapValueMessageNullable { mapStringForCastMapValueMessageNullable += fmt.Sprintf("%v: %v,", k, this.CastMapValueMessageNullable[k]) } mapStringForCastMapValueMessageNullable += "}" s := strings.Join([]string{`&Castaway{`, `CastMapValueMessage:` + mapStringForCastMapValueMessage + `,`, `CastMapValueMessageNullable:` + mapStringForCastMapValueMessageNullable + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Wilson) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Wilson{`, `Int64:` + valueToStringCastvalue(this.Int64) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringCastvalue(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Castaway) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Castaway: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Castaway: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CastMapValueMessage", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCastvalue } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.CastMapValueMessage == nil { m.CastMapValueMessage = make(map[int32]MyWilson) } var mapkey int32 mapvalue := &Wilson{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthCastvalue } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthCastvalue } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Wilson{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipCastvalue(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCastvalue } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.CastMapValueMessage[mapkey] = ((MyWilson)(*mapvalue)) iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CastMapValueMessageNullable", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCastvalue } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.CastMapValueMessageNullable == nil { m.CastMapValueMessageNullable = make(map[int32]*MyWilson) } var mapkey int32 var mapvalue *Wilson for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthCastvalue } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthCastvalue } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Wilson{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipCastvalue(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCastvalue } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.CastMapValueMessageNullable[mapkey] = ((*MyWilson)(mapvalue)) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipCastvalue(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCastvalue } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Wilson) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Wilson: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Wilson: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int64", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Int64 = &v default: iNdEx = preIndex skippy, err := skipCastvalue(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCastvalue } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipCastvalue(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCastvalue } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCastvalue } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCastvalue } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthCastvalue } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCastvalue } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipCastvalue(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthCastvalue = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowCastvalue = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/both/castvalue.proto", fileDescriptorCastvalue) } var fileDescriptorCastvalue = []byte{ // 354 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x8f, 0xbd, 0x4f, 0x2a, 0x41, 0x14, 0xc5, 0xf7, 0xb2, 0xe1, 0x85, 0x37, 0xbc, 0x82, 0xb7, 0x5a, 0x6c, 0x20, 0xb9, 0x6c, 0x68, 0xa4, 0xd0, 0xdd, 0x84, 0x10, 0x63, 0x2c, 0x31, 0x16, 0x26, 0x62, 0x41, 0xa1, 0xb1, 0x9c, 0x25, 0xeb, 0x42, 0x5c, 0x18, 0xc2, 0xce, 0x6a, 0xb6, 0xa3, 0xb0, 0xf2, 0x2f, 0xb1, 0xb4, 0xb4, 0xd4, 0x8e, 0x92, 0xd2, 0x4a, 0x99, 0xb1, 0xa1, 0xa4, 0xa4, 0x34, 0xcc, 0x8a, 0x1f, 0x09, 0x7e, 0x24, 0x76, 0xf7, 0x9e, 0xb9, 0xe7, 0xfc, 0xce, 0x90, 0x42, 0x93, 0x75, 0x5c, 0x16, 0x3a, 0x2e, 0xe3, 0x2d, 0xa7, 0x49, 0x43, 0x7e, 0x46, 0x83, 0xc8, 0xb3, 0x7b, 0x7d, 0xc6, 0x99, 0xf1, 0xf7, 0x55, 0xc8, 0x6f, 0xf8, 0x6d, 0xde, 0x8a, 0x5c, 0xbb, 0xc9, 0x3a, 0x8e, 0xcf, 0x7c, 0xe6, 0xa8, 0x0b, 0x37, 0x3a, 0x51, 0x9b, 0x5a, 0xd4, 0x94, 0x38, 0x4b, 0x77, 0x3a, 0xc9, 0xec, 0xd0, 0x90, 0xd3, 0x73, 0x1a, 0x1b, 0x3d, 0xb2, 0x32, 0x9f, 0xeb, 0xb4, 0x77, 0x38, 0xcf, 0xaa, 0x7b, 0x61, 0x48, 0x7d, 0xcf, 0x04, 0x4b, 0x2f, 0x67, 0x2b, 0xeb, 0xf6, 0x1b, 0x75, 0xe1, 0xb0, 0x97, 0x9c, 0xef, 0x76, 0x79, 0x3f, 0xae, 0xe5, 0x86, 0x0f, 0x45, 0xed, 0xf2, 0xb1, 0x98, 0xa9, 0xc7, 0x47, 0xed, 0x20, 0x64, 0xdd, 0xc6, 0xb2, 0x68, 0xe3, 0x02, 0x48, 0x61, 0x89, 0x7e, 0x10, 0x05, 0x01, 0x75, 0x03, 0xcf, 0x4c, 0x29, 0x74, 0xf5, 0x87, 0xe8, 0x85, 0x2d, 0xa9, 0xf0, 0xef, 0x03, 0xfe, 0x2b, 0x4c, 0xfe, 0x98, 0x98, 0x9f, 0xfd, 0xc4, 0xc8, 0x11, 0xfd, 0xd4, 0x8b, 0x4d, 0xb0, 0xa0, 0x9c, 0x6e, 0xcc, 0x47, 0x63, 0x8d, 0xa4, 0x55, 0x17, 0x33, 0x65, 0x41, 0x39, 0x5b, 0xf9, 0xff, 0xae, 0xdd, 0x0b, 0x2c, 0x79, 0xdf, 0x4e, 0x6d, 0x41, 0x9e, 0x12, 0xeb, 0xbb, 0xa6, 0xbf, 0x44, 0x94, 0x90, 0xfc, 0x49, 0x44, 0x63, 0x95, 0xa4, 0xf7, 0xba, 0x7c, 0xb3, 0xaa, 0xa2, 0xf4, 0x46, 0xb2, 0xd4, 0xf6, 0x87, 0x02, 0xb5, 0x91, 0x40, 0xed, 0x5e, 0xa0, 0x36, 0x16, 0x08, 0x13, 0x81, 0x30, 0x15, 0x08, 0x33, 0x81, 0x30, 0x90, 0x08, 0x57, 0x12, 0xe1, 0x5a, 0x22, 0xdc, 0x48, 0x84, 0x5b, 0x89, 0x30, 0x94, 0x08, 0x23, 0x89, 0x30, 0x96, 0x08, 0x13, 0x89, 0xda, 0x54, 0x22, 0xcc, 0x24, 0x6a, 0x83, 0x27, 0xd4, 0x9e, 0x03, 0x00, 0x00, 0xff, 0xff, 0xd3, 0xe0, 0x74, 0x89, 0x89, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/castvalue/combos/both/castvalue.proto000066400000000000000000000051321317075173200256060ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 castvalue; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Castaway { map CastMapValueMessage = 1 [(gogoproto.castvalue) = "MyWilson", (gogoproto.nullable) = false]; map CastMapValueMessageNullable = 2 [(gogoproto.castvalue) = "MyWilson"]; } message Wilson { optional int64 Int64 = 1; } golang-gogoprotobuf-0.5/test/castvalue/combos/both/castvaluepb_test.go000066400000000000000000000350241317075173200264340ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/castvalue.proto /* Package castvalue is a generated protocol buffer package. It is generated from these files: combos/both/castvalue.proto It has these top-level messages: Castaway Wilson */ package castvalue import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestCastawayProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCastawayMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCastawayProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCastawayProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastaway(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Castaway{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestWilsonProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestWilsonMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkWilsonProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkWilsonProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedWilson(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Wilson{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCastawayJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestWilsonJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCastawayProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastawayProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastvalueDescription(t *testing.T) { CastvalueDescription() } func TestCastawayVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestWilsonVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCastawayFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestWilsonFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCastawayGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestWilsonGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCastawaySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCastawaySize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestWilsonSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkWilsonSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCastawayStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestWilsonStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/castvalue/combos/both/mytypes.go000066400000000000000000000027201317075173200245730ustar00rootroot00000000000000// 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. package castvalue type MyWilson Wilson golang-gogoprotobuf-0.5/test/castvalue/combos/marshaler/000077500000000000000000000000001317075173200235535ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/castvalue/combos/marshaler/castvalue.pb.go000066400000000000000000001323111317075173200264720ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/castvalue.proto /* Package castvalue is a generated protocol buffer package. It is generated from these files: combos/marshaler/castvalue.proto It has these top-level messages: Castaway Wilson */ package castvalue import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Castaway struct { CastMapValueMessage map[int32]MyWilson `protobuf:"bytes,1,rep,name=CastMapValueMessage,castvalue=MyWilson,castvaluetype=castvalue.Wilson" json:"CastMapValueMessage" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` CastMapValueMessageNullable map[int32]*MyWilson `protobuf:"bytes,2,rep,name=CastMapValueMessageNullable,castvalue=MyWilson,castvaluetype=castvalue.Wilson" json:"CastMapValueMessageNullable,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *Castaway) Reset() { *m = Castaway{} } func (*Castaway) ProtoMessage() {} func (*Castaway) Descriptor() ([]byte, []int) { return fileDescriptorCastvalue, []int{0} } type Wilson struct { Int64 *int64 `protobuf:"varint,1,opt,name=Int64" json:"Int64,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Wilson) Reset() { *m = Wilson{} } func (*Wilson) ProtoMessage() {} func (*Wilson) Descriptor() ([]byte, []int) { return fileDescriptorCastvalue, []int{1} } func init() { proto.RegisterType((*Castaway)(nil), "castvalue.Castaway") proto.RegisterType((*Wilson)(nil), "castvalue.Wilson") } func (this *Castaway) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CastvalueDescription() } func (this *Wilson) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CastvalueDescription() } func CastvalueDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3867 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x24, 0xd7, 0x55, 0x56, 0xcf, 0x8f, 0x34, 0x73, 0x66, 0x34, 0x6a, 0x5d, 0xc9, 0xbb, 0xb3, 0x72, 0x3c, 0xab, 0x95, 0x7f, 0x56, 0xb6, 0x13, 0x29, 0xb5, 0xde, 0x5d, 0xaf, 0x67, 0x49, 0xcc, 0x68, 0x34, 0xab, 0xcc, 0xa2, 0xbf, 0xf4, 0x48, 0xf1, 0x6e, 0x78, 0xe8, 0x6a, 0xf5, 0xdc, 0x19, 0xf5, 0x6e, 0x4f, 0x77, 0xa7, 0xbb, 0x67, 0xd7, 0xda, 0xe2, 0x61, 0x29, 0x07, 0xa8, 0x40, 0x11, 0x7e, 0xab, 0x48, 0x8c, 0x63, 0x20, 0x55, 0xe0, 0x90, 0xf0, 0x93, 0x10, 0x08, 0x81, 0xa7, 0xf0, 0x10, 0xf0, 0x13, 0x95, 0xbc, 0xf1, 0x40, 0x81, 0x57, 0xb8, 0x0a, 0x03, 0x06, 0x0c, 0xf1, 0x43, 0xaa, 0xfc, 0x42, 0xdd, 0xbf, 0x9e, 0xee, 0x99, 0x91, 0x7a, 0x14, 0xca, 0xce, 0x93, 0xe6, 0x9e, 0x7b, 0xbe, 0xef, 0x9e, 0x7b, 0xee, 0xb9, 0xf7, 0x9c, 0x7b, 0x5b, 0xf0, 0xb5, 0x2b, 0x30, 0xdf, 0xb6, 0xed, 0xb6, 0x89, 0x97, 0x1d, 0xd7, 0xf6, 0xed, 0xbd, 0x6e, 0x6b, 0xb9, 0x89, 0x3d, 0xdd, 0x35, 0x1c, 0xdf, 0x76, 0x97, 0xa8, 0x0c, 0x4d, 0x31, 0x8d, 0x25, 0xa1, 0xb1, 0xb0, 0x01, 0xd3, 0xd7, 0x0c, 0x13, 0xaf, 0x06, 0x8a, 0x0d, 0xec, 0xa3, 0x2b, 0x90, 0x6a, 0x19, 0x26, 0x2e, 0x4a, 0xf3, 0xc9, 0xc5, 0xdc, 0x85, 0xc7, 0x96, 0xfa, 0x40, 0x4b, 0x51, 0xc4, 0x36, 0x11, 0x2b, 0x14, 0xb1, 0xf0, 0x66, 0x0a, 0x66, 0x86, 0xf4, 0x22, 0x04, 0x29, 0x4b, 0xeb, 0x10, 0x46, 0x69, 0x31, 0xab, 0xd0, 0xdf, 0xa8, 0x08, 0x13, 0x8e, 0xa6, 0xdf, 0xd6, 0xda, 0xb8, 0x98, 0xa0, 0x62, 0xd1, 0x44, 0x25, 0x80, 0x26, 0x76, 0xb0, 0xd5, 0xc4, 0x96, 0x7e, 0x50, 0x4c, 0xce, 0x27, 0x17, 0xb3, 0x4a, 0x48, 0x82, 0x9e, 0x86, 0x69, 0xa7, 0xbb, 0x67, 0x1a, 0xba, 0x1a, 0x52, 0x83, 0xf9, 0xe4, 0x62, 0x5a, 0x91, 0x59, 0xc7, 0x6a, 0x4f, 0xf9, 0x3c, 0x4c, 0xdd, 0xc5, 0xda, 0xed, 0xb0, 0x6a, 0x8e, 0xaa, 0x16, 0x88, 0x38, 0xa4, 0x58, 0x85, 0x7c, 0x07, 0x7b, 0x9e, 0xd6, 0xc6, 0xaa, 0x7f, 0xe0, 0xe0, 0x62, 0x8a, 0xce, 0x7e, 0x7e, 0x60, 0xf6, 0xfd, 0x33, 0xcf, 0x71, 0xd4, 0xce, 0x81, 0x83, 0x51, 0x05, 0xb2, 0xd8, 0xea, 0x76, 0x18, 0x43, 0xfa, 0x08, 0xff, 0xd5, 0xac, 0x6e, 0xa7, 0x9f, 0x25, 0x43, 0x60, 0x9c, 0x62, 0xc2, 0xc3, 0xee, 0x1d, 0x43, 0xc7, 0xc5, 0x71, 0x4a, 0x70, 0x7e, 0x80, 0xa0, 0xc1, 0xfa, 0xfb, 0x39, 0x04, 0x0e, 0x55, 0x21, 0x8b, 0x5f, 0xf4, 0xb1, 0xe5, 0x19, 0xb6, 0x55, 0x9c, 0xa0, 0x24, 0x8f, 0x0f, 0x59, 0x45, 0x6c, 0x36, 0xfb, 0x29, 0x7a, 0x38, 0x74, 0x19, 0x26, 0x6c, 0xc7, 0x37, 0x6c, 0xcb, 0x2b, 0x66, 0xe6, 0xa5, 0xc5, 0xdc, 0x85, 0x0f, 0x0d, 0x0d, 0x84, 0x2d, 0xa6, 0xa3, 0x08, 0x65, 0x54, 0x07, 0xd9, 0xb3, 0xbb, 0xae, 0x8e, 0x55, 0xdd, 0x6e, 0x62, 0xd5, 0xb0, 0x5a, 0x76, 0x31, 0x4b, 0x09, 0xce, 0x0e, 0x4e, 0x84, 0x2a, 0x56, 0xed, 0x26, 0xae, 0x5b, 0x2d, 0x5b, 0x29, 0x78, 0x91, 0x36, 0x3a, 0x05, 0xe3, 0xde, 0x81, 0xe5, 0x6b, 0x2f, 0x16, 0xf3, 0x34, 0x42, 0x78, 0x6b, 0xe1, 0xaf, 0xc6, 0x61, 0x6a, 0x94, 0x10, 0xbb, 0x0a, 0xe9, 0x16, 0x99, 0x65, 0x31, 0x71, 0x12, 0x1f, 0x30, 0x4c, 0xd4, 0x89, 0xe3, 0x3f, 0xa2, 0x13, 0x2b, 0x90, 0xb3, 0xb0, 0xe7, 0xe3, 0x26, 0x8b, 0x88, 0xe4, 0x88, 0x31, 0x05, 0x0c, 0x34, 0x18, 0x52, 0xa9, 0x1f, 0x29, 0xa4, 0x6e, 0xc0, 0x54, 0x60, 0x92, 0xea, 0x6a, 0x56, 0x5b, 0xc4, 0xe6, 0x72, 0x9c, 0x25, 0x4b, 0x35, 0x81, 0x53, 0x08, 0x4c, 0x29, 0xe0, 0x48, 0x1b, 0xad, 0x02, 0xd8, 0x16, 0xb6, 0x5b, 0x6a, 0x13, 0xeb, 0x66, 0x31, 0x73, 0x84, 0x97, 0xb6, 0x88, 0xca, 0x80, 0x97, 0x6c, 0x26, 0xd5, 0x4d, 0xf4, 0x5c, 0x2f, 0xd4, 0x26, 0x8e, 0x88, 0x94, 0x0d, 0xb6, 0xc9, 0x06, 0xa2, 0x6d, 0x17, 0x0a, 0x2e, 0x26, 0x71, 0x8f, 0x9b, 0x7c, 0x66, 0x59, 0x6a, 0xc4, 0x52, 0xec, 0xcc, 0x14, 0x0e, 0x63, 0x13, 0x9b, 0x74, 0xc3, 0x4d, 0xf4, 0x28, 0x04, 0x02, 0x95, 0x86, 0x15, 0xd0, 0x53, 0x28, 0x2f, 0x84, 0x9b, 0x5a, 0x07, 0xcf, 0xdd, 0x83, 0x42, 0xd4, 0x3d, 0x68, 0x16, 0xd2, 0x9e, 0xaf, 0xb9, 0x3e, 0x8d, 0xc2, 0xb4, 0xc2, 0x1a, 0x48, 0x86, 0x24, 0xb6, 0x9a, 0xf4, 0x94, 0x4b, 0x2b, 0xe4, 0x27, 0xfa, 0xc9, 0xde, 0x84, 0x93, 0x74, 0xc2, 0x4f, 0x0c, 0xae, 0x68, 0x84, 0xb9, 0x7f, 0xde, 0x73, 0xcf, 0xc2, 0x64, 0x64, 0x02, 0xa3, 0x0e, 0xbd, 0xf0, 0x33, 0xf0, 0xd0, 0x50, 0x6a, 0x74, 0x03, 0x66, 0xbb, 0x96, 0x61, 0xf9, 0xd8, 0x75, 0x5c, 0x4c, 0x22, 0x96, 0x0d, 0x55, 0xfc, 0xd7, 0x89, 0x23, 0x62, 0x6e, 0x37, 0xac, 0xcd, 0x58, 0x94, 0x99, 0xee, 0xa0, 0xf0, 0xa9, 0x6c, 0xe6, 0xad, 0x09, 0xf9, 0xfe, 0xfd, 0xfb, 0xf7, 0x13, 0x0b, 0x5f, 0x18, 0x87, 0xd9, 0x61, 0x7b, 0x66, 0xe8, 0xf6, 0x3d, 0x05, 0xe3, 0x56, 0xb7, 0xb3, 0x87, 0x5d, 0xea, 0xa4, 0xb4, 0xc2, 0x5b, 0xa8, 0x02, 0x69, 0x53, 0xdb, 0xc3, 0x66, 0x31, 0x35, 0x2f, 0x2d, 0x16, 0x2e, 0x3c, 0x3d, 0xd2, 0xae, 0x5c, 0x5a, 0x27, 0x10, 0x85, 0x21, 0xd1, 0xc7, 0x21, 0xc5, 0x8f, 0x68, 0xc2, 0xf0, 0xd4, 0x68, 0x0c, 0x64, 0x2f, 0x29, 0x14, 0x87, 0x1e, 0x86, 0x2c, 0xf9, 0xcb, 0x62, 0x63, 0x9c, 0xda, 0x9c, 0x21, 0x02, 0x12, 0x17, 0x68, 0x0e, 0x32, 0x74, 0x9b, 0x34, 0xb1, 0x48, 0x6d, 0x41, 0x9b, 0x04, 0x56, 0x13, 0xb7, 0xb4, 0xae, 0xe9, 0xab, 0x77, 0x34, 0xb3, 0x8b, 0x69, 0xc0, 0x67, 0x95, 0x3c, 0x17, 0x7e, 0x8a, 0xc8, 0xd0, 0x59, 0xc8, 0xb1, 0x5d, 0x65, 0x58, 0x4d, 0xfc, 0x22, 0x3d, 0x3d, 0xd3, 0x0a, 0xdb, 0x68, 0x75, 0x22, 0x21, 0xc3, 0xdf, 0xf2, 0x6c, 0x4b, 0x84, 0x26, 0x1d, 0x82, 0x08, 0xe8, 0xf0, 0xcf, 0xf6, 0x1f, 0xdc, 0x8f, 0x0c, 0x9f, 0x5e, 0x7f, 0x4c, 0x2d, 0x7c, 0x2b, 0x01, 0x29, 0x7a, 0x5e, 0x4c, 0x41, 0x6e, 0xe7, 0xe6, 0x76, 0x4d, 0x5d, 0xdd, 0xda, 0x5d, 0x59, 0xaf, 0xc9, 0x12, 0x2a, 0x00, 0x50, 0xc1, 0xb5, 0xf5, 0xad, 0xca, 0x8e, 0x9c, 0x08, 0xda, 0xf5, 0xcd, 0x9d, 0xcb, 0x17, 0xe5, 0x64, 0x00, 0xd8, 0x65, 0x82, 0x54, 0x58, 0xe1, 0x99, 0x0b, 0x72, 0x1a, 0xc9, 0x90, 0x67, 0x04, 0xf5, 0x1b, 0xb5, 0xd5, 0xcb, 0x17, 0xe5, 0xf1, 0xa8, 0xe4, 0x99, 0x0b, 0xf2, 0x04, 0x9a, 0x84, 0x2c, 0x95, 0xac, 0x6c, 0x6d, 0xad, 0xcb, 0x99, 0x80, 0xb3, 0xb1, 0xa3, 0xd4, 0x37, 0xd7, 0xe4, 0x6c, 0xc0, 0xb9, 0xa6, 0x6c, 0xed, 0x6e, 0xcb, 0x10, 0x30, 0x6c, 0xd4, 0x1a, 0x8d, 0xca, 0x5a, 0x4d, 0xce, 0x05, 0x1a, 0x2b, 0x37, 0x77, 0x6a, 0x0d, 0x39, 0x1f, 0x31, 0xeb, 0x99, 0x0b, 0xf2, 0x64, 0x30, 0x44, 0x6d, 0x73, 0x77, 0x43, 0x2e, 0xa0, 0x69, 0x98, 0x64, 0x43, 0x08, 0x23, 0xa6, 0xfa, 0x44, 0x97, 0x2f, 0xca, 0x72, 0xcf, 0x10, 0xc6, 0x32, 0x1d, 0x11, 0x5c, 0xbe, 0x28, 0xa3, 0x85, 0x2a, 0xa4, 0x69, 0x74, 0x21, 0x04, 0x85, 0xf5, 0xca, 0x4a, 0x6d, 0x5d, 0xdd, 0xda, 0xde, 0xa9, 0x6f, 0x6d, 0x56, 0xd6, 0x65, 0xa9, 0x27, 0x53, 0x6a, 0x9f, 0xdc, 0xad, 0x2b, 0xb5, 0x55, 0x39, 0x11, 0x96, 0x6d, 0xd7, 0x2a, 0x3b, 0xb5, 0x55, 0x39, 0xb9, 0xa0, 0xc3, 0xec, 0xb0, 0x73, 0x72, 0xe8, 0xce, 0x08, 0x2d, 0x71, 0xe2, 0x88, 0x25, 0xa6, 0x5c, 0x03, 0x4b, 0xfc, 0x65, 0x09, 0x66, 0x86, 0xe4, 0x8a, 0xa1, 0x83, 0x3c, 0x0f, 0x69, 0x16, 0xa2, 0x2c, 0x7b, 0x3e, 0x39, 0x34, 0xe9, 0xd0, 0x80, 0x1d, 0xc8, 0xa0, 0x14, 0x17, 0xae, 0x20, 0x92, 0x47, 0x54, 0x10, 0x84, 0x62, 0xc0, 0xc8, 0x97, 0x24, 0x28, 0x1e, 0xc5, 0x1d, 0x73, 0x50, 0x24, 0x22, 0x07, 0xc5, 0xd5, 0x7e, 0x03, 0xce, 0x1d, 0x3d, 0x87, 0x01, 0x2b, 0x5e, 0x93, 0xe0, 0xd4, 0xf0, 0x42, 0x6b, 0xa8, 0x0d, 0x1f, 0x87, 0xf1, 0x0e, 0xf6, 0xf7, 0x6d, 0x51, 0x6c, 0x3c, 0x31, 0x24, 0x85, 0x91, 0xee, 0x7e, 0x5f, 0x71, 0x54, 0x38, 0x07, 0x26, 0x8f, 0xaa, 0x96, 0x98, 0x35, 0x03, 0x96, 0x7e, 0x2e, 0x01, 0x0f, 0x0d, 0x25, 0x1f, 0x6a, 0xe8, 0x23, 0x00, 0x86, 0xe5, 0x74, 0x7d, 0x56, 0x50, 0xb0, 0xf3, 0x29, 0x4b, 0x25, 0x74, 0xef, 0x93, 0xb3, 0xa7, 0xeb, 0x07, 0xfd, 0x49, 0xda, 0x0f, 0x4c, 0x44, 0x15, 0xae, 0xf4, 0x0c, 0x4d, 0x51, 0x43, 0x4b, 0x47, 0xcc, 0x74, 0x20, 0x57, 0x7f, 0x14, 0x64, 0xdd, 0x34, 0xb0, 0xe5, 0xab, 0x9e, 0xef, 0x62, 0xad, 0x63, 0x58, 0x6d, 0x7a, 0x00, 0x67, 0xca, 0xe9, 0x96, 0x66, 0x7a, 0x58, 0x99, 0x62, 0xdd, 0x0d, 0xd1, 0x4b, 0x10, 0x34, 0xc7, 0xb9, 0x21, 0xc4, 0x78, 0x04, 0xc1, 0xba, 0x03, 0xc4, 0xc2, 0x37, 0x33, 0x90, 0x0b, 0x95, 0xa5, 0xe8, 0x1c, 0xe4, 0x6f, 0x69, 0x77, 0x34, 0x55, 0x5c, 0x35, 0x98, 0x27, 0x72, 0x44, 0xb6, 0xcd, 0xaf, 0x1b, 0x1f, 0x85, 0x59, 0xaa, 0x62, 0x77, 0x7d, 0xec, 0xaa, 0xba, 0xa9, 0x79, 0x1e, 0x75, 0x5a, 0x86, 0xaa, 0x22, 0xd2, 0xb7, 0x45, 0xba, 0xaa, 0xa2, 0x07, 0x5d, 0x82, 0x19, 0x8a, 0xe8, 0x74, 0x4d, 0xdf, 0x70, 0x4c, 0xac, 0x92, 0xcb, 0x8f, 0x47, 0x0f, 0xe2, 0xc0, 0xb2, 0x69, 0xa2, 0xb1, 0xc1, 0x15, 0x88, 0x45, 0x1e, 0x5a, 0x85, 0x47, 0x28, 0xac, 0x8d, 0x2d, 0xec, 0x6a, 0x3e, 0x56, 0xf1, 0x67, 0xba, 0x9a, 0xe9, 0xa9, 0x9a, 0xd5, 0x54, 0xf7, 0x35, 0x6f, 0xbf, 0x38, 0x4b, 0x08, 0x56, 0x12, 0x45, 0x49, 0x39, 0x43, 0x14, 0xd7, 0xb8, 0x5e, 0x8d, 0xaa, 0x55, 0xac, 0xe6, 0x27, 0x34, 0x6f, 0x1f, 0x95, 0xe1, 0x14, 0x65, 0xf1, 0x7c, 0xd7, 0xb0, 0xda, 0xaa, 0xbe, 0x8f, 0xf5, 0xdb, 0x6a, 0xd7, 0x6f, 0x5d, 0x29, 0x3e, 0x1c, 0x1e, 0x9f, 0x5a, 0xd8, 0xa0, 0x3a, 0x55, 0xa2, 0xb2, 0xeb, 0xb7, 0xae, 0xa0, 0x06, 0xe4, 0xc9, 0x62, 0x74, 0x8c, 0x7b, 0x58, 0x6d, 0xd9, 0x2e, 0xcd, 0x2c, 0x85, 0x21, 0x3b, 0x3b, 0xe4, 0xc1, 0xa5, 0x2d, 0x0e, 0xd8, 0xb0, 0x9b, 0xb8, 0x9c, 0x6e, 0x6c, 0xd7, 0x6a, 0xab, 0x4a, 0x4e, 0xb0, 0x5c, 0xb3, 0x5d, 0x12, 0x50, 0x6d, 0x3b, 0x70, 0x70, 0x8e, 0x05, 0x54, 0xdb, 0x16, 0xee, 0xbd, 0x04, 0x33, 0xba, 0xce, 0xe6, 0x6c, 0xe8, 0x2a, 0xbf, 0xa2, 0x78, 0x45, 0x39, 0xe2, 0x2c, 0x5d, 0x5f, 0x63, 0x0a, 0x3c, 0xc6, 0x3d, 0xf4, 0x1c, 0x3c, 0xd4, 0x73, 0x56, 0x18, 0x38, 0x3d, 0x30, 0xcb, 0x7e, 0xe8, 0x25, 0x98, 0x71, 0x0e, 0x06, 0x81, 0x28, 0x32, 0xa2, 0x73, 0xd0, 0x0f, 0x7b, 0x16, 0x66, 0x9d, 0x7d, 0x67, 0x10, 0x37, 0x13, 0xc6, 0x21, 0x67, 0xdf, 0xe9, 0x07, 0x3e, 0x4e, 0xef, 0xab, 0x2e, 0xd6, 0x35, 0x1f, 0x37, 0x8b, 0xa7, 0xc3, 0xea, 0xa1, 0x0e, 0xb4, 0x0c, 0xb2, 0xae, 0xab, 0xd8, 0xd2, 0xf6, 0x4c, 0xac, 0x6a, 0x2e, 0xb6, 0x34, 0xaf, 0x78, 0x36, 0xac, 0x5c, 0xd0, 0xf5, 0x1a, 0xed, 0xad, 0xd0, 0x4e, 0xf4, 0x14, 0x4c, 0xdb, 0x7b, 0xb7, 0x74, 0x16, 0x92, 0xaa, 0xe3, 0xe2, 0x96, 0xf1, 0x62, 0xf1, 0x31, 0xea, 0xdf, 0x29, 0xd2, 0x41, 0x03, 0x72, 0x9b, 0x8a, 0xd1, 0x93, 0x20, 0xeb, 0xde, 0xbe, 0xe6, 0x3a, 0xb4, 0x26, 0xf0, 0x1c, 0x4d, 0xc7, 0xc5, 0xc7, 0x99, 0x2a, 0x93, 0x6f, 0x0a, 0x31, 0xd9, 0x12, 0xde, 0x5d, 0xa3, 0xe5, 0x0b, 0xc6, 0xf3, 0x6c, 0x4b, 0x50, 0x19, 0x67, 0x5b, 0x04, 0x99, 0xb8, 0x22, 0x32, 0xf0, 0x22, 0x55, 0x2b, 0x38, 0xfb, 0x4e, 0x78, 0xdc, 0x47, 0x61, 0x92, 0x68, 0xf6, 0x06, 0x7d, 0x92, 0xd5, 0x33, 0xce, 0x7e, 0x68, 0xc4, 0xf7, 0xad, 0xb4, 0x5c, 0x28, 0x43, 0x3e, 0x1c, 0x9f, 0x28, 0x0b, 0x2c, 0x42, 0x65, 0x89, 0xe4, 0xfa, 0xea, 0xd6, 0x2a, 0xc9, 0xd2, 0x9f, 0xae, 0xc9, 0x09, 0x52, 0x2d, 0xac, 0xd7, 0x77, 0x6a, 0xaa, 0xb2, 0xbb, 0xb9, 0x53, 0xdf, 0xa8, 0xc9, 0xc9, 0x70, 0x59, 0xfa, 0xdd, 0x04, 0x14, 0xa2, 0x37, 0x0c, 0xf4, 0x13, 0x70, 0x5a, 0x3c, 0x07, 0x78, 0xd8, 0x57, 0xef, 0x1a, 0x2e, 0xdd, 0x32, 0x1d, 0x8d, 0x55, 0xd8, 0xc1, 0xa2, 0xcd, 0x72, 0xad, 0x06, 0xf6, 0x5f, 0x30, 0x5c, 0xb2, 0x21, 0x3a, 0x9a, 0x8f, 0xd6, 0xe1, 0xac, 0x65, 0xab, 0x9e, 0xaf, 0x59, 0x4d, 0xcd, 0x6d, 0xaa, 0xbd, 0x87, 0x18, 0x55, 0xd3, 0x75, 0xec, 0x79, 0x36, 0x4b, 0x55, 0x01, 0xcb, 0x87, 0x2c, 0xbb, 0xc1, 0x95, 0x7b, 0x67, 0x78, 0x85, 0xab, 0xf6, 0x05, 0x58, 0xf2, 0xa8, 0x00, 0x7b, 0x18, 0xb2, 0x1d, 0xcd, 0x51, 0xb1, 0xe5, 0xbb, 0x07, 0xb4, 0xae, 0xcc, 0x28, 0x99, 0x8e, 0xe6, 0xd4, 0x48, 0xfb, 0x83, 0x29, 0xef, 0xff, 0x31, 0x09, 0xf9, 0x70, 0x6d, 0x49, 0x4a, 0x75, 0x9d, 0xe6, 0x11, 0x89, 0x9e, 0x34, 0x8f, 0x1e, 0x5b, 0x89, 0x2e, 0x55, 0x49, 0x82, 0x29, 0x8f, 0xb3, 0x8a, 0x4f, 0x61, 0x48, 0x92, 0xdc, 0xc9, 0xd9, 0x82, 0xd9, 0x2d, 0x26, 0xa3, 0xf0, 0x16, 0x5a, 0x83, 0xf1, 0x5b, 0x1e, 0xe5, 0x1e, 0xa7, 0xdc, 0x8f, 0x1d, 0xcf, 0x7d, 0xbd, 0x41, 0xc9, 0xb3, 0xd7, 0x1b, 0xea, 0xe6, 0x96, 0xb2, 0x51, 0x59, 0x57, 0x38, 0x1c, 0x9d, 0x81, 0x94, 0xa9, 0xdd, 0x3b, 0x88, 0xa6, 0x22, 0x2a, 0x1a, 0xd5, 0xf1, 0x67, 0x20, 0x75, 0x17, 0x6b, 0xb7, 0xa3, 0x09, 0x80, 0x8a, 0xde, 0xc7, 0xd0, 0x5f, 0x86, 0x34, 0xf5, 0x17, 0x02, 0xe0, 0x1e, 0x93, 0xc7, 0x50, 0x06, 0x52, 0xd5, 0x2d, 0x85, 0x84, 0xbf, 0x0c, 0x79, 0x26, 0x55, 0xb7, 0xeb, 0xb5, 0x6a, 0x4d, 0x4e, 0x2c, 0x5c, 0x82, 0x71, 0xe6, 0x04, 0xb2, 0x35, 0x02, 0x37, 0xc8, 0x63, 0xbc, 0xc9, 0x39, 0x24, 0xd1, 0xbb, 0xbb, 0xb1, 0x52, 0x53, 0xe4, 0x44, 0x78, 0x79, 0x3d, 0xc8, 0x87, 0xcb, 0xca, 0x0f, 0x26, 0xa6, 0xfe, 0x5a, 0x82, 0x5c, 0xa8, 0x4c, 0x24, 0x05, 0x8a, 0x66, 0x9a, 0xf6, 0x5d, 0x55, 0x33, 0x0d, 0xcd, 0xe3, 0x41, 0x01, 0x54, 0x54, 0x21, 0x92, 0x51, 0x17, 0xed, 0x03, 0x31, 0xfe, 0x55, 0x09, 0xe4, 0xfe, 0x12, 0xb3, 0xcf, 0x40, 0xe9, 0xc7, 0x6a, 0xe0, 0x2b, 0x12, 0x14, 0xa2, 0x75, 0x65, 0x9f, 0x79, 0xe7, 0x7e, 0xac, 0xe6, 0xbd, 0x91, 0x80, 0xc9, 0x48, 0x35, 0x39, 0xaa, 0x75, 0x9f, 0x81, 0x69, 0xa3, 0x89, 0x3b, 0x8e, 0xed, 0x63, 0x4b, 0x3f, 0x50, 0x4d, 0x7c, 0x07, 0x9b, 0xc5, 0x05, 0x7a, 0x50, 0x2c, 0x1f, 0x5f, 0xaf, 0x2e, 0xd5, 0x7b, 0xb8, 0x75, 0x02, 0x2b, 0xcf, 0xd4, 0x57, 0x6b, 0x1b, 0xdb, 0x5b, 0x3b, 0xb5, 0xcd, 0xea, 0x4d, 0x75, 0x77, 0xf3, 0xa7, 0x36, 0xb7, 0x5e, 0xd8, 0x54, 0x64, 0xa3, 0x4f, 0xed, 0x7d, 0xdc, 0xea, 0xdb, 0x20, 0xf7, 0x1b, 0x85, 0x4e, 0xc3, 0x30, 0xb3, 0xe4, 0x31, 0x34, 0x03, 0x53, 0x9b, 0x5b, 0x6a, 0xa3, 0xbe, 0x5a, 0x53, 0x6b, 0xd7, 0xae, 0xd5, 0xaa, 0x3b, 0x0d, 0x76, 0x81, 0x0f, 0xb4, 0x77, 0xa2, 0x9b, 0xfa, 0xe5, 0x24, 0xcc, 0x0c, 0xb1, 0x04, 0x55, 0xf8, 0xdd, 0x81, 0x5d, 0x67, 0x3e, 0x32, 0x8a, 0xf5, 0x4b, 0x24, 0xe5, 0x6f, 0x6b, 0xae, 0xcf, 0xaf, 0x1a, 0x4f, 0x02, 0xf1, 0x92, 0xe5, 0x1b, 0x2d, 0x03, 0xbb, 0xfc, 0xbd, 0x83, 0x5d, 0x28, 0xa6, 0x7a, 0x72, 0xf6, 0xe4, 0xf1, 0x61, 0x40, 0x8e, 0xed, 0x19, 0xbe, 0x71, 0x07, 0xab, 0x86, 0x25, 0x1e, 0x47, 0xc8, 0x05, 0x23, 0xa5, 0xc8, 0xa2, 0xa7, 0x6e, 0xf9, 0x81, 0xb6, 0x85, 0xdb, 0x5a, 0x9f, 0x36, 0x39, 0xc0, 0x93, 0x8a, 0x2c, 0x7a, 0x02, 0xed, 0x73, 0x90, 0x6f, 0xda, 0x5d, 0x52, 0x75, 0x31, 0x3d, 0x92, 0x2f, 0x24, 0x25, 0xc7, 0x64, 0x81, 0x0a, 0xaf, 0xa7, 0x7b, 0xaf, 0x32, 0x79, 0x25, 0xc7, 0x64, 0x4c, 0xe5, 0x3c, 0x4c, 0x69, 0xed, 0xb6, 0x4b, 0xc8, 0x05, 0x11, 0xbb, 0x21, 0x14, 0x02, 0x31, 0x55, 0x9c, 0xbb, 0x0e, 0x19, 0xe1, 0x07, 0x92, 0x92, 0x89, 0x27, 0x54, 0x87, 0xbd, 0xcc, 0x25, 0x16, 0xb3, 0x4a, 0xc6, 0x12, 0x9d, 0xe7, 0x20, 0x6f, 0x78, 0x6a, 0xef, 0x91, 0x39, 0x31, 0x9f, 0x58, 0xcc, 0x28, 0x39, 0xc3, 0x0b, 0x1e, 0xe8, 0x16, 0x5e, 0x4b, 0x40, 0x21, 0xfa, 0x48, 0x8e, 0x56, 0x21, 0x63, 0xda, 0xba, 0x46, 0x43, 0x8b, 0x7d, 0xa1, 0x59, 0x8c, 0x79, 0x57, 0x5f, 0x5a, 0xe7, 0xfa, 0x4a, 0x80, 0x9c, 0xfb, 0x7b, 0x09, 0x32, 0x42, 0x8c, 0x4e, 0x41, 0xca, 0xd1, 0xfc, 0x7d, 0x4a, 0x97, 0x5e, 0x49, 0xc8, 0x92, 0x42, 0xdb, 0x44, 0xee, 0x39, 0x9a, 0x45, 0x43, 0x80, 0xcb, 0x49, 0x9b, 0xac, 0xab, 0x89, 0xb5, 0x26, 0xbd, 0x7e, 0xd8, 0x9d, 0x0e, 0xb6, 0x7c, 0x4f, 0xac, 0x2b, 0x97, 0x57, 0xb9, 0x18, 0x3d, 0x0d, 0xd3, 0xbe, 0xab, 0x19, 0x66, 0x44, 0x37, 0x45, 0x75, 0x65, 0xd1, 0x11, 0x28, 0x97, 0xe1, 0x8c, 0xe0, 0x6d, 0x62, 0x5f, 0xd3, 0xf7, 0x71, 0xb3, 0x07, 0x1a, 0xa7, 0x2f, 0xb0, 0xa7, 0xb9, 0xc2, 0x2a, 0xef, 0x17, 0xd8, 0x85, 0xef, 0x4b, 0x30, 0x2d, 0x2e, 0x4c, 0xcd, 0xc0, 0x59, 0x1b, 0x00, 0x9a, 0x65, 0xd9, 0x7e, 0xd8, 0x5d, 0x83, 0xa1, 0x3c, 0x80, 0x5b, 0xaa, 0x04, 0x20, 0x25, 0x44, 0x30, 0xd7, 0x01, 0xe8, 0xf5, 0x1c, 0xe9, 0xb6, 0xb3, 0x90, 0xe3, 0x5f, 0x40, 0xe8, 0x67, 0x34, 0x76, 0xc5, 0x06, 0x26, 0x22, 0x37, 0x2b, 0x34, 0x0b, 0xe9, 0x3d, 0xdc, 0x36, 0x2c, 0xfe, 0xae, 0xc9, 0x1a, 0xe2, 0xad, 0x36, 0x15, 0xbc, 0xd5, 0xae, 0xdc, 0x80, 0x19, 0xdd, 0xee, 0xf4, 0x9b, 0xbb, 0x22, 0xf7, 0x5d, 0xf3, 0xbd, 0x4f, 0x48, 0x9f, 0x86, 0x5e, 0x89, 0xf9, 0xe5, 0x44, 0x72, 0x6d, 0x7b, 0xe5, 0xab, 0x89, 0xb9, 0x35, 0x86, 0xdb, 0x16, 0xd3, 0x54, 0x70, 0xcb, 0xc4, 0x3a, 0x31, 0x1d, 0x7e, 0xf0, 0x04, 0x7c, 0xa4, 0x6d, 0xf8, 0xfb, 0xdd, 0xbd, 0x25, 0xdd, 0xee, 0x2c, 0xb7, 0xed, 0xb6, 0xdd, 0xfb, 0x6c, 0x48, 0x5a, 0xb4, 0x41, 0x7f, 0xf1, 0x4f, 0x87, 0xd9, 0x40, 0x3a, 0x17, 0xfb, 0x9d, 0xb1, 0xbc, 0x09, 0x33, 0x5c, 0x59, 0xa5, 0xdf, 0x2e, 0xd8, 0x15, 0x02, 0x1d, 0xfb, 0xfe, 0x53, 0xfc, 0xc6, 0x9b, 0x34, 0x57, 0x2b, 0xd3, 0x1c, 0x4a, 0xfa, 0xd8, 0x2d, 0xa3, 0xac, 0xc0, 0x43, 0x11, 0x3e, 0xb6, 0x2f, 0xb1, 0x1b, 0xc3, 0xf8, 0x5d, 0xce, 0x38, 0x13, 0x62, 0x6c, 0x70, 0x68, 0xb9, 0x0a, 0x93, 0x27, 0xe1, 0xfa, 0x5b, 0xce, 0x95, 0xc7, 0x61, 0x92, 0x35, 0x98, 0xa2, 0x24, 0x7a, 0xd7, 0xf3, 0xed, 0x0e, 0x3d, 0xf4, 0x8e, 0xa7, 0xf9, 0xbb, 0x37, 0xd9, 0x46, 0x29, 0x10, 0x58, 0x35, 0x40, 0x95, 0xcb, 0x40, 0x3f, 0xd7, 0x34, 0xb1, 0x6e, 0xc6, 0x30, 0xbc, 0xce, 0x0d, 0x09, 0xf4, 0xcb, 0x9f, 0x82, 0x59, 0xf2, 0x9b, 0x9e, 0x49, 0x61, 0x4b, 0xe2, 0x5f, 0xbb, 0x8a, 0xdf, 0x7f, 0x89, 0xed, 0xc5, 0x99, 0x80, 0x20, 0x64, 0x53, 0x68, 0x15, 0xdb, 0xd8, 0xf7, 0xb1, 0xeb, 0xa9, 0x9a, 0x39, 0xcc, 0xbc, 0xd0, 0x73, 0x41, 0xf1, 0x8b, 0x6f, 0x47, 0x57, 0x71, 0x8d, 0x21, 0x2b, 0xa6, 0x59, 0xde, 0x85, 0xd3, 0x43, 0xa2, 0x62, 0x04, 0xce, 0x97, 0x39, 0xe7, 0xec, 0x40, 0x64, 0x10, 0xda, 0x6d, 0x10, 0xf2, 0x60, 0x2d, 0x47, 0xe0, 0xfc, 0x6d, 0xce, 0x89, 0x38, 0x56, 0x2c, 0x29, 0x61, 0xbc, 0x0e, 0xd3, 0x77, 0xb0, 0xbb, 0x67, 0x7b, 0xfc, 0x89, 0x66, 0x04, 0xba, 0x57, 0x38, 0xdd, 0x14, 0x07, 0xd2, 0x37, 0x1b, 0xc2, 0xf5, 0x1c, 0x64, 0x5a, 0x9a, 0x8e, 0x47, 0xa0, 0xf8, 0x12, 0xa7, 0x98, 0x20, 0xfa, 0x04, 0x5a, 0x81, 0x7c, 0xdb, 0xe6, 0x69, 0x29, 0x1e, 0xfe, 0x2a, 0x87, 0xe7, 0x04, 0x86, 0x53, 0x38, 0xb6, 0xd3, 0x35, 0x49, 0xce, 0x8a, 0xa7, 0xf8, 0x1d, 0x41, 0x21, 0x30, 0x9c, 0xe2, 0x04, 0x6e, 0xfd, 0x5d, 0x41, 0xe1, 0x85, 0xfc, 0xf9, 0x3c, 0xe4, 0x6c, 0xcb, 0x3c, 0xb0, 0xad, 0x51, 0x8c, 0xf8, 0x3d, 0xce, 0x00, 0x1c, 0x42, 0x08, 0xae, 0x42, 0x76, 0xd4, 0x85, 0xf8, 0xfd, 0xb7, 0xc5, 0xf6, 0x10, 0x2b, 0xb0, 0x06, 0x53, 0xe2, 0x80, 0x32, 0x6c, 0x6b, 0x04, 0x8a, 0x3f, 0xe0, 0x14, 0x85, 0x10, 0x8c, 0x4f, 0xc3, 0xc7, 0x9e, 0xdf, 0xc6, 0xa3, 0x90, 0xbc, 0x26, 0xa6, 0xc1, 0x21, 0xdc, 0x95, 0x7b, 0xd8, 0xd2, 0xf7, 0x47, 0x63, 0xf8, 0x8a, 0x70, 0xa5, 0xc0, 0x10, 0x8a, 0x2a, 0x4c, 0x76, 0x34, 0xd7, 0xdb, 0xd7, 0xcc, 0x91, 0x96, 0xe3, 0x0f, 0x39, 0x47, 0x3e, 0x00, 0x71, 0x8f, 0x74, 0xad, 0x93, 0xd0, 0x7c, 0x55, 0x78, 0x24, 0x04, 0xe3, 0x5b, 0xcf, 0xf3, 0xe9, 0x7b, 0xd6, 0x49, 0xd8, 0xbe, 0x26, 0xb6, 0x1e, 0xc3, 0x6e, 0x84, 0x19, 0xaf, 0x42, 0xd6, 0x33, 0xee, 0x8d, 0x44, 0xf3, 0x47, 0x62, 0xa5, 0x29, 0x80, 0x80, 0x6f, 0xc2, 0x99, 0xa1, 0x69, 0x62, 0x04, 0xb2, 0x3f, 0xe6, 0x64, 0xa7, 0x86, 0xa4, 0x0a, 0x7e, 0x24, 0x9c, 0x94, 0xf2, 0x4f, 0xc4, 0x91, 0x80, 0xfb, 0xb8, 0xb6, 0xc9, 0x45, 0xc1, 0xd3, 0x5a, 0x27, 0xf3, 0xda, 0x9f, 0x0a, 0xaf, 0x31, 0x6c, 0xc4, 0x6b, 0x3b, 0x70, 0x8a, 0x33, 0x9e, 0x6c, 0x5d, 0xbf, 0x2e, 0x0e, 0x56, 0x86, 0xde, 0x8d, 0xae, 0xee, 0x4f, 0xc3, 0x5c, 0xe0, 0x4e, 0x51, 0x91, 0x7a, 0x6a, 0x47, 0x73, 0x46, 0x60, 0xfe, 0x06, 0x67, 0x16, 0x27, 0x7e, 0x50, 0xd2, 0x7a, 0x1b, 0x9a, 0x43, 0xc8, 0x6f, 0x40, 0x51, 0x90, 0x77, 0x2d, 0x17, 0xeb, 0x76, 0xdb, 0x32, 0xee, 0xe1, 0xe6, 0x08, 0xd4, 0x7f, 0xd6, 0xb7, 0x54, 0xbb, 0x21, 0x38, 0x61, 0xae, 0x83, 0x1c, 0xd4, 0x2a, 0xaa, 0xd1, 0x71, 0x6c, 0xd7, 0x8f, 0x61, 0xfc, 0xa6, 0x58, 0xa9, 0x00, 0x57, 0xa7, 0xb0, 0x72, 0x0d, 0x0a, 0xb4, 0x39, 0x6a, 0x48, 0xfe, 0x39, 0x27, 0x9a, 0xec, 0xa1, 0xf8, 0xc1, 0xa1, 0xdb, 0x1d, 0x47, 0x73, 0x47, 0x39, 0xff, 0xfe, 0x42, 0x1c, 0x1c, 0x1c, 0xc2, 0x0f, 0x0e, 0xff, 0xc0, 0xc1, 0x24, 0xdb, 0x8f, 0xc0, 0xf0, 0x2d, 0x71, 0x70, 0x08, 0x0c, 0xa7, 0x10, 0x05, 0xc3, 0x08, 0x14, 0x7f, 0x29, 0x28, 0x04, 0x86, 0x50, 0x7c, 0xb2, 0x97, 0x68, 0x5d, 0xdc, 0x36, 0x3c, 0xdf, 0x65, 0x75, 0xf0, 0xf1, 0x54, 0xdf, 0x7e, 0x3b, 0x5a, 0x84, 0x29, 0x21, 0x68, 0xf9, 0x3a, 0x4c, 0xf5, 0x95, 0x18, 0x28, 0xee, 0x7f, 0x3f, 0x8a, 0x3f, 0xfb, 0x2e, 0x3f, 0x8c, 0xa2, 0x15, 0x46, 0x79, 0x9d, 0xac, 0x7b, 0xb4, 0x0e, 0x88, 0x27, 0x7b, 0xe9, 0xdd, 0x60, 0xe9, 0x23, 0x65, 0x40, 0xf9, 0x1a, 0x4c, 0x46, 0x6a, 0x80, 0x78, 0xaa, 0xcf, 0x72, 0xaa, 0x7c, 0xb8, 0x04, 0x28, 0x5f, 0x82, 0x14, 0xc9, 0xe7, 0xf1, 0xf0, 0x9f, 0xe3, 0x70, 0xaa, 0x5e, 0xfe, 0x18, 0x64, 0x44, 0x1e, 0x8f, 0x87, 0xfe, 0x3c, 0x87, 0x06, 0x10, 0x02, 0x17, 0x39, 0x3c, 0x1e, 0xfe, 0x0b, 0x02, 0x2e, 0x20, 0x04, 0x3e, 0xba, 0x0b, 0xbf, 0xf3, 0x4b, 0x29, 0x7e, 0x0e, 0x0b, 0xdf, 0x5d, 0x85, 0x09, 0x9e, 0xbc, 0xe3, 0xd1, 0x9f, 0xe3, 0x83, 0x0b, 0x44, 0xf9, 0x59, 0x48, 0x8f, 0xe8, 0xf0, 0x5f, 0xe6, 0x50, 0xa6, 0x5f, 0xae, 0x42, 0x2e, 0x94, 0xb0, 0xe3, 0xe1, 0x9f, 0xe7, 0xf0, 0x30, 0x8a, 0x98, 0xce, 0x13, 0x76, 0x3c, 0xc1, 0xaf, 0x08, 0xd3, 0x39, 0x82, 0xb8, 0x4d, 0xe4, 0xea, 0x78, 0xf4, 0xaf, 0x0a, 0xaf, 0x0b, 0x48, 0xf9, 0x79, 0xc8, 0x06, 0xe7, 0x6f, 0x3c, 0xfe, 0xd7, 0x38, 0xbe, 0x87, 0x21, 0x1e, 0x08, 0x9d, 0xff, 0xf1, 0x14, 0xbf, 0x2e, 0x3c, 0x10, 0x42, 0x91, 0x6d, 0xd4, 0x9f, 0xd3, 0xe3, 0x99, 0x7e, 0x43, 0x6c, 0xa3, 0xbe, 0x94, 0x4e, 0x56, 0x93, 0x1e, 0x83, 0xf1, 0x14, 0xbf, 0x29, 0x56, 0x93, 0xea, 0x13, 0x33, 0xfa, 0x93, 0x64, 0x3c, 0xc7, 0x6f, 0x09, 0x33, 0xfa, 0x72, 0x64, 0x79, 0x1b, 0xd0, 0x60, 0x82, 0x8c, 0xe7, 0xfb, 0x02, 0xe7, 0x9b, 0x1e, 0xc8, 0x8f, 0xe5, 0x17, 0xe0, 0xd4, 0xf0, 0xe4, 0x18, 0xcf, 0xfa, 0xc5, 0x77, 0xfb, 0xae, 0x33, 0xe1, 0xdc, 0x58, 0xde, 0xe9, 0x9d, 0xb2, 0xe1, 0xc4, 0x18, 0x4f, 0xfb, 0xf2, 0xbb, 0xd1, 0x83, 0x36, 0x9c, 0x17, 0xcb, 0x15, 0x80, 0x5e, 0x4e, 0x8a, 0xe7, 0x7a, 0x85, 0x73, 0x85, 0x40, 0x64, 0x6b, 0xf0, 0x94, 0x14, 0x8f, 0xff, 0x92, 0xd8, 0x1a, 0x1c, 0x41, 0xb6, 0x86, 0xc8, 0x46, 0xf1, 0xe8, 0x57, 0xc5, 0xd6, 0x10, 0x90, 0xf2, 0x55, 0xc8, 0x58, 0x5d, 0xd3, 0x24, 0xb1, 0x85, 0x8e, 0xff, 0x77, 0xa6, 0xe2, 0xbf, 0xbd, 0xc7, 0xc1, 0x02, 0x50, 0xbe, 0x04, 0x69, 0xdc, 0xd9, 0xc3, 0xcd, 0x38, 0xe4, 0xbf, 0xbf, 0x27, 0xce, 0x13, 0xa2, 0x5d, 0x7e, 0x1e, 0x80, 0x5d, 0xa6, 0xe9, 0x57, 0xa2, 0x18, 0xec, 0x7f, 0xbc, 0xc7, 0xff, 0x53, 0xa2, 0x07, 0xe9, 0x11, 0xb0, 0xff, 0xbb, 0x38, 0x9e, 0xe0, 0xed, 0x28, 0x01, 0xbd, 0x80, 0x3f, 0x07, 0x13, 0xb7, 0x3c, 0xdb, 0xf2, 0xb5, 0x76, 0x1c, 0xfa, 0x3f, 0x39, 0x5a, 0xe8, 0x13, 0x87, 0x75, 0x6c, 0x17, 0xfb, 0x5a, 0xdb, 0x8b, 0xc3, 0xfe, 0x17, 0xc7, 0x06, 0x00, 0x02, 0xd6, 0x35, 0xcf, 0x1f, 0x65, 0xde, 0xff, 0x2d, 0xc0, 0x02, 0x40, 0x8c, 0x26, 0xbf, 0x6f, 0xe3, 0x83, 0x38, 0xec, 0x3b, 0xc2, 0x68, 0xae, 0x5f, 0xfe, 0x18, 0x64, 0xc9, 0x4f, 0xf6, 0xdf, 0x43, 0x31, 0xe0, 0xff, 0xe1, 0xe0, 0x1e, 0x82, 0x8c, 0xec, 0xf9, 0x4d, 0xdf, 0x88, 0x77, 0xf6, 0xff, 0xf2, 0x95, 0x16, 0xfa, 0xe5, 0x0a, 0xe4, 0x3c, 0xbf, 0xd9, 0xec, 0xf2, 0x8a, 0x26, 0x06, 0xfe, 0x83, 0xf7, 0x82, 0x4b, 0x6e, 0x80, 0x59, 0x39, 0x37, 0xfc, 0xb1, 0x0e, 0xd6, 0xec, 0x35, 0x9b, 0x3d, 0xd3, 0xc1, 0xe7, 0xd3, 0x30, 0xaf, 0xdb, 0x9d, 0x3d, 0xdb, 0x5b, 0x0e, 0x0e, 0x92, 0xe5, 0xc0, 0x7e, 0xf1, 0xd0, 0x16, 0x08, 0xe6, 0x4e, 0xf6, 0x44, 0xb7, 0xf0, 0x37, 0x49, 0xc8, 0x54, 0x35, 0xcf, 0xd7, 0xee, 0x6a, 0x07, 0xc8, 0x81, 0x19, 0xf2, 0x7b, 0x43, 0x73, 0xe8, 0x83, 0x0f, 0xdf, 0x61, 0xfc, 0x09, 0xf4, 0xc3, 0x4b, 0xbd, 0x51, 0x05, 0x62, 0x69, 0x88, 0x3a, 0xfd, 0x74, 0xbc, 0x22, 0xbf, 0xfe, 0x4f, 0x67, 0xc7, 0x7e, 0xf1, 0x9f, 0xcf, 0x66, 0x36, 0x0e, 0x5e, 0x30, 0x4c, 0xcf, 0xb6, 0x94, 0x61, 0xd4, 0xe8, 0xb3, 0x12, 0x3c, 0x3c, 0x44, 0xbe, 0xc9, 0xb7, 0x21, 0xff, 0x90, 0x70, 0x71, 0xc4, 0xa1, 0x05, 0x8c, 0x99, 0x90, 0x8f, 0x0c, 0x7f, 0xdc, 0x30, 0x73, 0x37, 0xa1, 0x78, 0xd4, 0x4c, 0x90, 0x0c, 0xc9, 0xdb, 0xf8, 0x80, 0xff, 0x8b, 0x2c, 0xf9, 0x89, 0xce, 0xf7, 0xfe, 0xc9, 0x4d, 0x5a, 0xcc, 0x5d, 0x98, 0x0e, 0x59, 0xc7, 0x07, 0x63, 0xfd, 0xe5, 0xc4, 0x15, 0x69, 0x4e, 0x83, 0xf9, 0x38, 0x4b, 0xff, 0x9f, 0x43, 0x2c, 0x94, 0x60, 0x9c, 0x09, 0xd1, 0x2c, 0xa4, 0xeb, 0x96, 0x7f, 0xf9, 0x22, 0xa5, 0x4a, 0x2a, 0xac, 0xb1, 0xb2, 0xfe, 0xfa, 0x83, 0xd2, 0xd8, 0xf7, 0x1e, 0x94, 0xc6, 0xfe, 0xe1, 0x41, 0x69, 0xec, 0x8d, 0x07, 0x25, 0xe9, 0xad, 0x07, 0x25, 0xe9, 0x9d, 0x07, 0x25, 0xe9, 0x87, 0x0f, 0x4a, 0xd2, 0xfd, 0xc3, 0x92, 0xf4, 0x95, 0xc3, 0x92, 0xf4, 0xf5, 0xc3, 0x92, 0xf4, 0xed, 0xc3, 0x92, 0xf4, 0x9d, 0xc3, 0x92, 0xf4, 0xfa, 0x61, 0x49, 0xfa, 0xde, 0x61, 0x69, 0xec, 0x8d, 0xc3, 0x92, 0xf4, 0xd6, 0x61, 0x69, 0xec, 0x9d, 0xc3, 0x92, 0xf4, 0xc3, 0xc3, 0xd2, 0xd8, 0xfd, 0x7f, 0x29, 0x8d, 0xfd, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x71, 0xc7, 0xce, 0x35, 0x32, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Castaway) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Castaway") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Castaway but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Castaway but is not nil && this == nil") } if len(this.CastMapValueMessage) != len(that1.CastMapValueMessage) { return fmt.Errorf("CastMapValueMessage this(%v) Not Equal that(%v)", len(this.CastMapValueMessage), len(that1.CastMapValueMessage)) } for i := range this.CastMapValueMessage { a := (Wilson)(this.CastMapValueMessage[i]) b := (Wilson)(that1.CastMapValueMessage[i]) if !(&a).Equal(&b) { return fmt.Errorf("CastMapValueMessage this[%v](%v) Not Equal that[%v](%v)", i, this.CastMapValueMessage[i], i, that1.CastMapValueMessage[i]) } } if len(this.CastMapValueMessageNullable) != len(that1.CastMapValueMessageNullable) { return fmt.Errorf("CastMapValueMessageNullable this(%v) Not Equal that(%v)", len(this.CastMapValueMessageNullable), len(that1.CastMapValueMessageNullable)) } for i := range this.CastMapValueMessageNullable { a := (*Wilson)(this.CastMapValueMessageNullable[i]) b := (*Wilson)(that1.CastMapValueMessageNullable[i]) if !a.Equal(b) { return fmt.Errorf("CastMapValueMessageNullable this[%v](%v) Not Equal that[%v](%v)", i, this.CastMapValueMessageNullable[i], i, that1.CastMapValueMessageNullable[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Castaway) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.CastMapValueMessage) != len(that1.CastMapValueMessage) { return false } for i := range this.CastMapValueMessage { a := (Wilson)(this.CastMapValueMessage[i]) b := (Wilson)(that1.CastMapValueMessage[i]) if !(&a).Equal(&b) { return false } } if len(this.CastMapValueMessageNullable) != len(that1.CastMapValueMessageNullable) { return false } for i := range this.CastMapValueMessageNullable { a := (*Wilson)(this.CastMapValueMessageNullable[i]) b := (*Wilson)(that1.CastMapValueMessageNullable[i]) if !a.Equal(b) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Wilson) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Wilson") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Wilson but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Wilson but is not nil && this == nil") } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", *this.Int64, *that1.Int64) } } else if this.Int64 != nil { return fmt.Errorf("this.Int64 == nil && that.Int64 != nil") } else if that1.Int64 != nil { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", this.Int64, that1.Int64) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Wilson) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return false } } else if this.Int64 != nil { return false } else if that1.Int64 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type CastawayFace interface { Proto() github_com_gogo_protobuf_proto.Message GetCastMapValueMessage() map[int32]MyWilson GetCastMapValueMessageNullable() map[int32]*MyWilson } func (this *Castaway) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Castaway) TestProto() github_com_gogo_protobuf_proto.Message { return NewCastawayFromFace(this) } func (this *Castaway) GetCastMapValueMessage() map[int32]MyWilson { return this.CastMapValueMessage } func (this *Castaway) GetCastMapValueMessageNullable() map[int32]*MyWilson { return this.CastMapValueMessageNullable } func NewCastawayFromFace(that CastawayFace) *Castaway { this := &Castaway{} this.CastMapValueMessage = that.GetCastMapValueMessage() this.CastMapValueMessageNullable = that.GetCastMapValueMessageNullable() return this } type WilsonFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt64() *int64 } func (this *Wilson) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Wilson) TestProto() github_com_gogo_protobuf_proto.Message { return NewWilsonFromFace(this) } func (this *Wilson) GetInt64() *int64 { return this.Int64 } func NewWilsonFromFace(that WilsonFace) *Wilson { this := &Wilson{} this.Int64 = that.GetInt64() return this } func (this *Castaway) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&castvalue.Castaway{") keysForCastMapValueMessage := make([]int32, 0, len(this.CastMapValueMessage)) for k := range this.CastMapValueMessage { keysForCastMapValueMessage = append(keysForCastMapValueMessage, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessage) mapStringForCastMapValueMessage := "map[int32]MyWilson{" for _, k := range keysForCastMapValueMessage { mapStringForCastMapValueMessage += fmt.Sprintf("%#v: %#v,", k, this.CastMapValueMessage[k]) } mapStringForCastMapValueMessage += "}" if this.CastMapValueMessage != nil { s = append(s, "CastMapValueMessage: "+mapStringForCastMapValueMessage+",\n") } keysForCastMapValueMessageNullable := make([]int32, 0, len(this.CastMapValueMessageNullable)) for k := range this.CastMapValueMessageNullable { keysForCastMapValueMessageNullable = append(keysForCastMapValueMessageNullable, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessageNullable) mapStringForCastMapValueMessageNullable := "map[int32]*MyWilson{" for _, k := range keysForCastMapValueMessageNullable { mapStringForCastMapValueMessageNullable += fmt.Sprintf("%#v: %#v,", k, this.CastMapValueMessageNullable[k]) } mapStringForCastMapValueMessageNullable += "}" if this.CastMapValueMessageNullable != nil { s = append(s, "CastMapValueMessageNullable: "+mapStringForCastMapValueMessageNullable+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Wilson) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&castvalue.Wilson{") if this.Int64 != nil { s = append(s, "Int64: "+valueToGoStringCastvalue(this.Int64, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringCastvalue(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Castaway) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Castaway) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.CastMapValueMessage) > 0 { for k := range m.CastMapValueMessage { dAtA[i] = 0xa i++ v := m.CastMapValueMessage[k] msgSize := 0 if ((*Wilson)(&v)) != nil { msgSize = ((*Wilson)(&v)).Size() msgSize += 1 + sovCastvalue(uint64(msgSize)) } mapSize := 1 + sovCastvalue(uint64(k)) + msgSize i = encodeVarintCastvalue(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintCastvalue(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintCastvalue(dAtA, i, uint64(((*Wilson)(&v)).Size())) n1, err := ((*Wilson)(&v)).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } } if len(m.CastMapValueMessageNullable) > 0 { for k := range m.CastMapValueMessageNullable { dAtA[i] = 0x12 i++ v := m.CastMapValueMessageNullable[k] msgSize := 0 if ((*Wilson)(v)) != nil { msgSize = ((*Wilson)(v)).Size() msgSize += 1 + sovCastvalue(uint64(msgSize)) } mapSize := 1 + sovCastvalue(uint64(k)) + msgSize i = encodeVarintCastvalue(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintCastvalue(dAtA, i, uint64(k)) if ((*Wilson)(v)) != nil { dAtA[i] = 0x12 i++ i = encodeVarintCastvalue(dAtA, i, uint64(((*Wilson)(v)).Size())) n2, err := ((*Wilson)(v)).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Wilson) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Wilson) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Int64 != nil { dAtA[i] = 0x8 i++ i = encodeVarintCastvalue(dAtA, i, uint64(*m.Int64)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintCastvalue(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedCastaway(r randyCastvalue, easy bool) *Castaway { this := &Castaway{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.CastMapValueMessage = make(map[int32]MyWilson) for i := 0; i < v1; i++ { this.CastMapValueMessage[int32(r.Int31())] = (MyWilson)(*NewPopulatedWilson(r, easy)) } } if r.Intn(10) != 0 { v2 := r.Intn(10) this.CastMapValueMessageNullable = make(map[int32]*MyWilson) for i := 0; i < v2; i++ { this.CastMapValueMessageNullable[int32(r.Int31())] = (*MyWilson)(NewPopulatedWilson(r, easy)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCastvalue(r, 3) } return this } func NewPopulatedWilson(r randyCastvalue, easy bool) *Wilson { this := &Wilson{} if r.Intn(10) != 0 { v3 := int64(r.Int63()) if r.Intn(2) == 0 { v3 *= -1 } this.Int64 = &v3 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCastvalue(r, 2) } return this } type randyCastvalue interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneCastvalue(r randyCastvalue) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringCastvalue(r randyCastvalue) string { v4 := r.Intn(100) tmps := make([]rune, v4) for i := 0; i < v4; i++ { tmps[i] = randUTF8RuneCastvalue(r) } return string(tmps) } func randUnrecognizedCastvalue(r randyCastvalue, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldCastvalue(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldCastvalue(dAtA []byte, r randyCastvalue, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) v5 := r.Int63() if r.Intn(2) == 0 { v5 *= -1 } dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(v5)) case 1: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateCastvalue(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Castaway) Size() (n int) { var l int _ = l if len(m.CastMapValueMessage) > 0 { for k, v := range m.CastMapValueMessage { _ = k _ = v l = ((*Wilson)(&v)).Size() mapEntrySize := 1 + sovCastvalue(uint64(k)) + 1 + l + sovCastvalue(uint64(l)) n += mapEntrySize + 1 + sovCastvalue(uint64(mapEntrySize)) } } if len(m.CastMapValueMessageNullable) > 0 { for k, v := range m.CastMapValueMessageNullable { _ = k _ = v l = 0 if v != nil { l = ((*Wilson)(v)).Size() l += 1 + sovCastvalue(uint64(l)) } mapEntrySize := 1 + sovCastvalue(uint64(k)) + l n += mapEntrySize + 1 + sovCastvalue(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Wilson) Size() (n int) { var l int _ = l if m.Int64 != nil { n += 1 + sovCastvalue(uint64(*m.Int64)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovCastvalue(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozCastvalue(x uint64) (n int) { return sovCastvalue(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Castaway) String() string { if this == nil { return "nil" } keysForCastMapValueMessage := make([]int32, 0, len(this.CastMapValueMessage)) for k := range this.CastMapValueMessage { keysForCastMapValueMessage = append(keysForCastMapValueMessage, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessage) mapStringForCastMapValueMessage := "map[int32]MyWilson{" for _, k := range keysForCastMapValueMessage { mapStringForCastMapValueMessage += fmt.Sprintf("%v: %v,", k, this.CastMapValueMessage[k]) } mapStringForCastMapValueMessage += "}" keysForCastMapValueMessageNullable := make([]int32, 0, len(this.CastMapValueMessageNullable)) for k := range this.CastMapValueMessageNullable { keysForCastMapValueMessageNullable = append(keysForCastMapValueMessageNullable, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessageNullable) mapStringForCastMapValueMessageNullable := "map[int32]*MyWilson{" for _, k := range keysForCastMapValueMessageNullable { mapStringForCastMapValueMessageNullable += fmt.Sprintf("%v: %v,", k, this.CastMapValueMessageNullable[k]) } mapStringForCastMapValueMessageNullable += "}" s := strings.Join([]string{`&Castaway{`, `CastMapValueMessage:` + mapStringForCastMapValueMessage + `,`, `CastMapValueMessageNullable:` + mapStringForCastMapValueMessageNullable + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Wilson) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Wilson{`, `Int64:` + valueToStringCastvalue(this.Int64) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringCastvalue(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/marshaler/castvalue.proto", fileDescriptorCastvalue) } var fileDescriptorCastvalue = []byte{ // 358 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x8f, 0xbd, 0x4f, 0x2a, 0x41, 0x14, 0xc5, 0xe7, 0xb2, 0xe1, 0x85, 0x37, 0xbc, 0x82, 0xb7, 0xef, 0x15, 0x1b, 0x4c, 0x2e, 0x1b, 0x1a, 0x29, 0x74, 0x37, 0x21, 0xc4, 0x18, 0x4b, 0x8c, 0x85, 0x89, 0x58, 0x50, 0x68, 0x2c, 0x67, 0xc9, 0xba, 0x10, 0x17, 0x86, 0xec, 0x87, 0x66, 0x3b, 0x0a, 0x2b, 0xff, 0x12, 0x4b, 0x4b, 0x4b, 0xed, 0x28, 0x29, 0xad, 0x94, 0x19, 0x1b, 0x4a, 0x4a, 0x4a, 0xc3, 0xac, 0xf8, 0x91, 0xe0, 0x47, 0x62, 0x77, 0xef, 0x99, 0x7b, 0xce, 0xef, 0x0c, 0x35, 0x5b, 0xbc, 0xeb, 0xf0, 0xd0, 0xee, 0xb2, 0x20, 0x6c, 0x33, 0xdf, 0x0d, 0xec, 0x16, 0x0b, 0xa3, 0x53, 0xe6, 0xc7, 0xae, 0xd5, 0x0f, 0x78, 0xc4, 0xf5, 0xdf, 0x2f, 0x42, 0x71, 0xdd, 0xeb, 0x44, 0xed, 0xd8, 0xb1, 0x5a, 0xbc, 0x6b, 0x7b, 0xdc, 0xe3, 0xb6, 0xba, 0x70, 0xe2, 0x63, 0xb5, 0xa9, 0x45, 0x4d, 0xa9, 0xb3, 0x7c, 0xab, 0xd1, 0xdc, 0x36, 0x0b, 0x23, 0x76, 0xc6, 0x12, 0xbd, 0x4f, 0xff, 0xcd, 0xe7, 0x06, 0xeb, 0x1f, 0xcc, 0xb3, 0x1a, 0x6e, 0x18, 0x32, 0xcf, 0x35, 0xc0, 0xd4, 0x2a, 0xf9, 0xea, 0x9a, 0xf5, 0x4a, 0x5d, 0x38, 0xac, 0x25, 0xe7, 0x3b, 0xbd, 0x28, 0x48, 0xea, 0x85, 0xe1, 0x7d, 0x89, 0x5c, 0x3c, 0x94, 0x72, 0x8d, 0xe4, 0xb0, 0xe3, 0x87, 0xbc, 0xd7, 0x5c, 0x16, 0xad, 0x9f, 0x03, 0x5d, 0x59, 0xa2, 0xef, 0xc7, 0xbe, 0xcf, 0x1c, 0xdf, 0x35, 0x32, 0x0a, 0x5d, 0xfb, 0x26, 0x7a, 0x61, 0x4b, 0x2b, 0xfc, 0x79, 0x87, 0xff, 0x0c, 0x53, 0x3c, 0xa2, 0xc6, 0x47, 0x3f, 0xd1, 0x0b, 0x54, 0x3b, 0x71, 0x13, 0x03, 0x4c, 0xa8, 0x64, 0x9b, 0xf3, 0x51, 0x5f, 0xa5, 0x59, 0xd5, 0xc5, 0xc8, 0x98, 0x50, 0xc9, 0x57, 0xff, 0xbe, 0x69, 0xf7, 0x0c, 0x4b, 0xdf, 0xb7, 0x32, 0x9b, 0x50, 0x64, 0xd4, 0xfc, 0xaa, 0xe9, 0x0f, 0x11, 0x65, 0xa4, 0xbf, 0x52, 0x51, 0xff, 0x4f, 0xb3, 0xbb, 0xbd, 0x68, 0xa3, 0xa6, 0xa2, 0xb4, 0x66, 0xba, 0xd4, 0xf7, 0x86, 0x02, 0xc9, 0x48, 0x20, 0xb9, 0x13, 0x48, 0xc6, 0x02, 0x61, 0x22, 0x10, 0xa6, 0x02, 0x61, 0x26, 0x10, 0x06, 0x12, 0xe1, 0x52, 0x22, 0x5c, 0x49, 0x84, 0x6b, 0x89, 0x70, 0x23, 0x11, 0x86, 0x12, 0x61, 0x24, 0x91, 0x8c, 0x25, 0xc2, 0x44, 0x22, 0x99, 0x4a, 0x84, 0x99, 0x44, 0x32, 0x78, 0x44, 0xf2, 0x14, 0x00, 0x00, 0xff, 0xff, 0xc3, 0x22, 0x8c, 0x46, 0x8e, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/castvalue/combos/marshaler/castvalue.proto000066400000000000000000000051331317075173200266310ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 castvalue; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Castaway { map CastMapValueMessage = 1 [(gogoproto.castvalue) = "MyWilson", (gogoproto.nullable) = false]; map CastMapValueMessageNullable = 2 [(gogoproto.castvalue) = "MyWilson"]; } message Wilson { optional int64 Int64 = 1; } golang-gogoprotobuf-0.5/test/castvalue/combos/marshaler/castvaluepb_test.go000066400000000000000000000350361317075173200274610ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/castvalue.proto /* Package castvalue is a generated protocol buffer package. It is generated from these files: combos/marshaler/castvalue.proto It has these top-level messages: Castaway Wilson */ package castvalue import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestCastawayProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCastawayMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCastawayProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCastawayProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastaway(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Castaway{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestWilsonProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestWilsonMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkWilsonProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkWilsonProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedWilson(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Wilson{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCastawayJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestWilsonJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCastawayProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastawayProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastvalueDescription(t *testing.T) { CastvalueDescription() } func TestCastawayVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestWilsonVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCastawayFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestWilsonFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCastawayGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestWilsonGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCastawaySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCastawaySize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestWilsonSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkWilsonSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCastawayStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestWilsonStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/castvalue/combos/marshaler/mytypes.go000066400000000000000000000027201317075173200256150ustar00rootroot00000000000000// 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. package castvalue type MyWilson Wilson golang-gogoprotobuf-0.5/test/castvalue/combos/unmarshaler/000077500000000000000000000000001317075173200241165ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/castvalue/combos/unmarshaler/castvalue.pb.go000066400000000000000000001510041317075173200270350ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/castvalue.proto /* Package castvalue is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/castvalue.proto It has these top-level messages: Castaway Wilson */ package castvalue import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Castaway struct { CastMapValueMessage map[int32]MyWilson `protobuf:"bytes,1,rep,name=CastMapValueMessage,castvalue=MyWilson,castvaluetype=castvalue.Wilson" json:"CastMapValueMessage" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` CastMapValueMessageNullable map[int32]*MyWilson `protobuf:"bytes,2,rep,name=CastMapValueMessageNullable,castvalue=MyWilson,castvaluetype=castvalue.Wilson" json:"CastMapValueMessageNullable,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *Castaway) Reset() { *m = Castaway{} } func (*Castaway) ProtoMessage() {} func (*Castaway) Descriptor() ([]byte, []int) { return fileDescriptorCastvalue, []int{0} } type Wilson struct { Int64 *int64 `protobuf:"varint,1,opt,name=Int64" json:"Int64,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Wilson) Reset() { *m = Wilson{} } func (*Wilson) ProtoMessage() {} func (*Wilson) Descriptor() ([]byte, []int) { return fileDescriptorCastvalue, []int{1} } func init() { proto.RegisterType((*Castaway)(nil), "castvalue.Castaway") proto.RegisterType((*Wilson)(nil), "castvalue.Wilson") } func (this *Castaway) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CastvalueDescription() } func (this *Wilson) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return CastvalueDescription() } func CastvalueDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3867 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x24, 0xd7, 0x55, 0x56, 0xcf, 0x8f, 0x34, 0x73, 0x66, 0x34, 0x6a, 0x5d, 0xc9, 0xbb, 0xb3, 0x72, 0x3c, 0xab, 0x95, 0x7f, 0x56, 0xb6, 0x13, 0x29, 0xb5, 0xde, 0x5d, 0xaf, 0x67, 0x49, 0xcc, 0x68, 0x34, 0xab, 0xcc, 0xa2, 0xbf, 0xf4, 0x48, 0xf1, 0x6e, 0x78, 0xe8, 0x6a, 0xf5, 0xdc, 0x19, 0xf5, 0x6e, 0x4f, 0x77, 0xa7, 0xbb, 0x67, 0xd7, 0xda, 0xe2, 0x61, 0x29, 0x07, 0xa8, 0x40, 0x01, 0xe1, 0xa7, 0x8a, 0xc4, 0x38, 0x06, 0x52, 0x05, 0x0e, 0x09, 0x3f, 0x09, 0x81, 0x10, 0x78, 0x0a, 0x0f, 0x01, 0x3f, 0x51, 0xc9, 0x1b, 0x0f, 0x14, 0x78, 0x85, 0xab, 0x30, 0x60, 0xc0, 0x10, 0x3f, 0xa4, 0xca, 0x2f, 0xd4, 0xfd, 0xeb, 0xe9, 0x9e, 0x19, 0xa9, 0x47, 0xa1, 0xec, 0x3c, 0x69, 0xee, 0xb9, 0xe7, 0xfb, 0xee, 0xb9, 0xe7, 0x9e, 0x7b, 0xcf, 0xb9, 0xb7, 0x05, 0x5f, 0xbb, 0x02, 0xf3, 0x6d, 0xdb, 0x6e, 0x9b, 0x78, 0xd9, 0x71, 0x6d, 0xdf, 0xde, 0xeb, 0xb6, 0x96, 0x9b, 0xd8, 0xd3, 0x5d, 0xc3, 0xf1, 0x6d, 0x77, 0x89, 0xca, 0xd0, 0x14, 0xd3, 0x58, 0x12, 0x1a, 0x0b, 0x1b, 0x30, 0x7d, 0xcd, 0x30, 0xf1, 0x6a, 0xa0, 0xd8, 0xc0, 0x3e, 0xba, 0x02, 0xa9, 0x96, 0x61, 0xe2, 0xa2, 0x34, 0x9f, 0x5c, 0xcc, 0x5d, 0x78, 0x6c, 0xa9, 0x0f, 0xb4, 0x14, 0x45, 0x6c, 0x13, 0xb1, 0x42, 0x11, 0x0b, 0x6f, 0xa6, 0x60, 0x66, 0x48, 0x2f, 0x42, 0x90, 0xb2, 0xb4, 0x0e, 0x61, 0x94, 0x16, 0xb3, 0x0a, 0xfd, 0x8d, 0x8a, 0x30, 0xe1, 0x68, 0xfa, 0x6d, 0xad, 0x8d, 0x8b, 0x09, 0x2a, 0x16, 0x4d, 0x54, 0x02, 0x68, 0x62, 0x07, 0x5b, 0x4d, 0x6c, 0xe9, 0x07, 0xc5, 0xe4, 0x7c, 0x72, 0x31, 0xab, 0x84, 0x24, 0xe8, 0x69, 0x98, 0x76, 0xba, 0x7b, 0xa6, 0xa1, 0xab, 0x21, 0x35, 0x98, 0x4f, 0x2e, 0xa6, 0x15, 0x99, 0x75, 0xac, 0xf6, 0x94, 0xcf, 0xc3, 0xd4, 0x5d, 0xac, 0xdd, 0x0e, 0xab, 0xe6, 0xa8, 0x6a, 0x81, 0x88, 0x43, 0x8a, 0x55, 0xc8, 0x77, 0xb0, 0xe7, 0x69, 0x6d, 0xac, 0xfa, 0x07, 0x0e, 0x2e, 0xa6, 0xe8, 0xec, 0xe7, 0x07, 0x66, 0xdf, 0x3f, 0xf3, 0x1c, 0x47, 0xed, 0x1c, 0x38, 0x18, 0x55, 0x20, 0x8b, 0xad, 0x6e, 0x87, 0x31, 0xa4, 0x8f, 0xf0, 0x5f, 0xcd, 0xea, 0x76, 0xfa, 0x59, 0x32, 0x04, 0xc6, 0x29, 0x26, 0x3c, 0xec, 0xde, 0x31, 0x74, 0x5c, 0x1c, 0xa7, 0x04, 0xe7, 0x07, 0x08, 0x1a, 0xac, 0xbf, 0x9f, 0x43, 0xe0, 0x50, 0x15, 0xb2, 0xf8, 0x45, 0x1f, 0x5b, 0x9e, 0x61, 0x5b, 0xc5, 0x09, 0x4a, 0xf2, 0xf8, 0x90, 0x55, 0xc4, 0x66, 0xb3, 0x9f, 0xa2, 0x87, 0x43, 0x97, 0x61, 0xc2, 0x76, 0x7c, 0xc3, 0xb6, 0xbc, 0x62, 0x66, 0x5e, 0x5a, 0xcc, 0x5d, 0xf8, 0xd0, 0xd0, 0x40, 0xd8, 0x62, 0x3a, 0x8a, 0x50, 0x46, 0x75, 0x90, 0x3d, 0xbb, 0xeb, 0xea, 0x58, 0xd5, 0xed, 0x26, 0x56, 0x0d, 0xab, 0x65, 0x17, 0xb3, 0x94, 0xe0, 0xec, 0xe0, 0x44, 0xa8, 0x62, 0xd5, 0x6e, 0xe2, 0xba, 0xd5, 0xb2, 0x95, 0x82, 0x17, 0x69, 0xa3, 0x53, 0x30, 0xee, 0x1d, 0x58, 0xbe, 0xf6, 0x62, 0x31, 0x4f, 0x23, 0x84, 0xb7, 0x16, 0xfe, 0x6a, 0x1c, 0xa6, 0x46, 0x09, 0xb1, 0xab, 0x90, 0x6e, 0x91, 0x59, 0x16, 0x13, 0x27, 0xf1, 0x01, 0xc3, 0x44, 0x9d, 0x38, 0xfe, 0x23, 0x3a, 0xb1, 0x02, 0x39, 0x0b, 0x7b, 0x3e, 0x6e, 0xb2, 0x88, 0x48, 0x8e, 0x18, 0x53, 0xc0, 0x40, 0x83, 0x21, 0x95, 0xfa, 0x91, 0x42, 0xea, 0x06, 0x4c, 0x05, 0x26, 0xa9, 0xae, 0x66, 0xb5, 0x45, 0x6c, 0x2e, 0xc7, 0x59, 0xb2, 0x54, 0x13, 0x38, 0x85, 0xc0, 0x94, 0x02, 0x8e, 0xb4, 0xd1, 0x2a, 0x80, 0x6d, 0x61, 0xbb, 0xa5, 0x36, 0xb1, 0x6e, 0x16, 0x33, 0x47, 0x78, 0x69, 0x8b, 0xa8, 0x0c, 0x78, 0xc9, 0x66, 0x52, 0xdd, 0x44, 0xcf, 0xf5, 0x42, 0x6d, 0xe2, 0x88, 0x48, 0xd9, 0x60, 0x9b, 0x6c, 0x20, 0xda, 0x76, 0xa1, 0xe0, 0x62, 0x12, 0xf7, 0xb8, 0xc9, 0x67, 0x96, 0xa5, 0x46, 0x2c, 0xc5, 0xce, 0x4c, 0xe1, 0x30, 0x36, 0xb1, 0x49, 0x37, 0xdc, 0x44, 0x8f, 0x42, 0x20, 0x50, 0x69, 0x58, 0x01, 0x3d, 0x85, 0xf2, 0x42, 0xb8, 0xa9, 0x75, 0xf0, 0xdc, 0x3d, 0x28, 0x44, 0xdd, 0x83, 0x66, 0x21, 0xed, 0xf9, 0x9a, 0xeb, 0xd3, 0x28, 0x4c, 0x2b, 0xac, 0x81, 0x64, 0x48, 0x62, 0xab, 0x49, 0x4f, 0xb9, 0xb4, 0x42, 0x7e, 0xa2, 0x9f, 0xec, 0x4d, 0x38, 0x49, 0x27, 0xfc, 0xc4, 0xe0, 0x8a, 0x46, 0x98, 0xfb, 0xe7, 0x3d, 0xf7, 0x2c, 0x4c, 0x46, 0x26, 0x30, 0xea, 0xd0, 0x0b, 0x3f, 0x03, 0x0f, 0x0d, 0xa5, 0x46, 0x37, 0x60, 0xb6, 0x6b, 0x19, 0x96, 0x8f, 0x5d, 0xc7, 0xc5, 0x24, 0x62, 0xd9, 0x50, 0xc5, 0x7f, 0x9d, 0x38, 0x22, 0xe6, 0x76, 0xc3, 0xda, 0x8c, 0x45, 0x99, 0xe9, 0x0e, 0x0a, 0x9f, 0xca, 0x66, 0xde, 0x9a, 0x90, 0xef, 0xdf, 0xbf, 0x7f, 0x3f, 0xb1, 0xf0, 0x85, 0x71, 0x98, 0x1d, 0xb6, 0x67, 0x86, 0x6e, 0xdf, 0x53, 0x30, 0x6e, 0x75, 0x3b, 0x7b, 0xd8, 0xa5, 0x4e, 0x4a, 0x2b, 0xbc, 0x85, 0x2a, 0x90, 0x36, 0xb5, 0x3d, 0x6c, 0x16, 0x53, 0xf3, 0xd2, 0x62, 0xe1, 0xc2, 0xd3, 0x23, 0xed, 0xca, 0xa5, 0x75, 0x02, 0x51, 0x18, 0x12, 0x7d, 0x1c, 0x52, 0xfc, 0x88, 0x26, 0x0c, 0x4f, 0x8d, 0xc6, 0x40, 0xf6, 0x92, 0x42, 0x71, 0xe8, 0x61, 0xc8, 0x92, 0xbf, 0x2c, 0x36, 0xc6, 0xa9, 0xcd, 0x19, 0x22, 0x20, 0x71, 0x81, 0xe6, 0x20, 0x43, 0xb7, 0x49, 0x13, 0x8b, 0xd4, 0x16, 0xb4, 0x49, 0x60, 0x35, 0x71, 0x4b, 0xeb, 0x9a, 0xbe, 0x7a, 0x47, 0x33, 0xbb, 0x98, 0x06, 0x7c, 0x56, 0xc9, 0x73, 0xe1, 0xa7, 0x88, 0x0c, 0x9d, 0x85, 0x1c, 0xdb, 0x55, 0x86, 0xd5, 0xc4, 0x2f, 0xd2, 0xd3, 0x33, 0xad, 0xb0, 0x8d, 0x56, 0x27, 0x12, 0x32, 0xfc, 0x2d, 0xcf, 0xb6, 0x44, 0x68, 0xd2, 0x21, 0x88, 0x80, 0x0e, 0xff, 0x6c, 0xff, 0xc1, 0xfd, 0xc8, 0xf0, 0xe9, 0xf5, 0xc7, 0xd4, 0xc2, 0xb7, 0x12, 0x90, 0xa2, 0xe7, 0xc5, 0x14, 0xe4, 0x76, 0x6e, 0x6e, 0xd7, 0xd4, 0xd5, 0xad, 0xdd, 0x95, 0xf5, 0x9a, 0x2c, 0xa1, 0x02, 0x00, 0x15, 0x5c, 0x5b, 0xdf, 0xaa, 0xec, 0xc8, 0x89, 0xa0, 0x5d, 0xdf, 0xdc, 0xb9, 0x7c, 0x51, 0x4e, 0x06, 0x80, 0x5d, 0x26, 0x48, 0x85, 0x15, 0x9e, 0xb9, 0x20, 0xa7, 0x91, 0x0c, 0x79, 0x46, 0x50, 0xbf, 0x51, 0x5b, 0xbd, 0x7c, 0x51, 0x1e, 0x8f, 0x4a, 0x9e, 0xb9, 0x20, 0x4f, 0xa0, 0x49, 0xc8, 0x52, 0xc9, 0xca, 0xd6, 0xd6, 0xba, 0x9c, 0x09, 0x38, 0x1b, 0x3b, 0x4a, 0x7d, 0x73, 0x4d, 0xce, 0x06, 0x9c, 0x6b, 0xca, 0xd6, 0xee, 0xb6, 0x0c, 0x01, 0xc3, 0x46, 0xad, 0xd1, 0xa8, 0xac, 0xd5, 0xe4, 0x5c, 0xa0, 0xb1, 0x72, 0x73, 0xa7, 0xd6, 0x90, 0xf3, 0x11, 0xb3, 0x9e, 0xb9, 0x20, 0x4f, 0x06, 0x43, 0xd4, 0x36, 0x77, 0x37, 0xe4, 0x02, 0x9a, 0x86, 0x49, 0x36, 0x84, 0x30, 0x62, 0xaa, 0x4f, 0x74, 0xf9, 0xa2, 0x2c, 0xf7, 0x0c, 0x61, 0x2c, 0xd3, 0x11, 0xc1, 0xe5, 0x8b, 0x32, 0x5a, 0xa8, 0x42, 0x9a, 0x46, 0x17, 0x42, 0x50, 0x58, 0xaf, 0xac, 0xd4, 0xd6, 0xd5, 0xad, 0xed, 0x9d, 0xfa, 0xd6, 0x66, 0x65, 0x5d, 0x96, 0x7a, 0x32, 0xa5, 0xf6, 0xc9, 0xdd, 0xba, 0x52, 0x5b, 0x95, 0x13, 0x61, 0xd9, 0x76, 0xad, 0xb2, 0x53, 0x5b, 0x95, 0x93, 0x0b, 0x3a, 0xcc, 0x0e, 0x3b, 0x27, 0x87, 0xee, 0x8c, 0xd0, 0x12, 0x27, 0x8e, 0x58, 0x62, 0xca, 0x35, 0xb0, 0xc4, 0x5f, 0x96, 0x60, 0x66, 0x48, 0xae, 0x18, 0x3a, 0xc8, 0xf3, 0x90, 0x66, 0x21, 0xca, 0xb2, 0xe7, 0x93, 0x43, 0x93, 0x0e, 0x0d, 0xd8, 0x81, 0x0c, 0x4a, 0x71, 0xe1, 0x0a, 0x22, 0x79, 0x44, 0x05, 0x41, 0x28, 0x06, 0x8c, 0x7c, 0x49, 0x82, 0xe2, 0x51, 0xdc, 0x31, 0x07, 0x45, 0x22, 0x72, 0x50, 0x5c, 0xed, 0x37, 0xe0, 0xdc, 0xd1, 0x73, 0x18, 0xb0, 0xe2, 0x35, 0x09, 0x4e, 0x0d, 0x2f, 0xb4, 0x86, 0xda, 0xf0, 0x71, 0x18, 0xef, 0x60, 0x7f, 0xdf, 0x16, 0xc5, 0xc6, 0x13, 0x43, 0x52, 0x18, 0xe9, 0xee, 0xf7, 0x15, 0x47, 0x85, 0x73, 0x60, 0xf2, 0xa8, 0x6a, 0x89, 0x59, 0x33, 0x60, 0xe9, 0xe7, 0x12, 0xf0, 0xd0, 0x50, 0xf2, 0xa1, 0x86, 0x3e, 0x02, 0x60, 0x58, 0x4e, 0xd7, 0x67, 0x05, 0x05, 0x3b, 0x9f, 0xb2, 0x54, 0x42, 0xf7, 0x3e, 0x39, 0x7b, 0xba, 0x7e, 0xd0, 0x9f, 0xa4, 0xfd, 0xc0, 0x44, 0x54, 0xe1, 0x4a, 0xcf, 0xd0, 0x14, 0x35, 0xb4, 0x74, 0xc4, 0x4c, 0x07, 0x72, 0xf5, 0x47, 0x41, 0xd6, 0x4d, 0x03, 0x5b, 0xbe, 0xea, 0xf9, 0x2e, 0xd6, 0x3a, 0x86, 0xd5, 0xa6, 0x07, 0x70, 0xa6, 0x9c, 0x6e, 0x69, 0xa6, 0x87, 0x95, 0x29, 0xd6, 0xdd, 0x10, 0xbd, 0x04, 0x41, 0x73, 0x9c, 0x1b, 0x42, 0x8c, 0x47, 0x10, 0xac, 0x3b, 0x40, 0x2c, 0x7c, 0x33, 0x03, 0xb9, 0x50, 0x59, 0x8a, 0xce, 0x41, 0xfe, 0x96, 0x76, 0x47, 0x53, 0xc5, 0x55, 0x83, 0x79, 0x22, 0x47, 0x64, 0xdb, 0xfc, 0xba, 0xf1, 0x51, 0x98, 0xa5, 0x2a, 0x76, 0xd7, 0xc7, 0xae, 0xaa, 0x9b, 0x9a, 0xe7, 0x51, 0xa7, 0x65, 0xa8, 0x2a, 0x22, 0x7d, 0x5b, 0xa4, 0xab, 0x2a, 0x7a, 0xd0, 0x25, 0x98, 0xa1, 0x88, 0x4e, 0xd7, 0xf4, 0x0d, 0xc7, 0xc4, 0x2a, 0xb9, 0xfc, 0x78, 0xf4, 0x20, 0x0e, 0x2c, 0x9b, 0x26, 0x1a, 0x1b, 0x5c, 0x81, 0x58, 0xe4, 0xa1, 0x55, 0x78, 0x84, 0xc2, 0xda, 0xd8, 0xc2, 0xae, 0xe6, 0x63, 0x15, 0x7f, 0xa6, 0xab, 0x99, 0x9e, 0xaa, 0x59, 0x4d, 0x75, 0x5f, 0xf3, 0xf6, 0x8b, 0xb3, 0x84, 0x60, 0x25, 0x51, 0x94, 0x94, 0x33, 0x44, 0x71, 0x8d, 0xeb, 0xd5, 0xa8, 0x5a, 0xc5, 0x6a, 0x7e, 0x42, 0xf3, 0xf6, 0x51, 0x19, 0x4e, 0x51, 0x16, 0xcf, 0x77, 0x0d, 0xab, 0xad, 0xea, 0xfb, 0x58, 0xbf, 0xad, 0x76, 0xfd, 0xd6, 0x95, 0xe2, 0xc3, 0xe1, 0xf1, 0xa9, 0x85, 0x0d, 0xaa, 0x53, 0x25, 0x2a, 0xbb, 0x7e, 0xeb, 0x0a, 0x6a, 0x40, 0x9e, 0x2c, 0x46, 0xc7, 0xb8, 0x87, 0xd5, 0x96, 0xed, 0xd2, 0xcc, 0x52, 0x18, 0xb2, 0xb3, 0x43, 0x1e, 0x5c, 0xda, 0xe2, 0x80, 0x0d, 0xbb, 0x89, 0xcb, 0xe9, 0xc6, 0x76, 0xad, 0xb6, 0xaa, 0xe4, 0x04, 0xcb, 0x35, 0xdb, 0x25, 0x01, 0xd5, 0xb6, 0x03, 0x07, 0xe7, 0x58, 0x40, 0xb5, 0x6d, 0xe1, 0xde, 0x4b, 0x30, 0xa3, 0xeb, 0x6c, 0xce, 0x86, 0xae, 0xf2, 0x2b, 0x8a, 0x57, 0x94, 0x23, 0xce, 0xd2, 0xf5, 0x35, 0xa6, 0xc0, 0x63, 0xdc, 0x43, 0xcf, 0xc1, 0x43, 0x3d, 0x67, 0x85, 0x81, 0xd3, 0x03, 0xb3, 0xec, 0x87, 0x5e, 0x82, 0x19, 0xe7, 0x60, 0x10, 0x88, 0x22, 0x23, 0x3a, 0x07, 0xfd, 0xb0, 0x67, 0x61, 0xd6, 0xd9, 0x77, 0x06, 0x71, 0x33, 0x61, 0x1c, 0x72, 0xf6, 0x9d, 0x7e, 0xe0, 0xe3, 0xf4, 0xbe, 0xea, 0x62, 0x5d, 0xf3, 0x71, 0xb3, 0x78, 0x3a, 0xac, 0x1e, 0xea, 0x40, 0xcb, 0x20, 0xeb, 0xba, 0x8a, 0x2d, 0x6d, 0xcf, 0xc4, 0xaa, 0xe6, 0x62, 0x4b, 0xf3, 0x8a, 0x67, 0xc3, 0xca, 0x05, 0x5d, 0xaf, 0xd1, 0xde, 0x0a, 0xed, 0x44, 0x4f, 0xc1, 0xb4, 0xbd, 0x77, 0x4b, 0x67, 0x21, 0xa9, 0x3a, 0x2e, 0x6e, 0x19, 0x2f, 0x16, 0x1f, 0xa3, 0xfe, 0x9d, 0x22, 0x1d, 0x34, 0x20, 0xb7, 0xa9, 0x18, 0x3d, 0x09, 0xb2, 0xee, 0xed, 0x6b, 0xae, 0x43, 0x6b, 0x02, 0xcf, 0xd1, 0x74, 0x5c, 0x7c, 0x9c, 0xa9, 0x32, 0xf9, 0xa6, 0x10, 0x93, 0x2d, 0xe1, 0xdd, 0x35, 0x5a, 0xbe, 0x60, 0x3c, 0xcf, 0xb6, 0x04, 0x95, 0x71, 0xb6, 0x45, 0x90, 0x89, 0x2b, 0x22, 0x03, 0x2f, 0x52, 0xb5, 0x82, 0xb3, 0xef, 0x84, 0xc7, 0x7d, 0x14, 0x26, 0x89, 0x66, 0x6f, 0xd0, 0x27, 0x59, 0x3d, 0xe3, 0xec, 0x87, 0x46, 0x7c, 0xdf, 0x4a, 0xcb, 0x85, 0x32, 0xe4, 0xc3, 0xf1, 0x89, 0xb2, 0xc0, 0x22, 0x54, 0x96, 0x48, 0xae, 0xaf, 0x6e, 0xad, 0x92, 0x2c, 0xfd, 0xe9, 0x9a, 0x9c, 0x20, 0xd5, 0xc2, 0x7a, 0x7d, 0xa7, 0xa6, 0x2a, 0xbb, 0x9b, 0x3b, 0xf5, 0x8d, 0x9a, 0x9c, 0x0c, 0x97, 0xa5, 0xdf, 0x4d, 0x40, 0x21, 0x7a, 0xc3, 0x40, 0x3f, 0x01, 0xa7, 0xc5, 0x73, 0x80, 0x87, 0x7d, 0xf5, 0xae, 0xe1, 0xd2, 0x2d, 0xd3, 0xd1, 0x58, 0x85, 0x1d, 0x2c, 0xda, 0x2c, 0xd7, 0x6a, 0x60, 0xff, 0x05, 0xc3, 0x25, 0x1b, 0xa2, 0xa3, 0xf9, 0x68, 0x1d, 0xce, 0x5a, 0xb6, 0xea, 0xf9, 0x9a, 0xd5, 0xd4, 0xdc, 0xa6, 0xda, 0x7b, 0x88, 0x51, 0x35, 0x5d, 0xc7, 0x9e, 0x67, 0xb3, 0x54, 0x15, 0xb0, 0x7c, 0xc8, 0xb2, 0x1b, 0x5c, 0xb9, 0x77, 0x86, 0x57, 0xb8, 0x6a, 0x5f, 0x80, 0x25, 0x8f, 0x0a, 0xb0, 0x87, 0x21, 0xdb, 0xd1, 0x1c, 0x15, 0x5b, 0xbe, 0x7b, 0x40, 0xeb, 0xca, 0x8c, 0x92, 0xe9, 0x68, 0x4e, 0x8d, 0xb4, 0x3f, 0x98, 0xf2, 0xfe, 0x1f, 0x93, 0x90, 0x0f, 0xd7, 0x96, 0xa4, 0x54, 0xd7, 0x69, 0x1e, 0x91, 0xe8, 0x49, 0xf3, 0xe8, 0xb1, 0x95, 0xe8, 0x52, 0x95, 0x24, 0x98, 0xf2, 0x38, 0xab, 0xf8, 0x14, 0x86, 0x24, 0xc9, 0x9d, 0x9c, 0x2d, 0x98, 0xdd, 0x62, 0x32, 0x0a, 0x6f, 0xa1, 0x35, 0x18, 0xbf, 0xe5, 0x51, 0xee, 0x71, 0xca, 0xfd, 0xd8, 0xf1, 0xdc, 0xd7, 0x1b, 0x94, 0x3c, 0x7b, 0xbd, 0xa1, 0x6e, 0x6e, 0x29, 0x1b, 0x95, 0x75, 0x85, 0xc3, 0xd1, 0x19, 0x48, 0x99, 0xda, 0xbd, 0x83, 0x68, 0x2a, 0xa2, 0xa2, 0x51, 0x1d, 0x7f, 0x06, 0x52, 0x77, 0xb1, 0x76, 0x3b, 0x9a, 0x00, 0xa8, 0xe8, 0x7d, 0x0c, 0xfd, 0x65, 0x48, 0x53, 0x7f, 0x21, 0x00, 0xee, 0x31, 0x79, 0x0c, 0x65, 0x20, 0x55, 0xdd, 0x52, 0x48, 0xf8, 0xcb, 0x90, 0x67, 0x52, 0x75, 0xbb, 0x5e, 0xab, 0xd6, 0xe4, 0xc4, 0xc2, 0x25, 0x18, 0x67, 0x4e, 0x20, 0x5b, 0x23, 0x70, 0x83, 0x3c, 0xc6, 0x9b, 0x9c, 0x43, 0x12, 0xbd, 0xbb, 0x1b, 0x2b, 0x35, 0x45, 0x4e, 0x84, 0x97, 0xd7, 0x83, 0x7c, 0xb8, 0xac, 0xfc, 0x60, 0x62, 0xea, 0xaf, 0x25, 0xc8, 0x85, 0xca, 0x44, 0x52, 0xa0, 0x68, 0xa6, 0x69, 0xdf, 0x55, 0x35, 0xd3, 0xd0, 0x3c, 0x1e, 0x14, 0x40, 0x45, 0x15, 0x22, 0x19, 0x75, 0xd1, 0x3e, 0x10, 0xe3, 0x5f, 0x95, 0x40, 0xee, 0x2f, 0x31, 0xfb, 0x0c, 0x94, 0x7e, 0xac, 0x06, 0xbe, 0x22, 0x41, 0x21, 0x5a, 0x57, 0xf6, 0x99, 0x77, 0xee, 0xc7, 0x6a, 0xde, 0x1b, 0x09, 0x98, 0x8c, 0x54, 0x93, 0xa3, 0x5a, 0xf7, 0x19, 0x98, 0x36, 0x9a, 0xb8, 0xe3, 0xd8, 0x3e, 0xb6, 0xf4, 0x03, 0xd5, 0xc4, 0x77, 0xb0, 0x59, 0x5c, 0xa0, 0x07, 0xc5, 0xf2, 0xf1, 0xf5, 0xea, 0x52, 0xbd, 0x87, 0x5b, 0x27, 0xb0, 0xf2, 0x4c, 0x7d, 0xb5, 0xb6, 0xb1, 0xbd, 0xb5, 0x53, 0xdb, 0xac, 0xde, 0x54, 0x77, 0x37, 0x7f, 0x6a, 0x73, 0xeb, 0x85, 0x4d, 0x45, 0x36, 0xfa, 0xd4, 0xde, 0xc7, 0xad, 0xbe, 0x0d, 0x72, 0xbf, 0x51, 0xe8, 0x34, 0x0c, 0x33, 0x4b, 0x1e, 0x43, 0x33, 0x30, 0xb5, 0xb9, 0xa5, 0x36, 0xea, 0xab, 0x35, 0xb5, 0x76, 0xed, 0x5a, 0xad, 0xba, 0xd3, 0x60, 0x17, 0xf8, 0x40, 0x7b, 0x27, 0xba, 0xa9, 0x5f, 0x4e, 0xc2, 0xcc, 0x10, 0x4b, 0x50, 0x85, 0xdf, 0x1d, 0xd8, 0x75, 0xe6, 0x23, 0xa3, 0x58, 0xbf, 0x44, 0x52, 0xfe, 0xb6, 0xe6, 0xfa, 0xfc, 0xaa, 0xf1, 0x24, 0x10, 0x2f, 0x59, 0xbe, 0xd1, 0x32, 0xb0, 0xcb, 0xdf, 0x3b, 0xd8, 0x85, 0x62, 0xaa, 0x27, 0x67, 0x4f, 0x1e, 0x1f, 0x06, 0xe4, 0xd8, 0x9e, 0xe1, 0x1b, 0x77, 0xb0, 0x6a, 0x58, 0xe2, 0x71, 0x84, 0x5c, 0x30, 0x52, 0x8a, 0x2c, 0x7a, 0xea, 0x96, 0x1f, 0x68, 0x5b, 0xb8, 0xad, 0xf5, 0x69, 0x93, 0x03, 0x3c, 0xa9, 0xc8, 0xa2, 0x27, 0xd0, 0x3e, 0x07, 0xf9, 0xa6, 0xdd, 0x25, 0x55, 0x17, 0xd3, 0x23, 0xf9, 0x42, 0x52, 0x72, 0x4c, 0x16, 0xa8, 0xf0, 0x7a, 0xba, 0xf7, 0x2a, 0x93, 0x57, 0x72, 0x4c, 0xc6, 0x54, 0xce, 0xc3, 0x94, 0xd6, 0x6e, 0xbb, 0x84, 0x5c, 0x10, 0xb1, 0x1b, 0x42, 0x21, 0x10, 0x53, 0xc5, 0xb9, 0xeb, 0x90, 0x11, 0x7e, 0x20, 0x29, 0x99, 0x78, 0x42, 0x75, 0xd8, 0xcb, 0x5c, 0x62, 0x31, 0xab, 0x64, 0x2c, 0xd1, 0x79, 0x0e, 0xf2, 0x86, 0xa7, 0xf6, 0x1e, 0x99, 0x13, 0xf3, 0x89, 0xc5, 0x8c, 0x92, 0x33, 0xbc, 0xe0, 0x81, 0x6e, 0xe1, 0xb5, 0x04, 0x14, 0xa2, 0x8f, 0xe4, 0x68, 0x15, 0x32, 0xa6, 0xad, 0x6b, 0x34, 0xb4, 0xd8, 0x17, 0x9a, 0xc5, 0x98, 0x77, 0xf5, 0xa5, 0x75, 0xae, 0xaf, 0x04, 0xc8, 0xb9, 0xbf, 0x97, 0x20, 0x23, 0xc4, 0xe8, 0x14, 0xa4, 0x1c, 0xcd, 0xdf, 0xa7, 0x74, 0xe9, 0x95, 0x84, 0x2c, 0x29, 0xb4, 0x4d, 0xe4, 0x9e, 0xa3, 0x59, 0x34, 0x04, 0xb8, 0x9c, 0xb4, 0xc9, 0xba, 0x9a, 0x58, 0x6b, 0xd2, 0xeb, 0x87, 0xdd, 0xe9, 0x60, 0xcb, 0xf7, 0xc4, 0xba, 0x72, 0x79, 0x95, 0x8b, 0xd1, 0xd3, 0x30, 0xed, 0xbb, 0x9a, 0x61, 0x46, 0x74, 0x53, 0x54, 0x57, 0x16, 0x1d, 0x81, 0x72, 0x19, 0xce, 0x08, 0xde, 0x26, 0xf6, 0x35, 0x7d, 0x1f, 0x37, 0x7b, 0xa0, 0x71, 0xfa, 0x02, 0x7b, 0x9a, 0x2b, 0xac, 0xf2, 0x7e, 0x81, 0x5d, 0xf8, 0xbe, 0x04, 0xd3, 0xe2, 0xc2, 0xd4, 0x0c, 0x9c, 0xb5, 0x01, 0xa0, 0x59, 0x96, 0xed, 0x87, 0xdd, 0x35, 0x18, 0xca, 0x03, 0xb8, 0xa5, 0x4a, 0x00, 0x52, 0x42, 0x04, 0x73, 0x1d, 0x80, 0x5e, 0xcf, 0x91, 0x6e, 0x3b, 0x0b, 0x39, 0xfe, 0x05, 0x84, 0x7e, 0x46, 0x63, 0x57, 0x6c, 0x60, 0x22, 0x72, 0xb3, 0x42, 0xb3, 0x90, 0xde, 0xc3, 0x6d, 0xc3, 0xe2, 0xef, 0x9a, 0xac, 0x21, 0xde, 0x6a, 0x53, 0xc1, 0x5b, 0xed, 0xca, 0x0d, 0x98, 0xd1, 0xed, 0x4e, 0xbf, 0xb9, 0x2b, 0x72, 0xdf, 0x35, 0xdf, 0xfb, 0x84, 0xf4, 0x69, 0xe8, 0x95, 0x98, 0x5f, 0x4e, 0x24, 0xd7, 0xb6, 0x57, 0xbe, 0x9a, 0x98, 0x5b, 0x63, 0xb8, 0x6d, 0x31, 0x4d, 0x05, 0xb7, 0x4c, 0xac, 0x13, 0xd3, 0xe1, 0x07, 0x4f, 0xc0, 0x47, 0xda, 0x86, 0xbf, 0xdf, 0xdd, 0x5b, 0xd2, 0xed, 0xce, 0x72, 0xdb, 0x6e, 0xdb, 0xbd, 0xcf, 0x86, 0xa4, 0x45, 0x1b, 0xf4, 0x17, 0xff, 0x74, 0x98, 0x0d, 0xa4, 0x73, 0xb1, 0xdf, 0x19, 0xcb, 0x9b, 0x30, 0xc3, 0x95, 0x55, 0xfa, 0xed, 0x82, 0x5d, 0x21, 0xd0, 0xb1, 0xef, 0x3f, 0xc5, 0x6f, 0xbc, 0x49, 0x73, 0xb5, 0x32, 0xcd, 0xa1, 0xa4, 0x8f, 0xdd, 0x32, 0xca, 0x0a, 0x3c, 0x14, 0xe1, 0x63, 0xfb, 0x12, 0xbb, 0x31, 0x8c, 0xdf, 0xe5, 0x8c, 0x33, 0x21, 0xc6, 0x06, 0x87, 0x96, 0xab, 0x30, 0x79, 0x12, 0xae, 0xbf, 0xe5, 0x5c, 0x79, 0x1c, 0x26, 0x59, 0x83, 0x29, 0x4a, 0xa2, 0x77, 0x3d, 0xdf, 0xee, 0xd0, 0x43, 0xef, 0x78, 0x9a, 0xbf, 0x7b, 0x93, 0x6d, 0x94, 0x02, 0x81, 0x55, 0x03, 0x54, 0xb9, 0x0c, 0xf4, 0x73, 0x4d, 0x13, 0xeb, 0x66, 0x0c, 0xc3, 0xeb, 0xdc, 0x90, 0x40, 0xbf, 0xfc, 0x29, 0x98, 0x25, 0xbf, 0xe9, 0x99, 0x14, 0xb6, 0x24, 0xfe, 0xb5, 0xab, 0xf8, 0xfd, 0x97, 0xd8, 0x5e, 0x9c, 0x09, 0x08, 0x42, 0x36, 0x85, 0x56, 0xb1, 0x8d, 0x7d, 0x1f, 0xbb, 0x9e, 0xaa, 0x99, 0xc3, 0xcc, 0x0b, 0x3d, 0x17, 0x14, 0xbf, 0xf8, 0x76, 0x74, 0x15, 0xd7, 0x18, 0xb2, 0x62, 0x9a, 0xe5, 0x5d, 0x38, 0x3d, 0x24, 0x2a, 0x46, 0xe0, 0x7c, 0x99, 0x73, 0xce, 0x0e, 0x44, 0x06, 0xa1, 0xdd, 0x06, 0x21, 0x0f, 0xd6, 0x72, 0x04, 0xce, 0xdf, 0xe6, 0x9c, 0x88, 0x63, 0xc5, 0x92, 0x12, 0xc6, 0xeb, 0x30, 0x7d, 0x07, 0xbb, 0x7b, 0xb6, 0xc7, 0x9f, 0x68, 0x46, 0xa0, 0x7b, 0x85, 0xd3, 0x4d, 0x71, 0x20, 0x7d, 0xb3, 0x21, 0x5c, 0xcf, 0x41, 0xa6, 0xa5, 0xe9, 0x78, 0x04, 0x8a, 0x2f, 0x71, 0x8a, 0x09, 0xa2, 0x4f, 0xa0, 0x15, 0xc8, 0xb7, 0x6d, 0x9e, 0x96, 0xe2, 0xe1, 0xaf, 0x72, 0x78, 0x4e, 0x60, 0x38, 0x85, 0x63, 0x3b, 0x5d, 0x93, 0xe4, 0xac, 0x78, 0x8a, 0xdf, 0x11, 0x14, 0x02, 0xc3, 0x29, 0x4e, 0xe0, 0xd6, 0xdf, 0x15, 0x14, 0x5e, 0xc8, 0x9f, 0xcf, 0x43, 0xce, 0xb6, 0xcc, 0x03, 0xdb, 0x1a, 0xc5, 0x88, 0xdf, 0xe3, 0x0c, 0xc0, 0x21, 0x84, 0xe0, 0x2a, 0x64, 0x47, 0x5d, 0x88, 0xdf, 0x7f, 0x5b, 0x6c, 0x0f, 0xb1, 0x02, 0x6b, 0x30, 0x25, 0x0e, 0x28, 0xc3, 0xb6, 0x46, 0xa0, 0xf8, 0x03, 0x4e, 0x51, 0x08, 0xc1, 0xf8, 0x34, 0x7c, 0xec, 0xf9, 0x6d, 0x3c, 0x0a, 0xc9, 0x6b, 0x62, 0x1a, 0x1c, 0xc2, 0x5d, 0xb9, 0x87, 0x2d, 0x7d, 0x7f, 0x34, 0x86, 0xaf, 0x08, 0x57, 0x0a, 0x0c, 0xa1, 0xa8, 0xc2, 0x64, 0x47, 0x73, 0xbd, 0x7d, 0xcd, 0x1c, 0x69, 0x39, 0xfe, 0x90, 0x73, 0xe4, 0x03, 0x10, 0xf7, 0x48, 0xd7, 0x3a, 0x09, 0xcd, 0x57, 0x85, 0x47, 0x42, 0x30, 0xbe, 0xf5, 0x3c, 0x9f, 0xbe, 0x67, 0x9d, 0x84, 0xed, 0x6b, 0x62, 0xeb, 0x31, 0xec, 0x46, 0x98, 0xf1, 0x2a, 0x64, 0x3d, 0xe3, 0xde, 0x48, 0x34, 0x7f, 0x24, 0x56, 0x9a, 0x02, 0x08, 0xf8, 0x26, 0x9c, 0x19, 0x9a, 0x26, 0x46, 0x20, 0xfb, 0x63, 0x4e, 0x76, 0x6a, 0x48, 0xaa, 0xe0, 0x47, 0xc2, 0x49, 0x29, 0xff, 0x44, 0x1c, 0x09, 0xb8, 0x8f, 0x6b, 0x9b, 0x5c, 0x14, 0x3c, 0xad, 0x75, 0x32, 0xaf, 0xfd, 0xa9, 0xf0, 0x1a, 0xc3, 0x46, 0xbc, 0xb6, 0x03, 0xa7, 0x38, 0xe3, 0xc9, 0xd6, 0xf5, 0xeb, 0xe2, 0x60, 0x65, 0xe8, 0xdd, 0xe8, 0xea, 0xfe, 0x34, 0xcc, 0x05, 0xee, 0x14, 0x15, 0xa9, 0xa7, 0x76, 0x34, 0x67, 0x04, 0xe6, 0x6f, 0x70, 0x66, 0x71, 0xe2, 0x07, 0x25, 0xad, 0xb7, 0xa1, 0x39, 0x84, 0xfc, 0x06, 0x14, 0x05, 0x79, 0xd7, 0x72, 0xb1, 0x6e, 0xb7, 0x2d, 0xe3, 0x1e, 0x6e, 0x8e, 0x40, 0xfd, 0x67, 0x7d, 0x4b, 0xb5, 0x1b, 0x82, 0x13, 0xe6, 0x3a, 0xc8, 0x41, 0xad, 0xa2, 0x1a, 0x1d, 0xc7, 0x76, 0xfd, 0x18, 0xc6, 0x6f, 0x8a, 0x95, 0x0a, 0x70, 0x75, 0x0a, 0x2b, 0xd7, 0xa0, 0x40, 0x9b, 0xa3, 0x86, 0xe4, 0x9f, 0x73, 0xa2, 0xc9, 0x1e, 0x8a, 0x1f, 0x1c, 0xba, 0xdd, 0x71, 0x34, 0x77, 0x94, 0xf3, 0xef, 0x2f, 0xc4, 0xc1, 0xc1, 0x21, 0xfc, 0xe0, 0xf0, 0x0f, 0x1c, 0x4c, 0xb2, 0xfd, 0x08, 0x0c, 0xdf, 0x12, 0x07, 0x87, 0xc0, 0x70, 0x0a, 0x51, 0x30, 0x8c, 0x40, 0xf1, 0x97, 0x82, 0x42, 0x60, 0x08, 0xc5, 0x27, 0x7b, 0x89, 0xd6, 0xc5, 0x6d, 0xc3, 0xf3, 0x5d, 0x56, 0x07, 0x1f, 0x4f, 0xf5, 0xed, 0xb7, 0xa3, 0x45, 0x98, 0x12, 0x82, 0x96, 0xaf, 0xc3, 0x54, 0x5f, 0x89, 0x81, 0xe2, 0xfe, 0xf7, 0xa3, 0xf8, 0xb3, 0xef, 0xf2, 0xc3, 0x28, 0x5a, 0x61, 0x94, 0xd7, 0xc9, 0xba, 0x47, 0xeb, 0x80, 0x78, 0xb2, 0x97, 0xde, 0x0d, 0x96, 0x3e, 0x52, 0x06, 0x94, 0xaf, 0xc1, 0x64, 0xa4, 0x06, 0x88, 0xa7, 0xfa, 0x2c, 0xa7, 0xca, 0x87, 0x4b, 0x80, 0xf2, 0x25, 0x48, 0x91, 0x7c, 0x1e, 0x0f, 0xff, 0x39, 0x0e, 0xa7, 0xea, 0xe5, 0x8f, 0x41, 0x46, 0xe4, 0xf1, 0x78, 0xe8, 0xcf, 0x73, 0x68, 0x00, 0x21, 0x70, 0x91, 0xc3, 0xe3, 0xe1, 0xbf, 0x20, 0xe0, 0x02, 0x42, 0xe0, 0xa3, 0xbb, 0xf0, 0x3b, 0xbf, 0x94, 0xe2, 0xe7, 0xb0, 0xf0, 0xdd, 0x55, 0x98, 0xe0, 0xc9, 0x3b, 0x1e, 0xfd, 0x39, 0x3e, 0xb8, 0x40, 0x94, 0x9f, 0x85, 0xf4, 0x88, 0x0e, 0xff, 0x65, 0x0e, 0x65, 0xfa, 0xe5, 0x2a, 0xe4, 0x42, 0x09, 0x3b, 0x1e, 0xfe, 0x2b, 0x1c, 0x1e, 0x46, 0x11, 0xd3, 0x79, 0xc2, 0x8e, 0x27, 0xf8, 0x55, 0x61, 0x3a, 0x47, 0x10, 0xb7, 0x89, 0x5c, 0x1d, 0x8f, 0xfe, 0xbc, 0xf0, 0xba, 0x80, 0x94, 0x9f, 0x87, 0x6c, 0x70, 0xfe, 0xc6, 0xe3, 0x7f, 0x8d, 0xe3, 0x7b, 0x18, 0xe2, 0x81, 0xd0, 0xf9, 0x1f, 0x4f, 0xf1, 0xeb, 0xc2, 0x03, 0x21, 0x14, 0xd9, 0x46, 0xfd, 0x39, 0x3d, 0x9e, 0xe9, 0x37, 0xc4, 0x36, 0xea, 0x4b, 0xe9, 0x64, 0x35, 0xe9, 0x31, 0x18, 0x4f, 0xf1, 0x9b, 0x62, 0x35, 0xa9, 0x3e, 0x31, 0xa3, 0x3f, 0x49, 0xc6, 0x73, 0xfc, 0x96, 0x30, 0xa3, 0x2f, 0x47, 0x96, 0xb7, 0x01, 0x0d, 0x26, 0xc8, 0x78, 0xbe, 0x2f, 0x70, 0xbe, 0xe9, 0x81, 0xfc, 0x58, 0x7e, 0x01, 0x4e, 0x0d, 0x4f, 0x8e, 0xf1, 0xac, 0x5f, 0x7c, 0xb7, 0xef, 0x3a, 0x13, 0xce, 0x8d, 0xe5, 0x9d, 0xde, 0x29, 0x1b, 0x4e, 0x8c, 0xf1, 0xb4, 0x2f, 0xbf, 0x1b, 0x3d, 0x68, 0xc3, 0x79, 0xb1, 0x5c, 0x01, 0xe8, 0xe5, 0xa4, 0x78, 0xae, 0x57, 0x38, 0x57, 0x08, 0x44, 0xb6, 0x06, 0x4f, 0x49, 0xf1, 0xf8, 0x2f, 0x89, 0xad, 0xc1, 0x11, 0x64, 0x6b, 0x88, 0x6c, 0x14, 0x8f, 0x7e, 0x55, 0x6c, 0x0d, 0x01, 0x29, 0x5f, 0x85, 0x8c, 0xd5, 0x35, 0x4d, 0x12, 0x5b, 0xe8, 0xf8, 0x7f, 0x67, 0x2a, 0xfe, 0xdb, 0x7b, 0x1c, 0x2c, 0x00, 0xe5, 0x4b, 0x90, 0xc6, 0x9d, 0x3d, 0xdc, 0x8c, 0x43, 0xfe, 0xfb, 0x7b, 0xe2, 0x3c, 0x21, 0xda, 0xe5, 0xe7, 0x01, 0xd8, 0x65, 0x9a, 0x7e, 0x25, 0x8a, 0xc1, 0xfe, 0xc7, 0x7b, 0xfc, 0x3f, 0x25, 0x7a, 0x90, 0x1e, 0x01, 0xfb, 0xbf, 0x8b, 0xe3, 0x09, 0xde, 0x8e, 0x12, 0xd0, 0x0b, 0xf8, 0x73, 0x30, 0x71, 0xcb, 0xb3, 0x2d, 0x5f, 0x6b, 0xc7, 0xa1, 0xff, 0x93, 0xa3, 0x85, 0x3e, 0x71, 0x58, 0xc7, 0x76, 0xb1, 0xaf, 0xb5, 0xbd, 0x38, 0xec, 0x7f, 0x71, 0x6c, 0x00, 0x20, 0x60, 0x5d, 0xf3, 0xfc, 0x51, 0xe6, 0xfd, 0xdf, 0x02, 0x2c, 0x00, 0xc4, 0x68, 0xf2, 0xfb, 0x36, 0x3e, 0x88, 0xc3, 0xbe, 0x23, 0x8c, 0xe6, 0xfa, 0xe5, 0x8f, 0x41, 0x96, 0xfc, 0x64, 0xff, 0x3d, 0x14, 0x03, 0xfe, 0x1f, 0x0e, 0xee, 0x21, 0xc8, 0xc8, 0x9e, 0xdf, 0xf4, 0x8d, 0x78, 0x67, 0xff, 0x2f, 0x5f, 0x69, 0xa1, 0x5f, 0xae, 0x40, 0xce, 0xf3, 0x9b, 0xcd, 0x2e, 0xaf, 0x68, 0x62, 0xe0, 0x3f, 0x78, 0x2f, 0xb8, 0xe4, 0x06, 0x98, 0x95, 0x73, 0xc3, 0x1f, 0xeb, 0x60, 0xcd, 0x5e, 0xb3, 0xd9, 0x33, 0x1d, 0x7c, 0x3e, 0x0d, 0x0b, 0xba, 0xdd, 0xd9, 0xb3, 0xbd, 0xe5, 0xd0, 0x31, 0xb4, 0x1c, 0xcc, 0x40, 0x3c, 0xb5, 0x05, 0x82, 0xb9, 0x93, 0x3d, 0xd2, 0x2d, 0xfc, 0x4d, 0x12, 0x32, 0x55, 0xcd, 0xf3, 0xb5, 0xbb, 0xda, 0x01, 0x72, 0x60, 0x86, 0xfc, 0xde, 0xd0, 0x1c, 0xfa, 0xe4, 0xc3, 0xf7, 0x18, 0x7f, 0x04, 0xfd, 0xf0, 0x52, 0x6f, 0x54, 0x81, 0x58, 0x1a, 0xa2, 0x4e, 0x3f, 0x1e, 0xaf, 0xc8, 0xaf, 0xff, 0xd3, 0xd9, 0xb1, 0x5f, 0xfc, 0xe7, 0xb3, 0x99, 0x8d, 0x83, 0x17, 0x0c, 0xd3, 0xb3, 0x2d, 0x65, 0x18, 0x35, 0xfa, 0xac, 0x04, 0x0f, 0x0f, 0x91, 0x6f, 0xf2, 0x8d, 0xc8, 0x3f, 0x25, 0x5c, 0x1c, 0x71, 0x68, 0x01, 0x63, 0x26, 0xe4, 0x23, 0xc3, 0x1f, 0x37, 0xcc, 0xdc, 0x4d, 0x28, 0x1e, 0x35, 0x13, 0x24, 0x43, 0xf2, 0x36, 0x3e, 0xe0, 0xff, 0x24, 0x4b, 0x7e, 0xa2, 0xf3, 0xbd, 0x7f, 0x73, 0x93, 0x16, 0x73, 0x17, 0xa6, 0x43, 0xd6, 0xf1, 0xc1, 0x58, 0x7f, 0x39, 0x71, 0x45, 0x9a, 0xd3, 0x60, 0x3e, 0xce, 0xd2, 0xff, 0xe7, 0x10, 0x0b, 0x25, 0x18, 0x67, 0x42, 0x34, 0x0b, 0xe9, 0xba, 0xe5, 0x5f, 0xbe, 0x48, 0xa9, 0x92, 0x0a, 0x6b, 0xac, 0xac, 0xbf, 0xfe, 0xa0, 0x34, 0xf6, 0xbd, 0x07, 0xa5, 0xb1, 0x7f, 0x78, 0x50, 0x1a, 0x7b, 0xe3, 0x41, 0x49, 0x7a, 0xeb, 0x41, 0x49, 0x7a, 0xe7, 0x41, 0x49, 0xfa, 0xe1, 0x83, 0x92, 0x74, 0xff, 0xb0, 0x24, 0x7d, 0xe5, 0xb0, 0x24, 0x7d, 0xfd, 0xb0, 0x24, 0x7d, 0xfb, 0xb0, 0x24, 0x7d, 0xe7, 0xb0, 0x24, 0xbd, 0x7e, 0x58, 0x1a, 0xfb, 0xde, 0x61, 0x49, 0x7a, 0xe3, 0xb0, 0x24, 0xbd, 0x75, 0x58, 0x1a, 0x7b, 0xe7, 0xb0, 0x24, 0xfd, 0xf0, 0xb0, 0x34, 0x76, 0xff, 0x5f, 0x4a, 0x63, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0x72, 0xfc, 0x89, 0x31, 0x37, 0x32, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Castaway) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Castaway") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Castaway but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Castaway but is not nil && this == nil") } if len(this.CastMapValueMessage) != len(that1.CastMapValueMessage) { return fmt.Errorf("CastMapValueMessage this(%v) Not Equal that(%v)", len(this.CastMapValueMessage), len(that1.CastMapValueMessage)) } for i := range this.CastMapValueMessage { a := (Wilson)(this.CastMapValueMessage[i]) b := (Wilson)(that1.CastMapValueMessage[i]) if !(&a).Equal(&b) { return fmt.Errorf("CastMapValueMessage this[%v](%v) Not Equal that[%v](%v)", i, this.CastMapValueMessage[i], i, that1.CastMapValueMessage[i]) } } if len(this.CastMapValueMessageNullable) != len(that1.CastMapValueMessageNullable) { return fmt.Errorf("CastMapValueMessageNullable this(%v) Not Equal that(%v)", len(this.CastMapValueMessageNullable), len(that1.CastMapValueMessageNullable)) } for i := range this.CastMapValueMessageNullable { a := (*Wilson)(this.CastMapValueMessageNullable[i]) b := (*Wilson)(that1.CastMapValueMessageNullable[i]) if !a.Equal(b) { return fmt.Errorf("CastMapValueMessageNullable this[%v](%v) Not Equal that[%v](%v)", i, this.CastMapValueMessageNullable[i], i, that1.CastMapValueMessageNullable[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Castaway) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Castaway) if !ok { that2, ok := that.(Castaway) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.CastMapValueMessage) != len(that1.CastMapValueMessage) { return false } for i := range this.CastMapValueMessage { a := (Wilson)(this.CastMapValueMessage[i]) b := (Wilson)(that1.CastMapValueMessage[i]) if !(&a).Equal(&b) { return false } } if len(this.CastMapValueMessageNullable) != len(that1.CastMapValueMessageNullable) { return false } for i := range this.CastMapValueMessageNullable { a := (*Wilson)(this.CastMapValueMessageNullable[i]) b := (*Wilson)(that1.CastMapValueMessageNullable[i]) if !a.Equal(b) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Wilson) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Wilson") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Wilson but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Wilson but is not nil && this == nil") } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", *this.Int64, *that1.Int64) } } else if this.Int64 != nil { return fmt.Errorf("this.Int64 == nil && that.Int64 != nil") } else if that1.Int64 != nil { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", this.Int64, that1.Int64) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Wilson) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Wilson) if !ok { that2, ok := that.(Wilson) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int64 != nil && that1.Int64 != nil { if *this.Int64 != *that1.Int64 { return false } } else if this.Int64 != nil { return false } else if that1.Int64 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type CastawayFace interface { Proto() github_com_gogo_protobuf_proto.Message GetCastMapValueMessage() map[int32]MyWilson GetCastMapValueMessageNullable() map[int32]*MyWilson } func (this *Castaway) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Castaway) TestProto() github_com_gogo_protobuf_proto.Message { return NewCastawayFromFace(this) } func (this *Castaway) GetCastMapValueMessage() map[int32]MyWilson { return this.CastMapValueMessage } func (this *Castaway) GetCastMapValueMessageNullable() map[int32]*MyWilson { return this.CastMapValueMessageNullable } func NewCastawayFromFace(that CastawayFace) *Castaway { this := &Castaway{} this.CastMapValueMessage = that.GetCastMapValueMessage() this.CastMapValueMessageNullable = that.GetCastMapValueMessageNullable() return this } type WilsonFace interface { Proto() github_com_gogo_protobuf_proto.Message GetInt64() *int64 } func (this *Wilson) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Wilson) TestProto() github_com_gogo_protobuf_proto.Message { return NewWilsonFromFace(this) } func (this *Wilson) GetInt64() *int64 { return this.Int64 } func NewWilsonFromFace(that WilsonFace) *Wilson { this := &Wilson{} this.Int64 = that.GetInt64() return this } func (this *Castaway) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&castvalue.Castaway{") keysForCastMapValueMessage := make([]int32, 0, len(this.CastMapValueMessage)) for k := range this.CastMapValueMessage { keysForCastMapValueMessage = append(keysForCastMapValueMessage, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessage) mapStringForCastMapValueMessage := "map[int32]MyWilson{" for _, k := range keysForCastMapValueMessage { mapStringForCastMapValueMessage += fmt.Sprintf("%#v: %#v,", k, this.CastMapValueMessage[k]) } mapStringForCastMapValueMessage += "}" if this.CastMapValueMessage != nil { s = append(s, "CastMapValueMessage: "+mapStringForCastMapValueMessage+",\n") } keysForCastMapValueMessageNullable := make([]int32, 0, len(this.CastMapValueMessageNullable)) for k := range this.CastMapValueMessageNullable { keysForCastMapValueMessageNullable = append(keysForCastMapValueMessageNullable, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessageNullable) mapStringForCastMapValueMessageNullable := "map[int32]*MyWilson{" for _, k := range keysForCastMapValueMessageNullable { mapStringForCastMapValueMessageNullable += fmt.Sprintf("%#v: %#v,", k, this.CastMapValueMessageNullable[k]) } mapStringForCastMapValueMessageNullable += "}" if this.CastMapValueMessageNullable != nil { s = append(s, "CastMapValueMessageNullable: "+mapStringForCastMapValueMessageNullable+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Wilson) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&castvalue.Wilson{") if this.Int64 != nil { s = append(s, "Int64: "+valueToGoStringCastvalue(this.Int64, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringCastvalue(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedCastaway(r randyCastvalue, easy bool) *Castaway { this := &Castaway{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.CastMapValueMessage = make(map[int32]MyWilson) for i := 0; i < v1; i++ { this.CastMapValueMessage[int32(r.Int31())] = (MyWilson)(*NewPopulatedWilson(r, easy)) } } if r.Intn(10) != 0 { v2 := r.Intn(10) this.CastMapValueMessageNullable = make(map[int32]*MyWilson) for i := 0; i < v2; i++ { this.CastMapValueMessageNullable[int32(r.Int31())] = (*MyWilson)(NewPopulatedWilson(r, easy)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCastvalue(r, 3) } return this } func NewPopulatedWilson(r randyCastvalue, easy bool) *Wilson { this := &Wilson{} if r.Intn(10) != 0 { v3 := int64(r.Int63()) if r.Intn(2) == 0 { v3 *= -1 } this.Int64 = &v3 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedCastvalue(r, 2) } return this } type randyCastvalue interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneCastvalue(r randyCastvalue) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringCastvalue(r randyCastvalue) string { v4 := r.Intn(100) tmps := make([]rune, v4) for i := 0; i < v4; i++ { tmps[i] = randUTF8RuneCastvalue(r) } return string(tmps) } func randUnrecognizedCastvalue(r randyCastvalue, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldCastvalue(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldCastvalue(dAtA []byte, r randyCastvalue, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) v5 := r.Int63() if r.Intn(2) == 0 { v5 *= -1 } dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(v5)) case 1: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateCastvalue(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateCastvalue(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Castaway) Size() (n int) { var l int _ = l if len(m.CastMapValueMessage) > 0 { for k, v := range m.CastMapValueMessage { _ = k _ = v l = ((*Wilson)(&v)).Size() mapEntrySize := 1 + sovCastvalue(uint64(k)) + 1 + l + sovCastvalue(uint64(l)) n += mapEntrySize + 1 + sovCastvalue(uint64(mapEntrySize)) } } if len(m.CastMapValueMessageNullable) > 0 { for k, v := range m.CastMapValueMessageNullable { _ = k _ = v l = 0 if v != nil { l = ((*Wilson)(v)).Size() l += 1 + sovCastvalue(uint64(l)) } mapEntrySize := 1 + sovCastvalue(uint64(k)) + l n += mapEntrySize + 1 + sovCastvalue(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Wilson) Size() (n int) { var l int _ = l if m.Int64 != nil { n += 1 + sovCastvalue(uint64(*m.Int64)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovCastvalue(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozCastvalue(x uint64) (n int) { return sovCastvalue(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Castaway) String() string { if this == nil { return "nil" } keysForCastMapValueMessage := make([]int32, 0, len(this.CastMapValueMessage)) for k := range this.CastMapValueMessage { keysForCastMapValueMessage = append(keysForCastMapValueMessage, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessage) mapStringForCastMapValueMessage := "map[int32]MyWilson{" for _, k := range keysForCastMapValueMessage { mapStringForCastMapValueMessage += fmt.Sprintf("%v: %v,", k, this.CastMapValueMessage[k]) } mapStringForCastMapValueMessage += "}" keysForCastMapValueMessageNullable := make([]int32, 0, len(this.CastMapValueMessageNullable)) for k := range this.CastMapValueMessageNullable { keysForCastMapValueMessageNullable = append(keysForCastMapValueMessageNullable, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForCastMapValueMessageNullable) mapStringForCastMapValueMessageNullable := "map[int32]*MyWilson{" for _, k := range keysForCastMapValueMessageNullable { mapStringForCastMapValueMessageNullable += fmt.Sprintf("%v: %v,", k, this.CastMapValueMessageNullable[k]) } mapStringForCastMapValueMessageNullable += "}" s := strings.Join([]string{`&Castaway{`, `CastMapValueMessage:` + mapStringForCastMapValueMessage + `,`, `CastMapValueMessageNullable:` + mapStringForCastMapValueMessageNullable + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Wilson) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Wilson{`, `Int64:` + valueToStringCastvalue(this.Int64) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringCastvalue(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Castaway) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Castaway: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Castaway: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CastMapValueMessage", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCastvalue } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.CastMapValueMessage == nil { m.CastMapValueMessage = make(map[int32]MyWilson) } var mapkey int32 mapvalue := &Wilson{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthCastvalue } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthCastvalue } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Wilson{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipCastvalue(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCastvalue } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.CastMapValueMessage[mapkey] = ((MyWilson)(*mapvalue)) iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CastMapValueMessageNullable", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthCastvalue } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.CastMapValueMessageNullable == nil { m.CastMapValueMessageNullable = make(map[int32]*MyWilson) } var mapkey int32 var mapvalue *Wilson for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthCastvalue } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthCastvalue } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Wilson{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipCastvalue(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCastvalue } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.CastMapValueMessageNullable[mapkey] = ((*MyWilson)(mapvalue)) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipCastvalue(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCastvalue } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Wilson) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Wilson: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Wilson: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int64", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowCastvalue } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Int64 = &v default: iNdEx = preIndex skippy, err := skipCastvalue(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthCastvalue } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipCastvalue(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCastvalue } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCastvalue } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCastvalue } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthCastvalue } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowCastvalue } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipCastvalue(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthCastvalue = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowCastvalue = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/unmarshaler/castvalue.proto", fileDescriptorCastvalue) } var fileDescriptorCastvalue = []byte{ // 359 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x8f, 0xbd, 0x4f, 0xf2, 0x50, 0x14, 0xc6, 0xef, 0xa1, 0xe1, 0x0d, 0xef, 0xc5, 0x01, 0xab, 0x43, 0x83, 0xc9, 0xa1, 0x61, 0x91, 0x41, 0xdb, 0x84, 0x10, 0x63, 0x1c, 0x31, 0x0e, 0x26, 0xe2, 0xc0, 0xa0, 0x71, 0xbc, 0x25, 0xb5, 0x10, 0x4b, 0x2f, 0xe9, 0x87, 0xa6, 0x1b, 0x83, 0x93, 0x7f, 0x89, 0xa3, 0xa3, 0xa3, 0x6e, 0x8c, 0x8c, 0x4e, 0x4a, 0xaf, 0x0b, 0x23, 0x23, 0xa3, 0xe1, 0x56, 0xfc, 0x48, 0xf0, 0x23, 0x71, 0x3b, 0xe7, 0xb9, 0xe7, 0x79, 0x7e, 0xcf, 0xa5, 0xe5, 0x16, 0xef, 0x5a, 0x3c, 0x30, 0x23, 0xaf, 0xcb, 0xfc, 0xa0, 0xcd, 0x5c, 0xdb, 0x37, 0x5b, 0x2c, 0x08, 0xcf, 0x99, 0x1b, 0xd9, 0x46, 0xcf, 0xe7, 0x21, 0x57, 0xff, 0xbf, 0x09, 0xc5, 0x4d, 0xa7, 0x13, 0xb6, 0x23, 0xcb, 0x68, 0xf1, 0xae, 0xe9, 0x70, 0x87, 0x9b, 0xf2, 0xc2, 0x8a, 0x4e, 0xe5, 0x26, 0x17, 0x39, 0xa5, 0xce, 0xf2, 0xbd, 0x42, 0x73, 0xbb, 0x2c, 0x08, 0xd9, 0x05, 0x8b, 0xd5, 0x1e, 0x5d, 0x99, 0xcd, 0x0d, 0xd6, 0x3b, 0x9a, 0x65, 0x35, 0xec, 0x20, 0x60, 0x8e, 0xad, 0x81, 0xae, 0x54, 0xf2, 0xd5, 0x0d, 0xe3, 0x9d, 0x3a, 0x77, 0x18, 0x0b, 0xce, 0xf7, 0xbc, 0xd0, 0x8f, 0xeb, 0x85, 0xc1, 0x63, 0x89, 0x5c, 0x3d, 0x95, 0x72, 0x8d, 0xf8, 0xb8, 0xe3, 0x06, 0xdc, 0x6b, 0x2e, 0x8a, 0x56, 0x2f, 0x81, 0xae, 0x2d, 0xd0, 0x0f, 0x23, 0xd7, 0x65, 0x96, 0x6b, 0x6b, 0x19, 0x89, 0xae, 0xfd, 0x12, 0x3d, 0xb7, 0xa5, 0x15, 0x96, 0x3e, 0xe1, 0xbf, 0xc3, 0x14, 0x4f, 0xa8, 0xf6, 0xd5, 0x4f, 0xd4, 0x02, 0x55, 0xce, 0xec, 0x58, 0x03, 0x1d, 0x2a, 0xd9, 0xe6, 0x6c, 0x54, 0xd7, 0x69, 0x56, 0x76, 0xd1, 0x32, 0x3a, 0x54, 0xf2, 0xd5, 0xe5, 0x0f, 0xed, 0x5e, 0x61, 0xe9, 0xfb, 0x4e, 0x66, 0x1b, 0x8a, 0x8c, 0xea, 0x3f, 0x35, 0xfd, 0x23, 0xa2, 0x8c, 0xf4, 0x5f, 0x2a, 0xaa, 0xab, 0x34, 0xbb, 0xef, 0x85, 0x5b, 0x35, 0x19, 0xa5, 0x34, 0xd3, 0xa5, 0x7e, 0x30, 0x48, 0x90, 0x0c, 0x13, 0x24, 0x0f, 0x09, 0x92, 0x51, 0x82, 0x30, 0x4e, 0x10, 0x26, 0x09, 0xc2, 0x34, 0x41, 0xe8, 0x0b, 0x84, 0x6b, 0x81, 0x70, 0x23, 0x10, 0x6e, 0x05, 0xc2, 0x9d, 0x40, 0x18, 0x08, 0x24, 0x43, 0x81, 0x30, 0x12, 0x08, 0x63, 0x81, 0x64, 0x22, 0x10, 0xa6, 0x02, 0x49, 0xff, 0x19, 0xc9, 0x4b, 0x00, 0x00, 0x00, 0xff, 0xff, 0x73, 0xe3, 0x1c, 0x3e, 0x90, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/castvalue/combos/unmarshaler/castvalue.proto000066400000000000000000000051331317075173200271740ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 castvalue; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Castaway { map CastMapValueMessage = 1 [(gogoproto.castvalue) = "MyWilson", (gogoproto.nullable) = false]; map CastMapValueMessageNullable = 2 [(gogoproto.castvalue) = "MyWilson"]; } message Wilson { optional int64 Int64 = 1; } golang-gogoprotobuf-0.5/test/castvalue/combos/unmarshaler/castvaluepb_test.go000066400000000000000000000320421317075173200300160ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/castvalue.proto /* Package castvalue is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/castvalue.proto It has these top-level messages: Castaway Wilson */ package castvalue import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestCastawayProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCastawayProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCastawayProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastaway(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Castaway{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestWilsonProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkWilsonProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkWilsonProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedWilson(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Wilson{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCastawayJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Castaway{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestWilsonJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Wilson{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCastawayProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastawayProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Castaway{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestWilsonProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Wilson{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastvalueDescription(t *testing.T) { CastvalueDescription() } func TestCastawayVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Castaway{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestWilsonVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Wilson{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCastawayFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestWilsonFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCastawayGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestWilsonGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCastawaySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastaway(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCastawaySize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Castaway, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCastaway(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestWilsonSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedWilson(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkWilsonSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Wilson, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedWilson(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCastawayStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastaway(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestWilsonStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedWilson(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/castvalue/combos/unmarshaler/mytypes.go000066400000000000000000000027201317075173200261600ustar00rootroot00000000000000// 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. package castvalue type MyWilson Wilson golang-gogoprotobuf-0.5/test/castvalue/mytypes.go000066400000000000000000000027201317075173200223550ustar00rootroot00000000000000// 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. package castvalue type MyWilson Wilson golang-gogoprotobuf-0.5/test/combos/000077500000000000000000000000001317075173200176065ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/combos/both/000077500000000000000000000000001317075173200205425ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/combos/both/bug_test.go000066400000000000000000000276111317075173200227140ustar00rootroot00000000000000// 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. package test import ( "fmt" "math" "math/rand" "testing" "time" "github.com/gogo/protobuf/proto" ) //http://code.google.com/p/goprotobuf/issues/detail?id=39 func TestBugUint32VarintSize(t *testing.T) { temp := uint32(math.MaxUint32) n := &NinOptNative{} n.Field5 = &temp data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != 6 { t.Fatalf("data should be length 6, but its %#v", data) } } func TestBugZeroLengthSliceSize(t *testing.T) { n := &NinRepPackedNative{ Field8: []int64{}, } size := n.Size() data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != size { t.Fatalf("expected %v, but got %v", len(data), size) } } //http://code.google.com/p/goprotobuf/issues/detail?id=40 func TestBugPackedProtoSize(t *testing.T) { n := &NinRepPackedNative{ Field4: []int64{172960727389894724, 2360337516664475010, 860833876131988189, 9068073014890763245, 7794843386260381831, 4023536436053141786, 8992311247496919020, 4330096163611305776, 4490411416244976467, 7873947349172707443, 2754969595834279669, 1360667855926938684, 4771480785172657389, 4875578924966668055, 8070579869808877481, 9128179594766551001, 4630419407064527516, 863844540220372892, 8208727650143073487, 7086117356301045838, 7779695211931506151, 5493835345187563535, 9119767633370806007, 9054342025895349248, 1887303228838508438, 7624573031734528281, 1874668389749611225, 3517684643468970593, 6677697606628877758, 7293473953189936168, 444475066704085538, 8594971141363049302, 1146643249094989673, 733393306232853371, 7721178528893916886, 7784452000911004429, 6436373110242711440, 6897422461738321237, 8772249155667732778, 6211871464311393541, 3061903718310406883, 7845488913176136641, 8342255034663902574, 3443058984649725748, 8410801047334832902, 7496541071517841153, 4305416923521577765, 7814967600020476457, 8671843803465481186, 3490266370361096855, 1447425664719091336, 653218597262334239, 8306243902880091940, 7851896059762409081, 5936760560798954978, 5755724498441478025, 7022701569985035966, 3707709584811468220, 529069456924666920, 7986469043681522462, 3092513330689518836, 5103541550470476202, 3577384161242626406, 3733428084624703294, 8388690542440473117, 3262468785346149388, 8788358556558007570, 5476276940198542020, 7277903243119461239, 5065861426928605020, 7533460976202697734, 1749213838654236956, 557497603941617931, 5496307611456481108, 6444547750062831720, 6992758776744205596, 7356719693428537399, 2896328872476734507, 381447079530132038, 598300737753233118, 3687980626612697715, 7240924191084283349, 8172414415307971170, 4847024388701257185, 2081764168600256551, 3394217778539123488, 6244660626429310923, 8301712215675381614, 5360615125359461174, 8410140945829785773, 3152963269026381373, 6197275282781459633, 4419829061407546410, 6262035523070047537, 2837207483933463885, 2158105736666826128, 8150764172235490711}, Field7: []int32{249451845, 1409974015, 393609128, 435232428, 1817529040, 91769006, 861170933, 1556185603, 1568580279, 1236375273, 512276621, 693633711, 967580535, 1950715977, 853431462, 1362390253, 159591204, 111900629, 322985263, 279671129, 1592548430, 465651370, 733849989, 1172059400, 1574824441, 263541092, 1271612397, 1520584358, 467078791, 117698716, 1098255064, 2054264846, 1766452305, 1267576395, 1557505617, 1187833560, 956187431, 1970977586, 1160235159, 1610259028, 489585797, 459139078, 566263183, 954319278, 1545018565, 1753946743, 948214318, 422878159, 883926576, 1424009347, 824732372, 1290433180, 80297942, 417294230, 1402647904, 2078392782, 220505045, 787368129, 463781454, 293083578, 808156928, 293976361}, Field9: []uint32{0xaa4976e8, 0x3da8cc4c, 0x8c470d83, 0x344d964e, 0x5b90925, 0xa4c4d34e, 0x666eff19, 0xc238e552, 0x9be53bb6, 0x56364245, 0x33ee079d, 0x96bf0ede, 0x7941b74f, 0xdb07cb47, 0x6d76d827, 0x9b211d5d, 0x2798adb6, 0xe48b0c3b, 0x87061b21, 0x48f4e4d2, 0x3e5d5c12, 0x5ee91288, 0x336d4f35, 0xe1d44941, 0xc065548d, 0x2953d73f, 0x873af451, 0xfc769db, 0x9f1bf8da, 0x9baafdfc, 0xf1d3d770, 0x5bb5d2b4, 0xc2c67c48, 0x6845c4c1, 0xa48f32b0, 0xbb04bb70, 0xa5b1ca36, 0x8d98356a, 0x2171f654, 0x5ae279b0, 0x6c4a3d6b, 0x4fff5468, 0xcf9bf851, 0x68513614, 0xdbecd9b0, 0x9553ed3c, 0xa494a736, 0x42205438, 0xbf8e5caa, 0xd3283c6, 0x76d20788, 0x9179826f, 0x96b24f85, 0xbc2eacf4, 0xe4afae0b, 0x4bca85cb, 0x35e63b5b, 0xd7ccee0c, 0x2b506bb9, 0xe78e9f44, 0x9ad232f1, 0x99a37335, 0xa5d6ffc8}, Field11: []uint64{0x53c01ebc, 0x4fb85ba6, 0x8805eea1, 0xb20ec896, 0x93b63410, 0xec7c9492, 0x50765a28, 0x19592106, 0x2ecc59b3, 0x39cd474f, 0xe4c9e47, 0x444f48c5, 0xe7731d32, 0xf3f43975, 0x603caedd, 0xbb05a1af, 0xa808e34e, 0x88580b07, 0x4c96bbd1, 0x730b4ab9, 0xed126e2b, 0x6db48205, 0x154ba1b9, 0xc26bfb6a, 0x389aa052, 0x869d966c, 0x7c86b366, 0xcc8edbcd, 0xfa8d6dad, 0xcf5857d9, 0x2d9cda0f, 0x1218a0b8, 0x41bf997, 0xf0ca65ac, 0xa610d4b9, 0x8d362e28, 0xb7212d87, 0x8e0fe109, 0xbee041d9, 0x759be2f6, 0x35fef4f3, 0xaeacdb71, 0x10888852, 0xf4e28117, 0xe2a14812, 0x73b748dc, 0xd1c3c6b2, 0xfef41bf0, 0xc9b43b62, 0x810e4faa, 0xcaa41c06, 0x1893fe0d, 0xedc7c850, 0xd12b9eaa, 0x467ee1a9, 0xbe84756b, 0xda7b1680, 0xdc069ffe, 0xf1e7e9f9, 0xb3d95370, 0xa92b77df, 0x5693ac41, 0xd04b7287, 0x27aebf15, 0x837b316e, 0x4dbe2263, 0xbab70c67, 0x547dab21, 0x3c346c1f, 0xb8ef0e4e, 0xfe2d03ce, 0xe1d75955, 0xfec1306, 0xba35c23e, 0xb784ed04, 0x2a4e33aa, 0x7e19d09a, 0x3827c1fe, 0xf3a51561, 0xef765e2b, 0xb044256c, 0x62b322be, 0xf34d56be, 0xeb71b369, 0xffe1294f, 0x237fe8d0, 0x77a1473b, 0x239e1196, 0xdd19bf3d, 0x82c91fe1, 0x95361c57, 0xffea3f1b, 0x1a094c84}, Field12: []int64{8308420747267165049, 3664160795077875961, 7868970059161834817, 7237335984251173739, 5254748003907196506, 3362259627111837480, 430460752854552122, 5119635556501066533, 1277716037866233522, 9185775384759813768, 833932430882717888, 7986528304451297640, 6792233378368656337, 2074207091120609721, 1788723326198279432, 7756514594746453657, 2283775964901597324, 3061497730110517191, 7733947890656120277, 626967303632386244, 7822928600388582821, 3489658753000061230, 168869995163005961, 248814782163480763, 477885608911386247, 4198422415674133867, 3379354662797976109, 9925112544736939, 1486335136459138480, 4561560414032850671, 1010864164014091267, 186722821683803084, 5106357936724819318, 1298160820191228988, 4675403242419953145, 7130634540106489752, 7101280006672440929, 7176058292431955718, 9109875054097770321, 6810974877085322872, 4736707874303993641, 8993135362721382187, 6857881554990254283, 3704748883307461680, 1099360832887634994, 5207691918707192633, 5984721695043995243}, } size := proto.Size(n) data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != size { t.Fatalf("expected %v, but got %v diff is %v", len(data), size, len(data)-size) } } func testSize(m interface { proto.Message Size() int }, desc string, expected int) ([]byte, error) { data, err := proto.Marshal(m) if err != nil { return nil, err } protoSize := proto.Size(m) mSize := m.Size() lenData := len(data) if protoSize != mSize || protoSize != lenData || mSize != lenData { return nil, fmt.Errorf("%s proto.Size(m){%d} != m.Size(){%d} != len(data){%d}", desc, protoSize, mSize, lenData) } if got := protoSize; got != expected { return nil, fmt.Errorf("%s proto.Size(m) got %d expected %d", desc, got, expected) } if got := mSize; got != expected { return nil, fmt.Errorf("%s m.Size() got %d expected %d", desc, got, expected) } if got := lenData; got != expected { return nil, fmt.Errorf("%s len(data) got %d expected %d", desc, got, expected) } return data, nil } func TestInt32Int64Compatibility(t *testing.T) { //test nullable int32 and int64 data1, err := testSize(&NinOptNative{ Field3: proto.Int32(-1), }, "nullable", 11) if err != nil { t.Error(err) } //change marshaled data1 to unmarshal into 4th field which is an int64 data1[0] = uint8(uint32(4 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) u1 := &NinOptNative{} if err = proto.Unmarshal(data1, u1); err != nil { t.Error(err) } if !u1.Equal(&NinOptNative{ Field4: proto.Int64(-1), }) { t.Error("nullable unmarshaled int32 is not the same int64") } //test non-nullable int32 and int64 data2, err := testSize(&NidOptNative{ Field3: -1, }, "non nullable", 67) if err != nil { t.Error(err) } //change marshaled data2 to unmarshal into 4th field which is an int64 field3 := uint8(uint32(3 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) field4 := uint8(uint32(4 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) for i, c := range data2 { if c == field4 { data2[i] = field3 } else if c == field3 { data2[i] = field4 } } u2 := &NidOptNative{} if err = proto.Unmarshal(data2, u2); err != nil { t.Error(err) } if !u2.Equal(&NidOptNative{ Field4: -1, }) { t.Error("non nullable unmarshaled int32 is not the same int64") } //test packed repeated int32 and int64 m4 := &NinRepPackedNative{ Field3: []int32{-1}, } data4, err := testSize(m4, "packed", 12) if err != nil { t.Error(err) } u4 := &NinRepPackedNative{} if err := proto.Unmarshal(data4, u4); err != nil { t.Error(err) } if err := u4.VerboseEqual(m4); err != nil { t.Fatalf("%#v", u4) } //test repeated int32 and int64 if _, err := testSize(&NinRepNative{ Field3: []int32{-1}, }, "repeated", 11); err != nil { t.Error(err) } t.Logf("tested all") } func TestRepeatedExtensionsMsgsIssue161(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) rep := 10 nins := make([]*NinOptNative, rep) for i := range nins { nins[i] = NewPopulatedNinOptNative(r, true) } input := &MyExtendable{} if err := proto.SetExtension(input, E_FieldE, nins); err != nil { t.Fatal(err) } data, err := proto.Marshal(input) if err != nil { t.Fatal(err) } output := &MyExtendable{} if err := proto.Unmarshal(data, output); err != nil { t.Fatal(err) } if !input.Equal(output) { t.Fatal("expected equal") } data2, err2 := proto.Marshal(output) if err2 != nil { t.Fatal(err2) } if len(data) != len(data2) { t.Fatal("expected equal length buffers") } } func TestRepeatedExtensionsFieldsIssue161(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) rep := 10 ints := make([]int64, rep) for i := range ints { ints[i] = r.Int63() } input := &MyExtendable{} if err := proto.SetExtension(input, E_FieldD, ints); err != nil { t.Fatal(err) } data, err := proto.Marshal(input) if err != nil { t.Fatal(err) } output := &MyExtendable{} if err := proto.Unmarshal(data, output); err != nil { t.Fatal(err) } if !input.Equal(output) { t.Fatal("expected equal") } data2, err2 := proto.Marshal(output) if err2 != nil { t.Fatal(err2) } if len(data) != len(data2) { t.Fatal("expected equal length buffers") } } golang-gogoprotobuf-0.5/test/combos/both/t.go000066400000000000000000000023141317075173200213340ustar00rootroot00000000000000package test import ( "encoding/json" "strings" "github.com/gogo/protobuf/proto" ) type T struct { Data string } func (gt *T) protoType() *ProtoType { return &ProtoType{ Field2: >.Data, } } func (gt T) Equal(other T) bool { return gt.protoType().Equal(other.protoType()) } func (gt *T) Size() int { proto := &ProtoType{ Field2: >.Data, } return proto.Size() } func NewPopulatedT(r randyThetest) *T { data := NewPopulatedProtoType(r, false).Field2 gt := &T{} if data != nil { gt.Data = *data } return gt } func (r T) Marshal() ([]byte, error) { return proto.Marshal(r.protoType()) } func (r *T) MarshalTo(data []byte) (n int, err error) { return r.protoType().MarshalTo(data) } func (r *T) Unmarshal(data []byte) error { pr := &ProtoType{} err := proto.Unmarshal(data, pr) if err != nil { return err } if pr.Field2 != nil { r.Data = *pr.Field2 } return nil } func (gt T) MarshalJSON() ([]byte, error) { return json.Marshal(gt.Data) } func (gt *T) UnmarshalJSON(data []byte) error { var s string err := json.Unmarshal(data, &s) if err != nil { return err } *gt = T{Data: s} return nil } func (gt T) Compare(other T) int { return strings.Compare(gt.Data, other.Data) } golang-gogoprotobuf-0.5/test/combos/both/thetest.pb.go000066400000000000000000041566311317075173200231710ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/thetest.proto /* Package test is a generated protocol buffer package. It is generated from these files: combos/both/thetest.proto It has these top-level messages: NidOptNative NinOptNative NidRepNative NinRepNative NidRepPackedNative NinRepPackedNative NidOptStruct NinOptStruct NidRepStruct NinRepStruct NidEmbeddedStruct NinEmbeddedStruct NidNestedStruct NinNestedStruct NidOptCustom CustomDash NinOptCustom NidRepCustom NinRepCustom NinOptNativeUnion NinOptStructUnion NinEmbeddedStructUnion NinNestedStructUnion Tree OrBranch AndBranch Leaf DeepTree ADeepBranch AndDeepBranch DeepLeaf Nil NidOptEnum NinOptEnum NidRepEnum NinRepEnum NinOptEnumDefault AnotherNinOptEnum AnotherNinOptEnumDefault Timer MyExtendable OtherExtenable NestedDefinition NestedScope NinOptNativeDefault CustomContainer CustomNameNidOptNative CustomNameNinOptNative CustomNameNinRepNative CustomNameNinStruct CustomNameCustomType CustomNameNinEmbeddedStructUnion CustomNameEnum NoExtensionsMap Unrecognized UnrecognizedWithInner UnrecognizedWithEmbed Node NonByteCustomType NidOptNonByteCustomType NinOptNonByteCustomType NidRepNonByteCustomType NinRepNonByteCustomType ProtoType */ package test import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test_custom_dash_type "github.com/gogo/protobuf/test/custom-dash-type" import bytes "bytes" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import compress_gzip "compress/gzip" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import sort "sort" import reflect "reflect" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type TheTestEnum int32 const ( A TheTestEnum = 0 B TheTestEnum = 1 C TheTestEnum = 2 ) var TheTestEnum_name = map[int32]string{ 0: "A", 1: "B", 2: "C", } var TheTestEnum_value = map[string]int32{ "A": 0, "B": 1, "C": 2, } func (x TheTestEnum) Enum() *TheTestEnum { p := new(TheTestEnum) *p = x return p } func (x TheTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(TheTestEnum_name, int32(x)) } func (x *TheTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(TheTestEnum_value, data, "TheTestEnum") if err != nil { return err } *x = TheTestEnum(value) return nil } func (TheTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{0} } type AnotherTestEnum int32 const ( D AnotherTestEnum = 10 E AnotherTestEnum = 11 ) var AnotherTestEnum_name = map[int32]string{ 10: "D", 11: "E", } var AnotherTestEnum_value = map[string]int32{ "D": 10, "E": 11, } func (x AnotherTestEnum) Enum() *AnotherTestEnum { p := new(AnotherTestEnum) *p = x return p } func (x AnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(AnotherTestEnum_name, int32(x)) } func (x *AnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(AnotherTestEnum_value, data, "AnotherTestEnum") if err != nil { return err } *x = AnotherTestEnum(value) return nil } func (AnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{1} } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. type YetAnotherTestEnum int32 const ( AA YetAnotherTestEnum = 0 BetterYetBB YetAnotherTestEnum = 1 ) var YetAnotherTestEnum_name = map[int32]string{ 0: "AA", 1: "BB", } var YetAnotherTestEnum_value = map[string]int32{ "AA": 0, "BB": 1, } func (x YetAnotherTestEnum) Enum() *YetAnotherTestEnum { p := new(YetAnotherTestEnum) *p = x return p } func (x YetAnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(YetAnotherTestEnum_name, int32(x)) } func (x *YetAnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(YetAnotherTestEnum_value, data, "YetAnotherTestEnum") if err != nil { return err } *x = YetAnotherTestEnum(value) return nil } func (YetAnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{2} } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. type YetYetAnotherTestEnum int32 const ( YetYetAnotherTestEnum_CC YetYetAnotherTestEnum = 0 YetYetAnotherTestEnum_BetterYetDD YetYetAnotherTestEnum = 1 ) var YetYetAnotherTestEnum_name = map[int32]string{ 0: "CC", 1: "DD", } var YetYetAnotherTestEnum_value = map[string]int32{ "CC": 0, "DD": 1, } func (x YetYetAnotherTestEnum) Enum() *YetYetAnotherTestEnum { p := new(YetYetAnotherTestEnum) *p = x return p } func (x YetYetAnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(YetYetAnotherTestEnum_name, int32(x)) } func (x *YetYetAnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(YetYetAnotherTestEnum_value, data, "YetYetAnotherTestEnum") if err != nil { return err } *x = YetYetAnotherTestEnum(value) return nil } func (YetYetAnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{3} } type NestedDefinition_NestedEnum int32 const ( TYPE_NESTED NestedDefinition_NestedEnum = 1 ) var NestedDefinition_NestedEnum_name = map[int32]string{ 1: "TYPE_NESTED", } var NestedDefinition_NestedEnum_value = map[string]int32{ "TYPE_NESTED": 1, } func (x NestedDefinition_NestedEnum) Enum() *NestedDefinition_NestedEnum { p := new(NestedDefinition_NestedEnum) *p = x return p } func (x NestedDefinition_NestedEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(NestedDefinition_NestedEnum_name, int32(x)) } func (x *NestedDefinition_NestedEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(NestedDefinition_NestedEnum_value, data, "NestedDefinition_NestedEnum") if err != nil { return err } *x = NestedDefinition_NestedEnum(value) return nil } func (NestedDefinition_NestedEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0} } type NidOptNative struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` Field2 float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` Field3 int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3"` Field4 int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4"` Field5 uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5"` Field6 uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8"` Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9"` Field10 int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10"` Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11"` Field12 int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12"` Field13 bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` Field14 string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptNative) Reset() { *m = NidOptNative{} } func (*NidOptNative) ProtoMessage() {} func (*NidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{0} } type NinOptNative struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNative) Reset() { *m = NinOptNative{} } func (*NinOptNative) ProtoMessage() {} func (*NinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{1} } type NidRepNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepNative) Reset() { *m = NidRepNative{} } func (*NidRepNative) ProtoMessage() {} func (*NidRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{2} } type NinRepNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNative) Reset() { *m = NinRepNative{} } func (*NinRepNative) ProtoMessage() {} func (*NinRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{3} } type NidRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepPackedNative) Reset() { *m = NidRepPackedNative{} } func (*NidRepPackedNative) ProtoMessage() {} func (*NidRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{4} } type NinRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepPackedNative) Reset() { *m = NinRepPackedNative{} } func (*NinRepPackedNative) ProtoMessage() {} func (*NinRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{5} } type NidOptStruct struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` Field2 float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` Field3 NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3"` Field4 NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4"` Field6 uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` Field8 NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8"` Field13 bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` Field14 string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptStruct) Reset() { *m = NidOptStruct{} } func (*NidOptStruct) ProtoMessage() {} func (*NidOptStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{6} } type NinOptStruct struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptStruct) Reset() { *m = NinOptStruct{} } func (*NinOptStruct) ProtoMessage() {} func (*NinOptStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{7} } type NidRepStruct struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []NidOptNative `protobuf:"bytes,3,rep,name=Field3" json:"Field3"` Field4 []NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []NidOptNative `protobuf:"bytes,8,rep,name=Field8" json:"Field8"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepStruct) Reset() { *m = NidRepStruct{} } func (*NidRepStruct) ProtoMessage() {} func (*NidRepStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{8} } type NinRepStruct struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []*NidOptNative `protobuf:"bytes,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []*NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []*NidOptNative `protobuf:"bytes,8,rep,name=Field8" json:"Field8,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepStruct) Reset() { *m = NinRepStruct{} } func (*NinRepStruct) ProtoMessage() {} func (*NinRepStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{9} } type NidEmbeddedStruct struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 NidOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200"` Field210 bool `protobuf:"varint,210,opt,name=Field210" json:"Field210"` XXX_unrecognized []byte `json:"-"` } func (m *NidEmbeddedStruct) Reset() { *m = NidEmbeddedStruct{} } func (*NidEmbeddedStruct) ProtoMessage() {} func (*NidEmbeddedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{10} } type NinEmbeddedStruct struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 *NidOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` Field210 *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinEmbeddedStruct) Reset() { *m = NinEmbeddedStruct{} } func (*NinEmbeddedStruct) ProtoMessage() {} func (*NinEmbeddedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{11} } type NidNestedStruct struct { Field1 NidOptStruct `protobuf:"bytes,1,opt,name=Field1" json:"Field1"` Field2 []NidRepStruct `protobuf:"bytes,2,rep,name=Field2" json:"Field2"` XXX_unrecognized []byte `json:"-"` } func (m *NidNestedStruct) Reset() { *m = NidNestedStruct{} } func (*NidNestedStruct) ProtoMessage() {} func (*NidNestedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{12} } type NinNestedStruct struct { Field1 *NinOptStruct `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 []*NinRepStruct `protobuf:"bytes,2,rep,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinNestedStruct) Reset() { *m = NinNestedStruct{} } func (*NinNestedStruct) ProtoMessage() {} func (*NinNestedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{13} } type NidOptCustom struct { Id Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id"` Value github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptCustom) Reset() { *m = NidOptCustom{} } func (*NidOptCustom) ProtoMessage() {} func (*NidOptCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{14} } type CustomDash struct { Value *github_com_gogo_protobuf_test_custom_dash_type.Bytes `protobuf:"bytes,1,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom-dash-type.Bytes" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomDash) Reset() { *m = CustomDash{} } func (*CustomDash) ProtoMessage() {} func (*CustomDash) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{15} } type NinOptCustom struct { Id *Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id,omitempty"` Value *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptCustom) Reset() { *m = NinOptCustom{} } func (*NinOptCustom) ProtoMessage() {} func (*NinOptCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{16} } type NidRepCustom struct { Id []Uuid `protobuf:"bytes,1,rep,name=Id,customtype=Uuid" json:"Id"` Value []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepCustom) Reset() { *m = NidRepCustom{} } func (*NidRepCustom) ProtoMessage() {} func (*NidRepCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{17} } type NinRepCustom struct { Id []Uuid `protobuf:"bytes,1,rep,name=Id,customtype=Uuid" json:"Id,omitempty"` Value []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepCustom) Reset() { *m = NinRepCustom{} } func (*NinRepCustom) ProtoMessage() {} func (*NinRepCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{18} } type NinOptNativeUnion struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNativeUnion) Reset() { *m = NinOptNativeUnion{} } func (*NinOptNativeUnion) ProtoMessage() {} func (*NinOptNativeUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{19} } type NinOptStructUnion struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptStructUnion) Reset() { *m = NinOptStructUnion{} } func (*NinOptStructUnion) ProtoMessage() {} func (*NinOptStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{20} } type NinEmbeddedStructUnion struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 *NinOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` Field210 *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinEmbeddedStructUnion) Reset() { *m = NinEmbeddedStructUnion{} } func (*NinEmbeddedStructUnion) ProtoMessage() {} func (*NinEmbeddedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{21} } type NinNestedStructUnion struct { Field1 *NinOptNativeUnion `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *NinOptStructUnion `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NinEmbeddedStructUnion `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinNestedStructUnion) Reset() { *m = NinNestedStructUnion{} } func (*NinNestedStructUnion) ProtoMessage() {} func (*NinNestedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{22} } type Tree struct { Or *OrBranch `protobuf:"bytes,1,opt,name=Or" json:"Or,omitempty"` And *AndBranch `protobuf:"bytes,2,opt,name=And" json:"And,omitempty"` Leaf *Leaf `protobuf:"bytes,3,opt,name=Leaf" json:"Leaf,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Tree) Reset() { *m = Tree{} } func (*Tree) ProtoMessage() {} func (*Tree) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{23} } type OrBranch struct { Left Tree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right Tree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *OrBranch) Reset() { *m = OrBranch{} } func (*OrBranch) ProtoMessage() {} func (*OrBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{24} } type AndBranch struct { Left Tree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right Tree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *AndBranch) Reset() { *m = AndBranch{} } func (*AndBranch) ProtoMessage() {} func (*AndBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{25} } type Leaf struct { Value int64 `protobuf:"varint,1,opt,name=Value" json:"Value"` StrValue string `protobuf:"bytes,2,opt,name=StrValue" json:"StrValue"` XXX_unrecognized []byte `json:"-"` } func (m *Leaf) Reset() { *m = Leaf{} } func (*Leaf) ProtoMessage() {} func (*Leaf) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{26} } type DeepTree struct { Down *ADeepBranch `protobuf:"bytes,1,opt,name=Down" json:"Down,omitempty"` And *AndDeepBranch `protobuf:"bytes,2,opt,name=And" json:"And,omitempty"` Leaf *DeepLeaf `protobuf:"bytes,3,opt,name=Leaf" json:"Leaf,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *DeepTree) Reset() { *m = DeepTree{} } func (*DeepTree) ProtoMessage() {} func (*DeepTree) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{27} } type ADeepBranch struct { Down DeepTree `protobuf:"bytes,2,opt,name=Down" json:"Down"` XXX_unrecognized []byte `json:"-"` } func (m *ADeepBranch) Reset() { *m = ADeepBranch{} } func (*ADeepBranch) ProtoMessage() {} func (*ADeepBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{28} } type AndDeepBranch struct { Left DeepTree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right DeepTree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *AndDeepBranch) Reset() { *m = AndDeepBranch{} } func (*AndDeepBranch) ProtoMessage() {} func (*AndDeepBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{29} } type DeepLeaf struct { Tree Tree `protobuf:"bytes,1,opt,name=Tree" json:"Tree"` XXX_unrecognized []byte `json:"-"` } func (m *DeepLeaf) Reset() { *m = DeepLeaf{} } func (*DeepLeaf) ProtoMessage() {} func (*DeepLeaf) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{30} } type Nil struct { XXX_unrecognized []byte `json:"-"` } func (m *Nil) Reset() { *m = Nil{} } func (*Nil) ProtoMessage() {} func (*Nil) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{31} } type NidOptEnum struct { Field1 TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptEnum) Reset() { *m = NidOptEnum{} } func (*NidOptEnum) ProtoMessage() {} func (*NidOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{32} } type NinOptEnum struct { Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptEnum) Reset() { *m = NinOptEnum{} } func (*NinOptEnum) ProtoMessage() {} func (*NinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{33} } type NidRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 []YetAnotherTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 []YetYetAnotherTestEnum `protobuf:"varint,3,rep,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepEnum) Reset() { *m = NidRepEnum{} } func (*NidRepEnum) ProtoMessage() {} func (*NidRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{34} } type NinRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 []YetAnotherTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 []YetYetAnotherTestEnum `protobuf:"varint,3,rep,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepEnum) Reset() { *m = NinRepEnum{} } func (*NinRepEnum) ProtoMessage() {} func (*NinRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{35} } type NinOptEnumDefault struct { Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum,def=2" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum,def=1" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum,def=0" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptEnumDefault) Reset() { *m = NinOptEnumDefault{} } func (*NinOptEnumDefault) ProtoMessage() {} func (*NinOptEnumDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{36} } const Default_NinOptEnumDefault_Field1 TheTestEnum = C const Default_NinOptEnumDefault_Field2 YetAnotherTestEnum = BetterYetBB const Default_NinOptEnumDefault_Field3 YetYetAnotherTestEnum = YetYetAnotherTestEnum_CC func (m *NinOptEnumDefault) GetField1() TheTestEnum { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_NinOptEnumDefault_Field1 } func (m *NinOptEnumDefault) GetField2() YetAnotherTestEnum { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_NinOptEnumDefault_Field2 } func (m *NinOptEnumDefault) GetField3() YetYetAnotherTestEnum { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_NinOptEnumDefault_Field3 } type AnotherNinOptEnum struct { Field1 *AnotherTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.AnotherTestEnum" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *AnotherNinOptEnum) Reset() { *m = AnotherNinOptEnum{} } func (*AnotherNinOptEnum) ProtoMessage() {} func (*AnotherNinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{37} } type AnotherNinOptEnumDefault struct { Field1 *AnotherTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.AnotherTestEnum,def=11" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum,def=1" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum,def=0" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *AnotherNinOptEnumDefault) Reset() { *m = AnotherNinOptEnumDefault{} } func (*AnotherNinOptEnumDefault) ProtoMessage() {} func (*AnotherNinOptEnumDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{38} } const Default_AnotherNinOptEnumDefault_Field1 AnotherTestEnum = E const Default_AnotherNinOptEnumDefault_Field2 YetAnotherTestEnum = BetterYetBB const Default_AnotherNinOptEnumDefault_Field3 YetYetAnotherTestEnum = YetYetAnotherTestEnum_CC func (m *AnotherNinOptEnumDefault) GetField1() AnotherTestEnum { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_AnotherNinOptEnumDefault_Field1 } func (m *AnotherNinOptEnumDefault) GetField2() YetAnotherTestEnum { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_AnotherNinOptEnumDefault_Field2 } func (m *AnotherNinOptEnumDefault) GetField3() YetYetAnotherTestEnum { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_AnotherNinOptEnumDefault_Field3 } type Timer struct { Time1 int64 `protobuf:"fixed64,1,opt,name=Time1" json:"Time1"` Time2 int64 `protobuf:"fixed64,2,opt,name=Time2" json:"Time2"` Data []byte `protobuf:"bytes,3,opt,name=Data" json:"Data"` XXX_unrecognized []byte `json:"-"` } func (m *Timer) Reset() { *m = Timer{} } func (*Timer) ProtoMessage() {} func (*Timer) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{39} } type MyExtendable struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *MyExtendable) Reset() { *m = MyExtendable{} } func (*MyExtendable) ProtoMessage() {} func (*MyExtendable) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{40} } var extRange_MyExtendable = []proto.ExtensionRange{ {Start: 100, End: 199}, } func (*MyExtendable) ExtensionRangeArray() []proto.ExtensionRange { return extRange_MyExtendable } type OtherExtenable struct { Field2 *int64 `protobuf:"varint,2,opt,name=Field2" json:"Field2,omitempty"` Field13 *int64 `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` M *MyExtendable `protobuf:"bytes,1,opt,name=M" json:"M,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *OtherExtenable) Reset() { *m = OtherExtenable{} } func (*OtherExtenable) ProtoMessage() {} func (*OtherExtenable) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{41} } var extRange_OtherExtenable = []proto.ExtensionRange{ {Start: 14, End: 16}, {Start: 10, End: 12}, } func (*OtherExtenable) ExtensionRangeArray() []proto.ExtensionRange { return extRange_OtherExtenable } type NestedDefinition struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` EnumField *NestedDefinition_NestedEnum `protobuf:"varint,2,opt,name=EnumField,enum=test.NestedDefinition_NestedEnum" json:"EnumField,omitempty"` NNM *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,3,opt,name=NNM" json:"NNM,omitempty"` NM *NestedDefinition_NestedMessage `protobuf:"bytes,4,opt,name=NM" json:"NM,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition) Reset() { *m = NestedDefinition{} } func (*NestedDefinition) ProtoMessage() {} func (*NestedDefinition) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42} } type NestedDefinition_NestedMessage struct { NestedField1 *uint64 `protobuf:"fixed64,1,opt,name=NestedField1" json:"NestedField1,omitempty"` NNM *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,2,opt,name=NNM" json:"NNM,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition_NestedMessage) Reset() { *m = NestedDefinition_NestedMessage{} } func (*NestedDefinition_NestedMessage) ProtoMessage() {} func (*NestedDefinition_NestedMessage) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0} } type NestedDefinition_NestedMessage_NestedNestedMsg struct { NestedNestedField1 *string `protobuf:"bytes,10,opt,name=NestedNestedField1" json:"NestedNestedField1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Reset() { *m = NestedDefinition_NestedMessage_NestedNestedMsg{} } func (*NestedDefinition_NestedMessage_NestedNestedMsg) ProtoMessage() {} func (*NestedDefinition_NestedMessage_NestedNestedMsg) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0, 0} } type NestedScope struct { A *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,1,opt,name=A" json:"A,omitempty"` B *NestedDefinition_NestedEnum `protobuf:"varint,2,opt,name=B,enum=test.NestedDefinition_NestedEnum" json:"B,omitempty"` C *NestedDefinition_NestedMessage `protobuf:"bytes,3,opt,name=C" json:"C,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedScope) Reset() { *m = NestedScope{} } func (*NestedScope) ProtoMessage() {} func (*NestedScope) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{43} } type NinOptNativeDefault struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1,def=1234.1234" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2,def=1234.12341" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3,def=1234" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4,def=1234" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5,def=1234" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6,def=1234" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7,def=1234" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,opt,name=Field8,def=1234" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,opt,name=Field9,def=1234" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,opt,name=Field10,def=1234" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,opt,name=Field11,def=1234" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,opt,name=Field12,def=1234" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13,def=1" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14,def=1234" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNativeDefault) Reset() { *m = NinOptNativeDefault{} } func (*NinOptNativeDefault) ProtoMessage() {} func (*NinOptNativeDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{44} } const Default_NinOptNativeDefault_Field1 float64 = 1234.1234 const Default_NinOptNativeDefault_Field2 float32 = 1234.12341 const Default_NinOptNativeDefault_Field3 int32 = 1234 const Default_NinOptNativeDefault_Field4 int64 = 1234 const Default_NinOptNativeDefault_Field5 uint32 = 1234 const Default_NinOptNativeDefault_Field6 uint64 = 1234 const Default_NinOptNativeDefault_Field7 int32 = 1234 const Default_NinOptNativeDefault_Field8 int64 = 1234 const Default_NinOptNativeDefault_Field9 uint32 = 1234 const Default_NinOptNativeDefault_Field10 int32 = 1234 const Default_NinOptNativeDefault_Field11 uint64 = 1234 const Default_NinOptNativeDefault_Field12 int64 = 1234 const Default_NinOptNativeDefault_Field13 bool = true const Default_NinOptNativeDefault_Field14 string = "1234" func (m *NinOptNativeDefault) GetField1() float64 { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_NinOptNativeDefault_Field1 } func (m *NinOptNativeDefault) GetField2() float32 { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_NinOptNativeDefault_Field2 } func (m *NinOptNativeDefault) GetField3() int32 { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_NinOptNativeDefault_Field3 } func (m *NinOptNativeDefault) GetField4() int64 { if m != nil && m.Field4 != nil { return *m.Field4 } return Default_NinOptNativeDefault_Field4 } func (m *NinOptNativeDefault) GetField5() uint32 { if m != nil && m.Field5 != nil { return *m.Field5 } return Default_NinOptNativeDefault_Field5 } func (m *NinOptNativeDefault) GetField6() uint64 { if m != nil && m.Field6 != nil { return *m.Field6 } return Default_NinOptNativeDefault_Field6 } func (m *NinOptNativeDefault) GetField7() int32 { if m != nil && m.Field7 != nil { return *m.Field7 } return Default_NinOptNativeDefault_Field7 } func (m *NinOptNativeDefault) GetField8() int64 { if m != nil && m.Field8 != nil { return *m.Field8 } return Default_NinOptNativeDefault_Field8 } func (m *NinOptNativeDefault) GetField9() uint32 { if m != nil && m.Field9 != nil { return *m.Field9 } return Default_NinOptNativeDefault_Field9 } func (m *NinOptNativeDefault) GetField10() int32 { if m != nil && m.Field10 != nil { return *m.Field10 } return Default_NinOptNativeDefault_Field10 } func (m *NinOptNativeDefault) GetField11() uint64 { if m != nil && m.Field11 != nil { return *m.Field11 } return Default_NinOptNativeDefault_Field11 } func (m *NinOptNativeDefault) GetField12() int64 { if m != nil && m.Field12 != nil { return *m.Field12 } return Default_NinOptNativeDefault_Field12 } func (m *NinOptNativeDefault) GetField13() bool { if m != nil && m.Field13 != nil { return *m.Field13 } return Default_NinOptNativeDefault_Field13 } func (m *NinOptNativeDefault) GetField14() string { if m != nil && m.Field14 != nil { return *m.Field14 } return Default_NinOptNativeDefault_Field14 } func (m *NinOptNativeDefault) GetField15() []byte { if m != nil { return m.Field15 } return nil } type CustomContainer struct { CustomStruct NidOptCustom `protobuf:"bytes,1,opt,name=CustomStruct" json:"CustomStruct"` XXX_unrecognized []byte `json:"-"` } func (m *CustomContainer) Reset() { *m = CustomContainer{} } func (*CustomContainer) ProtoMessage() {} func (*CustomContainer) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{45} } type CustomNameNidOptNative struct { FieldA float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` FieldB float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` FieldC int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3"` FieldD int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4"` FieldE uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5"` FieldF uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` FieldG int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` FieldH int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8"` FieldI uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9"` FieldJ int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10"` FieldK uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11"` FieldL int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12"` FieldM bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` FieldN string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` FieldO []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNidOptNative) Reset() { *m = CustomNameNidOptNative{} } func (*CustomNameNidOptNative) ProtoMessage() {} func (*CustomNameNidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{46} } type CustomNameNinOptNative struct { FieldA *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` FieldB *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` FieldC *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` FieldD *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` FieldE *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` FieldF *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` FieldG *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` FieldH *int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8,omitempty"` FieldI *uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9,omitempty"` FieldJ *int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10,omitempty"` FieldK *uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11,omitempty"` FielL *int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12,omitempty"` FieldM *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` FieldN *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` FieldO []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinOptNative) Reset() { *m = CustomNameNinOptNative{} } func (*CustomNameNinOptNative) ProtoMessage() {} func (*CustomNameNinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{47} } type CustomNameNinRepNative struct { FieldA []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` FieldB []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` FieldC []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` FieldD []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` FieldE []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` FieldF []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` FieldG []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` FieldH []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` FieldI []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` FieldJ []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` FieldK []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` FieldL []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` FieldM []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` FieldN []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` FieldO [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinRepNative) Reset() { *m = CustomNameNinRepNative{} } func (*CustomNameNinRepNative) ProtoMessage() {} func (*CustomNameNinRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{48} } type CustomNameNinStruct struct { FieldA *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` FieldB *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` FieldC *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` FieldD []*NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4,omitempty"` FieldE *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` FieldF *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` FieldG *NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8,omitempty"` FieldH *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` FieldI *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` FieldJ []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinStruct) Reset() { *m = CustomNameNinStruct{} } func (*CustomNameNinStruct) ProtoMessage() {} func (*CustomNameNinStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{49} } type CustomNameCustomType struct { FieldA *Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id,omitempty"` FieldB *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` FieldC []Uuid `protobuf:"bytes,3,rep,name=Ids,customtype=Uuid" json:"Ids,omitempty"` FieldD []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,4,rep,name=Values,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Values,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameCustomType) Reset() { *m = CustomNameCustomType{} } func (*CustomNameCustomType) ProtoMessage() {} func (*CustomNameCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{50} } type CustomNameNinEmbeddedStructUnion struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` FieldA *NinOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` FieldB *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinEmbeddedStructUnion) Reset() { *m = CustomNameNinEmbeddedStructUnion{} } func (*CustomNameNinEmbeddedStructUnion) ProtoMessage() {} func (*CustomNameNinEmbeddedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{51} } type CustomNameEnum struct { FieldA *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` FieldB []TheTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.TheTestEnum" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameEnum) Reset() { *m = CustomNameEnum{} } func (*CustomNameEnum) ProtoMessage() {} func (*CustomNameEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{52} } type NoExtensionsMap struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` XXX_extensions []byte `protobuf:"bytes,0,opt" json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *NoExtensionsMap) Reset() { *m = NoExtensionsMap{} } func (*NoExtensionsMap) ProtoMessage() {} func (*NoExtensionsMap) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{53} } var extRange_NoExtensionsMap = []proto.ExtensionRange{ {Start: 100, End: 199}, } func (*NoExtensionsMap) ExtensionRangeArray() []proto.ExtensionRange { return extRange_NoExtensionsMap } func (m *NoExtensionsMap) GetExtensions() *[]byte { if m.XXX_extensions == nil { m.XXX_extensions = make([]byte, 0) } return &m.XXX_extensions } type Unrecognized struct { Field1 *string `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *Unrecognized) Reset() { *m = Unrecognized{} } func (*Unrecognized) ProtoMessage() {} func (*Unrecognized) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{54} } type UnrecognizedWithInner struct { Embedded []*UnrecognizedWithInner_Inner `protobuf:"bytes,1,rep,name=embedded" json:"embedded,omitempty"` Field2 *string `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UnrecognizedWithInner) Reset() { *m = UnrecognizedWithInner{} } func (*UnrecognizedWithInner) ProtoMessage() {} func (*UnrecognizedWithInner) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{55} } type UnrecognizedWithInner_Inner struct { Field1 *uint32 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *UnrecognizedWithInner_Inner) Reset() { *m = UnrecognizedWithInner_Inner{} } func (*UnrecognizedWithInner_Inner) ProtoMessage() {} func (*UnrecognizedWithInner_Inner) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{55, 0} } type UnrecognizedWithEmbed struct { UnrecognizedWithEmbed_Embedded `protobuf:"bytes,1,opt,name=embedded,embedded=embedded" json:"embedded"` Field2 *string `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UnrecognizedWithEmbed) Reset() { *m = UnrecognizedWithEmbed{} } func (*UnrecognizedWithEmbed) ProtoMessage() {} func (*UnrecognizedWithEmbed) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{56} } type UnrecognizedWithEmbed_Embedded struct { Field1 *uint32 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *UnrecognizedWithEmbed_Embedded) Reset() { *m = UnrecognizedWithEmbed_Embedded{} } func (*UnrecognizedWithEmbed_Embedded) ProtoMessage() {} func (*UnrecognizedWithEmbed_Embedded) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{56, 0} } type Node struct { Label *string `protobuf:"bytes,1,opt,name=Label" json:"Label,omitempty"` Children []*Node `protobuf:"bytes,2,rep,name=Children" json:"Children,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Node) Reset() { *m = Node{} } func (*Node) ProtoMessage() {} func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{57} } type NonByteCustomType struct { Field1 *T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NonByteCustomType) Reset() { *m = NonByteCustomType{} } func (*NonByteCustomType) ProtoMessage() {} func (*NonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{58} } type NidOptNonByteCustomType struct { Field1 T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptNonByteCustomType) Reset() { *m = NidOptNonByteCustomType{} } func (*NidOptNonByteCustomType) ProtoMessage() {} func (*NidOptNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{59} } type NinOptNonByteCustomType struct { Field1 *T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNonByteCustomType) Reset() { *m = NinOptNonByteCustomType{} } func (*NinOptNonByteCustomType) ProtoMessage() {} func (*NinOptNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{60} } type NidRepNonByteCustomType struct { Field1 []T `protobuf:"bytes,1,rep,name=Field1,customtype=T" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepNonByteCustomType) Reset() { *m = NidRepNonByteCustomType{} } func (*NidRepNonByteCustomType) ProtoMessage() {} func (*NidRepNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{61} } type NinRepNonByteCustomType struct { Field1 []T `protobuf:"bytes,1,rep,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNonByteCustomType) Reset() { *m = NinRepNonByteCustomType{} } func (*NinRepNonByteCustomType) ProtoMessage() {} func (*NinRepNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{62} } type ProtoType struct { Field2 *string `protobuf:"bytes,1,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *ProtoType) Reset() { *m = ProtoType{} } func (*ProtoType) ProtoMessage() {} func (*ProtoType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{63} } var E_FieldA = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*float64)(nil), Field: 100, Name: "test.FieldA", Tag: "fixed64,100,opt,name=FieldA", Filename: "combos/both/thetest.proto", } var E_FieldB = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*NinOptNative)(nil), Field: 101, Name: "test.FieldB", Tag: "bytes,101,opt,name=FieldB", Filename: "combos/both/thetest.proto", } var E_FieldC = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*NinEmbeddedStruct)(nil), Field: 102, Name: "test.FieldC", Tag: "bytes,102,opt,name=FieldC", Filename: "combos/both/thetest.proto", } var E_FieldD = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: ([]int64)(nil), Field: 104, Name: "test.FieldD", Tag: "varint,104,rep,name=FieldD", Filename: "combos/both/thetest.proto", } var E_FieldE = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: ([]*NinOptNative)(nil), Field: 105, Name: "test.FieldE", Tag: "bytes,105,rep,name=FieldE", Filename: "combos/both/thetest.proto", } var E_FieldA1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*float64)(nil), Field: 100, Name: "test.FieldA1", Tag: "fixed64,100,opt,name=FieldA1", Filename: "combos/both/thetest.proto", } var E_FieldB1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*NinOptNative)(nil), Field: 101, Name: "test.FieldB1", Tag: "bytes,101,opt,name=FieldB1", Filename: "combos/both/thetest.proto", } var E_FieldC1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*NinEmbeddedStruct)(nil), Field: 102, Name: "test.FieldC1", Tag: "bytes,102,opt,name=FieldC1", Filename: "combos/both/thetest.proto", } func init() { proto.RegisterType((*NidOptNative)(nil), "test.NidOptNative") proto.RegisterType((*NinOptNative)(nil), "test.NinOptNative") proto.RegisterType((*NidRepNative)(nil), "test.NidRepNative") proto.RegisterType((*NinRepNative)(nil), "test.NinRepNative") proto.RegisterType((*NidRepPackedNative)(nil), "test.NidRepPackedNative") proto.RegisterType((*NinRepPackedNative)(nil), "test.NinRepPackedNative") proto.RegisterType((*NidOptStruct)(nil), "test.NidOptStruct") proto.RegisterType((*NinOptStruct)(nil), "test.NinOptStruct") proto.RegisterType((*NidRepStruct)(nil), "test.NidRepStruct") proto.RegisterType((*NinRepStruct)(nil), "test.NinRepStruct") proto.RegisterType((*NidEmbeddedStruct)(nil), "test.NidEmbeddedStruct") proto.RegisterType((*NinEmbeddedStruct)(nil), "test.NinEmbeddedStruct") proto.RegisterType((*NidNestedStruct)(nil), "test.NidNestedStruct") proto.RegisterType((*NinNestedStruct)(nil), "test.NinNestedStruct") proto.RegisterType((*NidOptCustom)(nil), "test.NidOptCustom") proto.RegisterType((*CustomDash)(nil), "test.CustomDash") proto.RegisterType((*NinOptCustom)(nil), "test.NinOptCustom") proto.RegisterType((*NidRepCustom)(nil), "test.NidRepCustom") proto.RegisterType((*NinRepCustom)(nil), "test.NinRepCustom") proto.RegisterType((*NinOptNativeUnion)(nil), "test.NinOptNativeUnion") proto.RegisterType((*NinOptStructUnion)(nil), "test.NinOptStructUnion") proto.RegisterType((*NinEmbeddedStructUnion)(nil), "test.NinEmbeddedStructUnion") proto.RegisterType((*NinNestedStructUnion)(nil), "test.NinNestedStructUnion") proto.RegisterType((*Tree)(nil), "test.Tree") proto.RegisterType((*OrBranch)(nil), "test.OrBranch") proto.RegisterType((*AndBranch)(nil), "test.AndBranch") proto.RegisterType((*Leaf)(nil), "test.Leaf") proto.RegisterType((*DeepTree)(nil), "test.DeepTree") proto.RegisterType((*ADeepBranch)(nil), "test.ADeepBranch") proto.RegisterType((*AndDeepBranch)(nil), "test.AndDeepBranch") proto.RegisterType((*DeepLeaf)(nil), "test.DeepLeaf") proto.RegisterType((*Nil)(nil), "test.Nil") proto.RegisterType((*NidOptEnum)(nil), "test.NidOptEnum") proto.RegisterType((*NinOptEnum)(nil), "test.NinOptEnum") proto.RegisterType((*NidRepEnum)(nil), "test.NidRepEnum") proto.RegisterType((*NinRepEnum)(nil), "test.NinRepEnum") proto.RegisterType((*NinOptEnumDefault)(nil), "test.NinOptEnumDefault") proto.RegisterType((*AnotherNinOptEnum)(nil), "test.AnotherNinOptEnum") proto.RegisterType((*AnotherNinOptEnumDefault)(nil), "test.AnotherNinOptEnumDefault") proto.RegisterType((*Timer)(nil), "test.Timer") proto.RegisterType((*MyExtendable)(nil), "test.MyExtendable") proto.RegisterType((*OtherExtenable)(nil), "test.OtherExtenable") proto.RegisterType((*NestedDefinition)(nil), "test.NestedDefinition") proto.RegisterType((*NestedDefinition_NestedMessage)(nil), "test.NestedDefinition.NestedMessage") proto.RegisterType((*NestedDefinition_NestedMessage_NestedNestedMsg)(nil), "test.NestedDefinition.NestedMessage.NestedNestedMsg") proto.RegisterType((*NestedScope)(nil), "test.NestedScope") proto.RegisterType((*NinOptNativeDefault)(nil), "test.NinOptNativeDefault") proto.RegisterType((*CustomContainer)(nil), "test.CustomContainer") proto.RegisterType((*CustomNameNidOptNative)(nil), "test.CustomNameNidOptNative") proto.RegisterType((*CustomNameNinOptNative)(nil), "test.CustomNameNinOptNative") proto.RegisterType((*CustomNameNinRepNative)(nil), "test.CustomNameNinRepNative") proto.RegisterType((*CustomNameNinStruct)(nil), "test.CustomNameNinStruct") proto.RegisterType((*CustomNameCustomType)(nil), "test.CustomNameCustomType") proto.RegisterType((*CustomNameNinEmbeddedStructUnion)(nil), "test.CustomNameNinEmbeddedStructUnion") proto.RegisterType((*CustomNameEnum)(nil), "test.CustomNameEnum") proto.RegisterType((*NoExtensionsMap)(nil), "test.NoExtensionsMap") proto.RegisterType((*Unrecognized)(nil), "test.Unrecognized") proto.RegisterType((*UnrecognizedWithInner)(nil), "test.UnrecognizedWithInner") proto.RegisterType((*UnrecognizedWithInner_Inner)(nil), "test.UnrecognizedWithInner.Inner") proto.RegisterType((*UnrecognizedWithEmbed)(nil), "test.UnrecognizedWithEmbed") proto.RegisterType((*UnrecognizedWithEmbed_Embedded)(nil), "test.UnrecognizedWithEmbed.Embedded") proto.RegisterType((*Node)(nil), "test.Node") proto.RegisterType((*NonByteCustomType)(nil), "test.NonByteCustomType") proto.RegisterType((*NidOptNonByteCustomType)(nil), "test.NidOptNonByteCustomType") proto.RegisterType((*NinOptNonByteCustomType)(nil), "test.NinOptNonByteCustomType") proto.RegisterType((*NidRepNonByteCustomType)(nil), "test.NidRepNonByteCustomType") proto.RegisterType((*NinRepNonByteCustomType)(nil), "test.NinRepNonByteCustomType") proto.RegisterType((*ProtoType)(nil), "test.ProtoType") proto.RegisterEnum("test.TheTestEnum", TheTestEnum_name, TheTestEnum_value) proto.RegisterEnum("test.AnotherTestEnum", AnotherTestEnum_name, AnotherTestEnum_value) proto.RegisterEnum("test.YetAnotherTestEnum", YetAnotherTestEnum_name, YetAnotherTestEnum_value) proto.RegisterEnum("test.YetYetAnotherTestEnum", YetYetAnotherTestEnum_name, YetYetAnotherTestEnum_value) proto.RegisterEnum("test.NestedDefinition_NestedEnum", NestedDefinition_NestedEnum_name, NestedDefinition_NestedEnum_value) proto.RegisterExtension(E_FieldA) proto.RegisterExtension(E_FieldB) proto.RegisterExtension(E_FieldC) proto.RegisterExtension(E_FieldD) proto.RegisterExtension(E_FieldE) proto.RegisterExtension(E_FieldA1) proto.RegisterExtension(E_FieldB1) proto.RegisterExtension(E_FieldC1) } func (this *NidOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if this.Field2 != that1.Field2 { if this.Field2 < that1.Field2 { return -1 } return 1 } if this.Field3 != that1.Field3 { if this.Field3 < that1.Field3 { return -1 } return 1 } if this.Field4 != that1.Field4 { if this.Field4 < that1.Field4 { return -1 } return 1 } if this.Field5 != that1.Field5 { if this.Field5 < that1.Field5 { return -1 } return 1 } if this.Field6 != that1.Field6 { if this.Field6 < that1.Field6 { return -1 } return 1 } if this.Field7 != that1.Field7 { if this.Field7 < that1.Field7 { return -1 } return 1 } if this.Field8 != that1.Field8 { if this.Field8 < that1.Field8 { return -1 } return 1 } if this.Field9 != that1.Field9 { if this.Field9 < that1.Field9 { return -1 } return 1 } if this.Field10 != that1.Field10 { if this.Field10 < that1.Field10 { return -1 } return 1 } if this.Field11 != that1.Field11 { if this.Field11 < that1.Field11 { return -1 } return 1 } if this.Field12 != that1.Field12 { if this.Field12 < that1.Field12 { return -1 } return 1 } if this.Field13 != that1.Field13 { if !this.Field13 { return -1 } return 1 } if this.Field14 != that1.Field14 { if this.Field14 < that1.Field14 { return -1 } return 1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { if *this.Field8 < *that1.Field8 { return -1 } return 1 } } else if this.Field8 != nil { return 1 } else if that1.Field8 != nil { return -1 } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { if *this.Field9 < *that1.Field9 { return -1 } return 1 } } else if this.Field9 != nil { return 1 } else if that1.Field9 != nil { return -1 } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { if *this.Field10 < *that1.Field10 { return -1 } return 1 } } else if this.Field10 != nil { return 1 } else if that1.Field10 != nil { return -1 } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { if *this.Field11 < *that1.Field11 { return -1 } return 1 } } else if this.Field11 != nil { return 1 } else if that1.Field11 != nil { return -1 } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { if *this.Field12 < *that1.Field12 { return -1 } return 1 } } else if this.Field12 != nil { return 1 } else if that1.Field12 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepPackedNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepPackedNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if this.Field2 != that1.Field2 { if this.Field2 < that1.Field2 { return -1 } return 1 } if c := this.Field3.Compare(&that1.Field3); c != 0 { return c } if c := this.Field4.Compare(&that1.Field4); c != 0 { return c } if this.Field6 != that1.Field6 { if this.Field6 < that1.Field6 { return -1 } return 1 } if this.Field7 != that1.Field7 { if this.Field7 < that1.Field7 { return -1 } return 1 } if c := this.Field8.Compare(&that1.Field8); c != 0 { return c } if this.Field13 != that1.Field13 { if !this.Field13 { return -1 } return 1 } if this.Field14 != that1.Field14 { if this.Field14 < that1.Field14 { return -1 } return 1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := this.Field4.Compare(that1.Field4); c != 0 { return c } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if c := this.Field8.Compare(that1.Field8); c != 0 { return c } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if c := this.Field3[i].Compare(&that1.Field3[i]); c != 0 { return c } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if c := this.Field4[i].Compare(&that1.Field4[i]); c != 0 { return c } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if c := this.Field8[i].Compare(&that1.Field8[i]); c != 0 { return c } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if c := this.Field3[i].Compare(that1.Field3[i]); c != 0 { return c } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if c := this.Field4[i].Compare(that1.Field4[i]); c != 0 { return c } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if c := this.Field8[i].Compare(that1.Field8[i]); c != 0 { return c } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidEmbeddedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(&that1.Field200); c != 0 { return c } if this.Field210 != that1.Field210 { if !this.Field210 { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinEmbeddedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(that1.Field200); c != 0 { return c } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { if !*this.Field210 { return -1 } return 1 } } else if this.Field210 != nil { return 1 } else if that1.Field210 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidNestedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(&that1.Field1); c != 0 { return c } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if c := this.Field2[i].Compare(&that1.Field2[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinNestedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if c := this.Field2[i].Compare(that1.Field2[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Id.Compare(that1.Id); c != 0 { return c } if c := this.Value.Compare(that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomDash) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Value == nil { if this.Value != nil { return 1 } } else if this.Value == nil { return -1 } else if c := this.Value.Compare(*that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Id == nil { if this.Id != nil { return 1 } } else if this.Id == nil { return -1 } else if c := this.Id.Compare(*that1.Id); c != 0 { return c } if that1.Value == nil { if this.Value != nil { return 1 } } else if this.Value == nil { return -1 } else if c := this.Value.Compare(*that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Id) != len(that1.Id) { if len(this.Id) < len(that1.Id) { return -1 } return 1 } for i := range this.Id { if c := this.Id[i].Compare(that1.Id[i]); c != 0 { return c } } if len(this.Value) != len(that1.Value) { if len(this.Value) < len(that1.Value) { return -1 } return 1 } for i := range this.Value { if c := this.Value[i].Compare(that1.Value[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Id) != len(that1.Id) { if len(this.Id) < len(that1.Id) { return -1 } return 1 } for i := range this.Id { if c := this.Id[i].Compare(that1.Id[i]); c != 0 { return c } } if len(this.Value) != len(that1.Value) { if len(this.Value) < len(that1.Value) { return -1 } return 1 } for i := range this.Value { if c := this.Value[i].Compare(that1.Value[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNativeUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := this.Field4.Compare(that1.Field4); c != 0 { return c } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinEmbeddedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(that1.Field200); c != 0 { return c } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { if !*this.Field210 { return -1 } return 1 } } else if this.Field210 != nil { return 1 } else if that1.Field210 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinNestedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if c := this.Field2.Compare(that1.Field2); c != 0 { return c } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Tree) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Or.Compare(that1.Or); c != 0 { return c } if c := this.And.Compare(that1.And); c != 0 { return c } if c := this.Leaf.Compare(that1.Leaf); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *OrBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AndBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Leaf) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } if this.StrValue != that1.StrValue { if this.StrValue < that1.StrValue { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *DeepTree) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Down.Compare(that1.Down); c != 0 { return c } if c := this.And.Compare(that1.And); c != 0 { return c } if c := this.Leaf.Compare(that1.Leaf); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *ADeepBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Down.Compare(&that1.Down); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AndDeepBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *DeepLeaf) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Tree.Compare(&that1.Tree); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Nil) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptEnumDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AnotherNinOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AnotherNinOptEnumDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Timer) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Time1 != that1.Time1 { if this.Time1 < that1.Time1 { return -1 } return 1 } if this.Time2 != that1.Time2 { if this.Time2 < that1.Time2 { return -1 } return 1 } if c := bytes.Compare(this.Data, that1.Data); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *MyExtendable) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) extkeys := make([]int32, 0, len(thismap)+len(thatmap)) for k := range thismap { extkeys = append(extkeys, k) } for k := range thatmap { if _, ok := thismap[k]; !ok { extkeys = append(extkeys, k) } } github_com_gogo_protobuf_sortkeys.Int32s(extkeys) for _, k := range extkeys { if v, ok := thismap[k]; ok { if v2, ok := thatmap[k]; ok { if c := v.Compare(&v2); c != 0 { return c } } else { return 1 } } else { return -1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *OtherExtenable) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if *this.Field13 < *that1.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if c := this.M.Compare(that1.M); c != 0 { return c } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) extkeys := make([]int32, 0, len(thismap)+len(thatmap)) for k := range thismap { extkeys = append(extkeys, k) } for k := range thatmap { if _, ok := thismap[k]; !ok { extkeys = append(extkeys, k) } } github_com_gogo_protobuf_sortkeys.Int32s(extkeys) for _, k := range extkeys { if v, ok := thismap[k]; ok { if v2, ok := thatmap[k]; ok { if c := v.Compare(&v2); c != 0 { return c } } else { return 1 } } else { return -1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { if *this.EnumField < *that1.EnumField { return -1 } return 1 } } else if this.EnumField != nil { return 1 } else if that1.EnumField != nil { return -1 } if c := this.NNM.Compare(that1.NNM); c != 0 { return c } if c := this.NM.Compare(that1.NM); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition_NestedMessage) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { if *this.NestedField1 < *that1.NestedField1 { return -1 } return 1 } } else if this.NestedField1 != nil { return 1 } else if that1.NestedField1 != nil { return -1 } if c := this.NNM.Compare(that1.NNM); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { if *this.NestedNestedField1 < *that1.NestedNestedField1 { return -1 } return 1 } } else if this.NestedNestedField1 != nil { return 1 } else if that1.NestedNestedField1 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedScope) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.A.Compare(that1.A); c != 0 { return c } if this.B != nil && that1.B != nil { if *this.B != *that1.B { if *this.B < *that1.B { return -1 } return 1 } } else if this.B != nil { return 1 } else if that1.B != nil { return -1 } if c := this.C.Compare(that1.C); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNativeDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { if *this.Field8 < *that1.Field8 { return -1 } return 1 } } else if this.Field8 != nil { return 1 } else if that1.Field8 != nil { return -1 } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { if *this.Field9 < *that1.Field9 { return -1 } return 1 } } else if this.Field9 != nil { return 1 } else if that1.Field9 != nil { return -1 } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { if *this.Field10 < *that1.Field10 { return -1 } return 1 } } else if this.Field10 != nil { return 1 } else if that1.Field10 != nil { return -1 } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { if *this.Field11 < *that1.Field11 { return -1 } return 1 } } else if this.Field11 != nil { return 1 } else if that1.Field11 != nil { return -1 } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { if *this.Field12 < *that1.Field12 { return -1 } return 1 } } else if this.Field12 != nil { return 1 } else if that1.Field12 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomContainer) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.CustomStruct.Compare(&that1.CustomStruct); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNidOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != that1.FieldA { if this.FieldA < that1.FieldA { return -1 } return 1 } if this.FieldB != that1.FieldB { if this.FieldB < that1.FieldB { return -1 } return 1 } if this.FieldC != that1.FieldC { if this.FieldC < that1.FieldC { return -1 } return 1 } if this.FieldD != that1.FieldD { if this.FieldD < that1.FieldD { return -1 } return 1 } if this.FieldE != that1.FieldE { if this.FieldE < that1.FieldE { return -1 } return 1 } if this.FieldF != that1.FieldF { if this.FieldF < that1.FieldF { return -1 } return 1 } if this.FieldG != that1.FieldG { if this.FieldG < that1.FieldG { return -1 } return 1 } if this.FieldH != that1.FieldH { if this.FieldH < that1.FieldH { return -1 } return 1 } if this.FieldI != that1.FieldI { if this.FieldI < that1.FieldI { return -1 } return 1 } if this.FieldJ != that1.FieldJ { if this.FieldJ < that1.FieldJ { return -1 } return 1 } if this.FieldK != that1.FieldK { if this.FieldK < that1.FieldK { return -1 } return 1 } if this.FieldL != that1.FieldL { if this.FieldL < that1.FieldL { return -1 } return 1 } if this.FieldM != that1.FieldM { if !this.FieldM { return -1 } return 1 } if this.FieldN != that1.FieldN { if this.FieldN < that1.FieldN { return -1 } return 1 } if c := bytes.Compare(this.FieldO, that1.FieldO); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if *this.FieldB < *that1.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { if *this.FieldC < *that1.FieldC { return -1 } return 1 } } else if this.FieldC != nil { return 1 } else if that1.FieldC != nil { return -1 } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { if *this.FieldD < *that1.FieldD { return -1 } return 1 } } else if this.FieldD != nil { return 1 } else if that1.FieldD != nil { return -1 } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { if *this.FieldE < *that1.FieldE { return -1 } return 1 } } else if this.FieldE != nil { return 1 } else if that1.FieldE != nil { return -1 } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { if *this.FieldF < *that1.FieldF { return -1 } return 1 } } else if this.FieldF != nil { return 1 } else if that1.FieldF != nil { return -1 } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { if *this.FieldG < *that1.FieldG { return -1 } return 1 } } else if this.FieldG != nil { return 1 } else if that1.FieldG != nil { return -1 } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { if *this.FieldH < *that1.FieldH { return -1 } return 1 } } else if this.FieldH != nil { return 1 } else if that1.FieldH != nil { return -1 } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { if *this.FieldI < *that1.FieldI { return -1 } return 1 } } else if this.FieldI != nil { return 1 } else if that1.FieldI != nil { return -1 } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { if *this.FieldJ < *that1.FieldJ { return -1 } return 1 } } else if this.FieldJ != nil { return 1 } else if that1.FieldJ != nil { return -1 } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { if *this.FieldK < *that1.FieldK { return -1 } return 1 } } else if this.FieldK != nil { return 1 } else if that1.FieldK != nil { return -1 } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { if *this.FielL < *that1.FielL { return -1 } return 1 } } else if this.FielL != nil { return 1 } else if that1.FielL != nil { return -1 } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { if !*this.FieldM { return -1 } return 1 } } else if this.FieldM != nil { return 1 } else if that1.FieldM != nil { return -1 } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { if *this.FieldN < *that1.FieldN { return -1 } return 1 } } else if this.FieldN != nil { return 1 } else if that1.FieldN != nil { return -1 } if c := bytes.Compare(this.FieldO, that1.FieldO); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.FieldA) != len(that1.FieldA) { if len(this.FieldA) < len(that1.FieldA) { return -1 } return 1 } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { if this.FieldA[i] < that1.FieldA[i] { return -1 } return 1 } } if len(this.FieldB) != len(that1.FieldB) { if len(this.FieldB) < len(that1.FieldB) { return -1 } return 1 } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { if this.FieldB[i] < that1.FieldB[i] { return -1 } return 1 } } if len(this.FieldC) != len(that1.FieldC) { if len(this.FieldC) < len(that1.FieldC) { return -1 } return 1 } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { if this.FieldC[i] < that1.FieldC[i] { return -1 } return 1 } } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { if this.FieldD[i] < that1.FieldD[i] { return -1 } return 1 } } if len(this.FieldE) != len(that1.FieldE) { if len(this.FieldE) < len(that1.FieldE) { return -1 } return 1 } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { if this.FieldE[i] < that1.FieldE[i] { return -1 } return 1 } } if len(this.FieldF) != len(that1.FieldF) { if len(this.FieldF) < len(that1.FieldF) { return -1 } return 1 } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { if this.FieldF[i] < that1.FieldF[i] { return -1 } return 1 } } if len(this.FieldG) != len(that1.FieldG) { if len(this.FieldG) < len(that1.FieldG) { return -1 } return 1 } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { if this.FieldG[i] < that1.FieldG[i] { return -1 } return 1 } } if len(this.FieldH) != len(that1.FieldH) { if len(this.FieldH) < len(that1.FieldH) { return -1 } return 1 } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { if this.FieldH[i] < that1.FieldH[i] { return -1 } return 1 } } if len(this.FieldI) != len(that1.FieldI) { if len(this.FieldI) < len(that1.FieldI) { return -1 } return 1 } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { if this.FieldI[i] < that1.FieldI[i] { return -1 } return 1 } } if len(this.FieldJ) != len(that1.FieldJ) { if len(this.FieldJ) < len(that1.FieldJ) { return -1 } return 1 } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { if this.FieldJ[i] < that1.FieldJ[i] { return -1 } return 1 } } if len(this.FieldK) != len(that1.FieldK) { if len(this.FieldK) < len(that1.FieldK) { return -1 } return 1 } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { if this.FieldK[i] < that1.FieldK[i] { return -1 } return 1 } } if len(this.FieldL) != len(that1.FieldL) { if len(this.FieldL) < len(that1.FieldL) { return -1 } return 1 } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { if this.FieldL[i] < that1.FieldL[i] { return -1 } return 1 } } if len(this.FieldM) != len(that1.FieldM) { if len(this.FieldM) < len(that1.FieldM) { return -1 } return 1 } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { if !this.FieldM[i] { return -1 } return 1 } } if len(this.FieldN) != len(that1.FieldN) { if len(this.FieldN) < len(that1.FieldN) { return -1 } return 1 } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { if this.FieldN[i] < that1.FieldN[i] { return -1 } return 1 } } if len(this.FieldO) != len(that1.FieldO) { if len(this.FieldO) < len(that1.FieldO) { return -1 } return 1 } for i := range this.FieldO { if c := bytes.Compare(this.FieldO[i], that1.FieldO[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if *this.FieldB < *that1.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if c := this.FieldC.Compare(that1.FieldC); c != 0 { return c } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if c := this.FieldD[i].Compare(that1.FieldD[i]); c != 0 { return c } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { if *this.FieldE < *that1.FieldE { return -1 } return 1 } } else if this.FieldE != nil { return 1 } else if that1.FieldE != nil { return -1 } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { if *this.FieldF < *that1.FieldF { return -1 } return 1 } } else if this.FieldF != nil { return 1 } else if that1.FieldF != nil { return -1 } if c := this.FieldG.Compare(that1.FieldG); c != 0 { return c } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { if !*this.FieldH { return -1 } return 1 } } else if this.FieldH != nil { return 1 } else if that1.FieldH != nil { return -1 } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { if *this.FieldI < *that1.FieldI { return -1 } return 1 } } else if this.FieldI != nil { return 1 } else if that1.FieldI != nil { return -1 } if c := bytes.Compare(this.FieldJ, that1.FieldJ); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.FieldA == nil { if this.FieldA != nil { return 1 } } else if this.FieldA == nil { return -1 } else if c := this.FieldA.Compare(*that1.FieldA); c != 0 { return c } if that1.FieldB == nil { if this.FieldB != nil { return 1 } } else if this.FieldB == nil { return -1 } else if c := this.FieldB.Compare(*that1.FieldB); c != 0 { return c } if len(this.FieldC) != len(that1.FieldC) { if len(this.FieldC) < len(that1.FieldC) { return -1 } return 1 } for i := range this.FieldC { if c := this.FieldC[i].Compare(that1.FieldC[i]); c != 0 { return c } } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if c := this.FieldD[i].Compare(that1.FieldD[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinEmbeddedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.FieldA.Compare(that1.FieldA); c != 0 { return c } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if !*this.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if len(this.FieldB) != len(that1.FieldB) { if len(this.FieldB) < len(that1.FieldB) { return -1 } return 1 } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { if this.FieldB[i] < that1.FieldB[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NoExtensionsMap) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if c := bytes.Compare(this.XXX_extensions, that1.XXX_extensions); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Unrecognized) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *UnrecognizedWithInner) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Embedded) != len(that1.Embedded) { if len(this.Embedded) < len(that1.Embedded) { return -1 } return 1 } for i := range this.Embedded { if c := this.Embedded[i].Compare(that1.Embedded[i]); c != 0 { return c } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *UnrecognizedWithInner_Inner) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *UnrecognizedWithEmbed) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.UnrecognizedWithEmbed_Embedded.Compare(&that1.UnrecognizedWithEmbed_Embedded); c != 0 { return c } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *UnrecognizedWithEmbed_Embedded) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *Node) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { if *this.Label < *that1.Label { return -1 } return 1 } } else if this.Label != nil { return 1 } else if that1.Label != nil { return -1 } if len(this.Children) != len(that1.Children) { if len(this.Children) < len(that1.Children) { return -1 } return 1 } for i := range this.Children { if c := this.Children[i].Compare(that1.Children[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Field1 == nil { if this.Field1 != nil { return 1 } } else if this.Field1 == nil { return -1 } else if c := this.Field1.Compare(*that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Field1 == nil { if this.Field1 != nil { return 1 } } else if this.Field1 == nil { return -1 } else if c := this.Field1.Compare(*that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if c := this.Field1[i].Compare(that1.Field1[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if c := this.Field1[i].Compare(that1.Field1[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *ProtoType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepPackedNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepPackedNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidEmbeddedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinEmbeddedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidNestedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinNestedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomDash) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNativeUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinEmbeddedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinNestedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Tree) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *OrBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AndBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Leaf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *DeepTree) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *ADeepBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AndDeepBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *DeepLeaf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Nil) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptEnumDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AnotherNinOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AnotherNinOptEnumDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Timer) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *MyExtendable) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *OtherExtenable) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition_NestedMessage) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedScope) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNativeDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomContainer) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNidOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinEmbeddedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NoExtensionsMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Unrecognized) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithInner) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithInner_Inner) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithEmbed) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithEmbed_Embedded) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Node) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *ProtoType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func ThetestDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 6586 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0x7b, 0x70, 0x24, 0x57, 0x75, 0xf7, 0xf6, 0xf4, 0x48, 0x3b, 0x3a, 0x7a, 0xb5, 0x5a, 0xbb, 0xda, 0xb1, 0xbc, 0x96, 0xb4, 0xe3, 0xf5, 0x5a, 0x16, 0xb6, 0x56, 0xab, 0xd5, 0xbe, 0x66, 0xb1, 0xfd, 0xcd, 0x6b, 0xd7, 0x5a, 0xa4, 0x91, 0x68, 0x49, 0xd8, 0xcb, 0xf7, 0x55, 0x4d, 0xf5, 0xce, 0x5c, 0x49, 0x63, 0xcf, 0x74, 0x0f, 0xd3, 0x3d, 0xb6, 0xe5, 0xfa, 0xea, 0x2b, 0x7f, 0x90, 0x10, 0x48, 0x2a, 0x4f, 0x92, 0x0a, 0x10, 0x30, 0x86, 0x14, 0xc1, 0x40, 0x1e, 0x10, 0x08, 0x21, 0x54, 0x2a, 0xf8, 0x1f, 0xc2, 0xe6, 0x9f, 0x94, 0xc9, 0x5f, 0x29, 0x2a, 0xe5, 0xc2, 0x0b, 0x55, 0x21, 0x89, 0x93, 0x10, 0x70, 0x55, 0xa8, 0x32, 0x7f, 0xa4, 0xee, 0xab, 0xbb, 0xef, 0x9d, 0x1e, 0x75, 0xcb, 0x6b, 0x1b, 0xfe, 0xd9, 0x9d, 0xb9, 0xe7, 0xfc, 0xce, 0x3d, 0xf7, 0x3c, 0xee, 0x3d, 0xf7, 0xa1, 0x81, 0x2f, 0x5e, 0x84, 0x99, 0x1d, 0xdb, 0xde, 0x69, 0xa0, 0xd3, 0xad, 0xb6, 0xed, 0xda, 0x37, 0x3a, 0xdb, 0xa7, 0x6b, 0xc8, 0xa9, 0xb6, 0xeb, 0x2d, 0xd7, 0x6e, 0xcf, 0x93, 0x36, 0x7d, 0x94, 0x72, 0xcc, 0x73, 0x8e, 0xcc, 0x2a, 0x8c, 0x5d, 0xa9, 0x37, 0x50, 0xd1, 0x63, 0xdc, 0x40, 0xae, 0x7e, 0x11, 0x92, 0xdb, 0xf5, 0x06, 0x4a, 0x2b, 0x33, 0xea, 0xec, 0xe0, 0xe2, 0xc9, 0x79, 0x09, 0x34, 0x2f, 0x22, 0xd6, 0x71, 0xb3, 0x41, 0x10, 0x99, 0x1f, 0x24, 0x61, 0x3c, 0x84, 0xaa, 0xeb, 0x90, 0xb4, 0xcc, 0x26, 0x96, 0xa8, 0xcc, 0x0e, 0x18, 0xe4, 0xb3, 0x9e, 0x86, 0xc3, 0x2d, 0xb3, 0xfa, 0x84, 0xb9, 0x83, 0xd2, 0x09, 0xd2, 0xcc, 0xbf, 0xea, 0x53, 0x00, 0x35, 0xd4, 0x42, 0x56, 0x0d, 0x59, 0xd5, 0xbd, 0xb4, 0x3a, 0xa3, 0xce, 0x0e, 0x18, 0x81, 0x16, 0xfd, 0x1d, 0x30, 0xd6, 0xea, 0xdc, 0x68, 0xd4, 0xab, 0x95, 0x00, 0x1b, 0xcc, 0xa8, 0xb3, 0x7d, 0x86, 0x46, 0x09, 0x45, 0x9f, 0xf9, 0x5e, 0x18, 0x7d, 0x0a, 0x99, 0x4f, 0x04, 0x59, 0x07, 0x09, 0xeb, 0x08, 0x6e, 0x0e, 0x30, 0x16, 0x60, 0xa8, 0x89, 0x1c, 0xc7, 0xdc, 0x41, 0x15, 0x77, 0xaf, 0x85, 0xd2, 0x49, 0x32, 0xfa, 0x99, 0xae, 0xd1, 0xcb, 0x23, 0x1f, 0x64, 0xa8, 0xcd, 0xbd, 0x16, 0xd2, 0x73, 0x30, 0x80, 0xac, 0x4e, 0x93, 0x4a, 0xe8, 0xeb, 0x61, 0xbf, 0x92, 0xd5, 0x69, 0xca, 0x52, 0x52, 0x18, 0xc6, 0x44, 0x1c, 0x76, 0x50, 0xfb, 0xc9, 0x7a, 0x15, 0xa5, 0xfb, 0x89, 0x80, 0x7b, 0xbb, 0x04, 0x6c, 0x50, 0xba, 0x2c, 0x83, 0xe3, 0xf4, 0x02, 0x0c, 0xa0, 0xa7, 0x5d, 0x64, 0x39, 0x75, 0xdb, 0x4a, 0x1f, 0x26, 0x42, 0xee, 0x09, 0xf1, 0x22, 0x6a, 0xd4, 0x64, 0x11, 0x3e, 0x4e, 0x3f, 0x0f, 0x87, 0xed, 0x96, 0x5b, 0xb7, 0x2d, 0x27, 0x9d, 0x9a, 0x51, 0x66, 0x07, 0x17, 0x8f, 0x87, 0x06, 0xc2, 0x1a, 0xe5, 0x31, 0x38, 0xb3, 0xbe, 0x0c, 0x9a, 0x63, 0x77, 0xda, 0x55, 0x54, 0xa9, 0xda, 0x35, 0x54, 0xa9, 0x5b, 0xdb, 0x76, 0x7a, 0x80, 0x08, 0x98, 0xee, 0x1e, 0x08, 0x61, 0x2c, 0xd8, 0x35, 0xb4, 0x6c, 0x6d, 0xdb, 0xc6, 0x88, 0x23, 0x7c, 0xd7, 0x27, 0xa0, 0xdf, 0xd9, 0xb3, 0x5c, 0xf3, 0xe9, 0xf4, 0x10, 0x89, 0x10, 0xf6, 0x2d, 0xf3, 0x57, 0xfd, 0x30, 0x1a, 0x27, 0xc4, 0x2e, 0x43, 0xdf, 0x36, 0x1e, 0x65, 0x3a, 0x71, 0x10, 0x1b, 0x50, 0x8c, 0x68, 0xc4, 0xfe, 0x37, 0x68, 0xc4, 0x1c, 0x0c, 0x5a, 0xc8, 0x71, 0x51, 0x8d, 0x46, 0x84, 0x1a, 0x33, 0xa6, 0x80, 0x82, 0xba, 0x43, 0x2a, 0xf9, 0x86, 0x42, 0xea, 0x31, 0x18, 0xf5, 0x54, 0xaa, 0xb4, 0x4d, 0x6b, 0x87, 0xc7, 0xe6, 0xe9, 0x28, 0x4d, 0xe6, 0x4b, 0x1c, 0x67, 0x60, 0x98, 0x31, 0x82, 0x84, 0xef, 0x7a, 0x11, 0xc0, 0xb6, 0x90, 0xbd, 0x5d, 0xa9, 0xa1, 0x6a, 0x23, 0x9d, 0xea, 0x61, 0xa5, 0x35, 0xcc, 0xd2, 0x65, 0x25, 0x9b, 0xb6, 0x56, 0x1b, 0xfa, 0x25, 0x3f, 0xd4, 0x0e, 0xf7, 0x88, 0x94, 0x55, 0x9a, 0x64, 0x5d, 0xd1, 0xb6, 0x05, 0x23, 0x6d, 0x84, 0xe3, 0x1e, 0xd5, 0xd8, 0xc8, 0x06, 0x88, 0x12, 0xf3, 0x91, 0x23, 0x33, 0x18, 0x8c, 0x0e, 0x6c, 0xb8, 0x1d, 0xfc, 0xaa, 0xdf, 0x0d, 0x5e, 0x43, 0x85, 0x84, 0x15, 0x90, 0x59, 0x68, 0x88, 0x37, 0x96, 0xcd, 0x26, 0x9a, 0x7c, 0x06, 0x46, 0x44, 0xf3, 0xe8, 0x47, 0xa0, 0xcf, 0x71, 0xcd, 0xb6, 0x4b, 0xa2, 0xb0, 0xcf, 0xa0, 0x5f, 0x74, 0x0d, 0x54, 0x64, 0xd5, 0xc8, 0x2c, 0xd7, 0x67, 0xe0, 0x8f, 0xfa, 0xff, 0xf2, 0x07, 0xac, 0x92, 0x01, 0x9f, 0xea, 0xf6, 0xa8, 0x20, 0x59, 0x1e, 0xf7, 0xe4, 0x05, 0x18, 0x16, 0x06, 0x10, 0xb7, 0xeb, 0xcc, 0xff, 0x85, 0xa3, 0xa1, 0xa2, 0xf5, 0xc7, 0xe0, 0x48, 0xc7, 0xaa, 0x5b, 0x2e, 0x6a, 0xb7, 0xda, 0x08, 0x47, 0x2c, 0xed, 0x2a, 0xfd, 0xcf, 0x87, 0x7b, 0xc4, 0xdc, 0x56, 0x90, 0x9b, 0x4a, 0x31, 0xc6, 0x3b, 0xdd, 0x8d, 0x73, 0x03, 0xa9, 0x1f, 0x1e, 0xd6, 0x9e, 0x7d, 0xf6, 0xd9, 0x67, 0x13, 0x99, 0x8f, 0xf6, 0xc3, 0x91, 0xb0, 0x9c, 0x09, 0x4d, 0xdf, 0x09, 0xe8, 0xb7, 0x3a, 0xcd, 0x1b, 0xa8, 0x4d, 0x8c, 0xd4, 0x67, 0xb0, 0x6f, 0x7a, 0x0e, 0xfa, 0x1a, 0xe6, 0x0d, 0xd4, 0x48, 0x27, 0x67, 0x94, 0xd9, 0x91, 0xc5, 0x77, 0xc4, 0xca, 0xca, 0xf9, 0x15, 0x0c, 0x31, 0x28, 0x52, 0x7f, 0x08, 0x92, 0x6c, 0x8a, 0xc6, 0x12, 0xe6, 0xe2, 0x49, 0xc0, 0xb9, 0x64, 0x10, 0x9c, 0x7e, 0x27, 0x0c, 0xe0, 0xff, 0x69, 0x6c, 0xf4, 0x13, 0x9d, 0x53, 0xb8, 0x01, 0xc7, 0x85, 0x3e, 0x09, 0x29, 0x92, 0x26, 0x35, 0xc4, 0x97, 0x36, 0xef, 0x3b, 0x0e, 0xac, 0x1a, 0xda, 0x36, 0x3b, 0x0d, 0xb7, 0xf2, 0xa4, 0xd9, 0xe8, 0x20, 0x12, 0xf0, 0x03, 0xc6, 0x10, 0x6b, 0x7c, 0x0f, 0x6e, 0xd3, 0xa7, 0x61, 0x90, 0x66, 0x55, 0xdd, 0xaa, 0xa1, 0xa7, 0xc9, 0xec, 0xd9, 0x67, 0xd0, 0x44, 0x5b, 0xc6, 0x2d, 0xb8, 0xfb, 0xc7, 0x1d, 0xdb, 0xe2, 0xa1, 0x49, 0xba, 0xc0, 0x0d, 0xa4, 0xfb, 0x0b, 0xf2, 0xc4, 0x7d, 0x57, 0xf8, 0xf0, 0xe4, 0x98, 0xca, 0x7c, 0x2d, 0x01, 0x49, 0x32, 0x5f, 0x8c, 0xc2, 0xe0, 0xe6, 0xf5, 0xf5, 0x52, 0xa5, 0xb8, 0xb6, 0x95, 0x5f, 0x29, 0x69, 0x8a, 0x3e, 0x02, 0x40, 0x1a, 0xae, 0xac, 0xac, 0xe5, 0x36, 0xb5, 0x84, 0xf7, 0x7d, 0xb9, 0xbc, 0x79, 0x7e, 0x49, 0x53, 0x3d, 0xc0, 0x16, 0x6d, 0x48, 0x06, 0x19, 0xce, 0x2e, 0x6a, 0x7d, 0xba, 0x06, 0x43, 0x54, 0xc0, 0xf2, 0x63, 0xa5, 0xe2, 0xf9, 0x25, 0xad, 0x5f, 0x6c, 0x39, 0xbb, 0xa8, 0x1d, 0xd6, 0x87, 0x61, 0x80, 0xb4, 0xe4, 0xd7, 0xd6, 0x56, 0xb4, 0x94, 0x27, 0x73, 0x63, 0xd3, 0x58, 0x2e, 0x5f, 0xd5, 0x06, 0x3c, 0x99, 0x57, 0x8d, 0xb5, 0xad, 0x75, 0x0d, 0x3c, 0x09, 0xab, 0xa5, 0x8d, 0x8d, 0xdc, 0xd5, 0x92, 0x36, 0xe8, 0x71, 0xe4, 0xaf, 0x6f, 0x96, 0x36, 0xb4, 0x21, 0x41, 0xad, 0xb3, 0x8b, 0xda, 0xb0, 0xd7, 0x45, 0xa9, 0xbc, 0xb5, 0xaa, 0x8d, 0xe8, 0x63, 0x30, 0x4c, 0xbb, 0xe0, 0x4a, 0x8c, 0x4a, 0x4d, 0xe7, 0x97, 0x34, 0xcd, 0x57, 0x84, 0x4a, 0x19, 0x13, 0x1a, 0xce, 0x2f, 0x69, 0x7a, 0xa6, 0x00, 0x7d, 0x24, 0xba, 0x74, 0x1d, 0x46, 0x56, 0x72, 0xf9, 0xd2, 0x4a, 0x65, 0x6d, 0x7d, 0x73, 0x79, 0xad, 0x9c, 0x5b, 0xd1, 0x14, 0xbf, 0xcd, 0x28, 0xbd, 0x7b, 0x6b, 0xd9, 0x28, 0x15, 0xb5, 0x44, 0xb0, 0x6d, 0xbd, 0x94, 0xdb, 0x2c, 0x15, 0x35, 0x35, 0x53, 0x85, 0x23, 0x61, 0xf3, 0x64, 0x68, 0x66, 0x04, 0x5c, 0x9c, 0xe8, 0xe1, 0x62, 0x22, 0xab, 0xcb, 0xc5, 0x9f, 0x51, 0x60, 0x3c, 0x64, 0xad, 0x08, 0xed, 0xe4, 0x61, 0xe8, 0xa3, 0x21, 0x4a, 0x57, 0xcf, 0xfb, 0x42, 0x17, 0x1d, 0x12, 0xb0, 0x5d, 0x2b, 0x28, 0xc1, 0x05, 0x2b, 0x08, 0xb5, 0x47, 0x05, 0x81, 0x45, 0x74, 0x29, 0xf9, 0x01, 0x05, 0xd2, 0xbd, 0x64, 0x47, 0x4c, 0x14, 0x09, 0x61, 0xa2, 0xb8, 0x2c, 0x2b, 0x70, 0xa2, 0xf7, 0x18, 0xba, 0xb4, 0xf8, 0x9c, 0x02, 0x13, 0xe1, 0x85, 0x56, 0xa8, 0x0e, 0x0f, 0x41, 0x7f, 0x13, 0xb9, 0xbb, 0x36, 0x2f, 0x36, 0x4e, 0x85, 0x2c, 0x61, 0x98, 0x2c, 0xdb, 0x8a, 0xa1, 0x82, 0x6b, 0xa0, 0xda, 0xab, 0x5a, 0xa2, 0xda, 0x74, 0x69, 0xfa, 0xe1, 0x04, 0x1c, 0x0d, 0x15, 0x1e, 0xaa, 0xe8, 0x5d, 0x00, 0x75, 0xab, 0xd5, 0x71, 0x69, 0x41, 0x41, 0xe7, 0xa7, 0x01, 0xd2, 0x42, 0x72, 0x1f, 0xcf, 0x3d, 0x1d, 0xd7, 0xa3, 0xab, 0x84, 0x0e, 0xb4, 0x89, 0x30, 0x5c, 0xf4, 0x15, 0x4d, 0x12, 0x45, 0xa7, 0x7a, 0x8c, 0xb4, 0x6b, 0xad, 0x5e, 0x00, 0xad, 0xda, 0xa8, 0x23, 0xcb, 0xad, 0x38, 0x6e, 0x1b, 0x99, 0xcd, 0xba, 0xb5, 0x43, 0x26, 0xe0, 0x54, 0xb6, 0x6f, 0xdb, 0x6c, 0x38, 0xc8, 0x18, 0xa5, 0xe4, 0x0d, 0x4e, 0xc5, 0x08, 0xb2, 0xc6, 0xb5, 0x03, 0x88, 0x7e, 0x01, 0x41, 0xc9, 0x1e, 0x22, 0xf3, 0x95, 0x14, 0x0c, 0x06, 0xca, 0x52, 0xfd, 0x04, 0x0c, 0x3d, 0x6e, 0x3e, 0x69, 0x56, 0xf8, 0x56, 0x83, 0x5a, 0x62, 0x10, 0xb7, 0xad, 0xb3, 0xed, 0xc6, 0x02, 0x1c, 0x21, 0x2c, 0x76, 0xc7, 0x45, 0xed, 0x4a, 0xb5, 0x61, 0x3a, 0x0e, 0x31, 0x5a, 0x8a, 0xb0, 0xea, 0x98, 0xb6, 0x86, 0x49, 0x05, 0x4e, 0xd1, 0xcf, 0xc1, 0x38, 0x41, 0x34, 0x3b, 0x0d, 0xb7, 0xde, 0x6a, 0xa0, 0x0a, 0xde, 0xfc, 0x38, 0x64, 0x22, 0xf6, 0x34, 0x1b, 0xc3, 0x1c, 0xab, 0x8c, 0x01, 0x6b, 0xe4, 0xe8, 0x45, 0xb8, 0x8b, 0xc0, 0x76, 0x90, 0x85, 0xda, 0xa6, 0x8b, 0x2a, 0xe8, 0x7d, 0x1d, 0xb3, 0xe1, 0x54, 0x4c, 0xab, 0x56, 0xd9, 0x35, 0x9d, 0xdd, 0xf4, 0x11, 0x2c, 0x20, 0x9f, 0x48, 0x2b, 0xc6, 0x1d, 0x98, 0xf1, 0x2a, 0xe3, 0x2b, 0x11, 0xb6, 0x9c, 0x55, 0x7b, 0xc4, 0x74, 0x76, 0xf5, 0x2c, 0x4c, 0x10, 0x29, 0x8e, 0xdb, 0xae, 0x5b, 0x3b, 0x95, 0xea, 0x2e, 0xaa, 0x3e, 0x51, 0xe9, 0xb8, 0xdb, 0x17, 0xd3, 0x77, 0x06, 0xfb, 0x27, 0x1a, 0x6e, 0x10, 0x9e, 0x02, 0x66, 0xd9, 0x72, 0xb7, 0x2f, 0xea, 0x1b, 0x30, 0x84, 0x9d, 0xd1, 0xac, 0x3f, 0x83, 0x2a, 0xdb, 0x76, 0x9b, 0xac, 0x2c, 0x23, 0x21, 0x99, 0x1d, 0xb0, 0xe0, 0xfc, 0x1a, 0x03, 0xac, 0xda, 0x35, 0x94, 0xed, 0xdb, 0x58, 0x2f, 0x95, 0x8a, 0xc6, 0x20, 0x97, 0x72, 0xc5, 0x6e, 0xe3, 0x80, 0xda, 0xb1, 0x3d, 0x03, 0x0f, 0xd2, 0x80, 0xda, 0xb1, 0xb9, 0x79, 0xcf, 0xc1, 0x78, 0xb5, 0x4a, 0xc7, 0x5c, 0xaf, 0x56, 0xd8, 0x16, 0xc5, 0x49, 0x6b, 0x82, 0xb1, 0xaa, 0xd5, 0xab, 0x94, 0x81, 0xc5, 0xb8, 0xa3, 0x5f, 0x82, 0xa3, 0xbe, 0xb1, 0x82, 0xc0, 0xb1, 0xae, 0x51, 0xca, 0xd0, 0x73, 0x30, 0xde, 0xda, 0xeb, 0x06, 0xea, 0x42, 0x8f, 0xad, 0x3d, 0x19, 0x76, 0x01, 0x8e, 0xb4, 0x76, 0x5b, 0xdd, 0xb8, 0xf1, 0x20, 0x4e, 0x6f, 0xed, 0xb6, 0x64, 0xe0, 0x3d, 0x64, 0xbf, 0xda, 0x46, 0x55, 0xd3, 0x45, 0xb5, 0xf4, 0xb1, 0x20, 0x7b, 0x80, 0xa0, 0x9f, 0x06, 0xad, 0x5a, 0xad, 0x20, 0xcb, 0xbc, 0xd1, 0x40, 0x15, 0xb3, 0x8d, 0x2c, 0xd3, 0x49, 0x4f, 0x07, 0x99, 0x47, 0xaa, 0xd5, 0x12, 0xa1, 0xe6, 0x08, 0x51, 0x9f, 0x83, 0x31, 0xfb, 0xc6, 0xe3, 0x55, 0x1a, 0x92, 0x95, 0x56, 0x1b, 0x6d, 0xd7, 0x9f, 0x4e, 0x9f, 0x24, 0xf6, 0x1d, 0xc5, 0x04, 0x12, 0x90, 0xeb, 0xa4, 0x59, 0xbf, 0x0f, 0xb4, 0xaa, 0xb3, 0x6b, 0xb6, 0x5b, 0xa4, 0x26, 0x70, 0x5a, 0x66, 0x15, 0xa5, 0xef, 0xa1, 0xac, 0xb4, 0xbd, 0xcc, 0x9b, 0x71, 0x4a, 0x38, 0x4f, 0xd5, 0xb7, 0x5d, 0x2e, 0xf1, 0x5e, 0x9a, 0x12, 0xa4, 0x8d, 0x49, 0x9b, 0x05, 0x0d, 0x9b, 0x42, 0xe8, 0x78, 0x96, 0xb0, 0x8d, 0xb4, 0x76, 0x5b, 0xc1, 0x7e, 0xef, 0x86, 0x61, 0xcc, 0xe9, 0x77, 0x7a, 0x1f, 0xad, 0x67, 0x5a, 0xbb, 0x81, 0x1e, 0xdf, 0xb2, 0xd2, 0x32, 0x93, 0x85, 0xa1, 0x60, 0x7c, 0xea, 0x03, 0x40, 0x23, 0x54, 0x53, 0xf0, 0x5a, 0x5f, 0x58, 0x2b, 0xe2, 0x55, 0xfa, 0xbd, 0x25, 0x2d, 0x81, 0xab, 0x85, 0x95, 0xe5, 0xcd, 0x52, 0xc5, 0xd8, 0x2a, 0x6f, 0x2e, 0xaf, 0x96, 0x34, 0x35, 0x58, 0x96, 0x7e, 0x2b, 0x01, 0x23, 0xe2, 0x0e, 0x43, 0x7f, 0x27, 0x1c, 0xe3, 0xc7, 0x01, 0x0e, 0x72, 0x2b, 0x4f, 0xd5, 0xdb, 0x24, 0x65, 0x9a, 0x26, 0xad, 0xb0, 0x3d, 0xa7, 0x1d, 0x61, 0x5c, 0x1b, 0xc8, 0x7d, 0xb4, 0xde, 0xc6, 0x09, 0xd1, 0x34, 0x5d, 0x7d, 0x05, 0xa6, 0x2d, 0xbb, 0xe2, 0xb8, 0xa6, 0x55, 0x33, 0xdb, 0xb5, 0x8a, 0x7f, 0x10, 0x53, 0x31, 0xab, 0x55, 0xe4, 0x38, 0x36, 0x5d, 0xaa, 0x3c, 0x29, 0xc7, 0x2d, 0x7b, 0x83, 0x31, 0xfb, 0x73, 0x78, 0x8e, 0xb1, 0x4a, 0x01, 0xa6, 0xf6, 0x0a, 0xb0, 0x3b, 0x61, 0xa0, 0x69, 0xb6, 0x2a, 0xc8, 0x72, 0xdb, 0x7b, 0xa4, 0xae, 0x4c, 0x19, 0xa9, 0xa6, 0xd9, 0x2a, 0xe1, 0xef, 0x6f, 0x4f, 0x79, 0xff, 0x4f, 0x2a, 0x0c, 0x05, 0x6b, 0x4b, 0x5c, 0xaa, 0x57, 0xc9, 0x3a, 0xa2, 0x90, 0x99, 0xe6, 0xee, 0x7d, 0x2b, 0xd1, 0xf9, 0x02, 0x5e, 0x60, 0xb2, 0xfd, 0xb4, 0xe2, 0x33, 0x28, 0x12, 0x2f, 0xee, 0x78, 0x6e, 0x41, 0x74, 0x17, 0x93, 0x32, 0xd8, 0x37, 0xfd, 0x2a, 0xf4, 0x3f, 0xee, 0x10, 0xd9, 0xfd, 0x44, 0xf6, 0xc9, 0xfd, 0x65, 0x5f, 0xdb, 0x20, 0xc2, 0x07, 0xae, 0x6d, 0x54, 0xca, 0x6b, 0xc6, 0x6a, 0x6e, 0xc5, 0x60, 0x70, 0xfd, 0x0e, 0x48, 0x36, 0xcc, 0x67, 0xf6, 0xc4, 0xa5, 0x88, 0x34, 0xc5, 0x35, 0xfc, 0x1d, 0x90, 0x7c, 0x0a, 0x99, 0x4f, 0x88, 0x0b, 0x00, 0x69, 0x7a, 0x0b, 0x43, 0xff, 0x34, 0xf4, 0x11, 0x7b, 0xe9, 0x00, 0xcc, 0x62, 0xda, 0x21, 0x3d, 0x05, 0xc9, 0xc2, 0x9a, 0x81, 0xc3, 0x5f, 0x83, 0x21, 0xda, 0x5a, 0x59, 0x5f, 0x2e, 0x15, 0x4a, 0x5a, 0x22, 0x73, 0x0e, 0xfa, 0xa9, 0x11, 0x70, 0x6a, 0x78, 0x66, 0xd0, 0x0e, 0xb1, 0xaf, 0x4c, 0x86, 0xc2, 0xa9, 0x5b, 0xab, 0xf9, 0x92, 0xa1, 0x25, 0x82, 0xee, 0x75, 0x60, 0x28, 0x58, 0x56, 0xbe, 0x3d, 0x31, 0xf5, 0x0d, 0x05, 0x06, 0x03, 0x65, 0x22, 0x2e, 0x50, 0xcc, 0x46, 0xc3, 0x7e, 0xaa, 0x62, 0x36, 0xea, 0xa6, 0xc3, 0x82, 0x02, 0x48, 0x53, 0x0e, 0xb7, 0xc4, 0x75, 0xda, 0xdb, 0xa2, 0xfc, 0x73, 0x0a, 0x68, 0x72, 0x89, 0x29, 0x29, 0xa8, 0xfc, 0x5c, 0x15, 0xfc, 0x84, 0x02, 0x23, 0x62, 0x5d, 0x29, 0xa9, 0x77, 0xe2, 0xe7, 0xaa, 0xde, 0xf7, 0x12, 0x30, 0x2c, 0x54, 0x93, 0x71, 0xb5, 0x7b, 0x1f, 0x8c, 0xd5, 0x6b, 0xa8, 0xd9, 0xb2, 0x5d, 0x64, 0x55, 0xf7, 0x2a, 0x0d, 0xf4, 0x24, 0x6a, 0xa4, 0x33, 0x64, 0xa2, 0x38, 0xbd, 0x7f, 0xbd, 0x3a, 0xbf, 0xec, 0xe3, 0x56, 0x30, 0x2c, 0x3b, 0xbe, 0x5c, 0x2c, 0xad, 0xae, 0xaf, 0x6d, 0x96, 0xca, 0x85, 0xeb, 0x95, 0xad, 0xf2, 0xbb, 0xca, 0x6b, 0x8f, 0x96, 0x0d, 0xad, 0x2e, 0xb1, 0xbd, 0x85, 0xa9, 0xbe, 0x0e, 0x9a, 0xac, 0x94, 0x7e, 0x0c, 0xc2, 0xd4, 0xd2, 0x0e, 0xe9, 0xe3, 0x30, 0x5a, 0x5e, 0xab, 0x6c, 0x2c, 0x17, 0x4b, 0x95, 0xd2, 0x95, 0x2b, 0xa5, 0xc2, 0xe6, 0x06, 0xdd, 0xc0, 0x7b, 0xdc, 0x9b, 0x62, 0x52, 0x7f, 0x5c, 0x85, 0xf1, 0x10, 0x4d, 0xf4, 0x1c, 0xdb, 0x3b, 0xd0, 0xed, 0xcc, 0x03, 0x71, 0xb4, 0x9f, 0xc7, 0x4b, 0xfe, 0xba, 0xd9, 0x76, 0xd9, 0x56, 0xe3, 0x3e, 0xc0, 0x56, 0xb2, 0xdc, 0xfa, 0x76, 0x1d, 0xb5, 0xd9, 0x79, 0x07, 0xdd, 0x50, 0x8c, 0xfa, 0xed, 0xf4, 0xc8, 0xe3, 0x7e, 0xd0, 0x5b, 0xb6, 0x53, 0x77, 0xeb, 0x4f, 0xa2, 0x4a, 0xdd, 0xe2, 0x87, 0x23, 0x78, 0x83, 0x91, 0x34, 0x34, 0x4e, 0x59, 0xb6, 0x5c, 0x8f, 0xdb, 0x42, 0x3b, 0xa6, 0xc4, 0x8d, 0x27, 0x70, 0xd5, 0xd0, 0x38, 0xc5, 0xe3, 0x3e, 0x01, 0x43, 0x35, 0xbb, 0x83, 0xab, 0x2e, 0xca, 0x87, 0xd7, 0x0b, 0xc5, 0x18, 0xa4, 0x6d, 0x1e, 0x0b, 0xab, 0xa7, 0xfd, 0x53, 0x99, 0x21, 0x63, 0x90, 0xb6, 0x51, 0x96, 0x7b, 0x61, 0xd4, 0xdc, 0xd9, 0x69, 0x63, 0xe1, 0x5c, 0x10, 0xdd, 0x21, 0x8c, 0x78, 0xcd, 0x84, 0x71, 0xf2, 0x1a, 0xa4, 0xb8, 0x1d, 0xf0, 0x92, 0x8c, 0x2d, 0x51, 0x69, 0xd1, 0x93, 0xb9, 0xc4, 0xec, 0x80, 0x91, 0xb2, 0x38, 0xf1, 0x04, 0x0c, 0xd5, 0x9d, 0x8a, 0x7f, 0xc8, 0x9c, 0x98, 0x49, 0xcc, 0xa6, 0x8c, 0xc1, 0xba, 0xe3, 0x1d, 0xd0, 0x65, 0x3e, 0x97, 0x80, 0x11, 0xf1, 0x90, 0x5c, 0x2f, 0x42, 0xaa, 0x61, 0x57, 0x4d, 0x12, 0x5a, 0xf4, 0x86, 0x66, 0x36, 0xe2, 0x5c, 0x7d, 0x7e, 0x85, 0xf1, 0x1b, 0x1e, 0x72, 0xf2, 0xef, 0x15, 0x48, 0xf1, 0x66, 0x7d, 0x02, 0x92, 0x2d, 0xd3, 0xdd, 0x25, 0xe2, 0xfa, 0xf2, 0x09, 0x4d, 0x31, 0xc8, 0x77, 0xdc, 0xee, 0xb4, 0x4c, 0x8b, 0x84, 0x00, 0x6b, 0xc7, 0xdf, 0xb1, 0x5f, 0x1b, 0xc8, 0xac, 0x91, 0xed, 0x87, 0xdd, 0x6c, 0x22, 0xcb, 0x75, 0xb8, 0x5f, 0x59, 0x7b, 0x81, 0x35, 0xeb, 0xef, 0x80, 0x31, 0xb7, 0x6d, 0xd6, 0x1b, 0x02, 0x6f, 0x92, 0xf0, 0x6a, 0x9c, 0xe0, 0x31, 0x67, 0xe1, 0x0e, 0x2e, 0xb7, 0x86, 0x5c, 0xb3, 0xba, 0x8b, 0x6a, 0x3e, 0xa8, 0x9f, 0x9c, 0xc0, 0x1e, 0x63, 0x0c, 0x45, 0x46, 0xe7, 0xd8, 0xcc, 0x77, 0x14, 0x18, 0xe3, 0x1b, 0xa6, 0x9a, 0x67, 0xac, 0x55, 0x00, 0xd3, 0xb2, 0x6c, 0x37, 0x68, 0xae, 0xee, 0x50, 0xee, 0xc2, 0xcd, 0xe7, 0x3c, 0x90, 0x11, 0x10, 0x30, 0xd9, 0x04, 0xf0, 0x29, 0x3d, 0xcd, 0x36, 0x0d, 0x83, 0xec, 0x06, 0x84, 0x5c, 0xa3, 0xd1, 0x2d, 0x36, 0xd0, 0x26, 0xbc, 0xb3, 0xd2, 0x8f, 0x40, 0xdf, 0x0d, 0xb4, 0x53, 0xb7, 0xd8, 0xb9, 0x26, 0xfd, 0xc2, 0xcf, 0x6a, 0x93, 0xde, 0x59, 0x6d, 0xfe, 0x31, 0x18, 0xaf, 0xda, 0x4d, 0x59, 0xdd, 0xbc, 0x26, 0x6d, 0xf3, 0x9d, 0x47, 0x94, 0xf7, 0x82, 0x5f, 0x62, 0x7e, 0x26, 0xa1, 0x5e, 0x5d, 0xcf, 0x7f, 0x21, 0x31, 0x79, 0x95, 0xe2, 0xd6, 0xf9, 0x30, 0x0d, 0xb4, 0xdd, 0x40, 0x55, 0xac, 0x3a, 0xfc, 0xe4, 0x14, 0x3c, 0xb0, 0x53, 0x77, 0x77, 0x3b, 0x37, 0xe6, 0xab, 0x76, 0xf3, 0xf4, 0x8e, 0xbd, 0x63, 0xfb, 0xd7, 0x86, 0xf8, 0x1b, 0xf9, 0x42, 0x3e, 0xb1, 0xab, 0xc3, 0x01, 0xaf, 0x75, 0x32, 0xf2, 0x9e, 0x31, 0x5b, 0x86, 0x71, 0xc6, 0x5c, 0x21, 0x77, 0x17, 0x74, 0x0b, 0xa1, 0xef, 0x7b, 0xfe, 0x93, 0xfe, 0xf2, 0x0f, 0xc8, 0x5a, 0x6d, 0x8c, 0x31, 0x28, 0xa6, 0xd1, 0x5d, 0x46, 0xd6, 0x80, 0xa3, 0x82, 0x3c, 0x9a, 0x97, 0xa8, 0x1d, 0x21, 0xf1, 0x5b, 0x4c, 0xe2, 0x78, 0x40, 0xe2, 0x06, 0x83, 0x66, 0x0b, 0x30, 0x7c, 0x10, 0x59, 0x7f, 0xcb, 0x64, 0x0d, 0xa1, 0xa0, 0x90, 0xab, 0x30, 0x4a, 0x84, 0x54, 0x3b, 0x8e, 0x6b, 0x37, 0xc9, 0xa4, 0xb7, 0xbf, 0x98, 0x6f, 0xff, 0x80, 0x26, 0xca, 0x08, 0x86, 0x15, 0x3c, 0x54, 0x36, 0x0b, 0xe4, 0xba, 0xa6, 0x86, 0xaa, 0x8d, 0x08, 0x09, 0x37, 0x99, 0x22, 0x1e, 0x7f, 0xf6, 0x3d, 0x70, 0x04, 0x7f, 0x26, 0x73, 0x52, 0x50, 0x93, 0xe8, 0xd3, 0xae, 0xf4, 0x77, 0x3e, 0x40, 0x73, 0x71, 0xdc, 0x13, 0x10, 0xd0, 0x29, 0xe0, 0xc5, 0x1d, 0xe4, 0xba, 0xa8, 0xed, 0x54, 0xcc, 0x46, 0x98, 0x7a, 0x81, 0xe3, 0x82, 0xf4, 0xc7, 0x5e, 0x15, 0xbd, 0x78, 0x95, 0x22, 0x73, 0x8d, 0x46, 0x76, 0x0b, 0x8e, 0x85, 0x44, 0x45, 0x0c, 0x99, 0x1f, 0x67, 0x32, 0x8f, 0x74, 0x45, 0x06, 0x16, 0xbb, 0x0e, 0xbc, 0xdd, 0xf3, 0x65, 0x0c, 0x99, 0x7f, 0xc0, 0x64, 0xea, 0x0c, 0xcb, 0x5d, 0x8a, 0x25, 0x5e, 0x83, 0xb1, 0x27, 0x51, 0xfb, 0x86, 0xed, 0xb0, 0x23, 0x9a, 0x18, 0xe2, 0x3e, 0xc1, 0xc4, 0x8d, 0x32, 0x20, 0x39, 0xb3, 0xc1, 0xb2, 0x2e, 0x41, 0x6a, 0xdb, 0xac, 0xa2, 0x18, 0x22, 0x3e, 0xc9, 0x44, 0x1c, 0xc6, 0xfc, 0x18, 0x9a, 0x83, 0xa1, 0x1d, 0x9b, 0x2d, 0x4b, 0xd1, 0xf0, 0xe7, 0x18, 0x7c, 0x90, 0x63, 0x98, 0x88, 0x96, 0xdd, 0xea, 0x34, 0xf0, 0x9a, 0x15, 0x2d, 0xe2, 0x53, 0x5c, 0x04, 0xc7, 0x30, 0x11, 0x07, 0x30, 0xeb, 0xf3, 0x5c, 0x84, 0x13, 0xb0, 0xe7, 0xc3, 0x30, 0x68, 0x5b, 0x8d, 0x3d, 0xdb, 0x8a, 0xa3, 0xc4, 0xa7, 0x99, 0x04, 0x60, 0x10, 0x2c, 0xe0, 0x32, 0x0c, 0xc4, 0x75, 0xc4, 0x67, 0x5f, 0xe5, 0xe9, 0xc1, 0x3d, 0x70, 0x15, 0x46, 0xf9, 0x04, 0x55, 0xb7, 0xad, 0x18, 0x22, 0xfe, 0x88, 0x89, 0x18, 0x09, 0xc0, 0xd8, 0x30, 0x5c, 0xe4, 0xb8, 0x3b, 0x28, 0x8e, 0x90, 0xcf, 0xf1, 0x61, 0x30, 0x08, 0x33, 0xe5, 0x0d, 0x64, 0x55, 0x77, 0xe3, 0x49, 0x78, 0x81, 0x9b, 0x92, 0x63, 0xb0, 0x88, 0x02, 0x0c, 0x37, 0xcd, 0xb6, 0xb3, 0x6b, 0x36, 0x62, 0xb9, 0xe3, 0xf3, 0x4c, 0xc6, 0x90, 0x07, 0x62, 0x16, 0xe9, 0x58, 0x07, 0x11, 0xf3, 0x05, 0x6e, 0x91, 0x00, 0x8c, 0xa5, 0x9e, 0xe3, 0x92, 0xf3, 0xac, 0x83, 0x48, 0xfb, 0x22, 0x4f, 0x3d, 0x8a, 0x5d, 0x0d, 0x4a, 0xbc, 0x0c, 0x03, 0x4e, 0xfd, 0x99, 0x58, 0x62, 0xfe, 0x98, 0x7b, 0x9a, 0x00, 0x30, 0xf8, 0x3a, 0xdc, 0x11, 0xba, 0x4c, 0xc4, 0x10, 0xf6, 0x27, 0x4c, 0xd8, 0x44, 0xc8, 0x52, 0xc1, 0xa6, 0x84, 0x83, 0x8a, 0xfc, 0x53, 0x3e, 0x25, 0x20, 0x49, 0xd6, 0x3a, 0xde, 0x28, 0x38, 0xe6, 0xf6, 0xc1, 0xac, 0xf6, 0x67, 0xdc, 0x6a, 0x14, 0x2b, 0x58, 0x6d, 0x13, 0x26, 0x98, 0xc4, 0x83, 0xf9, 0xf5, 0x4b, 0x7c, 0x62, 0xa5, 0xe8, 0x2d, 0xd1, 0xbb, 0xff, 0x1b, 0x26, 0x3d, 0x73, 0xf2, 0x8a, 0xd4, 0xa9, 0x34, 0xcd, 0x56, 0x0c, 0xc9, 0x5f, 0x66, 0x92, 0xf9, 0x8c, 0xef, 0x95, 0xb4, 0xce, 0xaa, 0xd9, 0xc2, 0xc2, 0x1f, 0x83, 0x34, 0x17, 0xde, 0xb1, 0xda, 0xa8, 0x6a, 0xef, 0x58, 0xf5, 0x67, 0x50, 0x2d, 0x86, 0xe8, 0x3f, 0x97, 0x5c, 0xb5, 0x15, 0x80, 0x63, 0xc9, 0xcb, 0xa0, 0x79, 0xb5, 0x4a, 0xa5, 0xde, 0x6c, 0xd9, 0x6d, 0x37, 0x42, 0xe2, 0x57, 0xb8, 0xa7, 0x3c, 0xdc, 0x32, 0x81, 0x65, 0x4b, 0x30, 0x42, 0xbe, 0xc6, 0x0d, 0xc9, 0xaf, 0x32, 0x41, 0xc3, 0x3e, 0x8a, 0x4d, 0x1c, 0x55, 0xbb, 0xd9, 0x32, 0xdb, 0x71, 0xe6, 0xbf, 0xbf, 0xe0, 0x13, 0x07, 0x83, 0xb0, 0x89, 0xc3, 0xdd, 0x6b, 0x21, 0xbc, 0xda, 0xc7, 0x90, 0xf0, 0x35, 0x3e, 0x71, 0x70, 0x0c, 0x13, 0xc1, 0x0b, 0x86, 0x18, 0x22, 0xfe, 0x92, 0x8b, 0xe0, 0x18, 0x2c, 0xe2, 0xdd, 0xfe, 0x42, 0xdb, 0x46, 0x3b, 0x75, 0xc7, 0x6d, 0xd3, 0x3a, 0x78, 0x7f, 0x51, 0x5f, 0x7f, 0x55, 0x2c, 0xc2, 0x8c, 0x00, 0x34, 0x7b, 0x0d, 0x46, 0xa5, 0x12, 0x43, 0x8f, 0x7a, 0xfb, 0x91, 0xfe, 0xff, 0xaf, 0xb1, 0xc9, 0x48, 0xac, 0x30, 0xb2, 0x2b, 0xd8, 0xef, 0x62, 0x1d, 0x10, 0x2d, 0xec, 0x03, 0xaf, 0x79, 0xae, 0x17, 0xca, 0x80, 0xec, 0x15, 0x18, 0x16, 0x6a, 0x80, 0x68, 0x51, 0xbf, 0xc4, 0x44, 0x0d, 0x05, 0x4b, 0x80, 0xec, 0x39, 0x48, 0xe2, 0xf5, 0x3c, 0x1a, 0xfe, 0xcb, 0x0c, 0x4e, 0xd8, 0xb3, 0x0f, 0x42, 0x8a, 0xaf, 0xe3, 0xd1, 0xd0, 0x0f, 0x32, 0xa8, 0x07, 0xc1, 0x70, 0xbe, 0x86, 0x47, 0xc3, 0x7f, 0x85, 0xc3, 0x39, 0x04, 0xc3, 0xe3, 0x9b, 0xf0, 0xc5, 0x5f, 0x4b, 0xb2, 0x79, 0x98, 0xdb, 0xee, 0x32, 0x1c, 0x66, 0x8b, 0x77, 0x34, 0xfa, 0xc3, 0xac, 0x73, 0x8e, 0xc8, 0x5e, 0x80, 0xbe, 0x98, 0x06, 0xff, 0x75, 0x06, 0xa5, 0xfc, 0xd9, 0x02, 0x0c, 0x06, 0x16, 0xec, 0x68, 0xf8, 0x6f, 0x30, 0x78, 0x10, 0x85, 0x55, 0x67, 0x0b, 0x76, 0xb4, 0x80, 0xdf, 0xe4, 0xaa, 0x33, 0x04, 0x36, 0x1b, 0x5f, 0xab, 0xa3, 0xd1, 0xbf, 0xc5, 0xad, 0xce, 0x21, 0xd9, 0x87, 0x61, 0xc0, 0x9b, 0x7f, 0xa3, 0xf1, 0xbf, 0xcd, 0xf0, 0x3e, 0x06, 0x5b, 0x20, 0x30, 0xff, 0x47, 0x8b, 0xf8, 0x1d, 0x6e, 0x81, 0x00, 0x0a, 0xa7, 0x91, 0xbc, 0xa6, 0x47, 0x4b, 0xfa, 0x08, 0x4f, 0x23, 0x69, 0x49, 0xc7, 0xde, 0x24, 0xd3, 0x60, 0xb4, 0x88, 0xdf, 0xe5, 0xde, 0x24, 0xfc, 0x58, 0x0d, 0x79, 0x91, 0x8c, 0x96, 0xf1, 0xfb, 0x5c, 0x0d, 0x69, 0x8d, 0xcc, 0xae, 0x83, 0xde, 0xbd, 0x40, 0x46, 0xcb, 0xfb, 0x28, 0x93, 0x37, 0xd6, 0xb5, 0x3e, 0x66, 0x1f, 0x85, 0x89, 0xf0, 0xc5, 0x31, 0x5a, 0xea, 0xc7, 0x5e, 0x93, 0xb6, 0x33, 0xc1, 0xb5, 0x31, 0xbb, 0xe9, 0xcf, 0xb2, 0xc1, 0x85, 0x31, 0x5a, 0xec, 0xc7, 0x5f, 0x13, 0x27, 0xda, 0xe0, 0xba, 0x98, 0xcd, 0x01, 0xf8, 0x6b, 0x52, 0xb4, 0xac, 0x4f, 0x30, 0x59, 0x01, 0x10, 0x4e, 0x0d, 0xb6, 0x24, 0x45, 0xe3, 0x3f, 0xc9, 0x53, 0x83, 0x21, 0x70, 0x6a, 0xf0, 0xd5, 0x28, 0x1a, 0xfd, 0x1c, 0x4f, 0x0d, 0x0e, 0xc9, 0x5e, 0x86, 0x94, 0xd5, 0x69, 0x34, 0x70, 0x6c, 0xe9, 0xfb, 0x3f, 0x67, 0x4a, 0xff, 0xcb, 0xeb, 0x0c, 0xcc, 0x01, 0xd9, 0x73, 0xd0, 0x87, 0x9a, 0x37, 0x50, 0x2d, 0x0a, 0xf9, 0xaf, 0xaf, 0xf3, 0xf9, 0x04, 0x73, 0x67, 0x1f, 0x06, 0xa0, 0x9b, 0x69, 0x72, 0x4b, 0x14, 0x81, 0xfd, 0xb7, 0xd7, 0xd9, 0x4b, 0x09, 0x1f, 0xe2, 0x0b, 0xa0, 0xef, 0x2e, 0xf6, 0x17, 0xf0, 0xaa, 0x28, 0x80, 0x6c, 0xc0, 0x2f, 0xc1, 0xe1, 0xc7, 0x1d, 0xdb, 0x72, 0xcd, 0x9d, 0x28, 0xf4, 0xbf, 0x33, 0x34, 0xe7, 0xc7, 0x06, 0x6b, 0xda, 0x6d, 0xe4, 0x9a, 0x3b, 0x4e, 0x14, 0xf6, 0x3f, 0x18, 0xd6, 0x03, 0x60, 0x70, 0xd5, 0x74, 0xdc, 0x38, 0xe3, 0xfe, 0x4f, 0x0e, 0xe6, 0x00, 0xac, 0x34, 0xfe, 0xfc, 0x04, 0xda, 0x8b, 0xc2, 0xfe, 0x88, 0x2b, 0xcd, 0xf8, 0xb3, 0x0f, 0xc2, 0x00, 0xfe, 0x48, 0x5f, 0x0f, 0x45, 0x80, 0xff, 0x8b, 0x81, 0x7d, 0x04, 0xee, 0xd9, 0x71, 0x6b, 0x6e, 0x3d, 0xda, 0xd8, 0x3f, 0x66, 0x9e, 0xe6, 0xfc, 0xd9, 0x1c, 0x0c, 0x3a, 0x6e, 0xad, 0xd6, 0x61, 0x15, 0x4d, 0x04, 0xfc, 0x27, 0xaf, 0x7b, 0x9b, 0x5c, 0x0f, 0x93, 0x3f, 0x11, 0x7e, 0x58, 0x07, 0x57, 0xed, 0xab, 0x36, 0x3d, 0xa6, 0x83, 0x6f, 0x37, 0xe0, 0x8e, 0xaa, 0xdd, 0xbc, 0x61, 0x3b, 0xa7, 0x6f, 0xd8, 0xee, 0xee, 0x69, 0x77, 0x17, 0xe1, 0xa5, 0x83, 0x9d, 0xb0, 0x25, 0xf1, 0xe7, 0xc9, 0x83, 0x1d, 0xcb, 0x91, 0x1b, 0xd7, 0x72, 0x1d, 0x6b, 0x56, 0x26, 0x87, 0xde, 0xfa, 0x71, 0xe8, 0x27, 0xba, 0x9e, 0x21, 0x17, 0x4b, 0x4a, 0x3e, 0x79, 0xf3, 0xe5, 0xe9, 0x43, 0x06, 0x6b, 0xf3, 0xa8, 0x8b, 0xe4, 0x54, 0x32, 0x21, 0x50, 0x17, 0x3d, 0xea, 0x59, 0x7a, 0x30, 0x29, 0x50, 0xcf, 0x7a, 0xd4, 0x25, 0x72, 0x44, 0xa9, 0x0a, 0xd4, 0x25, 0x8f, 0x7a, 0x8e, 0x1c, 0xc3, 0x0f, 0x0b, 0xd4, 0x73, 0x1e, 0xf5, 0x3c, 0x39, 0x7c, 0x4f, 0x0a, 0xd4, 0xf3, 0x1e, 0xf5, 0x02, 0x39, 0x77, 0x1f, 0x13, 0xa8, 0x17, 0x3c, 0xea, 0x45, 0x72, 0xde, 0xae, 0x0b, 0xd4, 0x8b, 0x1e, 0xf5, 0x12, 0x79, 0xcc, 0x72, 0x58, 0xa0, 0x5e, 0xd2, 0xa7, 0xe0, 0x30, 0x1d, 0xf9, 0x02, 0xb9, 0x9c, 0x1d, 0x65, 0x64, 0xde, 0xe8, 0xd3, 0xcf, 0x90, 0x87, 0x2b, 0xfd, 0x22, 0xfd, 0x8c, 0x4f, 0x5f, 0x24, 0x4f, 0xd0, 0x35, 0x91, 0xbe, 0xe8, 0xd3, 0xcf, 0xa6, 0x87, 0xc9, 0xe3, 0x1d, 0x81, 0x7e, 0xd6, 0xa7, 0x2f, 0xa5, 0x47, 0x70, 0xb8, 0x8a, 0xf4, 0x25, 0x9f, 0x7e, 0x2e, 0x3d, 0x3a, 0xa3, 0xcc, 0x0e, 0x89, 0xf4, 0x73, 0x99, 0xf7, 0x13, 0xf7, 0x5a, 0xbe, 0x7b, 0x27, 0x44, 0xf7, 0x7a, 0x8e, 0x9d, 0x10, 0x1d, 0xeb, 0xb9, 0x74, 0x42, 0x74, 0xa9, 0xe7, 0xcc, 0x09, 0xd1, 0x99, 0x9e, 0x1b, 0x27, 0x44, 0x37, 0x7a, 0x0e, 0x9c, 0x10, 0x1d, 0xe8, 0xb9, 0x6e, 0x42, 0x74, 0x9d, 0xe7, 0xb4, 0x09, 0xd1, 0x69, 0x9e, 0xbb, 0x26, 0x44, 0x77, 0x79, 0x8e, 0x4a, 0x4b, 0x8e, 0xf2, 0x5d, 0x94, 0x96, 0x5c, 0xe4, 0x3b, 0x27, 0x2d, 0x39, 0xc7, 0x77, 0x4b, 0x5a, 0x72, 0x8b, 0xef, 0x90, 0xb4, 0xe4, 0x10, 0xdf, 0x15, 0x69, 0xc9, 0x15, 0xbe, 0x13, 0x58, 0x8e, 0x19, 0xa8, 0x15, 0x92, 0x63, 0xea, 0xbe, 0x39, 0xa6, 0xee, 0x9b, 0x63, 0xea, 0xbe, 0x39, 0xa6, 0xee, 0x9b, 0x63, 0xea, 0xbe, 0x39, 0xa6, 0xee, 0x9b, 0x63, 0xea, 0xbe, 0x39, 0xa6, 0xee, 0x9b, 0x63, 0xea, 0xfe, 0x39, 0xa6, 0x46, 0xe4, 0x98, 0x1a, 0x91, 0x63, 0x6a, 0x44, 0x8e, 0xa9, 0x11, 0x39, 0xa6, 0x46, 0xe4, 0x98, 0xda, 0x33, 0xc7, 0x7c, 0xf7, 0x4e, 0x88, 0xee, 0x0d, 0xcd, 0x31, 0xb5, 0x47, 0x8e, 0xa9, 0x3d, 0x72, 0x4c, 0xed, 0x91, 0x63, 0x6a, 0x8f, 0x1c, 0x53, 0x7b, 0xe4, 0x98, 0xda, 0x23, 0xc7, 0xd4, 0x1e, 0x39, 0xa6, 0xf6, 0xca, 0x31, 0xb5, 0x67, 0x8e, 0xa9, 0x3d, 0x73, 0x4c, 0xed, 0x99, 0x63, 0x6a, 0xcf, 0x1c, 0x53, 0x7b, 0xe6, 0x98, 0x1a, 0xcc, 0xb1, 0xbf, 0x56, 0x41, 0xa7, 0x39, 0xb6, 0x4e, 0x9e, 0xf7, 0x30, 0x57, 0x4c, 0x49, 0x99, 0xd6, 0x8f, 0x5d, 0xa7, 0xf9, 0x2e, 0x99, 0x92, 0x72, 0x4d, 0xa4, 0x2f, 0x7a, 0x74, 0x9e, 0x6d, 0x22, 0xfd, 0xac, 0x47, 0xe7, 0xf9, 0x26, 0xd2, 0x97, 0x3c, 0x3a, 0xcf, 0x38, 0x91, 0x7e, 0xce, 0xa3, 0xf3, 0x9c, 0x13, 0xe9, 0xe7, 0x3d, 0x3a, 0xcf, 0x3a, 0x91, 0x7e, 0xc1, 0xa3, 0xf3, 0xbc, 0x13, 0xe9, 0x17, 0x3d, 0x3a, 0xcf, 0x3c, 0x91, 0x7e, 0x49, 0x9f, 0x91, 0x73, 0x8f, 0x33, 0x78, 0xae, 0x9d, 0x91, 0xb3, 0x4f, 0xe2, 0x38, 0xe3, 0x73, 0xf0, 0xfc, 0x93, 0x38, 0x16, 0x7d, 0x0e, 0x9e, 0x81, 0x12, 0xc7, 0xd9, 0xcc, 0x87, 0x88, 0xfb, 0x2c, 0xd9, 0x7d, 0x93, 0x92, 0xfb, 0x12, 0x01, 0xd7, 0x4d, 0x4a, 0xae, 0x4b, 0x04, 0xdc, 0x36, 0x29, 0xb9, 0x2d, 0x11, 0x70, 0xd9, 0xa4, 0xe4, 0xb2, 0x44, 0xc0, 0x5d, 0x93, 0x92, 0xbb, 0x12, 0x01, 0x57, 0x4d, 0x4a, 0xae, 0x4a, 0x04, 0xdc, 0x34, 0x29, 0xb9, 0x29, 0x11, 0x70, 0xd1, 0xa4, 0xe4, 0xa2, 0x44, 0xc0, 0x3d, 0x93, 0x92, 0x7b, 0x12, 0x01, 0xd7, 0x1c, 0x97, 0x5d, 0x93, 0x08, 0xba, 0xe5, 0xb8, 0xec, 0x96, 0x44, 0xd0, 0x25, 0xc7, 0x65, 0x97, 0x24, 0x82, 0xee, 0x38, 0x2e, 0xbb, 0x23, 0x11, 0x74, 0xc5, 0xcf, 0x12, 0xbc, 0x22, 0xdc, 0x70, 0xdb, 0x9d, 0xaa, 0x7b, 0x5b, 0x15, 0xe1, 0x82, 0x50, 0x3e, 0x0c, 0x2e, 0xea, 0xf3, 0xa4, 0x60, 0x0d, 0x56, 0x9c, 0xd2, 0x0a, 0xb6, 0x20, 0x14, 0x16, 0x01, 0x84, 0x15, 0x8e, 0x58, 0xba, 0xad, 0xda, 0x70, 0x41, 0x28, 0x33, 0xa2, 0xf5, 0xbb, 0xf8, 0x96, 0x57, 0x6c, 0x2f, 0x26, 0x78, 0xc5, 0xc6, 0xcc, 0x7f, 0xd0, 0x8a, 0x6d, 0x2e, 0xda, 0xe4, 0x9e, 0xb1, 0xe7, 0xa2, 0x8d, 0xdd, 0xb5, 0xea, 0xc4, 0xad, 0xe0, 0xe6, 0xa2, 0x4d, 0xeb, 0x19, 0xf5, 0xcd, 0xad, 0xb7, 0x58, 0x04, 0x1b, 0xa8, 0x15, 0x12, 0xc1, 0x07, 0xad, 0xb7, 0x16, 0x84, 0xa9, 0xe4, 0xa0, 0x11, 0xac, 0x1e, 0x38, 0x82, 0x0f, 0x5a, 0x79, 0x2d, 0x08, 0xd3, 0xcb, 0x81, 0x23, 0xf8, 0x2d, 0xa8, 0x87, 0x58, 0x04, 0xfb, 0xe6, 0x3f, 0x68, 0x3d, 0x34, 0x17, 0x6d, 0xf2, 0xd0, 0x08, 0x56, 0x0f, 0x10, 0xc1, 0x71, 0xea, 0xa3, 0xb9, 0x68, 0xd3, 0x86, 0x47, 0xf0, 0x6d, 0x57, 0x33, 0x9f, 0x52, 0x60, 0xac, 0x5c, 0xaf, 0x95, 0x9a, 0x37, 0x50, 0xad, 0x86, 0x6a, 0xcc, 0x8e, 0x0b, 0xc2, 0x4c, 0xd0, 0xc3, 0xd5, 0x2f, 0xbd, 0x3c, 0xed, 0x5b, 0xf8, 0x1c, 0xa4, 0xa8, 0x4d, 0x17, 0x16, 0xd2, 0x37, 0x95, 0x88, 0x19, 0xce, 0x63, 0xd5, 0x4f, 0x70, 0xd8, 0x99, 0x85, 0xf4, 0x3f, 0x28, 0x81, 0x59, 0xce, 0x6b, 0xce, 0x7c, 0x84, 0x68, 0x68, 0xdd, 0xb6, 0x86, 0xa7, 0x63, 0x69, 0x18, 0xd0, 0xed, 0xce, 0x2e, 0xdd, 0x02, 0x5a, 0x75, 0x60, 0xb4, 0x5c, 0xaf, 0x95, 0xc9, 0x1f, 0x3f, 0xc7, 0x51, 0x89, 0xf2, 0x48, 0xf3, 0xc1, 0x82, 0x10, 0x96, 0x41, 0x84, 0x17, 0xd2, 0xe2, 0x1c, 0x91, 0xa9, 0xe3, 0x6e, 0x2d, 0xa1, 0xdb, 0xb9, 0x5e, 0xdd, 0xfa, 0x33, 0xbb, 0xd7, 0xe1, 0x5c, 0xaf, 0x0e, 0xfd, 0x1c, 0xf2, 0xba, 0x7a, 0x9a, 0x2f, 0xce, 0xf4, 0x9d, 0x8d, 0x7e, 0x1c, 0x12, 0xcb, 0xf4, 0x0d, 0xf0, 0x50, 0x7e, 0x08, 0x2b, 0xf5, 0xdd, 0x97, 0xa7, 0x93, 0x5b, 0x9d, 0x7a, 0xcd, 0x48, 0x2c, 0xd7, 0xf4, 0x6b, 0xd0, 0xf7, 0x1e, 0xf6, 0x27, 0x78, 0x98, 0x61, 0x89, 0x31, 0xdc, 0xdf, 0xf3, 0x8c, 0x08, 0x77, 0x7c, 0x9a, 0x9e, 0x20, 0xce, 0x6f, 0xd5, 0x2d, 0xf7, 0xcc, 0xe2, 0x45, 0x83, 0x8a, 0xc8, 0xfc, 0x1f, 0x00, 0xda, 0x67, 0xd1, 0x74, 0x76, 0xf5, 0x32, 0x97, 0x4c, 0xbb, 0xbe, 0xf8, 0xdd, 0x97, 0xa7, 0x97, 0xe2, 0x48, 0x7d, 0xa0, 0x66, 0x3a, 0xbb, 0x0f, 0xb8, 0x7b, 0x2d, 0x34, 0x9f, 0xdf, 0x73, 0x91, 0xc3, 0xa5, 0xb7, 0xf8, 0xaa, 0xc7, 0xc6, 0x95, 0x0e, 0x8c, 0x2b, 0x25, 0x8c, 0xe9, 0x8a, 0x38, 0xa6, 0x85, 0x37, 0x3a, 0x9e, 0xa7, 0xf9, 0x22, 0x21, 0x59, 0x52, 0x8d, 0xb2, 0xa4, 0x7a, 0xbb, 0x96, 0x6c, 0xf1, 0xf9, 0x51, 0x1a, 0xab, 0xba, 0xdf, 0x58, 0xd5, 0xdb, 0x19, 0xeb, 0x7f, 0xd3, 0x6c, 0xf5, 0xf2, 0x69, 0xcb, 0xa2, 0xef, 0x0f, 0x7f, 0xb1, 0xce, 0x82, 0xde, 0xd4, 0x2a, 0x20, 0x9b, 0xbc, 0xf9, 0xfc, 0xb4, 0x92, 0xf9, 0x54, 0x82, 0x8f, 0x9c, 0x26, 0xd2, 0x1b, 0x1b, 0xf9, 0x2f, 0x4a, 0x4d, 0xf5, 0x56, 0x58, 0xe8, 0x39, 0x05, 0x26, 0xba, 0x66, 0x72, 0x6a, 0xa6, 0x37, 0x77, 0x3a, 0xb7, 0x0e, 0x3a, 0x9d, 0x33, 0x05, 0xbf, 0xaa, 0xc0, 0x11, 0x69, 0x7a, 0xa5, 0xea, 0x9d, 0x96, 0xd4, 0x3b, 0xd6, 0xdd, 0x13, 0x61, 0x0c, 0x68, 0x17, 0x74, 0xaf, 0x04, 0x08, 0x48, 0xf6, 0xfc, 0xbe, 0x24, 0xf9, 0xfd, 0xb8, 0x07, 0x08, 0x31, 0x17, 0x8f, 0x00, 0xa6, 0xb6, 0x0d, 0xc9, 0xcd, 0x36, 0x42, 0xfa, 0x14, 0x24, 0xd6, 0xda, 0x4c, 0xc3, 0x11, 0x8a, 0x5f, 0x6b, 0xe7, 0xdb, 0xa6, 0x55, 0xdd, 0x35, 0x12, 0x6b, 0x6d, 0xfd, 0x04, 0xa8, 0x39, 0xf6, 0x13, 0x0b, 0x83, 0x8b, 0xa3, 0x94, 0x21, 0x67, 0xd5, 0x18, 0x07, 0xa6, 0xe9, 0x53, 0x90, 0x5c, 0x41, 0xe6, 0x36, 0x53, 0x02, 0x28, 0x0f, 0x6e, 0x31, 0x48, 0x3b, 0xeb, 0xf0, 0x31, 0x48, 0x71, 0xc1, 0xfa, 0x49, 0x8c, 0xd8, 0x76, 0x59, 0xb7, 0x0c, 0x81, 0xd5, 0x61, 0x2b, 0x17, 0xa1, 0xea, 0xa7, 0xa0, 0xcf, 0xa8, 0xef, 0xec, 0xba, 0xac, 0xf3, 0x6e, 0x36, 0x4a, 0xce, 0x5c, 0x87, 0x01, 0x4f, 0xa3, 0x37, 0x59, 0x74, 0x91, 0x0e, 0x4d, 0x9f, 0x0c, 0xae, 0x27, 0xfc, 0xdc, 0x92, 0x36, 0xe9, 0x33, 0x90, 0xda, 0x70, 0xdb, 0xfe, 0xa4, 0xcf, 0x2b, 0x52, 0xaf, 0x35, 0xf3, 0x7e, 0x05, 0x52, 0x45, 0x84, 0x5a, 0xc4, 0xe0, 0xf7, 0x40, 0xb2, 0x68, 0x3f, 0x65, 0x31, 0x05, 0xc7, 0x98, 0x45, 0x31, 0x99, 0xd9, 0x94, 0x90, 0xf5, 0x7b, 0x82, 0x76, 0x1f, 0xf7, 0xec, 0x1e, 0xe0, 0x23, 0xb6, 0xcf, 0x08, 0xb6, 0x67, 0x0e, 0xc4, 0x4c, 0x5d, 0xf6, 0xbf, 0x00, 0x83, 0x81, 0x5e, 0xf4, 0x59, 0xa6, 0x46, 0x42, 0x06, 0x06, 0x6d, 0x85, 0x39, 0x32, 0x08, 0x86, 0x85, 0x8e, 0x31, 0x34, 0x60, 0xe2, 0x1e, 0x50, 0x62, 0xe6, 0x39, 0xd1, 0xcc, 0xe1, 0xac, 0xcc, 0xd4, 0x0b, 0xd4, 0x46, 0xc4, 0xdc, 0x27, 0x69, 0x70, 0xf6, 0x76, 0x22, 0xfe, 0x9c, 0xe9, 0x03, 0xb5, 0x5c, 0x6f, 0x64, 0x1e, 0x04, 0xa0, 0x29, 0x5f, 0xb2, 0x3a, 0x4d, 0x29, 0xeb, 0x46, 0xb8, 0x81, 0x37, 0x77, 0xd1, 0x26, 0x72, 0x08, 0x8b, 0x58, 0x4f, 0xe1, 0x09, 0x06, 0x68, 0x8a, 0x11, 0xfc, 0x7d, 0x91, 0xf8, 0xd0, 0x4a, 0x0c, 0xb3, 0xa6, 0x29, 0xeb, 0x75, 0xe4, 0xe6, 0x2c, 0xdb, 0xdd, 0x45, 0x6d, 0x09, 0xb1, 0xa8, 0x9f, 0x15, 0x12, 0x76, 0x64, 0xf1, 0x4e, 0x0f, 0xd1, 0x13, 0x74, 0x36, 0xf3, 0x25, 0xa2, 0x20, 0x2e, 0x05, 0xba, 0x06, 0xa8, 0xc6, 0x18, 0xa0, 0x7e, 0x5e, 0xa8, 0xdf, 0xf6, 0x51, 0x53, 0xda, 0x5a, 0x5e, 0x12, 0xf6, 0x39, 0xfb, 0x2b, 0x2b, 0xee, 0x31, 0xb9, 0x4d, 0xb9, 0xca, 0xf7, 0x45, 0xaa, 0xdc, 0xa3, 0xba, 0x3d, 0xa8, 0x4d, 0xd5, 0xb8, 0x36, 0xfd, 0x86, 0x57, 0x71, 0xd0, 0x9f, 0x8b, 0x20, 0xbf, 0x4e, 0xa2, 0xdf, 0x1f, 0xe9, 0xfb, 0xac, 0x52, 0xf0, 0x54, 0x5d, 0x8a, 0xeb, 0xfe, 0x6c, 0x22, 0x9f, 0xf7, 0xd4, 0xbd, 0x70, 0x80, 0x10, 0xc8, 0x26, 0x0a, 0x05, 0x6f, 0xda, 0x4e, 0x7d, 0xe8, 0xf9, 0x69, 0xe5, 0x85, 0xe7, 0xa7, 0x0f, 0x65, 0x3e, 0xaf, 0xc0, 0x18, 0xe3, 0x0c, 0x04, 0xee, 0x03, 0x92, 0xf2, 0x47, 0xf9, 0x9c, 0x11, 0x66, 0x81, 0xb7, 0x2d, 0x78, 0xbf, 0xa5, 0x40, 0xba, 0x4b, 0x57, 0x6e, 0xef, 0x85, 0x58, 0x2a, 0x67, 0x95, 0xd2, 0xcf, 0xdf, 0xe6, 0xd7, 0xa1, 0x6f, 0xb3, 0xde, 0x44, 0x6d, 0xbc, 0x12, 0xe0, 0x0f, 0x54, 0x65, 0x7e, 0x99, 0x43, 0x9b, 0x38, 0x8d, 0x2a, 0x27, 0xd0, 0x16, 0xf5, 0x34, 0x24, 0x8b, 0xa6, 0x6b, 0x12, 0x0d, 0x86, 0xbc, 0xf9, 0xd5, 0x74, 0xcd, 0xcc, 0x59, 0x18, 0x5a, 0xdd, 0x23, 0x8f, 0x64, 0x6a, 0xe4, 0x01, 0x88, 0x58, 0xfd, 0xf1, 0x7a, 0xf5, 0xcc, 0x5c, 0x5f, 0xaa, 0xa6, 0xdd, 0x54, 0xb2, 0x49, 0xa2, 0xcf, 0x93, 0x30, 0xb2, 0x86, 0xd5, 0x26, 0x38, 0x01, 0x46, 0x7b, 0x57, 0xbd, 0xc1, 0x4b, 0x45, 0x99, 0xea, 0x17, 0x65, 0x33, 0xa0, 0xac, 0x8a, 0xa5, 0x53, 0x50, 0x0f, 0x43, 0x59, 0x9d, 0x4b, 0xa6, 0x46, 0xb4, 0xb1, 0xb9, 0x64, 0x0a, 0xb4, 0x61, 0xd6, 0xef, 0xdf, 0xa9, 0xa0, 0xd1, 0x52, 0xa7, 0x88, 0xb6, 0xeb, 0x56, 0xdd, 0xed, 0xae, 0x57, 0x3d, 0x8d, 0xf5, 0x87, 0x61, 0x00, 0x9b, 0xf4, 0x0a, 0xfb, 0x91, 0x32, 0x6c, 0xfa, 0x13, 0xac, 0x44, 0x91, 0x44, 0xb0, 0x06, 0x12, 0x3a, 0x3e, 0x46, 0xbf, 0x02, 0x6a, 0xb9, 0xbc, 0xca, 0x16, 0xb7, 0xa5, 0x7d, 0xa1, 0xec, 0x8d, 0x0d, 0xfb, 0xc6, 0xda, 0x9c, 0x1d, 0x03, 0x0b, 0xd0, 0x97, 0x20, 0x51, 0x5e, 0x65, 0x05, 0xef, 0xc9, 0x38, 0x62, 0x8c, 0x44, 0x79, 0x75, 0xf2, 0x6f, 0x14, 0x18, 0x16, 0x5a, 0xf5, 0x0c, 0x0c, 0xd1, 0x86, 0xc0, 0x70, 0xfb, 0x0d, 0xa1, 0x8d, 0xeb, 0x9c, 0xb8, 0x4d, 0x9d, 0x27, 0x73, 0x30, 0x2a, 0xb5, 0xeb, 0xf3, 0xa0, 0x07, 0x9b, 0x98, 0x12, 0xf4, 0x07, 0x92, 0x42, 0x28, 0x99, 0xbb, 0x00, 0x7c, 0xbb, 0x7a, 0xbf, 0xeb, 0x53, 0x2e, 0x6d, 0x6c, 0x96, 0x8a, 0x9a, 0x92, 0xf9, 0x9a, 0x02, 0x83, 0xac, 0x6c, 0xad, 0xda, 0x2d, 0xa4, 0xe7, 0x41, 0xc9, 0xb1, 0x78, 0x78, 0x63, 0x7a, 0x2b, 0x39, 0xfd, 0x34, 0x28, 0xf9, 0xf8, 0xae, 0x56, 0xf2, 0xfa, 0x22, 0x28, 0x05, 0xe6, 0xe0, 0x78, 0x9e, 0x51, 0x0a, 0x99, 0x1f, 0xab, 0x30, 0x1e, 0x2c, 0xa3, 0xf9, 0x7c, 0x72, 0x42, 0xdc, 0x37, 0x65, 0x07, 0xce, 0x2c, 0x9e, 0x5d, 0x9a, 0xc7, 0xff, 0x78, 0x21, 0x99, 0x11, 0xb7, 0x50, 0x59, 0xf0, 0x58, 0xce, 0xf4, 0x7a, 0x27, 0x92, 0x4d, 0x06, 0x24, 0x74, 0xbd, 0x13, 0x11, 0xa8, 0x5d, 0xef, 0x44, 0x04, 0x6a, 0xd7, 0x3b, 0x11, 0x81, 0xda, 0x75, 0x17, 0x20, 0x50, 0xbb, 0xde, 0x89, 0x08, 0xd4, 0xae, 0x77, 0x22, 0x02, 0xb5, 0xfb, 0x9d, 0x08, 0x23, 0xf7, 0x7c, 0x27, 0x22, 0xd2, 0xbb, 0xdf, 0x89, 0x88, 0xf4, 0xee, 0x77, 0x22, 0xd9, 0xa4, 0xdb, 0xee, 0xa0, 0xde, 0xb7, 0x0e, 0x22, 0x7e, 0xbf, 0x4d, 0xa0, 0x3f, 0x03, 0xaf, 0xc1, 0x28, 0x3d, 0x90, 0x28, 0xd8, 0x96, 0x6b, 0xd6, 0x2d, 0xd4, 0xd6, 0xdf, 0x09, 0x43, 0xb4, 0x89, 0x6e, 0x73, 0xc2, 0xb6, 0x81, 0x94, 0xce, 0xe6, 0x5b, 0x81, 0x3b, 0xf3, 0xb3, 0x24, 0x4c, 0xd0, 0x86, 0xb2, 0xd9, 0x44, 0xc2, 0x2b, 0xa3, 0x53, 0xd2, 0x9d, 0xd2, 0x08, 0x86, 0xdf, 0x7a, 0x79, 0x9a, 0xb6, 0xe6, 0xbc, 0x68, 0x3a, 0x25, 0xdd, 0x2e, 0x89, 0x7c, 0xfe, 0x02, 0x74, 0x4a, 0x7a, 0x79, 0x24, 0xf2, 0x79, 0xeb, 0x8d, 0xc7, 0xc7, 0xdf, 0x20, 0x89, 0x7c, 0x45, 0x2f, 0xca, 0x4e, 0x49, 0xaf, 0x91, 0x44, 0xbe, 0x92, 0x17, 0x6f, 0xa7, 0xa4, 0xbb, 0x27, 0x91, 0xef, 0x8a, 0x17, 0x79, 0xa7, 0xa4, 0x5b, 0x28, 0x91, 0xef, 0xaa, 0x17, 0x83, 0xa7, 0xa4, 0xb7, 0x4a, 0x22, 0xdf, 0x23, 0x5e, 0x34, 0x9e, 0x92, 0x5e, 0x2d, 0x89, 0x7c, 0xcb, 0x5e, 0x5c, 0xce, 0xca, 0xef, 0x97, 0x44, 0xc6, 0x6b, 0x7e, 0x84, 0xce, 0xca, 0x2f, 0x99, 0x44, 0xce, 0x77, 0xf9, 0xb1, 0x3a, 0x2b, 0xbf, 0x69, 0x12, 0x39, 0x57, 0xfc, 0xa8, 0x9d, 0x95, 0xef, 0xca, 0x44, 0xce, 0x55, 0x3f, 0x7e, 0x67, 0xe5, 0x5b, 0x33, 0x91, 0xb3, 0xec, 0x47, 0xf2, 0xac, 0x7c, 0x7f, 0x26, 0x72, 0xae, 0xf9, 0x87, 0xe8, 0xdf, 0x94, 0xc2, 0x2f, 0xf0, 0x0a, 0x2a, 0x23, 0x85, 0x1f, 0x84, 0x84, 0x9e, 0x34, 0x91, 0x05, 0x78, 0xfc, 0xb0, 0xcb, 0x48, 0x61, 0x07, 0x21, 0x21, 0x97, 0x91, 0x42, 0x0e, 0x42, 0xc2, 0x2d, 0x23, 0x85, 0x1b, 0x84, 0x84, 0x5a, 0x46, 0x0a, 0x35, 0x08, 0x09, 0xb3, 0x8c, 0x14, 0x66, 0x10, 0x12, 0x62, 0x19, 0x29, 0xc4, 0x20, 0x24, 0xbc, 0x32, 0x52, 0x78, 0x41, 0x48, 0x68, 0x9d, 0x94, 0x43, 0x0b, 0xc2, 0xc2, 0xea, 0xa4, 0x1c, 0x56, 0x10, 0x16, 0x52, 0x77, 0xcb, 0x21, 0x35, 0x70, 0xeb, 0xe5, 0xe9, 0x3e, 0xdc, 0x14, 0x88, 0xa6, 0x93, 0x72, 0x34, 0x41, 0x58, 0x24, 0x9d, 0x94, 0x23, 0x09, 0xc2, 0xa2, 0xe8, 0xa4, 0x1c, 0x45, 0x10, 0x16, 0x41, 0x2f, 0xca, 0x11, 0xe4, 0xbf, 0xf1, 0xc9, 0x48, 0x57, 0x8a, 0x51, 0x11, 0xa4, 0xc6, 0x88, 0x20, 0x35, 0x46, 0x04, 0xa9, 0x31, 0x22, 0x48, 0x8d, 0x11, 0x41, 0x6a, 0x8c, 0x08, 0x52, 0x63, 0x44, 0x90, 0x1a, 0x23, 0x82, 0xd4, 0x38, 0x11, 0xa4, 0xc6, 0x8a, 0x20, 0xb5, 0x57, 0x04, 0x9d, 0x94, 0x5f, 0x3c, 0x40, 0xd8, 0x84, 0x74, 0x52, 0xbe, 0xfa, 0x8c, 0x0e, 0x21, 0x35, 0x56, 0x08, 0xa9, 0xbd, 0x42, 0xe8, 0x9b, 0x2a, 0x8c, 0x0b, 0x21, 0xc4, 0xee, 0x87, 0xde, 0xac, 0x19, 0xe8, 0x7c, 0x8c, 0x07, 0x16, 0x61, 0x31, 0x75, 0x3e, 0xc6, 0x25, 0xf5, 0x7e, 0x71, 0xd6, 0x3d, 0x0b, 0x95, 0x62, 0xcc, 0x42, 0x57, 0xbc, 0x18, 0x3a, 0x1f, 0xe3, 0xe1, 0x45, 0x77, 0xec, 0x5d, 0xdc, 0x6f, 0x12, 0x78, 0x24, 0xd6, 0x24, 0xb0, 0x1c, 0x6b, 0x12, 0xb8, 0xe6, 0x7b, 0xf0, 0x83, 0x09, 0x38, 0xe2, 0x7b, 0x90, 0x7e, 0x22, 0xbf, 0x82, 0x94, 0x09, 0x5c, 0x51, 0xe9, 0xfc, 0xda, 0x26, 0xe0, 0xc6, 0xc4, 0x72, 0x4d, 0x5f, 0x17, 0x2f, 0xab, 0xb2, 0x07, 0xbd, 0xc0, 0x09, 0x78, 0x9c, 0x1d, 0x86, 0x9e, 0x04, 0x75, 0xb9, 0xe6, 0x90, 0xd9, 0x22, 0xac, 0xdb, 0x82, 0x81, 0xc9, 0xba, 0x01, 0xfd, 0x84, 0xdd, 0x21, 0xee, 0xbd, 0x9d, 0x8e, 0x8b, 0x06, 0x93, 0x94, 0x79, 0x51, 0x81, 0x19, 0x21, 0x94, 0xdf, 0x9c, 0x2b, 0x83, 0xcb, 0xb1, 0xae, 0x0c, 0x84, 0x04, 0xf1, 0xaf, 0x0f, 0xee, 0xed, 0xbe, 0xa9, 0x0e, 0x66, 0x89, 0x7c, 0x95, 0xf0, 0xff, 0x60, 0xc4, 0x1f, 0x01, 0xd9, 0xb3, 0x9d, 0x8b, 0x3e, 0xcd, 0x0c, 0x4b, 0xcd, 0x73, 0xd2, 0x29, 0xda, 0xbe, 0x30, 0x2f, 0x5b, 0x33, 0x59, 0x18, 0x2d, 0x8b, 0x7f, 0xae, 0x13, 0x75, 0x18, 0x91, 0xc2, 0xa5, 0xf9, 0xcd, 0x4f, 0x4f, 0x1f, 0xca, 0xdc, 0x0f, 0x43, 0xc1, 0xbf, 0xc8, 0x91, 0x80, 0x03, 0x1c, 0x98, 0x4d, 0xbe, 0x84, 0xb9, 0x7f, 0x4f, 0x81, 0xa3, 0x41, 0xf6, 0x47, 0xeb, 0xee, 0xee, 0xb2, 0x85, 0x6b, 0xfa, 0x07, 0x21, 0x85, 0x98, 0xe3, 0xd8, 0x0f, 0x9a, 0xb0, 0x7d, 0x64, 0x28, 0xfb, 0x3c, 0xf9, 0xd7, 0xf0, 0x20, 0xd2, 0x29, 0x08, 0xef, 0x76, 0x71, 0xf2, 0x1e, 0xe8, 0xa3, 0xf2, 0x45, 0xbd, 0x86, 0x25, 0xbd, 0x3e, 0x1b, 0xa2, 0x17, 0x89, 0x23, 0xfd, 0x9a, 0xa0, 0x57, 0x60, 0xbb, 0x1a, 0xca, 0x3e, 0xcf, 0x83, 0x2f, 0x9f, 0xc2, 0xf5, 0x1f, 0x89, 0xa8, 0x68, 0x25, 0x67, 0x21, 0x55, 0x92, 0x79, 0xc2, 0xf5, 0x2c, 0x42, 0xb2, 0x6c, 0xd7, 0xc8, 0x4f, 0xad, 0x90, 0x9f, 0xe6, 0x65, 0x46, 0x66, 0xbf, 0xd3, 0x7b, 0x0a, 0x52, 0x85, 0xdd, 0x7a, 0xa3, 0xd6, 0x46, 0x16, 0xbb, 0xb3, 0x67, 0x47, 0xe8, 0x18, 0x63, 0x78, 0xb4, 0x4c, 0x01, 0xc6, 0xca, 0xb6, 0x95, 0xdf, 0x73, 0x83, 0xf3, 0xc6, 0xbc, 0x94, 0x22, 0xec, 0xce, 0x87, 0xfc, 0x8d, 0x07, 0x66, 0xc8, 0xf7, 0x7d, 0xf7, 0xe5, 0x69, 0x65, 0xd3, 0x3b, 0x3f, 0x5f, 0x85, 0x63, 0x2c, 0x7d, 0xba, 0x44, 0x2d, 0x46, 0x89, 0x1a, 0x60, 0xf7, 0xd4, 0x01, 0x71, 0xcb, 0x58, 0x9c, 0x15, 0x2a, 0xee, 0x8d, 0x69, 0x86, 0x8b, 0xa2, 0x7d, 0x35, 0x53, 0x0f, 0xa4, 0x59, 0xa8, 0xb8, 0xf9, 0x28, 0x71, 0x92, 0x66, 0x77, 0xc3, 0x80, 0x47, 0x0b, 0x44, 0x43, 0x30, 0x53, 0x16, 0xe7, 0x32, 0x30, 0x18, 0x48, 0x58, 0xbd, 0x0f, 0x94, 0x9c, 0x76, 0x08, 0xff, 0x97, 0xd7, 0x14, 0xfc, 0x5f, 0x41, 0x4b, 0xcc, 0xdd, 0x03, 0xa3, 0xd2, 0xf9, 0x25, 0xa6, 0x14, 0x35, 0xc0, 0xff, 0x95, 0xb4, 0xc1, 0xc9, 0xe4, 0x87, 0xfe, 0x70, 0xea, 0xd0, 0xdc, 0x65, 0xd0, 0xbb, 0x4f, 0x3a, 0xf5, 0x7e, 0x48, 0xe4, 0xb0, 0xc8, 0x63, 0x90, 0xc8, 0xe7, 0x35, 0x65, 0x72, 0xf4, 0x57, 0x3f, 0x39, 0x33, 0x98, 0x27, 0x7f, 0x6e, 0x7c, 0x1d, 0xb9, 0xf9, 0x3c, 0x03, 0x3f, 0x04, 0x47, 0x43, 0x4f, 0x4a, 0x31, 0xbe, 0x50, 0xa0, 0xf8, 0x62, 0xb1, 0x0b, 0x5f, 0x2c, 0x12, 0xbc, 0x92, 0xe5, 0x37, 0xce, 0x39, 0x3d, 0xe4, 0x94, 0x31, 0x5d, 0x0b, 0xdc, 0x70, 0xe7, 0xb2, 0x0f, 0x31, 0xde, 0x7c, 0x28, 0x2f, 0x8a, 0xb8, 0xb1, 0xce, 0x67, 0x0b, 0x0c, 0x5f, 0x08, 0xc5, 0x6f, 0x4b, 0xd7, 0xaa, 0xe2, 0x0a, 0xc1, 0x84, 0x14, 0x3c, 0x85, 0x8b, 0xa1, 0x42, 0x76, 0x03, 0x8f, 0xdd, 0x8b, 0x9e, 0xc2, 0xa5, 0x50, 0xde, 0x7a, 0xc4, 0xa3, 0xaf, 0x52, 0xf6, 0x34, 0x5b, 0xe4, 0x73, 0x67, 0xf4, 0xa3, 0x3c, 0x47, 0x85, 0x19, 0x98, 0x19, 0x88, 0x73, 0x65, 0x0b, 0x0c, 0x90, 0xef, 0x09, 0xe8, 0x6d, 0x25, 0x8e, 0xcc, 0x3e, 0xc2, 0x84, 0x14, 0x7a, 0x0a, 0x89, 0x30, 0x15, 0x87, 0xe7, 0x37, 0x6f, 0xbe, 0x32, 0x75, 0xe8, 0xa5, 0x57, 0xa6, 0x0e, 0xfd, 0xe3, 0x2b, 0x53, 0x87, 0xbe, 0xf7, 0xca, 0x94, 0xf2, 0xc3, 0x57, 0xa6, 0x94, 0x1f, 0xbd, 0x32, 0xa5, 0xfc, 0xf4, 0x95, 0x29, 0xe5, 0xd9, 0x5b, 0x53, 0xca, 0x0b, 0xb7, 0xa6, 0x94, 0x2f, 0xdd, 0x9a, 0x52, 0xbe, 0x7e, 0x6b, 0x4a, 0x79, 0xf1, 0xd6, 0x94, 0x72, 0xf3, 0xd6, 0x94, 0xf2, 0xd2, 0xad, 0x29, 0xe5, 0x7b, 0xb7, 0xa6, 0x94, 0x1f, 0xde, 0x9a, 0x3a, 0xf4, 0xa3, 0x5b, 0x53, 0xca, 0x4f, 0x6f, 0x4d, 0x1d, 0x7a, 0xf6, 0xfb, 0x53, 0x87, 0x9e, 0xff, 0xfe, 0xd4, 0xa1, 0x17, 0xbe, 0x3f, 0xa5, 0xfc, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x61, 0xa1, 0xf1, 0xee, 0x65, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x TheTestEnum) String() string { s, ok := TheTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x AnotherTestEnum) String() string { s, ok := AnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x YetAnotherTestEnum) String() string { s, ok := YetAnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x YetYetAnotherTestEnum) String() string { s, ok := YetYetAnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x NestedDefinition_NestedEnum) String() string { s, ok := NestedDefinition_NestedEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *NidOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptNative but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if this.Field2 != that1.Field2 { return false } if this.Field3 != that1.Field3 { return false } if this.Field4 != that1.Field4 { return false } if this.Field5 != that1.Field5 { return false } if this.Field6 != that1.Field6 { return false } if this.Field7 != that1.Field7 { return false } if this.Field8 != that1.Field8 { return false } if this.Field9 != that1.Field9 { return false } if this.Field10 != that1.Field10 { return false } if this.Field11 != that1.Field11 { return false } if this.Field12 != that1.Field12 { return false } if this.Field13 != that1.Field13 { return false } if this.Field14 != that1.Field14 { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNative but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", *this.Field8, *that1.Field8) } } else if this.Field8 != nil { return fmt.Errorf("this.Field8 == nil && that.Field8 != nil") } else if that1.Field8 != nil { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", *this.Field9, *that1.Field9) } } else if this.Field9 != nil { return fmt.Errorf("this.Field9 == nil && that.Field9 != nil") } else if that1.Field9 != nil { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", *this.Field10, *that1.Field10) } } else if this.Field10 != nil { return fmt.Errorf("this.Field10 == nil && that.Field10 != nil") } else if that1.Field10 != nil { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", *this.Field11, *that1.Field11) } } else if this.Field11 != nil { return fmt.Errorf("this.Field11 == nil && that.Field11 != nil") } else if that1.Field11 != nil { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", *this.Field12, *that1.Field12) } } else if this.Field12 != nil { return fmt.Errorf("this.Field12 == nil && that.Field12 != nil") } else if that1.Field12 != nil { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return false } } else if this.Field8 != nil { return false } else if that1.Field8 != nil { return false } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return false } } else if this.Field9 != nil { return false } else if that1.Field9 != nil { return false } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return false } } else if this.Field10 != nil { return false } else if that1.Field10 != nil { return false } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return false } } else if this.Field11 != nil { return false } else if that1.Field11 != nil { return false } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return false } } else if this.Field12 != nil { return false } else if that1.Field12 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepPackedNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepPackedNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepPackedNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepPackedNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepPackedNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepPackedNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepPackedNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepPackedNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepPackedNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepPackedNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptStruct but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(&that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(&that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if !this.Field8.Equal(&that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if this.Field2 != that1.Field2 { return false } if !this.Field3.Equal(&that1.Field3) { return false } if !this.Field4.Equal(&that1.Field4) { return false } if this.Field6 != that1.Field6 { return false } if this.Field7 != that1.Field7 { return false } if !this.Field8.Equal(&that1.Field8) { return false } if this.Field13 != that1.Field13 { return false } if this.Field14 != that1.Field14 { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptStruct but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if !this.Field8.Equal(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !this.Field3.Equal(that1.Field3) { return false } if !this.Field4.Equal(that1.Field4) { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if !this.Field8.Equal(that1.Field8) { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepStruct but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if !this.Field3[i].Equal(&that1.Field3[i]) { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if !this.Field4[i].Equal(&that1.Field4[i]) { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if !this.Field8[i].Equal(&that1.Field8[i]) { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if !this.Field3[i].Equal(&that1.Field3[i]) { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if !this.Field4[i].Equal(&that1.Field4[i]) { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if !this.Field8[i].Equal(&that1.Field8[i]) { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepStruct but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if !this.Field3[i].Equal(that1.Field3[i]) { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if !this.Field4[i].Equal(that1.Field4[i]) { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if !this.Field8[i].Equal(that1.Field8[i]) { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if !this.Field3[i].Equal(that1.Field3[i]) { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if !this.Field4[i].Equal(that1.Field4[i]) { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if !this.Field8[i].Equal(that1.Field8[i]) { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidEmbeddedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidEmbeddedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidEmbeddedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidEmbeddedStruct but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(&that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidEmbeddedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(&that1.Field200) { return false } if this.Field210 != that1.Field210 { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinEmbeddedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinEmbeddedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinEmbeddedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinEmbeddedStruct but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", *this.Field210, *that1.Field210) } } else if this.Field210 != nil { return fmt.Errorf("this.Field210 == nil && that.Field210 != nil") } else if that1.Field210 != nil { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinEmbeddedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(that1.Field200) { return false } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return false } } else if this.Field210 != nil { return false } else if that1.Field210 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidNestedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidNestedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidNestedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidNestedStruct but is not nil && this == nil") } if !this.Field1.Equal(&that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if !this.Field2[i].Equal(&that1.Field2[i]) { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidNestedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(&that1.Field1) { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if !this.Field2[i].Equal(&that1.Field2[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinNestedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinNestedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinNestedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinNestedStruct but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if !this.Field2[i].Equal(that1.Field2[i]) { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinNestedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if !this.Field2[i].Equal(that1.Field2[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptCustom but is not nil && this == nil") } if !this.Id.Equal(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id) } if !this.Value.Equal(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Id.Equal(that1.Id) { return false } if !this.Value.Equal(that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomDash) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomDash") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomDash but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomDash but is not nil && this == nil") } if that1.Value == nil { if this.Value != nil { return fmt.Errorf("this.Value != nil && that1.Value == nil") } } else if !this.Value.Equal(*that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomDash) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Value == nil { if this.Value != nil { return false } } else if !this.Value.Equal(*that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptCustom but is not nil && this == nil") } if that1.Id == nil { if this.Id != nil { return fmt.Errorf("this.Id != nil && that1.Id == nil") } } else if !this.Id.Equal(*that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id) } if that1.Value == nil { if this.Value != nil { return fmt.Errorf("this.Value != nil && that1.Value == nil") } } else if !this.Value.Equal(*that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Id == nil { if this.Id != nil { return false } } else if !this.Id.Equal(*that1.Id) { return false } if that1.Value == nil { if this.Value != nil { return false } } else if !this.Value.Equal(*that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepCustom but is not nil && this == nil") } if len(this.Id) != len(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", len(this.Id), len(that1.Id)) } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return fmt.Errorf("Id this[%v](%v) Not Equal that[%v](%v)", i, this.Id[i], i, that1.Id[i]) } } if len(this.Value) != len(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", len(this.Value), len(that1.Value)) } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return fmt.Errorf("Value this[%v](%v) Not Equal that[%v](%v)", i, this.Value[i], i, that1.Value[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Id) != len(that1.Id) { return false } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return false } } if len(this.Value) != len(that1.Value) { return false } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepCustom but is not nil && this == nil") } if len(this.Id) != len(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", len(this.Id), len(that1.Id)) } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return fmt.Errorf("Id this[%v](%v) Not Equal that[%v](%v)", i, this.Id[i], i, that1.Id[i]) } } if len(this.Value) != len(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", len(this.Value), len(that1.Value)) } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return fmt.Errorf("Value this[%v](%v) Not Equal that[%v](%v)", i, this.Value[i], i, that1.Value[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Id) != len(that1.Id) { return false } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return false } } if len(this.Value) != len(that1.Value) { return false } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNativeUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNativeUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNativeUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNativeUnion but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNativeUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptStructUnion but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !this.Field3.Equal(that1.Field3) { return false } if !this.Field4.Equal(that1.Field4) { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinEmbeddedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinEmbeddedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinEmbeddedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinEmbeddedStructUnion but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", *this.Field210, *that1.Field210) } } else if this.Field210 != nil { return fmt.Errorf("this.Field210 == nil && that.Field210 != nil") } else if that1.Field210 != nil { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinEmbeddedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(that1.Field200) { return false } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return false } } else if this.Field210 != nil { return false } else if that1.Field210 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinNestedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinNestedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinNestedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinNestedStructUnion but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !this.Field2.Equal(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinNestedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if !this.Field2.Equal(that1.Field2) { return false } if !this.Field3.Equal(that1.Field3) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Tree) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Tree") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Tree but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Tree but is not nil && this == nil") } if !this.Or.Equal(that1.Or) { return fmt.Errorf("Or this(%v) Not Equal that(%v)", this.Or, that1.Or) } if !this.And.Equal(that1.And) { return fmt.Errorf("And this(%v) Not Equal that(%v)", this.And, that1.And) } if !this.Leaf.Equal(that1.Leaf) { return fmt.Errorf("Leaf this(%v) Not Equal that(%v)", this.Leaf, that1.Leaf) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Tree) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Or.Equal(that1.Or) { return false } if !this.And.Equal(that1.And) { return false } if !this.Leaf.Equal(that1.Leaf) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OrBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OrBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OrBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OrBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OrBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AndBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AndBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AndBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AndBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AndBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Leaf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Leaf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Leaf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Leaf but is not nil && this == nil") } if this.Value != that1.Value { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if this.StrValue != that1.StrValue { return fmt.Errorf("StrValue this(%v) Not Equal that(%v)", this.StrValue, that1.StrValue) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Leaf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } if this.StrValue != that1.StrValue { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *DeepTree) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DeepTree") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DeepTree but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DeepTree but is not nil && this == nil") } if !this.Down.Equal(that1.Down) { return fmt.Errorf("Down this(%v) Not Equal that(%v)", this.Down, that1.Down) } if !this.And.Equal(that1.And) { return fmt.Errorf("And this(%v) Not Equal that(%v)", this.And, that1.And) } if !this.Leaf.Equal(that1.Leaf) { return fmt.Errorf("Leaf this(%v) Not Equal that(%v)", this.Leaf, that1.Leaf) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *DeepTree) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Down.Equal(that1.Down) { return false } if !this.And.Equal(that1.And) { return false } if !this.Leaf.Equal(that1.Leaf) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *ADeepBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ADeepBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ADeepBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ADeepBranch but is not nil && this == nil") } if !this.Down.Equal(&that1.Down) { return fmt.Errorf("Down this(%v) Not Equal that(%v)", this.Down, that1.Down) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *ADeepBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Down.Equal(&that1.Down) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AndDeepBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AndDeepBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AndDeepBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AndDeepBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AndDeepBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *DeepLeaf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DeepLeaf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DeepLeaf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DeepLeaf but is not nil && this == nil") } if !this.Tree.Equal(&that1.Tree) { return fmt.Errorf("Tree this(%v) Not Equal that(%v)", this.Tree, that1.Tree) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *DeepLeaf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Tree.Equal(&that1.Tree) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Nil) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Nil") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Nil but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Nil but is not nil && this == nil") } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Nil) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptEnum but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptEnum but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptEnumDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptEnumDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptEnumDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptEnumDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptEnumDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AnotherNinOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AnotherNinOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AnotherNinOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AnotherNinOptEnum but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AnotherNinOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AnotherNinOptEnumDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AnotherNinOptEnumDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AnotherNinOptEnumDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AnotherNinOptEnumDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AnotherNinOptEnumDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Timer) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Timer") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Timer but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Timer but is not nil && this == nil") } if this.Time1 != that1.Time1 { return fmt.Errorf("Time1 this(%v) Not Equal that(%v)", this.Time1, that1.Time1) } if this.Time2 != that1.Time2 { return fmt.Errorf("Time2 this(%v) Not Equal that(%v)", this.Time2, that1.Time2) } if !bytes.Equal(this.Data, that1.Data) { return fmt.Errorf("Data this(%v) Not Equal that(%v)", this.Data, that1.Data) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Timer) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Time1 != that1.Time1 { return false } if this.Time2 != that1.Time2 { return false } if !bytes.Equal(this.Data, that1.Data) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *MyExtendable) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MyExtendable") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MyExtendable but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MyExtendable but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return fmt.Errorf("XXX_InternalExtensions this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k]) } } else { return fmt.Errorf("XXX_InternalExtensions[%v] Not In that", k) } } for k := range thatmap { if _, ok := thismap[k]; !ok { return fmt.Errorf("XXX_InternalExtensions[%v] Not In this", k) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *MyExtendable) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return false } } else { return false } } for k := range thatmap { if _, ok := thismap[k]; !ok { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OtherExtenable) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OtherExtenable") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OtherExtenable but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OtherExtenable but is not nil && this == nil") } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if !this.M.Equal(that1.M) { return fmt.Errorf("M this(%v) Not Equal that(%v)", this.M, that1.M) } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return fmt.Errorf("XXX_InternalExtensions this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k]) } } else { return fmt.Errorf("XXX_InternalExtensions[%v] Not In that", k) } } for k := range thatmap { if _, ok := thismap[k]; !ok { return fmt.Errorf("XXX_InternalExtensions[%v] Not In this", k) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OtherExtenable) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if !this.M.Equal(that1.M) { return false } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return false } } else { return false } } for k := range thatmap { if _, ok := thismap[k]; !ok { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { return fmt.Errorf("EnumField this(%v) Not Equal that(%v)", *this.EnumField, *that1.EnumField) } } else if this.EnumField != nil { return fmt.Errorf("this.EnumField == nil && that.EnumField != nil") } else if that1.EnumField != nil { return fmt.Errorf("EnumField this(%v) Not Equal that(%v)", this.EnumField, that1.EnumField) } if !this.NNM.Equal(that1.NNM) { return fmt.Errorf("NNM this(%v) Not Equal that(%v)", this.NNM, that1.NNM) } if !this.NM.Equal(that1.NM) { return fmt.Errorf("NM this(%v) Not Equal that(%v)", this.NM, that1.NM) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { return false } } else if this.EnumField != nil { return false } else if that1.EnumField != nil { return false } if !this.NNM.Equal(that1.NNM) { return false } if !this.NM.Equal(that1.NM) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition_NestedMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition_NestedMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition_NestedMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition_NestedMessage but is not nil && this == nil") } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { return fmt.Errorf("NestedField1 this(%v) Not Equal that(%v)", *this.NestedField1, *that1.NestedField1) } } else if this.NestedField1 != nil { return fmt.Errorf("this.NestedField1 == nil && that.NestedField1 != nil") } else if that1.NestedField1 != nil { return fmt.Errorf("NestedField1 this(%v) Not Equal that(%v)", this.NestedField1, that1.NestedField1) } if !this.NNM.Equal(that1.NNM) { return fmt.Errorf("NNM this(%v) Not Equal that(%v)", this.NNM, that1.NNM) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition_NestedMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { return false } } else if this.NestedField1 != nil { return false } else if that1.NestedField1 != nil { return false } if !this.NNM.Equal(that1.NNM) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition_NestedMessage_NestedNestedMsg") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition_NestedMessage_NestedNestedMsg but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition_NestedMessage_NestedNestedMsg but is not nil && this == nil") } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { return fmt.Errorf("NestedNestedField1 this(%v) Not Equal that(%v)", *this.NestedNestedField1, *that1.NestedNestedField1) } } else if this.NestedNestedField1 != nil { return fmt.Errorf("this.NestedNestedField1 == nil && that.NestedNestedField1 != nil") } else if that1.NestedNestedField1 != nil { return fmt.Errorf("NestedNestedField1 this(%v) Not Equal that(%v)", this.NestedNestedField1, that1.NestedNestedField1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { return false } } else if this.NestedNestedField1 != nil { return false } else if that1.NestedNestedField1 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedScope) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedScope") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedScope but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedScope but is not nil && this == nil") } if !this.A.Equal(that1.A) { return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A) } if this.B != nil && that1.B != nil { if *this.B != *that1.B { return fmt.Errorf("B this(%v) Not Equal that(%v)", *this.B, *that1.B) } } else if this.B != nil { return fmt.Errorf("this.B == nil && that.B != nil") } else if that1.B != nil { return fmt.Errorf("B this(%v) Not Equal that(%v)", this.B, that1.B) } if !this.C.Equal(that1.C) { return fmt.Errorf("C this(%v) Not Equal that(%v)", this.C, that1.C) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedScope) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.A.Equal(that1.A) { return false } if this.B != nil && that1.B != nil { if *this.B != *that1.B { return false } } else if this.B != nil { return false } else if that1.B != nil { return false } if !this.C.Equal(that1.C) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNativeDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNativeDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNativeDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNativeDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", *this.Field8, *that1.Field8) } } else if this.Field8 != nil { return fmt.Errorf("this.Field8 == nil && that.Field8 != nil") } else if that1.Field8 != nil { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", *this.Field9, *that1.Field9) } } else if this.Field9 != nil { return fmt.Errorf("this.Field9 == nil && that.Field9 != nil") } else if that1.Field9 != nil { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", *this.Field10, *that1.Field10) } } else if this.Field10 != nil { return fmt.Errorf("this.Field10 == nil && that.Field10 != nil") } else if that1.Field10 != nil { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", *this.Field11, *that1.Field11) } } else if this.Field11 != nil { return fmt.Errorf("this.Field11 == nil && that.Field11 != nil") } else if that1.Field11 != nil { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", *this.Field12, *that1.Field12) } } else if this.Field12 != nil { return fmt.Errorf("this.Field12 == nil && that.Field12 != nil") } else if that1.Field12 != nil { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNativeDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return false } } else if this.Field8 != nil { return false } else if that1.Field8 != nil { return false } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return false } } else if this.Field9 != nil { return false } else if that1.Field9 != nil { return false } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return false } } else if this.Field10 != nil { return false } else if that1.Field10 != nil { return false } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return false } } else if this.Field11 != nil { return false } else if that1.Field11 != nil { return false } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return false } } else if this.Field12 != nil { return false } else if that1.Field12 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomContainer) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomContainer") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomContainer but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomContainer but is not nil && this == nil") } if !this.CustomStruct.Equal(&that1.CustomStruct) { return fmt.Errorf("CustomStruct this(%v) Not Equal that(%v)", this.CustomStruct, that1.CustomStruct) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomContainer) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.CustomStruct.Equal(&that1.CustomStruct) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNidOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNidOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNidOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNidOptNative but is not nil && this == nil") } if this.FieldA != that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if this.FieldC != that1.FieldC { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if this.FieldD != that1.FieldD { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", this.FieldD, that1.FieldD) } if this.FieldE != that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if this.FieldG != that1.FieldG { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if this.FieldJ != that1.FieldJ { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if this.FieldK != that1.FieldK { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", this.FieldK, that1.FieldK) } if this.FieldL != that1.FieldL { return fmt.Errorf("FieldL this(%v) Not Equal that(%v)", this.FieldL, that1.FieldL) } if this.FieldM != that1.FieldM { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", this.FieldM, that1.FieldM) } if this.FieldN != that1.FieldN { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", this.FieldN, that1.FieldN) } if !bytes.Equal(this.FieldO, that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", this.FieldO, that1.FieldO) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNidOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != that1.FieldA { return false } if this.FieldB != that1.FieldB { return false } if this.FieldC != that1.FieldC { return false } if this.FieldD != that1.FieldD { return false } if this.FieldE != that1.FieldE { return false } if this.FieldF != that1.FieldF { return false } if this.FieldG != that1.FieldG { return false } if this.FieldH != that1.FieldH { return false } if this.FieldI != that1.FieldI { return false } if this.FieldJ != that1.FieldJ { return false } if this.FieldK != that1.FieldK { return false } if this.FieldL != that1.FieldL { return false } if this.FieldM != that1.FieldM { return false } if this.FieldN != that1.FieldN { return false } if !bytes.Equal(this.FieldO, that1.FieldO) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinOptNative but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", *this.FieldC, *that1.FieldC) } } else if this.FieldC != nil { return fmt.Errorf("this.FieldC == nil && that.FieldC != nil") } else if that1.FieldC != nil { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", *this.FieldD, *that1.FieldD) } } else if this.FieldD != nil { return fmt.Errorf("this.FieldD == nil && that.FieldD != nil") } else if that1.FieldD != nil { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", this.FieldD, that1.FieldD) } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", *this.FieldE, *that1.FieldE) } } else if this.FieldE != nil { return fmt.Errorf("this.FieldE == nil && that.FieldE != nil") } else if that1.FieldE != nil { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", *this.FieldF, *that1.FieldF) } } else if this.FieldF != nil { return fmt.Errorf("this.FieldF == nil && that.FieldF != nil") } else if that1.FieldF != nil { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", *this.FieldG, *that1.FieldG) } } else if this.FieldG != nil { return fmt.Errorf("this.FieldG == nil && that.FieldG != nil") } else if that1.FieldG != nil { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", *this.FieldH, *that1.FieldH) } } else if this.FieldH != nil { return fmt.Errorf("this.FieldH == nil && that.FieldH != nil") } else if that1.FieldH != nil { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", *this.FieldI, *that1.FieldI) } } else if this.FieldI != nil { return fmt.Errorf("this.FieldI == nil && that.FieldI != nil") } else if that1.FieldI != nil { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", *this.FieldJ, *that1.FieldJ) } } else if this.FieldJ != nil { return fmt.Errorf("this.FieldJ == nil && that.FieldJ != nil") } else if that1.FieldJ != nil { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", *this.FieldK, *that1.FieldK) } } else if this.FieldK != nil { return fmt.Errorf("this.FieldK == nil && that.FieldK != nil") } else if that1.FieldK != nil { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", this.FieldK, that1.FieldK) } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { return fmt.Errorf("FielL this(%v) Not Equal that(%v)", *this.FielL, *that1.FielL) } } else if this.FielL != nil { return fmt.Errorf("this.FielL == nil && that.FielL != nil") } else if that1.FielL != nil { return fmt.Errorf("FielL this(%v) Not Equal that(%v)", this.FielL, that1.FielL) } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", *this.FieldM, *that1.FieldM) } } else if this.FieldM != nil { return fmt.Errorf("this.FieldM == nil && that.FieldM != nil") } else if that1.FieldM != nil { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", this.FieldM, that1.FieldM) } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", *this.FieldN, *that1.FieldN) } } else if this.FieldN != nil { return fmt.Errorf("this.FieldN == nil && that.FieldN != nil") } else if that1.FieldN != nil { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", this.FieldN, that1.FieldN) } if !bytes.Equal(this.FieldO, that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", this.FieldO, that1.FieldO) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { return false } } else if this.FieldC != nil { return false } else if that1.FieldC != nil { return false } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { return false } } else if this.FieldD != nil { return false } else if that1.FieldD != nil { return false } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return false } } else if this.FieldE != nil { return false } else if that1.FieldE != nil { return false } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return false } } else if this.FieldF != nil { return false } else if that1.FieldF != nil { return false } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { return false } } else if this.FieldG != nil { return false } else if that1.FieldG != nil { return false } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return false } } else if this.FieldH != nil { return false } else if that1.FieldH != nil { return false } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return false } } else if this.FieldI != nil { return false } else if that1.FieldI != nil { return false } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { return false } } else if this.FieldJ != nil { return false } else if that1.FieldJ != nil { return false } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { return false } } else if this.FieldK != nil { return false } else if that1.FieldK != nil { return false } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { return false } } else if this.FielL != nil { return false } else if that1.FielL != nil { return false } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { return false } } else if this.FieldM != nil { return false } else if that1.FieldM != nil { return false } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { return false } } else if this.FieldN != nil { return false } else if that1.FieldN != nil { return false } if !bytes.Equal(this.FieldO, that1.FieldO) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinRepNative but is not nil && this == nil") } if len(this.FieldA) != len(that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", len(this.FieldA), len(that1.FieldA)) } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { return fmt.Errorf("FieldA this[%v](%v) Not Equal that[%v](%v)", i, this.FieldA[i], i, that1.FieldA[i]) } } if len(this.FieldB) != len(that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", len(this.FieldB), len(that1.FieldB)) } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return fmt.Errorf("FieldB this[%v](%v) Not Equal that[%v](%v)", i, this.FieldB[i], i, that1.FieldB[i]) } } if len(this.FieldC) != len(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", len(this.FieldC), len(that1.FieldC)) } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { return fmt.Errorf("FieldC this[%v](%v) Not Equal that[%v](%v)", i, this.FieldC[i], i, that1.FieldC[i]) } } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if len(this.FieldE) != len(that1.FieldE) { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", len(this.FieldE), len(that1.FieldE)) } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { return fmt.Errorf("FieldE this[%v](%v) Not Equal that[%v](%v)", i, this.FieldE[i], i, that1.FieldE[i]) } } if len(this.FieldF) != len(that1.FieldF) { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", len(this.FieldF), len(that1.FieldF)) } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { return fmt.Errorf("FieldF this[%v](%v) Not Equal that[%v](%v)", i, this.FieldF[i], i, that1.FieldF[i]) } } if len(this.FieldG) != len(that1.FieldG) { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", len(this.FieldG), len(that1.FieldG)) } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { return fmt.Errorf("FieldG this[%v](%v) Not Equal that[%v](%v)", i, this.FieldG[i], i, that1.FieldG[i]) } } if len(this.FieldH) != len(that1.FieldH) { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", len(this.FieldH), len(that1.FieldH)) } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { return fmt.Errorf("FieldH this[%v](%v) Not Equal that[%v](%v)", i, this.FieldH[i], i, that1.FieldH[i]) } } if len(this.FieldI) != len(that1.FieldI) { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", len(this.FieldI), len(that1.FieldI)) } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { return fmt.Errorf("FieldI this[%v](%v) Not Equal that[%v](%v)", i, this.FieldI[i], i, that1.FieldI[i]) } } if len(this.FieldJ) != len(that1.FieldJ) { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", len(this.FieldJ), len(that1.FieldJ)) } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { return fmt.Errorf("FieldJ this[%v](%v) Not Equal that[%v](%v)", i, this.FieldJ[i], i, that1.FieldJ[i]) } } if len(this.FieldK) != len(that1.FieldK) { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", len(this.FieldK), len(that1.FieldK)) } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { return fmt.Errorf("FieldK this[%v](%v) Not Equal that[%v](%v)", i, this.FieldK[i], i, that1.FieldK[i]) } } if len(this.FieldL) != len(that1.FieldL) { return fmt.Errorf("FieldL this(%v) Not Equal that(%v)", len(this.FieldL), len(that1.FieldL)) } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { return fmt.Errorf("FieldL this[%v](%v) Not Equal that[%v](%v)", i, this.FieldL[i], i, that1.FieldL[i]) } } if len(this.FieldM) != len(that1.FieldM) { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", len(this.FieldM), len(that1.FieldM)) } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { return fmt.Errorf("FieldM this[%v](%v) Not Equal that[%v](%v)", i, this.FieldM[i], i, that1.FieldM[i]) } } if len(this.FieldN) != len(that1.FieldN) { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", len(this.FieldN), len(that1.FieldN)) } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { return fmt.Errorf("FieldN this[%v](%v) Not Equal that[%v](%v)", i, this.FieldN[i], i, that1.FieldN[i]) } } if len(this.FieldO) != len(that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", len(this.FieldO), len(that1.FieldO)) } for i := range this.FieldO { if !bytes.Equal(this.FieldO[i], that1.FieldO[i]) { return fmt.Errorf("FieldO this[%v](%v) Not Equal that[%v](%v)", i, this.FieldO[i], i, that1.FieldO[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.FieldA) != len(that1.FieldA) { return false } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { return false } } if len(this.FieldB) != len(that1.FieldB) { return false } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return false } } if len(this.FieldC) != len(that1.FieldC) { return false } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { return false } } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { return false } } if len(this.FieldE) != len(that1.FieldE) { return false } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { return false } } if len(this.FieldF) != len(that1.FieldF) { return false } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { return false } } if len(this.FieldG) != len(that1.FieldG) { return false } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { return false } } if len(this.FieldH) != len(that1.FieldH) { return false } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { return false } } if len(this.FieldI) != len(that1.FieldI) { return false } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { return false } } if len(this.FieldJ) != len(that1.FieldJ) { return false } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { return false } } if len(this.FieldK) != len(that1.FieldK) { return false } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { return false } } if len(this.FieldL) != len(that1.FieldL) { return false } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { return false } } if len(this.FieldM) != len(that1.FieldM) { return false } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { return false } } if len(this.FieldN) != len(that1.FieldN) { return false } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { return false } } if len(this.FieldO) != len(that1.FieldO) { return false } for i := range this.FieldO { if !bytes.Equal(this.FieldO[i], that1.FieldO[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinStruct but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if !this.FieldC.Equal(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", *this.FieldE, *that1.FieldE) } } else if this.FieldE != nil { return fmt.Errorf("this.FieldE == nil && that.FieldE != nil") } else if that1.FieldE != nil { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", *this.FieldF, *that1.FieldF) } } else if this.FieldF != nil { return fmt.Errorf("this.FieldF == nil && that.FieldF != nil") } else if that1.FieldF != nil { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if !this.FieldG.Equal(that1.FieldG) { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", *this.FieldH, *that1.FieldH) } } else if this.FieldH != nil { return fmt.Errorf("this.FieldH == nil && that.FieldH != nil") } else if that1.FieldH != nil { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", *this.FieldI, *that1.FieldI) } } else if this.FieldI != nil { return fmt.Errorf("this.FieldI == nil && that.FieldI != nil") } else if that1.FieldI != nil { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if !bytes.Equal(this.FieldJ, that1.FieldJ) { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if !this.FieldC.Equal(that1.FieldC) { return false } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return false } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return false } } else if this.FieldE != nil { return false } else if that1.FieldE != nil { return false } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return false } } else if this.FieldF != nil { return false } else if that1.FieldF != nil { return false } if !this.FieldG.Equal(that1.FieldG) { return false } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return false } } else if this.FieldH != nil { return false } else if that1.FieldH != nil { return false } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return false } } else if this.FieldI != nil { return false } else if that1.FieldI != nil { return false } if !bytes.Equal(this.FieldJ, that1.FieldJ) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameCustomType but is not nil && this == nil") } if that1.FieldA == nil { if this.FieldA != nil { return fmt.Errorf("this.FieldA != nil && that1.FieldA == nil") } } else if !this.FieldA.Equal(*that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if that1.FieldB == nil { if this.FieldB != nil { return fmt.Errorf("this.FieldB != nil && that1.FieldB == nil") } } else if !this.FieldB.Equal(*that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if len(this.FieldC) != len(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", len(this.FieldC), len(that1.FieldC)) } for i := range this.FieldC { if !this.FieldC[i].Equal(that1.FieldC[i]) { return fmt.Errorf("FieldC this[%v](%v) Not Equal that[%v](%v)", i, this.FieldC[i], i, that1.FieldC[i]) } } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.FieldA == nil { if this.FieldA != nil { return false } } else if !this.FieldA.Equal(*that1.FieldA) { return false } if that1.FieldB == nil { if this.FieldB != nil { return false } } else if !this.FieldB.Equal(*that1.FieldB) { return false } if len(this.FieldC) != len(that1.FieldC) { return false } for i := range this.FieldC { if !this.FieldC[i].Equal(that1.FieldC[i]) { return false } } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinEmbeddedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinEmbeddedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinEmbeddedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinEmbeddedStructUnion but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.FieldA.Equal(that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinEmbeddedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.FieldA.Equal(that1.FieldA) { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameEnum but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if len(this.FieldB) != len(that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", len(this.FieldB), len(that1.FieldB)) } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return fmt.Errorf("FieldB this[%v](%v) Not Equal that[%v](%v)", i, this.FieldB[i], i, that1.FieldB[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if len(this.FieldB) != len(that1.FieldB) { return false } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NoExtensionsMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NoExtensionsMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NoExtensionsMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NoExtensionsMap but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return fmt.Errorf("XXX_extensions this(%v) Not Equal that(%v)", this.XXX_extensions, that1.XXX_extensions) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NoExtensionsMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Unrecognized) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Unrecognized") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Unrecognized but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Unrecognized but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *Unrecognized) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *UnrecognizedWithInner) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithInner") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithInner but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithInner but is not nil && this == nil") } if len(this.Embedded) != len(that1.Embedded) { return fmt.Errorf("Embedded this(%v) Not Equal that(%v)", len(this.Embedded), len(that1.Embedded)) } for i := range this.Embedded { if !this.Embedded[i].Equal(that1.Embedded[i]) { return fmt.Errorf("Embedded this[%v](%v) Not Equal that[%v](%v)", i, this.Embedded[i], i, that1.Embedded[i]) } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *UnrecognizedWithInner) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Embedded) != len(that1.Embedded) { return false } for i := range this.Embedded { if !this.Embedded[i].Equal(that1.Embedded[i]) { return false } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *UnrecognizedWithInner_Inner) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithInner_Inner") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithInner_Inner but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithInner_Inner but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *UnrecognizedWithInner_Inner) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *UnrecognizedWithEmbed) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithEmbed") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithEmbed but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithEmbed but is not nil && this == nil") } if !this.UnrecognizedWithEmbed_Embedded.Equal(&that1.UnrecognizedWithEmbed_Embedded) { return fmt.Errorf("UnrecognizedWithEmbed_Embedded this(%v) Not Equal that(%v)", this.UnrecognizedWithEmbed_Embedded, that1.UnrecognizedWithEmbed_Embedded) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *UnrecognizedWithEmbed) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.UnrecognizedWithEmbed_Embedded.Equal(&that1.UnrecognizedWithEmbed_Embedded) { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *UnrecognizedWithEmbed_Embedded) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithEmbed_Embedded") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithEmbed_Embedded but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithEmbed_Embedded but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *UnrecognizedWithEmbed_Embedded) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *Node) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Node") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Node but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Node but is not nil && this == nil") } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { return fmt.Errorf("Label this(%v) Not Equal that(%v)", *this.Label, *that1.Label) } } else if this.Label != nil { return fmt.Errorf("this.Label == nil && that.Label != nil") } else if that1.Label != nil { return fmt.Errorf("Label this(%v) Not Equal that(%v)", this.Label, that1.Label) } if len(this.Children) != len(that1.Children) { return fmt.Errorf("Children this(%v) Not Equal that(%v)", len(this.Children), len(that1.Children)) } for i := range this.Children { if !this.Children[i].Equal(that1.Children[i]) { return fmt.Errorf("Children this[%v](%v) Not Equal that[%v](%v)", i, this.Children[i], i, that1.Children[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Node) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { return false } } else if this.Label != nil { return false } else if that1.Label != nil { return false } if len(this.Children) != len(that1.Children) { return false } for i := range this.Children { if !this.Children[i].Equal(that1.Children[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NonByteCustomType but is not nil && this == nil") } if that1.Field1 == nil { if this.Field1 != nil { return fmt.Errorf("this.Field1 != nil && that1.Field1 == nil") } } else if !this.Field1.Equal(*that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Field1 == nil { if this.Field1 != nil { return false } } else if !this.Field1.Equal(*that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptNonByteCustomType but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNonByteCustomType but is not nil && this == nil") } if that1.Field1 == nil { if this.Field1 != nil { return fmt.Errorf("this.Field1 != nil && that1.Field1 == nil") } } else if !this.Field1.Equal(*that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Field1 == nil { if this.Field1 != nil { return false } } else if !this.Field1.Equal(*that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepNonByteCustomType but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepNonByteCustomType but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *ProtoType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ProtoType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ProtoType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ProtoType but is not nil && this == nil") } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *ProtoType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type NidOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() float64 GetField2() float32 GetField3() int32 GetField4() int64 GetField5() uint32 GetField6() uint64 GetField7() int32 GetField8() int64 GetField9() uint32 GetField10() int32 GetField11() uint64 GetField12() int64 GetField13() bool GetField14() string GetField15() []byte } func (this *NidOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptNativeFromFace(this) } func (this *NidOptNative) GetField1() float64 { return this.Field1 } func (this *NidOptNative) GetField2() float32 { return this.Field2 } func (this *NidOptNative) GetField3() int32 { return this.Field3 } func (this *NidOptNative) GetField4() int64 { return this.Field4 } func (this *NidOptNative) GetField5() uint32 { return this.Field5 } func (this *NidOptNative) GetField6() uint64 { return this.Field6 } func (this *NidOptNative) GetField7() int32 { return this.Field7 } func (this *NidOptNative) GetField8() int64 { return this.Field8 } func (this *NidOptNative) GetField9() uint32 { return this.Field9 } func (this *NidOptNative) GetField10() int32 { return this.Field10 } func (this *NidOptNative) GetField11() uint64 { return this.Field11 } func (this *NidOptNative) GetField12() int64 { return this.Field12 } func (this *NidOptNative) GetField13() bool { return this.Field13 } func (this *NidOptNative) GetField14() string { return this.Field14 } func (this *NidOptNative) GetField15() []byte { return this.Field15 } func NewNidOptNativeFromFace(that NidOptNativeFace) *NidOptNative { this := &NidOptNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *int32 GetField4() *int64 GetField5() *uint32 GetField6() *uint64 GetField7() *int32 GetField8() *int64 GetField9() *uint32 GetField10() *int32 GetField11() *uint64 GetField12() *int64 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNativeFromFace(this) } func (this *NinOptNative) GetField1() *float64 { return this.Field1 } func (this *NinOptNative) GetField2() *float32 { return this.Field2 } func (this *NinOptNative) GetField3() *int32 { return this.Field3 } func (this *NinOptNative) GetField4() *int64 { return this.Field4 } func (this *NinOptNative) GetField5() *uint32 { return this.Field5 } func (this *NinOptNative) GetField6() *uint64 { return this.Field6 } func (this *NinOptNative) GetField7() *int32 { return this.Field7 } func (this *NinOptNative) GetField8() *int64 { return this.Field8 } func (this *NinOptNative) GetField9() *uint32 { return this.Field9 } func (this *NinOptNative) GetField10() *int32 { return this.Field10 } func (this *NinOptNative) GetField11() *uint64 { return this.Field11 } func (this *NinOptNative) GetField12() *int64 { return this.Field12 } func (this *NinOptNative) GetField13() *bool { return this.Field13 } func (this *NinOptNative) GetField14() *string { return this.Field14 } func (this *NinOptNative) GetField15() []byte { return this.Field15 } func NewNinOptNativeFromFace(that NinOptNativeFace) *NinOptNative { this := &NinOptNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NidRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepNativeFromFace(this) } func (this *NidRepNative) GetField1() []float64 { return this.Field1 } func (this *NidRepNative) GetField2() []float32 { return this.Field2 } func (this *NidRepNative) GetField3() []int32 { return this.Field3 } func (this *NidRepNative) GetField4() []int64 { return this.Field4 } func (this *NidRepNative) GetField5() []uint32 { return this.Field5 } func (this *NidRepNative) GetField6() []uint64 { return this.Field6 } func (this *NidRepNative) GetField7() []int32 { return this.Field7 } func (this *NidRepNative) GetField8() []int64 { return this.Field8 } func (this *NidRepNative) GetField9() []uint32 { return this.Field9 } func (this *NidRepNative) GetField10() []int32 { return this.Field10 } func (this *NidRepNative) GetField11() []uint64 { return this.Field11 } func (this *NidRepNative) GetField12() []int64 { return this.Field12 } func (this *NidRepNative) GetField13() []bool { return this.Field13 } func (this *NidRepNative) GetField14() []string { return this.Field14 } func (this *NidRepNative) GetField15() [][]byte { return this.Field15 } func NewNidRepNativeFromFace(that NidRepNativeFace) *NidRepNative { this := &NidRepNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NinRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepNativeFromFace(this) } func (this *NinRepNative) GetField1() []float64 { return this.Field1 } func (this *NinRepNative) GetField2() []float32 { return this.Field2 } func (this *NinRepNative) GetField3() []int32 { return this.Field3 } func (this *NinRepNative) GetField4() []int64 { return this.Field4 } func (this *NinRepNative) GetField5() []uint32 { return this.Field5 } func (this *NinRepNative) GetField6() []uint64 { return this.Field6 } func (this *NinRepNative) GetField7() []int32 { return this.Field7 } func (this *NinRepNative) GetField8() []int64 { return this.Field8 } func (this *NinRepNative) GetField9() []uint32 { return this.Field9 } func (this *NinRepNative) GetField10() []int32 { return this.Field10 } func (this *NinRepNative) GetField11() []uint64 { return this.Field11 } func (this *NinRepNative) GetField12() []int64 { return this.Field12 } func (this *NinRepNative) GetField13() []bool { return this.Field13 } func (this *NinRepNative) GetField14() []string { return this.Field14 } func (this *NinRepNative) GetField15() [][]byte { return this.Field15 } func NewNinRepNativeFromFace(that NinRepNativeFace) *NinRepNative { this := &NinRepNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepPackedNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool } func (this *NidRepPackedNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepPackedNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepPackedNativeFromFace(this) } func (this *NidRepPackedNative) GetField1() []float64 { return this.Field1 } func (this *NidRepPackedNative) GetField2() []float32 { return this.Field2 } func (this *NidRepPackedNative) GetField3() []int32 { return this.Field3 } func (this *NidRepPackedNative) GetField4() []int64 { return this.Field4 } func (this *NidRepPackedNative) GetField5() []uint32 { return this.Field5 } func (this *NidRepPackedNative) GetField6() []uint64 { return this.Field6 } func (this *NidRepPackedNative) GetField7() []int32 { return this.Field7 } func (this *NidRepPackedNative) GetField8() []int64 { return this.Field8 } func (this *NidRepPackedNative) GetField9() []uint32 { return this.Field9 } func (this *NidRepPackedNative) GetField10() []int32 { return this.Field10 } func (this *NidRepPackedNative) GetField11() []uint64 { return this.Field11 } func (this *NidRepPackedNative) GetField12() []int64 { return this.Field12 } func (this *NidRepPackedNative) GetField13() []bool { return this.Field13 } func NewNidRepPackedNativeFromFace(that NidRepPackedNativeFace) *NidRepPackedNative { this := &NidRepPackedNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() return this } type NinRepPackedNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool } func (this *NinRepPackedNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepPackedNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepPackedNativeFromFace(this) } func (this *NinRepPackedNative) GetField1() []float64 { return this.Field1 } func (this *NinRepPackedNative) GetField2() []float32 { return this.Field2 } func (this *NinRepPackedNative) GetField3() []int32 { return this.Field3 } func (this *NinRepPackedNative) GetField4() []int64 { return this.Field4 } func (this *NinRepPackedNative) GetField5() []uint32 { return this.Field5 } func (this *NinRepPackedNative) GetField6() []uint64 { return this.Field6 } func (this *NinRepPackedNative) GetField7() []int32 { return this.Field7 } func (this *NinRepPackedNative) GetField8() []int64 { return this.Field8 } func (this *NinRepPackedNative) GetField9() []uint32 { return this.Field9 } func (this *NinRepPackedNative) GetField10() []int32 { return this.Field10 } func (this *NinRepPackedNative) GetField11() []uint64 { return this.Field11 } func (this *NinRepPackedNative) GetField12() []int64 { return this.Field12 } func (this *NinRepPackedNative) GetField13() []bool { return this.Field13 } func NewNinRepPackedNativeFromFace(that NinRepPackedNativeFace) *NinRepPackedNative { this := &NinRepPackedNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() return this } type NidOptStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() float64 GetField2() float32 GetField3() NidOptNative GetField4() NinOptNative GetField6() uint64 GetField7() int32 GetField8() NidOptNative GetField13() bool GetField14() string GetField15() []byte } func (this *NidOptStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptStructFromFace(this) } func (this *NidOptStruct) GetField1() float64 { return this.Field1 } func (this *NidOptStruct) GetField2() float32 { return this.Field2 } func (this *NidOptStruct) GetField3() NidOptNative { return this.Field3 } func (this *NidOptStruct) GetField4() NinOptNative { return this.Field4 } func (this *NidOptStruct) GetField6() uint64 { return this.Field6 } func (this *NidOptStruct) GetField7() int32 { return this.Field7 } func (this *NidOptStruct) GetField8() NidOptNative { return this.Field8 } func (this *NidOptStruct) GetField13() bool { return this.Field13 } func (this *NidOptStruct) GetField14() string { return this.Field14 } func (this *NidOptStruct) GetField15() []byte { return this.Field15 } func NewNidOptStructFromFace(that NidOptStructFace) *NidOptStruct { this := &NidOptStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *NidOptNative GetField4() *NinOptNative GetField6() *uint64 GetField7() *int32 GetField8() *NidOptNative GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptStructFromFace(this) } func (this *NinOptStruct) GetField1() *float64 { return this.Field1 } func (this *NinOptStruct) GetField2() *float32 { return this.Field2 } func (this *NinOptStruct) GetField3() *NidOptNative { return this.Field3 } func (this *NinOptStruct) GetField4() *NinOptNative { return this.Field4 } func (this *NinOptStruct) GetField6() *uint64 { return this.Field6 } func (this *NinOptStruct) GetField7() *int32 { return this.Field7 } func (this *NinOptStruct) GetField8() *NidOptNative { return this.Field8 } func (this *NinOptStruct) GetField13() *bool { return this.Field13 } func (this *NinOptStruct) GetField14() *string { return this.Field14 } func (this *NinOptStruct) GetField15() []byte { return this.Field15 } func NewNinOptStructFromFace(that NinOptStructFace) *NinOptStruct { this := &NinOptStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []NidOptNative GetField4() []NinOptNative GetField6() []uint64 GetField7() []int32 GetField8() []NidOptNative GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NidRepStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepStructFromFace(this) } func (this *NidRepStruct) GetField1() []float64 { return this.Field1 } func (this *NidRepStruct) GetField2() []float32 { return this.Field2 } func (this *NidRepStruct) GetField3() []NidOptNative { return this.Field3 } func (this *NidRepStruct) GetField4() []NinOptNative { return this.Field4 } func (this *NidRepStruct) GetField6() []uint64 { return this.Field6 } func (this *NidRepStruct) GetField7() []int32 { return this.Field7 } func (this *NidRepStruct) GetField8() []NidOptNative { return this.Field8 } func (this *NidRepStruct) GetField13() []bool { return this.Field13 } func (this *NidRepStruct) GetField14() []string { return this.Field14 } func (this *NidRepStruct) GetField15() [][]byte { return this.Field15 } func NewNidRepStructFromFace(that NidRepStructFace) *NidRepStruct { this := &NidRepStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinRepStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []*NidOptNative GetField4() []*NinOptNative GetField6() []uint64 GetField7() []int32 GetField8() []*NidOptNative GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NinRepStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepStructFromFace(this) } func (this *NinRepStruct) GetField1() []float64 { return this.Field1 } func (this *NinRepStruct) GetField2() []float32 { return this.Field2 } func (this *NinRepStruct) GetField3() []*NidOptNative { return this.Field3 } func (this *NinRepStruct) GetField4() []*NinOptNative { return this.Field4 } func (this *NinRepStruct) GetField6() []uint64 { return this.Field6 } func (this *NinRepStruct) GetField7() []int32 { return this.Field7 } func (this *NinRepStruct) GetField8() []*NidOptNative { return this.Field8 } func (this *NinRepStruct) GetField13() []bool { return this.Field13 } func (this *NinRepStruct) GetField14() []string { return this.Field14 } func (this *NinRepStruct) GetField15() [][]byte { return this.Field15 } func NewNinRepStructFromFace(that NinRepStructFace) *NinRepStruct { this := &NinRepStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidEmbeddedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() NidOptNative GetField210() bool } func (this *NidEmbeddedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidEmbeddedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidEmbeddedStructFromFace(this) } func (this *NidEmbeddedStruct) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NidEmbeddedStruct) GetField200() NidOptNative { return this.Field200 } func (this *NidEmbeddedStruct) GetField210() bool { return this.Field210 } func NewNidEmbeddedStructFromFace(that NidEmbeddedStructFace) *NidEmbeddedStruct { this := &NidEmbeddedStruct{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NinEmbeddedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() *NidOptNative GetField210() *bool } func (this *NinEmbeddedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinEmbeddedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinEmbeddedStructFromFace(this) } func (this *NinEmbeddedStruct) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NinEmbeddedStruct) GetField200() *NidOptNative { return this.Field200 } func (this *NinEmbeddedStruct) GetField210() *bool { return this.Field210 } func NewNinEmbeddedStructFromFace(that NinEmbeddedStructFace) *NinEmbeddedStruct { this := &NinEmbeddedStruct{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NidNestedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() NidOptStruct GetField2() []NidRepStruct } func (this *NidNestedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidNestedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidNestedStructFromFace(this) } func (this *NidNestedStruct) GetField1() NidOptStruct { return this.Field1 } func (this *NidNestedStruct) GetField2() []NidRepStruct { return this.Field2 } func NewNidNestedStructFromFace(that NidNestedStructFace) *NidNestedStruct { this := &NidNestedStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() return this } type NinNestedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *NinOptStruct GetField2() []*NinRepStruct } func (this *NinNestedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinNestedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinNestedStructFromFace(this) } func (this *NinNestedStruct) GetField1() *NinOptStruct { return this.Field1 } func (this *NinNestedStruct) GetField2() []*NinRepStruct { return this.Field2 } func NewNinNestedStructFromFace(that NinNestedStructFace) *NinNestedStruct { this := &NinNestedStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() return this } type NidOptCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() Uuid GetValue() github_com_gogo_protobuf_test_custom.Uint128 } func (this *NidOptCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptCustomFromFace(this) } func (this *NidOptCustom) GetId() Uuid { return this.Id } func (this *NidOptCustom) GetValue() github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNidOptCustomFromFace(that NidOptCustomFace) *NidOptCustom { this := &NidOptCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type CustomDashFace interface { Proto() github_com_gogo_protobuf_proto.Message GetValue() *github_com_gogo_protobuf_test_custom_dash_type.Bytes } func (this *CustomDash) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomDash) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomDashFromFace(this) } func (this *CustomDash) GetValue() *github_com_gogo_protobuf_test_custom_dash_type.Bytes { return this.Value } func NewCustomDashFromFace(that CustomDashFace) *CustomDash { this := &CustomDash{} this.Value = that.GetValue() return this } type NinOptCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() *Uuid GetValue() *github_com_gogo_protobuf_test_custom.Uint128 } func (this *NinOptCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptCustomFromFace(this) } func (this *NinOptCustom) GetId() *Uuid { return this.Id } func (this *NinOptCustom) GetValue() *github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNinOptCustomFromFace(that NinOptCustomFace) *NinOptCustom { this := &NinOptCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NidRepCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() []Uuid GetValue() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *NidRepCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepCustomFromFace(this) } func (this *NidRepCustom) GetId() []Uuid { return this.Id } func (this *NidRepCustom) GetValue() []github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNidRepCustomFromFace(that NidRepCustomFace) *NidRepCustom { this := &NidRepCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NinRepCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() []Uuid GetValue() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *NinRepCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepCustomFromFace(this) } func (this *NinRepCustom) GetId() []Uuid { return this.Id } func (this *NinRepCustom) GetValue() []github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNinRepCustomFromFace(that NinRepCustomFace) *NinRepCustom { this := &NinRepCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NinOptNativeUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *int32 GetField4() *int64 GetField5() *uint32 GetField6() *uint64 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptNativeUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNativeUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNativeUnionFromFace(this) } func (this *NinOptNativeUnion) GetField1() *float64 { return this.Field1 } func (this *NinOptNativeUnion) GetField2() *float32 { return this.Field2 } func (this *NinOptNativeUnion) GetField3() *int32 { return this.Field3 } func (this *NinOptNativeUnion) GetField4() *int64 { return this.Field4 } func (this *NinOptNativeUnion) GetField5() *uint32 { return this.Field5 } func (this *NinOptNativeUnion) GetField6() *uint64 { return this.Field6 } func (this *NinOptNativeUnion) GetField13() *bool { return this.Field13 } func (this *NinOptNativeUnion) GetField14() *string { return this.Field14 } func (this *NinOptNativeUnion) GetField15() []byte { return this.Field15 } func NewNinOptNativeUnionFromFace(that NinOptNativeUnionFace) *NinOptNativeUnion { this := &NinOptNativeUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *NidOptNative GetField4() *NinOptNative GetField6() *uint64 GetField7() *int32 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptStructUnionFromFace(this) } func (this *NinOptStructUnion) GetField1() *float64 { return this.Field1 } func (this *NinOptStructUnion) GetField2() *float32 { return this.Field2 } func (this *NinOptStructUnion) GetField3() *NidOptNative { return this.Field3 } func (this *NinOptStructUnion) GetField4() *NinOptNative { return this.Field4 } func (this *NinOptStructUnion) GetField6() *uint64 { return this.Field6 } func (this *NinOptStructUnion) GetField7() *int32 { return this.Field7 } func (this *NinOptStructUnion) GetField13() *bool { return this.Field13 } func (this *NinOptStructUnion) GetField14() *string { return this.Field14 } func (this *NinOptStructUnion) GetField15() []byte { return this.Field15 } func NewNinOptStructUnionFromFace(that NinOptStructUnionFace) *NinOptStructUnion { this := &NinOptStructUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinEmbeddedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() *NinOptNative GetField210() *bool } func (this *NinEmbeddedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinEmbeddedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinEmbeddedStructUnionFromFace(this) } func (this *NinEmbeddedStructUnion) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NinEmbeddedStructUnion) GetField200() *NinOptNative { return this.Field200 } func (this *NinEmbeddedStructUnion) GetField210() *bool { return this.Field210 } func NewNinEmbeddedStructUnionFromFace(that NinEmbeddedStructUnionFace) *NinEmbeddedStructUnion { this := &NinEmbeddedStructUnion{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NinNestedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *NinOptNativeUnion GetField2() *NinOptStructUnion GetField3() *NinEmbeddedStructUnion } func (this *NinNestedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinNestedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinNestedStructUnionFromFace(this) } func (this *NinNestedStructUnion) GetField1() *NinOptNativeUnion { return this.Field1 } func (this *NinNestedStructUnion) GetField2() *NinOptStructUnion { return this.Field2 } func (this *NinNestedStructUnion) GetField3() *NinEmbeddedStructUnion { return this.Field3 } func NewNinNestedStructUnionFromFace(that NinNestedStructUnionFace) *NinNestedStructUnion { this := &NinNestedStructUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type TreeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetOr() *OrBranch GetAnd() *AndBranch GetLeaf() *Leaf } func (this *Tree) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Tree) TestProto() github_com_gogo_protobuf_proto.Message { return NewTreeFromFace(this) } func (this *Tree) GetOr() *OrBranch { return this.Or } func (this *Tree) GetAnd() *AndBranch { return this.And } func (this *Tree) GetLeaf() *Leaf { return this.Leaf } func NewTreeFromFace(that TreeFace) *Tree { this := &Tree{} this.Or = that.GetOr() this.And = that.GetAnd() this.Leaf = that.GetLeaf() return this } type OrBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() Tree GetRight() Tree } func (this *OrBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *OrBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewOrBranchFromFace(this) } func (this *OrBranch) GetLeft() Tree { return this.Left } func (this *OrBranch) GetRight() Tree { return this.Right } func NewOrBranchFromFace(that OrBranchFace) *OrBranch { this := &OrBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type AndBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() Tree GetRight() Tree } func (this *AndBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AndBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewAndBranchFromFace(this) } func (this *AndBranch) GetLeft() Tree { return this.Left } func (this *AndBranch) GetRight() Tree { return this.Right } func NewAndBranchFromFace(that AndBranchFace) *AndBranch { this := &AndBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type LeafFace interface { Proto() github_com_gogo_protobuf_proto.Message GetValue() int64 GetStrValue() string } func (this *Leaf) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Leaf) TestProto() github_com_gogo_protobuf_proto.Message { return NewLeafFromFace(this) } func (this *Leaf) GetValue() int64 { return this.Value } func (this *Leaf) GetStrValue() string { return this.StrValue } func NewLeafFromFace(that LeafFace) *Leaf { this := &Leaf{} this.Value = that.GetValue() this.StrValue = that.GetStrValue() return this } type DeepTreeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDown() *ADeepBranch GetAnd() *AndDeepBranch GetLeaf() *DeepLeaf } func (this *DeepTree) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *DeepTree) TestProto() github_com_gogo_protobuf_proto.Message { return NewDeepTreeFromFace(this) } func (this *DeepTree) GetDown() *ADeepBranch { return this.Down } func (this *DeepTree) GetAnd() *AndDeepBranch { return this.And } func (this *DeepTree) GetLeaf() *DeepLeaf { return this.Leaf } func NewDeepTreeFromFace(that DeepTreeFace) *DeepTree { this := &DeepTree{} this.Down = that.GetDown() this.And = that.GetAnd() this.Leaf = that.GetLeaf() return this } type ADeepBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDown() DeepTree } func (this *ADeepBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ADeepBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewADeepBranchFromFace(this) } func (this *ADeepBranch) GetDown() DeepTree { return this.Down } func NewADeepBranchFromFace(that ADeepBranchFace) *ADeepBranch { this := &ADeepBranch{} this.Down = that.GetDown() return this } type AndDeepBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() DeepTree GetRight() DeepTree } func (this *AndDeepBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AndDeepBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewAndDeepBranchFromFace(this) } func (this *AndDeepBranch) GetLeft() DeepTree { return this.Left } func (this *AndDeepBranch) GetRight() DeepTree { return this.Right } func NewAndDeepBranchFromFace(that AndDeepBranchFace) *AndDeepBranch { this := &AndDeepBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type DeepLeafFace interface { Proto() github_com_gogo_protobuf_proto.Message GetTree() Tree } func (this *DeepLeaf) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *DeepLeaf) TestProto() github_com_gogo_protobuf_proto.Message { return NewDeepLeafFromFace(this) } func (this *DeepLeaf) GetTree() Tree { return this.Tree } func NewDeepLeafFromFace(that DeepLeafFace) *DeepLeaf { this := &DeepLeaf{} this.Tree = that.GetTree() return this } type NilFace interface { Proto() github_com_gogo_protobuf_proto.Message } func (this *Nil) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Nil) TestProto() github_com_gogo_protobuf_proto.Message { return NewNilFromFace(this) } func NewNilFromFace(that NilFace) *Nil { this := &Nil{} return this } type NidOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() TheTestEnum } func (this *NidOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptEnumFromFace(this) } func (this *NidOptEnum) GetField1() TheTestEnum { return this.Field1 } func NewNidOptEnumFromFace(that NidOptEnumFace) *NidOptEnum { this := &NidOptEnum{} this.Field1 = that.GetField1() return this } type NinOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *TheTestEnum GetField2() *YetAnotherTestEnum GetField3() *YetYetAnotherTestEnum } func (this *NinOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptEnumFromFace(this) } func (this *NinOptEnum) GetField1() *TheTestEnum { return this.Field1 } func (this *NinOptEnum) GetField2() *YetAnotherTestEnum { return this.Field2 } func (this *NinOptEnum) GetField3() *YetYetAnotherTestEnum { return this.Field3 } func NewNinOptEnumFromFace(that NinOptEnumFace) *NinOptEnum { this := &NinOptEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type NidRepEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []TheTestEnum GetField2() []YetAnotherTestEnum GetField3() []YetYetAnotherTestEnum } func (this *NidRepEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepEnumFromFace(this) } func (this *NidRepEnum) GetField1() []TheTestEnum { return this.Field1 } func (this *NidRepEnum) GetField2() []YetAnotherTestEnum { return this.Field2 } func (this *NidRepEnum) GetField3() []YetYetAnotherTestEnum { return this.Field3 } func NewNidRepEnumFromFace(that NidRepEnumFace) *NidRepEnum { this := &NidRepEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type NinRepEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []TheTestEnum GetField2() []YetAnotherTestEnum GetField3() []YetYetAnotherTestEnum } func (this *NinRepEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepEnumFromFace(this) } func (this *NinRepEnum) GetField1() []TheTestEnum { return this.Field1 } func (this *NinRepEnum) GetField2() []YetAnotherTestEnum { return this.Field2 } func (this *NinRepEnum) GetField3() []YetYetAnotherTestEnum { return this.Field3 } func NewNinRepEnumFromFace(that NinRepEnumFace) *NinRepEnum { this := &NinRepEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type AnotherNinOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *AnotherTestEnum GetField2() *YetAnotherTestEnum GetField3() *YetYetAnotherTestEnum } func (this *AnotherNinOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AnotherNinOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewAnotherNinOptEnumFromFace(this) } func (this *AnotherNinOptEnum) GetField1() *AnotherTestEnum { return this.Field1 } func (this *AnotherNinOptEnum) GetField2() *YetAnotherTestEnum { return this.Field2 } func (this *AnotherNinOptEnum) GetField3() *YetYetAnotherTestEnum { return this.Field3 } func NewAnotherNinOptEnumFromFace(that AnotherNinOptEnumFace) *AnotherNinOptEnum { this := &AnotherNinOptEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type TimerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetTime1() int64 GetTime2() int64 GetData() []byte } func (this *Timer) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Timer) TestProto() github_com_gogo_protobuf_proto.Message { return NewTimerFromFace(this) } func (this *Timer) GetTime1() int64 { return this.Time1 } func (this *Timer) GetTime2() int64 { return this.Time2 } func (this *Timer) GetData() []byte { return this.Data } func NewTimerFromFace(that TimerFace) *Timer { this := &Timer{} this.Time1 = that.GetTime1() this.Time2 = that.GetTime2() this.Data = that.GetData() return this } type NestedDefinitionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *int64 GetEnumField() *NestedDefinition_NestedEnum GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg GetNM() *NestedDefinition_NestedMessage } func (this *NestedDefinition) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinitionFromFace(this) } func (this *NestedDefinition) GetField1() *int64 { return this.Field1 } func (this *NestedDefinition) GetEnumField() *NestedDefinition_NestedEnum { return this.EnumField } func (this *NestedDefinition) GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.NNM } func (this *NestedDefinition) GetNM() *NestedDefinition_NestedMessage { return this.NM } func NewNestedDefinitionFromFace(that NestedDefinitionFace) *NestedDefinition { this := &NestedDefinition{} this.Field1 = that.GetField1() this.EnumField = that.GetEnumField() this.NNM = that.GetNNM() this.NM = that.GetNM() return this } type NestedDefinition_NestedMessageFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedField1() *uint64 GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg } func (this *NestedDefinition_NestedMessage) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition_NestedMessage) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinition_NestedMessageFromFace(this) } func (this *NestedDefinition_NestedMessage) GetNestedField1() *uint64 { return this.NestedField1 } func (this *NestedDefinition_NestedMessage) GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.NNM } func NewNestedDefinition_NestedMessageFromFace(that NestedDefinition_NestedMessageFace) *NestedDefinition_NestedMessage { this := &NestedDefinition_NestedMessage{} this.NestedField1 = that.GetNestedField1() this.NNM = that.GetNNM() return this } type NestedDefinition_NestedMessage_NestedNestedMsgFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedNestedField1() *string } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinition_NestedMessage_NestedNestedMsgFromFace(this) } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) GetNestedNestedField1() *string { return this.NestedNestedField1 } func NewNestedDefinition_NestedMessage_NestedNestedMsgFromFace(that NestedDefinition_NestedMessage_NestedNestedMsgFace) *NestedDefinition_NestedMessage_NestedNestedMsg { this := &NestedDefinition_NestedMessage_NestedNestedMsg{} this.NestedNestedField1 = that.GetNestedNestedField1() return this } type NestedScopeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetA() *NestedDefinition_NestedMessage_NestedNestedMsg GetB() *NestedDefinition_NestedEnum GetC() *NestedDefinition_NestedMessage } func (this *NestedScope) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedScope) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedScopeFromFace(this) } func (this *NestedScope) GetA() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.A } func (this *NestedScope) GetB() *NestedDefinition_NestedEnum { return this.B } func (this *NestedScope) GetC() *NestedDefinition_NestedMessage { return this.C } func NewNestedScopeFromFace(that NestedScopeFace) *NestedScope { this := &NestedScope{} this.A = that.GetA() this.B = that.GetB() this.C = that.GetC() return this } type CustomContainerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetCustomStruct() NidOptCustom } func (this *CustomContainer) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomContainer) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomContainerFromFace(this) } func (this *CustomContainer) GetCustomStruct() NidOptCustom { return this.CustomStruct } func NewCustomContainerFromFace(that CustomContainerFace) *CustomContainer { this := &CustomContainer{} this.CustomStruct = that.GetCustomStruct() return this } type CustomNameNidOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() float64 GetFieldB() float32 GetFieldC() int32 GetFieldD() int64 GetFieldE() uint32 GetFieldF() uint64 GetFieldG() int32 GetFieldH() int64 GetFieldI() uint32 GetFieldJ() int32 GetFieldK() uint64 GetFieldL() int64 GetFieldM() bool GetFieldN() string GetFieldO() []byte } func (this *CustomNameNidOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNidOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNidOptNativeFromFace(this) } func (this *CustomNameNidOptNative) GetFieldA() float64 { return this.FieldA } func (this *CustomNameNidOptNative) GetFieldB() float32 { return this.FieldB } func (this *CustomNameNidOptNative) GetFieldC() int32 { return this.FieldC } func (this *CustomNameNidOptNative) GetFieldD() int64 { return this.FieldD } func (this *CustomNameNidOptNative) GetFieldE() uint32 { return this.FieldE } func (this *CustomNameNidOptNative) GetFieldF() uint64 { return this.FieldF } func (this *CustomNameNidOptNative) GetFieldG() int32 { return this.FieldG } func (this *CustomNameNidOptNative) GetFieldH() int64 { return this.FieldH } func (this *CustomNameNidOptNative) GetFieldI() uint32 { return this.FieldI } func (this *CustomNameNidOptNative) GetFieldJ() int32 { return this.FieldJ } func (this *CustomNameNidOptNative) GetFieldK() uint64 { return this.FieldK } func (this *CustomNameNidOptNative) GetFieldL() int64 { return this.FieldL } func (this *CustomNameNidOptNative) GetFieldM() bool { return this.FieldM } func (this *CustomNameNidOptNative) GetFieldN() string { return this.FieldN } func (this *CustomNameNidOptNative) GetFieldO() []byte { return this.FieldO } func NewCustomNameNidOptNativeFromFace(that CustomNameNidOptNativeFace) *CustomNameNidOptNative { this := &CustomNameNidOptNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FieldL = that.GetFieldL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *float64 GetFieldB() *float32 GetFieldC() *int32 GetFieldD() *int64 GetFieldE() *uint32 GetFieldF() *uint64 GetFieldG() *int32 GetFieldH() *int64 GetFieldI() *uint32 GetFieldJ() *int32 GetFieldK() *uint64 GetFielL() *int64 GetFieldM() *bool GetFieldN() *string GetFieldO() []byte } func (this *CustomNameNinOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinOptNativeFromFace(this) } func (this *CustomNameNinOptNative) GetFieldA() *float64 { return this.FieldA } func (this *CustomNameNinOptNative) GetFieldB() *float32 { return this.FieldB } func (this *CustomNameNinOptNative) GetFieldC() *int32 { return this.FieldC } func (this *CustomNameNinOptNative) GetFieldD() *int64 { return this.FieldD } func (this *CustomNameNinOptNative) GetFieldE() *uint32 { return this.FieldE } func (this *CustomNameNinOptNative) GetFieldF() *uint64 { return this.FieldF } func (this *CustomNameNinOptNative) GetFieldG() *int32 { return this.FieldG } func (this *CustomNameNinOptNative) GetFieldH() *int64 { return this.FieldH } func (this *CustomNameNinOptNative) GetFieldI() *uint32 { return this.FieldI } func (this *CustomNameNinOptNative) GetFieldJ() *int32 { return this.FieldJ } func (this *CustomNameNinOptNative) GetFieldK() *uint64 { return this.FieldK } func (this *CustomNameNinOptNative) GetFielL() *int64 { return this.FielL } func (this *CustomNameNinOptNative) GetFieldM() *bool { return this.FieldM } func (this *CustomNameNinOptNative) GetFieldN() *string { return this.FieldN } func (this *CustomNameNinOptNative) GetFieldO() []byte { return this.FieldO } func NewCustomNameNinOptNativeFromFace(that CustomNameNinOptNativeFace) *CustomNameNinOptNative { this := &CustomNameNinOptNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FielL = that.GetFielL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() []float64 GetFieldB() []float32 GetFieldC() []int32 GetFieldD() []int64 GetFieldE() []uint32 GetFieldF() []uint64 GetFieldG() []int32 GetFieldH() []int64 GetFieldI() []uint32 GetFieldJ() []int32 GetFieldK() []uint64 GetFieldL() []int64 GetFieldM() []bool GetFieldN() []string GetFieldO() [][]byte } func (this *CustomNameNinRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinRepNativeFromFace(this) } func (this *CustomNameNinRepNative) GetFieldA() []float64 { return this.FieldA } func (this *CustomNameNinRepNative) GetFieldB() []float32 { return this.FieldB } func (this *CustomNameNinRepNative) GetFieldC() []int32 { return this.FieldC } func (this *CustomNameNinRepNative) GetFieldD() []int64 { return this.FieldD } func (this *CustomNameNinRepNative) GetFieldE() []uint32 { return this.FieldE } func (this *CustomNameNinRepNative) GetFieldF() []uint64 { return this.FieldF } func (this *CustomNameNinRepNative) GetFieldG() []int32 { return this.FieldG } func (this *CustomNameNinRepNative) GetFieldH() []int64 { return this.FieldH } func (this *CustomNameNinRepNative) GetFieldI() []uint32 { return this.FieldI } func (this *CustomNameNinRepNative) GetFieldJ() []int32 { return this.FieldJ } func (this *CustomNameNinRepNative) GetFieldK() []uint64 { return this.FieldK } func (this *CustomNameNinRepNative) GetFieldL() []int64 { return this.FieldL } func (this *CustomNameNinRepNative) GetFieldM() []bool { return this.FieldM } func (this *CustomNameNinRepNative) GetFieldN() []string { return this.FieldN } func (this *CustomNameNinRepNative) GetFieldO() [][]byte { return this.FieldO } func NewCustomNameNinRepNativeFromFace(that CustomNameNinRepNativeFace) *CustomNameNinRepNative { this := &CustomNameNinRepNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FieldL = that.GetFieldL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *float64 GetFieldB() *float32 GetFieldC() *NidOptNative GetFieldD() []*NinOptNative GetFieldE() *uint64 GetFieldF() *int32 GetFieldG() *NidOptNative GetFieldH() *bool GetFieldI() *string GetFieldJ() []byte } func (this *CustomNameNinStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinStructFromFace(this) } func (this *CustomNameNinStruct) GetFieldA() *float64 { return this.FieldA } func (this *CustomNameNinStruct) GetFieldB() *float32 { return this.FieldB } func (this *CustomNameNinStruct) GetFieldC() *NidOptNative { return this.FieldC } func (this *CustomNameNinStruct) GetFieldD() []*NinOptNative { return this.FieldD } func (this *CustomNameNinStruct) GetFieldE() *uint64 { return this.FieldE } func (this *CustomNameNinStruct) GetFieldF() *int32 { return this.FieldF } func (this *CustomNameNinStruct) GetFieldG() *NidOptNative { return this.FieldG } func (this *CustomNameNinStruct) GetFieldH() *bool { return this.FieldH } func (this *CustomNameNinStruct) GetFieldI() *string { return this.FieldI } func (this *CustomNameNinStruct) GetFieldJ() []byte { return this.FieldJ } func NewCustomNameNinStructFromFace(that CustomNameNinStructFace) *CustomNameNinStruct { this := &CustomNameNinStruct{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() return this } type CustomNameCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *Uuid GetFieldB() *github_com_gogo_protobuf_test_custom.Uint128 GetFieldC() []Uuid GetFieldD() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *CustomNameCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameCustomTypeFromFace(this) } func (this *CustomNameCustomType) GetFieldA() *Uuid { return this.FieldA } func (this *CustomNameCustomType) GetFieldB() *github_com_gogo_protobuf_test_custom.Uint128 { return this.FieldB } func (this *CustomNameCustomType) GetFieldC() []Uuid { return this.FieldC } func (this *CustomNameCustomType) GetFieldD() []github_com_gogo_protobuf_test_custom.Uint128 { return this.FieldD } func NewCustomNameCustomTypeFromFace(that CustomNameCustomTypeFace) *CustomNameCustomType { this := &CustomNameCustomType{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() return this } type CustomNameNinEmbeddedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetFieldA() *NinOptNative GetFieldB() *bool } func (this *CustomNameNinEmbeddedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinEmbeddedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinEmbeddedStructUnionFromFace(this) } func (this *CustomNameNinEmbeddedStructUnion) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *CustomNameNinEmbeddedStructUnion) GetFieldA() *NinOptNative { return this.FieldA } func (this *CustomNameNinEmbeddedStructUnion) GetFieldB() *bool { return this.FieldB } func NewCustomNameNinEmbeddedStructUnionFromFace(that CustomNameNinEmbeddedStructUnionFace) *CustomNameNinEmbeddedStructUnion { this := &CustomNameNinEmbeddedStructUnion{} this.NidOptNative = that.GetNidOptNative() this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() return this } type CustomNameEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *TheTestEnum GetFieldB() []TheTestEnum } func (this *CustomNameEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameEnumFromFace(this) } func (this *CustomNameEnum) GetFieldA() *TheTestEnum { return this.FieldA } func (this *CustomNameEnum) GetFieldB() []TheTestEnum { return this.FieldB } func NewCustomNameEnumFromFace(that CustomNameEnumFace) *CustomNameEnum { this := &CustomNameEnum{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() return this } type UnrecognizedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *string } func (this *Unrecognized) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Unrecognized) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedFromFace(this) } func (this *Unrecognized) GetField1() *string { return this.Field1 } func NewUnrecognizedFromFace(that UnrecognizedFace) *Unrecognized { this := &Unrecognized{} this.Field1 = that.GetField1() return this } type UnrecognizedWithInnerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetEmbedded() []*UnrecognizedWithInner_Inner GetField2() *string } func (this *UnrecognizedWithInner) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithInner) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithInnerFromFace(this) } func (this *UnrecognizedWithInner) GetEmbedded() []*UnrecognizedWithInner_Inner { return this.Embedded } func (this *UnrecognizedWithInner) GetField2() *string { return this.Field2 } func NewUnrecognizedWithInnerFromFace(that UnrecognizedWithInnerFace) *UnrecognizedWithInner { this := &UnrecognizedWithInner{} this.Embedded = that.GetEmbedded() this.Field2 = that.GetField2() return this } type UnrecognizedWithInner_InnerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *uint32 } func (this *UnrecognizedWithInner_Inner) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithInner_Inner) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithInner_InnerFromFace(this) } func (this *UnrecognizedWithInner_Inner) GetField1() *uint32 { return this.Field1 } func NewUnrecognizedWithInner_InnerFromFace(that UnrecognizedWithInner_InnerFace) *UnrecognizedWithInner_Inner { this := &UnrecognizedWithInner_Inner{} this.Field1 = that.GetField1() return this } type UnrecognizedWithEmbedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetUnrecognizedWithEmbed_Embedded() UnrecognizedWithEmbed_Embedded GetField2() *string } func (this *UnrecognizedWithEmbed) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithEmbed) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithEmbedFromFace(this) } func (this *UnrecognizedWithEmbed) GetUnrecognizedWithEmbed_Embedded() UnrecognizedWithEmbed_Embedded { return this.UnrecognizedWithEmbed_Embedded } func (this *UnrecognizedWithEmbed) GetField2() *string { return this.Field2 } func NewUnrecognizedWithEmbedFromFace(that UnrecognizedWithEmbedFace) *UnrecognizedWithEmbed { this := &UnrecognizedWithEmbed{} this.UnrecognizedWithEmbed_Embedded = that.GetUnrecognizedWithEmbed_Embedded() this.Field2 = that.GetField2() return this } type UnrecognizedWithEmbed_EmbeddedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *uint32 } func (this *UnrecognizedWithEmbed_Embedded) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithEmbed_Embedded) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithEmbed_EmbeddedFromFace(this) } func (this *UnrecognizedWithEmbed_Embedded) GetField1() *uint32 { return this.Field1 } func NewUnrecognizedWithEmbed_EmbeddedFromFace(that UnrecognizedWithEmbed_EmbeddedFace) *UnrecognizedWithEmbed_Embedded { this := &UnrecognizedWithEmbed_Embedded{} this.Field1 = that.GetField1() return this } type NodeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLabel() *string GetChildren() []*Node } func (this *Node) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Node) TestProto() github_com_gogo_protobuf_proto.Message { return NewNodeFromFace(this) } func (this *Node) GetLabel() *string { return this.Label } func (this *Node) GetChildren() []*Node { return this.Children } func NewNodeFromFace(that NodeFace) *Node { this := &Node{} this.Label = that.GetLabel() this.Children = that.GetChildren() return this } type NonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *T } func (this *NonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNonByteCustomTypeFromFace(this) } func (this *NonByteCustomType) GetField1() *T { return this.Field1 } func NewNonByteCustomTypeFromFace(that NonByteCustomTypeFace) *NonByteCustomType { this := &NonByteCustomType{} this.Field1 = that.GetField1() return this } type NidOptNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() T } func (this *NidOptNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptNonByteCustomTypeFromFace(this) } func (this *NidOptNonByteCustomType) GetField1() T { return this.Field1 } func NewNidOptNonByteCustomTypeFromFace(that NidOptNonByteCustomTypeFace) *NidOptNonByteCustomType { this := &NidOptNonByteCustomType{} this.Field1 = that.GetField1() return this } type NinOptNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *T } func (this *NinOptNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNonByteCustomTypeFromFace(this) } func (this *NinOptNonByteCustomType) GetField1() *T { return this.Field1 } func NewNinOptNonByteCustomTypeFromFace(that NinOptNonByteCustomTypeFace) *NinOptNonByteCustomType { this := &NinOptNonByteCustomType{} this.Field1 = that.GetField1() return this } type NidRepNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []T } func (this *NidRepNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepNonByteCustomTypeFromFace(this) } func (this *NidRepNonByteCustomType) GetField1() []T { return this.Field1 } func NewNidRepNonByteCustomTypeFromFace(that NidRepNonByteCustomTypeFace) *NidRepNonByteCustomType { this := &NidRepNonByteCustomType{} this.Field1 = that.GetField1() return this } type NinRepNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []T } func (this *NinRepNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepNonByteCustomTypeFromFace(this) } func (this *NinRepNonByteCustomType) GetField1() []T { return this.Field1 } func NewNinRepNonByteCustomTypeFromFace(that NinRepNonByteCustomTypeFace) *NinRepNonByteCustomType { this := &NinRepNonByteCustomType{} this.Field1 = that.GetField1() return this } type ProtoTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField2() *string } func (this *ProtoType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ProtoType) TestProto() github_com_gogo_protobuf_proto.Message { return NewProtoTypeFromFace(this) } func (this *ProtoType) GetField2() *string { return this.Field2 } func NewProtoTypeFromFace(that ProtoTypeFace) *ProtoType { this := &ProtoType{} this.Field2 = that.GetField2() return this } func (this *NidOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NidOptNative{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinOptNative{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+valueToGoStringThetest(this.Field8, "int64")+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+valueToGoStringThetest(this.Field9, "uint32")+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+valueToGoStringThetest(this.Field10, "int32")+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+valueToGoStringThetest(this.Field11, "uint64")+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+valueToGoStringThetest(this.Field12, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NidRepNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinRepNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepPackedNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 17) s = append(s, "&test.NidRepPackedNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepPackedNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 17) s = append(s, "&test.NinRepPackedNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NidOptStruct{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") s = append(s, "Field3: "+strings.Replace(this.Field3.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field4: "+strings.Replace(this.Field4.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") s = append(s, "Field8: "+strings.Replace(this.Field8.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NinOptStruct{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NidRepStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { vs := make([]*NidOptNative, len(this.Field3)) for i := range vs { vs[i] = &this.Field3[i] } s = append(s, "Field3: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field4 != nil { vs := make([]*NinOptNative, len(this.Field4)) for i := range vs { vs[i] = &this.Field4[i] } s = append(s, "Field4: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { vs := make([]*NidOptNative, len(this.Field8)) for i := range vs { vs[i] = &this.Field8[i] } s = append(s, "Field8: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NinRepStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidEmbeddedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NidEmbeddedStruct{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } s = append(s, "Field200: "+strings.Replace(this.Field200.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field210: "+fmt.Sprintf("%#v", this.Field210)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinEmbeddedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinEmbeddedStruct{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.Field200 != nil { s = append(s, "Field200: "+fmt.Sprintf("%#v", this.Field200)+",\n") } if this.Field210 != nil { s = append(s, "Field210: "+valueToGoStringThetest(this.Field210, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidNestedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidNestedStruct{") s = append(s, "Field1: "+strings.Replace(this.Field1.GoString(), `&`, ``, 1)+",\n") if this.Field2 != nil { vs := make([]*NidRepStruct, len(this.Field2)) for i := range vs { vs[i] = &this.Field2[i] } s = append(s, "Field2: "+fmt.Sprintf("%#v", vs)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinNestedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinNestedStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidOptCustom{") s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomDash) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.CustomDash{") if this.Value != nil { s = append(s, "Value: "+valueToGoStringThetest(this.Value, "github_com_gogo_protobuf_test_custom_dash_type.Bytes")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinOptCustom{") if this.Id != nil { s = append(s, "Id: "+valueToGoStringThetest(this.Id, "Uuid")+",\n") } if this.Value != nil { s = append(s, "Value: "+valueToGoStringThetest(this.Value, "github_com_gogo_protobuf_test_custom.Uint128")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidRepCustom{") if this.Id != nil { s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") } if this.Value != nil { s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinRepCustom{") if this.Id != nil { s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") } if this.Value != nil { s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNativeUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 13) s = append(s, "&test.NinOptNativeUnion{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 13) s = append(s, "&test.NinOptStructUnion{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinEmbeddedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinEmbeddedStructUnion{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.Field200 != nil { s = append(s, "Field200: "+fmt.Sprintf("%#v", this.Field200)+",\n") } if this.Field210 != nil { s = append(s, "Field210: "+valueToGoStringThetest(this.Field210, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinNestedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinNestedStructUnion{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Tree) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.Tree{") if this.Or != nil { s = append(s, "Or: "+fmt.Sprintf("%#v", this.Or)+",\n") } if this.And != nil { s = append(s, "And: "+fmt.Sprintf("%#v", this.And)+",\n") } if this.Leaf != nil { s = append(s, "Leaf: "+fmt.Sprintf("%#v", this.Leaf)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OrBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.OrBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AndBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.AndBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Leaf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.Leaf{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "StrValue: "+fmt.Sprintf("%#v", this.StrValue)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DeepTree) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.DeepTree{") if this.Down != nil { s = append(s, "Down: "+fmt.Sprintf("%#v", this.Down)+",\n") } if this.And != nil { s = append(s, "And: "+fmt.Sprintf("%#v", this.And)+",\n") } if this.Leaf != nil { s = append(s, "Leaf: "+fmt.Sprintf("%#v", this.Leaf)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ADeepBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.ADeepBranch{") s = append(s, "Down: "+strings.Replace(this.Down.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AndDeepBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.AndDeepBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DeepLeaf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.DeepLeaf{") s = append(s, "Tree: "+strings.Replace(this.Tree.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Nil) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&test.Nil{") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidOptEnum{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinOptEnum{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "TheTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NidRepEnum{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinRepEnum{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptEnumDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinOptEnumDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "TheTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AnotherNinOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.AnotherNinOptEnum{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "AnotherTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AnotherNinOptEnumDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.AnotherNinOptEnumDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "AnotherTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Timer) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.Timer{") s = append(s, "Time1: "+fmt.Sprintf("%#v", this.Time1)+",\n") s = append(s, "Time2: "+fmt.Sprintf("%#v", this.Time2)+",\n") s = append(s, "Data: "+fmt.Sprintf("%#v", this.Data)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MyExtendable) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.MyExtendable{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringThetest(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OtherExtenable) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.OtherExtenable{") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "int64")+",\n") } if this.M != nil { s = append(s, "M: "+fmt.Sprintf("%#v", this.M)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringThetest(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&test.NestedDefinition{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } if this.EnumField != nil { s = append(s, "EnumField: "+valueToGoStringThetest(this.EnumField, "NestedDefinition_NestedEnum")+",\n") } if this.NNM != nil { s = append(s, "NNM: "+fmt.Sprintf("%#v", this.NNM)+",\n") } if this.NM != nil { s = append(s, "NM: "+fmt.Sprintf("%#v", this.NM)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition_NestedMessage) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NestedDefinition_NestedMessage{") if this.NestedField1 != nil { s = append(s, "NestedField1: "+valueToGoStringThetest(this.NestedField1, "uint64")+",\n") } if this.NNM != nil { s = append(s, "NNM: "+fmt.Sprintf("%#v", this.NNM)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NestedDefinition_NestedMessage_NestedNestedMsg{") if this.NestedNestedField1 != nil { s = append(s, "NestedNestedField1: "+valueToGoStringThetest(this.NestedNestedField1, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedScope) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NestedScope{") if this.A != nil { s = append(s, "A: "+fmt.Sprintf("%#v", this.A)+",\n") } if this.B != nil { s = append(s, "B: "+valueToGoStringThetest(this.B, "NestedDefinition_NestedEnum")+",\n") } if this.C != nil { s = append(s, "C: "+fmt.Sprintf("%#v", this.C)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNativeDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinOptNativeDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+valueToGoStringThetest(this.Field8, "int64")+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+valueToGoStringThetest(this.Field9, "uint32")+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+valueToGoStringThetest(this.Field10, "int32")+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+valueToGoStringThetest(this.Field11, "uint64")+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+valueToGoStringThetest(this.Field12, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomContainer) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.CustomContainer{") s = append(s, "CustomStruct: "+strings.Replace(this.CustomStruct.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNidOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNidOptNative{") s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") s = append(s, "FieldE: "+fmt.Sprintf("%#v", this.FieldE)+",\n") s = append(s, "FieldF: "+fmt.Sprintf("%#v", this.FieldF)+",\n") s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") s = append(s, "FieldH: "+fmt.Sprintf("%#v", this.FieldH)+",\n") s = append(s, "FieldI: "+fmt.Sprintf("%#v", this.FieldI)+",\n") s = append(s, "FieldJ: "+fmt.Sprintf("%#v", this.FieldJ)+",\n") s = append(s, "FieldK: "+fmt.Sprintf("%#v", this.FieldK)+",\n") s = append(s, "FieldL: "+fmt.Sprintf("%#v", this.FieldL)+",\n") s = append(s, "FieldM: "+fmt.Sprintf("%#v", this.FieldM)+",\n") s = append(s, "FieldN: "+fmt.Sprintf("%#v", this.FieldN)+",\n") s = append(s, "FieldO: "+fmt.Sprintf("%#v", this.FieldO)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNinOptNative{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "float64")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "float32")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+valueToGoStringThetest(this.FieldC, "int32")+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+valueToGoStringThetest(this.FieldD, "int64")+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+valueToGoStringThetest(this.FieldE, "uint32")+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+valueToGoStringThetest(this.FieldF, "uint64")+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+valueToGoStringThetest(this.FieldG, "int32")+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+valueToGoStringThetest(this.FieldH, "int64")+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+valueToGoStringThetest(this.FieldI, "uint32")+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+valueToGoStringThetest(this.FieldJ, "int32")+",\n") } if this.FieldK != nil { s = append(s, "FieldK: "+valueToGoStringThetest(this.FieldK, "uint64")+",\n") } if this.FielL != nil { s = append(s, "FielL: "+valueToGoStringThetest(this.FielL, "int64")+",\n") } if this.FieldM != nil { s = append(s, "FieldM: "+valueToGoStringThetest(this.FieldM, "bool")+",\n") } if this.FieldN != nil { s = append(s, "FieldN: "+valueToGoStringThetest(this.FieldN, "string")+",\n") } if this.FieldO != nil { s = append(s, "FieldO: "+valueToGoStringThetest(this.FieldO, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNinRepNative{") if this.FieldA != nil { s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+fmt.Sprintf("%#v", this.FieldE)+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+fmt.Sprintf("%#v", this.FieldF)+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+fmt.Sprintf("%#v", this.FieldH)+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+fmt.Sprintf("%#v", this.FieldI)+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+fmt.Sprintf("%#v", this.FieldJ)+",\n") } if this.FieldK != nil { s = append(s, "FieldK: "+fmt.Sprintf("%#v", this.FieldK)+",\n") } if this.FieldL != nil { s = append(s, "FieldL: "+fmt.Sprintf("%#v", this.FieldL)+",\n") } if this.FieldM != nil { s = append(s, "FieldM: "+fmt.Sprintf("%#v", this.FieldM)+",\n") } if this.FieldN != nil { s = append(s, "FieldN: "+fmt.Sprintf("%#v", this.FieldN)+",\n") } if this.FieldO != nil { s = append(s, "FieldO: "+fmt.Sprintf("%#v", this.FieldO)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.CustomNameNinStruct{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "float64")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "float32")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+valueToGoStringThetest(this.FieldE, "uint64")+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+valueToGoStringThetest(this.FieldF, "int32")+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+valueToGoStringThetest(this.FieldH, "bool")+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+valueToGoStringThetest(this.FieldI, "string")+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+valueToGoStringThetest(this.FieldJ, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&test.CustomNameCustomType{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "Uuid")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "github_com_gogo_protobuf_test_custom.Uint128")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinEmbeddedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.CustomNameNinEmbeddedStructUnion{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.FieldA != nil { s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.CustomNameEnum{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "TheTestEnum")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NoExtensionsMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NoExtensionsMap{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } if this.XXX_extensions != nil { s = append(s, "XXX_extensions: "+fmt.Sprintf("%#v", this.XXX_extensions)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Unrecognized) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.Unrecognized{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "string")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithInner) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.UnrecognizedWithInner{") if this.Embedded != nil { s = append(s, "Embedded: "+fmt.Sprintf("%#v", this.Embedded)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithInner_Inner) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.UnrecognizedWithInner_Inner{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithEmbed) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.UnrecognizedWithEmbed{") s = append(s, "UnrecognizedWithEmbed_Embedded: "+strings.Replace(this.UnrecognizedWithEmbed_Embedded.GoString(), `&`, ``, 1)+",\n") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithEmbed_Embedded) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.UnrecognizedWithEmbed_Embedded{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Node) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.Node{") if this.Label != nil { s = append(s, "Label: "+valueToGoStringThetest(this.Label, "string")+",\n") } if this.Children != nil { s = append(s, "Children: "+fmt.Sprintf("%#v", this.Children)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "T")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidOptNonByteCustomType{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NinOptNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "T")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidRepNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NinRepNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ProtoType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.ProtoType{") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringThetest(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func extensionToGoStringThetest(m github_com_gogo_protobuf_proto.Message) string { e := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(m) if e == nil { return "nil" } s := "proto.NewUnsafeXXX_InternalExtensions(map[int32]proto.Extension{" keys := make([]int, 0, len(e)) for k := range e { keys = append(keys, int(k)) } sort.Ints(keys) ss := []string{} for _, k := range keys { ss = append(ss, strconv.Itoa(k)+": "+e[int32(k)].GoString()) } s += strings.Join(ss, ",") + "})" return s } func (m *NidOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3)) dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field4)) dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field5)) dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field6)) dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(m.Field7)<<1)^uint32((m.Field7>>31)))) dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(m.Field8)<<1)^uint64((m.Field8>>63)))) dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field9)) i += 4 dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field10)) i += 4 dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field11)) i += 8 dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field12)) i += 8 dAtA[i] = 0x68 i++ if m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field14))) i += copy(dAtA[i:], m.Field14) if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.Field4 != nil { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field4)) } if m.Field5 != nil { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field5)) } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field8 != nil { dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(*m.Field8)<<1)^uint64((*m.Field8>>63)))) } if m.Field9 != nil { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field9)) i += 4 } if m.Field10 != nil { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field10)) i += 4 } if m.Field11 != nil { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field11)) i += 8 } if m.Field12 != nil { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field12)) i += 8 } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x9 i++ f1 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f1)) i += 8 } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x15 i++ f2 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f2)) i += 4 } } if len(m.Field3) > 0 { for _, num := range m.Field3 { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field4) > 0 { for _, num := range m.Field4 { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field5) > 0 { for _, num := range m.Field5 { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field6) > 0 { for _, num := range m.Field6 { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x38 i++ x3 := (uint32(num) << 1) ^ uint32((num >> 31)) for x3 >= 1<<7 { dAtA[i] = uint8(uint64(x3)&0x7f | 0x80) x3 >>= 7 i++ } dAtA[i] = uint8(x3) i++ } } if len(m.Field8) > 0 { for _, num := range m.Field8 { dAtA[i] = 0x40 i++ x4 := (uint64(num) << 1) ^ uint64((num >> 63)) for x4 >= 1<<7 { dAtA[i] = uint8(uint64(x4)&0x7f | 0x80) x4 >>= 7 i++ } dAtA[i] = uint8(x4) i++ } } if len(m.Field9) > 0 { for _, num := range m.Field9 { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field10) > 0 { for _, num := range m.Field10 { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field11) > 0 { for _, num := range m.Field11 { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field12) > 0 { for _, num := range m.Field12 { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field13) > 0 { for _, b := range m.Field13 { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.Field14) > 0 { for _, s := range m.Field14 { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x9 i++ f5 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f5)) i += 8 } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x15 i++ f6 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f6)) i += 4 } } if len(m.Field3) > 0 { for _, num := range m.Field3 { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field4) > 0 { for _, num := range m.Field4 { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field5) > 0 { for _, num := range m.Field5 { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field6) > 0 { for _, num := range m.Field6 { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x38 i++ x7 := (uint32(num) << 1) ^ uint32((num >> 31)) for x7 >= 1<<7 { dAtA[i] = uint8(uint64(x7)&0x7f | 0x80) x7 >>= 7 i++ } dAtA[i] = uint8(x7) i++ } } if len(m.Field8) > 0 { for _, num := range m.Field8 { dAtA[i] = 0x40 i++ x8 := (uint64(num) << 1) ^ uint64((num >> 63)) for x8 >= 1<<7 { dAtA[i] = uint8(uint64(x8)&0x7f | 0x80) x8 >>= 7 i++ } dAtA[i] = uint8(x8) i++ } } if len(m.Field9) > 0 { for _, num := range m.Field9 { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field10) > 0 { for _, num := range m.Field10 { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field11) > 0 { for _, num := range m.Field11 { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field12) > 0 { for _, num := range m.Field12 { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field13) > 0 { for _, b := range m.Field13 { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.Field14) > 0 { for _, s := range m.Field14 { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepPackedNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepPackedNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field1)*8)) for _, num := range m.Field1 { f9 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f9)) i += 8 } } if len(m.Field2) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field2)*4)) for _, num := range m.Field2 { f10 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f10)) i += 4 } } if len(m.Field3) > 0 { dAtA12 := make([]byte, len(m.Field3)*10) var j11 int for _, num1 := range m.Field3 { num := uint64(num1) for num >= 1<<7 { dAtA12[j11] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j11++ } dAtA12[j11] = uint8(num) j11++ } dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(j11)) i += copy(dAtA[i:], dAtA12[:j11]) } if len(m.Field4) > 0 { dAtA14 := make([]byte, len(m.Field4)*10) var j13 int for _, num1 := range m.Field4 { num := uint64(num1) for num >= 1<<7 { dAtA14[j13] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j13++ } dAtA14[j13] = uint8(num) j13++ } dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(j13)) i += copy(dAtA[i:], dAtA14[:j13]) } if len(m.Field5) > 0 { dAtA16 := make([]byte, len(m.Field5)*10) var j15 int for _, num := range m.Field5 { for num >= 1<<7 { dAtA16[j15] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j15++ } dAtA16[j15] = uint8(num) j15++ } dAtA[i] = 0x2a i++ i = encodeVarintThetest(dAtA, i, uint64(j15)) i += copy(dAtA[i:], dAtA16[:j15]) } if len(m.Field6) > 0 { dAtA18 := make([]byte, len(m.Field6)*10) var j17 int for _, num := range m.Field6 { for num >= 1<<7 { dAtA18[j17] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j17++ } dAtA18[j17] = uint8(num) j17++ } dAtA[i] = 0x32 i++ i = encodeVarintThetest(dAtA, i, uint64(j17)) i += copy(dAtA[i:], dAtA18[:j17]) } if len(m.Field7) > 0 { dAtA19 := make([]byte, len(m.Field7)*5) var j20 int for _, num := range m.Field7 { x21 := (uint32(num) << 1) ^ uint32((num >> 31)) for x21 >= 1<<7 { dAtA19[j20] = uint8(uint64(x21)&0x7f | 0x80) j20++ x21 >>= 7 } dAtA19[j20] = uint8(x21) j20++ } dAtA[i] = 0x3a i++ i = encodeVarintThetest(dAtA, i, uint64(j20)) i += copy(dAtA[i:], dAtA19[:j20]) } if len(m.Field8) > 0 { var j22 int dAtA24 := make([]byte, len(m.Field8)*10) for _, num := range m.Field8 { x23 := (uint64(num) << 1) ^ uint64((num >> 63)) for x23 >= 1<<7 { dAtA24[j22] = uint8(uint64(x23)&0x7f | 0x80) j22++ x23 >>= 7 } dAtA24[j22] = uint8(x23) j22++ } dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(j22)) i += copy(dAtA[i:], dAtA24[:j22]) } if len(m.Field9) > 0 { dAtA[i] = 0x4a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field9)*4)) for _, num := range m.Field9 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field10) > 0 { dAtA[i] = 0x52 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field10)*4)) for _, num := range m.Field10 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field11) > 0 { dAtA[i] = 0x5a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field11)*8)) for _, num := range m.Field11 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field12) > 0 { dAtA[i] = 0x62 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field12)*8)) for _, num := range m.Field12 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field13) > 0 { dAtA[i] = 0x6a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field13))) for _, b := range m.Field13 { if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepPackedNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepPackedNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field1)*8)) for _, num := range m.Field1 { f25 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f25)) i += 8 } } if len(m.Field2) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field2)*4)) for _, num := range m.Field2 { f26 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f26)) i += 4 } } if len(m.Field3) > 0 { dAtA28 := make([]byte, len(m.Field3)*10) var j27 int for _, num1 := range m.Field3 { num := uint64(num1) for num >= 1<<7 { dAtA28[j27] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j27++ } dAtA28[j27] = uint8(num) j27++ } dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(j27)) i += copy(dAtA[i:], dAtA28[:j27]) } if len(m.Field4) > 0 { dAtA30 := make([]byte, len(m.Field4)*10) var j29 int for _, num1 := range m.Field4 { num := uint64(num1) for num >= 1<<7 { dAtA30[j29] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j29++ } dAtA30[j29] = uint8(num) j29++ } dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(j29)) i += copy(dAtA[i:], dAtA30[:j29]) } if len(m.Field5) > 0 { dAtA32 := make([]byte, len(m.Field5)*10) var j31 int for _, num := range m.Field5 { for num >= 1<<7 { dAtA32[j31] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j31++ } dAtA32[j31] = uint8(num) j31++ } dAtA[i] = 0x2a i++ i = encodeVarintThetest(dAtA, i, uint64(j31)) i += copy(dAtA[i:], dAtA32[:j31]) } if len(m.Field6) > 0 { dAtA34 := make([]byte, len(m.Field6)*10) var j33 int for _, num := range m.Field6 { for num >= 1<<7 { dAtA34[j33] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j33++ } dAtA34[j33] = uint8(num) j33++ } dAtA[i] = 0x32 i++ i = encodeVarintThetest(dAtA, i, uint64(j33)) i += copy(dAtA[i:], dAtA34[:j33]) } if len(m.Field7) > 0 { dAtA35 := make([]byte, len(m.Field7)*5) var j36 int for _, num := range m.Field7 { x37 := (uint32(num) << 1) ^ uint32((num >> 31)) for x37 >= 1<<7 { dAtA35[j36] = uint8(uint64(x37)&0x7f | 0x80) j36++ x37 >>= 7 } dAtA35[j36] = uint8(x37) j36++ } dAtA[i] = 0x3a i++ i = encodeVarintThetest(dAtA, i, uint64(j36)) i += copy(dAtA[i:], dAtA35[:j36]) } if len(m.Field8) > 0 { var j38 int dAtA40 := make([]byte, len(m.Field8)*10) for _, num := range m.Field8 { x39 := (uint64(num) << 1) ^ uint64((num >> 63)) for x39 >= 1<<7 { dAtA40[j38] = uint8(uint64(x39)&0x7f | 0x80) j38++ x39 >>= 7 } dAtA40[j38] = uint8(x39) j38++ } dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(j38)) i += copy(dAtA[i:], dAtA40[:j38]) } if len(m.Field9) > 0 { dAtA[i] = 0x4a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field9)*4)) for _, num := range m.Field9 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field10) > 0 { dAtA[i] = 0x52 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field10)*4)) for _, num := range m.Field10 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field11) > 0 { dAtA[i] = 0x5a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field11)*8)) for _, num := range m.Field11 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field12) > 0 { dAtA[i] = 0x62 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field12)*8)) for _, num := range m.Field12 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field13) > 0 { dAtA[i] = 0x6a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field13))) for _, b := range m.Field13 { if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidOptStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3.Size())) n41, err := m.Field3.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n41 dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field4.Size())) n42, err := m.Field4.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n42 dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field6)) dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(m.Field7)<<1)^uint32((m.Field7>>31)))) dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field8.Size())) n43, err := m.Field8.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n43 dAtA[i] = 0x68 i++ if m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field14))) i += copy(dAtA[i:], m.Field14) if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3.Size())) n44, err := m.Field3.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n44 } if m.Field4 != nil { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field4.Size())) n45, err := m.Field4.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n45 } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field8 != nil { dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field8.Size())) n46, err := m.Field8.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n46 } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x9 i++ f47 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f47)) i += 8 } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x15 i++ f48 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f48)) i += 4 } } if len(m.Field3) > 0 { for _, msg := range m.Field3 { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field4) > 0 { for _, msg := range m.Field4 { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field6) > 0 { for _, num := range m.Field6 { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x38 i++ x49 := (uint32(num) << 1) ^ uint32((num >> 31)) for x49 >= 1<<7 { dAtA[i] = uint8(uint64(x49)&0x7f | 0x80) x49 >>= 7 i++ } dAtA[i] = uint8(x49) i++ } } if len(m.Field8) > 0 { for _, msg := range m.Field8 { dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field13) > 0 { for _, b := range m.Field13 { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.Field14) > 0 { for _, s := range m.Field14 { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x9 i++ f50 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f50)) i += 8 } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x15 i++ f51 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f51)) i += 4 } } if len(m.Field3) > 0 { for _, msg := range m.Field3 { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field4) > 0 { for _, msg := range m.Field4 { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field6) > 0 { for _, num := range m.Field6 { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x38 i++ x52 := (uint32(num) << 1) ^ uint32((num >> 31)) for x52 >= 1<<7 { dAtA[i] = uint8(uint64(x52)&0x7f | 0x80) x52 >>= 7 i++ } dAtA[i] = uint8(x52) i++ } } if len(m.Field8) > 0 { for _, msg := range m.Field8 { dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field13) > 0 { for _, b := range m.Field13 { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.Field14) > 0 { for _, s := range m.Field14 { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidEmbeddedStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidEmbeddedStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NidOptNative != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.NidOptNative.Size())) n53, err := m.NidOptNative.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n53 } dAtA[i] = 0xc2 i++ dAtA[i] = 0xc i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field200.Size())) n54, err := m.Field200.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n54 dAtA[i] = 0x90 i++ dAtA[i] = 0xd i++ if m.Field210 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinEmbeddedStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinEmbeddedStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NidOptNative != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.NidOptNative.Size())) n55, err := m.NidOptNative.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n55 } if m.Field200 != nil { dAtA[i] = 0xc2 i++ dAtA[i] = 0xc i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field200.Size())) n56, err := m.Field200.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n56 } if m.Field210 != nil { dAtA[i] = 0x90 i++ dAtA[i] = 0xd i++ if *m.Field210 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidNestedStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidNestedStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n57, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n57 if len(m.Field2) > 0 { for _, msg := range m.Field2 { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinNestedStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinNestedStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n58, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n58 } if len(m.Field2) > 0 { for _, msg := range m.Field2 { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidOptCustom) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptCustom) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Id.Size())) n59, err := m.Id.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n59 dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Value.Size())) n60, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n60 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomDash) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomDash) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Value != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Value.Size())) n61, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n61 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptCustom) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptCustom) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Id != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Id.Size())) n62, err := m.Id.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n62 } if m.Value != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Value.Size())) n63, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n63 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepCustom) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepCustom) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Id) > 0 { for _, msg := range m.Id { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Value) > 0 { for _, msg := range m.Value { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepCustom) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepCustom) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Id) > 0 { for _, msg := range m.Id { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Value) > 0 { for _, msg := range m.Value { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNativeUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNativeUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.Field4 != nil { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field4)) } if m.Field5 != nil { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field5)) } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptStructUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptStructUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3.Size())) n64, err := m.Field3.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n64 } if m.Field4 != nil { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field4.Size())) n65, err := m.Field4.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n65 } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinEmbeddedStructUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinEmbeddedStructUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NidOptNative != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.NidOptNative.Size())) n66, err := m.NidOptNative.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n66 } if m.Field200 != nil { dAtA[i] = 0xc2 i++ dAtA[i] = 0xc i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field200.Size())) n67, err := m.Field200.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n67 } if m.Field210 != nil { dAtA[i] = 0x90 i++ dAtA[i] = 0xd i++ if *m.Field210 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinNestedStructUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinNestedStructUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n68, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n68 } if m.Field2 != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field2.Size())) n69, err := m.Field2.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n69 } if m.Field3 != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3.Size())) n70, err := m.Field3.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n70 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Tree) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Tree) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Or != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Or.Size())) n71, err := m.Or.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n71 } if m.And != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.And.Size())) n72, err := m.And.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n72 } if m.Leaf != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Leaf.Size())) n73, err := m.Leaf.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n73 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *OrBranch) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OrBranch) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Left.Size())) n74, err := m.Left.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n74 dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Right.Size())) n75, err := m.Right.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n75 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AndBranch) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AndBranch) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Left.Size())) n76, err := m.Left.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n76 dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Right.Size())) n77, err := m.Right.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n77 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Leaf) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Leaf) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Value)) dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.StrValue))) i += copy(dAtA[i:], m.StrValue) if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *DeepTree) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *DeepTree) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Down != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Down.Size())) n78, err := m.Down.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n78 } if m.And != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.And.Size())) n79, err := m.And.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n79 } if m.Leaf != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Leaf.Size())) n80, err := m.Leaf.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n80 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *ADeepBranch) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ADeepBranch) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Down.Size())) n81, err := m.Down.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n81 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AndDeepBranch) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AndDeepBranch) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Left.Size())) n82, err := m.Left.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n82 dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Right.Size())) n83, err := m.Right.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n83 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *DeepLeaf) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *DeepLeaf) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Tree.Size())) n84, err := m.Tree.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n84 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Nil) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Nil) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidOptEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1)) if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field3) > 0 { for _, num := range m.Field3 { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field3) > 0 { for _, num := range m.Field3 { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptEnumDefault) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptEnumDefault) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AnotherNinOptEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AnotherNinOptEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AnotherNinOptEnumDefault) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AnotherNinOptEnumDefault) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Timer) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Timer) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Time1)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Time2)) i += 8 if m.Data != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Data))) i += copy(dAtA[i:], m.Data) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *MyExtendable) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MyExtendable) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } n, err := github_com_gogo_protobuf_proto.EncodeInternalExtension(m, dAtA[i:]) if err != nil { return 0, err } i += n if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *OtherExtenable) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OtherExtenable) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.M != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.M.Size())) n85, err := m.M.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n85 } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field13 != nil { dAtA[i] = 0x68 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field13)) } n, err := github_com_gogo_protobuf_proto.EncodeInternalExtension(m, dAtA[i:]) if err != nil { return 0, err } i += n if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NestedDefinition) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NestedDefinition) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.EnumField != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.EnumField)) } if m.NNM != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.NNM.Size())) n86, err := m.NNM.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n86 } if m.NM != nil { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(m.NM.Size())) n87, err := m.NM.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n87 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NestedDefinition_NestedMessage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NestedDefinition_NestedMessage) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NestedField1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.NestedField1)) i += 8 } if m.NNM != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.NNM.Size())) n88, err := m.NNM.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n88 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NestedNestedField1 != nil { dAtA[i] = 0x52 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.NestedNestedField1))) i += copy(dAtA[i:], *m.NestedNestedField1) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NestedScope) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NestedScope) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.A != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.A.Size())) n89, err := m.A.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n89 } if m.B != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.B)) } if m.C != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.C.Size())) n90, err := m.C.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n90 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNativeDefault) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNativeDefault) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.Field4 != nil { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field4)) } if m.Field5 != nil { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field5)) } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field8 != nil { dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(*m.Field8)<<1)^uint64((*m.Field8>>63)))) } if m.Field9 != nil { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field9)) i += 4 } if m.Field10 != nil { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field10)) i += 4 } if m.Field11 != nil { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field11)) i += 8 } if m.Field12 != nil { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field12)) i += 8 } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomContainer) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomContainer) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.CustomStruct.Size())) n91, err := m.CustomStruct.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n91 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNidOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNidOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.FieldA)))) i += 8 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.FieldB)))) i += 4 dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldC)) dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldD)) dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldE)) dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldF)) dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(m.FieldG)<<1)^uint32((m.FieldG>>31)))) dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(m.FieldH)<<1)^uint64((m.FieldH>>63)))) dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.FieldI)) i += 4 dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.FieldJ)) i += 4 dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.FieldK)) i += 8 dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.FieldL)) i += 8 dAtA[i] = 0x68 i++ if m.FieldM { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.FieldN))) i += copy(dAtA[i:], m.FieldN) if m.FieldO != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.FieldO))) i += copy(dAtA[i:], m.FieldO) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNinOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNinOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.FieldA != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.FieldA)))) i += 8 } if m.FieldB != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.FieldB)))) i += 4 } if m.FieldC != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldC)) } if m.FieldD != nil { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldD)) } if m.FieldE != nil { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldE)) } if m.FieldF != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldF)) } if m.FieldG != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.FieldG)<<1)^uint32((*m.FieldG>>31)))) } if m.FieldH != nil { dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(*m.FieldH)<<1)^uint64((*m.FieldH>>63)))) } if m.FieldI != nil { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.FieldI)) i += 4 } if m.FieldJ != nil { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.FieldJ)) i += 4 } if m.FieldK != nil { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.FieldK)) i += 8 } if m.FielL != nil { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.FielL)) i += 8 } if m.FieldM != nil { dAtA[i] = 0x68 i++ if *m.FieldM { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.FieldN != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.FieldN))) i += copy(dAtA[i:], *m.FieldN) } if m.FieldO != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.FieldO))) i += copy(dAtA[i:], m.FieldO) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNinRepNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNinRepNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.FieldA) > 0 { for _, num := range m.FieldA { dAtA[i] = 0x9 i++ f92 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f92)) i += 8 } } if len(m.FieldB) > 0 { for _, num := range m.FieldB { dAtA[i] = 0x15 i++ f93 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f93)) i += 4 } } if len(m.FieldC) > 0 { for _, num := range m.FieldC { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.FieldD) > 0 { for _, num := range m.FieldD { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.FieldE) > 0 { for _, num := range m.FieldE { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.FieldF) > 0 { for _, num := range m.FieldF { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.FieldG) > 0 { for _, num := range m.FieldG { dAtA[i] = 0x38 i++ x94 := (uint32(num) << 1) ^ uint32((num >> 31)) for x94 >= 1<<7 { dAtA[i] = uint8(uint64(x94)&0x7f | 0x80) x94 >>= 7 i++ } dAtA[i] = uint8(x94) i++ } } if len(m.FieldH) > 0 { for _, num := range m.FieldH { dAtA[i] = 0x40 i++ x95 := (uint64(num) << 1) ^ uint64((num >> 63)) for x95 >= 1<<7 { dAtA[i] = uint8(uint64(x95)&0x7f | 0x80) x95 >>= 7 i++ } dAtA[i] = uint8(x95) i++ } } if len(m.FieldI) > 0 { for _, num := range m.FieldI { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.FieldJ) > 0 { for _, num := range m.FieldJ { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.FieldK) > 0 { for _, num := range m.FieldK { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.FieldL) > 0 { for _, num := range m.FieldL { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.FieldM) > 0 { for _, b := range m.FieldM { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.FieldN) > 0 { for _, s := range m.FieldN { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.FieldO) > 0 { for _, b := range m.FieldO { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNinStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNinStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.FieldA != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.FieldA)))) i += 8 } if m.FieldB != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.FieldB)))) i += 4 } if m.FieldC != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldC.Size())) n96, err := m.FieldC.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n96 } if len(m.FieldD) > 0 { for _, msg := range m.FieldD { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.FieldE != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldE)) } if m.FieldF != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.FieldF)<<1)^uint32((*m.FieldF>>31)))) } if m.FieldG != nil { dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldG.Size())) n97, err := m.FieldG.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n97 } if m.FieldH != nil { dAtA[i] = 0x68 i++ if *m.FieldH { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.FieldI != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.FieldI))) i += copy(dAtA[i:], *m.FieldI) } if m.FieldJ != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.FieldJ))) i += copy(dAtA[i:], m.FieldJ) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.FieldA != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldA.Size())) n98, err := m.FieldA.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n98 } if m.FieldB != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldB.Size())) n99, err := m.FieldB.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n99 } if len(m.FieldC) > 0 { for _, msg := range m.FieldC { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.FieldD) > 0 { for _, msg := range m.FieldD { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNinEmbeddedStructUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNinEmbeddedStructUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NidOptNative != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.NidOptNative.Size())) n100, err := m.NidOptNative.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n100 } if m.FieldA != nil { dAtA[i] = 0xc2 i++ dAtA[i] = 0xc i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldA.Size())) n101, err := m.FieldA.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n101 } if m.FieldB != nil { dAtA[i] = 0x90 i++ dAtA[i] = 0xd i++ if *m.FieldB { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.FieldA != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldA)) } if len(m.FieldB) > 0 { for _, num := range m.FieldB { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NoExtensionsMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NoExtensionsMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.XXX_extensions != nil { i += copy(dAtA[i:], m.XXX_extensions) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Unrecognized) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Unrecognized) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field1))) i += copy(dAtA[i:], *m.Field1) } return i, nil } func (m *UnrecognizedWithInner) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UnrecognizedWithInner) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Embedded) > 0 { for _, msg := range m.Embedded { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.Field2 != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field2))) i += copy(dAtA[i:], *m.Field2) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *UnrecognizedWithInner_Inner) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UnrecognizedWithInner_Inner) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } return i, nil } func (m *UnrecognizedWithEmbed) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UnrecognizedWithEmbed) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.UnrecognizedWithEmbed_Embedded.Size())) n102, err := m.UnrecognizedWithEmbed_Embedded.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n102 if m.Field2 != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field2))) i += copy(dAtA[i:], *m.Field2) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *UnrecognizedWithEmbed_Embedded) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UnrecognizedWithEmbed_Embedded) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } return i, nil } func (m *Node) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Node) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Label != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Label))) i += copy(dAtA[i:], *m.Label) } if len(m.Children) > 0 { for _, msg := range m.Children { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n103, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n103 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidOptNonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptNonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n104, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n104 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n105, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n105 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepNonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepNonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, msg := range m.Field1 { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepNonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepNonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, msg := range m.Field1 { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *ProtoType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ProtoType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field2 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field2))) i += copy(dAtA[i:], *m.Field2) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintThetest(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedNidOptNative(r randyThetest, easy bool) *NidOptNative { this := &NidOptNative{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } this.Field5 = uint32(r.Uint32()) this.Field6 = uint64(uint64(r.Uint32())) this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } this.Field9 = uint32(r.Uint32()) this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } this.Field11 = uint64(uint64(r.Uint32())) this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } this.Field13 = bool(bool(r.Intn(2) == 0)) this.Field14 = string(randStringThetest(r)) v1 := r.Intn(100) this.Field15 = make([]byte, v1) for i := 0; i < v1; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinOptNative(r randyThetest, easy bool) *NinOptNative { this := &NinOptNative{} if r.Intn(10) != 0 { v2 := float64(r.Float64()) if r.Intn(2) == 0 { v2 *= -1 } this.Field1 = &v2 } if r.Intn(10) != 0 { v3 := float32(r.Float32()) if r.Intn(2) == 0 { v3 *= -1 } this.Field2 = &v3 } if r.Intn(10) != 0 { v4 := int32(r.Int31()) if r.Intn(2) == 0 { v4 *= -1 } this.Field3 = &v4 } if r.Intn(10) != 0 { v5 := int64(r.Int63()) if r.Intn(2) == 0 { v5 *= -1 } this.Field4 = &v5 } if r.Intn(10) != 0 { v6 := uint32(r.Uint32()) this.Field5 = &v6 } if r.Intn(10) != 0 { v7 := uint64(uint64(r.Uint32())) this.Field6 = &v7 } if r.Intn(10) != 0 { v8 := int32(r.Int31()) if r.Intn(2) == 0 { v8 *= -1 } this.Field7 = &v8 } if r.Intn(10) != 0 { v9 := int64(r.Int63()) if r.Intn(2) == 0 { v9 *= -1 } this.Field8 = &v9 } if r.Intn(10) != 0 { v10 := uint32(r.Uint32()) this.Field9 = &v10 } if r.Intn(10) != 0 { v11 := int32(r.Int31()) if r.Intn(2) == 0 { v11 *= -1 } this.Field10 = &v11 } if r.Intn(10) != 0 { v12 := uint64(uint64(r.Uint32())) this.Field11 = &v12 } if r.Intn(10) != 0 { v13 := int64(r.Int63()) if r.Intn(2) == 0 { v13 *= -1 } this.Field12 = &v13 } if r.Intn(10) != 0 { v14 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v14 } if r.Intn(10) != 0 { v15 := string(randStringThetest(r)) this.Field14 = &v15 } if r.Intn(10) != 0 { v16 := r.Intn(100) this.Field15 = make([]byte, v16) for i := 0; i < v16; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepNative(r randyThetest, easy bool) *NidRepNative { this := &NidRepNative{} if r.Intn(10) != 0 { v17 := r.Intn(10) this.Field1 = make([]float64, v17) for i := 0; i < v17; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Field2 = make([]float32, v18) for i := 0; i < v18; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.Field3 = make([]int32, v19) for i := 0; i < v19; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Field4 = make([]int64, v20) for i := 0; i < v20; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Field5 = make([]uint32, v21) for i := 0; i < v21; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Field6 = make([]uint64, v22) for i := 0; i < v22; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Field7 = make([]int32, v23) for i := 0; i < v23; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Field8 = make([]int64, v24) for i := 0; i < v24; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Field9 = make([]uint32, v25) for i := 0; i < v25; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v26 := r.Intn(10) this.Field10 = make([]int32, v26) for i := 0; i < v26; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v27 := r.Intn(10) this.Field11 = make([]uint64, v27) for i := 0; i < v27; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v28 := r.Intn(10) this.Field12 = make([]int64, v28) for i := 0; i < v28; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v29 := r.Intn(10) this.Field13 = make([]bool, v29) for i := 0; i < v29; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v30 := r.Intn(10) this.Field14 = make([]string, v30) for i := 0; i < v30; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v31 := r.Intn(10) this.Field15 = make([][]byte, v31) for i := 0; i < v31; i++ { v32 := r.Intn(100) this.Field15[i] = make([]byte, v32) for j := 0; j < v32; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinRepNative(r randyThetest, easy bool) *NinRepNative { this := &NinRepNative{} if r.Intn(10) != 0 { v33 := r.Intn(10) this.Field1 = make([]float64, v33) for i := 0; i < v33; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v34 := r.Intn(10) this.Field2 = make([]float32, v34) for i := 0; i < v34; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v35 := r.Intn(10) this.Field3 = make([]int32, v35) for i := 0; i < v35; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.Field4 = make([]int64, v36) for i := 0; i < v36; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v37 := r.Intn(10) this.Field5 = make([]uint32, v37) for i := 0; i < v37; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v38 := r.Intn(10) this.Field6 = make([]uint64, v38) for i := 0; i < v38; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v39 := r.Intn(10) this.Field7 = make([]int32, v39) for i := 0; i < v39; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v40 := r.Intn(10) this.Field8 = make([]int64, v40) for i := 0; i < v40; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v41 := r.Intn(10) this.Field9 = make([]uint32, v41) for i := 0; i < v41; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v42 := r.Intn(10) this.Field10 = make([]int32, v42) for i := 0; i < v42; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v43 := r.Intn(10) this.Field11 = make([]uint64, v43) for i := 0; i < v43; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v44 := r.Intn(10) this.Field12 = make([]int64, v44) for i := 0; i < v44; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v45 := r.Intn(10) this.Field13 = make([]bool, v45) for i := 0; i < v45; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v46 := r.Intn(10) this.Field14 = make([]string, v46) for i := 0; i < v46; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v47 := r.Intn(10) this.Field15 = make([][]byte, v47) for i := 0; i < v47; i++ { v48 := r.Intn(100) this.Field15[i] = make([]byte, v48) for j := 0; j < v48; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepPackedNative(r randyThetest, easy bool) *NidRepPackedNative { this := &NidRepPackedNative{} if r.Intn(10) != 0 { v49 := r.Intn(10) this.Field1 = make([]float64, v49) for i := 0; i < v49; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v50 := r.Intn(10) this.Field2 = make([]float32, v50) for i := 0; i < v50; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v51 := r.Intn(10) this.Field3 = make([]int32, v51) for i := 0; i < v51; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v52 := r.Intn(10) this.Field4 = make([]int64, v52) for i := 0; i < v52; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v53 := r.Intn(10) this.Field5 = make([]uint32, v53) for i := 0; i < v53; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v54 := r.Intn(10) this.Field6 = make([]uint64, v54) for i := 0; i < v54; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v55 := r.Intn(10) this.Field7 = make([]int32, v55) for i := 0; i < v55; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v56 := r.Intn(10) this.Field8 = make([]int64, v56) for i := 0; i < v56; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v57 := r.Intn(10) this.Field9 = make([]uint32, v57) for i := 0; i < v57; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v58 := r.Intn(10) this.Field10 = make([]int32, v58) for i := 0; i < v58; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v59 := r.Intn(10) this.Field11 = make([]uint64, v59) for i := 0; i < v59; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v60 := r.Intn(10) this.Field12 = make([]int64, v60) for i := 0; i < v60; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v61 := r.Intn(10) this.Field13 = make([]bool, v61) for i := 0; i < v61; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 14) } return this } func NewPopulatedNinRepPackedNative(r randyThetest, easy bool) *NinRepPackedNative { this := &NinRepPackedNative{} if r.Intn(10) != 0 { v62 := r.Intn(10) this.Field1 = make([]float64, v62) for i := 0; i < v62; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v63 := r.Intn(10) this.Field2 = make([]float32, v63) for i := 0; i < v63; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.Field3 = make([]int32, v64) for i := 0; i < v64; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v65 := r.Intn(10) this.Field4 = make([]int64, v65) for i := 0; i < v65; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v66 := r.Intn(10) this.Field5 = make([]uint32, v66) for i := 0; i < v66; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v67 := r.Intn(10) this.Field6 = make([]uint64, v67) for i := 0; i < v67; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.Field7 = make([]int32, v68) for i := 0; i < v68; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v69 := r.Intn(10) this.Field8 = make([]int64, v69) for i := 0; i < v69; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v70 := r.Intn(10) this.Field9 = make([]uint32, v70) for i := 0; i < v70; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v71 := r.Intn(10) this.Field10 = make([]int32, v71) for i := 0; i < v71; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v72 := r.Intn(10) this.Field11 = make([]uint64, v72) for i := 0; i < v72; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v73 := r.Intn(10) this.Field12 = make([]int64, v73) for i := 0; i < v73; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v74 := r.Intn(10) this.Field13 = make([]bool, v74) for i := 0; i < v74; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 14) } return this } func NewPopulatedNidOptStruct(r randyThetest, easy bool) *NidOptStruct { this := &NidOptStruct{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } v75 := NewPopulatedNidOptNative(r, easy) this.Field3 = *v75 v76 := NewPopulatedNinOptNative(r, easy) this.Field4 = *v76 this.Field6 = uint64(uint64(r.Uint32())) this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } v77 := NewPopulatedNidOptNative(r, easy) this.Field8 = *v77 this.Field13 = bool(bool(r.Intn(2) == 0)) this.Field14 = string(randStringThetest(r)) v78 := r.Intn(100) this.Field15 = make([]byte, v78) for i := 0; i < v78; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinOptStruct(r randyThetest, easy bool) *NinOptStruct { this := &NinOptStruct{} if r.Intn(10) != 0 { v79 := float64(r.Float64()) if r.Intn(2) == 0 { v79 *= -1 } this.Field1 = &v79 } if r.Intn(10) != 0 { v80 := float32(r.Float32()) if r.Intn(2) == 0 { v80 *= -1 } this.Field2 = &v80 } if r.Intn(10) != 0 { this.Field3 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { this.Field4 = NewPopulatedNinOptNative(r, easy) } if r.Intn(10) != 0 { v81 := uint64(uint64(r.Uint32())) this.Field6 = &v81 } if r.Intn(10) != 0 { v82 := int32(r.Int31()) if r.Intn(2) == 0 { v82 *= -1 } this.Field7 = &v82 } if r.Intn(10) != 0 { this.Field8 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v83 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v83 } if r.Intn(10) != 0 { v84 := string(randStringThetest(r)) this.Field14 = &v84 } if r.Intn(10) != 0 { v85 := r.Intn(100) this.Field15 = make([]byte, v85) for i := 0; i < v85; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepStruct(r randyThetest, easy bool) *NidRepStruct { this := &NidRepStruct{} if r.Intn(10) != 0 { v86 := r.Intn(10) this.Field1 = make([]float64, v86) for i := 0; i < v86; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v87 := r.Intn(10) this.Field2 = make([]float32, v87) for i := 0; i < v87; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v88 := r.Intn(5) this.Field3 = make([]NidOptNative, v88) for i := 0; i < v88; i++ { v89 := NewPopulatedNidOptNative(r, easy) this.Field3[i] = *v89 } } if r.Intn(10) != 0 { v90 := r.Intn(5) this.Field4 = make([]NinOptNative, v90) for i := 0; i < v90; i++ { v91 := NewPopulatedNinOptNative(r, easy) this.Field4[i] = *v91 } } if r.Intn(10) != 0 { v92 := r.Intn(10) this.Field6 = make([]uint64, v92) for i := 0; i < v92; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v93 := r.Intn(10) this.Field7 = make([]int32, v93) for i := 0; i < v93; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v94 := r.Intn(5) this.Field8 = make([]NidOptNative, v94) for i := 0; i < v94; i++ { v95 := NewPopulatedNidOptNative(r, easy) this.Field8[i] = *v95 } } if r.Intn(10) != 0 { v96 := r.Intn(10) this.Field13 = make([]bool, v96) for i := 0; i < v96; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v97 := r.Intn(10) this.Field14 = make([]string, v97) for i := 0; i < v97; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v98 := r.Intn(10) this.Field15 = make([][]byte, v98) for i := 0; i < v98; i++ { v99 := r.Intn(100) this.Field15[i] = make([]byte, v99) for j := 0; j < v99; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinRepStruct(r randyThetest, easy bool) *NinRepStruct { this := &NinRepStruct{} if r.Intn(10) != 0 { v100 := r.Intn(10) this.Field1 = make([]float64, v100) for i := 0; i < v100; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v101 := r.Intn(10) this.Field2 = make([]float32, v101) for i := 0; i < v101; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v102 := r.Intn(5) this.Field3 = make([]*NidOptNative, v102) for i := 0; i < v102; i++ { this.Field3[i] = NewPopulatedNidOptNative(r, easy) } } if r.Intn(10) != 0 { v103 := r.Intn(5) this.Field4 = make([]*NinOptNative, v103) for i := 0; i < v103; i++ { this.Field4[i] = NewPopulatedNinOptNative(r, easy) } } if r.Intn(10) != 0 { v104 := r.Intn(10) this.Field6 = make([]uint64, v104) for i := 0; i < v104; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v105 := r.Intn(10) this.Field7 = make([]int32, v105) for i := 0; i < v105; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v106 := r.Intn(5) this.Field8 = make([]*NidOptNative, v106) for i := 0; i < v106; i++ { this.Field8[i] = NewPopulatedNidOptNative(r, easy) } } if r.Intn(10) != 0 { v107 := r.Intn(10) this.Field13 = make([]bool, v107) for i := 0; i < v107; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v108 := r.Intn(10) this.Field14 = make([]string, v108) for i := 0; i < v108; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v109 := r.Intn(10) this.Field15 = make([][]byte, v109) for i := 0; i < v109; i++ { v110 := r.Intn(100) this.Field15[i] = make([]byte, v110) for j := 0; j < v110; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidEmbeddedStruct(r randyThetest, easy bool) *NidEmbeddedStruct { this := &NidEmbeddedStruct{} if r.Intn(10) != 0 { this.NidOptNative = NewPopulatedNidOptNative(r, easy) } v111 := NewPopulatedNidOptNative(r, easy) this.Field200 = *v111 this.Field210 = bool(bool(r.Intn(2) == 0)) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 211) } return this } func NewPopulatedNinEmbeddedStruct(r randyThetest, easy bool) *NinEmbeddedStruct { this := &NinEmbeddedStruct{} if r.Intn(10) != 0 { this.NidOptNative = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { this.Field200 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v112 := bool(bool(r.Intn(2) == 0)) this.Field210 = &v112 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 211) } return this } func NewPopulatedNidNestedStruct(r randyThetest, easy bool) *NidNestedStruct { this := &NidNestedStruct{} v113 := NewPopulatedNidOptStruct(r, easy) this.Field1 = *v113 if r.Intn(10) != 0 { v114 := r.Intn(5) this.Field2 = make([]NidRepStruct, v114) for i := 0; i < v114; i++ { v115 := NewPopulatedNidRepStruct(r, easy) this.Field2[i] = *v115 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinNestedStruct(r randyThetest, easy bool) *NinNestedStruct { this := &NinNestedStruct{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedNinOptStruct(r, easy) } if r.Intn(10) != 0 { v116 := r.Intn(5) this.Field2 = make([]*NinRepStruct, v116) for i := 0; i < v116; i++ { this.Field2[i] = NewPopulatedNinRepStruct(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNidOptCustom(r randyThetest, easy bool) *NidOptCustom { this := &NidOptCustom{} v117 := NewPopulatedUuid(r) this.Id = *v117 v118 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value = *v118 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedCustomDash(r randyThetest, easy bool) *CustomDash { this := &CustomDash{} if r.Intn(10) != 0 { this.Value = github_com_gogo_protobuf_test_custom_dash_type.NewPopulatedBytes(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptCustom(r randyThetest, easy bool) *NinOptCustom { this := &NinOptCustom{} if r.Intn(10) != 0 { this.Id = NewPopulatedUuid(r) } if r.Intn(10) != 0 { this.Value = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNidRepCustom(r randyThetest, easy bool) *NidRepCustom { this := &NidRepCustom{} if r.Intn(10) != 0 { v119 := r.Intn(10) this.Id = make([]Uuid, v119) for i := 0; i < v119; i++ { v120 := NewPopulatedUuid(r) this.Id[i] = *v120 } } if r.Intn(10) != 0 { v121 := r.Intn(10) this.Value = make([]github_com_gogo_protobuf_test_custom.Uint128, v121) for i := 0; i < v121; i++ { v122 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value[i] = *v122 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinRepCustom(r randyThetest, easy bool) *NinRepCustom { this := &NinRepCustom{} if r.Intn(10) != 0 { v123 := r.Intn(10) this.Id = make([]Uuid, v123) for i := 0; i < v123; i++ { v124 := NewPopulatedUuid(r) this.Id[i] = *v124 } } if r.Intn(10) != 0 { v125 := r.Intn(10) this.Value = make([]github_com_gogo_protobuf_test_custom.Uint128, v125) for i := 0; i < v125; i++ { v126 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value[i] = *v126 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinOptNativeUnion(r randyThetest, easy bool) *NinOptNativeUnion { this := &NinOptNativeUnion{} fieldNum := r.Intn(9) switch fieldNum { case 0: v127 := float64(r.Float64()) if r.Intn(2) == 0 { v127 *= -1 } this.Field1 = &v127 case 1: v128 := float32(r.Float32()) if r.Intn(2) == 0 { v128 *= -1 } this.Field2 = &v128 case 2: v129 := int32(r.Int31()) if r.Intn(2) == 0 { v129 *= -1 } this.Field3 = &v129 case 3: v130 := int64(r.Int63()) if r.Intn(2) == 0 { v130 *= -1 } this.Field4 = &v130 case 4: v131 := uint32(r.Uint32()) this.Field5 = &v131 case 5: v132 := uint64(uint64(r.Uint32())) this.Field6 = &v132 case 6: v133 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v133 case 7: v134 := string(randStringThetest(r)) this.Field14 = &v134 case 8: v135 := r.Intn(100) this.Field15 = make([]byte, v135) for i := 0; i < v135; i++ { this.Field15[i] = byte(r.Intn(256)) } } return this } func NewPopulatedNinOptStructUnion(r randyThetest, easy bool) *NinOptStructUnion { this := &NinOptStructUnion{} fieldNum := r.Intn(9) switch fieldNum { case 0: v136 := float64(r.Float64()) if r.Intn(2) == 0 { v136 *= -1 } this.Field1 = &v136 case 1: v137 := float32(r.Float32()) if r.Intn(2) == 0 { v137 *= -1 } this.Field2 = &v137 case 2: this.Field3 = NewPopulatedNidOptNative(r, easy) case 3: this.Field4 = NewPopulatedNinOptNative(r, easy) case 4: v138 := uint64(uint64(r.Uint32())) this.Field6 = &v138 case 5: v139 := int32(r.Int31()) if r.Intn(2) == 0 { v139 *= -1 } this.Field7 = &v139 case 6: v140 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v140 case 7: v141 := string(randStringThetest(r)) this.Field14 = &v141 case 8: v142 := r.Intn(100) this.Field15 = make([]byte, v142) for i := 0; i < v142; i++ { this.Field15[i] = byte(r.Intn(256)) } } return this } func NewPopulatedNinEmbeddedStructUnion(r randyThetest, easy bool) *NinEmbeddedStructUnion { this := &NinEmbeddedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.NidOptNative = NewPopulatedNidOptNative(r, easy) case 1: this.Field200 = NewPopulatedNinOptNative(r, easy) case 2: v143 := bool(bool(r.Intn(2) == 0)) this.Field210 = &v143 } return this } func NewPopulatedNinNestedStructUnion(r randyThetest, easy bool) *NinNestedStructUnion { this := &NinNestedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.Field1 = NewPopulatedNinOptNativeUnion(r, easy) case 1: this.Field2 = NewPopulatedNinOptStructUnion(r, easy) case 2: this.Field3 = NewPopulatedNinEmbeddedStructUnion(r, easy) } return this } func NewPopulatedTree(r randyThetest, easy bool) *Tree { this := &Tree{} fieldNum := r.Intn(102) switch fieldNum { case 0: this.Or = NewPopulatedOrBranch(r, easy) case 1: this.And = NewPopulatedAndBranch(r, easy) case 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101: this.Leaf = NewPopulatedLeaf(r, easy) } return this } func NewPopulatedOrBranch(r randyThetest, easy bool) *OrBranch { this := &OrBranch{} v144 := NewPopulatedTree(r, easy) this.Left = *v144 v145 := NewPopulatedTree(r, easy) this.Right = *v145 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedAndBranch(r randyThetest, easy bool) *AndBranch { this := &AndBranch{} v146 := NewPopulatedTree(r, easy) this.Left = *v146 v147 := NewPopulatedTree(r, easy) this.Right = *v147 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedLeaf(r randyThetest, easy bool) *Leaf { this := &Leaf{} this.Value = int64(r.Int63()) if r.Intn(2) == 0 { this.Value *= -1 } this.StrValue = string(randStringThetest(r)) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedDeepTree(r randyThetest, easy bool) *DeepTree { this := &DeepTree{} fieldNum := r.Intn(102) switch fieldNum { case 0: this.Down = NewPopulatedADeepBranch(r, easy) case 1: this.And = NewPopulatedAndDeepBranch(r, easy) case 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101: this.Leaf = NewPopulatedDeepLeaf(r, easy) } return this } func NewPopulatedADeepBranch(r randyThetest, easy bool) *ADeepBranch { this := &ADeepBranch{} v148 := NewPopulatedDeepTree(r, easy) this.Down = *v148 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedAndDeepBranch(r randyThetest, easy bool) *AndDeepBranch { this := &AndDeepBranch{} v149 := NewPopulatedDeepTree(r, easy) this.Left = *v149 v150 := NewPopulatedDeepTree(r, easy) this.Right = *v150 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedDeepLeaf(r randyThetest, easy bool) *DeepLeaf { this := &DeepLeaf{} v151 := NewPopulatedTree(r, easy) this.Tree = *v151 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNil(r randyThetest, easy bool) *Nil { this := &Nil{} if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 1) } return this } func NewPopulatedNidOptEnum(r randyThetest, easy bool) *NidOptEnum { this := &NidOptEnum{} this.Field1 = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptEnum(r randyThetest, easy bool) *NinOptEnum { this := &NinOptEnum{} if r.Intn(10) != 0 { v152 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.Field1 = &v152 } if r.Intn(10) != 0 { v153 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v153 } if r.Intn(10) != 0 { v154 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v154 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNidRepEnum(r randyThetest, easy bool) *NidRepEnum { this := &NidRepEnum{} if r.Intn(10) != 0 { v155 := r.Intn(10) this.Field1 = make([]TheTestEnum, v155) for i := 0; i < v155; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v156 := r.Intn(10) this.Field2 = make([]YetAnotherTestEnum, v156) for i := 0; i < v156; i++ { this.Field2[i] = YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if r.Intn(10) != 0 { v157 := r.Intn(10) this.Field3 = make([]YetYetAnotherTestEnum, v157) for i := 0; i < v157; i++ { this.Field3[i] = YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinRepEnum(r randyThetest, easy bool) *NinRepEnum { this := &NinRepEnum{} if r.Intn(10) != 0 { v158 := r.Intn(10) this.Field1 = make([]TheTestEnum, v158) for i := 0; i < v158; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v159 := r.Intn(10) this.Field2 = make([]YetAnotherTestEnum, v159) for i := 0; i < v159; i++ { this.Field2[i] = YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if r.Intn(10) != 0 { v160 := r.Intn(10) this.Field3 = make([]YetYetAnotherTestEnum, v160) for i := 0; i < v160; i++ { this.Field3[i] = YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinOptEnumDefault(r randyThetest, easy bool) *NinOptEnumDefault { this := &NinOptEnumDefault{} if r.Intn(10) != 0 { v161 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.Field1 = &v161 } if r.Intn(10) != 0 { v162 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v162 } if r.Intn(10) != 0 { v163 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v163 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedAnotherNinOptEnum(r randyThetest, easy bool) *AnotherNinOptEnum { this := &AnotherNinOptEnum{} if r.Intn(10) != 0 { v164 := AnotherTestEnum([]int32{10, 11}[r.Intn(2)]) this.Field1 = &v164 } if r.Intn(10) != 0 { v165 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v165 } if r.Intn(10) != 0 { v166 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v166 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedAnotherNinOptEnumDefault(r randyThetest, easy bool) *AnotherNinOptEnumDefault { this := &AnotherNinOptEnumDefault{} if r.Intn(10) != 0 { v167 := AnotherTestEnum([]int32{10, 11}[r.Intn(2)]) this.Field1 = &v167 } if r.Intn(10) != 0 { v168 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v168 } if r.Intn(10) != 0 { v169 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v169 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedTimer(r randyThetest, easy bool) *Timer { this := &Timer{} this.Time1 = int64(r.Int63()) if r.Intn(2) == 0 { this.Time1 *= -1 } this.Time2 = int64(r.Int63()) if r.Intn(2) == 0 { this.Time2 *= -1 } v170 := r.Intn(100) this.Data = make([]byte, v170) for i := 0; i < v170; i++ { this.Data[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedMyExtendable(r randyThetest, easy bool) *MyExtendable { this := &MyExtendable{} if r.Intn(10) != 0 { v171 := int64(r.Int63()) if r.Intn(2) == 0 { v171 *= -1 } this.Field1 = &v171 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { fieldNumber := r.Intn(100) + 100 wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 201) } return this } func NewPopulatedOtherExtenable(r randyThetest, easy bool) *OtherExtenable { this := &OtherExtenable{} if r.Intn(10) != 0 { this.M = NewPopulatedMyExtendable(r, easy) } if r.Intn(10) != 0 { v172 := int64(r.Int63()) if r.Intn(2) == 0 { v172 *= -1 } this.Field2 = &v172 } if r.Intn(10) != 0 { v173 := int64(r.Int63()) if r.Intn(2) == 0 { v173 *= -1 } this.Field13 = &v173 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { eIndex := r.Intn(2) fieldNumber := 0 switch eIndex { case 0: fieldNumber = r.Intn(3) + 14 case 1: fieldNumber = r.Intn(3) + 10 } wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 18) } return this } func NewPopulatedNestedDefinition(r randyThetest, easy bool) *NestedDefinition { this := &NestedDefinition{} if r.Intn(10) != 0 { v174 := int64(r.Int63()) if r.Intn(2) == 0 { v174 *= -1 } this.Field1 = &v174 } if r.Intn(10) != 0 { v175 := NestedDefinition_NestedEnum([]int32{1}[r.Intn(1)]) this.EnumField = &v175 } if r.Intn(10) != 0 { this.NNM = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if r.Intn(10) != 0 { this.NM = NewPopulatedNestedDefinition_NestedMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 5) } return this } func NewPopulatedNestedDefinition_NestedMessage(r randyThetest, easy bool) *NestedDefinition_NestedMessage { this := &NestedDefinition_NestedMessage{} if r.Intn(10) != 0 { v176 := uint64(uint64(r.Uint32())) this.NestedField1 = &v176 } if r.Intn(10) != 0 { this.NNM = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r randyThetest, easy bool) *NestedDefinition_NestedMessage_NestedNestedMsg { this := &NestedDefinition_NestedMessage_NestedNestedMsg{} if r.Intn(10) != 0 { v177 := string(randStringThetest(r)) this.NestedNestedField1 = &v177 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 11) } return this } func NewPopulatedNestedScope(r randyThetest, easy bool) *NestedScope { this := &NestedScope{} if r.Intn(10) != 0 { this.A = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if r.Intn(10) != 0 { v178 := NestedDefinition_NestedEnum([]int32{1}[r.Intn(1)]) this.B = &v178 } if r.Intn(10) != 0 { this.C = NewPopulatedNestedDefinition_NestedMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinOptNativeDefault(r randyThetest, easy bool) *NinOptNativeDefault { this := &NinOptNativeDefault{} if r.Intn(10) != 0 { v179 := float64(r.Float64()) if r.Intn(2) == 0 { v179 *= -1 } this.Field1 = &v179 } if r.Intn(10) != 0 { v180 := float32(r.Float32()) if r.Intn(2) == 0 { v180 *= -1 } this.Field2 = &v180 } if r.Intn(10) != 0 { v181 := int32(r.Int31()) if r.Intn(2) == 0 { v181 *= -1 } this.Field3 = &v181 } if r.Intn(10) != 0 { v182 := int64(r.Int63()) if r.Intn(2) == 0 { v182 *= -1 } this.Field4 = &v182 } if r.Intn(10) != 0 { v183 := uint32(r.Uint32()) this.Field5 = &v183 } if r.Intn(10) != 0 { v184 := uint64(uint64(r.Uint32())) this.Field6 = &v184 } if r.Intn(10) != 0 { v185 := int32(r.Int31()) if r.Intn(2) == 0 { v185 *= -1 } this.Field7 = &v185 } if r.Intn(10) != 0 { v186 := int64(r.Int63()) if r.Intn(2) == 0 { v186 *= -1 } this.Field8 = &v186 } if r.Intn(10) != 0 { v187 := uint32(r.Uint32()) this.Field9 = &v187 } if r.Intn(10) != 0 { v188 := int32(r.Int31()) if r.Intn(2) == 0 { v188 *= -1 } this.Field10 = &v188 } if r.Intn(10) != 0 { v189 := uint64(uint64(r.Uint32())) this.Field11 = &v189 } if r.Intn(10) != 0 { v190 := int64(r.Int63()) if r.Intn(2) == 0 { v190 *= -1 } this.Field12 = &v190 } if r.Intn(10) != 0 { v191 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v191 } if r.Intn(10) != 0 { v192 := string(randStringThetest(r)) this.Field14 = &v192 } if r.Intn(10) != 0 { v193 := r.Intn(100) this.Field15 = make([]byte, v193) for i := 0; i < v193; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomContainer(r randyThetest, easy bool) *CustomContainer { this := &CustomContainer{} v194 := NewPopulatedNidOptCustom(r, easy) this.CustomStruct = *v194 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedCustomNameNidOptNative(r randyThetest, easy bool) *CustomNameNidOptNative { this := &CustomNameNidOptNative{} this.FieldA = float64(r.Float64()) if r.Intn(2) == 0 { this.FieldA *= -1 } this.FieldB = float32(r.Float32()) if r.Intn(2) == 0 { this.FieldB *= -1 } this.FieldC = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldC *= -1 } this.FieldD = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldD *= -1 } this.FieldE = uint32(r.Uint32()) this.FieldF = uint64(uint64(r.Uint32())) this.FieldG = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldG *= -1 } this.FieldH = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldH *= -1 } this.FieldI = uint32(r.Uint32()) this.FieldJ = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldJ *= -1 } this.FieldK = uint64(uint64(r.Uint32())) this.FieldL = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldL *= -1 } this.FieldM = bool(bool(r.Intn(2) == 0)) this.FieldN = string(randStringThetest(r)) v195 := r.Intn(100) this.FieldO = make([]byte, v195) for i := 0; i < v195; i++ { this.FieldO[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinOptNative(r randyThetest, easy bool) *CustomNameNinOptNative { this := &CustomNameNinOptNative{} if r.Intn(10) != 0 { v196 := float64(r.Float64()) if r.Intn(2) == 0 { v196 *= -1 } this.FieldA = &v196 } if r.Intn(10) != 0 { v197 := float32(r.Float32()) if r.Intn(2) == 0 { v197 *= -1 } this.FieldB = &v197 } if r.Intn(10) != 0 { v198 := int32(r.Int31()) if r.Intn(2) == 0 { v198 *= -1 } this.FieldC = &v198 } if r.Intn(10) != 0 { v199 := int64(r.Int63()) if r.Intn(2) == 0 { v199 *= -1 } this.FieldD = &v199 } if r.Intn(10) != 0 { v200 := uint32(r.Uint32()) this.FieldE = &v200 } if r.Intn(10) != 0 { v201 := uint64(uint64(r.Uint32())) this.FieldF = &v201 } if r.Intn(10) != 0 { v202 := int32(r.Int31()) if r.Intn(2) == 0 { v202 *= -1 } this.FieldG = &v202 } if r.Intn(10) != 0 { v203 := int64(r.Int63()) if r.Intn(2) == 0 { v203 *= -1 } this.FieldH = &v203 } if r.Intn(10) != 0 { v204 := uint32(r.Uint32()) this.FieldI = &v204 } if r.Intn(10) != 0 { v205 := int32(r.Int31()) if r.Intn(2) == 0 { v205 *= -1 } this.FieldJ = &v205 } if r.Intn(10) != 0 { v206 := uint64(uint64(r.Uint32())) this.FieldK = &v206 } if r.Intn(10) != 0 { v207 := int64(r.Int63()) if r.Intn(2) == 0 { v207 *= -1 } this.FielL = &v207 } if r.Intn(10) != 0 { v208 := bool(bool(r.Intn(2) == 0)) this.FieldM = &v208 } if r.Intn(10) != 0 { v209 := string(randStringThetest(r)) this.FieldN = &v209 } if r.Intn(10) != 0 { v210 := r.Intn(100) this.FieldO = make([]byte, v210) for i := 0; i < v210; i++ { this.FieldO[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinRepNative(r randyThetest, easy bool) *CustomNameNinRepNative { this := &CustomNameNinRepNative{} if r.Intn(10) != 0 { v211 := r.Intn(10) this.FieldA = make([]float64, v211) for i := 0; i < v211; i++ { this.FieldA[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.FieldA[i] *= -1 } } } if r.Intn(10) != 0 { v212 := r.Intn(10) this.FieldB = make([]float32, v212) for i := 0; i < v212; i++ { this.FieldB[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.FieldB[i] *= -1 } } } if r.Intn(10) != 0 { v213 := r.Intn(10) this.FieldC = make([]int32, v213) for i := 0; i < v213; i++ { this.FieldC[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldC[i] *= -1 } } } if r.Intn(10) != 0 { v214 := r.Intn(10) this.FieldD = make([]int64, v214) for i := 0; i < v214; i++ { this.FieldD[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldD[i] *= -1 } } } if r.Intn(10) != 0 { v215 := r.Intn(10) this.FieldE = make([]uint32, v215) for i := 0; i < v215; i++ { this.FieldE[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v216 := r.Intn(10) this.FieldF = make([]uint64, v216) for i := 0; i < v216; i++ { this.FieldF[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v217 := r.Intn(10) this.FieldG = make([]int32, v217) for i := 0; i < v217; i++ { this.FieldG[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldG[i] *= -1 } } } if r.Intn(10) != 0 { v218 := r.Intn(10) this.FieldH = make([]int64, v218) for i := 0; i < v218; i++ { this.FieldH[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldH[i] *= -1 } } } if r.Intn(10) != 0 { v219 := r.Intn(10) this.FieldI = make([]uint32, v219) for i := 0; i < v219; i++ { this.FieldI[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v220 := r.Intn(10) this.FieldJ = make([]int32, v220) for i := 0; i < v220; i++ { this.FieldJ[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldJ[i] *= -1 } } } if r.Intn(10) != 0 { v221 := r.Intn(10) this.FieldK = make([]uint64, v221) for i := 0; i < v221; i++ { this.FieldK[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v222 := r.Intn(10) this.FieldL = make([]int64, v222) for i := 0; i < v222; i++ { this.FieldL[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldL[i] *= -1 } } } if r.Intn(10) != 0 { v223 := r.Intn(10) this.FieldM = make([]bool, v223) for i := 0; i < v223; i++ { this.FieldM[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v224 := r.Intn(10) this.FieldN = make([]string, v224) for i := 0; i < v224; i++ { this.FieldN[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v225 := r.Intn(10) this.FieldO = make([][]byte, v225) for i := 0; i < v225; i++ { v226 := r.Intn(100) this.FieldO[i] = make([]byte, v226) for j := 0; j < v226; j++ { this.FieldO[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinStruct(r randyThetest, easy bool) *CustomNameNinStruct { this := &CustomNameNinStruct{} if r.Intn(10) != 0 { v227 := float64(r.Float64()) if r.Intn(2) == 0 { v227 *= -1 } this.FieldA = &v227 } if r.Intn(10) != 0 { v228 := float32(r.Float32()) if r.Intn(2) == 0 { v228 *= -1 } this.FieldB = &v228 } if r.Intn(10) != 0 { this.FieldC = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v229 := r.Intn(5) this.FieldD = make([]*NinOptNative, v229) for i := 0; i < v229; i++ { this.FieldD[i] = NewPopulatedNinOptNative(r, easy) } } if r.Intn(10) != 0 { v230 := uint64(uint64(r.Uint32())) this.FieldE = &v230 } if r.Intn(10) != 0 { v231 := int32(r.Int31()) if r.Intn(2) == 0 { v231 *= -1 } this.FieldF = &v231 } if r.Intn(10) != 0 { this.FieldG = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v232 := bool(bool(r.Intn(2) == 0)) this.FieldH = &v232 } if r.Intn(10) != 0 { v233 := string(randStringThetest(r)) this.FieldI = &v233 } if r.Intn(10) != 0 { v234 := r.Intn(100) this.FieldJ = make([]byte, v234) for i := 0; i < v234; i++ { this.FieldJ[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameCustomType(r randyThetest, easy bool) *CustomNameCustomType { this := &CustomNameCustomType{} if r.Intn(10) != 0 { this.FieldA = NewPopulatedUuid(r) } if r.Intn(10) != 0 { this.FieldB = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) } if r.Intn(10) != 0 { v235 := r.Intn(10) this.FieldC = make([]Uuid, v235) for i := 0; i < v235; i++ { v236 := NewPopulatedUuid(r) this.FieldC[i] = *v236 } } if r.Intn(10) != 0 { v237 := r.Intn(10) this.FieldD = make([]github_com_gogo_protobuf_test_custom.Uint128, v237) for i := 0; i < v237; i++ { v238 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.FieldD[i] = *v238 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 5) } return this } func NewPopulatedCustomNameNinEmbeddedStructUnion(r randyThetest, easy bool) *CustomNameNinEmbeddedStructUnion { this := &CustomNameNinEmbeddedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.NidOptNative = NewPopulatedNidOptNative(r, easy) case 1: this.FieldA = NewPopulatedNinOptNative(r, easy) case 2: v239 := bool(bool(r.Intn(2) == 0)) this.FieldB = &v239 } return this } func NewPopulatedCustomNameEnum(r randyThetest, easy bool) *CustomNameEnum { this := &CustomNameEnum{} if r.Intn(10) != 0 { v240 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.FieldA = &v240 } if r.Intn(10) != 0 { v241 := r.Intn(10) this.FieldB = make([]TheTestEnum, v241) for i := 0; i < v241; i++ { this.FieldB[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNoExtensionsMap(r randyThetest, easy bool) *NoExtensionsMap { this := &NoExtensionsMap{} if r.Intn(10) != 0 { v242 := int64(r.Int63()) if r.Intn(2) == 0 { v242 *= -1 } this.Field1 = &v242 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { fieldNumber := r.Intn(100) + 100 wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 201) } return this } func NewPopulatedUnrecognized(r randyThetest, easy bool) *Unrecognized { this := &Unrecognized{} if r.Intn(10) != 0 { v243 := string(randStringThetest(r)) this.Field1 = &v243 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUnrecognizedWithInner(r randyThetest, easy bool) *UnrecognizedWithInner { this := &UnrecognizedWithInner{} if r.Intn(10) != 0 { v244 := r.Intn(5) this.Embedded = make([]*UnrecognizedWithInner_Inner, v244) for i := 0; i < v244; i++ { this.Embedded[i] = NewPopulatedUnrecognizedWithInner_Inner(r, easy) } } if r.Intn(10) != 0 { v245 := string(randStringThetest(r)) this.Field2 = &v245 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedUnrecognizedWithInner_Inner(r randyThetest, easy bool) *UnrecognizedWithInner_Inner { this := &UnrecognizedWithInner_Inner{} if r.Intn(10) != 0 { v246 := uint32(r.Uint32()) this.Field1 = &v246 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUnrecognizedWithEmbed(r randyThetest, easy bool) *UnrecognizedWithEmbed { this := &UnrecognizedWithEmbed{} v247 := NewPopulatedUnrecognizedWithEmbed_Embedded(r, easy) this.UnrecognizedWithEmbed_Embedded = *v247 if r.Intn(10) != 0 { v248 := string(randStringThetest(r)) this.Field2 = &v248 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedUnrecognizedWithEmbed_Embedded(r randyThetest, easy bool) *UnrecognizedWithEmbed_Embedded { this := &UnrecognizedWithEmbed_Embedded{} if r.Intn(10) != 0 { v249 := uint32(r.Uint32()) this.Field1 = &v249 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNode(r randyThetest, easy bool) *Node { this := &Node{} if r.Intn(10) != 0 { v250 := string(randStringThetest(r)) this.Label = &v250 } if r.Intn(10) == 0 { v251 := r.Intn(5) this.Children = make([]*Node, v251) for i := 0; i < v251; i++ { this.Children[i] = NewPopulatedNode(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNonByteCustomType(r randyThetest, easy bool) *NonByteCustomType { this := &NonByteCustomType{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedT(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNidOptNonByteCustomType(r randyThetest, easy bool) *NidOptNonByteCustomType { this := &NidOptNonByteCustomType{} v252 := NewPopulatedT(r) this.Field1 = *v252 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptNonByteCustomType(r randyThetest, easy bool) *NinOptNonByteCustomType { this := &NinOptNonByteCustomType{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedT(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNidRepNonByteCustomType(r randyThetest, easy bool) *NidRepNonByteCustomType { this := &NidRepNonByteCustomType{} if r.Intn(10) != 0 { v253 := r.Intn(10) this.Field1 = make([]T, v253) for i := 0; i < v253; i++ { v254 := NewPopulatedT(r) this.Field1[i] = *v254 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinRepNonByteCustomType(r randyThetest, easy bool) *NinRepNonByteCustomType { this := &NinRepNonByteCustomType{} if r.Intn(10) != 0 { v255 := r.Intn(10) this.Field1 = make([]T, v255) for i := 0; i < v255; i++ { v256 := NewPopulatedT(r) this.Field1[i] = *v256 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedProtoType(r randyThetest, easy bool) *ProtoType { this := &ProtoType{} if r.Intn(10) != 0 { v257 := string(randStringThetest(r)) this.Field2 = &v257 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } type randyThetest interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneThetest(r randyThetest) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringThetest(r randyThetest) string { v258 := r.Intn(100) tmps := make([]rune, v258) for i := 0; i < v258; i++ { tmps[i] = randUTF8RuneThetest(r) } return string(tmps) } func randUnrecognizedThetest(r randyThetest, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldThetest(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldThetest(dAtA []byte, r randyThetest, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) v259 := r.Int63() if r.Intn(2) == 0 { v259 *= -1 } dAtA = encodeVarintPopulateThetest(dAtA, uint64(v259)) case 1: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateThetest(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateThetest(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *NidOptNative) Size() (n int) { var l int _ = l n += 9 n += 5 n += 1 + sovThetest(uint64(m.Field3)) n += 1 + sovThetest(uint64(m.Field4)) n += 1 + sovThetest(uint64(m.Field5)) n += 1 + sovThetest(uint64(m.Field6)) n += 1 + sozThetest(uint64(m.Field7)) n += 1 + sozThetest(uint64(m.Field8)) n += 5 n += 5 n += 9 n += 9 n += 2 l = len(m.Field14) n += 1 + l + sovThetest(uint64(l)) if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNative) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozThetest(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field5) > 0 { for _, e := range m.Field5 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field9) > 0 { n += 5 * len(m.Field9) } if len(m.Field10) > 0 { n += 5 * len(m.Field10) } if len(m.Field11) > 0 { n += 9 * len(m.Field11) } if len(m.Field12) > 0 { n += 9 * len(m.Field12) } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field5) > 0 { for _, e := range m.Field5 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field9) > 0 { n += 5 * len(m.Field9) } if len(m.Field10) > 0 { n += 5 * len(m.Field10) } if len(m.Field11) > 0 { n += 9 * len(m.Field11) } if len(m.Field12) > 0 { n += 9 * len(m.Field12) } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepPackedNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 1 + sovThetest(uint64(len(m.Field1)*8)) + len(m.Field1)*8 } if len(m.Field2) > 0 { n += 1 + sovThetest(uint64(len(m.Field2)*4)) + len(m.Field2)*4 } if len(m.Field3) > 0 { l = 0 for _, e := range m.Field3 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field4) > 0 { l = 0 for _, e := range m.Field4 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field5) > 0 { l = 0 for _, e := range m.Field5 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field6) > 0 { l = 0 for _, e := range m.Field6 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field7) > 0 { l = 0 for _, e := range m.Field7 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field8) > 0 { l = 0 for _, e := range m.Field8 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field9) > 0 { n += 1 + sovThetest(uint64(len(m.Field9)*4)) + len(m.Field9)*4 } if len(m.Field10) > 0 { n += 1 + sovThetest(uint64(len(m.Field10)*4)) + len(m.Field10)*4 } if len(m.Field11) > 0 { n += 1 + sovThetest(uint64(len(m.Field11)*8)) + len(m.Field11)*8 } if len(m.Field12) > 0 { n += 1 + sovThetest(uint64(len(m.Field12)*8)) + len(m.Field12)*8 } if len(m.Field13) > 0 { n += 1 + sovThetest(uint64(len(m.Field13))) + len(m.Field13)*1 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepPackedNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 1 + sovThetest(uint64(len(m.Field1)*8)) + len(m.Field1)*8 } if len(m.Field2) > 0 { n += 1 + sovThetest(uint64(len(m.Field2)*4)) + len(m.Field2)*4 } if len(m.Field3) > 0 { l = 0 for _, e := range m.Field3 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field4) > 0 { l = 0 for _, e := range m.Field4 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field5) > 0 { l = 0 for _, e := range m.Field5 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field6) > 0 { l = 0 for _, e := range m.Field6 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field7) > 0 { l = 0 for _, e := range m.Field7 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field8) > 0 { l = 0 for _, e := range m.Field8 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field9) > 0 { n += 1 + sovThetest(uint64(len(m.Field9)*4)) + len(m.Field9)*4 } if len(m.Field10) > 0 { n += 1 + sovThetest(uint64(len(m.Field10)*4)) + len(m.Field10)*4 } if len(m.Field11) > 0 { n += 1 + sovThetest(uint64(len(m.Field11)*8)) + len(m.Field11)*8 } if len(m.Field12) > 0 { n += 1 + sovThetest(uint64(len(m.Field12)*8)) + len(m.Field12)*8 } if len(m.Field13) > 0 { n += 1 + sovThetest(uint64(len(m.Field13))) + len(m.Field13)*1 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptStruct) Size() (n int) { var l int _ = l n += 9 n += 5 l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) n += 1 + sovThetest(uint64(m.Field6)) n += 1 + sozThetest(uint64(m.Field7)) l = m.Field8.Size() n += 1 + l + sovThetest(uint64(l)) n += 2 l = len(m.Field14) n += 1 + l + sovThetest(uint64(l)) if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptStruct) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field4 != nil { l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { l = m.Field8.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepStruct) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepStruct) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidEmbeddedStruct) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) n += 3 if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinEmbeddedStruct) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field200 != nil { l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) } if m.Field210 != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidNestedStruct) Size() (n int) { var l int _ = l l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) if len(m.Field2) > 0 { for _, e := range m.Field2 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinNestedStruct) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.Field2) > 0 { for _, e := range m.Field2 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptCustom) Size() (n int) { var l int _ = l l = m.Id.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomDash) Size() (n int) { var l int _ = l if m.Value != nil { l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptCustom) Size() (n int) { var l int _ = l if m.Id != nil { l = m.Id.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Value != nil { l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepCustom) Size() (n int) { var l int _ = l if len(m.Id) > 0 { for _, e := range m.Id { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Value) > 0 { for _, e := range m.Value { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepCustom) Size() (n int) { var l int _ = l if len(m.Id) > 0 { for _, e := range m.Id { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Value) > 0 { for _, e := range m.Value { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNativeUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptStructUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field4 != nil { l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinEmbeddedStructUnion) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field200 != nil { l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) } if m.Field210 != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinNestedStructUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field2 != nil { l = m.Field2.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Tree) Size() (n int) { var l int _ = l if m.Or != nil { l = m.Or.Size() n += 1 + l + sovThetest(uint64(l)) } if m.And != nil { l = m.And.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Leaf != nil { l = m.Leaf.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OrBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AndBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Leaf) Size() (n int) { var l int _ = l n += 1 + sovThetest(uint64(m.Value)) l = len(m.StrValue) n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *DeepTree) Size() (n int) { var l int _ = l if m.Down != nil { l = m.Down.Size() n += 1 + l + sovThetest(uint64(l)) } if m.And != nil { l = m.And.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Leaf != nil { l = m.Leaf.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *ADeepBranch) Size() (n int) { var l int _ = l l = m.Down.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AndDeepBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *DeepLeaf) Size() (n int) { var l int _ = l l = m.Tree.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Nil) Size() (n int) { var l int _ = l if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptEnum) Size() (n int) { var l int _ = l n += 1 + sovThetest(uint64(m.Field1)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptEnum) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepEnum) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field2) > 0 { for _, e := range m.Field2 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepEnum) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field2) > 0 { for _, e := range m.Field2 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptEnumDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AnotherNinOptEnum) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AnotherNinOptEnumDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Timer) Size() (n int) { var l int _ = l n += 9 n += 9 if m.Data != nil { l = len(m.Data) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *MyExtendable) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } n += github_com_gogo_protobuf_proto.SizeOfInternalExtension(m) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OtherExtenable) Size() (n int) { var l int _ = l if m.M != nil { l = m.M.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field13 != nil { n += 1 + sovThetest(uint64(*m.Field13)) } n += github_com_gogo_protobuf_proto.SizeOfInternalExtension(m) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.EnumField != nil { n += 1 + sovThetest(uint64(*m.EnumField)) } if m.NNM != nil { l = m.NNM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.NM != nil { l = m.NM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition_NestedMessage) Size() (n int) { var l int _ = l if m.NestedField1 != nil { n += 9 } if m.NNM != nil { l = m.NNM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Size() (n int) { var l int _ = l if m.NestedNestedField1 != nil { l = len(*m.NestedNestedField1) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedScope) Size() (n int) { var l int _ = l if m.A != nil { l = m.A.Size() n += 1 + l + sovThetest(uint64(l)) } if m.B != nil { n += 1 + sovThetest(uint64(*m.B)) } if m.C != nil { l = m.C.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNativeDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozThetest(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomContainer) Size() (n int) { var l int _ = l l = m.CustomStruct.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNidOptNative) Size() (n int) { var l int _ = l n += 9 n += 5 n += 1 + sovThetest(uint64(m.FieldC)) n += 1 + sovThetest(uint64(m.FieldD)) n += 1 + sovThetest(uint64(m.FieldE)) n += 1 + sovThetest(uint64(m.FieldF)) n += 1 + sozThetest(uint64(m.FieldG)) n += 1 + sozThetest(uint64(m.FieldH)) n += 5 n += 5 n += 9 n += 9 n += 2 l = len(m.FieldN) n += 1 + l + sovThetest(uint64(l)) if m.FieldO != nil { l = len(m.FieldO) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinOptNative) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 9 } if m.FieldB != nil { n += 5 } if m.FieldC != nil { n += 1 + sovThetest(uint64(*m.FieldC)) } if m.FieldD != nil { n += 1 + sovThetest(uint64(*m.FieldD)) } if m.FieldE != nil { n += 1 + sovThetest(uint64(*m.FieldE)) } if m.FieldF != nil { n += 1 + sovThetest(uint64(*m.FieldF)) } if m.FieldG != nil { n += 1 + sozThetest(uint64(*m.FieldG)) } if m.FieldH != nil { n += 1 + sozThetest(uint64(*m.FieldH)) } if m.FieldI != nil { n += 5 } if m.FieldJ != nil { n += 5 } if m.FieldK != nil { n += 9 } if m.FielL != nil { n += 9 } if m.FieldM != nil { n += 2 } if m.FieldN != nil { l = len(*m.FieldN) n += 1 + l + sovThetest(uint64(l)) } if m.FieldO != nil { l = len(m.FieldO) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinRepNative) Size() (n int) { var l int _ = l if len(m.FieldA) > 0 { n += 9 * len(m.FieldA) } if len(m.FieldB) > 0 { n += 5 * len(m.FieldB) } if len(m.FieldC) > 0 { for _, e := range m.FieldC { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldD) > 0 { for _, e := range m.FieldD { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldE) > 0 { for _, e := range m.FieldE { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldF) > 0 { for _, e := range m.FieldF { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldG) > 0 { for _, e := range m.FieldG { n += 1 + sozThetest(uint64(e)) } } if len(m.FieldH) > 0 { for _, e := range m.FieldH { n += 1 + sozThetest(uint64(e)) } } if len(m.FieldI) > 0 { n += 5 * len(m.FieldI) } if len(m.FieldJ) > 0 { n += 5 * len(m.FieldJ) } if len(m.FieldK) > 0 { n += 9 * len(m.FieldK) } if len(m.FieldL) > 0 { n += 9 * len(m.FieldL) } if len(m.FieldM) > 0 { n += 2 * len(m.FieldM) } if len(m.FieldN) > 0 { for _, s := range m.FieldN { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.FieldO) > 0 { for _, b := range m.FieldO { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinStruct) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 9 } if m.FieldB != nil { n += 5 } if m.FieldC != nil { l = m.FieldC.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.FieldD) > 0 { for _, e := range m.FieldD { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.FieldE != nil { n += 1 + sovThetest(uint64(*m.FieldE)) } if m.FieldF != nil { n += 1 + sozThetest(uint64(*m.FieldF)) } if m.FieldG != nil { l = m.FieldG.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldH != nil { n += 2 } if m.FieldI != nil { l = len(*m.FieldI) n += 1 + l + sovThetest(uint64(l)) } if m.FieldJ != nil { l = len(m.FieldJ) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameCustomType) Size() (n int) { var l int _ = l if m.FieldA != nil { l = m.FieldA.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldB != nil { l = m.FieldB.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.FieldC) > 0 { for _, e := range m.FieldC { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.FieldD) > 0 { for _, e := range m.FieldD { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinEmbeddedStructUnion) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldA != nil { l = m.FieldA.Size() n += 2 + l + sovThetest(uint64(l)) } if m.FieldB != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameEnum) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 1 + sovThetest(uint64(*m.FieldA)) } if len(m.FieldB) > 0 { for _, e := range m.FieldB { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NoExtensionsMap) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.XXX_extensions != nil { n += len(m.XXX_extensions) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Unrecognized) Size() (n int) { var l int _ = l if m.Field1 != nil { l = len(*m.Field1) n += 1 + l + sovThetest(uint64(l)) } return n } func (m *UnrecognizedWithInner) Size() (n int) { var l int _ = l if len(m.Embedded) > 0 { for _, e := range m.Embedded { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *UnrecognizedWithInner_Inner) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } return n } func (m *UnrecognizedWithEmbed) Size() (n int) { var l int _ = l l = m.UnrecognizedWithEmbed_Embedded.Size() n += 1 + l + sovThetest(uint64(l)) if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *UnrecognizedWithEmbed_Embedded) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } return n } func (m *Node) Size() (n int) { var l int _ = l if m.Label != nil { l = len(*m.Label) n += 1 + l + sovThetest(uint64(l)) } if len(m.Children) > 0 { for _, e := range m.Children { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NonByteCustomType) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptNonByteCustomType) Size() (n int) { var l int _ = l l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNonByteCustomType) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepNonByteCustomType) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepNonByteCustomType) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *ProtoType) Size() (n int) { var l int _ = l if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovThetest(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozThetest(x uint64) (n int) { return sovThetest(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *NidOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNative{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + valueToStringThetest(this.Field8) + `,`, `Field9:` + valueToStringThetest(this.Field9) + `,`, `Field10:` + valueToStringThetest(this.Field10) + `,`, `Field11:` + valueToStringThetest(this.Field11) + `,`, `Field12:` + valueToStringThetest(this.Field12) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepPackedNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepPackedNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepPackedNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepPackedNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(strings.Replace(this.Field3.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field4:` + strings.Replace(strings.Replace(this.Field4.String(), "NinOptNative", "NinOptNative", 1), `&`, ``, 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(strings.Replace(this.Field8.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptStruct{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field4:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1), `&`, ``, 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidEmbeddedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidEmbeddedStruct{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(strings.Replace(this.Field200.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field210:` + fmt.Sprintf("%v", this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinEmbeddedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinEmbeddedStruct{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(fmt.Sprintf("%v", this.Field200), "NidOptNative", "NidOptNative", 1) + `,`, `Field210:` + valueToStringThetest(this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidNestedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidNestedStruct{`, `Field1:` + strings.Replace(strings.Replace(this.Field1.String(), "NidOptStruct", "NidOptStruct", 1), `&`, ``, 1) + `,`, `Field2:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field2), "NidRepStruct", "NidRepStruct", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinNestedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinNestedStruct{`, `Field1:` + strings.Replace(fmt.Sprintf("%v", this.Field1), "NinOptStruct", "NinOptStruct", 1) + `,`, `Field2:` + strings.Replace(fmt.Sprintf("%v", this.Field2), "NinRepStruct", "NinRepStruct", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomDash) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomDash{`, `Value:` + valueToStringThetest(this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptCustom{`, `Id:` + valueToStringThetest(this.Id) + `,`, `Value:` + valueToStringThetest(this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNativeUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNativeUnion{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptStructUnion{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinEmbeddedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinEmbeddedStructUnion{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(fmt.Sprintf("%v", this.Field200), "NinOptNative", "NinOptNative", 1) + `,`, `Field210:` + valueToStringThetest(this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinNestedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinNestedStructUnion{`, `Field1:` + strings.Replace(fmt.Sprintf("%v", this.Field1), "NinOptNativeUnion", "NinOptNativeUnion", 1) + `,`, `Field2:` + strings.Replace(fmt.Sprintf("%v", this.Field2), "NinOptStructUnion", "NinOptStructUnion", 1) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NinEmbeddedStructUnion", "NinEmbeddedStructUnion", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Tree) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Tree{`, `Or:` + strings.Replace(fmt.Sprintf("%v", this.Or), "OrBranch", "OrBranch", 1) + `,`, `And:` + strings.Replace(fmt.Sprintf("%v", this.And), "AndBranch", "AndBranch", 1) + `,`, `Leaf:` + strings.Replace(fmt.Sprintf("%v", this.Leaf), "Leaf", "Leaf", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OrBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OrBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AndBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AndBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Leaf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Leaf{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `StrValue:` + fmt.Sprintf("%v", this.StrValue) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *DeepTree) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&DeepTree{`, `Down:` + strings.Replace(fmt.Sprintf("%v", this.Down), "ADeepBranch", "ADeepBranch", 1) + `,`, `And:` + strings.Replace(fmt.Sprintf("%v", this.And), "AndDeepBranch", "AndDeepBranch", 1) + `,`, `Leaf:` + strings.Replace(fmt.Sprintf("%v", this.Leaf), "DeepLeaf", "DeepLeaf", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *ADeepBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ADeepBranch{`, `Down:` + strings.Replace(strings.Replace(this.Down.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AndDeepBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AndDeepBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *DeepLeaf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&DeepLeaf{`, `Tree:` + strings.Replace(strings.Replace(this.Tree.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Nil) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Nil{`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptEnum{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptEnumDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptEnumDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AnotherNinOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AnotherNinOptEnum{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AnotherNinOptEnumDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AnotherNinOptEnumDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Timer) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Timer{`, `Time1:` + fmt.Sprintf("%v", this.Time1) + `,`, `Time2:` + fmt.Sprintf("%v", this.Time2) + `,`, `Data:` + fmt.Sprintf("%v", this.Data) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *MyExtendable) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&MyExtendable{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_InternalExtensions:` + github_com_gogo_protobuf_proto.StringFromInternalExtension(this) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OtherExtenable) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OtherExtenable{`, `M:` + strings.Replace(fmt.Sprintf("%v", this.M), "MyExtendable", "MyExtendable", 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `XXX_InternalExtensions:` + github_com_gogo_protobuf_proto.StringFromInternalExtension(this) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `EnumField:` + valueToStringThetest(this.EnumField) + `,`, `NNM:` + strings.Replace(fmt.Sprintf("%v", this.NNM), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `NM:` + strings.Replace(fmt.Sprintf("%v", this.NM), "NestedDefinition_NestedMessage", "NestedDefinition_NestedMessage", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition_NestedMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition_NestedMessage{`, `NestedField1:` + valueToStringThetest(this.NestedField1) + `,`, `NNM:` + strings.Replace(fmt.Sprintf("%v", this.NNM), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition_NestedMessage_NestedNestedMsg{`, `NestedNestedField1:` + valueToStringThetest(this.NestedNestedField1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedScope) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedScope{`, `A:` + strings.Replace(fmt.Sprintf("%v", this.A), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `B:` + valueToStringThetest(this.B) + `,`, `C:` + strings.Replace(fmt.Sprintf("%v", this.C), "NestedDefinition_NestedMessage", "NestedDefinition_NestedMessage", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNativeDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNativeDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + valueToStringThetest(this.Field8) + `,`, `Field9:` + valueToStringThetest(this.Field9) + `,`, `Field10:` + valueToStringThetest(this.Field10) + `,`, `Field11:` + valueToStringThetest(this.Field11) + `,`, `Field12:` + valueToStringThetest(this.Field12) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomContainer) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomContainer{`, `CustomStruct:` + strings.Replace(strings.Replace(this.CustomStruct.String(), "NidOptCustom", "NidOptCustom", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNidOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNidOptNative{`, `FieldA:` + fmt.Sprintf("%v", this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `FieldE:` + fmt.Sprintf("%v", this.FieldE) + `,`, `FieldF:` + fmt.Sprintf("%v", this.FieldF) + `,`, `FieldG:` + fmt.Sprintf("%v", this.FieldG) + `,`, `FieldH:` + fmt.Sprintf("%v", this.FieldH) + `,`, `FieldI:` + fmt.Sprintf("%v", this.FieldI) + `,`, `FieldJ:` + fmt.Sprintf("%v", this.FieldJ) + `,`, `FieldK:` + fmt.Sprintf("%v", this.FieldK) + `,`, `FieldL:` + fmt.Sprintf("%v", this.FieldL) + `,`, `FieldM:` + fmt.Sprintf("%v", this.FieldM) + `,`, `FieldN:` + fmt.Sprintf("%v", this.FieldN) + `,`, `FieldO:` + fmt.Sprintf("%v", this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinOptNative{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + valueToStringThetest(this.FieldC) + `,`, `FieldD:` + valueToStringThetest(this.FieldD) + `,`, `FieldE:` + valueToStringThetest(this.FieldE) + `,`, `FieldF:` + valueToStringThetest(this.FieldF) + `,`, `FieldG:` + valueToStringThetest(this.FieldG) + `,`, `FieldH:` + valueToStringThetest(this.FieldH) + `,`, `FieldI:` + valueToStringThetest(this.FieldI) + `,`, `FieldJ:` + valueToStringThetest(this.FieldJ) + `,`, `FieldK:` + valueToStringThetest(this.FieldK) + `,`, `FielL:` + valueToStringThetest(this.FielL) + `,`, `FieldM:` + valueToStringThetest(this.FieldM) + `,`, `FieldN:` + valueToStringThetest(this.FieldN) + `,`, `FieldO:` + valueToStringThetest(this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinRepNative{`, `FieldA:` + fmt.Sprintf("%v", this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `FieldE:` + fmt.Sprintf("%v", this.FieldE) + `,`, `FieldF:` + fmt.Sprintf("%v", this.FieldF) + `,`, `FieldG:` + fmt.Sprintf("%v", this.FieldG) + `,`, `FieldH:` + fmt.Sprintf("%v", this.FieldH) + `,`, `FieldI:` + fmt.Sprintf("%v", this.FieldI) + `,`, `FieldJ:` + fmt.Sprintf("%v", this.FieldJ) + `,`, `FieldK:` + fmt.Sprintf("%v", this.FieldK) + `,`, `FieldL:` + fmt.Sprintf("%v", this.FieldL) + `,`, `FieldM:` + fmt.Sprintf("%v", this.FieldM) + `,`, `FieldN:` + fmt.Sprintf("%v", this.FieldN) + `,`, `FieldO:` + fmt.Sprintf("%v", this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinStruct{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + strings.Replace(fmt.Sprintf("%v", this.FieldC), "NidOptNative", "NidOptNative", 1) + `,`, `FieldD:` + strings.Replace(fmt.Sprintf("%v", this.FieldD), "NinOptNative", "NinOptNative", 1) + `,`, `FieldE:` + valueToStringThetest(this.FieldE) + `,`, `FieldF:` + valueToStringThetest(this.FieldF) + `,`, `FieldG:` + strings.Replace(fmt.Sprintf("%v", this.FieldG), "NidOptNative", "NidOptNative", 1) + `,`, `FieldH:` + valueToStringThetest(this.FieldH) + `,`, `FieldI:` + valueToStringThetest(this.FieldI) + `,`, `FieldJ:` + valueToStringThetest(this.FieldJ) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameCustomType{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinEmbeddedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinEmbeddedStructUnion{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `FieldA:` + strings.Replace(fmt.Sprintf("%v", this.FieldA), "NinOptNative", "NinOptNative", 1) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameEnum{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NoExtensionsMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NoExtensionsMap{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_extensions:` + github_com_gogo_protobuf_proto.StringFromExtensionsBytes(this.XXX_extensions) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Unrecognized) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Unrecognized{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithInner) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithInner{`, `Embedded:` + strings.Replace(fmt.Sprintf("%v", this.Embedded), "UnrecognizedWithInner_Inner", "UnrecognizedWithInner_Inner", 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithInner_Inner) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithInner_Inner{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithEmbed) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithEmbed{`, `UnrecognizedWithEmbed_Embedded:` + strings.Replace(strings.Replace(this.UnrecognizedWithEmbed_Embedded.String(), "UnrecognizedWithEmbed_Embedded", "UnrecognizedWithEmbed_Embedded", 1), `&`, ``, 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithEmbed_Embedded) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithEmbed_Embedded{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *Node) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Node{`, `Label:` + valueToStringThetest(this.Label) + `,`, `Children:` + strings.Replace(fmt.Sprintf("%v", this.Children), "Node", "Node", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NonByteCustomType{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNonByteCustomType{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *ProtoType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ProtoType{`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringThetest(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (this *NinOptNativeUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } if this.Field4 != nil { return this.Field4 } if this.Field5 != nil { return this.Field5 } if this.Field6 != nil { return this.Field6 } if this.Field13 != nil { return this.Field13 } if this.Field14 != nil { return this.Field14 } if this.Field15 != nil { return this.Field15 } return nil } func (this *NinOptNativeUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *float64: this.Field1 = vt case *float32: this.Field2 = vt case *int32: this.Field3 = vt case *int64: this.Field4 = vt case *uint32: this.Field5 = vt case *uint64: this.Field6 = vt case *bool: this.Field13 = vt case *string: this.Field14 = vt case []byte: this.Field15 = vt default: return false } return true } func (this *NinOptStructUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } if this.Field4 != nil { return this.Field4 } if this.Field6 != nil { return this.Field6 } if this.Field7 != nil { return this.Field7 } if this.Field13 != nil { return this.Field13 } if this.Field14 != nil { return this.Field14 } if this.Field15 != nil { return this.Field15 } return nil } func (this *NinOptStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *float64: this.Field1 = vt case *float32: this.Field2 = vt case *NidOptNative: this.Field3 = vt case *NinOptNative: this.Field4 = vt case *uint64: this.Field6 = vt case *int32: this.Field7 = vt case *bool: this.Field13 = vt case *string: this.Field14 = vt case []byte: this.Field15 = vt default: return false } return true } func (this *NinEmbeddedStructUnion) GetValue() interface{} { if this.NidOptNative != nil { return this.NidOptNative } if this.Field200 != nil { return this.Field200 } if this.Field210 != nil { return this.Field210 } return nil } func (this *NinEmbeddedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NidOptNative: this.NidOptNative = vt case *NinOptNative: this.Field200 = vt case *bool: this.Field210 = vt default: return false } return true } func (this *NinNestedStructUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } return nil } func (this *NinNestedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NinOptNativeUnion: this.Field1 = vt case *NinOptStructUnion: this.Field2 = vt case *NinEmbeddedStructUnion: this.Field3 = vt default: this.Field1 = new(NinOptNativeUnion) if set := this.Field1.SetValue(value); set { return true } this.Field1 = nil this.Field2 = new(NinOptStructUnion) if set := this.Field2.SetValue(value); set { return true } this.Field2 = nil this.Field3 = new(NinEmbeddedStructUnion) if set := this.Field3.SetValue(value); set { return true } this.Field3 = nil return false } return true } func (this *Tree) GetValue() interface{} { if this.Or != nil { return this.Or } if this.And != nil { return this.And } if this.Leaf != nil { return this.Leaf } return nil } func (this *Tree) SetValue(value interface{}) bool { switch vt := value.(type) { case *OrBranch: this.Or = vt case *AndBranch: this.And = vt case *Leaf: this.Leaf = vt default: return false } return true } func (this *DeepTree) GetValue() interface{} { if this.Down != nil { return this.Down } if this.And != nil { return this.And } if this.Leaf != nil { return this.Leaf } return nil } func (this *DeepTree) SetValue(value interface{}) bool { switch vt := value.(type) { case *ADeepBranch: this.Down = vt case *AndDeepBranch: this.And = vt case *DeepLeaf: this.Leaf = vt default: return false } return true } func (this *CustomNameNinEmbeddedStructUnion) GetValue() interface{} { if this.NidOptNative != nil { return this.NidOptNative } if this.FieldA != nil { return this.FieldA } if this.FieldB != nil { return this.FieldB } return nil } func (this *CustomNameNinEmbeddedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NidOptNative: this.NidOptNative = vt case *NinOptNative: this.FieldA = vt case *bool: this.FieldB = vt default: return false } return true } func (m *NidOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field1 = float64(math.Float64frombits(v)) case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field2 = float32(math.Float32frombits(v)) case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } m.Field3 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field3 |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } m.Field4 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field4 |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } m.Field5 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field5 |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } m.Field6 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field6 |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = int64(v) case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } m.Field9 = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.Field9 = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } m.Field10 = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.Field10 = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } m.Field11 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Field11 = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } m.Field12 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Field12 = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = bool(v != 0) case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = &v case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) v2 := int64(v) m.Field8 = &v2 case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = &v case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = &v case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = &v case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = append(m.Field14, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15, make([]byte, postIndex-iNdEx)) copy(m.Field15[len(m.Field15)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = append(m.Field14, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15, make([]byte, postIndex-iNdEx)) copy(m.Field15[len(m.Field15)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepPackedNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepPackedNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepPackedNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepPackedNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepPackedNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepPackedNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidOptStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field1 = float64(math.Float64frombits(v)) case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field2 = float32(math.Float32frombits(v)) case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field3.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field4.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } m.Field6 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field6 |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = v case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field8.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = bool(v != 0) case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field3 == nil { m.Field3 = &NidOptNative{} } if err := m.Field3.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field4 == nil { m.Field4 = &NinOptNative{} } if err := m.Field4.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field8 == nil { m.Field8 = &NidOptNative{} } if err := m.Field8.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field3 = append(m.Field3, NidOptNative{}) if err := m.Field3[len(m.Field3)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field4 = append(m.Field4, NinOptNative{}) if err := m.Field4[len(m.Field4)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field8 = append(m.Field8, NidOptNative{}) if err := m.Field8[len(m.Field8)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = append(m.Field14, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15, make([]byte, postIndex-iNdEx)) copy(m.Field15[len(m.Field15)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field3 = append(m.Field3, &NidOptNative{}) if err := m.Field3[len(m.Field3)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field4 = append(m.Field4, &NinOptNative{}) if err := m.Field4[len(m.Field4)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field8 = append(m.Field8, &NidOptNative{}) if err := m.Field8[len(m.Field8)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = append(m.Field14, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15, make([]byte, postIndex-iNdEx)) copy(m.Field15[len(m.Field15)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidEmbeddedStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidEmbeddedStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidEmbeddedStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NidOptNative", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NidOptNative == nil { m.NidOptNative = &NidOptNative{} } if err := m.NidOptNative.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 200: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field200", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field200.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 210: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field210", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field210 = bool(v != 0) default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinEmbeddedStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinEmbeddedStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinEmbeddedStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NidOptNative", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NidOptNative == nil { m.NidOptNative = &NidOptNative{} } if err := m.NidOptNative.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 200: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field200", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field200 == nil { m.Field200 = &NidOptNative{} } if err := m.Field200.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 210: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field210", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field210 = &b default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidNestedStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidNestedStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidNestedStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field2 = append(m.Field2, NidRepStruct{}) if err := m.Field2[len(m.Field2)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinNestedStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinNestedStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinNestedStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field1 == nil { m.Field1 = &NinOptStruct{} } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field2 = append(m.Field2, &NinRepStruct{}) if err := m.Field2[len(m.Field2)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidOptCustom) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptCustom: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptCustom: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Id.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Value.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomDash) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomDash: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomDash: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom_dash_type.Bytes m.Value = &v if err := m.Value.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptCustom) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptCustom: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptCustom: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.Id = &v if err := m.Id.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.Value = &v if err := m.Value.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepCustom) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepCustom: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepCustom: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.Id = append(m.Id, v) if err := m.Id[len(m.Id)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.Value = append(m.Value, v) if err := m.Value[len(m.Value)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepCustom) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepCustom: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepCustom: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.Id = append(m.Id, v) if err := m.Id[len(m.Id)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.Value = append(m.Value, v) if err := m.Value[len(m.Value)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNativeUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNativeUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNativeUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = &v case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptStructUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptStructUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptStructUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field3 == nil { m.Field3 = &NidOptNative{} } if err := m.Field3.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field4 == nil { m.Field4 = &NinOptNative{} } if err := m.Field4.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinEmbeddedStructUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinEmbeddedStructUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinEmbeddedStructUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NidOptNative", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NidOptNative == nil { m.NidOptNative = &NidOptNative{} } if err := m.NidOptNative.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 200: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field200", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field200 == nil { m.Field200 = &NinOptNative{} } if err := m.Field200.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 210: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field210", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field210 = &b default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinNestedStructUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinNestedStructUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinNestedStructUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field1 == nil { m.Field1 = &NinOptNativeUnion{} } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field2 == nil { m.Field2 = &NinOptStructUnion{} } if err := m.Field2.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field3 == nil { m.Field3 = &NinEmbeddedStructUnion{} } if err := m.Field3.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Tree) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Tree: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Tree: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Or", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Or == nil { m.Or = &OrBranch{} } if err := m.Or.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field And", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.And == nil { m.And = &AndBranch{} } if err := m.And.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Leaf", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Leaf == nil { m.Leaf = &Leaf{} } if err := m.Leaf.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OrBranch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OrBranch: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OrBranch: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Left", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Left.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Right", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Right.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AndBranch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AndBranch: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AndBranch: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Left", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Left.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Right", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Right.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Leaf) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Leaf: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Leaf: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } m.Value = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Value |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StrValue", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.StrValue = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *DeepTree) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: DeepTree: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: DeepTree: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Down", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Down == nil { m.Down = &ADeepBranch{} } if err := m.Down.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field And", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.And == nil { m.And = &AndDeepBranch{} } if err := m.And.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Leaf", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Leaf == nil { m.Leaf = &DeepLeaf{} } if err := m.Leaf.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ADeepBranch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: ADeepBranch: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: ADeepBranch: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Down", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Down.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AndDeepBranch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AndDeepBranch: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AndDeepBranch: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Left", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Left.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Right", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Right.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *DeepLeaf) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: DeepLeaf: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: DeepLeaf: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Tree", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Tree.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Nil) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Nil: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Nil: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidOptEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } m.Field1 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field1 |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 0 { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = append(m.Field1, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = append(m.Field1, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 0 { var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = append(m.Field2, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = append(m.Field2, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 0 { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = append(m.Field1, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = append(m.Field1, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 0 { var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = append(m.Field2, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = append(m.Field2, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptEnumDefault) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptEnumDefault: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptEnumDefault: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AnotherNinOptEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AnotherNinOptEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AnotherNinOptEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v AnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (AnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AnotherNinOptEnumDefault) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AnotherNinOptEnumDefault: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AnotherNinOptEnumDefault: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v AnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (AnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Timer) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Timer: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Timer: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Time1", wireType) } m.Time1 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Time1 = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 2: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Time2", wireType) } m.Time2 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Time2 = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) if m.Data == nil { m.Data = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *MyExtendable) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MyExtendable: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MyExtendable: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: if (fieldNum >= 100) && (fieldNum < 200) { var sizeOfWire int for { sizeOfWire++ wire >>= 7 if wire == 0 { break } } iNdEx -= sizeOfWire skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } github_com_gogo_protobuf_proto.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy]) iNdEx += skippy } else { iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OtherExtenable) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OtherExtenable: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OtherExtenable: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field M", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.M == nil { m.M = &MyExtendable{} } if err := m.M.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = &v default: if ((fieldNum >= 14) && (fieldNum < 17)) || ((fieldNum >= 10) && (fieldNum < 13)) { var sizeOfWire int for { sizeOfWire++ wire >>= 7 if wire == 0 { break } } iNdEx -= sizeOfWire skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } github_com_gogo_protobuf_proto.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy]) iNdEx += skippy } else { iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NestedDefinition) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedDefinition: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedDefinition: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field EnumField", wireType) } var v NestedDefinition_NestedEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (NestedDefinition_NestedEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.EnumField = &v case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NNM", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NNM == nil { m.NNM = &NestedDefinition_NestedMessage_NestedNestedMsg{} } if err := m.NNM.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NM", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NM == nil { m.NM = &NestedDefinition_NestedMessage{} } if err := m.NM.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NestedDefinition_NestedMessage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedMessage: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedMessage: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field NestedField1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.NestedField1 = &v case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NNM", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NNM == nil { m.NNM = &NestedDefinition_NestedMessage_NestedNestedMsg{} } if err := m.NNM.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedNestedMsg: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedNestedMsg: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NestedNestedField1", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.NestedNestedField1 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NestedScope) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedScope: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedScope: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field A", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.A == nil { m.A = &NestedDefinition_NestedMessage_NestedNestedMsg{} } if err := m.A.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var v NestedDefinition_NestedEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (NestedDefinition_NestedEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.B = &v case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field C", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.C == nil { m.C = &NestedDefinition_NestedMessage{} } if err := m.C.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNativeDefault) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNativeDefault: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNativeDefault: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = &v case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) v2 := int64(v) m.Field8 = &v2 case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = &v case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = &v case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = &v case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomContainer) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomContainer: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomContainer: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CustomStruct", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.CustomStruct.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNidOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNidOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNidOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldA = float64(math.Float64frombits(v)) case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldB = float32(math.Float32frombits(v)) case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } m.FieldC = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.FieldC |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } m.FieldD = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.FieldD |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldE", wireType) } m.FieldE = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.FieldE |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldF", wireType) } m.FieldF = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.FieldF |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldG", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldG = v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldH", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.FieldH = int64(v) case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldI", wireType) } m.FieldI = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.FieldI = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldJ", wireType) } m.FieldJ = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.FieldJ = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldK", wireType) } m.FieldK = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.FieldK = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldL", wireType) } m.FieldL = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.FieldL = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldM", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldM = bool(v != 0) case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldN", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldN = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldO", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldO = append(m.FieldO[:0], dAtA[iNdEx:postIndex]...) if m.FieldO == nil { m.FieldO = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNinOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNinOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNinOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.FieldA = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.FieldB = &v2 case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldC = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldD = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldE", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldE = &v case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldF", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldF = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldG", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldG = &v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldH", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) v2 := int64(v) m.FieldH = &v2 case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldI", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldI = &v case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldJ", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldJ = &v case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldK", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldK = &v case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FielL", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FielL = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldM", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.FieldM = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldN", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.FieldN = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldO", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldO = append(m.FieldO[:0], dAtA[iNdEx:postIndex]...) if m.FieldO == nil { m.FieldO = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNinRepNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNinRepNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNinRepNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.FieldA = append(m.FieldA, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.FieldA = append(m.FieldA, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.FieldB = append(m.FieldB, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.FieldB = append(m.FieldB, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldC = append(m.FieldC, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldC = append(m.FieldC, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldD = append(m.FieldD, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldD = append(m.FieldD, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldE = append(m.FieldE, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldE = append(m.FieldE, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldE", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldF = append(m.FieldF, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldF = append(m.FieldF, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldF", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldG = append(m.FieldG, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldG = append(m.FieldG, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldG", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.FieldH = append(m.FieldH, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.FieldH = append(m.FieldH, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldH", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldI = append(m.FieldI, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldI = append(m.FieldI, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldI", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldJ = append(m.FieldJ, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldJ = append(m.FieldJ, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldJ", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldK = append(m.FieldK, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldK = append(m.FieldK, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldK", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldL = append(m.FieldL, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldL = append(m.FieldL, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldL", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldM = append(m.FieldM, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldM = append(m.FieldM, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldM", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldN", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldN = append(m.FieldN, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldO", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldO = append(m.FieldO, make([]byte, postIndex-iNdEx)) copy(m.FieldO[len(m.FieldO)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNinStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNinStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNinStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.FieldA = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.FieldB = &v2 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.FieldC == nil { m.FieldC = &NidOptNative{} } if err := m.FieldC.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldD = append(m.FieldD, &NinOptNative{}) if err := m.FieldD[len(m.FieldD)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldE", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldE = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldF", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldF = &v case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldG", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.FieldG == nil { m.FieldG = &NidOptNative{} } if err := m.FieldG.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldH", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.FieldH = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldI", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.FieldI = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldJ", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldJ = append(m.FieldJ[:0], dAtA[iNdEx:postIndex]...) if m.FieldJ == nil { m.FieldJ = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.FieldA = &v if err := m.FieldA.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.FieldB = &v if err := m.FieldB.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.FieldC = append(m.FieldC, v) if err := m.FieldC[len(m.FieldC)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.FieldD = append(m.FieldD, v) if err := m.FieldD[len(m.FieldD)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNinEmbeddedStructUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNinEmbeddedStructUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNinEmbeddedStructUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NidOptNative", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NidOptNative == nil { m.NidOptNative = &NidOptNative{} } if err := m.NidOptNative.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 200: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.FieldA == nil { m.FieldA = &NinOptNative{} } if err := m.FieldA.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 210: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.FieldB = &b default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldA = &v case 2: if wireType == 0 { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldB = append(m.FieldB, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldB = append(m.FieldB, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NoExtensionsMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NoExtensionsMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NoExtensionsMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: if (fieldNum >= 100) && (fieldNum < 200) { var sizeOfWire int for { sizeOfWire++ wire >>= 7 if wire == 0 { break } } iNdEx -= sizeOfWire skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } github_com_gogo_protobuf_proto.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy]) iNdEx += skippy } else { iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Unrecognized) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Unrecognized: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Unrecognized: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field1 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UnrecognizedWithInner) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: UnrecognizedWithInner: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: UnrecognizedWithInner: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Embedded", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Embedded = append(m.Embedded, &UnrecognizedWithInner_Inner{}) if err := m.Embedded[len(m.Embedded)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field2 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UnrecognizedWithInner_Inner) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Inner: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Inner: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UnrecognizedWithEmbed) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: UnrecognizedWithEmbed: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: UnrecognizedWithEmbed: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field UnrecognizedWithEmbed_Embedded", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.UnrecognizedWithEmbed_Embedded.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field2 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UnrecognizedWithEmbed_Embedded) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Embedded: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Embedded: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Node) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Node: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Node: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Label", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Label = &s iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Children", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Children = append(m.Children, &Node{}) if err := m.Children[len(m.Children)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field1 == nil { m.Field1 = &T{} } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidOptNonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptNonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptNonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field1 == nil { m.Field1 = &T{} } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepNonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepNonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepNonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field1 = append(m.Field1, T{}) if err := m.Field1[len(m.Field1)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepNonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepNonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepNonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field1 = append(m.Field1, T{}) if err := m.Field1[len(m.Field1)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ProtoType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: ProtoType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: ProtoType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field2 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipThetest(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowThetest } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowThetest } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowThetest } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthThetest } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowThetest } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipThetest(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthThetest = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowThetest = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/both/thetest.proto", fileDescriptorThetest) } var fileDescriptorThetest = []byte{ // 3081 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0x1b, 0xc7, 0x15, 0xd6, 0xec, 0x50, 0x0a, 0xf5, 0x24, 0x4b, 0xf4, 0x26, 0x56, 0xb6, 0x8c, 0xba, 0xa2, 0x37, 0xb2, 0xca, 0x10, 0xb1, 0x44, 0x51, 0x94, 0x2c, 0x33, 0x4d, 0x0a, 0xf1, 0xc7, 0x8d, 0xdc, 0x88, 0x32, 0x18, 0xb9, 0xad, 0x81, 0x02, 0x05, 0x25, 0xae, 0x45, 0xa2, 0xd2, 0x52, 0x20, 0x57, 0x69, 0xdc, 0x43, 0x11, 0xe4, 0x50, 0x04, 0xbd, 0x16, 0x3d, 0xb6, 0x71, 0x51, 0x14, 0x48, 0x6f, 0x39, 0x14, 0x45, 0x51, 0x14, 0x8d, 0x2f, 0x05, 0xd4, 0x9b, 0xd1, 0x53, 0x11, 0x14, 0x42, 0xc4, 0x5c, 0x72, 0x0c, 0x7a, 0x69, 0x0e, 0x39, 0x14, 0xbb, 0x3b, 0x3b, 0x3b, 0x33, 0xdc, 0xe5, 0x2e, 0x2d, 0xb9, 0xcd, 0xc5, 0x16, 0xe7, 0xbd, 0x37, 0xf3, 0xf6, 0x7d, 0xdf, 0x7b, 0xfb, 0x76, 0x66, 0xe0, 0x6b, 0x7b, 0xed, 0xc3, 0xdd, 0x76, 0x77, 0x69, 0xb7, 0x6d, 0x36, 0x97, 0xcc, 0xa6, 0x6e, 0xea, 0x5d, 0x73, 0xf1, 0xa8, 0xd3, 0x36, 0xdb, 0x72, 0xcc, 0xfa, 0x3b, 0x79, 0x7d, 0xbf, 0x65, 0x36, 0x8f, 0x77, 0x17, 0xf7, 0xda, 0x87, 0x4b, 0xfb, 0xed, 0xfd, 0xf6, 0x92, 0x2d, 0xdc, 0x3d, 0xbe, 0x6f, 0xff, 0xb2, 0x7f, 0xd8, 0x7f, 0x39, 0x46, 0xda, 0xbf, 0x30, 0x4c, 0x56, 0x5b, 0x8d, 0xed, 0x23, 0xb3, 0x5a, 0x37, 0x5b, 0x6f, 0xe9, 0xf2, 0x2c, 0x8c, 0xdd, 0x6a, 0xe9, 0x07, 0x8d, 0x65, 0x05, 0xa5, 0x50, 0x1a, 0x15, 0x63, 0x27, 0xa7, 0x73, 0x23, 0x35, 0x32, 0x46, 0xa5, 0x39, 0x45, 0x4a, 0xa1, 0xb4, 0xc4, 0x49, 0x73, 0x54, 0xba, 0xa2, 0xe0, 0x14, 0x4a, 0x8f, 0x72, 0xd2, 0x15, 0x2a, 0xcd, 0x2b, 0xb1, 0x14, 0x4a, 0x63, 0x4e, 0x9a, 0xa7, 0xd2, 0x55, 0x65, 0x34, 0x85, 0xd2, 0x97, 0x38, 0xe9, 0x2a, 0x95, 0xae, 0x29, 0x63, 0x29, 0x94, 0x8e, 0x71, 0xd2, 0x35, 0x2a, 0xbd, 0xa1, 0x3c, 0x93, 0x42, 0xe9, 0xcb, 0x9c, 0xf4, 0x06, 0x95, 0xae, 0x2b, 0xf1, 0x14, 0x4a, 0xcb, 0x9c, 0x74, 0x9d, 0x4a, 0x6f, 0x2a, 0xe3, 0x29, 0x94, 0x7e, 0x86, 0x93, 0xde, 0x94, 0x55, 0x78, 0xc6, 0x79, 0xf2, 0xac, 0x02, 0x29, 0x94, 0x9e, 0x26, 0x62, 0x77, 0xd0, 0x93, 0x2f, 0x2b, 0x13, 0x29, 0x94, 0x1e, 0xe3, 0xe5, 0xcb, 0x9e, 0x3c, 0xa7, 0x4c, 0xa6, 0x50, 0x3a, 0xc1, 0xcb, 0x73, 0x9e, 0x7c, 0x45, 0xb9, 0x94, 0x42, 0xe9, 0x38, 0x2f, 0x5f, 0xf1, 0xe4, 0x79, 0x65, 0x2a, 0x85, 0xd2, 0xe3, 0xbc, 0x3c, 0xef, 0xc9, 0x57, 0x95, 0xe9, 0x14, 0x4a, 0x4f, 0xf2, 0xf2, 0x55, 0xed, 0x5d, 0x1b, 0x5e, 0xc3, 0x83, 0x77, 0x86, 0x87, 0x97, 0x02, 0x3b, 0xc3, 0x03, 0x4b, 0x21, 0x9d, 0xe1, 0x21, 0xa5, 0x60, 0xce, 0xf0, 0x60, 0x52, 0x18, 0x67, 0x78, 0x18, 0x29, 0x80, 0x33, 0x3c, 0x80, 0x14, 0xba, 0x19, 0x1e, 0x3a, 0x0a, 0xda, 0x0c, 0x0f, 0x1a, 0x85, 0x6b, 0x86, 0x87, 0x8b, 0x02, 0xa5, 0x08, 0x40, 0x79, 0x10, 0x29, 0x02, 0x44, 0x1e, 0x38, 0x8a, 0x00, 0x8e, 0x07, 0x8b, 0x22, 0xc0, 0xe2, 0x01, 0xa2, 0x08, 0x80, 0x78, 0x50, 0x28, 0x02, 0x14, 0x1e, 0x08, 0x24, 0xc7, 0x6a, 0xfa, 0x91, 0x4f, 0x8e, 0xe1, 0x81, 0x39, 0x86, 0x07, 0xe6, 0x18, 0x1e, 0x98, 0x63, 0x78, 0x60, 0x8e, 0xe1, 0x81, 0x39, 0x86, 0x07, 0xe6, 0x18, 0x1e, 0x98, 0x63, 0x78, 0x60, 0x8e, 0xe1, 0xc1, 0x39, 0x86, 0x43, 0x72, 0x0c, 0x87, 0xe4, 0x18, 0x0e, 0xc9, 0x31, 0x1c, 0x92, 0x63, 0x38, 0x24, 0xc7, 0x70, 0x60, 0x8e, 0x79, 0xf0, 0xce, 0xf0, 0xf0, 0xfa, 0xe6, 0x18, 0x0e, 0xc8, 0x31, 0x1c, 0x90, 0x63, 0x38, 0x20, 0xc7, 0x70, 0x40, 0x8e, 0xe1, 0x80, 0x1c, 0xc3, 0x01, 0x39, 0x86, 0x03, 0x72, 0x0c, 0x07, 0xe5, 0x18, 0x0e, 0xcc, 0x31, 0x1c, 0x98, 0x63, 0x38, 0x30, 0xc7, 0x70, 0x60, 0x8e, 0xe1, 0xc0, 0x1c, 0xc3, 0x6c, 0x8e, 0xfd, 0x05, 0x83, 0xec, 0xe4, 0xd8, 0x9d, 0xfa, 0xde, 0x8f, 0xf4, 0x06, 0x81, 0x42, 0x15, 0x32, 0x6d, 0xcc, 0x82, 0x2e, 0xe1, 0x41, 0xa2, 0x0a, 0xb9, 0xc6, 0xcb, 0x73, 0x54, 0xee, 0x66, 0x1b, 0x2f, 0x5f, 0xa1, 0x72, 0x37, 0xdf, 0x78, 0x79, 0x9e, 0xca, 0xdd, 0x8c, 0xe3, 0xe5, 0xab, 0x54, 0xee, 0xe6, 0x1c, 0x2f, 0x5f, 0xa3, 0x72, 0x37, 0xeb, 0x78, 0xf9, 0x0d, 0x2a, 0x77, 0xf3, 0x8e, 0x97, 0xaf, 0x53, 0xb9, 0x9b, 0x79, 0xbc, 0xfc, 0xa6, 0x9c, 0x12, 0x73, 0xcf, 0x55, 0xa0, 0xd0, 0xa6, 0xc4, 0xec, 0x13, 0x34, 0x96, 0x3d, 0x0d, 0x37, 0xff, 0x04, 0x8d, 0x9c, 0xa7, 0xe1, 0x66, 0xa0, 0xa0, 0xb1, 0xa2, 0xbd, 0x67, 0xc3, 0x67, 0x88, 0xf0, 0x25, 0x05, 0xf8, 0x24, 0x06, 0xba, 0xa4, 0x00, 0x9d, 0xc4, 0xc0, 0x96, 0x14, 0x60, 0x93, 0x18, 0xc8, 0x92, 0x02, 0x64, 0x12, 0x03, 0x57, 0x52, 0x80, 0x4b, 0x62, 0xa0, 0x4a, 0x0a, 0x50, 0x49, 0x0c, 0x4c, 0x49, 0x01, 0x26, 0x89, 0x81, 0x28, 0x29, 0x40, 0x24, 0x31, 0xf0, 0x24, 0x05, 0x78, 0x24, 0x06, 0x9a, 0x59, 0x11, 0x1a, 0x89, 0x85, 0x65, 0x56, 0x84, 0x45, 0x62, 0x21, 0x99, 0x15, 0x21, 0x91, 0x58, 0x38, 0x66, 0x45, 0x38, 0x24, 0x16, 0x8a, 0x2f, 0x25, 0xb7, 0x23, 0x7c, 0xd3, 0xec, 0x1c, 0xef, 0x99, 0xe7, 0xea, 0x08, 0xb3, 0x5c, 0xfb, 0x30, 0x91, 0x93, 0x17, 0xed, 0x86, 0x95, 0xed, 0x38, 0x85, 0x37, 0x58, 0x96, 0x6b, 0x2c, 0x18, 0x0b, 0xc3, 0xdf, 0x22, 0x7f, 0xae, 0xde, 0x30, 0xcb, 0xb5, 0x19, 0xe1, 0xfe, 0xad, 0x3f, 0xf5, 0x8e, 0xed, 0x91, 0xe4, 0x76, 0x6c, 0x24, 0xfc, 0xc3, 0x76, 0x6c, 0x99, 0xf0, 0x90, 0xd3, 0x60, 0x67, 0xc2, 0x83, 0xdd, 0xf7, 0xd6, 0x89, 0xda, 0xc1, 0x65, 0xc2, 0x43, 0x4b, 0x83, 0x7a, 0xb1, 0xfd, 0x16, 0x61, 0x70, 0x4d, 0x3f, 0xf2, 0x61, 0xf0, 0xb0, 0xfd, 0x56, 0x96, 0x2b, 0x25, 0xc3, 0x32, 0x18, 0x0f, 0xcd, 0xe0, 0x61, 0x3b, 0xaf, 0x2c, 0x57, 0x5e, 0x86, 0x66, 0xf0, 0x53, 0xe8, 0x87, 0x08, 0x83, 0xbd, 0xf0, 0x0f, 0xdb, 0x0f, 0x65, 0xc2, 0x43, 0xee, 0xcb, 0x60, 0x3c, 0x04, 0x83, 0xa3, 0xf4, 0x47, 0x99, 0xf0, 0xd0, 0xfa, 0x33, 0xf8, 0xdc, 0xdd, 0xcc, 0xfb, 0x08, 0x2e, 0x57, 0x5b, 0x8d, 0xca, 0xe1, 0xae, 0xde, 0x68, 0xe8, 0x0d, 0x12, 0xc7, 0x2c, 0x57, 0x09, 0x02, 0xa0, 0x7e, 0x7c, 0x3a, 0xe7, 0x45, 0x78, 0x15, 0xe2, 0x4e, 0x4c, 0xb3, 0x59, 0xe5, 0x04, 0x85, 0x54, 0x38, 0xaa, 0x2a, 0x5f, 0x75, 0xcd, 0x96, 0xb3, 0xca, 0x3f, 0x10, 0x53, 0xe5, 0xe8, 0xb0, 0xf6, 0x0b, 0xdb, 0x43, 0xe3, 0xdc, 0x1e, 0x2e, 0x45, 0xf2, 0x90, 0xf1, 0xed, 0x85, 0x3e, 0xdf, 0x18, 0xaf, 0x8e, 0x61, 0xba, 0xda, 0x6a, 0x54, 0xf5, 0xae, 0x19, 0xcd, 0x25, 0x47, 0x47, 0xa8, 0x07, 0x59, 0x8e, 0x96, 0xac, 0x05, 0xa5, 0x34, 0x5f, 0x23, 0xb4, 0x96, 0xb5, 0xac, 0xc1, 0x2d, 0x9b, 0x09, 0x5a, 0xd6, 0xab, 0xec, 0x74, 0xc1, 0x4c, 0xd0, 0x82, 0x5e, 0x0e, 0xd1, 0xa5, 0xde, 0x76, 0x5f, 0xce, 0xa5, 0xe3, 0xae, 0xd9, 0x3e, 0x94, 0x67, 0x41, 0xda, 0x6c, 0xd8, 0x6b, 0x4c, 0x16, 0x27, 0x2d, 0xa7, 0x3e, 0x3e, 0x9d, 0x8b, 0xdd, 0x3d, 0x6e, 0x35, 0x6a, 0xd2, 0x66, 0x43, 0xbe, 0x0d, 0xa3, 0xdf, 0xad, 0x1f, 0x1c, 0xeb, 0xf6, 0x2b, 0x62, 0xb2, 0x98, 0x27, 0x0a, 0x2f, 0x07, 0xee, 0x11, 0x59, 0x0b, 0x2f, 0xed, 0xd9, 0x53, 0x2f, 0xde, 0x6d, 0x19, 0xe6, 0x72, 0x6e, 0xbd, 0xe6, 0x4c, 0xa1, 0xfd, 0x00, 0xc0, 0x59, 0xb3, 0x5c, 0xef, 0x36, 0xe5, 0xaa, 0x3b, 0xb3, 0xb3, 0xf4, 0xfa, 0xc7, 0xa7, 0x73, 0xf9, 0x28, 0xb3, 0x5e, 0x6f, 0xd4, 0xbb, 0xcd, 0xeb, 0xe6, 0x83, 0x23, 0x7d, 0xb1, 0xf8, 0xc0, 0xd4, 0xbb, 0xee, 0xec, 0x47, 0xee, 0x5b, 0x8f, 0x3c, 0x97, 0xc2, 0x3c, 0x57, 0x9c, 0x7b, 0xa6, 0x5b, 0xfc, 0x33, 0x65, 0x9f, 0xf4, 0x79, 0xde, 0x76, 0x5f, 0x12, 0x42, 0x24, 0x71, 0x58, 0x24, 0xf1, 0x79, 0x23, 0x79, 0xe4, 0xd6, 0x47, 0xe1, 0x59, 0xf1, 0xa0, 0x67, 0xc5, 0xe7, 0x79, 0xd6, 0xff, 0x38, 0xd9, 0x4a, 0xf3, 0xe9, 0xae, 0xd1, 0x6a, 0x1b, 0x5f, 0xb9, 0xbd, 0xa0, 0x0b, 0xed, 0x02, 0x0a, 0xb1, 0x93, 0x87, 0x73, 0x48, 0x7b, 0x5f, 0x72, 0x9f, 0xdc, 0x49, 0xa4, 0x27, 0x7b, 0xf2, 0xaf, 0x4a, 0x4f, 0xf5, 0x34, 0x22, 0xf4, 0x6b, 0x04, 0x33, 0x7d, 0x95, 0xdc, 0x09, 0xd3, 0xc5, 0x96, 0x73, 0x63, 0xd8, 0x72, 0x4e, 0x1c, 0xfc, 0x03, 0x82, 0xe7, 0x84, 0xf2, 0xea, 0xb8, 0xb7, 0x24, 0xb8, 0xf7, 0x7c, 0xff, 0x4a, 0xb6, 0x22, 0xe3, 0x1d, 0x0b, 0xaf, 0x60, 0xc0, 0xcc, 0x4c, 0x71, 0xcf, 0x0b, 0xb8, 0xcf, 0x52, 0x03, 0x9f, 0x70, 0xb9, 0x0c, 0x20, 0x6e, 0xb7, 0x21, 0xb6, 0xd3, 0xd1, 0x75, 0x59, 0x05, 0x69, 0xbb, 0x43, 0x3c, 0x9c, 0x72, 0xec, 0xb7, 0x3b, 0xc5, 0x4e, 0xdd, 0xd8, 0x6b, 0xd6, 0xa4, 0xed, 0x8e, 0x7c, 0x15, 0xf0, 0x86, 0xd1, 0x20, 0x1e, 0x4d, 0x3b, 0x0a, 0x1b, 0x46, 0x83, 0x68, 0x58, 0x32, 0x59, 0x85, 0xd8, 0x1b, 0x7a, 0xfd, 0x3e, 0x71, 0x02, 0x1c, 0x1d, 0x6b, 0xa4, 0x66, 0x8f, 0x93, 0x05, 0xbf, 0x0f, 0x71, 0x77, 0x62, 0x79, 0xde, 0xb2, 0xb8, 0x6f, 0x92, 0x65, 0x89, 0x85, 0xe5, 0x0e, 0x79, 0x73, 0xd9, 0x52, 0x79, 0x01, 0x46, 0x6b, 0xad, 0xfd, 0xa6, 0x49, 0x16, 0xef, 0x57, 0x73, 0xc4, 0xda, 0x3d, 0x18, 0xa7, 0x1e, 0x5d, 0xf0, 0xd4, 0x65, 0xe7, 0xd1, 0xe4, 0x24, 0xfb, 0x3e, 0x71, 0xf7, 0x2d, 0x9d, 0x21, 0x39, 0x05, 0xf1, 0x37, 0xcd, 0x8e, 0x57, 0xf4, 0xdd, 0x8e, 0x94, 0x8e, 0x6a, 0xef, 0x22, 0x88, 0x97, 0x75, 0xfd, 0xc8, 0x0e, 0xf8, 0x35, 0x88, 0x95, 0xdb, 0x3f, 0x36, 0x88, 0x83, 0x97, 0x49, 0x44, 0x2d, 0x31, 0x89, 0xa9, 0x2d, 0x96, 0xaf, 0xb1, 0x71, 0x7f, 0x96, 0xc6, 0x9d, 0xd1, 0xb3, 0x63, 0xaf, 0x71, 0xb1, 0x27, 0x00, 0x5a, 0x4a, 0x7d, 0xf1, 0xbf, 0x01, 0x13, 0xcc, 0x2a, 0x72, 0x9a, 0xb8, 0x21, 0x89, 0x86, 0x6c, 0xac, 0x2c, 0x0d, 0x4d, 0x87, 0x4b, 0xdc, 0xc2, 0x96, 0x29, 0x13, 0xe2, 0x00, 0x53, 0x3b, 0xcc, 0x19, 0x3e, 0xcc, 0xfe, 0xaa, 0x24, 0xd4, 0x59, 0x27, 0x46, 0x76, 0xb8, 0xe7, 0x1d, 0x72, 0x06, 0x83, 0x68, 0xfd, 0xad, 0x8d, 0x02, 0xae, 0xb6, 0x0e, 0xb4, 0x57, 0x01, 0x9c, 0x94, 0xaf, 0x18, 0xc7, 0x87, 0x42, 0xd6, 0x4d, 0xb9, 0x01, 0xde, 0x69, 0xea, 0x3b, 0x7a, 0xd7, 0x56, 0xe1, 0xfb, 0x29, 0xab, 0xc0, 0x80, 0x93, 0x62, 0xb6, 0xfd, 0x4b, 0xa1, 0xf6, 0xbe, 0x9d, 0x98, 0xa5, 0xaa, 0x38, 0xaa, 0xf7, 0x74, 0x73, 0xc3, 0x68, 0x9b, 0x4d, 0xbd, 0x23, 0x58, 0xe4, 0xe4, 0x15, 0x2e, 0x61, 0xa7, 0x72, 0x2f, 0x50, 0x8b, 0x40, 0xa3, 0x15, 0xed, 0x43, 0xdb, 0x41, 0xab, 0x15, 0xe8, 0x7b, 0x40, 0x1c, 0xe1, 0x01, 0xe5, 0x35, 0xae, 0x7f, 0x1b, 0xe0, 0xa6, 0xf0, 0x69, 0x79, 0x93, 0xfb, 0xce, 0x19, 0xec, 0x2c, 0xff, 0x8d, 0xe9, 0xc6, 0xd4, 0x75, 0xf9, 0xa5, 0x50, 0x97, 0x03, 0xba, 0xdb, 0x61, 0x63, 0x8a, 0xa3, 0xc6, 0xf4, 0xcf, 0xb4, 0xe3, 0xb0, 0x86, 0xcb, 0xfa, 0xfd, 0xfa, 0xf1, 0x81, 0x29, 0xbf, 0x1c, 0x8a, 0x7d, 0x01, 0x95, 0xa8, 0xab, 0xf9, 0xa8, 0xf0, 0x17, 0xa4, 0x62, 0x91, 0xba, 0x7b, 0x63, 0x08, 0x0a, 0x14, 0xa4, 0x52, 0x89, 0x96, 0xed, 0xf8, 0x7b, 0x0f, 0xe7, 0xd0, 0x07, 0x0f, 0xe7, 0x46, 0xb4, 0xdf, 0x23, 0xb8, 0x4c, 0x34, 0x19, 0xe2, 0x5e, 0x17, 0x9c, 0xbf, 0xe2, 0xd6, 0x0c, 0xbf, 0x08, 0xfc, 0xcf, 0xc8, 0xfb, 0x37, 0x04, 0x4a, 0x9f, 0xaf, 0x6e, 0xbc, 0xb3, 0x91, 0x5c, 0x2e, 0xa0, 0xca, 0xff, 0x3f, 0xe6, 0xf7, 0x60, 0x74, 0xa7, 0x75, 0xa8, 0x77, 0xac, 0x37, 0x81, 0xf5, 0x87, 0xe3, 0xb2, 0x7b, 0x98, 0xe3, 0x0c, 0xb9, 0x32, 0xc7, 0x39, 0x4e, 0x96, 0x93, 0x15, 0x88, 0x95, 0xeb, 0x66, 0xdd, 0xf6, 0x60, 0x92, 0xd6, 0xd7, 0xba, 0x59, 0xd7, 0x56, 0x60, 0x72, 0xeb, 0x41, 0xe5, 0x6d, 0x53, 0x37, 0x1a, 0xf5, 0xdd, 0x03, 0xf1, 0x0c, 0xd4, 0xed, 0x57, 0x97, 0x33, 0xa3, 0xf1, 0x46, 0xe2, 0x04, 0x15, 0x62, 0xb6, 0x3f, 0x6f, 0xc1, 0xd4, 0xb6, 0xe5, 0xb6, 0x6d, 0x67, 0x9b, 0xa5, 0x00, 0x6d, 0xf1, 0x8d, 0x10, 0x3b, 0x6b, 0x0d, 0x6d, 0x09, 0xed, 0x23, 0xa6, 0xe1, 0x11, 0xda, 0x36, 0x4c, 0xdb, 0xb6, 0x4c, 0x2c, 0x3e, 0x95, 0xb8, 0x9c, 0x89, 0xc5, 0x21, 0x71, 0x89, 0xac, 0xfb, 0x77, 0x0c, 0x09, 0xa7, 0xd5, 0x29, 0xeb, 0xf7, 0x5b, 0x46, 0xcb, 0xec, 0xef, 0x57, 0xa9, 0xc7, 0xf2, 0xb7, 0x60, 0xdc, 0x0a, 0xa9, 0xfd, 0x8b, 0x00, 0x76, 0x95, 0xb4, 0x28, 0xc2, 0x14, 0x64, 0xc0, 0xa6, 0x8e, 0x67, 0x23, 0xdf, 0x02, 0x5c, 0xad, 0x6e, 0x91, 0x97, 0x5b, 0x7e, 0xa0, 0xe9, 0x96, 0xde, 0xed, 0xd6, 0xf7, 0x75, 0xf2, 0x8b, 0x8c, 0x75, 0xf7, 0x6b, 0xd6, 0x04, 0x72, 0x1e, 0xa4, 0xea, 0x16, 0x69, 0x78, 0xe7, 0xa3, 0x4c, 0x53, 0x93, 0xaa, 0x5b, 0xc9, 0xbf, 0x22, 0xb8, 0xc4, 0x8d, 0xca, 0x1a, 0x4c, 0x3a, 0x03, 0xcc, 0xe3, 0x8e, 0xd5, 0xb8, 0x31, 0xd7, 0x67, 0xe9, 0x9c, 0x3e, 0x27, 0x37, 0x60, 0x5a, 0x18, 0x97, 0x17, 0x41, 0x66, 0x87, 0x88, 0x13, 0x60, 0x37, 0xd4, 0x3e, 0x12, 0xed, 0xeb, 0x00, 0x5e, 0x5c, 0xe5, 0x69, 0x98, 0xd8, 0xb9, 0x77, 0xa7, 0xf2, 0xc3, 0x6a, 0xe5, 0xcd, 0x9d, 0x4a, 0x39, 0x81, 0xb4, 0x3f, 0x22, 0x98, 0x20, 0x6d, 0xeb, 0x5e, 0xfb, 0x48, 0x97, 0x8b, 0x80, 0x36, 0x08, 0x83, 0x9e, 0xcc, 0x6f, 0xb4, 0x21, 0x2f, 0x01, 0x2a, 0x46, 0x87, 0x1a, 0x15, 0xe5, 0x1c, 0xa0, 0x12, 0x01, 0x38, 0x1a, 0x32, 0xa8, 0xa4, 0xfd, 0x1b, 0xc3, 0xb3, 0x6c, 0x1b, 0xed, 0xd6, 0x93, 0xab, 0xfc, 0x77, 0x53, 0x61, 0x7c, 0x39, 0xb7, 0x92, 0x5f, 0xb4, 0xfe, 0xa1, 0x94, 0xd4, 0xf8, 0x4f, 0xa8, 0x02, 0x50, 0x95, 0xe5, 0xa0, 0x7b, 0x22, 0x85, 0x18, 0x33, 0x43, 0xdf, 0x3d, 0x11, 0x4e, 0xda, 0x77, 0x4f, 0x84, 0x93, 0xf6, 0xdd, 0x13, 0xe1, 0xa4, 0x7d, 0x67, 0x01, 0x9c, 0xb4, 0xef, 0x9e, 0x08, 0x27, 0xed, 0xbb, 0x27, 0xc2, 0x49, 0xfb, 0xef, 0x89, 0x10, 0x71, 0xe0, 0x3d, 0x11, 0x5e, 0xde, 0x7f, 0x4f, 0x84, 0x97, 0xf7, 0xdf, 0x13, 0x29, 0xc4, 0xcc, 0xce, 0xb1, 0x1e, 0x7c, 0xea, 0xc0, 0xdb, 0x0f, 0xfa, 0x08, 0xf4, 0x2a, 0xf0, 0x36, 0x4c, 0x3b, 0x1b, 0x12, 0xa5, 0xb6, 0x61, 0xd6, 0x5b, 0x86, 0xde, 0x91, 0xbf, 0x09, 0x93, 0xce, 0x90, 0xf3, 0x99, 0xe3, 0xf7, 0x19, 0xe8, 0xc8, 0x49, 0xbd, 0xe5, 0xb4, 0xb5, 0x2f, 0x63, 0x30, 0xe3, 0x0c, 0x54, 0xeb, 0x87, 0x3a, 0x77, 0xcb, 0x68, 0x41, 0x38, 0x53, 0x9a, 0xb2, 0xcc, 0x7b, 0xa7, 0x73, 0xce, 0xe8, 0x06, 0x65, 0xd3, 0x82, 0x70, 0xba, 0xc4, 0xeb, 0x79, 0x2f, 0xa0, 0x05, 0xe1, 0xe6, 0x11, 0xaf, 0x47, 0xdf, 0x37, 0x54, 0xcf, 0xbd, 0x83, 0xc4, 0xeb, 0x95, 0x29, 0xcb, 0x16, 0x84, 0xdb, 0x48, 0xbc, 0x5e, 0x85, 0xf2, 0x6d, 0x41, 0x38, 0x7b, 0xe2, 0xf5, 0x6e, 0x51, 0xe6, 0x2d, 0x08, 0xa7, 0x50, 0xbc, 0xde, 0xb7, 0x29, 0x07, 0x17, 0x84, 0xbb, 0x4a, 0xbc, 0xde, 0xeb, 0x94, 0x8d, 0x0b, 0xc2, 0xad, 0x25, 0x5e, 0x6f, 0x93, 0xf2, 0x32, 0x2d, 0xde, 0x5f, 0xe2, 0x15, 0x6f, 0x7b, 0x0c, 0x4d, 0x8b, 0x37, 0x99, 0x78, 0xcd, 0xef, 0x78, 0x5c, 0x4d, 0x8b, 0x77, 0x9a, 0x78, 0xcd, 0x37, 0x3c, 0xd6, 0xa6, 0xc5, 0xb3, 0x32, 0x5e, 0x73, 0xcb, 0xe3, 0x6f, 0x5a, 0x3c, 0x35, 0xe3, 0x35, 0xab, 0x1e, 0x93, 0xd3, 0xe2, 0xf9, 0x19, 0xaf, 0xb9, 0xed, 0x6d, 0xa2, 0x7f, 0x24, 0xd0, 0x8f, 0xb9, 0x05, 0xa5, 0x09, 0xf4, 0x03, 0x1f, 0xea, 0x09, 0x85, 0x8c, 0xd1, 0xf1, 0x68, 0xa7, 0x09, 0xb4, 0x03, 0x1f, 0xca, 0x69, 0x02, 0xe5, 0xc0, 0x87, 0x6e, 0x9a, 0x40, 0x37, 0xf0, 0xa1, 0x9a, 0x26, 0x50, 0x0d, 0x7c, 0x68, 0xa6, 0x09, 0x34, 0x03, 0x1f, 0x8a, 0x69, 0x02, 0xc5, 0xc0, 0x87, 0x5e, 0x9a, 0x40, 0x2f, 0xf0, 0xa1, 0xd6, 0xbc, 0x48, 0x2d, 0xf0, 0xa3, 0xd5, 0xbc, 0x48, 0x2b, 0xf0, 0xa3, 0xd4, 0x8b, 0x22, 0xa5, 0xc6, 0x7b, 0xa7, 0x73, 0xa3, 0xd6, 0x10, 0xc3, 0xa6, 0x79, 0x91, 0x4d, 0xe0, 0xc7, 0xa4, 0x79, 0x91, 0x49, 0xe0, 0xc7, 0xa2, 0x79, 0x91, 0x45, 0xe0, 0xc7, 0xa0, 0x47, 0x22, 0x83, 0xbc, 0x3b, 0x3e, 0x9a, 0x70, 0xa4, 0x18, 0xc6, 0x20, 0x1c, 0x81, 0x41, 0x38, 0x02, 0x83, 0x70, 0x04, 0x06, 0xe1, 0x08, 0x0c, 0xc2, 0x11, 0x18, 0x84, 0x23, 0x30, 0x08, 0x47, 0x60, 0x10, 0x8e, 0xc2, 0x20, 0x1c, 0x89, 0x41, 0x38, 0x88, 0x41, 0xf3, 0xe2, 0x8d, 0x07, 0xf0, 0x2b, 0x48, 0xf3, 0xe2, 0xd1, 0x67, 0x38, 0x85, 0x70, 0x24, 0x0a, 0xe1, 0x20, 0x0a, 0x7d, 0x84, 0xe1, 0x59, 0x8e, 0x42, 0xe4, 0x7c, 0xe8, 0xa2, 0x2a, 0xd0, 0x5a, 0x84, 0x0b, 0x16, 0x7e, 0x9c, 0x5a, 0x8b, 0x70, 0x48, 0x3d, 0x88, 0x67, 0xfd, 0x55, 0xa8, 0x12, 0xa1, 0x0a, 0xdd, 0xa2, 0x1c, 0x5a, 0x8b, 0x70, 0xf1, 0xa2, 0x9f, 0x7b, 0xeb, 0x83, 0x8a, 0xc0, 0xeb, 0x91, 0x8a, 0xc0, 0x66, 0xa4, 0x22, 0x70, 0xdb, 0x43, 0xf0, 0x67, 0x12, 0x3c, 0xe7, 0x21, 0xe8, 0xfc, 0xb5, 0xf3, 0xe0, 0xc8, 0x2a, 0x01, 0xde, 0x11, 0x95, 0xec, 0x1e, 0xdb, 0x30, 0x30, 0x4a, 0x9b, 0x0d, 0xf9, 0x0e, 0x7f, 0x58, 0x55, 0x18, 0xf6, 0x00, 0x87, 0x41, 0x9c, 0x6c, 0x86, 0xce, 0x03, 0xde, 0x6c, 0x74, 0xed, 0x6a, 0xe1, 0xb7, 0x6c, 0xa9, 0x66, 0x89, 0xe5, 0x1a, 0x8c, 0xd9, 0xea, 0x5d, 0x1b, 0xde, 0xf3, 0x2c, 0x5c, 0xae, 0x91, 0x99, 0xb4, 0x47, 0x08, 0x52, 0x1c, 0x95, 0x2f, 0xe6, 0xc8, 0xe0, 0x95, 0x48, 0x47, 0x06, 0x5c, 0x82, 0x78, 0xc7, 0x07, 0xdf, 0xe8, 0x3f, 0xa9, 0x66, 0xb3, 0x44, 0x3c, 0x4a, 0xf8, 0x29, 0x4c, 0x79, 0x4f, 0x60, 0x7f, 0xb3, 0xad, 0x86, 0xef, 0x66, 0xfa, 0xa5, 0xe6, 0xaa, 0xb0, 0x8b, 0x36, 0xd0, 0x8c, 0x66, 0xab, 0x56, 0x80, 0xe9, 0x6a, 0xdb, 0xde, 0x33, 0xe8, 0xb6, 0xda, 0x46, 0x77, 0xab, 0x7e, 0x14, 0xb6, 0x19, 0x11, 0xb7, 0x5a, 0xf3, 0x93, 0xdf, 0xcc, 0x8d, 0x68, 0x2f, 0xc3, 0xe4, 0x5d, 0xa3, 0xa3, 0xef, 0xb5, 0xf7, 0x8d, 0xd6, 0x4f, 0xf4, 0x86, 0x60, 0x38, 0xee, 0x1a, 0x16, 0x62, 0x8f, 0x2d, 0xed, 0x5f, 0x22, 0xb8, 0xc2, 0xaa, 0x7f, 0xaf, 0x65, 0x36, 0x37, 0x0d, 0xab, 0xa7, 0x7f, 0x15, 0xe2, 0x3a, 0x01, 0xce, 0x7e, 0x77, 0x4d, 0xb8, 0xdf, 0x91, 0xbe, 0xea, 0x8b, 0xf6, 0xbf, 0x35, 0x6a, 0x22, 0xec, 0x71, 0xb8, 0xcb, 0xe6, 0x92, 0xd7, 0x60, 0xd4, 0x99, 0x9f, 0xf7, 0xeb, 0x92, 0xe0, 0xd7, 0xef, 0x7c, 0xfc, 0xb2, 0x79, 0x24, 0xdf, 0xe6, 0xfc, 0x62, 0x3e, 0x57, 0x7d, 0xd5, 0x17, 0x5d, 0xf2, 0x15, 0xe3, 0x56, 0xff, 0x67, 0x33, 0x2a, 0xdc, 0xc9, 0x34, 0xc4, 0x2b, 0xa2, 0x8e, 0xbf, 0x9f, 0x65, 0x88, 0x55, 0xdb, 0x0d, 0x5d, 0x7e, 0x0e, 0x46, 0xdf, 0xa8, 0xef, 0xea, 0x07, 0x24, 0xc8, 0xce, 0x0f, 0x79, 0x01, 0xe2, 0xa5, 0x66, 0xeb, 0xa0, 0xd1, 0xd1, 0x0d, 0x72, 0x66, 0x4f, 0xb6, 0xd0, 0x2d, 0x9b, 0x1a, 0x95, 0x69, 0x25, 0xb8, 0x5c, 0x6d, 0x1b, 0xc5, 0x07, 0x26, 0x5b, 0x37, 0x16, 0x85, 0x14, 0x21, 0x67, 0x3e, 0x77, 0xac, 0x6c, 0xb4, 0x14, 0x8a, 0xa3, 0x1f, 0x9f, 0xce, 0xa1, 0x1d, 0xba, 0x7f, 0xbe, 0x05, 0xcf, 0x93, 0xf4, 0xe9, 0x9b, 0x2a, 0x17, 0x36, 0xd5, 0x38, 0x39, 0xa7, 0x66, 0xa6, 0xdb, 0xb4, 0xa6, 0x33, 0x7c, 0xa7, 0x7b, 0x32, 0xcf, 0xac, 0xa6, 0x68, 0xa0, 0x67, 0x78, 0x28, 0xcf, 0x7c, 0xa7, 0x5b, 0x0c, 0x9b, 0x4e, 0xf0, 0xec, 0x45, 0x18, 0xa7, 0x32, 0x86, 0x0d, 0x6c, 0xa6, 0xe4, 0x32, 0x1a, 0x4c, 0x30, 0x09, 0x2b, 0x8f, 0x02, 0xda, 0x48, 0x8c, 0x58, 0xff, 0x15, 0x13, 0xc8, 0xfa, 0xaf, 0x94, 0x90, 0x32, 0xd7, 0x60, 0x5a, 0xd8, 0xbf, 0xb4, 0x24, 0xe5, 0x04, 0x58, 0xff, 0x55, 0x12, 0x13, 0xc9, 0xd8, 0x7b, 0xbf, 0x55, 0x47, 0x32, 0xaf, 0x80, 0xdc, 0xbf, 0xd3, 0x29, 0x8f, 0x81, 0xb4, 0x61, 0x4d, 0xf9, 0x3c, 0x48, 0xc5, 0x62, 0x02, 0x25, 0xa7, 0x7f, 0xfe, 0xab, 0xd4, 0x44, 0x51, 0x37, 0x4d, 0xbd, 0x73, 0x4f, 0x37, 0x8b, 0x45, 0x62, 0xfc, 0x1a, 0x5c, 0xf1, 0xdd, 0x29, 0xb5, 0xec, 0x4b, 0x25, 0xc7, 0xbe, 0x5c, 0xee, 0xb3, 0x2f, 0x97, 0x6d, 0x7b, 0x54, 0x70, 0x4f, 0x9c, 0x37, 0x64, 0x9f, 0x7d, 0x49, 0xa5, 0xc1, 0x9c, 0x70, 0x6f, 0x14, 0x5e, 0x23, 0xba, 0x45, 0x5f, 0x5d, 0x3d, 0xe4, 0xc4, 0xba, 0x58, 0x28, 0x11, 0xfb, 0x92, 0xaf, 0xfd, 0x7d, 0xe1, 0x58, 0x95, 0x7f, 0x43, 0x90, 0x49, 0x4a, 0xd4, 0xe1, 0xb2, 0xef, 0x24, 0x4d, 0xe6, 0xb2, 0x7b, 0x99, 0x3a, 0x5c, 0xf1, 0xd5, 0x6d, 0x85, 0x5c, 0xfa, 0xaa, 0x14, 0x96, 0xc8, 0x4b, 0x7e, 0x63, 0x59, 0xbe, 0xe2, 0xe6, 0x28, 0x57, 0x81, 0x49, 0x80, 0x5c, 0xad, 0x42, 0x89, 0x18, 0x14, 0x03, 0x0d, 0x82, 0xa3, 0xe4, 0x5a, 0x16, 0x5e, 0x27, 0x93, 0x94, 0x02, 0x27, 0x09, 0x09, 0x95, 0x6b, 0x5e, 0xdc, 0x39, 0x39, 0x53, 0x47, 0x1e, 0x9f, 0xa9, 0x23, 0xff, 0x3c, 0x53, 0x47, 0x3e, 0x39, 0x53, 0xd1, 0x67, 0x67, 0x2a, 0xfa, 0xfc, 0x4c, 0x45, 0x5f, 0x9c, 0xa9, 0xe8, 0x9d, 0x9e, 0x8a, 0x3e, 0xe8, 0xa9, 0xe8, 0xc3, 0x9e, 0x8a, 0xfe, 0xd4, 0x53, 0xd1, 0xa3, 0x9e, 0x8a, 0x4e, 0x7a, 0x2a, 0x7a, 0xdc, 0x53, 0xd1, 0x27, 0x3d, 0x15, 0x7d, 0xd6, 0x53, 0x47, 0x3e, 0xef, 0xa9, 0xe8, 0x8b, 0x9e, 0x3a, 0xf2, 0xce, 0xa7, 0xea, 0xc8, 0xc3, 0x4f, 0xd5, 0x91, 0x0f, 0x3e, 0x55, 0xd1, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xe9, 0xa6, 0x38, 0x99, 0x47, 0x36, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/combos/both/thetest.proto000066400000000000000000000557201317075173200233200ustar00rootroot00000000000000// 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 test; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.protosizer_all) = false; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; option (gogoproto.compare_all) = true; message NidOptNative { optional double Field1 = 1 [(gogoproto.nullable) = false]; optional float Field2 = 2 [(gogoproto.nullable) = false]; optional int32 Field3 = 3 [(gogoproto.nullable) = false]; optional int64 Field4 = 4 [(gogoproto.nullable) = false]; optional uint32 Field5 = 5 [(gogoproto.nullable) = false]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false]; optional sint64 Field8 = 8 [(gogoproto.nullable) = false]; optional fixed32 Field9 = 9 [(gogoproto.nullable) = false]; optional sfixed32 Field10 = 10 [(gogoproto.nullable) = false]; optional fixed64 Field11 = 11 [(gogoproto.nullable) = false]; optional sfixed64 Field12 = 12 [(gogoproto.nullable) = false]; optional bool Field13 = 13 [(gogoproto.nullable) = false]; optional string Field14 = 14 [(gogoproto.nullable) = false]; optional bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinOptNative { optional double Field1 = 1; optional float Field2 = 2; optional int32 Field3 = 3; optional int64 Field4 = 4; optional uint32 Field5 = 5; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional sint64 Field8 = 8; optional fixed32 Field9 = 9; optional sfixed32 Field10 = 10; optional fixed64 Field11 = 11; optional sfixed64 Field12 = 12; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NidRepNative { repeated double Field1 = 1 [(gogoproto.nullable) = false]; repeated float Field2 = 2 [(gogoproto.nullable) = false]; repeated int32 Field3 = 3 [(gogoproto.nullable) = false]; repeated int64 Field4 = 4 [(gogoproto.nullable) = false]; repeated uint32 Field5 = 5 [(gogoproto.nullable) = false]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false]; repeated sint64 Field8 = 8 [(gogoproto.nullable) = false]; repeated fixed32 Field9 = 9 [(gogoproto.nullable) = false]; repeated sfixed32 Field10 = 10 [(gogoproto.nullable) = false]; repeated fixed64 Field11 = 11 [(gogoproto.nullable) = false]; repeated sfixed64 Field12 = 12 [(gogoproto.nullable) = false]; repeated bool Field13 = 13 [(gogoproto.nullable) = false]; repeated string Field14 = 14 [(gogoproto.nullable) = false]; repeated bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinRepNative { repeated double Field1 = 1; repeated float Field2 = 2; repeated int32 Field3 = 3; repeated int64 Field4 = 4; repeated uint32 Field5 = 5; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated sint64 Field8 = 8; repeated fixed32 Field9 = 9; repeated sfixed32 Field10 = 10; repeated fixed64 Field11 = 11; repeated sfixed64 Field12 = 12; repeated bool Field13 = 13; repeated string Field14 = 14; repeated bytes Field15 = 15; } message NidRepPackedNative { repeated double Field1 = 1 [(gogoproto.nullable) = false, packed = true]; repeated float Field2 = 2 [(gogoproto.nullable) = false, packed = true]; repeated int32 Field3 = 3 [(gogoproto.nullable) = false, packed = true]; repeated int64 Field4 = 4 [(gogoproto.nullable) = false, packed = true]; repeated uint32 Field5 = 5 [(gogoproto.nullable) = false, packed = true]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false, packed = true]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false, packed = true]; repeated sint64 Field8 = 8 [(gogoproto.nullable) = false, packed = true]; repeated fixed32 Field9 = 9 [(gogoproto.nullable) = false, packed = true]; repeated sfixed32 Field10 = 10 [(gogoproto.nullable) = false, packed = true]; repeated fixed64 Field11 = 11 [(gogoproto.nullable) = false, packed = true]; repeated sfixed64 Field12 = 12 [(gogoproto.nullable) = false, packed = true]; repeated bool Field13 = 13 [(gogoproto.nullable) = false, packed = true]; } message NinRepPackedNative { repeated double Field1 = 1 [packed = true]; repeated float Field2 = 2 [packed = true]; repeated int32 Field3 = 3 [packed = true]; repeated int64 Field4 = 4 [packed = true]; repeated uint32 Field5 = 5 [packed = true]; repeated uint64 Field6 = 6 [packed = true]; repeated sint32 Field7 = 7 [packed = true]; repeated sint64 Field8 = 8 [packed = true]; repeated fixed32 Field9 = 9 [packed = true]; repeated sfixed32 Field10 = 10 [packed = true]; repeated fixed64 Field11 = 11 [packed = true]; repeated sfixed64 Field12 = 12 [packed = true]; repeated bool Field13 = 13 [packed = true]; } message NidOptStruct { optional double Field1 = 1 [(gogoproto.nullable) = false]; optional float Field2 = 2 [(gogoproto.nullable) = false]; optional NidOptNative Field3 = 3 [(gogoproto.nullable) = false]; optional NinOptNative Field4 = 4 [(gogoproto.nullable) = false]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false]; optional NidOptNative Field8 = 8 [(gogoproto.nullable) = false]; optional bool Field13 = 13 [(gogoproto.nullable) = false]; optional string Field14 = 14 [(gogoproto.nullable) = false]; optional bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinOptStruct { optional double Field1 = 1; optional float Field2 = 2; optional NidOptNative Field3 = 3; optional NinOptNative Field4 = 4; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional NidOptNative Field8 = 8; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NidRepStruct { repeated double Field1 = 1 [(gogoproto.nullable) = false]; repeated float Field2 = 2 [(gogoproto.nullable) = false]; repeated NidOptNative Field3 = 3 [(gogoproto.nullable) = false]; repeated NinOptNative Field4 = 4 [(gogoproto.nullable) = false]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false]; repeated NidOptNative Field8 = 8 [(gogoproto.nullable) = false]; repeated bool Field13 = 13 [(gogoproto.nullable) = false]; repeated string Field14 = 14 [(gogoproto.nullable) = false]; repeated bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinRepStruct { repeated double Field1 = 1; repeated float Field2 = 2; repeated NidOptNative Field3 = 3; repeated NinOptNative Field4 = 4; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated NidOptNative Field8 = 8; repeated bool Field13 = 13; repeated string Field14 = 14; repeated bytes Field15 = 15; } message NidEmbeddedStruct { optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NidOptNative Field200 = 200 [(gogoproto.nullable) = false]; optional bool Field210 = 210 [(gogoproto.nullable) = false]; } message NinEmbeddedStruct { optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NidOptNative Field200 = 200; optional bool Field210 = 210; } message NidNestedStruct { optional NidOptStruct Field1 = 1 [(gogoproto.nullable) = false]; repeated NidRepStruct Field2 = 2 [(gogoproto.nullable) = false]; } message NinNestedStruct { optional NinOptStruct Field1 = 1; repeated NinRepStruct Field2 = 2; } message NidOptCustom { optional bytes Id = 1 [(gogoproto.customtype) = "Uuid", (gogoproto.nullable) = false]; optional bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } message CustomDash { optional bytes Value = 1 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom-dash-type.Bytes"]; } message NinOptCustom { optional bytes Id = 1 [(gogoproto.customtype) = "Uuid"]; optional bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message NidRepCustom { repeated bytes Id = 1 [(gogoproto.customtype) = "Uuid", (gogoproto.nullable) = false]; repeated bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } message NinRepCustom { repeated bytes Id = 1 [(gogoproto.customtype) = "Uuid"]; repeated bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message NinOptNativeUnion { option (gogoproto.onlyone) = true; optional double Field1 = 1; optional float Field2 = 2; optional int32 Field3 = 3; optional int64 Field4 = 4; optional uint32 Field5 = 5; optional uint64 Field6 = 6; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NinOptStructUnion { option (gogoproto.onlyone) = true; optional double Field1 = 1; optional float Field2 = 2; optional NidOptNative Field3 = 3; optional NinOptNative Field4 = 4; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NinEmbeddedStructUnion { option (gogoproto.onlyone) = true; optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NinOptNative Field200 = 200; optional bool Field210 = 210; } message NinNestedStructUnion { option (gogoproto.onlyone) = true; optional NinOptNativeUnion Field1 = 1; optional NinOptStructUnion Field2 = 2; optional NinEmbeddedStructUnion Field3 = 3; } message Tree { option (gogoproto.onlyone) = true; optional OrBranch Or = 1; optional AndBranch And = 2; optional Leaf Leaf = 3; } message OrBranch { optional Tree Left = 1 [(gogoproto.nullable) = false]; optional Tree Right = 2 [(gogoproto.nullable) = false]; } message AndBranch { optional Tree Left = 1 [(gogoproto.nullable) = false]; optional Tree Right = 2 [(gogoproto.nullable) = false]; } message Leaf { optional int64 Value = 1 [(gogoproto.nullable) = false]; optional string StrValue = 2 [(gogoproto.nullable) = false]; } message DeepTree { option (gogoproto.onlyone) = true; optional ADeepBranch Down = 1; optional AndDeepBranch And = 2; optional DeepLeaf Leaf = 3; } message ADeepBranch { optional DeepTree Down = 2 [(gogoproto.nullable) = false]; } message AndDeepBranch { optional DeepTree Left = 1 [(gogoproto.nullable) = false]; optional DeepTree Right = 2 [(gogoproto.nullable) = false]; } message DeepLeaf { optional Tree Tree = 1 [(gogoproto.nullable) = false]; } message Nil { } enum TheTestEnum { A = 0; B = 1; C = 2; } enum AnotherTestEnum { option (gogoproto.goproto_enum_prefix) = false; D = 10; E = 11; } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. enum YetAnotherTestEnum { option (gogoproto.goproto_enum_prefix) = false; AA = 0; BB = 1 [(gogoproto.enumvalue_customname) = "BetterYetBB"]; } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. enum YetYetAnotherTestEnum { option (gogoproto.goproto_enum_prefix) = true; CC = 0; DD = 1 [(gogoproto.enumvalue_customname) = "BetterYetDD"]; } message NidOptEnum { optional TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; } message NinOptEnum { optional TheTestEnum Field1 = 1; optional YetAnotherTestEnum Field2 = 2; optional YetYetAnotherTestEnum Field3 = 3; } message NidRepEnum { repeated TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; repeated YetAnotherTestEnum Field2 = 2 [(gogoproto.nullable) = false]; repeated YetYetAnotherTestEnum Field3 = 3 [(gogoproto.nullable) = false]; } message NinRepEnum { repeated TheTestEnum Field1 = 1; repeated YetAnotherTestEnum Field2 = 2; repeated YetYetAnotherTestEnum Field3 = 3; } message NinOptEnumDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional TheTestEnum Field1 = 1 [default=C]; optional YetAnotherTestEnum Field2 = 2 [default=BB]; optional YetYetAnotherTestEnum Field3 = 3 [default=CC]; } message AnotherNinOptEnum { optional AnotherTestEnum Field1 = 1; optional YetAnotherTestEnum Field2 = 2; optional YetYetAnotherTestEnum Field3 = 3; } message AnotherNinOptEnumDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional AnotherTestEnum Field1 = 1 [default=E]; optional YetAnotherTestEnum Field2 = 2 [default=BB]; optional YetYetAnotherTestEnum Field3 = 3 [default=CC]; } message Timer { optional sfixed64 Time1 = 1 [(gogoproto.nullable) = false]; optional sfixed64 Time2 = 2 [(gogoproto.nullable) = false]; optional bytes Data = 3 [(gogoproto.nullable) = false]; } message MyExtendable { option (gogoproto.face) = false; optional int64 Field1 = 1; extensions 100 to 199; } extend MyExtendable { optional double FieldA = 100; optional NinOptNative FieldB = 101; optional NinEmbeddedStruct FieldC = 102; repeated int64 FieldD = 104; repeated NinOptNative FieldE = 105; } message OtherExtenable { option (gogoproto.face) = false; optional int64 Field2 = 2; extensions 14 to 16; optional int64 Field13 = 13; extensions 10 to 12; optional MyExtendable M = 1; } message NestedDefinition { optional int64 Field1 = 1; message NestedMessage { optional fixed64 NestedField1 = 1; optional NestedNestedMsg NNM = 2; message NestedNestedMsg { optional string NestedNestedField1 = 10; } } enum NestedEnum { TYPE_NESTED = 1; } optional NestedEnum EnumField = 2; optional NestedMessage.NestedNestedMsg NNM = 3; optional NestedMessage NM = 4; } message NestedScope { optional NestedDefinition.NestedMessage.NestedNestedMsg A = 1; optional NestedDefinition.NestedEnum B = 2; optional NestedDefinition.NestedMessage C = 3; } message NinOptNativeDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional double Field1 = 1 [default = 1234.1234]; optional float Field2 = 2 [default = 1234.1234]; optional int32 Field3 = 3 [default = 1234]; optional int64 Field4 = 4 [default = 1234]; optional uint32 Field5 = 5 [default = 1234]; optional uint64 Field6 = 6 [default = 1234]; optional sint32 Field7 = 7 [default = 1234]; optional sint64 Field8 = 8 [default = 1234]; optional fixed32 Field9 = 9 [default = 1234]; optional sfixed32 Field10 = 10 [default = 1234]; optional fixed64 Field11 = 11 [default = 1234]; optional sfixed64 Field12 = 12 [default = 1234]; optional bool Field13 = 13 [default = true]; optional string Field14 = 14 [default = "1234"]; optional bytes Field15 = 15; } message CustomContainer { optional NidOptCustom CustomStruct = 1 [(gogoproto.nullable) = false]; } message CustomNameNidOptNative { optional double Field1 = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldB"]; optional int32 Field3 = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldC"]; optional int64 Field4 = 4 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldD"]; optional uint32 Field5 = 5 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldE"]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldF"]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldG"]; optional sint64 Field8 = 8 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldH"]; optional fixed32 Field9 = 9 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldI"]; optional sfixed32 Field10 = 10 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldJ"]; optional fixed64 Field11 = 11 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldK"]; optional sfixed64 Field12 = 12 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldL"]; optional bool Field13 = 13 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldM"]; optional string Field14 = 14 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldN"]; optional bytes Field15 = 15 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldO"]; } message CustomNameNinOptNative { optional double Field1 = 1 [(gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.customname) = "FieldB"]; optional int32 Field3 = 3 [(gogoproto.customname) = "FieldC"]; optional int64 Field4 = 4 [(gogoproto.customname) = "FieldD"]; optional uint32 Field5 = 5 [(gogoproto.customname) = "FieldE"]; optional uint64 Field6 = 6 [(gogoproto.customname) = "FieldF"]; optional sint32 Field7 = 7 [(gogoproto.customname) = "FieldG"]; optional sint64 Field8 = 8 [(gogoproto.customname) = "FieldH"]; optional fixed32 Field9 = 9 [(gogoproto.customname) = "FieldI"]; optional sfixed32 Field10 = 10 [(gogoproto.customname) = "FieldJ"]; optional fixed64 Field11 = 11 [(gogoproto.customname) = "FieldK"]; optional sfixed64 Field12 = 12 [(gogoproto.customname) = "FielL"]; optional bool Field13 = 13 [(gogoproto.customname) = "FieldM"]; optional string Field14 = 14 [(gogoproto.customname) = "FieldN"]; optional bytes Field15 = 15 [(gogoproto.customname) = "FieldO"]; } message CustomNameNinRepNative { repeated double Field1 = 1 [(gogoproto.customname) = "FieldA"]; repeated float Field2 = 2 [(gogoproto.customname) = "FieldB"]; repeated int32 Field3 = 3 [(gogoproto.customname) = "FieldC"]; repeated int64 Field4 = 4 [(gogoproto.customname) = "FieldD"]; repeated uint32 Field5 = 5 [(gogoproto.customname) = "FieldE"]; repeated uint64 Field6 = 6 [(gogoproto.customname) = "FieldF"]; repeated sint32 Field7 = 7 [(gogoproto.customname) = "FieldG"]; repeated sint64 Field8 = 8 [(gogoproto.customname) = "FieldH"]; repeated fixed32 Field9 = 9 [(gogoproto.customname) = "FieldI"]; repeated sfixed32 Field10 = 10 [(gogoproto.customname) = "FieldJ"]; repeated fixed64 Field11 = 11 [(gogoproto.customname) = "FieldK"]; repeated sfixed64 Field12 = 12 [(gogoproto.customname) = "FieldL"]; repeated bool Field13 = 13 [(gogoproto.customname) = "FieldM"]; repeated string Field14 = 14 [(gogoproto.customname) = "FieldN"]; repeated bytes Field15 = 15 [(gogoproto.customname) = "FieldO"]; } message CustomNameNinStruct { optional double Field1 = 1 [(gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.customname) = "FieldB"]; optional NidOptNative Field3 = 3 [(gogoproto.customname) = "FieldC"]; repeated NinOptNative Field4 = 4 [(gogoproto.customname) = "FieldD"]; optional uint64 Field6 = 6 [(gogoproto.customname) = "FieldE"]; optional sint32 Field7 = 7 [(gogoproto.customname) = "FieldF"]; optional NidOptNative Field8 = 8 [(gogoproto.customname) = "FieldG"]; optional bool Field13 = 13 [(gogoproto.customname) = "FieldH"]; optional string Field14 = 14 [(gogoproto.customname) = "FieldI"]; optional bytes Field15 = 15 [(gogoproto.customname) = "FieldJ"]; } message CustomNameCustomType { optional bytes Id = 1 [(gogoproto.customname) = "FieldA", (gogoproto.customtype) = "Uuid"]; optional bytes Value = 2 [(gogoproto.customname) = "FieldB", (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; repeated bytes Ids = 3 [(gogoproto.customname) = "FieldC", (gogoproto.customtype) = "Uuid"]; repeated bytes Values = 4 [(gogoproto.customname) = "FieldD", (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message CustomNameNinEmbeddedStructUnion { option (gogoproto.onlyone) = true; optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NinOptNative Field200 = 200 [(gogoproto.customname) = "FieldA"]; optional bool Field210 = 210 [(gogoproto.customname) = "FieldB"]; } message CustomNameEnum { optional TheTestEnum Field1 = 1 [(gogoproto.customname) = "FieldA"]; repeated TheTestEnum Field2 = 2 [(gogoproto.customname) = "FieldB"]; } message NoExtensionsMap { option (gogoproto.face) = false; option (gogoproto.goproto_extensions_map) = false; optional int64 Field1 = 1; extensions 100 to 199; } extend NoExtensionsMap { optional double FieldA1 = 100; optional NinOptNative FieldB1 = 101; optional NinEmbeddedStruct FieldC1 = 102; } message Unrecognized { option (gogoproto.goproto_unrecognized) = false; optional string Field1 = 1; } message UnrecognizedWithInner { message Inner { option (gogoproto.goproto_unrecognized) = false; optional uint32 Field1 = 1; } repeated Inner embedded = 1; optional string Field2 = 2; } message UnrecognizedWithEmbed { message Embedded { option (gogoproto.goproto_unrecognized) = false; optional uint32 Field1 = 1; } optional Embedded embedded = 1 [(gogoproto.embed) = true, (gogoproto.nullable) = false]; optional string Field2 = 2; } message Node { optional string Label = 1; repeated Node Children = 2; } message NonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message NidOptNonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T", (gogoproto.nullable) = false]; } message NinOptNonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message NidRepNonByteCustomType { repeated ProtoType Field1 = 1 [(gogoproto.customtype) = "T", (gogoproto.nullable) = false]; } message NinRepNonByteCustomType { repeated ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message ProtoType { optional string Field2 = 1; } golang-gogoprotobuf-0.5/test/combos/both/thetestpb_test.go000066400000000000000000020500321317075173200241340ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/thetest.proto /* Package test is a generated protocol buffer package. It is generated from these files: combos/both/thetest.proto It has these top-level messages: NidOptNative NinOptNative NidRepNative NinRepNative NidRepPackedNative NinRepPackedNative NidOptStruct NinOptStruct NidRepStruct NinRepStruct NidEmbeddedStruct NinEmbeddedStruct NidNestedStruct NinNestedStruct NidOptCustom CustomDash NinOptCustom NidRepCustom NinRepCustom NinOptNativeUnion NinOptStructUnion NinEmbeddedStructUnion NinNestedStructUnion Tree OrBranch AndBranch Leaf DeepTree ADeepBranch AndDeepBranch DeepLeaf Nil NidOptEnum NinOptEnum NidRepEnum NinRepEnum NinOptEnumDefault AnotherNinOptEnum AnotherNinOptEnumDefault Timer MyExtendable OtherExtenable NestedDefinition NestedScope NinOptNativeDefault CustomContainer CustomNameNidOptNative CustomNameNinOptNative CustomNameNinRepNative CustomNameNinStruct CustomNameCustomType CustomNameNinEmbeddedStructUnion CustomNameEnum NoExtensionsMap Unrecognized UnrecognizedWithInner UnrecognizedWithEmbed Node NonByteCustomType NidOptNonByteCustomType NinOptNonByteCustomType NidRepNonByteCustomType NinRepNonByteCustomType ProtoType */ package test import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestNidOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepPackedNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepPackedNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepPackedNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepPackedNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepPackedNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepPackedNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepPackedNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepPackedNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepPackedNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepPackedNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepPackedNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepPackedNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepPackedNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepPackedNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidEmbeddedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidEmbeddedStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidEmbeddedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidEmbeddedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidEmbeddedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidEmbeddedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidEmbeddedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinEmbeddedStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinEmbeddedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinEmbeddedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinEmbeddedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinEmbeddedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidNestedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidNestedStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidNestedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidNestedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidNestedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidNestedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidNestedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinNestedStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinNestedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinNestedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinNestedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinNestedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptCustomMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomDashProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomDashMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomDashProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomDash, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomDash(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomDashProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomDash(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomDash{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptCustomMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepCustomMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepCustomMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptNativeUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptNativeUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNativeUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNativeUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNativeUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptStructUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinEmbeddedStructUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinEmbeddedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinEmbeddedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinEmbeddedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinEmbeddedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinNestedStructUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinNestedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinNestedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinNestedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinNestedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinNestedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestTreeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestTreeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkTreeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Tree, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkTreeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedTree(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Tree{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOrBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOrBranchMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkOrBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OrBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOrBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOrBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOrBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OrBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAndBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAndBranchMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAndBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAndBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAndBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAndBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AndBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestLeafProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestLeafMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkLeafProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Leaf, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkLeafProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedLeaf(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Leaf{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDeepTreeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDeepTreeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDeepTreeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepTree, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDeepTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDeepTreeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDeepTree(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DeepTree{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestADeepBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestADeepBranchMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkADeepBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ADeepBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedADeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkADeepBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedADeepBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ADeepBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAndDeepBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAndDeepBranchMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAndDeepBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndDeepBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAndDeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAndDeepBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAndDeepBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AndDeepBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDeepLeafProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDeepLeafMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDeepLeafProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepLeaf, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDeepLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDeepLeafProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDeepLeaf(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DeepLeaf{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNilProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNilMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNilProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nil, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNil(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNilProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNil(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Nil{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptEnumDefaultMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptEnumDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnumDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptEnumDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptEnumDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptEnumDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAnotherNinOptEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAnotherNinOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAnotherNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAnotherNinOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAnotherNinOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AnotherNinOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAnotherNinOptEnumDefaultMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAnotherNinOptEnumDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnumDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAnotherNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAnotherNinOptEnumDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAnotherNinOptEnumDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AnotherNinOptEnumDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestTimerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestTimerMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkTimerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Timer, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedTimer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkTimerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedTimer(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Timer{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMyExtendableProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMyExtendableMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMyExtendableProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyExtendable, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMyExtendable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMyExtendableProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMyExtendable(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MyExtendable{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOtherExtenableProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOtherExtenableMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkOtherExtenableProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OtherExtenable, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOtherExtenable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOtherExtenableProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOtherExtenable(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OtherExtenable{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinitionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedDefinitionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedDefinitionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinitionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedDefinition_NestedMessageMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedDefinition_NestedMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinition_NestedMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition_NestedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition_NestedMessage{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessage_NestedNestedMsgProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage_NestedNestedMsg, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedScopeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedScopeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedScopeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedScope, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedScope(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedScopeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedScope(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedScope{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptNativeDefaultMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptNativeDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNativeDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNativeDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNativeDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomContainerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomContainerMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomContainerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomContainer, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomContainer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomContainerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomContainer(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomContainer{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNidOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNidOptNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNidOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNidOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNidOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNidOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNidOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNinOptNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNinOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNinRepNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNinRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNinStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNinStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinEmbeddedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNinEmbeddedStructUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNinEmbeddedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinEmbeddedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinEmbeddedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinEmbeddedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNoExtensionsMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNoExtensionsMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNoExtensionsMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NoExtensionsMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNoExtensionsMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNoExtensionsMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNoExtensionsMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NoExtensionsMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Unrecognized, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognized(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognized(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Unrecognized{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInnerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedWithInnerMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedWithInnerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithInnerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithInner(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithInner{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInner_InnerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedWithInner_InnerMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedWithInner_InnerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner_Inner, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner_Inner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithInner_InnerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithInner_Inner(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithInner_Inner{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedWithEmbedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedWithEmbedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithEmbedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithEmbed(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithEmbed{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbed_EmbeddedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedWithEmbed_EmbeddedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedWithEmbed_EmbeddedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed_Embedded, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithEmbed_EmbeddedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithEmbed_Embedded{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNodeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNodeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNodeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Node, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNode(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNodeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNode(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Node{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestProtoTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestProtoTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkProtoTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedProtoType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkProtoTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedProtoType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ProtoType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepPackedNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepPackedNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidEmbeddedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinEmbeddedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidNestedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinNestedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomDashJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinNestedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTreeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOrBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAndBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestLeafJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDeepTreeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestADeepBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAndDeepBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDeepLeafJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNilJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptEnumDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAnotherNinOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTimerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMyExtendableJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOtherExtenableJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinitionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedScopeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomContainerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNidOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNoExtensionsMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithInnerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNodeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestProtoTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepPackedNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepPackedNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepPackedNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepPackedNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidEmbeddedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidEmbeddedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidNestedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidNestedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomDashProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomDashProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTreeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Tree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTreeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Tree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOrBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOrBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestLeafProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Leaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestLeafProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Leaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepTreeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepTreeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestADeepBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestADeepBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndDeepBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndDeepBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepLeafProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepLeafProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNilProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Nil{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNilProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Nil{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTimerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Timer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTimerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Timer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyExtendableProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyExtendableProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOtherExtenableProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOtherExtenableProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinitionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinitionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedScopeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedScopeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomContainerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomContainerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNidOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNidOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNoExtensionsMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNoExtensionsMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInnerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInnerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNodeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Node{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNodeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Node{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepPackedNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepPackedNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepPackedNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepPackedNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidEmbeddedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidEmbeddedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinEmbeddedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinEmbeddedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidNestedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidNestedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinNestedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinNestedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomDashCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomDash(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNativeUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinEmbeddedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinEmbeddedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinNestedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinNestedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestTreeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedTree(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestOrBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedOrBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAndBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAndBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestLeafCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedLeaf(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestDeepTreeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedDeepTree(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestADeepBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedADeepBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAndDeepBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAndDeepBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestDeepLeafCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedDeepLeaf(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNilCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNil(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptEnumDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptEnumDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAnotherNinOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAnotherNinOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAnotherNinOptEnumDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAnotherNinOptEnumDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestTimerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedTimer(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestMyExtendableCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedMyExtendable(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestOtherExtenableCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedOtherExtenable(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinitionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinition_NestedMessageCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition_NestedMessage(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedScopeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedScope(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNativeDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomContainerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomContainer(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNidOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNidOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinEmbeddedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNoExtensionsMapCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNoExtensionsMap(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognized(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithInnerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithInner(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithInner_InnerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithInner_Inner(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithEmbedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithEmbed(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithEmbed_EmbeddedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNodeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNode(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestProtoTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedProtoType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestThetestDescription(t *testing.T) { ThetestDescription() } func TestNidOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepPackedNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepPackedNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidEmbeddedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinEmbeddedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidNestedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinNestedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomDashVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinEmbeddedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinNestedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTreeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOrBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAndBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestLeafVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDeepTreeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestADeepBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAndDeepBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDeepLeafVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNilVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptEnumDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAnotherNinOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAnotherNinOptEnumDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTimerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMyExtendableVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOtherExtenableVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinitionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinition_NestedMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedScopeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomContainerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNidOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinEmbeddedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNoExtensionsMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithInnerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithInner_InnerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithEmbedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithEmbed_EmbeddedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNodeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestProtoTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepPackedNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepPackedNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidEmbeddedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinEmbeddedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidNestedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinNestedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomDashFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNativeUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinEmbeddedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinNestedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestTreeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestOrBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAndBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestLeafFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestDeepTreeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestADeepBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAndDeepBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestDeepLeafFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNilFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAnotherNinOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestTimerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinitionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinition_NestedMessageFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedScopeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomContainerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNidOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinEmbeddedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithInnerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithInner_InnerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithEmbedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNodeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestProtoTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepPackedNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepPackedNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidEmbeddedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinEmbeddedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidNestedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinNestedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomDashGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinEmbeddedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinNestedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTreeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOrBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAndBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestLeafGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestDeepTreeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestADeepBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAndDeepBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestDeepLeafGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNilGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptEnumDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAnotherNinOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAnotherNinOptEnumDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTimerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMyExtendableGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOtherExtenableGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinitionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinition_NestedMessageGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedScopeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomContainerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNidOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinEmbeddedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNoExtensionsMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithInnerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithInner_InnerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithEmbedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithEmbed_EmbeddedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNodeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestProtoTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepPackedNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepPackedNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepPackedNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepPackedNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepPackedNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepPackedNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidEmbeddedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidEmbeddedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidEmbeddedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinEmbeddedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidNestedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidNestedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidNestedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinNestedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomDashSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomDashSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomDash, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomDash(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNativeUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinEmbeddedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinNestedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinNestedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestTreeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkTreeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Tree, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOrBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOrBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OrBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOrBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAndBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAndBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAndBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestLeafSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkLeafSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Leaf, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDeepTreeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDeepTreeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepTree, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDeepTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestADeepBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkADeepBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ADeepBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedADeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAndDeepBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAndDeepBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndDeepBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAndDeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDeepLeafSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDeepLeafSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepLeaf, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDeepLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNilSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNilSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nil, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNil(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptEnumDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnumDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAnotherNinOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAnotherNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAnotherNinOptEnumDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnumDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAnotherNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestTimerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkTimerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Timer, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedTimer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMyExtendableSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMyExtendableSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyExtendable, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMyExtendable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOtherExtenableSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOtherExtenableSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OtherExtenable, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOtherExtenable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinitionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinitionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinition_NestedMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessage_NestedNestedMsgSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage_NestedNestedMsg, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedScopeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedScopeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedScope, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedScope(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNativeDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomContainerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomContainerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomContainer, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomContainer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNidOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNidOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNidOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinEmbeddedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinEmbeddedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinEmbeddedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNoExtensionsMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNoExtensionsMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NoExtensionsMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNoExtensionsMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Unrecognized, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognized(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInnerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithInnerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInner_InnerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithInner_InnerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner_Inner, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner_Inner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithEmbedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbed_EmbeddedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithEmbed_EmbeddedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed_Embedded, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNodeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNodeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Node, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNode(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestProtoTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkProtoTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedProtoType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepPackedNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepPackedNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidEmbeddedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinEmbeddedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidNestedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinNestedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomDashStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinEmbeddedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinNestedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTreeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOrBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAndBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestLeafStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestDeepTreeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestADeepBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAndDeepBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestDeepLeafStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNilStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptEnumDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAnotherNinOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAnotherNinOptEnumDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTimerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestMyExtendableStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOtherExtenableStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinitionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinition_NestedMessageStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedScopeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomContainerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNidOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinEmbeddedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNoExtensionsMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithInnerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithInner_InnerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithEmbedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithEmbed_EmbeddedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNodeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestProtoTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, true) v := p.GetValue() msg := &NinOptNativeUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinOptStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, true) v := p.GetValue() msg := &NinOptStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinEmbeddedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, true) v := p.GetValue() msg := &NinEmbeddedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinNestedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, true) v := p.GetValue() msg := &NinNestedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestTreeOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, true) v := p.GetValue() msg := &Tree{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestDeepTreeOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, true) v := p.GetValue() msg := &DeepTree{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestCustomNameNinEmbeddedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) v := p.GetValue() msg := &CustomNameNinEmbeddedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/combos/both/uuid.go000066400000000000000000000063211317075173200220410ustar00rootroot00000000000000// 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. package test import ( "bytes" "encoding/hex" "encoding/json" ) func PutLittleEndianUint64(b []byte, offset int, v uint64) { b[offset] = byte(v) b[offset+1] = byte(v >> 8) b[offset+2] = byte(v >> 16) b[offset+3] = byte(v >> 24) b[offset+4] = byte(v >> 32) b[offset+5] = byte(v >> 40) b[offset+6] = byte(v >> 48) b[offset+7] = byte(v >> 56) } type Uuid []byte func (uuid Uuid) Marshal() ([]byte, error) { if len(uuid) == 0 { return nil, nil } return []byte(uuid), nil } func (uuid Uuid) MarshalTo(data []byte) (n int, err error) { if len(uuid) == 0 { return 0, nil } copy(data, uuid) return 16, nil } func (uuid *Uuid) Unmarshal(data []byte) error { if len(data) == 0 { uuid = nil return nil } id := Uuid(make([]byte, 16)) copy(id, data) *uuid = id return nil } func (uuid *Uuid) Size() int { if uuid == nil { return 0 } if len(*uuid) == 0 { return 0 } return 16 } func (uuid Uuid) MarshalJSON() ([]byte, error) { s := hex.EncodeToString([]byte(uuid)) return json.Marshal(s) } func (uuid *Uuid) UnmarshalJSON(data []byte) error { var s string err := json.Unmarshal(data, &s) if err != nil { return err } d, err := hex.DecodeString(s) if err != nil { return err } *uuid = Uuid(d) return nil } func (uuid Uuid) Equal(other Uuid) bool { return bytes.Equal(uuid[0:], other[0:]) } func (uuid Uuid) Compare(other Uuid) int { return bytes.Compare(uuid[0:], other[0:]) } type int63 interface { Int63() int64 } func NewPopulatedUuid(r int63) *Uuid { u := RandV4(r) return &u } func RandV4(r int63) Uuid { uuid := make(Uuid, 16) uuid.RandV4(r) return uuid } func (uuid Uuid) RandV4(r int63) { PutLittleEndianUint64(uuid, 0, uint64(r.Int63())) PutLittleEndianUint64(uuid, 8, uint64(r.Int63())) uuid[6] = (uuid[6] & 0xf) | 0x40 uuid[8] = (uuid[8] & 0x3f) | 0x80 } golang-gogoprotobuf-0.5/test/combos/marshaler/000077500000000000000000000000001317075173200215645ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/combos/marshaler/bug_test.go000066400000000000000000000276111317075173200237360ustar00rootroot00000000000000// 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. package test import ( "fmt" "math" "math/rand" "testing" "time" "github.com/gogo/protobuf/proto" ) //http://code.google.com/p/goprotobuf/issues/detail?id=39 func TestBugUint32VarintSize(t *testing.T) { temp := uint32(math.MaxUint32) n := &NinOptNative{} n.Field5 = &temp data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != 6 { t.Fatalf("data should be length 6, but its %#v", data) } } func TestBugZeroLengthSliceSize(t *testing.T) { n := &NinRepPackedNative{ Field8: []int64{}, } size := n.Size() data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != size { t.Fatalf("expected %v, but got %v", len(data), size) } } //http://code.google.com/p/goprotobuf/issues/detail?id=40 func TestBugPackedProtoSize(t *testing.T) { n := &NinRepPackedNative{ Field4: []int64{172960727389894724, 2360337516664475010, 860833876131988189, 9068073014890763245, 7794843386260381831, 4023536436053141786, 8992311247496919020, 4330096163611305776, 4490411416244976467, 7873947349172707443, 2754969595834279669, 1360667855926938684, 4771480785172657389, 4875578924966668055, 8070579869808877481, 9128179594766551001, 4630419407064527516, 863844540220372892, 8208727650143073487, 7086117356301045838, 7779695211931506151, 5493835345187563535, 9119767633370806007, 9054342025895349248, 1887303228838508438, 7624573031734528281, 1874668389749611225, 3517684643468970593, 6677697606628877758, 7293473953189936168, 444475066704085538, 8594971141363049302, 1146643249094989673, 733393306232853371, 7721178528893916886, 7784452000911004429, 6436373110242711440, 6897422461738321237, 8772249155667732778, 6211871464311393541, 3061903718310406883, 7845488913176136641, 8342255034663902574, 3443058984649725748, 8410801047334832902, 7496541071517841153, 4305416923521577765, 7814967600020476457, 8671843803465481186, 3490266370361096855, 1447425664719091336, 653218597262334239, 8306243902880091940, 7851896059762409081, 5936760560798954978, 5755724498441478025, 7022701569985035966, 3707709584811468220, 529069456924666920, 7986469043681522462, 3092513330689518836, 5103541550470476202, 3577384161242626406, 3733428084624703294, 8388690542440473117, 3262468785346149388, 8788358556558007570, 5476276940198542020, 7277903243119461239, 5065861426928605020, 7533460976202697734, 1749213838654236956, 557497603941617931, 5496307611456481108, 6444547750062831720, 6992758776744205596, 7356719693428537399, 2896328872476734507, 381447079530132038, 598300737753233118, 3687980626612697715, 7240924191084283349, 8172414415307971170, 4847024388701257185, 2081764168600256551, 3394217778539123488, 6244660626429310923, 8301712215675381614, 5360615125359461174, 8410140945829785773, 3152963269026381373, 6197275282781459633, 4419829061407546410, 6262035523070047537, 2837207483933463885, 2158105736666826128, 8150764172235490711}, Field7: []int32{249451845, 1409974015, 393609128, 435232428, 1817529040, 91769006, 861170933, 1556185603, 1568580279, 1236375273, 512276621, 693633711, 967580535, 1950715977, 853431462, 1362390253, 159591204, 111900629, 322985263, 279671129, 1592548430, 465651370, 733849989, 1172059400, 1574824441, 263541092, 1271612397, 1520584358, 467078791, 117698716, 1098255064, 2054264846, 1766452305, 1267576395, 1557505617, 1187833560, 956187431, 1970977586, 1160235159, 1610259028, 489585797, 459139078, 566263183, 954319278, 1545018565, 1753946743, 948214318, 422878159, 883926576, 1424009347, 824732372, 1290433180, 80297942, 417294230, 1402647904, 2078392782, 220505045, 787368129, 463781454, 293083578, 808156928, 293976361}, Field9: []uint32{0xaa4976e8, 0x3da8cc4c, 0x8c470d83, 0x344d964e, 0x5b90925, 0xa4c4d34e, 0x666eff19, 0xc238e552, 0x9be53bb6, 0x56364245, 0x33ee079d, 0x96bf0ede, 0x7941b74f, 0xdb07cb47, 0x6d76d827, 0x9b211d5d, 0x2798adb6, 0xe48b0c3b, 0x87061b21, 0x48f4e4d2, 0x3e5d5c12, 0x5ee91288, 0x336d4f35, 0xe1d44941, 0xc065548d, 0x2953d73f, 0x873af451, 0xfc769db, 0x9f1bf8da, 0x9baafdfc, 0xf1d3d770, 0x5bb5d2b4, 0xc2c67c48, 0x6845c4c1, 0xa48f32b0, 0xbb04bb70, 0xa5b1ca36, 0x8d98356a, 0x2171f654, 0x5ae279b0, 0x6c4a3d6b, 0x4fff5468, 0xcf9bf851, 0x68513614, 0xdbecd9b0, 0x9553ed3c, 0xa494a736, 0x42205438, 0xbf8e5caa, 0xd3283c6, 0x76d20788, 0x9179826f, 0x96b24f85, 0xbc2eacf4, 0xe4afae0b, 0x4bca85cb, 0x35e63b5b, 0xd7ccee0c, 0x2b506bb9, 0xe78e9f44, 0x9ad232f1, 0x99a37335, 0xa5d6ffc8}, Field11: []uint64{0x53c01ebc, 0x4fb85ba6, 0x8805eea1, 0xb20ec896, 0x93b63410, 0xec7c9492, 0x50765a28, 0x19592106, 0x2ecc59b3, 0x39cd474f, 0xe4c9e47, 0x444f48c5, 0xe7731d32, 0xf3f43975, 0x603caedd, 0xbb05a1af, 0xa808e34e, 0x88580b07, 0x4c96bbd1, 0x730b4ab9, 0xed126e2b, 0x6db48205, 0x154ba1b9, 0xc26bfb6a, 0x389aa052, 0x869d966c, 0x7c86b366, 0xcc8edbcd, 0xfa8d6dad, 0xcf5857d9, 0x2d9cda0f, 0x1218a0b8, 0x41bf997, 0xf0ca65ac, 0xa610d4b9, 0x8d362e28, 0xb7212d87, 0x8e0fe109, 0xbee041d9, 0x759be2f6, 0x35fef4f3, 0xaeacdb71, 0x10888852, 0xf4e28117, 0xe2a14812, 0x73b748dc, 0xd1c3c6b2, 0xfef41bf0, 0xc9b43b62, 0x810e4faa, 0xcaa41c06, 0x1893fe0d, 0xedc7c850, 0xd12b9eaa, 0x467ee1a9, 0xbe84756b, 0xda7b1680, 0xdc069ffe, 0xf1e7e9f9, 0xb3d95370, 0xa92b77df, 0x5693ac41, 0xd04b7287, 0x27aebf15, 0x837b316e, 0x4dbe2263, 0xbab70c67, 0x547dab21, 0x3c346c1f, 0xb8ef0e4e, 0xfe2d03ce, 0xe1d75955, 0xfec1306, 0xba35c23e, 0xb784ed04, 0x2a4e33aa, 0x7e19d09a, 0x3827c1fe, 0xf3a51561, 0xef765e2b, 0xb044256c, 0x62b322be, 0xf34d56be, 0xeb71b369, 0xffe1294f, 0x237fe8d0, 0x77a1473b, 0x239e1196, 0xdd19bf3d, 0x82c91fe1, 0x95361c57, 0xffea3f1b, 0x1a094c84}, Field12: []int64{8308420747267165049, 3664160795077875961, 7868970059161834817, 7237335984251173739, 5254748003907196506, 3362259627111837480, 430460752854552122, 5119635556501066533, 1277716037866233522, 9185775384759813768, 833932430882717888, 7986528304451297640, 6792233378368656337, 2074207091120609721, 1788723326198279432, 7756514594746453657, 2283775964901597324, 3061497730110517191, 7733947890656120277, 626967303632386244, 7822928600388582821, 3489658753000061230, 168869995163005961, 248814782163480763, 477885608911386247, 4198422415674133867, 3379354662797976109, 9925112544736939, 1486335136459138480, 4561560414032850671, 1010864164014091267, 186722821683803084, 5106357936724819318, 1298160820191228988, 4675403242419953145, 7130634540106489752, 7101280006672440929, 7176058292431955718, 9109875054097770321, 6810974877085322872, 4736707874303993641, 8993135362721382187, 6857881554990254283, 3704748883307461680, 1099360832887634994, 5207691918707192633, 5984721695043995243}, } size := proto.Size(n) data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != size { t.Fatalf("expected %v, but got %v diff is %v", len(data), size, len(data)-size) } } func testSize(m interface { proto.Message Size() int }, desc string, expected int) ([]byte, error) { data, err := proto.Marshal(m) if err != nil { return nil, err } protoSize := proto.Size(m) mSize := m.Size() lenData := len(data) if protoSize != mSize || protoSize != lenData || mSize != lenData { return nil, fmt.Errorf("%s proto.Size(m){%d} != m.Size(){%d} != len(data){%d}", desc, protoSize, mSize, lenData) } if got := protoSize; got != expected { return nil, fmt.Errorf("%s proto.Size(m) got %d expected %d", desc, got, expected) } if got := mSize; got != expected { return nil, fmt.Errorf("%s m.Size() got %d expected %d", desc, got, expected) } if got := lenData; got != expected { return nil, fmt.Errorf("%s len(data) got %d expected %d", desc, got, expected) } return data, nil } func TestInt32Int64Compatibility(t *testing.T) { //test nullable int32 and int64 data1, err := testSize(&NinOptNative{ Field3: proto.Int32(-1), }, "nullable", 11) if err != nil { t.Error(err) } //change marshaled data1 to unmarshal into 4th field which is an int64 data1[0] = uint8(uint32(4 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) u1 := &NinOptNative{} if err = proto.Unmarshal(data1, u1); err != nil { t.Error(err) } if !u1.Equal(&NinOptNative{ Field4: proto.Int64(-1), }) { t.Error("nullable unmarshaled int32 is not the same int64") } //test non-nullable int32 and int64 data2, err := testSize(&NidOptNative{ Field3: -1, }, "non nullable", 67) if err != nil { t.Error(err) } //change marshaled data2 to unmarshal into 4th field which is an int64 field3 := uint8(uint32(3 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) field4 := uint8(uint32(4 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) for i, c := range data2 { if c == field4 { data2[i] = field3 } else if c == field3 { data2[i] = field4 } } u2 := &NidOptNative{} if err = proto.Unmarshal(data2, u2); err != nil { t.Error(err) } if !u2.Equal(&NidOptNative{ Field4: -1, }) { t.Error("non nullable unmarshaled int32 is not the same int64") } //test packed repeated int32 and int64 m4 := &NinRepPackedNative{ Field3: []int32{-1}, } data4, err := testSize(m4, "packed", 12) if err != nil { t.Error(err) } u4 := &NinRepPackedNative{} if err := proto.Unmarshal(data4, u4); err != nil { t.Error(err) } if err := u4.VerboseEqual(m4); err != nil { t.Fatalf("%#v", u4) } //test repeated int32 and int64 if _, err := testSize(&NinRepNative{ Field3: []int32{-1}, }, "repeated", 11); err != nil { t.Error(err) } t.Logf("tested all") } func TestRepeatedExtensionsMsgsIssue161(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) rep := 10 nins := make([]*NinOptNative, rep) for i := range nins { nins[i] = NewPopulatedNinOptNative(r, true) } input := &MyExtendable{} if err := proto.SetExtension(input, E_FieldE, nins); err != nil { t.Fatal(err) } data, err := proto.Marshal(input) if err != nil { t.Fatal(err) } output := &MyExtendable{} if err := proto.Unmarshal(data, output); err != nil { t.Fatal(err) } if !input.Equal(output) { t.Fatal("expected equal") } data2, err2 := proto.Marshal(output) if err2 != nil { t.Fatal(err2) } if len(data) != len(data2) { t.Fatal("expected equal length buffers") } } func TestRepeatedExtensionsFieldsIssue161(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) rep := 10 ints := make([]int64, rep) for i := range ints { ints[i] = r.Int63() } input := &MyExtendable{} if err := proto.SetExtension(input, E_FieldD, ints); err != nil { t.Fatal(err) } data, err := proto.Marshal(input) if err != nil { t.Fatal(err) } output := &MyExtendable{} if err := proto.Unmarshal(data, output); err != nil { t.Fatal(err) } if !input.Equal(output) { t.Fatal("expected equal") } data2, err2 := proto.Marshal(output) if err2 != nil { t.Fatal(err2) } if len(data) != len(data2) { t.Fatal("expected equal length buffers") } } golang-gogoprotobuf-0.5/test/combos/marshaler/t.go000066400000000000000000000023141317075173200223560ustar00rootroot00000000000000package test import ( "encoding/json" "strings" "github.com/gogo/protobuf/proto" ) type T struct { Data string } func (gt *T) protoType() *ProtoType { return &ProtoType{ Field2: >.Data, } } func (gt T) Equal(other T) bool { return gt.protoType().Equal(other.protoType()) } func (gt *T) Size() int { proto := &ProtoType{ Field2: >.Data, } return proto.Size() } func NewPopulatedT(r randyThetest) *T { data := NewPopulatedProtoType(r, false).Field2 gt := &T{} if data != nil { gt.Data = *data } return gt } func (r T) Marshal() ([]byte, error) { return proto.Marshal(r.protoType()) } func (r *T) MarshalTo(data []byte) (n int, err error) { return r.protoType().MarshalTo(data) } func (r *T) Unmarshal(data []byte) error { pr := &ProtoType{} err := proto.Unmarshal(data, pr) if err != nil { return err } if pr.Field2 != nil { r.Data = *pr.Field2 } return nil } func (gt T) MarshalJSON() ([]byte, error) { return json.Marshal(gt.Data) } func (gt *T) UnmarshalJSON(data []byte) error { var s string err := json.Unmarshal(data, &s) if err != nil { return err } *gt = T{Data: s} return nil } func (gt T) Compare(other T) int { return strings.Compare(gt.Data, other.Data) } golang-gogoprotobuf-0.5/test/combos/marshaler/thetest.pb.go000066400000000000000000030222421317075173200242000ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/thetest.proto /* Package test is a generated protocol buffer package. It is generated from these files: combos/marshaler/thetest.proto It has these top-level messages: NidOptNative NinOptNative NidRepNative NinRepNative NidRepPackedNative NinRepPackedNative NidOptStruct NinOptStruct NidRepStruct NinRepStruct NidEmbeddedStruct NinEmbeddedStruct NidNestedStruct NinNestedStruct NidOptCustom CustomDash NinOptCustom NidRepCustom NinRepCustom NinOptNativeUnion NinOptStructUnion NinEmbeddedStructUnion NinNestedStructUnion Tree OrBranch AndBranch Leaf DeepTree ADeepBranch AndDeepBranch DeepLeaf Nil NidOptEnum NinOptEnum NidRepEnum NinRepEnum NinOptEnumDefault AnotherNinOptEnum AnotherNinOptEnumDefault Timer MyExtendable OtherExtenable NestedDefinition NestedScope NinOptNativeDefault CustomContainer CustomNameNidOptNative CustomNameNinOptNative CustomNameNinRepNative CustomNameNinStruct CustomNameCustomType CustomNameNinEmbeddedStructUnion CustomNameEnum NoExtensionsMap Unrecognized UnrecognizedWithInner UnrecognizedWithEmbed Node NonByteCustomType NidOptNonByteCustomType NinOptNonByteCustomType NidRepNonByteCustomType NinRepNonByteCustomType ProtoType */ package test import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test_custom_dash_type "github.com/gogo/protobuf/test/custom-dash-type" import bytes "bytes" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import compress_gzip "compress/gzip" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import sort "sort" import reflect "reflect" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type TheTestEnum int32 const ( A TheTestEnum = 0 B TheTestEnum = 1 C TheTestEnum = 2 ) var TheTestEnum_name = map[int32]string{ 0: "A", 1: "B", 2: "C", } var TheTestEnum_value = map[string]int32{ "A": 0, "B": 1, "C": 2, } func (x TheTestEnum) Enum() *TheTestEnum { p := new(TheTestEnum) *p = x return p } func (x TheTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(TheTestEnum_name, int32(x)) } func (x *TheTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(TheTestEnum_value, data, "TheTestEnum") if err != nil { return err } *x = TheTestEnum(value) return nil } func (TheTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{0} } type AnotherTestEnum int32 const ( D AnotherTestEnum = 10 E AnotherTestEnum = 11 ) var AnotherTestEnum_name = map[int32]string{ 10: "D", 11: "E", } var AnotherTestEnum_value = map[string]int32{ "D": 10, "E": 11, } func (x AnotherTestEnum) Enum() *AnotherTestEnum { p := new(AnotherTestEnum) *p = x return p } func (x AnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(AnotherTestEnum_name, int32(x)) } func (x *AnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(AnotherTestEnum_value, data, "AnotherTestEnum") if err != nil { return err } *x = AnotherTestEnum(value) return nil } func (AnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{1} } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. type YetAnotherTestEnum int32 const ( AA YetAnotherTestEnum = 0 BetterYetBB YetAnotherTestEnum = 1 ) var YetAnotherTestEnum_name = map[int32]string{ 0: "AA", 1: "BB", } var YetAnotherTestEnum_value = map[string]int32{ "AA": 0, "BB": 1, } func (x YetAnotherTestEnum) Enum() *YetAnotherTestEnum { p := new(YetAnotherTestEnum) *p = x return p } func (x YetAnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(YetAnotherTestEnum_name, int32(x)) } func (x *YetAnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(YetAnotherTestEnum_value, data, "YetAnotherTestEnum") if err != nil { return err } *x = YetAnotherTestEnum(value) return nil } func (YetAnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{2} } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. type YetYetAnotherTestEnum int32 const ( YetYetAnotherTestEnum_CC YetYetAnotherTestEnum = 0 YetYetAnotherTestEnum_BetterYetDD YetYetAnotherTestEnum = 1 ) var YetYetAnotherTestEnum_name = map[int32]string{ 0: "CC", 1: "DD", } var YetYetAnotherTestEnum_value = map[string]int32{ "CC": 0, "DD": 1, } func (x YetYetAnotherTestEnum) Enum() *YetYetAnotherTestEnum { p := new(YetYetAnotherTestEnum) *p = x return p } func (x YetYetAnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(YetYetAnotherTestEnum_name, int32(x)) } func (x *YetYetAnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(YetYetAnotherTestEnum_value, data, "YetYetAnotherTestEnum") if err != nil { return err } *x = YetYetAnotherTestEnum(value) return nil } func (YetYetAnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{3} } type NestedDefinition_NestedEnum int32 const ( TYPE_NESTED NestedDefinition_NestedEnum = 1 ) var NestedDefinition_NestedEnum_name = map[int32]string{ 1: "TYPE_NESTED", } var NestedDefinition_NestedEnum_value = map[string]int32{ "TYPE_NESTED": 1, } func (x NestedDefinition_NestedEnum) Enum() *NestedDefinition_NestedEnum { p := new(NestedDefinition_NestedEnum) *p = x return p } func (x NestedDefinition_NestedEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(NestedDefinition_NestedEnum_name, int32(x)) } func (x *NestedDefinition_NestedEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(NestedDefinition_NestedEnum_value, data, "NestedDefinition_NestedEnum") if err != nil { return err } *x = NestedDefinition_NestedEnum(value) return nil } func (NestedDefinition_NestedEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0} } type NidOptNative struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` Field2 float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` Field3 int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3"` Field4 int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4"` Field5 uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5"` Field6 uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8"` Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9"` Field10 int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10"` Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11"` Field12 int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12"` Field13 bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` Field14 string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptNative) Reset() { *m = NidOptNative{} } func (*NidOptNative) ProtoMessage() {} func (*NidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{0} } type NinOptNative struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNative) Reset() { *m = NinOptNative{} } func (*NinOptNative) ProtoMessage() {} func (*NinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{1} } type NidRepNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepNative) Reset() { *m = NidRepNative{} } func (*NidRepNative) ProtoMessage() {} func (*NidRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{2} } type NinRepNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNative) Reset() { *m = NinRepNative{} } func (*NinRepNative) ProtoMessage() {} func (*NinRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{3} } type NidRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepPackedNative) Reset() { *m = NidRepPackedNative{} } func (*NidRepPackedNative) ProtoMessage() {} func (*NidRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{4} } type NinRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepPackedNative) Reset() { *m = NinRepPackedNative{} } func (*NinRepPackedNative) ProtoMessage() {} func (*NinRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{5} } type NidOptStruct struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` Field2 float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` Field3 NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3"` Field4 NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4"` Field6 uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` Field8 NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8"` Field13 bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` Field14 string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptStruct) Reset() { *m = NidOptStruct{} } func (*NidOptStruct) ProtoMessage() {} func (*NidOptStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{6} } type NinOptStruct struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptStruct) Reset() { *m = NinOptStruct{} } func (*NinOptStruct) ProtoMessage() {} func (*NinOptStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{7} } type NidRepStruct struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []NidOptNative `protobuf:"bytes,3,rep,name=Field3" json:"Field3"` Field4 []NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []NidOptNative `protobuf:"bytes,8,rep,name=Field8" json:"Field8"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepStruct) Reset() { *m = NidRepStruct{} } func (*NidRepStruct) ProtoMessage() {} func (*NidRepStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{8} } type NinRepStruct struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []*NidOptNative `protobuf:"bytes,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []*NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []*NidOptNative `protobuf:"bytes,8,rep,name=Field8" json:"Field8,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepStruct) Reset() { *m = NinRepStruct{} } func (*NinRepStruct) ProtoMessage() {} func (*NinRepStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{9} } type NidEmbeddedStruct struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 NidOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200"` Field210 bool `protobuf:"varint,210,opt,name=Field210" json:"Field210"` XXX_unrecognized []byte `json:"-"` } func (m *NidEmbeddedStruct) Reset() { *m = NidEmbeddedStruct{} } func (*NidEmbeddedStruct) ProtoMessage() {} func (*NidEmbeddedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{10} } type NinEmbeddedStruct struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 *NidOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` Field210 *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinEmbeddedStruct) Reset() { *m = NinEmbeddedStruct{} } func (*NinEmbeddedStruct) ProtoMessage() {} func (*NinEmbeddedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{11} } type NidNestedStruct struct { Field1 NidOptStruct `protobuf:"bytes,1,opt,name=Field1" json:"Field1"` Field2 []NidRepStruct `protobuf:"bytes,2,rep,name=Field2" json:"Field2"` XXX_unrecognized []byte `json:"-"` } func (m *NidNestedStruct) Reset() { *m = NidNestedStruct{} } func (*NidNestedStruct) ProtoMessage() {} func (*NidNestedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{12} } type NinNestedStruct struct { Field1 *NinOptStruct `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 []*NinRepStruct `protobuf:"bytes,2,rep,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinNestedStruct) Reset() { *m = NinNestedStruct{} } func (*NinNestedStruct) ProtoMessage() {} func (*NinNestedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{13} } type NidOptCustom struct { Id Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id"` Value github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptCustom) Reset() { *m = NidOptCustom{} } func (*NidOptCustom) ProtoMessage() {} func (*NidOptCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{14} } type CustomDash struct { Value *github_com_gogo_protobuf_test_custom_dash_type.Bytes `protobuf:"bytes,1,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom-dash-type.Bytes" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomDash) Reset() { *m = CustomDash{} } func (*CustomDash) ProtoMessage() {} func (*CustomDash) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{15} } type NinOptCustom struct { Id *Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id,omitempty"` Value *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptCustom) Reset() { *m = NinOptCustom{} } func (*NinOptCustom) ProtoMessage() {} func (*NinOptCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{16} } type NidRepCustom struct { Id []Uuid `protobuf:"bytes,1,rep,name=Id,customtype=Uuid" json:"Id"` Value []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepCustom) Reset() { *m = NidRepCustom{} } func (*NidRepCustom) ProtoMessage() {} func (*NidRepCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{17} } type NinRepCustom struct { Id []Uuid `protobuf:"bytes,1,rep,name=Id,customtype=Uuid" json:"Id,omitempty"` Value []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepCustom) Reset() { *m = NinRepCustom{} } func (*NinRepCustom) ProtoMessage() {} func (*NinRepCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{18} } type NinOptNativeUnion struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNativeUnion) Reset() { *m = NinOptNativeUnion{} } func (*NinOptNativeUnion) ProtoMessage() {} func (*NinOptNativeUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{19} } type NinOptStructUnion struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptStructUnion) Reset() { *m = NinOptStructUnion{} } func (*NinOptStructUnion) ProtoMessage() {} func (*NinOptStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{20} } type NinEmbeddedStructUnion struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 *NinOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` Field210 *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinEmbeddedStructUnion) Reset() { *m = NinEmbeddedStructUnion{} } func (*NinEmbeddedStructUnion) ProtoMessage() {} func (*NinEmbeddedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{21} } type NinNestedStructUnion struct { Field1 *NinOptNativeUnion `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *NinOptStructUnion `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NinEmbeddedStructUnion `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinNestedStructUnion) Reset() { *m = NinNestedStructUnion{} } func (*NinNestedStructUnion) ProtoMessage() {} func (*NinNestedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{22} } type Tree struct { Or *OrBranch `protobuf:"bytes,1,opt,name=Or" json:"Or,omitempty"` And *AndBranch `protobuf:"bytes,2,opt,name=And" json:"And,omitempty"` Leaf *Leaf `protobuf:"bytes,3,opt,name=Leaf" json:"Leaf,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Tree) Reset() { *m = Tree{} } func (*Tree) ProtoMessage() {} func (*Tree) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{23} } type OrBranch struct { Left Tree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right Tree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *OrBranch) Reset() { *m = OrBranch{} } func (*OrBranch) ProtoMessage() {} func (*OrBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{24} } type AndBranch struct { Left Tree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right Tree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *AndBranch) Reset() { *m = AndBranch{} } func (*AndBranch) ProtoMessage() {} func (*AndBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{25} } type Leaf struct { Value int64 `protobuf:"varint,1,opt,name=Value" json:"Value"` StrValue string `protobuf:"bytes,2,opt,name=StrValue" json:"StrValue"` XXX_unrecognized []byte `json:"-"` } func (m *Leaf) Reset() { *m = Leaf{} } func (*Leaf) ProtoMessage() {} func (*Leaf) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{26} } type DeepTree struct { Down *ADeepBranch `protobuf:"bytes,1,opt,name=Down" json:"Down,omitempty"` And *AndDeepBranch `protobuf:"bytes,2,opt,name=And" json:"And,omitempty"` Leaf *DeepLeaf `protobuf:"bytes,3,opt,name=Leaf" json:"Leaf,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *DeepTree) Reset() { *m = DeepTree{} } func (*DeepTree) ProtoMessage() {} func (*DeepTree) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{27} } type ADeepBranch struct { Down DeepTree `protobuf:"bytes,2,opt,name=Down" json:"Down"` XXX_unrecognized []byte `json:"-"` } func (m *ADeepBranch) Reset() { *m = ADeepBranch{} } func (*ADeepBranch) ProtoMessage() {} func (*ADeepBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{28} } type AndDeepBranch struct { Left DeepTree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right DeepTree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *AndDeepBranch) Reset() { *m = AndDeepBranch{} } func (*AndDeepBranch) ProtoMessage() {} func (*AndDeepBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{29} } type DeepLeaf struct { Tree Tree `protobuf:"bytes,1,opt,name=Tree" json:"Tree"` XXX_unrecognized []byte `json:"-"` } func (m *DeepLeaf) Reset() { *m = DeepLeaf{} } func (*DeepLeaf) ProtoMessage() {} func (*DeepLeaf) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{30} } type Nil struct { XXX_unrecognized []byte `json:"-"` } func (m *Nil) Reset() { *m = Nil{} } func (*Nil) ProtoMessage() {} func (*Nil) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{31} } type NidOptEnum struct { Field1 TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptEnum) Reset() { *m = NidOptEnum{} } func (*NidOptEnum) ProtoMessage() {} func (*NidOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{32} } type NinOptEnum struct { Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptEnum) Reset() { *m = NinOptEnum{} } func (*NinOptEnum) ProtoMessage() {} func (*NinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{33} } type NidRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 []YetAnotherTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 []YetYetAnotherTestEnum `protobuf:"varint,3,rep,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepEnum) Reset() { *m = NidRepEnum{} } func (*NidRepEnum) ProtoMessage() {} func (*NidRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{34} } type NinRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 []YetAnotherTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 []YetYetAnotherTestEnum `protobuf:"varint,3,rep,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepEnum) Reset() { *m = NinRepEnum{} } func (*NinRepEnum) ProtoMessage() {} func (*NinRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{35} } type NinOptEnumDefault struct { Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum,def=2" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum,def=1" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum,def=0" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptEnumDefault) Reset() { *m = NinOptEnumDefault{} } func (*NinOptEnumDefault) ProtoMessage() {} func (*NinOptEnumDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{36} } const Default_NinOptEnumDefault_Field1 TheTestEnum = C const Default_NinOptEnumDefault_Field2 YetAnotherTestEnum = BetterYetBB const Default_NinOptEnumDefault_Field3 YetYetAnotherTestEnum = YetYetAnotherTestEnum_CC func (m *NinOptEnumDefault) GetField1() TheTestEnum { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_NinOptEnumDefault_Field1 } func (m *NinOptEnumDefault) GetField2() YetAnotherTestEnum { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_NinOptEnumDefault_Field2 } func (m *NinOptEnumDefault) GetField3() YetYetAnotherTestEnum { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_NinOptEnumDefault_Field3 } type AnotherNinOptEnum struct { Field1 *AnotherTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.AnotherTestEnum" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *AnotherNinOptEnum) Reset() { *m = AnotherNinOptEnum{} } func (*AnotherNinOptEnum) ProtoMessage() {} func (*AnotherNinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{37} } type AnotherNinOptEnumDefault struct { Field1 *AnotherTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.AnotherTestEnum,def=11" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum,def=1" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum,def=0" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *AnotherNinOptEnumDefault) Reset() { *m = AnotherNinOptEnumDefault{} } func (*AnotherNinOptEnumDefault) ProtoMessage() {} func (*AnotherNinOptEnumDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{38} } const Default_AnotherNinOptEnumDefault_Field1 AnotherTestEnum = E const Default_AnotherNinOptEnumDefault_Field2 YetAnotherTestEnum = BetterYetBB const Default_AnotherNinOptEnumDefault_Field3 YetYetAnotherTestEnum = YetYetAnotherTestEnum_CC func (m *AnotherNinOptEnumDefault) GetField1() AnotherTestEnum { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_AnotherNinOptEnumDefault_Field1 } func (m *AnotherNinOptEnumDefault) GetField2() YetAnotherTestEnum { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_AnotherNinOptEnumDefault_Field2 } func (m *AnotherNinOptEnumDefault) GetField3() YetYetAnotherTestEnum { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_AnotherNinOptEnumDefault_Field3 } type Timer struct { Time1 int64 `protobuf:"fixed64,1,opt,name=Time1" json:"Time1"` Time2 int64 `protobuf:"fixed64,2,opt,name=Time2" json:"Time2"` Data []byte `protobuf:"bytes,3,opt,name=Data" json:"Data"` XXX_unrecognized []byte `json:"-"` } func (m *Timer) Reset() { *m = Timer{} } func (*Timer) ProtoMessage() {} func (*Timer) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{39} } type MyExtendable struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *MyExtendable) Reset() { *m = MyExtendable{} } func (*MyExtendable) ProtoMessage() {} func (*MyExtendable) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{40} } var extRange_MyExtendable = []proto.ExtensionRange{ {Start: 100, End: 199}, } func (*MyExtendable) ExtensionRangeArray() []proto.ExtensionRange { return extRange_MyExtendable } type OtherExtenable struct { Field2 *int64 `protobuf:"varint,2,opt,name=Field2" json:"Field2,omitempty"` Field13 *int64 `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` M *MyExtendable `protobuf:"bytes,1,opt,name=M" json:"M,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *OtherExtenable) Reset() { *m = OtherExtenable{} } func (*OtherExtenable) ProtoMessage() {} func (*OtherExtenable) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{41} } var extRange_OtherExtenable = []proto.ExtensionRange{ {Start: 14, End: 16}, {Start: 10, End: 12}, } func (*OtherExtenable) ExtensionRangeArray() []proto.ExtensionRange { return extRange_OtherExtenable } type NestedDefinition struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` EnumField *NestedDefinition_NestedEnum `protobuf:"varint,2,opt,name=EnumField,enum=test.NestedDefinition_NestedEnum" json:"EnumField,omitempty"` NNM *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,3,opt,name=NNM" json:"NNM,omitempty"` NM *NestedDefinition_NestedMessage `protobuf:"bytes,4,opt,name=NM" json:"NM,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition) Reset() { *m = NestedDefinition{} } func (*NestedDefinition) ProtoMessage() {} func (*NestedDefinition) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42} } type NestedDefinition_NestedMessage struct { NestedField1 *uint64 `protobuf:"fixed64,1,opt,name=NestedField1" json:"NestedField1,omitempty"` NNM *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,2,opt,name=NNM" json:"NNM,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition_NestedMessage) Reset() { *m = NestedDefinition_NestedMessage{} } func (*NestedDefinition_NestedMessage) ProtoMessage() {} func (*NestedDefinition_NestedMessage) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0} } type NestedDefinition_NestedMessage_NestedNestedMsg struct { NestedNestedField1 *string `protobuf:"bytes,10,opt,name=NestedNestedField1" json:"NestedNestedField1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Reset() { *m = NestedDefinition_NestedMessage_NestedNestedMsg{} } func (*NestedDefinition_NestedMessage_NestedNestedMsg) ProtoMessage() {} func (*NestedDefinition_NestedMessage_NestedNestedMsg) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0, 0} } type NestedScope struct { A *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,1,opt,name=A" json:"A,omitempty"` B *NestedDefinition_NestedEnum `protobuf:"varint,2,opt,name=B,enum=test.NestedDefinition_NestedEnum" json:"B,omitempty"` C *NestedDefinition_NestedMessage `protobuf:"bytes,3,opt,name=C" json:"C,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedScope) Reset() { *m = NestedScope{} } func (*NestedScope) ProtoMessage() {} func (*NestedScope) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{43} } type NinOptNativeDefault struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1,def=1234.1234" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2,def=1234.12341" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3,def=1234" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4,def=1234" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5,def=1234" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6,def=1234" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7,def=1234" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,opt,name=Field8,def=1234" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,opt,name=Field9,def=1234" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,opt,name=Field10,def=1234" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,opt,name=Field11,def=1234" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,opt,name=Field12,def=1234" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13,def=1" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14,def=1234" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNativeDefault) Reset() { *m = NinOptNativeDefault{} } func (*NinOptNativeDefault) ProtoMessage() {} func (*NinOptNativeDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{44} } const Default_NinOptNativeDefault_Field1 float64 = 1234.1234 const Default_NinOptNativeDefault_Field2 float32 = 1234.12341 const Default_NinOptNativeDefault_Field3 int32 = 1234 const Default_NinOptNativeDefault_Field4 int64 = 1234 const Default_NinOptNativeDefault_Field5 uint32 = 1234 const Default_NinOptNativeDefault_Field6 uint64 = 1234 const Default_NinOptNativeDefault_Field7 int32 = 1234 const Default_NinOptNativeDefault_Field8 int64 = 1234 const Default_NinOptNativeDefault_Field9 uint32 = 1234 const Default_NinOptNativeDefault_Field10 int32 = 1234 const Default_NinOptNativeDefault_Field11 uint64 = 1234 const Default_NinOptNativeDefault_Field12 int64 = 1234 const Default_NinOptNativeDefault_Field13 bool = true const Default_NinOptNativeDefault_Field14 string = "1234" func (m *NinOptNativeDefault) GetField1() float64 { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_NinOptNativeDefault_Field1 } func (m *NinOptNativeDefault) GetField2() float32 { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_NinOptNativeDefault_Field2 } func (m *NinOptNativeDefault) GetField3() int32 { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_NinOptNativeDefault_Field3 } func (m *NinOptNativeDefault) GetField4() int64 { if m != nil && m.Field4 != nil { return *m.Field4 } return Default_NinOptNativeDefault_Field4 } func (m *NinOptNativeDefault) GetField5() uint32 { if m != nil && m.Field5 != nil { return *m.Field5 } return Default_NinOptNativeDefault_Field5 } func (m *NinOptNativeDefault) GetField6() uint64 { if m != nil && m.Field6 != nil { return *m.Field6 } return Default_NinOptNativeDefault_Field6 } func (m *NinOptNativeDefault) GetField7() int32 { if m != nil && m.Field7 != nil { return *m.Field7 } return Default_NinOptNativeDefault_Field7 } func (m *NinOptNativeDefault) GetField8() int64 { if m != nil && m.Field8 != nil { return *m.Field8 } return Default_NinOptNativeDefault_Field8 } func (m *NinOptNativeDefault) GetField9() uint32 { if m != nil && m.Field9 != nil { return *m.Field9 } return Default_NinOptNativeDefault_Field9 } func (m *NinOptNativeDefault) GetField10() int32 { if m != nil && m.Field10 != nil { return *m.Field10 } return Default_NinOptNativeDefault_Field10 } func (m *NinOptNativeDefault) GetField11() uint64 { if m != nil && m.Field11 != nil { return *m.Field11 } return Default_NinOptNativeDefault_Field11 } func (m *NinOptNativeDefault) GetField12() int64 { if m != nil && m.Field12 != nil { return *m.Field12 } return Default_NinOptNativeDefault_Field12 } func (m *NinOptNativeDefault) GetField13() bool { if m != nil && m.Field13 != nil { return *m.Field13 } return Default_NinOptNativeDefault_Field13 } func (m *NinOptNativeDefault) GetField14() string { if m != nil && m.Field14 != nil { return *m.Field14 } return Default_NinOptNativeDefault_Field14 } func (m *NinOptNativeDefault) GetField15() []byte { if m != nil { return m.Field15 } return nil } type CustomContainer struct { CustomStruct NidOptCustom `protobuf:"bytes,1,opt,name=CustomStruct" json:"CustomStruct"` XXX_unrecognized []byte `json:"-"` } func (m *CustomContainer) Reset() { *m = CustomContainer{} } func (*CustomContainer) ProtoMessage() {} func (*CustomContainer) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{45} } type CustomNameNidOptNative struct { FieldA float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` FieldB float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` FieldC int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3"` FieldD int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4"` FieldE uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5"` FieldF uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` FieldG int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` FieldH int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8"` FieldI uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9"` FieldJ int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10"` FieldK uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11"` FieldL int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12"` FieldM bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` FieldN string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` FieldO []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNidOptNative) Reset() { *m = CustomNameNidOptNative{} } func (*CustomNameNidOptNative) ProtoMessage() {} func (*CustomNameNidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{46} } type CustomNameNinOptNative struct { FieldA *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` FieldB *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` FieldC *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` FieldD *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` FieldE *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` FieldF *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` FieldG *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` FieldH *int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8,omitempty"` FieldI *uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9,omitempty"` FieldJ *int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10,omitempty"` FieldK *uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11,omitempty"` FielL *int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12,omitempty"` FieldM *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` FieldN *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` FieldO []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinOptNative) Reset() { *m = CustomNameNinOptNative{} } func (*CustomNameNinOptNative) ProtoMessage() {} func (*CustomNameNinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{47} } type CustomNameNinRepNative struct { FieldA []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` FieldB []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` FieldC []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` FieldD []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` FieldE []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` FieldF []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` FieldG []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` FieldH []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` FieldI []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` FieldJ []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` FieldK []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` FieldL []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` FieldM []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` FieldN []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` FieldO [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinRepNative) Reset() { *m = CustomNameNinRepNative{} } func (*CustomNameNinRepNative) ProtoMessage() {} func (*CustomNameNinRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{48} } type CustomNameNinStruct struct { FieldA *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` FieldB *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` FieldC *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` FieldD []*NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4,omitempty"` FieldE *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` FieldF *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` FieldG *NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8,omitempty"` FieldH *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` FieldI *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` FieldJ []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinStruct) Reset() { *m = CustomNameNinStruct{} } func (*CustomNameNinStruct) ProtoMessage() {} func (*CustomNameNinStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{49} } type CustomNameCustomType struct { FieldA *Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id,omitempty"` FieldB *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` FieldC []Uuid `protobuf:"bytes,3,rep,name=Ids,customtype=Uuid" json:"Ids,omitempty"` FieldD []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,4,rep,name=Values,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Values,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameCustomType) Reset() { *m = CustomNameCustomType{} } func (*CustomNameCustomType) ProtoMessage() {} func (*CustomNameCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{50} } type CustomNameNinEmbeddedStructUnion struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` FieldA *NinOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` FieldB *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinEmbeddedStructUnion) Reset() { *m = CustomNameNinEmbeddedStructUnion{} } func (*CustomNameNinEmbeddedStructUnion) ProtoMessage() {} func (*CustomNameNinEmbeddedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{51} } type CustomNameEnum struct { FieldA *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` FieldB []TheTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.TheTestEnum" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameEnum) Reset() { *m = CustomNameEnum{} } func (*CustomNameEnum) ProtoMessage() {} func (*CustomNameEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{52} } type NoExtensionsMap struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` XXX_extensions []byte `protobuf:"bytes,0,opt" json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *NoExtensionsMap) Reset() { *m = NoExtensionsMap{} } func (*NoExtensionsMap) ProtoMessage() {} func (*NoExtensionsMap) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{53} } var extRange_NoExtensionsMap = []proto.ExtensionRange{ {Start: 100, End: 199}, } func (*NoExtensionsMap) ExtensionRangeArray() []proto.ExtensionRange { return extRange_NoExtensionsMap } func (m *NoExtensionsMap) GetExtensions() *[]byte { if m.XXX_extensions == nil { m.XXX_extensions = make([]byte, 0) } return &m.XXX_extensions } type Unrecognized struct { Field1 *string `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *Unrecognized) Reset() { *m = Unrecognized{} } func (*Unrecognized) ProtoMessage() {} func (*Unrecognized) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{54} } type UnrecognizedWithInner struct { Embedded []*UnrecognizedWithInner_Inner `protobuf:"bytes,1,rep,name=embedded" json:"embedded,omitempty"` Field2 *string `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UnrecognizedWithInner) Reset() { *m = UnrecognizedWithInner{} } func (*UnrecognizedWithInner) ProtoMessage() {} func (*UnrecognizedWithInner) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{55} } type UnrecognizedWithInner_Inner struct { Field1 *uint32 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *UnrecognizedWithInner_Inner) Reset() { *m = UnrecognizedWithInner_Inner{} } func (*UnrecognizedWithInner_Inner) ProtoMessage() {} func (*UnrecognizedWithInner_Inner) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{55, 0} } type UnrecognizedWithEmbed struct { UnrecognizedWithEmbed_Embedded `protobuf:"bytes,1,opt,name=embedded,embedded=embedded" json:"embedded"` Field2 *string `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UnrecognizedWithEmbed) Reset() { *m = UnrecognizedWithEmbed{} } func (*UnrecognizedWithEmbed) ProtoMessage() {} func (*UnrecognizedWithEmbed) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{56} } type UnrecognizedWithEmbed_Embedded struct { Field1 *uint32 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *UnrecognizedWithEmbed_Embedded) Reset() { *m = UnrecognizedWithEmbed_Embedded{} } func (*UnrecognizedWithEmbed_Embedded) ProtoMessage() {} func (*UnrecognizedWithEmbed_Embedded) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{56, 0} } type Node struct { Label *string `protobuf:"bytes,1,opt,name=Label" json:"Label,omitempty"` Children []*Node `protobuf:"bytes,2,rep,name=Children" json:"Children,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Node) Reset() { *m = Node{} } func (*Node) ProtoMessage() {} func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{57} } type NonByteCustomType struct { Field1 *T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NonByteCustomType) Reset() { *m = NonByteCustomType{} } func (*NonByteCustomType) ProtoMessage() {} func (*NonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{58} } type NidOptNonByteCustomType struct { Field1 T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptNonByteCustomType) Reset() { *m = NidOptNonByteCustomType{} } func (*NidOptNonByteCustomType) ProtoMessage() {} func (*NidOptNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{59} } type NinOptNonByteCustomType struct { Field1 *T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNonByteCustomType) Reset() { *m = NinOptNonByteCustomType{} } func (*NinOptNonByteCustomType) ProtoMessage() {} func (*NinOptNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{60} } type NidRepNonByteCustomType struct { Field1 []T `protobuf:"bytes,1,rep,name=Field1,customtype=T" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepNonByteCustomType) Reset() { *m = NidRepNonByteCustomType{} } func (*NidRepNonByteCustomType) ProtoMessage() {} func (*NidRepNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{61} } type NinRepNonByteCustomType struct { Field1 []T `protobuf:"bytes,1,rep,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNonByteCustomType) Reset() { *m = NinRepNonByteCustomType{} } func (*NinRepNonByteCustomType) ProtoMessage() {} func (*NinRepNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{62} } type ProtoType struct { Field2 *string `protobuf:"bytes,1,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *ProtoType) Reset() { *m = ProtoType{} } func (*ProtoType) ProtoMessage() {} func (*ProtoType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{63} } var E_FieldA = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*float64)(nil), Field: 100, Name: "test.FieldA", Tag: "fixed64,100,opt,name=FieldA", Filename: "combos/marshaler/thetest.proto", } var E_FieldB = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*NinOptNative)(nil), Field: 101, Name: "test.FieldB", Tag: "bytes,101,opt,name=FieldB", Filename: "combos/marshaler/thetest.proto", } var E_FieldC = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*NinEmbeddedStruct)(nil), Field: 102, Name: "test.FieldC", Tag: "bytes,102,opt,name=FieldC", Filename: "combos/marshaler/thetest.proto", } var E_FieldD = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: ([]int64)(nil), Field: 104, Name: "test.FieldD", Tag: "varint,104,rep,name=FieldD", Filename: "combos/marshaler/thetest.proto", } var E_FieldE = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: ([]*NinOptNative)(nil), Field: 105, Name: "test.FieldE", Tag: "bytes,105,rep,name=FieldE", Filename: "combos/marshaler/thetest.proto", } var E_FieldA1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*float64)(nil), Field: 100, Name: "test.FieldA1", Tag: "fixed64,100,opt,name=FieldA1", Filename: "combos/marshaler/thetest.proto", } var E_FieldB1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*NinOptNative)(nil), Field: 101, Name: "test.FieldB1", Tag: "bytes,101,opt,name=FieldB1", Filename: "combos/marshaler/thetest.proto", } var E_FieldC1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*NinEmbeddedStruct)(nil), Field: 102, Name: "test.FieldC1", Tag: "bytes,102,opt,name=FieldC1", Filename: "combos/marshaler/thetest.proto", } func init() { proto.RegisterType((*NidOptNative)(nil), "test.NidOptNative") proto.RegisterType((*NinOptNative)(nil), "test.NinOptNative") proto.RegisterType((*NidRepNative)(nil), "test.NidRepNative") proto.RegisterType((*NinRepNative)(nil), "test.NinRepNative") proto.RegisterType((*NidRepPackedNative)(nil), "test.NidRepPackedNative") proto.RegisterType((*NinRepPackedNative)(nil), "test.NinRepPackedNative") proto.RegisterType((*NidOptStruct)(nil), "test.NidOptStruct") proto.RegisterType((*NinOptStruct)(nil), "test.NinOptStruct") proto.RegisterType((*NidRepStruct)(nil), "test.NidRepStruct") proto.RegisterType((*NinRepStruct)(nil), "test.NinRepStruct") proto.RegisterType((*NidEmbeddedStruct)(nil), "test.NidEmbeddedStruct") proto.RegisterType((*NinEmbeddedStruct)(nil), "test.NinEmbeddedStruct") proto.RegisterType((*NidNestedStruct)(nil), "test.NidNestedStruct") proto.RegisterType((*NinNestedStruct)(nil), "test.NinNestedStruct") proto.RegisterType((*NidOptCustom)(nil), "test.NidOptCustom") proto.RegisterType((*CustomDash)(nil), "test.CustomDash") proto.RegisterType((*NinOptCustom)(nil), "test.NinOptCustom") proto.RegisterType((*NidRepCustom)(nil), "test.NidRepCustom") proto.RegisterType((*NinRepCustom)(nil), "test.NinRepCustom") proto.RegisterType((*NinOptNativeUnion)(nil), "test.NinOptNativeUnion") proto.RegisterType((*NinOptStructUnion)(nil), "test.NinOptStructUnion") proto.RegisterType((*NinEmbeddedStructUnion)(nil), "test.NinEmbeddedStructUnion") proto.RegisterType((*NinNestedStructUnion)(nil), "test.NinNestedStructUnion") proto.RegisterType((*Tree)(nil), "test.Tree") proto.RegisterType((*OrBranch)(nil), "test.OrBranch") proto.RegisterType((*AndBranch)(nil), "test.AndBranch") proto.RegisterType((*Leaf)(nil), "test.Leaf") proto.RegisterType((*DeepTree)(nil), "test.DeepTree") proto.RegisterType((*ADeepBranch)(nil), "test.ADeepBranch") proto.RegisterType((*AndDeepBranch)(nil), "test.AndDeepBranch") proto.RegisterType((*DeepLeaf)(nil), "test.DeepLeaf") proto.RegisterType((*Nil)(nil), "test.Nil") proto.RegisterType((*NidOptEnum)(nil), "test.NidOptEnum") proto.RegisterType((*NinOptEnum)(nil), "test.NinOptEnum") proto.RegisterType((*NidRepEnum)(nil), "test.NidRepEnum") proto.RegisterType((*NinRepEnum)(nil), "test.NinRepEnum") proto.RegisterType((*NinOptEnumDefault)(nil), "test.NinOptEnumDefault") proto.RegisterType((*AnotherNinOptEnum)(nil), "test.AnotherNinOptEnum") proto.RegisterType((*AnotherNinOptEnumDefault)(nil), "test.AnotherNinOptEnumDefault") proto.RegisterType((*Timer)(nil), "test.Timer") proto.RegisterType((*MyExtendable)(nil), "test.MyExtendable") proto.RegisterType((*OtherExtenable)(nil), "test.OtherExtenable") proto.RegisterType((*NestedDefinition)(nil), "test.NestedDefinition") proto.RegisterType((*NestedDefinition_NestedMessage)(nil), "test.NestedDefinition.NestedMessage") proto.RegisterType((*NestedDefinition_NestedMessage_NestedNestedMsg)(nil), "test.NestedDefinition.NestedMessage.NestedNestedMsg") proto.RegisterType((*NestedScope)(nil), "test.NestedScope") proto.RegisterType((*NinOptNativeDefault)(nil), "test.NinOptNativeDefault") proto.RegisterType((*CustomContainer)(nil), "test.CustomContainer") proto.RegisterType((*CustomNameNidOptNative)(nil), "test.CustomNameNidOptNative") proto.RegisterType((*CustomNameNinOptNative)(nil), "test.CustomNameNinOptNative") proto.RegisterType((*CustomNameNinRepNative)(nil), "test.CustomNameNinRepNative") proto.RegisterType((*CustomNameNinStruct)(nil), "test.CustomNameNinStruct") proto.RegisterType((*CustomNameCustomType)(nil), "test.CustomNameCustomType") proto.RegisterType((*CustomNameNinEmbeddedStructUnion)(nil), "test.CustomNameNinEmbeddedStructUnion") proto.RegisterType((*CustomNameEnum)(nil), "test.CustomNameEnum") proto.RegisterType((*NoExtensionsMap)(nil), "test.NoExtensionsMap") proto.RegisterType((*Unrecognized)(nil), "test.Unrecognized") proto.RegisterType((*UnrecognizedWithInner)(nil), "test.UnrecognizedWithInner") proto.RegisterType((*UnrecognizedWithInner_Inner)(nil), "test.UnrecognizedWithInner.Inner") proto.RegisterType((*UnrecognizedWithEmbed)(nil), "test.UnrecognizedWithEmbed") proto.RegisterType((*UnrecognizedWithEmbed_Embedded)(nil), "test.UnrecognizedWithEmbed.Embedded") proto.RegisterType((*Node)(nil), "test.Node") proto.RegisterType((*NonByteCustomType)(nil), "test.NonByteCustomType") proto.RegisterType((*NidOptNonByteCustomType)(nil), "test.NidOptNonByteCustomType") proto.RegisterType((*NinOptNonByteCustomType)(nil), "test.NinOptNonByteCustomType") proto.RegisterType((*NidRepNonByteCustomType)(nil), "test.NidRepNonByteCustomType") proto.RegisterType((*NinRepNonByteCustomType)(nil), "test.NinRepNonByteCustomType") proto.RegisterType((*ProtoType)(nil), "test.ProtoType") proto.RegisterEnum("test.TheTestEnum", TheTestEnum_name, TheTestEnum_value) proto.RegisterEnum("test.AnotherTestEnum", AnotherTestEnum_name, AnotherTestEnum_value) proto.RegisterEnum("test.YetAnotherTestEnum", YetAnotherTestEnum_name, YetAnotherTestEnum_value) proto.RegisterEnum("test.YetYetAnotherTestEnum", YetYetAnotherTestEnum_name, YetYetAnotherTestEnum_value) proto.RegisterEnum("test.NestedDefinition_NestedEnum", NestedDefinition_NestedEnum_name, NestedDefinition_NestedEnum_value) proto.RegisterExtension(E_FieldA) proto.RegisterExtension(E_FieldB) proto.RegisterExtension(E_FieldC) proto.RegisterExtension(E_FieldD) proto.RegisterExtension(E_FieldE) proto.RegisterExtension(E_FieldA1) proto.RegisterExtension(E_FieldB1) proto.RegisterExtension(E_FieldC1) } func (this *NidOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if this.Field2 != that1.Field2 { if this.Field2 < that1.Field2 { return -1 } return 1 } if this.Field3 != that1.Field3 { if this.Field3 < that1.Field3 { return -1 } return 1 } if this.Field4 != that1.Field4 { if this.Field4 < that1.Field4 { return -1 } return 1 } if this.Field5 != that1.Field5 { if this.Field5 < that1.Field5 { return -1 } return 1 } if this.Field6 != that1.Field6 { if this.Field6 < that1.Field6 { return -1 } return 1 } if this.Field7 != that1.Field7 { if this.Field7 < that1.Field7 { return -1 } return 1 } if this.Field8 != that1.Field8 { if this.Field8 < that1.Field8 { return -1 } return 1 } if this.Field9 != that1.Field9 { if this.Field9 < that1.Field9 { return -1 } return 1 } if this.Field10 != that1.Field10 { if this.Field10 < that1.Field10 { return -1 } return 1 } if this.Field11 != that1.Field11 { if this.Field11 < that1.Field11 { return -1 } return 1 } if this.Field12 != that1.Field12 { if this.Field12 < that1.Field12 { return -1 } return 1 } if this.Field13 != that1.Field13 { if !this.Field13 { return -1 } return 1 } if this.Field14 != that1.Field14 { if this.Field14 < that1.Field14 { return -1 } return 1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { if *this.Field8 < *that1.Field8 { return -1 } return 1 } } else if this.Field8 != nil { return 1 } else if that1.Field8 != nil { return -1 } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { if *this.Field9 < *that1.Field9 { return -1 } return 1 } } else if this.Field9 != nil { return 1 } else if that1.Field9 != nil { return -1 } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { if *this.Field10 < *that1.Field10 { return -1 } return 1 } } else if this.Field10 != nil { return 1 } else if that1.Field10 != nil { return -1 } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { if *this.Field11 < *that1.Field11 { return -1 } return 1 } } else if this.Field11 != nil { return 1 } else if that1.Field11 != nil { return -1 } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { if *this.Field12 < *that1.Field12 { return -1 } return 1 } } else if this.Field12 != nil { return 1 } else if that1.Field12 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepPackedNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepPackedNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if this.Field2 != that1.Field2 { if this.Field2 < that1.Field2 { return -1 } return 1 } if c := this.Field3.Compare(&that1.Field3); c != 0 { return c } if c := this.Field4.Compare(&that1.Field4); c != 0 { return c } if this.Field6 != that1.Field6 { if this.Field6 < that1.Field6 { return -1 } return 1 } if this.Field7 != that1.Field7 { if this.Field7 < that1.Field7 { return -1 } return 1 } if c := this.Field8.Compare(&that1.Field8); c != 0 { return c } if this.Field13 != that1.Field13 { if !this.Field13 { return -1 } return 1 } if this.Field14 != that1.Field14 { if this.Field14 < that1.Field14 { return -1 } return 1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := this.Field4.Compare(that1.Field4); c != 0 { return c } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if c := this.Field8.Compare(that1.Field8); c != 0 { return c } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if c := this.Field3[i].Compare(&that1.Field3[i]); c != 0 { return c } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if c := this.Field4[i].Compare(&that1.Field4[i]); c != 0 { return c } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if c := this.Field8[i].Compare(&that1.Field8[i]); c != 0 { return c } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if c := this.Field3[i].Compare(that1.Field3[i]); c != 0 { return c } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if c := this.Field4[i].Compare(that1.Field4[i]); c != 0 { return c } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if c := this.Field8[i].Compare(that1.Field8[i]); c != 0 { return c } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidEmbeddedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(&that1.Field200); c != 0 { return c } if this.Field210 != that1.Field210 { if !this.Field210 { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinEmbeddedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(that1.Field200); c != 0 { return c } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { if !*this.Field210 { return -1 } return 1 } } else if this.Field210 != nil { return 1 } else if that1.Field210 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidNestedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(&that1.Field1); c != 0 { return c } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if c := this.Field2[i].Compare(&that1.Field2[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinNestedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if c := this.Field2[i].Compare(that1.Field2[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Id.Compare(that1.Id); c != 0 { return c } if c := this.Value.Compare(that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomDash) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Value == nil { if this.Value != nil { return 1 } } else if this.Value == nil { return -1 } else if c := this.Value.Compare(*that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Id == nil { if this.Id != nil { return 1 } } else if this.Id == nil { return -1 } else if c := this.Id.Compare(*that1.Id); c != 0 { return c } if that1.Value == nil { if this.Value != nil { return 1 } } else if this.Value == nil { return -1 } else if c := this.Value.Compare(*that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Id) != len(that1.Id) { if len(this.Id) < len(that1.Id) { return -1 } return 1 } for i := range this.Id { if c := this.Id[i].Compare(that1.Id[i]); c != 0 { return c } } if len(this.Value) != len(that1.Value) { if len(this.Value) < len(that1.Value) { return -1 } return 1 } for i := range this.Value { if c := this.Value[i].Compare(that1.Value[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Id) != len(that1.Id) { if len(this.Id) < len(that1.Id) { return -1 } return 1 } for i := range this.Id { if c := this.Id[i].Compare(that1.Id[i]); c != 0 { return c } } if len(this.Value) != len(that1.Value) { if len(this.Value) < len(that1.Value) { return -1 } return 1 } for i := range this.Value { if c := this.Value[i].Compare(that1.Value[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNativeUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := this.Field4.Compare(that1.Field4); c != 0 { return c } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinEmbeddedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(that1.Field200); c != 0 { return c } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { if !*this.Field210 { return -1 } return 1 } } else if this.Field210 != nil { return 1 } else if that1.Field210 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinNestedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if c := this.Field2.Compare(that1.Field2); c != 0 { return c } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Tree) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Or.Compare(that1.Or); c != 0 { return c } if c := this.And.Compare(that1.And); c != 0 { return c } if c := this.Leaf.Compare(that1.Leaf); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *OrBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AndBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Leaf) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } if this.StrValue != that1.StrValue { if this.StrValue < that1.StrValue { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *DeepTree) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Down.Compare(that1.Down); c != 0 { return c } if c := this.And.Compare(that1.And); c != 0 { return c } if c := this.Leaf.Compare(that1.Leaf); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *ADeepBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Down.Compare(&that1.Down); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AndDeepBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *DeepLeaf) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Tree.Compare(&that1.Tree); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Nil) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptEnumDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AnotherNinOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AnotherNinOptEnumDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Timer) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Time1 != that1.Time1 { if this.Time1 < that1.Time1 { return -1 } return 1 } if this.Time2 != that1.Time2 { if this.Time2 < that1.Time2 { return -1 } return 1 } if c := bytes.Compare(this.Data, that1.Data); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *MyExtendable) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) extkeys := make([]int32, 0, len(thismap)+len(thatmap)) for k := range thismap { extkeys = append(extkeys, k) } for k := range thatmap { if _, ok := thismap[k]; !ok { extkeys = append(extkeys, k) } } github_com_gogo_protobuf_sortkeys.Int32s(extkeys) for _, k := range extkeys { if v, ok := thismap[k]; ok { if v2, ok := thatmap[k]; ok { if c := v.Compare(&v2); c != 0 { return c } } else { return 1 } } else { return -1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *OtherExtenable) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if *this.Field13 < *that1.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if c := this.M.Compare(that1.M); c != 0 { return c } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) extkeys := make([]int32, 0, len(thismap)+len(thatmap)) for k := range thismap { extkeys = append(extkeys, k) } for k := range thatmap { if _, ok := thismap[k]; !ok { extkeys = append(extkeys, k) } } github_com_gogo_protobuf_sortkeys.Int32s(extkeys) for _, k := range extkeys { if v, ok := thismap[k]; ok { if v2, ok := thatmap[k]; ok { if c := v.Compare(&v2); c != 0 { return c } } else { return 1 } } else { return -1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { if *this.EnumField < *that1.EnumField { return -1 } return 1 } } else if this.EnumField != nil { return 1 } else if that1.EnumField != nil { return -1 } if c := this.NNM.Compare(that1.NNM); c != 0 { return c } if c := this.NM.Compare(that1.NM); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition_NestedMessage) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { if *this.NestedField1 < *that1.NestedField1 { return -1 } return 1 } } else if this.NestedField1 != nil { return 1 } else if that1.NestedField1 != nil { return -1 } if c := this.NNM.Compare(that1.NNM); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { if *this.NestedNestedField1 < *that1.NestedNestedField1 { return -1 } return 1 } } else if this.NestedNestedField1 != nil { return 1 } else if that1.NestedNestedField1 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedScope) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.A.Compare(that1.A); c != 0 { return c } if this.B != nil && that1.B != nil { if *this.B != *that1.B { if *this.B < *that1.B { return -1 } return 1 } } else if this.B != nil { return 1 } else if that1.B != nil { return -1 } if c := this.C.Compare(that1.C); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNativeDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { if *this.Field8 < *that1.Field8 { return -1 } return 1 } } else if this.Field8 != nil { return 1 } else if that1.Field8 != nil { return -1 } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { if *this.Field9 < *that1.Field9 { return -1 } return 1 } } else if this.Field9 != nil { return 1 } else if that1.Field9 != nil { return -1 } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { if *this.Field10 < *that1.Field10 { return -1 } return 1 } } else if this.Field10 != nil { return 1 } else if that1.Field10 != nil { return -1 } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { if *this.Field11 < *that1.Field11 { return -1 } return 1 } } else if this.Field11 != nil { return 1 } else if that1.Field11 != nil { return -1 } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { if *this.Field12 < *that1.Field12 { return -1 } return 1 } } else if this.Field12 != nil { return 1 } else if that1.Field12 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomContainer) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.CustomStruct.Compare(&that1.CustomStruct); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNidOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != that1.FieldA { if this.FieldA < that1.FieldA { return -1 } return 1 } if this.FieldB != that1.FieldB { if this.FieldB < that1.FieldB { return -1 } return 1 } if this.FieldC != that1.FieldC { if this.FieldC < that1.FieldC { return -1 } return 1 } if this.FieldD != that1.FieldD { if this.FieldD < that1.FieldD { return -1 } return 1 } if this.FieldE != that1.FieldE { if this.FieldE < that1.FieldE { return -1 } return 1 } if this.FieldF != that1.FieldF { if this.FieldF < that1.FieldF { return -1 } return 1 } if this.FieldG != that1.FieldG { if this.FieldG < that1.FieldG { return -1 } return 1 } if this.FieldH != that1.FieldH { if this.FieldH < that1.FieldH { return -1 } return 1 } if this.FieldI != that1.FieldI { if this.FieldI < that1.FieldI { return -1 } return 1 } if this.FieldJ != that1.FieldJ { if this.FieldJ < that1.FieldJ { return -1 } return 1 } if this.FieldK != that1.FieldK { if this.FieldK < that1.FieldK { return -1 } return 1 } if this.FieldL != that1.FieldL { if this.FieldL < that1.FieldL { return -1 } return 1 } if this.FieldM != that1.FieldM { if !this.FieldM { return -1 } return 1 } if this.FieldN != that1.FieldN { if this.FieldN < that1.FieldN { return -1 } return 1 } if c := bytes.Compare(this.FieldO, that1.FieldO); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if *this.FieldB < *that1.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { if *this.FieldC < *that1.FieldC { return -1 } return 1 } } else if this.FieldC != nil { return 1 } else if that1.FieldC != nil { return -1 } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { if *this.FieldD < *that1.FieldD { return -1 } return 1 } } else if this.FieldD != nil { return 1 } else if that1.FieldD != nil { return -1 } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { if *this.FieldE < *that1.FieldE { return -1 } return 1 } } else if this.FieldE != nil { return 1 } else if that1.FieldE != nil { return -1 } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { if *this.FieldF < *that1.FieldF { return -1 } return 1 } } else if this.FieldF != nil { return 1 } else if that1.FieldF != nil { return -1 } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { if *this.FieldG < *that1.FieldG { return -1 } return 1 } } else if this.FieldG != nil { return 1 } else if that1.FieldG != nil { return -1 } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { if *this.FieldH < *that1.FieldH { return -1 } return 1 } } else if this.FieldH != nil { return 1 } else if that1.FieldH != nil { return -1 } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { if *this.FieldI < *that1.FieldI { return -1 } return 1 } } else if this.FieldI != nil { return 1 } else if that1.FieldI != nil { return -1 } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { if *this.FieldJ < *that1.FieldJ { return -1 } return 1 } } else if this.FieldJ != nil { return 1 } else if that1.FieldJ != nil { return -1 } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { if *this.FieldK < *that1.FieldK { return -1 } return 1 } } else if this.FieldK != nil { return 1 } else if that1.FieldK != nil { return -1 } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { if *this.FielL < *that1.FielL { return -1 } return 1 } } else if this.FielL != nil { return 1 } else if that1.FielL != nil { return -1 } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { if !*this.FieldM { return -1 } return 1 } } else if this.FieldM != nil { return 1 } else if that1.FieldM != nil { return -1 } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { if *this.FieldN < *that1.FieldN { return -1 } return 1 } } else if this.FieldN != nil { return 1 } else if that1.FieldN != nil { return -1 } if c := bytes.Compare(this.FieldO, that1.FieldO); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.FieldA) != len(that1.FieldA) { if len(this.FieldA) < len(that1.FieldA) { return -1 } return 1 } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { if this.FieldA[i] < that1.FieldA[i] { return -1 } return 1 } } if len(this.FieldB) != len(that1.FieldB) { if len(this.FieldB) < len(that1.FieldB) { return -1 } return 1 } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { if this.FieldB[i] < that1.FieldB[i] { return -1 } return 1 } } if len(this.FieldC) != len(that1.FieldC) { if len(this.FieldC) < len(that1.FieldC) { return -1 } return 1 } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { if this.FieldC[i] < that1.FieldC[i] { return -1 } return 1 } } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { if this.FieldD[i] < that1.FieldD[i] { return -1 } return 1 } } if len(this.FieldE) != len(that1.FieldE) { if len(this.FieldE) < len(that1.FieldE) { return -1 } return 1 } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { if this.FieldE[i] < that1.FieldE[i] { return -1 } return 1 } } if len(this.FieldF) != len(that1.FieldF) { if len(this.FieldF) < len(that1.FieldF) { return -1 } return 1 } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { if this.FieldF[i] < that1.FieldF[i] { return -1 } return 1 } } if len(this.FieldG) != len(that1.FieldG) { if len(this.FieldG) < len(that1.FieldG) { return -1 } return 1 } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { if this.FieldG[i] < that1.FieldG[i] { return -1 } return 1 } } if len(this.FieldH) != len(that1.FieldH) { if len(this.FieldH) < len(that1.FieldH) { return -1 } return 1 } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { if this.FieldH[i] < that1.FieldH[i] { return -1 } return 1 } } if len(this.FieldI) != len(that1.FieldI) { if len(this.FieldI) < len(that1.FieldI) { return -1 } return 1 } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { if this.FieldI[i] < that1.FieldI[i] { return -1 } return 1 } } if len(this.FieldJ) != len(that1.FieldJ) { if len(this.FieldJ) < len(that1.FieldJ) { return -1 } return 1 } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { if this.FieldJ[i] < that1.FieldJ[i] { return -1 } return 1 } } if len(this.FieldK) != len(that1.FieldK) { if len(this.FieldK) < len(that1.FieldK) { return -1 } return 1 } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { if this.FieldK[i] < that1.FieldK[i] { return -1 } return 1 } } if len(this.FieldL) != len(that1.FieldL) { if len(this.FieldL) < len(that1.FieldL) { return -1 } return 1 } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { if this.FieldL[i] < that1.FieldL[i] { return -1 } return 1 } } if len(this.FieldM) != len(that1.FieldM) { if len(this.FieldM) < len(that1.FieldM) { return -1 } return 1 } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { if !this.FieldM[i] { return -1 } return 1 } } if len(this.FieldN) != len(that1.FieldN) { if len(this.FieldN) < len(that1.FieldN) { return -1 } return 1 } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { if this.FieldN[i] < that1.FieldN[i] { return -1 } return 1 } } if len(this.FieldO) != len(that1.FieldO) { if len(this.FieldO) < len(that1.FieldO) { return -1 } return 1 } for i := range this.FieldO { if c := bytes.Compare(this.FieldO[i], that1.FieldO[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if *this.FieldB < *that1.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if c := this.FieldC.Compare(that1.FieldC); c != 0 { return c } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if c := this.FieldD[i].Compare(that1.FieldD[i]); c != 0 { return c } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { if *this.FieldE < *that1.FieldE { return -1 } return 1 } } else if this.FieldE != nil { return 1 } else if that1.FieldE != nil { return -1 } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { if *this.FieldF < *that1.FieldF { return -1 } return 1 } } else if this.FieldF != nil { return 1 } else if that1.FieldF != nil { return -1 } if c := this.FieldG.Compare(that1.FieldG); c != 0 { return c } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { if !*this.FieldH { return -1 } return 1 } } else if this.FieldH != nil { return 1 } else if that1.FieldH != nil { return -1 } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { if *this.FieldI < *that1.FieldI { return -1 } return 1 } } else if this.FieldI != nil { return 1 } else if that1.FieldI != nil { return -1 } if c := bytes.Compare(this.FieldJ, that1.FieldJ); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.FieldA == nil { if this.FieldA != nil { return 1 } } else if this.FieldA == nil { return -1 } else if c := this.FieldA.Compare(*that1.FieldA); c != 0 { return c } if that1.FieldB == nil { if this.FieldB != nil { return 1 } } else if this.FieldB == nil { return -1 } else if c := this.FieldB.Compare(*that1.FieldB); c != 0 { return c } if len(this.FieldC) != len(that1.FieldC) { if len(this.FieldC) < len(that1.FieldC) { return -1 } return 1 } for i := range this.FieldC { if c := this.FieldC[i].Compare(that1.FieldC[i]); c != 0 { return c } } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if c := this.FieldD[i].Compare(that1.FieldD[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinEmbeddedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.FieldA.Compare(that1.FieldA); c != 0 { return c } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if !*this.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if len(this.FieldB) != len(that1.FieldB) { if len(this.FieldB) < len(that1.FieldB) { return -1 } return 1 } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { if this.FieldB[i] < that1.FieldB[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NoExtensionsMap) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if c := bytes.Compare(this.XXX_extensions, that1.XXX_extensions); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Unrecognized) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *UnrecognizedWithInner) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Embedded) != len(that1.Embedded) { if len(this.Embedded) < len(that1.Embedded) { return -1 } return 1 } for i := range this.Embedded { if c := this.Embedded[i].Compare(that1.Embedded[i]); c != 0 { return c } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *UnrecognizedWithInner_Inner) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *UnrecognizedWithEmbed) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.UnrecognizedWithEmbed_Embedded.Compare(&that1.UnrecognizedWithEmbed_Embedded); c != 0 { return c } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *UnrecognizedWithEmbed_Embedded) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *Node) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { if *this.Label < *that1.Label { return -1 } return 1 } } else if this.Label != nil { return 1 } else if that1.Label != nil { return -1 } if len(this.Children) != len(that1.Children) { if len(this.Children) < len(that1.Children) { return -1 } return 1 } for i := range this.Children { if c := this.Children[i].Compare(that1.Children[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Field1 == nil { if this.Field1 != nil { return 1 } } else if this.Field1 == nil { return -1 } else if c := this.Field1.Compare(*that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Field1 == nil { if this.Field1 != nil { return 1 } } else if this.Field1 == nil { return -1 } else if c := this.Field1.Compare(*that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if c := this.Field1[i].Compare(that1.Field1[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if c := this.Field1[i].Compare(that1.Field1[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *ProtoType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepPackedNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepPackedNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidEmbeddedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinEmbeddedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidNestedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinNestedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomDash) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNativeUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinEmbeddedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinNestedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Tree) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *OrBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AndBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Leaf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *DeepTree) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *ADeepBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AndDeepBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *DeepLeaf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Nil) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptEnumDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AnotherNinOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AnotherNinOptEnumDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Timer) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *MyExtendable) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *OtherExtenable) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition_NestedMessage) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedScope) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNativeDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomContainer) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNidOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinEmbeddedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NoExtensionsMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Unrecognized) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithInner) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithInner_Inner) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithEmbed) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithEmbed_Embedded) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Node) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *ProtoType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func ThetestDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 6585 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0x7b, 0x6c, 0x1c, 0xd7, 0x75, 0x37, 0x67, 0x67, 0x49, 0x2d, 0x0f, 0x5f, 0xc3, 0xa1, 0x44, 0xad, 0x69, 0x79, 0x29, 0xad, 0x65, 0x99, 0x66, 0x6c, 0x8a, 0xa2, 0xa8, 0xd7, 0x2a, 0xb6, 0xbf, 0x7d, 0x49, 0xa6, 0x42, 0x2e, 0x99, 0x21, 0x19, 0x5b, 0xf9, 0x3e, 0x60, 0x31, 0xda, 0xbd, 0x24, 0xd7, 0xde, 0x9d, 0xd9, 0xec, 0x0c, 0x6d, 0xd3, 0xf8, 0xf0, 0xc1, 0x5f, 0xd2, 0xa6, 0x49, 0x8b, 0x3e, 0xd3, 0xa2, 0x49, 0x9a, 0x38, 0x4e, 0x8a, 0x34, 0x4e, 0xd2, 0x47, 0xd2, 0xa4, 0x69, 0x1a, 0x14, 0x8d, 0xff, 0x49, 0xab, 0x02, 0x45, 0xe1, 0xf4, 0xaf, 0x22, 0x28, 0x8c, 0x58, 0x09, 0xd0, 0xb4, 0x75, 0xdb, 0x34, 0x31, 0xd0, 0x00, 0xce, 0x1f, 0xc5, 0x7d, 0xcd, 0xcc, 0xbd, 0x3b, 0xcb, 0x19, 0x5a, 0xb6, 0x93, 0x7f, 0xa4, 0xdd, 0x7b, 0xce, 0xef, 0xdc, 0x73, 0xcf, 0xe3, 0xde, 0x73, 0x1f, 0x5c, 0xf8, 0xe2, 0x45, 0x38, 0xbe, 0x6d, 0xdb, 0xdb, 0x4d, 0x74, 0xba, 0xdd, 0xb1, 0x5d, 0xfb, 0xc6, 0xee, 0xd6, 0xe9, 0x3a, 0x72, 0x6a, 0x9d, 0x46, 0xdb, 0xb5, 0x3b, 0x73, 0xa4, 0x4d, 0x1f, 0xa3, 0x1c, 0x73, 0x9c, 0x23, 0xbb, 0x02, 0xe3, 0x57, 0x1a, 0x4d, 0x54, 0xf2, 0x18, 0xd7, 0x91, 0xab, 0x5f, 0x84, 0xe4, 0x56, 0xa3, 0x89, 0xd2, 0xca, 0x71, 0x75, 0x66, 0x68, 0xe1, 0xe4, 0x9c, 0x04, 0x9a, 0x13, 0x11, 0x6b, 0xb8, 0xd9, 0x20, 0x88, 0xec, 0xf7, 0x93, 0x30, 0x11, 0x42, 0xd5, 0x75, 0x48, 0x5a, 0x66, 0x0b, 0x4b, 0x54, 0x66, 0x06, 0x0d, 0xf2, 0x59, 0x4f, 0xc3, 0xa1, 0xb6, 0x59, 0x7b, 0xc2, 0xdc, 0x46, 0xe9, 0x04, 0x69, 0xe6, 0x5f, 0xf5, 0x0c, 0x40, 0x1d, 0xb5, 0x91, 0x55, 0x47, 0x56, 0x6d, 0x2f, 0xad, 0x1e, 0x57, 0x67, 0x06, 0x8d, 0x40, 0x8b, 0xfe, 0x0e, 0x18, 0x6f, 0xef, 0xde, 0x68, 0x36, 0x6a, 0xd5, 0x00, 0x1b, 0x1c, 0x57, 0x67, 0xfa, 0x0d, 0x8d, 0x12, 0x4a, 0x3e, 0xf3, 0xbd, 0x30, 0xf6, 0x14, 0x32, 0x9f, 0x08, 0xb2, 0x0e, 0x11, 0xd6, 0x51, 0xdc, 0x1c, 0x60, 0x2c, 0xc2, 0x70, 0x0b, 0x39, 0x8e, 0xb9, 0x8d, 0xaa, 0xee, 0x5e, 0x1b, 0xa5, 0x93, 0x64, 0xf4, 0xc7, 0xbb, 0x46, 0x2f, 0x8f, 0x7c, 0x88, 0xa1, 0x36, 0xf6, 0xda, 0x48, 0xcf, 0xc3, 0x20, 0xb2, 0x76, 0x5b, 0x54, 0x42, 0x7f, 0x0f, 0xfb, 0x95, 0xad, 0xdd, 0x96, 0x2c, 0x25, 0x85, 0x61, 0x4c, 0xc4, 0x21, 0x07, 0x75, 0x9e, 0x6c, 0xd4, 0x50, 0x7a, 0x80, 0x08, 0xb8, 0xb7, 0x4b, 0xc0, 0x3a, 0xa5, 0xcb, 0x32, 0x38, 0x4e, 0x2f, 0xc2, 0x20, 0x7a, 0xda, 0x45, 0x96, 0xd3, 0xb0, 0xad, 0xf4, 0x21, 0x22, 0xe4, 0x9e, 0x10, 0x2f, 0xa2, 0x66, 0x5d, 0x16, 0xe1, 0xe3, 0xf4, 0xf3, 0x70, 0xc8, 0x6e, 0xbb, 0x0d, 0xdb, 0x72, 0xd2, 0xa9, 0xe3, 0xca, 0xcc, 0xd0, 0xc2, 0xb1, 0xd0, 0x40, 0x58, 0xa5, 0x3c, 0x06, 0x67, 0xd6, 0x97, 0x40, 0x73, 0xec, 0xdd, 0x4e, 0x0d, 0x55, 0x6b, 0x76, 0x1d, 0x55, 0x1b, 0xd6, 0x96, 0x9d, 0x1e, 0x24, 0x02, 0xa6, 0xbb, 0x07, 0x42, 0x18, 0x8b, 0x76, 0x1d, 0x2d, 0x59, 0x5b, 0xb6, 0x31, 0xea, 0x08, 0xdf, 0xf5, 0x49, 0x18, 0x70, 0xf6, 0x2c, 0xd7, 0x7c, 0x3a, 0x3d, 0x4c, 0x22, 0x84, 0x7d, 0xcb, 0xfe, 0xc5, 0x00, 0x8c, 0xc5, 0x09, 0xb1, 0xcb, 0xd0, 0xbf, 0x85, 0x47, 0x99, 0x4e, 0x1c, 0xc4, 0x06, 0x14, 0x23, 0x1a, 0x71, 0xe0, 0x0d, 0x1a, 0x31, 0x0f, 0x43, 0x16, 0x72, 0x5c, 0x54, 0xa7, 0x11, 0xa1, 0xc6, 0x8c, 0x29, 0xa0, 0xa0, 0xee, 0x90, 0x4a, 0xbe, 0xa1, 0x90, 0x7a, 0x0c, 0xc6, 0x3c, 0x95, 0xaa, 0x1d, 0xd3, 0xda, 0xe6, 0xb1, 0x79, 0x3a, 0x4a, 0x93, 0xb9, 0x32, 0xc7, 0x19, 0x18, 0x66, 0x8c, 0x22, 0xe1, 0xbb, 0x5e, 0x02, 0xb0, 0x2d, 0x64, 0x6f, 0x55, 0xeb, 0xa8, 0xd6, 0x4c, 0xa7, 0x7a, 0x58, 0x69, 0x15, 0xb3, 0x74, 0x59, 0xc9, 0xa6, 0xad, 0xb5, 0xa6, 0x7e, 0xc9, 0x0f, 0xb5, 0x43, 0x3d, 0x22, 0x65, 0x85, 0x26, 0x59, 0x57, 0xb4, 0x6d, 0xc2, 0x68, 0x07, 0xe1, 0xb8, 0x47, 0x75, 0x36, 0xb2, 0x41, 0xa2, 0xc4, 0x5c, 0xe4, 0xc8, 0x0c, 0x06, 0xa3, 0x03, 0x1b, 0xe9, 0x04, 0xbf, 0xea, 0x77, 0x83, 0xd7, 0x50, 0x25, 0x61, 0x05, 0x64, 0x16, 0x1a, 0xe6, 0x8d, 0x15, 0xb3, 0x85, 0xa6, 0x9e, 0x81, 0x51, 0xd1, 0x3c, 0xfa, 0x61, 0xe8, 0x77, 0x5c, 0xb3, 0xe3, 0x92, 0x28, 0xec, 0x37, 0xe8, 0x17, 0x5d, 0x03, 0x15, 0x59, 0x75, 0x32, 0xcb, 0xf5, 0x1b, 0xf8, 0xa3, 0xfe, 0xbf, 0xfc, 0x01, 0xab, 0x64, 0xc0, 0xa7, 0xba, 0x3d, 0x2a, 0x48, 0x96, 0xc7, 0x3d, 0x75, 0x01, 0x46, 0x84, 0x01, 0xc4, 0xed, 0x3a, 0xfb, 0x7f, 0xe1, 0x48, 0xa8, 0x68, 0xfd, 0x31, 0x38, 0xbc, 0x6b, 0x35, 0x2c, 0x17, 0x75, 0xda, 0x1d, 0x84, 0x23, 0x96, 0x76, 0x95, 0xfe, 0xe7, 0x43, 0x3d, 0x62, 0x6e, 0x33, 0xc8, 0x4d, 0xa5, 0x18, 0x13, 0xbb, 0xdd, 0x8d, 0xb3, 0x83, 0xa9, 0x1f, 0x1c, 0xd2, 0x9e, 0x7d, 0xf6, 0xd9, 0x67, 0x13, 0xd9, 0x8f, 0x0e, 0xc0, 0xe1, 0xb0, 0x9c, 0x09, 0x4d, 0xdf, 0x49, 0x18, 0xb0, 0x76, 0x5b, 0x37, 0x50, 0x87, 0x18, 0xa9, 0xdf, 0x60, 0xdf, 0xf4, 0x3c, 0xf4, 0x37, 0xcd, 0x1b, 0xa8, 0x99, 0x4e, 0x1e, 0x57, 0x66, 0x46, 0x17, 0xde, 0x11, 0x2b, 0x2b, 0xe7, 0x96, 0x31, 0xc4, 0xa0, 0x48, 0xfd, 0x21, 0x48, 0xb2, 0x29, 0x1a, 0x4b, 0x98, 0x8d, 0x27, 0x01, 0xe7, 0x92, 0x41, 0x70, 0xfa, 0x9d, 0x30, 0x88, 0xff, 0xa7, 0xb1, 0x31, 0x40, 0x74, 0x4e, 0xe1, 0x06, 0x1c, 0x17, 0xfa, 0x14, 0xa4, 0x48, 0x9a, 0xd4, 0x11, 0x5f, 0xda, 0xbc, 0xef, 0x38, 0xb0, 0xea, 0x68, 0xcb, 0xdc, 0x6d, 0xba, 0xd5, 0x27, 0xcd, 0xe6, 0x2e, 0x22, 0x01, 0x3f, 0x68, 0x0c, 0xb3, 0xc6, 0xf7, 0xe0, 0x36, 0x7d, 0x1a, 0x86, 0x68, 0x56, 0x35, 0xac, 0x3a, 0x7a, 0x9a, 0xcc, 0x9e, 0xfd, 0x06, 0x4d, 0xb4, 0x25, 0xdc, 0x82, 0xbb, 0x7f, 0xdc, 0xb1, 0x2d, 0x1e, 0x9a, 0xa4, 0x0b, 0xdc, 0x40, 0xba, 0xbf, 0x20, 0x4f, 0xdc, 0x77, 0x85, 0x0f, 0x4f, 0x8e, 0xa9, 0xec, 0xd7, 0x12, 0x90, 0x24, 0xf3, 0xc5, 0x18, 0x0c, 0x6d, 0x5c, 0x5f, 0x2b, 0x57, 0x4b, 0xab, 0x9b, 0x85, 0xe5, 0xb2, 0xa6, 0xe8, 0xa3, 0x00, 0xa4, 0xe1, 0xca, 0xf2, 0x6a, 0x7e, 0x43, 0x4b, 0x78, 0xdf, 0x97, 0x2a, 0x1b, 0xe7, 0x17, 0x35, 0xd5, 0x03, 0x6c, 0xd2, 0x86, 0x64, 0x90, 0xe1, 0xec, 0x82, 0xd6, 0xaf, 0x6b, 0x30, 0x4c, 0x05, 0x2c, 0x3d, 0x56, 0x2e, 0x9d, 0x5f, 0xd4, 0x06, 0xc4, 0x96, 0xb3, 0x0b, 0xda, 0x21, 0x7d, 0x04, 0x06, 0x49, 0x4b, 0x61, 0x75, 0x75, 0x59, 0x4b, 0x79, 0x32, 0xd7, 0x37, 0x8c, 0xa5, 0xca, 0x55, 0x6d, 0xd0, 0x93, 0x79, 0xd5, 0x58, 0xdd, 0x5c, 0xd3, 0xc0, 0x93, 0xb0, 0x52, 0x5e, 0x5f, 0xcf, 0x5f, 0x2d, 0x6b, 0x43, 0x1e, 0x47, 0xe1, 0xfa, 0x46, 0x79, 0x5d, 0x1b, 0x16, 0xd4, 0x3a, 0xbb, 0xa0, 0x8d, 0x78, 0x5d, 0x94, 0x2b, 0x9b, 0x2b, 0xda, 0xa8, 0x3e, 0x0e, 0x23, 0xb4, 0x0b, 0xae, 0xc4, 0x98, 0xd4, 0x74, 0x7e, 0x51, 0xd3, 0x7c, 0x45, 0xa8, 0x94, 0x71, 0xa1, 0xe1, 0xfc, 0xa2, 0xa6, 0x67, 0x8b, 0xd0, 0x4f, 0xa2, 0x4b, 0xd7, 0x61, 0x74, 0x39, 0x5f, 0x28, 0x2f, 0x57, 0x57, 0xd7, 0x36, 0x96, 0x56, 0x2b, 0xf9, 0x65, 0x4d, 0xf1, 0xdb, 0x8c, 0xf2, 0xbb, 0x37, 0x97, 0x8c, 0x72, 0x49, 0x4b, 0x04, 0xdb, 0xd6, 0xca, 0xf9, 0x8d, 0x72, 0x49, 0x53, 0xb3, 0x35, 0x38, 0x1c, 0x36, 0x4f, 0x86, 0x66, 0x46, 0xc0, 0xc5, 0x89, 0x1e, 0x2e, 0x26, 0xb2, 0xba, 0x5c, 0xfc, 0x19, 0x05, 0x26, 0x42, 0xd6, 0x8a, 0xd0, 0x4e, 0x1e, 0x86, 0x7e, 0x1a, 0xa2, 0x74, 0xf5, 0xbc, 0x2f, 0x74, 0xd1, 0x21, 0x01, 0xdb, 0xb5, 0x82, 0x12, 0x5c, 0xb0, 0x82, 0x50, 0x7b, 0x54, 0x10, 0x58, 0x44, 0x97, 0x92, 0x1f, 0x50, 0x20, 0xdd, 0x4b, 0x76, 0xc4, 0x44, 0x91, 0x10, 0x26, 0x8a, 0xcb, 0xb2, 0x02, 0x27, 0x7a, 0x8f, 0xa1, 0x4b, 0x8b, 0xcf, 0x29, 0x30, 0x19, 0x5e, 0x68, 0x85, 0xea, 0xf0, 0x10, 0x0c, 0xb4, 0x90, 0xbb, 0x63, 0xf3, 0x62, 0xe3, 0x54, 0xc8, 0x12, 0x86, 0xc9, 0xb2, 0xad, 0x18, 0x2a, 0xb8, 0x06, 0xaa, 0xbd, 0xaa, 0x25, 0xaa, 0x4d, 0x97, 0xa6, 0x1f, 0x4e, 0xc0, 0x91, 0x50, 0xe1, 0xa1, 0x8a, 0xde, 0x05, 0xd0, 0xb0, 0xda, 0xbb, 0x2e, 0x2d, 0x28, 0xe8, 0xfc, 0x34, 0x48, 0x5a, 0x48, 0xee, 0xe3, 0xb9, 0x67, 0xd7, 0xf5, 0xe8, 0x2a, 0xa1, 0x03, 0x6d, 0x22, 0x0c, 0x17, 0x7d, 0x45, 0x93, 0x44, 0xd1, 0x4c, 0x8f, 0x91, 0x76, 0xad, 0xd5, 0xf3, 0xa0, 0xd5, 0x9a, 0x0d, 0x64, 0xb9, 0x55, 0xc7, 0xed, 0x20, 0xb3, 0xd5, 0xb0, 0xb6, 0xc9, 0x04, 0x9c, 0xca, 0xf5, 0x6f, 0x99, 0x4d, 0x07, 0x19, 0x63, 0x94, 0xbc, 0xce, 0xa9, 0x18, 0x41, 0xd6, 0xb8, 0x4e, 0x00, 0x31, 0x20, 0x20, 0x28, 0xd9, 0x43, 0x64, 0xbf, 0x92, 0x82, 0xa1, 0x40, 0x59, 0xaa, 0x9f, 0x80, 0xe1, 0xc7, 0xcd, 0x27, 0xcd, 0x2a, 0xdf, 0x6a, 0x50, 0x4b, 0x0c, 0xe1, 0xb6, 0x35, 0xb6, 0xdd, 0x98, 0x87, 0xc3, 0x84, 0xc5, 0xde, 0x75, 0x51, 0xa7, 0x5a, 0x6b, 0x9a, 0x8e, 0x43, 0x8c, 0x96, 0x22, 0xac, 0x3a, 0xa6, 0xad, 0x62, 0x52, 0x91, 0x53, 0xf4, 0x73, 0x30, 0x41, 0x10, 0xad, 0xdd, 0xa6, 0xdb, 0x68, 0x37, 0x51, 0x15, 0x6f, 0x7e, 0x1c, 0x32, 0x11, 0x7b, 0x9a, 0x8d, 0x63, 0x8e, 0x15, 0xc6, 0x80, 0x35, 0x72, 0xf4, 0x12, 0xdc, 0x45, 0x60, 0xdb, 0xc8, 0x42, 0x1d, 0xd3, 0x45, 0x55, 0xf4, 0xbe, 0x5d, 0xb3, 0xe9, 0x54, 0x4d, 0xab, 0x5e, 0xdd, 0x31, 0x9d, 0x9d, 0xf4, 0x61, 0x2c, 0xa0, 0x90, 0x48, 0x2b, 0xc6, 0x1d, 0x98, 0xf1, 0x2a, 0xe3, 0x2b, 0x13, 0xb6, 0xbc, 0x55, 0x7f, 0xc4, 0x74, 0x76, 0xf4, 0x1c, 0x4c, 0x12, 0x29, 0x8e, 0xdb, 0x69, 0x58, 0xdb, 0xd5, 0xda, 0x0e, 0xaa, 0x3d, 0x51, 0xdd, 0x75, 0xb7, 0x2e, 0xa6, 0xef, 0x0c, 0xf6, 0x4f, 0x34, 0x5c, 0x27, 0x3c, 0x45, 0xcc, 0xb2, 0xe9, 0x6e, 0x5d, 0xd4, 0xd7, 0x61, 0x18, 0x3b, 0xa3, 0xd5, 0x78, 0x06, 0x55, 0xb7, 0xec, 0x0e, 0x59, 0x59, 0x46, 0x43, 0x32, 0x3b, 0x60, 0xc1, 0xb9, 0x55, 0x06, 0x58, 0xb1, 0xeb, 0x28, 0xd7, 0xbf, 0xbe, 0x56, 0x2e, 0x97, 0x8c, 0x21, 0x2e, 0xe5, 0x8a, 0xdd, 0xc1, 0x01, 0xb5, 0x6d, 0x7b, 0x06, 0x1e, 0xa2, 0x01, 0xb5, 0x6d, 0x73, 0xf3, 0x9e, 0x83, 0x89, 0x5a, 0x8d, 0x8e, 0xb9, 0x51, 0xab, 0xb2, 0x2d, 0x8a, 0x93, 0xd6, 0x04, 0x63, 0xd5, 0x6a, 0x57, 0x29, 0x03, 0x8b, 0x71, 0x47, 0xbf, 0x04, 0x47, 0x7c, 0x63, 0x05, 0x81, 0xe3, 0x5d, 0xa3, 0x94, 0xa1, 0xe7, 0x60, 0xa2, 0xbd, 0xd7, 0x0d, 0xd4, 0x85, 0x1e, 0xdb, 0x7b, 0x32, 0xec, 0x02, 0x1c, 0x6e, 0xef, 0xb4, 0xbb, 0x71, 0x13, 0x41, 0x9c, 0xde, 0xde, 0x69, 0xcb, 0xc0, 0x7b, 0xc8, 0x7e, 0xb5, 0x83, 0x6a, 0xa6, 0x8b, 0xea, 0xe9, 0xa3, 0x41, 0xf6, 0x00, 0x41, 0x3f, 0x0d, 0x5a, 0xad, 0x56, 0x45, 0x96, 0x79, 0xa3, 0x89, 0xaa, 0x66, 0x07, 0x59, 0xa6, 0x93, 0x9e, 0x0e, 0x32, 0x8f, 0xd6, 0x6a, 0x65, 0x42, 0xcd, 0x13, 0xa2, 0x3e, 0x0b, 0xe3, 0xf6, 0x8d, 0xc7, 0x6b, 0x34, 0x24, 0xab, 0xed, 0x0e, 0xda, 0x6a, 0x3c, 0x9d, 0x3e, 0x49, 0xec, 0x3b, 0x86, 0x09, 0x24, 0x20, 0xd7, 0x48, 0xb3, 0x7e, 0x1f, 0x68, 0x35, 0x67, 0xc7, 0xec, 0xb4, 0x49, 0x4d, 0xe0, 0xb4, 0xcd, 0x1a, 0x4a, 0xdf, 0x43, 0x59, 0x69, 0x7b, 0x85, 0x37, 0xe3, 0x94, 0x70, 0x9e, 0x6a, 0x6c, 0xb9, 0x5c, 0xe2, 0xbd, 0x34, 0x25, 0x48, 0x1b, 0x93, 0x36, 0x03, 0x1a, 0x36, 0x85, 0xd0, 0xf1, 0x0c, 0x61, 0x1b, 0x6d, 0xef, 0xb4, 0x83, 0xfd, 0xde, 0x0d, 0x23, 0x98, 0xd3, 0xef, 0xf4, 0x3e, 0x5a, 0xcf, 0xb4, 0x77, 0x02, 0x3d, 0xbe, 0x65, 0xa5, 0x65, 0x36, 0x07, 0xc3, 0xc1, 0xf8, 0xd4, 0x07, 0x81, 0x46, 0xa8, 0xa6, 0xe0, 0xb5, 0xbe, 0xb8, 0x5a, 0xc2, 0xab, 0xf4, 0x7b, 0xcb, 0x5a, 0x02, 0x57, 0x0b, 0xcb, 0x4b, 0x1b, 0xe5, 0xaa, 0xb1, 0x59, 0xd9, 0x58, 0x5a, 0x29, 0x6b, 0x6a, 0xb0, 0x2c, 0xfd, 0x56, 0x02, 0x46, 0xc5, 0x1d, 0x86, 0xfe, 0x4e, 0x38, 0xca, 0x8f, 0x03, 0x1c, 0xe4, 0x56, 0x9f, 0x6a, 0x74, 0x48, 0xca, 0xb4, 0x4c, 0x5a, 0x61, 0x7b, 0x4e, 0x3b, 0xcc, 0xb8, 0xd6, 0x91, 0xfb, 0x68, 0xa3, 0x83, 0x13, 0xa2, 0x65, 0xba, 0xfa, 0x32, 0x4c, 0x5b, 0x76, 0xd5, 0x71, 0x4d, 0xab, 0x6e, 0x76, 0xea, 0x55, 0xff, 0x20, 0xa6, 0x6a, 0xd6, 0x6a, 0xc8, 0x71, 0x6c, 0xba, 0x54, 0x79, 0x52, 0x8e, 0x59, 0xf6, 0x3a, 0x63, 0xf6, 0xe7, 0xf0, 0x3c, 0x63, 0x95, 0x02, 0x4c, 0xed, 0x15, 0x60, 0x77, 0xc2, 0x60, 0xcb, 0x6c, 0x57, 0x91, 0xe5, 0x76, 0xf6, 0x48, 0x5d, 0x99, 0x32, 0x52, 0x2d, 0xb3, 0x5d, 0xc6, 0xdf, 0xdf, 0x9e, 0xf2, 0xfe, 0x9f, 0x54, 0x18, 0x0e, 0xd6, 0x96, 0xb8, 0x54, 0xaf, 0x91, 0x75, 0x44, 0x21, 0x33, 0xcd, 0xdd, 0xfb, 0x56, 0xa2, 0x73, 0x45, 0xbc, 0xc0, 0xe4, 0x06, 0x68, 0xc5, 0x67, 0x50, 0x24, 0x5e, 0xdc, 0xf1, 0xdc, 0x82, 0xe8, 0x2e, 0x26, 0x65, 0xb0, 0x6f, 0xfa, 0x55, 0x18, 0x78, 0xdc, 0x21, 0xb2, 0x07, 0x88, 0xec, 0x93, 0xfb, 0xcb, 0xbe, 0xb6, 0x4e, 0x84, 0x0f, 0x5e, 0x5b, 0xaf, 0x56, 0x56, 0x8d, 0x95, 0xfc, 0xb2, 0xc1, 0xe0, 0xfa, 0x1d, 0x90, 0x6c, 0x9a, 0xcf, 0xec, 0x89, 0x4b, 0x11, 0x69, 0x8a, 0x6b, 0xf8, 0x3b, 0x20, 0xf9, 0x14, 0x32, 0x9f, 0x10, 0x17, 0x00, 0xd2, 0xf4, 0x16, 0x86, 0xfe, 0x69, 0xe8, 0x27, 0xf6, 0xd2, 0x01, 0x98, 0xc5, 0xb4, 0x3e, 0x3d, 0x05, 0xc9, 0xe2, 0xaa, 0x81, 0xc3, 0x5f, 0x83, 0x61, 0xda, 0x5a, 0x5d, 0x5b, 0x2a, 0x17, 0xcb, 0x5a, 0x22, 0x7b, 0x0e, 0x06, 0xa8, 0x11, 0x70, 0x6a, 0x78, 0x66, 0xd0, 0xfa, 0xd8, 0x57, 0x26, 0x43, 0xe1, 0xd4, 0xcd, 0x95, 0x42, 0xd9, 0xd0, 0x12, 0x41, 0xf7, 0x3a, 0x30, 0x1c, 0x2c, 0x2b, 0xdf, 0x9e, 0x98, 0xfa, 0x86, 0x02, 0x43, 0x81, 0x32, 0x11, 0x17, 0x28, 0x66, 0xb3, 0x69, 0x3f, 0x55, 0x35, 0x9b, 0x0d, 0xd3, 0x61, 0x41, 0x01, 0xa4, 0x29, 0x8f, 0x5b, 0xe2, 0x3a, 0xed, 0x6d, 0x51, 0xfe, 0x39, 0x05, 0x34, 0xb9, 0xc4, 0x94, 0x14, 0x54, 0x7e, 0xa6, 0x0a, 0x7e, 0x42, 0x81, 0x51, 0xb1, 0xae, 0x94, 0xd4, 0x3b, 0xf1, 0x33, 0x55, 0xef, 0xbb, 0x09, 0x18, 0x11, 0xaa, 0xc9, 0xb8, 0xda, 0xbd, 0x0f, 0xc6, 0x1b, 0x75, 0xd4, 0x6a, 0xdb, 0x2e, 0xb2, 0x6a, 0x7b, 0xd5, 0x26, 0x7a, 0x12, 0x35, 0xd3, 0x59, 0x32, 0x51, 0x9c, 0xde, 0xbf, 0x5e, 0x9d, 0x5b, 0xf2, 0x71, 0xcb, 0x18, 0x96, 0x9b, 0x58, 0x2a, 0x95, 0x57, 0xd6, 0x56, 0x37, 0xca, 0x95, 0xe2, 0xf5, 0xea, 0x66, 0xe5, 0x5d, 0x95, 0xd5, 0x47, 0x2b, 0x86, 0xd6, 0x90, 0xd8, 0xde, 0xc2, 0x54, 0x5f, 0x03, 0x4d, 0x56, 0x4a, 0x3f, 0x0a, 0x61, 0x6a, 0x69, 0x7d, 0xfa, 0x04, 0x8c, 0x55, 0x56, 0xab, 0xeb, 0x4b, 0xa5, 0x72, 0xb5, 0x7c, 0xe5, 0x4a, 0xb9, 0xb8, 0xb1, 0x4e, 0x37, 0xf0, 0x1e, 0xf7, 0x86, 0x98, 0xd4, 0x1f, 0x57, 0x61, 0x22, 0x44, 0x13, 0x3d, 0xcf, 0xf6, 0x0e, 0x74, 0x3b, 0xf3, 0x40, 0x1c, 0xed, 0xe7, 0xf0, 0x92, 0xbf, 0x66, 0x76, 0x5c, 0xb6, 0xd5, 0xb8, 0x0f, 0xb0, 0x95, 0x2c, 0xb7, 0xb1, 0xd5, 0x40, 0x1d, 0x76, 0xde, 0x41, 0x37, 0x14, 0x63, 0x7e, 0x3b, 0x3d, 0xf2, 0xb8, 0x1f, 0xf4, 0xb6, 0xed, 0x34, 0xdc, 0xc6, 0x93, 0xa8, 0xda, 0xb0, 0xf8, 0xe1, 0x08, 0xde, 0x60, 0x24, 0x0d, 0x8d, 0x53, 0x96, 0x2c, 0xd7, 0xe3, 0xb6, 0xd0, 0xb6, 0x29, 0x71, 0xe3, 0x09, 0x5c, 0x35, 0x34, 0x4e, 0xf1, 0xb8, 0x4f, 0xc0, 0x70, 0xdd, 0xde, 0xc5, 0x55, 0x17, 0xe5, 0xc3, 0xeb, 0x85, 0x62, 0x0c, 0xd1, 0x36, 0x8f, 0x85, 0xd5, 0xd3, 0xfe, 0xa9, 0xcc, 0xb0, 0x31, 0x44, 0xdb, 0x28, 0xcb, 0xbd, 0x30, 0x66, 0x6e, 0x6f, 0x77, 0xb0, 0x70, 0x2e, 0x88, 0xee, 0x10, 0x46, 0xbd, 0x66, 0xc2, 0x38, 0x75, 0x0d, 0x52, 0xdc, 0x0e, 0x78, 0x49, 0xc6, 0x96, 0xa8, 0xb6, 0xe9, 0xc9, 0x5c, 0x62, 0x66, 0xd0, 0x48, 0x59, 0x9c, 0x78, 0x02, 0x86, 0x1b, 0x4e, 0xd5, 0x3f, 0x64, 0x4e, 0x1c, 0x4f, 0xcc, 0xa4, 0x8c, 0xa1, 0x86, 0xe3, 0x1d, 0xd0, 0x65, 0x3f, 0x97, 0x80, 0x51, 0xf1, 0x90, 0x5c, 0x2f, 0x41, 0xaa, 0x69, 0xd7, 0x4c, 0x12, 0x5a, 0xf4, 0x86, 0x66, 0x26, 0xe2, 0x5c, 0x7d, 0x6e, 0x99, 0xf1, 0x1b, 0x1e, 0x72, 0xea, 0xef, 0x15, 0x48, 0xf1, 0x66, 0x7d, 0x12, 0x92, 0x6d, 0xd3, 0xdd, 0x21, 0xe2, 0xfa, 0x0b, 0x09, 0x4d, 0x31, 0xc8, 0x77, 0xdc, 0xee, 0xb4, 0x4d, 0x8b, 0x84, 0x00, 0x6b, 0xc7, 0xdf, 0xb1, 0x5f, 0x9b, 0xc8, 0xac, 0x93, 0xed, 0x87, 0xdd, 0x6a, 0x21, 0xcb, 0x75, 0xb8, 0x5f, 0x59, 0x7b, 0x91, 0x35, 0xeb, 0xef, 0x80, 0x71, 0xb7, 0x63, 0x36, 0x9a, 0x02, 0x6f, 0x92, 0xf0, 0x6a, 0x9c, 0xe0, 0x31, 0xe7, 0xe0, 0x0e, 0x2e, 0xb7, 0x8e, 0x5c, 0xb3, 0xb6, 0x83, 0xea, 0x3e, 0x68, 0x80, 0x9c, 0xc0, 0x1e, 0x65, 0x0c, 0x25, 0x46, 0xe7, 0xd8, 0xec, 0xb7, 0x15, 0x18, 0xe7, 0x1b, 0xa6, 0xba, 0x67, 0xac, 0x15, 0x00, 0xd3, 0xb2, 0x6c, 0x37, 0x68, 0xae, 0xee, 0x50, 0xee, 0xc2, 0xcd, 0xe5, 0x3d, 0x90, 0x11, 0x10, 0x30, 0xd5, 0x02, 0xf0, 0x29, 0x3d, 0xcd, 0x36, 0x0d, 0x43, 0xec, 0x06, 0x84, 0x5c, 0xa3, 0xd1, 0x2d, 0x36, 0xd0, 0x26, 0xbc, 0xb3, 0xd2, 0x0f, 0x43, 0xff, 0x0d, 0xb4, 0xdd, 0xb0, 0xd8, 0xb9, 0x26, 0xfd, 0xc2, 0xcf, 0x6a, 0x93, 0xde, 0x59, 0x6d, 0xe1, 0x31, 0x98, 0xa8, 0xd9, 0x2d, 0x59, 0xdd, 0x82, 0x26, 0x6d, 0xf3, 0x9d, 0x47, 0x94, 0xf7, 0x82, 0x5f, 0x62, 0x7e, 0x26, 0xa1, 0x5e, 0x5d, 0x2b, 0x7c, 0x21, 0x31, 0x75, 0x95, 0xe2, 0xd6, 0xf8, 0x30, 0x0d, 0xb4, 0xd5, 0x44, 0x35, 0xac, 0x3a, 0xfc, 0xf8, 0x14, 0x3c, 0xb0, 0xdd, 0x70, 0x77, 0x76, 0x6f, 0xcc, 0xd5, 0xec, 0xd6, 0xe9, 0x6d, 0x7b, 0xdb, 0xf6, 0xaf, 0x0d, 0xf1, 0x37, 0xf2, 0x85, 0x7c, 0x62, 0x57, 0x87, 0x83, 0x5e, 0xeb, 0x54, 0xe4, 0x3d, 0x63, 0xae, 0x02, 0x13, 0x8c, 0xb9, 0x4a, 0xee, 0x2e, 0xe8, 0x16, 0x42, 0xdf, 0xf7, 0xfc, 0x27, 0xfd, 0xe5, 0xef, 0x93, 0xb5, 0xda, 0x18, 0x67, 0x50, 0x4c, 0xa3, 0xbb, 0x8c, 0x9c, 0x01, 0x47, 0x04, 0x79, 0x34, 0x2f, 0x51, 0x27, 0x42, 0xe2, 0xb7, 0x98, 0xc4, 0x89, 0x80, 0xc4, 0x75, 0x06, 0xcd, 0x15, 0x61, 0xe4, 0x20, 0xb2, 0xfe, 0x9a, 0xc9, 0x1a, 0x46, 0x41, 0x21, 0x57, 0x61, 0x8c, 0x08, 0xa9, 0xed, 0x3a, 0xae, 0xdd, 0x22, 0x93, 0xde, 0xfe, 0x62, 0xfe, 0xe6, 0xfb, 0x34, 0x51, 0x46, 0x31, 0xac, 0xe8, 0xa1, 0x72, 0x39, 0x20, 0xd7, 0x35, 0x75, 0x54, 0x6b, 0x46, 0x48, 0xb8, 0xc9, 0x14, 0xf1, 0xf8, 0x73, 0xef, 0x81, 0xc3, 0xf8, 0x33, 0x99, 0x93, 0x82, 0x9a, 0x44, 0x9f, 0x76, 0xa5, 0xbf, 0xfd, 0x01, 0x9a, 0x8b, 0x13, 0x9e, 0x80, 0x80, 0x4e, 0x01, 0x2f, 0x6e, 0x23, 0xd7, 0x45, 0x1d, 0xa7, 0x6a, 0x36, 0xc3, 0xd4, 0x0b, 0x1c, 0x17, 0xa4, 0x3f, 0xf6, 0xaa, 0xe8, 0xc5, 0xab, 0x14, 0x99, 0x6f, 0x36, 0x73, 0x9b, 0x70, 0x34, 0x24, 0x2a, 0x62, 0xc8, 0xfc, 0x38, 0x93, 0x79, 0xb8, 0x2b, 0x32, 0xb0, 0xd8, 0x35, 0xe0, 0xed, 0x9e, 0x2f, 0x63, 0xc8, 0xfc, 0x3d, 0x26, 0x53, 0x67, 0x58, 0xee, 0x52, 0x2c, 0xf1, 0x1a, 0x8c, 0x3f, 0x89, 0x3a, 0x37, 0x6c, 0x87, 0x1d, 0xd1, 0xc4, 0x10, 0xf7, 0x09, 0x26, 0x6e, 0x8c, 0x01, 0xc9, 0x99, 0x0d, 0x96, 0x75, 0x09, 0x52, 0x5b, 0x66, 0x0d, 0xc5, 0x10, 0xf1, 0x49, 0x26, 0xe2, 0x10, 0xe6, 0xc7, 0xd0, 0x3c, 0x0c, 0x6f, 0xdb, 0x6c, 0x59, 0x8a, 0x86, 0x3f, 0xc7, 0xe0, 0x43, 0x1c, 0xc3, 0x44, 0xb4, 0xed, 0xf6, 0x6e, 0x13, 0xaf, 0x59, 0xd1, 0x22, 0x3e, 0xc5, 0x45, 0x70, 0x0c, 0x13, 0x71, 0x00, 0xb3, 0x3e, 0xcf, 0x45, 0x38, 0x01, 0x7b, 0x3e, 0x0c, 0x43, 0xb6, 0xd5, 0xdc, 0xb3, 0xad, 0x38, 0x4a, 0x7c, 0x9a, 0x49, 0x00, 0x06, 0xc1, 0x02, 0x2e, 0xc3, 0x60, 0x5c, 0x47, 0x7c, 0xf6, 0x55, 0x9e, 0x1e, 0xdc, 0x03, 0x57, 0x61, 0x8c, 0x4f, 0x50, 0x0d, 0xdb, 0x8a, 0x21, 0xe2, 0x0f, 0x98, 0x88, 0xd1, 0x00, 0x8c, 0x0d, 0xc3, 0x45, 0x8e, 0xbb, 0x8d, 0xe2, 0x08, 0xf9, 0x1c, 0x1f, 0x06, 0x83, 0x30, 0x53, 0xde, 0x40, 0x56, 0x6d, 0x27, 0x9e, 0x84, 0x17, 0xb8, 0x29, 0x39, 0x06, 0x8b, 0x28, 0xc2, 0x48, 0xcb, 0xec, 0x38, 0x3b, 0x66, 0x33, 0x96, 0x3b, 0x3e, 0xcf, 0x64, 0x0c, 0x7b, 0x20, 0x66, 0x91, 0x5d, 0xeb, 0x20, 0x62, 0xbe, 0xc0, 0x2d, 0x12, 0x80, 0xb1, 0xd4, 0x73, 0x5c, 0x72, 0x9e, 0x75, 0x10, 0x69, 0x5f, 0xe4, 0xa9, 0x47, 0xb1, 0x2b, 0x41, 0x89, 0x97, 0x61, 0xd0, 0x69, 0x3c, 0x13, 0x4b, 0xcc, 0x1f, 0x72, 0x4f, 0x13, 0x00, 0x06, 0x5f, 0x87, 0x3b, 0x42, 0x97, 0x89, 0x18, 0xc2, 0xfe, 0x88, 0x09, 0x9b, 0x0c, 0x59, 0x2a, 0xd8, 0x94, 0x70, 0x50, 0x91, 0x7f, 0xcc, 0xa7, 0x04, 0x24, 0xc9, 0x5a, 0xc3, 0x1b, 0x05, 0xc7, 0xdc, 0x3a, 0x98, 0xd5, 0xfe, 0x84, 0x5b, 0x8d, 0x62, 0x05, 0xab, 0x6d, 0xc0, 0x24, 0x93, 0x78, 0x30, 0xbf, 0x7e, 0x89, 0x4f, 0xac, 0x14, 0xbd, 0x29, 0x7a, 0xf7, 0x7f, 0xc3, 0x94, 0x67, 0x4e, 0x5e, 0x91, 0x3a, 0xd5, 0x96, 0xd9, 0x8e, 0x21, 0xf9, 0xcb, 0x4c, 0x32, 0x9f, 0xf1, 0xbd, 0x92, 0xd6, 0x59, 0x31, 0xdb, 0x58, 0xf8, 0x63, 0x90, 0xe6, 0xc2, 0x77, 0xad, 0x0e, 0xaa, 0xd9, 0xdb, 0x56, 0xe3, 0x19, 0x54, 0x8f, 0x21, 0xfa, 0x4f, 0x25, 0x57, 0x6d, 0x06, 0xe0, 0x58, 0xf2, 0x12, 0x68, 0x5e, 0xad, 0x52, 0x6d, 0xb4, 0xda, 0x76, 0xc7, 0x8d, 0x90, 0xf8, 0x15, 0xee, 0x29, 0x0f, 0xb7, 0x44, 0x60, 0xb9, 0x32, 0x8c, 0x92, 0xaf, 0x71, 0x43, 0xf2, 0xab, 0x4c, 0xd0, 0x88, 0x8f, 0x62, 0x13, 0x47, 0xcd, 0x6e, 0xb5, 0xcd, 0x4e, 0x9c, 0xf9, 0xef, 0xcf, 0xf8, 0xc4, 0xc1, 0x20, 0x6c, 0xe2, 0x70, 0xf7, 0xda, 0x08, 0xaf, 0xf6, 0x31, 0x24, 0x7c, 0x8d, 0x4f, 0x1c, 0x1c, 0xc3, 0x44, 0xf0, 0x82, 0x21, 0x86, 0x88, 0x3f, 0xe7, 0x22, 0x38, 0x06, 0x8b, 0x78, 0xb7, 0xbf, 0xd0, 0x76, 0xd0, 0x76, 0xc3, 0x71, 0x3b, 0xb4, 0x0e, 0xde, 0x5f, 0xd4, 0xd7, 0x5f, 0x15, 0x8b, 0x30, 0x23, 0x00, 0xcd, 0x5d, 0x83, 0x31, 0xa9, 0xc4, 0xd0, 0xa3, 0xde, 0x7e, 0xa4, 0xff, 0xff, 0x6b, 0x6c, 0x32, 0x12, 0x2b, 0x8c, 0xdc, 0x32, 0xf6, 0xbb, 0x58, 0x07, 0x44, 0x0b, 0xfb, 0xc0, 0x6b, 0x9e, 0xeb, 0x85, 0x32, 0x20, 0x77, 0x05, 0x46, 0x84, 0x1a, 0x20, 0x5a, 0xd4, 0x2f, 0x30, 0x51, 0xc3, 0xc1, 0x12, 0x20, 0x77, 0x0e, 0x92, 0x78, 0x3d, 0x8f, 0x86, 0xff, 0x22, 0x83, 0x13, 0xf6, 0xdc, 0x83, 0x90, 0xe2, 0xeb, 0x78, 0x34, 0xf4, 0x83, 0x0c, 0xea, 0x41, 0x30, 0x9c, 0xaf, 0xe1, 0xd1, 0xf0, 0x5f, 0xe2, 0x70, 0x0e, 0xc1, 0xf0, 0xf8, 0x26, 0x7c, 0xf1, 0x57, 0x92, 0x6c, 0x1e, 0xe6, 0xb6, 0xbb, 0x0c, 0x87, 0xd8, 0xe2, 0x1d, 0x8d, 0xfe, 0x30, 0xeb, 0x9c, 0x23, 0x72, 0x17, 0xa0, 0x3f, 0xa6, 0xc1, 0x7f, 0x95, 0x41, 0x29, 0x7f, 0xae, 0x08, 0x43, 0x81, 0x05, 0x3b, 0x1a, 0xfe, 0x6b, 0x0c, 0x1e, 0x44, 0x61, 0xd5, 0xd9, 0x82, 0x1d, 0x2d, 0xe0, 0xd7, 0xb9, 0xea, 0x0c, 0x81, 0xcd, 0xc6, 0xd7, 0xea, 0x68, 0xf4, 0x6f, 0x70, 0xab, 0x73, 0x48, 0xee, 0x61, 0x18, 0xf4, 0xe6, 0xdf, 0x68, 0xfc, 0x6f, 0x32, 0xbc, 0x8f, 0xc1, 0x16, 0x08, 0xcc, 0xff, 0xd1, 0x22, 0x7e, 0x8b, 0x5b, 0x20, 0x80, 0xc2, 0x69, 0x24, 0xaf, 0xe9, 0xd1, 0x92, 0x3e, 0xc2, 0xd3, 0x48, 0x5a, 0xd2, 0xb1, 0x37, 0xc9, 0x34, 0x18, 0x2d, 0xe2, 0xb7, 0xb9, 0x37, 0x09, 0x3f, 0x56, 0x43, 0x5e, 0x24, 0xa3, 0x65, 0xfc, 0x2e, 0x57, 0x43, 0x5a, 0x23, 0x73, 0x6b, 0xa0, 0x77, 0x2f, 0x90, 0xd1, 0xf2, 0x3e, 0xca, 0xe4, 0x8d, 0x77, 0xad, 0x8f, 0xb9, 0x47, 0x61, 0x32, 0x7c, 0x71, 0x8c, 0x96, 0xfa, 0xb1, 0xd7, 0xa4, 0xed, 0x4c, 0x70, 0x6d, 0xcc, 0x6d, 0xf8, 0xb3, 0x6c, 0x70, 0x61, 0x8c, 0x16, 0xfb, 0xf1, 0xd7, 0xc4, 0x89, 0x36, 0xb8, 0x2e, 0xe6, 0xf2, 0x00, 0xfe, 0x9a, 0x14, 0x2d, 0xeb, 0x13, 0x4c, 0x56, 0x00, 0x84, 0x53, 0x83, 0x2d, 0x49, 0xd1, 0xf8, 0x4f, 0xf2, 0xd4, 0x60, 0x08, 0x9c, 0x1a, 0x7c, 0x35, 0x8a, 0x46, 0x3f, 0xc7, 0x53, 0x83, 0x43, 0x72, 0x97, 0x21, 0x65, 0xed, 0x36, 0x9b, 0x38, 0xb6, 0xf4, 0xfd, 0x9f, 0x33, 0xa5, 0xff, 0xe5, 0x75, 0x06, 0xe6, 0x80, 0xdc, 0x39, 0xe8, 0x47, 0xad, 0x1b, 0xa8, 0x1e, 0x85, 0xfc, 0xd7, 0xd7, 0xf9, 0x7c, 0x82, 0xb9, 0x73, 0x0f, 0x03, 0xd0, 0xcd, 0x34, 0xb9, 0x25, 0x8a, 0xc0, 0xfe, 0xdb, 0xeb, 0xec, 0xa5, 0x84, 0x0f, 0xf1, 0x05, 0xd0, 0x77, 0x17, 0xfb, 0x0b, 0x78, 0x55, 0x14, 0x40, 0x36, 0xe0, 0x97, 0xe0, 0xd0, 0xe3, 0x8e, 0x6d, 0xb9, 0xe6, 0x76, 0x14, 0xfa, 0xdf, 0x19, 0x9a, 0xf3, 0x63, 0x83, 0xb5, 0xec, 0x0e, 0x72, 0xcd, 0x6d, 0x27, 0x0a, 0xfb, 0x1f, 0x0c, 0xeb, 0x01, 0x30, 0xb8, 0x66, 0x3a, 0x6e, 0x9c, 0x71, 0xff, 0x27, 0x07, 0x73, 0x00, 0x56, 0x1a, 0x7f, 0x7e, 0x02, 0xed, 0x45, 0x61, 0x7f, 0xc8, 0x95, 0x66, 0xfc, 0xb9, 0x07, 0x61, 0x10, 0x7f, 0xa4, 0xaf, 0x87, 0x22, 0xc0, 0xff, 0xc5, 0xc0, 0x3e, 0x02, 0xf7, 0xec, 0xb8, 0x75, 0xb7, 0x11, 0x6d, 0xec, 0x1f, 0x31, 0x4f, 0x73, 0xfe, 0x5c, 0x1e, 0x86, 0x1c, 0xb7, 0x5e, 0xdf, 0x65, 0x15, 0x4d, 0x04, 0xfc, 0xc7, 0xaf, 0x7b, 0x9b, 0x5c, 0x0f, 0x53, 0x38, 0x11, 0x7e, 0x58, 0x07, 0x57, 0xed, 0xab, 0x36, 0x3d, 0xa6, 0x83, 0xbf, 0x6b, 0x42, 0xa6, 0x66, 0xb7, 0x6e, 0xd8, 0xce, 0x69, 0x6f, 0x22, 0x39, 0xed, 0xee, 0x20, 0xbc, 0x7e, 0xb0, 0x63, 0xb6, 0x24, 0xfe, 0x3c, 0x75, 0xb0, 0xb3, 0x39, 0x72, 0xed, 0x5a, 0x69, 0x60, 0xf5, 0x2a, 0xe4, 0xe4, 0x5b, 0x3f, 0x06, 0x03, 0x44, 0xe1, 0x33, 0xe4, 0x76, 0x49, 0x29, 0x24, 0x6f, 0xbe, 0x3c, 0xdd, 0x67, 0xb0, 0x36, 0x8f, 0xba, 0x40, 0x8e, 0x26, 0x13, 0x02, 0x75, 0xc1, 0xa3, 0x9e, 0xa5, 0xa7, 0x93, 0x02, 0xf5, 0xac, 0x47, 0x5d, 0x24, 0xe7, 0x94, 0xaa, 0x40, 0x5d, 0xf4, 0xa8, 0xe7, 0xc8, 0x59, 0xfc, 0x88, 0x40, 0x3d, 0xe7, 0x51, 0xcf, 0x93, 0x13, 0xf8, 0xa4, 0x40, 0x3d, 0xef, 0x51, 0x2f, 0x90, 0xc3, 0xf7, 0x71, 0x81, 0x7a, 0xc1, 0xa3, 0x5e, 0x24, 0x87, 0xee, 0xba, 0x40, 0xbd, 0xe8, 0x51, 0x2f, 0x91, 0x17, 0x2d, 0x87, 0x04, 0xea, 0x25, 0x3d, 0x03, 0x87, 0xe8, 0xc8, 0xe7, 0xc9, 0x0d, 0xed, 0x18, 0x23, 0xf3, 0x46, 0x9f, 0x7e, 0x86, 0xbc, 0x5e, 0x19, 0x10, 0xe9, 0x67, 0x7c, 0xfa, 0x02, 0x79, 0x87, 0xae, 0x89, 0xf4, 0x05, 0x9f, 0x7e, 0x36, 0x3d, 0x42, 0x5e, 0xf0, 0x08, 0xf4, 0xb3, 0x3e, 0x7d, 0x31, 0x3d, 0x8a, 0x63, 0x56, 0xa4, 0x2f, 0xfa, 0xf4, 0x73, 0xe9, 0xb1, 0xe3, 0xca, 0xcc, 0xb0, 0x48, 0x3f, 0x97, 0x7d, 0x3f, 0x71, 0xaf, 0xe5, 0xbb, 0x77, 0x52, 0x74, 0xaf, 0xe7, 0xd8, 0x49, 0xd1, 0xb1, 0x9e, 0x4b, 0x27, 0x45, 0x97, 0x7a, 0xce, 0x9c, 0x14, 0x9d, 0xe9, 0xb9, 0x71, 0x52, 0x74, 0xa3, 0xe7, 0xc0, 0x49, 0xd1, 0x81, 0x9e, 0xeb, 0x26, 0x45, 0xd7, 0x79, 0x4e, 0x9b, 0x14, 0x9d, 0xe6, 0xb9, 0x6b, 0x52, 0x74, 0x97, 0xe7, 0xa8, 0xb4, 0xe4, 0x28, 0xdf, 0x45, 0x69, 0xc9, 0x45, 0xbe, 0x73, 0xd2, 0x92, 0x73, 0x7c, 0xb7, 0xa4, 0x25, 0xb7, 0xf8, 0x0e, 0x49, 0x4b, 0x0e, 0xf1, 0x5d, 0x91, 0x96, 0x5c, 0xe1, 0x3b, 0x81, 0xe5, 0x98, 0x81, 0xda, 0x21, 0x39, 0xa6, 0xee, 0x9b, 0x63, 0xea, 0xbe, 0x39, 0xa6, 0xee, 0x9b, 0x63, 0xea, 0xbe, 0x39, 0xa6, 0xee, 0x9b, 0x63, 0xea, 0xbe, 0x39, 0xa6, 0xee, 0x9b, 0x63, 0xea, 0xbe, 0x39, 0xa6, 0xee, 0x9f, 0x63, 0x6a, 0x44, 0x8e, 0xa9, 0x11, 0x39, 0xa6, 0x46, 0xe4, 0x98, 0x1a, 0x91, 0x63, 0x6a, 0x44, 0x8e, 0xa9, 0x3d, 0x73, 0xcc, 0x77, 0xef, 0xa4, 0xe8, 0xde, 0xd0, 0x1c, 0x53, 0x7b, 0xe4, 0x98, 0xda, 0x23, 0xc7, 0xd4, 0x1e, 0x39, 0xa6, 0xf6, 0xc8, 0x31, 0xb5, 0x47, 0x8e, 0xa9, 0x3d, 0x72, 0x4c, 0xed, 0x91, 0x63, 0x6a, 0xaf, 0x1c, 0x53, 0x7b, 0xe6, 0x98, 0xda, 0x33, 0xc7, 0xd4, 0x9e, 0x39, 0xa6, 0xf6, 0xcc, 0x31, 0xb5, 0x67, 0x8e, 0xa9, 0xc1, 0x1c, 0xfb, 0x4b, 0x15, 0x74, 0x9a, 0x63, 0x6b, 0xe4, 0x8d, 0x0f, 0x73, 0x45, 0x46, 0xca, 0xb4, 0x01, 0xec, 0x3a, 0xcd, 0x77, 0x49, 0x46, 0xca, 0x35, 0x91, 0xbe, 0xe0, 0xd1, 0x79, 0xb6, 0x89, 0xf4, 0xb3, 0x1e, 0x9d, 0xe7, 0x9b, 0x48, 0x5f, 0xf4, 0xe8, 0x3c, 0xe3, 0x44, 0xfa, 0x39, 0x8f, 0xce, 0x73, 0x4e, 0xa4, 0x9f, 0xf7, 0xe8, 0x3c, 0xeb, 0x44, 0xfa, 0x05, 0x8f, 0xce, 0xf3, 0x4e, 0xa4, 0x5f, 0xf4, 0xe8, 0x3c, 0xf3, 0x44, 0xfa, 0x25, 0xfd, 0xb8, 0x9c, 0x7b, 0x9c, 0xc1, 0x73, 0xed, 0x71, 0x39, 0xfb, 0x24, 0x8e, 0x33, 0x3e, 0x07, 0xcf, 0x3f, 0x89, 0x63, 0xc1, 0xe7, 0xe0, 0x19, 0x28, 0x71, 0x9c, 0xcd, 0x7e, 0x88, 0xb8, 0xcf, 0x92, 0xdd, 0x37, 0x25, 0xb9, 0x2f, 0x11, 0x70, 0xdd, 0x94, 0xe4, 0xba, 0x44, 0xc0, 0x6d, 0x53, 0x92, 0xdb, 0x12, 0x01, 0x97, 0x4d, 0x49, 0x2e, 0x4b, 0x04, 0xdc, 0x35, 0x25, 0xb9, 0x2b, 0x11, 0x70, 0xd5, 0x94, 0xe4, 0xaa, 0x44, 0xc0, 0x4d, 0x53, 0x92, 0x9b, 0x12, 0x01, 0x17, 0x4d, 0x49, 0x2e, 0x4a, 0x04, 0xdc, 0x33, 0x25, 0xb9, 0x27, 0x11, 0x70, 0xcd, 0x31, 0xd9, 0x35, 0x89, 0xa0, 0x5b, 0x8e, 0xc9, 0x6e, 0x49, 0x04, 0x5d, 0x72, 0x4c, 0x76, 0x49, 0x22, 0xe8, 0x8e, 0x63, 0xb2, 0x3b, 0x12, 0x41, 0x57, 0xfc, 0x34, 0xc1, 0x2b, 0xc2, 0x75, 0xb7, 0xb3, 0x5b, 0x73, 0x6f, 0xab, 0x22, 0x9c, 0x17, 0xca, 0x87, 0xa1, 0x05, 0x7d, 0x8e, 0x14, 0xac, 0xc1, 0x8a, 0x53, 0x5a, 0xc1, 0xe6, 0x85, 0xc2, 0x22, 0x80, 0xb0, 0xc2, 0x11, 0x8b, 0xb7, 0x55, 0x1b, 0xce, 0x0b, 0x65, 0x46, 0xb4, 0x7e, 0x17, 0xdf, 0xf2, 0x8a, 0xed, 0xc5, 0x04, 0xaf, 0xd8, 0x98, 0xf9, 0x0f, 0x5a, 0xb1, 0xcd, 0x46, 0x9b, 0xdc, 0x33, 0xf6, 0x6c, 0xb4, 0xb1, 0xbb, 0x56, 0x9d, 0xb8, 0x15, 0xdc, 0x6c, 0xb4, 0x69, 0x3d, 0xa3, 0xbe, 0xb9, 0xf5, 0x16, 0x8b, 0x60, 0x03, 0xb5, 0x43, 0x22, 0xf8, 0xa0, 0xf5, 0xd6, 0xbc, 0x30, 0x95, 0x1c, 0x34, 0x82, 0xd5, 0x03, 0x47, 0xf0, 0x41, 0x2b, 0xaf, 0x79, 0x61, 0x7a, 0x39, 0x70, 0x04, 0xbf, 0x05, 0xf5, 0x10, 0x8b, 0x60, 0xdf, 0xfc, 0x07, 0xad, 0x87, 0x66, 0xa3, 0x4d, 0x1e, 0x1a, 0xc1, 0xea, 0x01, 0x22, 0x38, 0x4e, 0x7d, 0x34, 0x1b, 0x6d, 0xda, 0xf0, 0x08, 0xbe, 0xed, 0x6a, 0xe6, 0x53, 0x0a, 0x8c, 0x57, 0x1a, 0xf5, 0x72, 0xeb, 0x06, 0xaa, 0xd7, 0x51, 0x9d, 0xd9, 0x71, 0x5e, 0x98, 0x09, 0x7a, 0xb8, 0xfa, 0xa5, 0x97, 0xa7, 0x7d, 0x0b, 0x9f, 0x83, 0x14, 0xb5, 0xe9, 0xfc, 0x7c, 0xfa, 0xa6, 0x12, 0x31, 0xc3, 0x79, 0xac, 0xfa, 0x09, 0x0e, 0x3b, 0x33, 0x9f, 0xfe, 0x07, 0x25, 0x30, 0xcb, 0x79, 0xcd, 0xd9, 0x8f, 0x10, 0x0d, 0xad, 0xdb, 0xd6, 0xf0, 0x74, 0x2c, 0x0d, 0x03, 0xba, 0xdd, 0xd9, 0xa5, 0x5b, 0x40, 0xab, 0x5d, 0x18, 0xab, 0x34, 0xea, 0x15, 0xf2, 0x17, 0xd0, 0x71, 0x54, 0xa2, 0x3c, 0xd2, 0x7c, 0x30, 0x2f, 0x84, 0x65, 0x10, 0xe1, 0x85, 0xb4, 0x38, 0x47, 0x64, 0x1b, 0xb8, 0x5b, 0x4b, 0xe8, 0x76, 0xb6, 0x57, 0xb7, 0xfe, 0xcc, 0xee, 0x75, 0x38, 0xdb, 0xab, 0x43, 0x3f, 0x87, 0xbc, 0xae, 0x9e, 0xe6, 0x8b, 0x33, 0x7d, 0x6c, 0xa3, 0x1f, 0x83, 0xc4, 0x12, 0x7d, 0x08, 0x3c, 0x5c, 0x18, 0xc6, 0x4a, 0x7d, 0xe7, 0xe5, 0xe9, 0xe4, 0xe6, 0x6e, 0xa3, 0x6e, 0x24, 0x96, 0xea, 0xfa, 0x35, 0xe8, 0x7f, 0x0f, 0xfb, 0x3b, 0x3c, 0xcc, 0xb0, 0xc8, 0x18, 0xee, 0xef, 0x79, 0x46, 0x84, 0x3b, 0x3e, 0x4d, 0x8f, 0x11, 0xe7, 0x36, 0x1b, 0x96, 0x7b, 0x66, 0xe1, 0xa2, 0x41, 0x45, 0x64, 0xff, 0x0f, 0x00, 0xed, 0xb3, 0x64, 0x3a, 0x3b, 0x7a, 0x85, 0x4b, 0xa6, 0x5d, 0x5f, 0xfc, 0xce, 0xcb, 0xd3, 0x8b, 0x71, 0xa4, 0x3e, 0x50, 0x37, 0x9d, 0x9d, 0x07, 0xdc, 0xbd, 0x36, 0x9a, 0x2b, 0xec, 0xb9, 0xc8, 0xe1, 0xd2, 0xdb, 0x7c, 0xd5, 0x63, 0xe3, 0x4a, 0x07, 0xc6, 0x95, 0x12, 0xc6, 0x74, 0x45, 0x1c, 0xd3, 0xfc, 0x1b, 0x1d, 0xcf, 0xd3, 0x7c, 0x91, 0x90, 0x2c, 0xa9, 0x46, 0x59, 0x52, 0xbd, 0x5d, 0x4b, 0xb6, 0xf9, 0xfc, 0x28, 0x8d, 0x55, 0xdd, 0x6f, 0xac, 0xea, 0xed, 0x8c, 0xf5, 0xbf, 0x69, 0xb6, 0x7a, 0xf9, 0xb4, 0x69, 0xd1, 0x47, 0x88, 0x3f, 0x5f, 0x67, 0x41, 0x6f, 0x6a, 0x15, 0x90, 0x4b, 0xde, 0x7c, 0x7e, 0x5a, 0xc9, 0x7e, 0x2a, 0xc1, 0x47, 0x4e, 0x13, 0xe9, 0x8d, 0x8d, 0xfc, 0xe7, 0xa5, 0xa6, 0x7a, 0x2b, 0x2c, 0xf4, 0x9c, 0x02, 0x93, 0x5d, 0x33, 0x39, 0x35, 0xd3, 0x9b, 0x3b, 0x9d, 0x5b, 0x07, 0x9d, 0xce, 0x99, 0x82, 0x5f, 0x55, 0xe0, 0xb0, 0x34, 0xbd, 0x52, 0xf5, 0x4e, 0x4b, 0xea, 0x1d, 0xed, 0xee, 0x89, 0x30, 0x06, 0xb4, 0x0b, 0xba, 0x57, 0x02, 0x04, 0x24, 0x7b, 0x7e, 0x5f, 0x94, 0xfc, 0x7e, 0xcc, 0x03, 0x84, 0x98, 0x8b, 0x47, 0x00, 0x53, 0xdb, 0x86, 0xe4, 0x46, 0x07, 0x21, 0x3d, 0x03, 0x89, 0xd5, 0x0e, 0xd3, 0x70, 0x94, 0xe2, 0x57, 0x3b, 0x85, 0x8e, 0x69, 0xd5, 0x76, 0x8c, 0xc4, 0x6a, 0x47, 0x3f, 0x01, 0x6a, 0x9e, 0xfd, 0xce, 0xc2, 0xd0, 0xc2, 0x18, 0x65, 0xc8, 0x5b, 0x75, 0xc6, 0x81, 0x69, 0x7a, 0x06, 0x92, 0xcb, 0xc8, 0xdc, 0x62, 0x4a, 0x00, 0xe5, 0xc1, 0x2d, 0x06, 0x69, 0x67, 0x1d, 0x3e, 0x06, 0x29, 0x2e, 0x58, 0x3f, 0x89, 0x11, 0x5b, 0x2e, 0xeb, 0x96, 0x21, 0xb0, 0x3a, 0x6c, 0xe5, 0x22, 0x54, 0xfd, 0x14, 0xf4, 0x1b, 0x8d, 0xed, 0x1d, 0x97, 0x75, 0xde, 0xcd, 0x46, 0xc9, 0xd9, 0xeb, 0x30, 0xe8, 0x69, 0xf4, 0x26, 0x8b, 0x2e, 0xd1, 0xa1, 0xe9, 0x53, 0xc1, 0xf5, 0x84, 0x9f, 0x5b, 0xd2, 0x26, 0xfd, 0x38, 0xa4, 0xd6, 0xdd, 0x8e, 0x3f, 0xe9, 0xf3, 0x8a, 0xd4, 0x6b, 0xcd, 0xbe, 0x5f, 0x81, 0x54, 0x09, 0xa1, 0x36, 0x31, 0xf8, 0x3d, 0x90, 0x2c, 0xd9, 0x4f, 0x59, 0x4c, 0xc1, 0x71, 0x66, 0x51, 0x4c, 0x66, 0x36, 0x25, 0x64, 0xfd, 0x9e, 0xa0, 0xdd, 0x27, 0x3c, 0xbb, 0x07, 0xf8, 0x88, 0xed, 0xb3, 0x82, 0xed, 0x99, 0x03, 0x31, 0x53, 0x97, 0xfd, 0x2f, 0xc0, 0x50, 0xa0, 0x17, 0x7d, 0x86, 0xa9, 0x91, 0x90, 0x81, 0x41, 0x5b, 0x61, 0x8e, 0x2c, 0x82, 0x11, 0xa1, 0x63, 0x0c, 0x0d, 0x98, 0xb8, 0x07, 0x94, 0x98, 0x79, 0x56, 0x34, 0x73, 0x38, 0x2b, 0x33, 0xf5, 0x3c, 0xb5, 0x11, 0x31, 0xf7, 0x49, 0x1a, 0x9c, 0xbd, 0x9d, 0x88, 0x3f, 0x67, 0xfb, 0x41, 0xad, 0x34, 0x9a, 0xd9, 0x07, 0x01, 0x68, 0xca, 0x97, 0xad, 0xdd, 0x96, 0x94, 0x75, 0xa3, 0xdc, 0xc0, 0x1b, 0x3b, 0x68, 0x03, 0x39, 0x84, 0x45, 0xac, 0xa7, 0xf0, 0x04, 0x03, 0x34, 0xc5, 0x08, 0xfe, 0xbe, 0x48, 0x7c, 0x68, 0x25, 0x86, 0x59, 0xd3, 0x94, 0xf5, 0x3a, 0x72, 0xf3, 0x96, 0xed, 0xee, 0xa0, 0x8e, 0x84, 0x58, 0xd0, 0xcf, 0x0a, 0x09, 0x3b, 0xba, 0x70, 0xa7, 0x87, 0xe8, 0x09, 0x3a, 0x9b, 0xfd, 0x12, 0x51, 0x10, 0x97, 0x02, 0x5d, 0x03, 0x54, 0x63, 0x0c, 0x50, 0x3f, 0x2f, 0xd4, 0x6f, 0xfb, 0xa8, 0x29, 0x6d, 0x2d, 0x2f, 0x09, 0xfb, 0x9c, 0xfd, 0x95, 0x15, 0xf7, 0x98, 0xdc, 0xa6, 0x5c, 0xe5, 0xfb, 0x22, 0x55, 0xee, 0x51, 0xdd, 0x1e, 0xd4, 0xa6, 0x6a, 0x5c, 0x9b, 0x7e, 0xc3, 0xab, 0x38, 0xe8, 0x6f, 0x46, 0x90, 0x9f, 0x28, 0xd1, 0xef, 0x8f, 0xf4, 0x7d, 0x4e, 0x29, 0x7a, 0xaa, 0x2e, 0xc6, 0x75, 0x7f, 0x2e, 0x51, 0x28, 0x78, 0xea, 0x5e, 0x38, 0x40, 0x08, 0xe4, 0x12, 0xc5, 0xa2, 0x37, 0x6d, 0xa7, 0x3e, 0xf4, 0xfc, 0xb4, 0xf2, 0xc2, 0xf3, 0xd3, 0x7d, 0xd9, 0xcf, 0x2b, 0x30, 0xce, 0x38, 0x03, 0x81, 0xfb, 0x80, 0xa4, 0xfc, 0x11, 0x3e, 0x67, 0x84, 0x59, 0xe0, 0x6d, 0x0b, 0xde, 0x6f, 0x29, 0x90, 0xee, 0xd2, 0x95, 0xdb, 0x7b, 0x3e, 0x96, 0xca, 0x39, 0xa5, 0xfc, 0xb3, 0xb7, 0xf9, 0x75, 0xe8, 0xdf, 0x68, 0xb4, 0x50, 0x07, 0xaf, 0x04, 0xf8, 0x03, 0x55, 0x99, 0x5f, 0xe6, 0xd0, 0x26, 0x4e, 0xa3, 0xca, 0x09, 0xb4, 0x05, 0x3d, 0x0d, 0xc9, 0x92, 0xe9, 0x9a, 0x44, 0x83, 0x61, 0x6f, 0x7e, 0x35, 0x5d, 0x33, 0x7b, 0x16, 0x86, 0x57, 0xf6, 0xc8, 0x4b, 0x99, 0x3a, 0x79, 0x05, 0x22, 0x56, 0x7f, 0xbc, 0x5e, 0x3d, 0x33, 0xdb, 0x9f, 0xaa, 0x6b, 0x37, 0x95, 0x5c, 0x92, 0xe8, 0xf3, 0x24, 0x8c, 0xae, 0x62, 0xb5, 0x09, 0x4e, 0x80, 0xd1, 0xde, 0x55, 0x6f, 0xf0, 0x52, 0x51, 0xa6, 0xfa, 0x45, 0xd9, 0x71, 0x50, 0x56, 0xc4, 0xd2, 0x29, 0xa8, 0x87, 0xa1, 0xac, 0xcc, 0x26, 0x53, 0xa3, 0xda, 0xf8, 0x6c, 0x32, 0x05, 0xda, 0x08, 0xeb, 0xf7, 0x6f, 0x55, 0xd0, 0x68, 0xa9, 0x53, 0x42, 0x5b, 0x0d, 0xab, 0xe1, 0x76, 0xd7, 0xab, 0x9e, 0xc6, 0xfa, 0xc3, 0x30, 0x88, 0x4d, 0x7a, 0x85, 0xfd, 0x52, 0x19, 0x36, 0xfd, 0x09, 0x56, 0xa2, 0x48, 0x22, 0x58, 0x03, 0x09, 0x1d, 0x1f, 0xa3, 0x5f, 0x01, 0xb5, 0x52, 0x59, 0x61, 0x8b, 0xdb, 0xe2, 0xbe, 0x50, 0xf6, 0xd0, 0x86, 0x7d, 0x63, 0x6d, 0xce, 0xb6, 0x81, 0x05, 0xe8, 0x8b, 0x90, 0xa8, 0xac, 0xb0, 0x82, 0xf7, 0x64, 0x1c, 0x31, 0x46, 0xa2, 0xb2, 0x32, 0xf5, 0x57, 0x0a, 0x8c, 0x08, 0xad, 0x7a, 0x16, 0x86, 0x69, 0x43, 0x60, 0xb8, 0x03, 0x86, 0xd0, 0xc6, 0x75, 0x4e, 0xdc, 0xa6, 0xce, 0x53, 0x79, 0x18, 0x93, 0xda, 0xf5, 0x39, 0xd0, 0x83, 0x4d, 0x4c, 0x09, 0xfa, 0x2b, 0x49, 0x21, 0x94, 0xec, 0x5d, 0x00, 0xbe, 0x5d, 0xbd, 0x1f, 0xf7, 0xa9, 0x94, 0xd7, 0x37, 0xca, 0x25, 0x4d, 0xc9, 0x7e, 0x4d, 0x81, 0x21, 0x56, 0xb6, 0xd6, 0xec, 0x36, 0xd2, 0x0b, 0xa0, 0xe4, 0x59, 0x3c, 0xbc, 0x31, 0xbd, 0x95, 0xbc, 0x7e, 0x1a, 0x94, 0x42, 0x7c, 0x57, 0x2b, 0x05, 0x7d, 0x01, 0x94, 0x22, 0x73, 0x70, 0x3c, 0xcf, 0x28, 0xc5, 0xec, 0x8f, 0x54, 0x98, 0x08, 0x96, 0xd1, 0x7c, 0x3e, 0x39, 0x21, 0xee, 0x9b, 0x72, 0x83, 0x67, 0x16, 0xce, 0x2e, 0xce, 0xe1, 0x7f, 0xbc, 0x90, 0xcc, 0x8a, 0x5b, 0xa8, 0x1c, 0x78, 0x2c, 0x67, 0x7a, 0xbd, 0x13, 0xc9, 0x25, 0x03, 0x12, 0xba, 0xde, 0x89, 0x08, 0xd4, 0xae, 0x77, 0x22, 0x02, 0xb5, 0xeb, 0x9d, 0x88, 0x40, 0xed, 0xba, 0x0b, 0x10, 0xa8, 0x5d, 0xef, 0x44, 0x04, 0x6a, 0xd7, 0x3b, 0x11, 0x81, 0xda, 0xfd, 0x4e, 0x84, 0x91, 0x7b, 0xbe, 0x13, 0x11, 0xe9, 0xdd, 0xef, 0x44, 0x44, 0x7a, 0xf7, 0x3b, 0x91, 0x5c, 0xd2, 0xed, 0xec, 0xa2, 0xde, 0xb7, 0x0e, 0x22, 0x7e, 0xbf, 0x4d, 0xa0, 0x3f, 0x03, 0xaf, 0xc2, 0x18, 0x3d, 0x90, 0x28, 0xda, 0x96, 0x6b, 0x36, 0x2c, 0xd4, 0xd1, 0xdf, 0x09, 0xc3, 0xb4, 0x89, 0x6e, 0x73, 0xc2, 0xb6, 0x81, 0x94, 0xce, 0xe6, 0x5b, 0x81, 0x3b, 0xfb, 0xd3, 0x24, 0x4c, 0xd2, 0x86, 0x8a, 0xd9, 0x42, 0xc2, 0x2b, 0xa3, 0x53, 0xd2, 0x9d, 0xd2, 0x28, 0x86, 0xdf, 0x7a, 0x79, 0x9a, 0xb6, 0xe6, 0xbd, 0x68, 0x3a, 0x25, 0xdd, 0x2e, 0x89, 0x7c, 0xfe, 0x02, 0x74, 0x4a, 0x7a, 0x79, 0x24, 0xf2, 0x79, 0xeb, 0x8d, 0xc7, 0xc7, 0xdf, 0x20, 0x89, 0x7c, 0x25, 0x2f, 0xca, 0x4e, 0x49, 0xaf, 0x91, 0x44, 0xbe, 0xb2, 0x17, 0x6f, 0xa7, 0xa4, 0xbb, 0x27, 0x91, 0xef, 0x8a, 0x17, 0x79, 0xa7, 0xa4, 0x5b, 0x28, 0x91, 0xef, 0xaa, 0x17, 0x83, 0xa7, 0xa4, 0xb7, 0x4a, 0x22, 0xdf, 0x23, 0x5e, 0x34, 0x9e, 0x92, 0x5e, 0x2d, 0x89, 0x7c, 0x4b, 0x5e, 0x5c, 0xce, 0xc8, 0xef, 0x97, 0x44, 0xc6, 0x6b, 0x7e, 0x84, 0xce, 0xc8, 0x2f, 0x99, 0x44, 0xce, 0x77, 0xf9, 0xb1, 0x3a, 0x23, 0xbf, 0x69, 0x12, 0x39, 0x97, 0xfd, 0xa8, 0x9d, 0x91, 0xef, 0xca, 0x44, 0xce, 0x15, 0x3f, 0x7e, 0x67, 0xe4, 0x5b, 0x33, 0x91, 0xb3, 0xe2, 0x47, 0xf2, 0x8c, 0x7c, 0x7f, 0x26, 0x72, 0xae, 0xfa, 0x87, 0xe8, 0xdf, 0x94, 0xc2, 0x2f, 0xf0, 0x0a, 0x2a, 0x2b, 0x85, 0x1f, 0x84, 0x84, 0x9e, 0x34, 0x91, 0x05, 0x78, 0xfc, 0xb0, 0xcb, 0x4a, 0x61, 0x07, 0x21, 0x21, 0x97, 0x95, 0x42, 0x0e, 0x42, 0xc2, 0x2d, 0x2b, 0x85, 0x1b, 0x84, 0x84, 0x5a, 0x56, 0x0a, 0x35, 0x08, 0x09, 0xb3, 0xac, 0x14, 0x66, 0x10, 0x12, 0x62, 0x59, 0x29, 0xc4, 0x20, 0x24, 0xbc, 0xb2, 0x52, 0x78, 0x41, 0x48, 0x68, 0x9d, 0x94, 0x43, 0x0b, 0xc2, 0xc2, 0xea, 0xa4, 0x1c, 0x56, 0x10, 0x16, 0x52, 0x77, 0xcb, 0x21, 0x35, 0x78, 0xeb, 0xe5, 0xe9, 0x7e, 0xdc, 0x14, 0x88, 0xa6, 0x93, 0x72, 0x34, 0x41, 0x58, 0x24, 0x9d, 0x94, 0x23, 0x09, 0xc2, 0xa2, 0xe8, 0xa4, 0x1c, 0x45, 0x10, 0x16, 0x41, 0x2f, 0xca, 0x11, 0xe4, 0xbf, 0xf1, 0xc9, 0x4a, 0x57, 0x8a, 0x51, 0x11, 0xa4, 0xc6, 0x88, 0x20, 0x35, 0x46, 0x04, 0xa9, 0x31, 0x22, 0x48, 0x8d, 0x11, 0x41, 0x6a, 0x8c, 0x08, 0x52, 0x63, 0x44, 0x90, 0x1a, 0x23, 0x82, 0xd4, 0x38, 0x11, 0xa4, 0xc6, 0x8a, 0x20, 0xb5, 0x57, 0x04, 0x9d, 0x94, 0x5f, 0x3c, 0x40, 0xd8, 0x84, 0x74, 0x52, 0xbe, 0xfa, 0x8c, 0x0e, 0x21, 0x35, 0x56, 0x08, 0xa9, 0xbd, 0x42, 0xe8, 0x9b, 0x2a, 0x4c, 0x08, 0x21, 0xc4, 0xee, 0x87, 0xde, 0xac, 0x19, 0xe8, 0x7c, 0x8c, 0x07, 0x16, 0x61, 0x31, 0x75, 0x3e, 0xc6, 0x25, 0xf5, 0x7e, 0x71, 0xd6, 0x3d, 0x0b, 0x95, 0x63, 0xcc, 0x42, 0x57, 0xbc, 0x18, 0x3a, 0x1f, 0xe3, 0xe1, 0x45, 0x77, 0xec, 0x5d, 0xdc, 0x6f, 0x12, 0x78, 0x24, 0xd6, 0x24, 0xb0, 0x14, 0x6b, 0x12, 0xb8, 0xe6, 0x7b, 0xf0, 0x83, 0x09, 0x38, 0xec, 0x7b, 0x90, 0x7e, 0x22, 0x3f, 0x85, 0x94, 0x0d, 0x5c, 0x51, 0xe9, 0xfc, 0xda, 0x26, 0xe0, 0xc6, 0xc4, 0x52, 0x5d, 0x5f, 0x13, 0x2f, 0xab, 0x72, 0x07, 0xbd, 0xc0, 0x09, 0x78, 0x9c, 0x1d, 0x86, 0x9e, 0x04, 0x75, 0xa9, 0xee, 0x90, 0xd9, 0x22, 0xac, 0xdb, 0xa2, 0x81, 0xc9, 0xba, 0x01, 0x03, 0x84, 0xdd, 0x21, 0xee, 0xbd, 0x9d, 0x8e, 0x4b, 0x06, 0x93, 0x94, 0x7d, 0x51, 0x81, 0xe3, 0x42, 0x28, 0xbf, 0x39, 0x57, 0x06, 0x97, 0x63, 0x5d, 0x19, 0x08, 0x09, 0xe2, 0x5f, 0x1f, 0xdc, 0xdb, 0x7d, 0x53, 0x1d, 0xcc, 0x12, 0xf9, 0x2a, 0xe1, 0xff, 0xc1, 0xa8, 0x3f, 0x02, 0xb2, 0x67, 0x3b, 0x17, 0x7d, 0x9a, 0x19, 0x96, 0x9a, 0xe7, 0xa4, 0x53, 0xb4, 0x7d, 0x61, 0x5e, 0xb6, 0x66, 0x73, 0x30, 0x56, 0x11, 0xff, 0x66, 0x27, 0xea, 0x30, 0x22, 0x85, 0x4b, 0xf3, 0x9b, 0x9f, 0x9e, 0xee, 0xcb, 0xde, 0x0f, 0xc3, 0xc1, 0x3f, 0xcb, 0x91, 0x80, 0x83, 0x1c, 0x98, 0x4b, 0xbe, 0x84, 0xb9, 0x7f, 0x47, 0x81, 0x23, 0x41, 0xf6, 0x47, 0x1b, 0xee, 0xce, 0x92, 0x85, 0x6b, 0xfa, 0x07, 0x21, 0x85, 0x98, 0xe3, 0xd8, 0xaf, 0x9a, 0xb0, 0x7d, 0x64, 0x28, 0xfb, 0x1c, 0xf9, 0xd7, 0xf0, 0x20, 0xd2, 0x29, 0x08, 0xef, 0x76, 0x61, 0xea, 0x1e, 0xe8, 0xa7, 0xf2, 0x45, 0xbd, 0x46, 0x24, 0xbd, 0x3e, 0x1b, 0xa2, 0x17, 0x89, 0x23, 0xfd, 0x9a, 0xa0, 0x57, 0x60, 0xbb, 0x1a, 0xca, 0x3e, 0xc7, 0x83, 0xaf, 0x90, 0xc2, 0xf5, 0x1f, 0x89, 0xa8, 0x68, 0x25, 0x67, 0x20, 0x55, 0x96, 0x79, 0xc2, 0xf5, 0x2c, 0x41, 0xb2, 0x62, 0xd7, 0xc9, 0xef, 0xad, 0x90, 0xdf, 0xe7, 0x65, 0x46, 0x66, 0x3f, 0xd6, 0x7b, 0x0a, 0x52, 0xc5, 0x9d, 0x46, 0xb3, 0xde, 0x41, 0x16, 0xbb, 0xb3, 0x67, 0x47, 0xe8, 0x18, 0x63, 0x78, 0xb4, 0x6c, 0x11, 0xc6, 0x2b, 0xb6, 0x55, 0xd8, 0x73, 0x83, 0xf3, 0xc6, 0x9c, 0x94, 0x22, 0xec, 0xce, 0x87, 0xfc, 0xa1, 0x07, 0x66, 0x28, 0xf4, 0x7f, 0xe7, 0xe5, 0x69, 0x65, 0xc3, 0x3b, 0x3f, 0x5f, 0x81, 0xa3, 0x2c, 0x7d, 0xba, 0x44, 0x2d, 0x44, 0x89, 0x1a, 0x64, 0xf7, 0xd4, 0x01, 0x71, 0x4b, 0x58, 0x9c, 0x15, 0x2a, 0xee, 0x8d, 0x69, 0x86, 0x8b, 0xa2, 0x7d, 0x35, 0x53, 0x0f, 0xa4, 0x59, 0xa8, 0xb8, 0xb9, 0x28, 0x71, 0x92, 0x66, 0x77, 0xc3, 0xa0, 0x47, 0x0b, 0x44, 0x43, 0x30, 0x53, 0x16, 0x66, 0xb3, 0x30, 0x14, 0x48, 0x58, 0xbd, 0x1f, 0x94, 0xbc, 0xd6, 0x87, 0xff, 0x2b, 0x68, 0x0a, 0xfe, 0xaf, 0xa8, 0x25, 0x66, 0xef, 0x81, 0x31, 0xe9, 0xfc, 0x12, 0x53, 0x4a, 0x1a, 0xe0, 0xff, 0xca, 0xda, 0xd0, 0x54, 0xf2, 0x43, 0xbf, 0x9f, 0xe9, 0x9b, 0xbd, 0x0c, 0x7a, 0xf7, 0x49, 0xa7, 0x3e, 0x00, 0x89, 0x3c, 0x16, 0x79, 0x14, 0x12, 0x85, 0x82, 0xa6, 0x4c, 0x8d, 0xfd, 0xf2, 0x27, 0x8f, 0x0f, 0x15, 0xc8, 0xdf, 0x1c, 0x5f, 0x47, 0x6e, 0xa1, 0xc0, 0xc0, 0x0f, 0xc1, 0x91, 0xd0, 0x93, 0x52, 0x8c, 0x2f, 0x16, 0x29, 0xbe, 0x54, 0xea, 0xc2, 0x97, 0x4a, 0x04, 0xaf, 0xe4, 0xf8, 0x8d, 0x73, 0x5e, 0x0f, 0x39, 0x65, 0x4c, 0xd7, 0x03, 0x37, 0xdc, 0xf9, 0xdc, 0x43, 0x8c, 0xb7, 0x10, 0xca, 0x8b, 0x22, 0x6e, 0xac, 0x0b, 0xb9, 0x22, 0xc3, 0x17, 0x43, 0xf1, 0x5b, 0xd2, 0xb5, 0xaa, 0xb8, 0x42, 0x30, 0x21, 0x45, 0x4f, 0xe1, 0x52, 0xa8, 0x90, 0x9d, 0xc0, 0x63, 0xf7, 0x92, 0xa7, 0x70, 0x39, 0x94, 0xb7, 0x11, 0xf1, 0xe8, 0xab, 0x9c, 0x3b, 0xcd, 0x16, 0xf9, 0xfc, 0x19, 0xfd, 0x08, 0xcf, 0x51, 0x61, 0x06, 0x66, 0x06, 0xe2, 0x5c, 0xb9, 0x22, 0x03, 0x14, 0x7a, 0x02, 0x7a, 0x5b, 0x89, 0x23, 0x73, 0x8f, 0x30, 0x21, 0xc5, 0x9e, 0x42, 0x22, 0x4c, 0xc5, 0xe1, 0x85, 0x8d, 0x9b, 0xaf, 0x64, 0xfa, 0x5e, 0x7a, 0x25, 0xd3, 0xf7, 0x8f, 0xaf, 0x64, 0xfa, 0xbe, 0xfb, 0x4a, 0x46, 0xf9, 0xc1, 0x2b, 0x19, 0xe5, 0x87, 0xaf, 0x64, 0x94, 0x9f, 0xbc, 0x92, 0x51, 0x9e, 0xbd, 0x95, 0x51, 0x5e, 0xb8, 0x95, 0x51, 0xbe, 0x74, 0x2b, 0xa3, 0x7c, 0xfd, 0x56, 0x46, 0x79, 0xf1, 0x56, 0x46, 0xb9, 0x79, 0x2b, 0xa3, 0xbc, 0x74, 0x2b, 0xd3, 0xf7, 0xdd, 0x5b, 0x19, 0xe5, 0x07, 0xb7, 0x32, 0x7d, 0x3f, 0xbc, 0x95, 0x51, 0x7e, 0x72, 0x2b, 0xd3, 0xf7, 0xec, 0xf7, 0x32, 0x7d, 0xcf, 0x7f, 0x2f, 0xd3, 0xf7, 0xc2, 0xf7, 0x32, 0xca, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd3, 0xb4, 0xc9, 0xc8, 0xf3, 0x65, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x TheTestEnum) String() string { s, ok := TheTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x AnotherTestEnum) String() string { s, ok := AnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x YetAnotherTestEnum) String() string { s, ok := YetAnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x YetYetAnotherTestEnum) String() string { s, ok := YetYetAnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x NestedDefinition_NestedEnum) String() string { s, ok := NestedDefinition_NestedEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *NidOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptNative but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if this.Field2 != that1.Field2 { return false } if this.Field3 != that1.Field3 { return false } if this.Field4 != that1.Field4 { return false } if this.Field5 != that1.Field5 { return false } if this.Field6 != that1.Field6 { return false } if this.Field7 != that1.Field7 { return false } if this.Field8 != that1.Field8 { return false } if this.Field9 != that1.Field9 { return false } if this.Field10 != that1.Field10 { return false } if this.Field11 != that1.Field11 { return false } if this.Field12 != that1.Field12 { return false } if this.Field13 != that1.Field13 { return false } if this.Field14 != that1.Field14 { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNative but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", *this.Field8, *that1.Field8) } } else if this.Field8 != nil { return fmt.Errorf("this.Field8 == nil && that.Field8 != nil") } else if that1.Field8 != nil { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", *this.Field9, *that1.Field9) } } else if this.Field9 != nil { return fmt.Errorf("this.Field9 == nil && that.Field9 != nil") } else if that1.Field9 != nil { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", *this.Field10, *that1.Field10) } } else if this.Field10 != nil { return fmt.Errorf("this.Field10 == nil && that.Field10 != nil") } else if that1.Field10 != nil { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", *this.Field11, *that1.Field11) } } else if this.Field11 != nil { return fmt.Errorf("this.Field11 == nil && that.Field11 != nil") } else if that1.Field11 != nil { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", *this.Field12, *that1.Field12) } } else if this.Field12 != nil { return fmt.Errorf("this.Field12 == nil && that.Field12 != nil") } else if that1.Field12 != nil { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return false } } else if this.Field8 != nil { return false } else if that1.Field8 != nil { return false } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return false } } else if this.Field9 != nil { return false } else if that1.Field9 != nil { return false } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return false } } else if this.Field10 != nil { return false } else if that1.Field10 != nil { return false } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return false } } else if this.Field11 != nil { return false } else if that1.Field11 != nil { return false } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return false } } else if this.Field12 != nil { return false } else if that1.Field12 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepPackedNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepPackedNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepPackedNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepPackedNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepPackedNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepPackedNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepPackedNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepPackedNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepPackedNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepPackedNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptStruct but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(&that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(&that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if !this.Field8.Equal(&that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if this.Field2 != that1.Field2 { return false } if !this.Field3.Equal(&that1.Field3) { return false } if !this.Field4.Equal(&that1.Field4) { return false } if this.Field6 != that1.Field6 { return false } if this.Field7 != that1.Field7 { return false } if !this.Field8.Equal(&that1.Field8) { return false } if this.Field13 != that1.Field13 { return false } if this.Field14 != that1.Field14 { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptStruct but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if !this.Field8.Equal(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !this.Field3.Equal(that1.Field3) { return false } if !this.Field4.Equal(that1.Field4) { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if !this.Field8.Equal(that1.Field8) { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepStruct but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if !this.Field3[i].Equal(&that1.Field3[i]) { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if !this.Field4[i].Equal(&that1.Field4[i]) { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if !this.Field8[i].Equal(&that1.Field8[i]) { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if !this.Field3[i].Equal(&that1.Field3[i]) { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if !this.Field4[i].Equal(&that1.Field4[i]) { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if !this.Field8[i].Equal(&that1.Field8[i]) { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepStruct but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if !this.Field3[i].Equal(that1.Field3[i]) { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if !this.Field4[i].Equal(that1.Field4[i]) { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if !this.Field8[i].Equal(that1.Field8[i]) { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if !this.Field3[i].Equal(that1.Field3[i]) { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if !this.Field4[i].Equal(that1.Field4[i]) { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if !this.Field8[i].Equal(that1.Field8[i]) { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidEmbeddedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidEmbeddedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidEmbeddedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidEmbeddedStruct but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(&that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidEmbeddedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(&that1.Field200) { return false } if this.Field210 != that1.Field210 { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinEmbeddedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinEmbeddedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinEmbeddedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinEmbeddedStruct but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", *this.Field210, *that1.Field210) } } else if this.Field210 != nil { return fmt.Errorf("this.Field210 == nil && that.Field210 != nil") } else if that1.Field210 != nil { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinEmbeddedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(that1.Field200) { return false } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return false } } else if this.Field210 != nil { return false } else if that1.Field210 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidNestedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidNestedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidNestedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidNestedStruct but is not nil && this == nil") } if !this.Field1.Equal(&that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if !this.Field2[i].Equal(&that1.Field2[i]) { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidNestedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(&that1.Field1) { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if !this.Field2[i].Equal(&that1.Field2[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinNestedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinNestedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinNestedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinNestedStruct but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if !this.Field2[i].Equal(that1.Field2[i]) { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinNestedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if !this.Field2[i].Equal(that1.Field2[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptCustom but is not nil && this == nil") } if !this.Id.Equal(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id) } if !this.Value.Equal(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Id.Equal(that1.Id) { return false } if !this.Value.Equal(that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomDash) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomDash") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomDash but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomDash but is not nil && this == nil") } if that1.Value == nil { if this.Value != nil { return fmt.Errorf("this.Value != nil && that1.Value == nil") } } else if !this.Value.Equal(*that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomDash) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Value == nil { if this.Value != nil { return false } } else if !this.Value.Equal(*that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptCustom but is not nil && this == nil") } if that1.Id == nil { if this.Id != nil { return fmt.Errorf("this.Id != nil && that1.Id == nil") } } else if !this.Id.Equal(*that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id) } if that1.Value == nil { if this.Value != nil { return fmt.Errorf("this.Value != nil && that1.Value == nil") } } else if !this.Value.Equal(*that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Id == nil { if this.Id != nil { return false } } else if !this.Id.Equal(*that1.Id) { return false } if that1.Value == nil { if this.Value != nil { return false } } else if !this.Value.Equal(*that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepCustom but is not nil && this == nil") } if len(this.Id) != len(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", len(this.Id), len(that1.Id)) } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return fmt.Errorf("Id this[%v](%v) Not Equal that[%v](%v)", i, this.Id[i], i, that1.Id[i]) } } if len(this.Value) != len(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", len(this.Value), len(that1.Value)) } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return fmt.Errorf("Value this[%v](%v) Not Equal that[%v](%v)", i, this.Value[i], i, that1.Value[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Id) != len(that1.Id) { return false } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return false } } if len(this.Value) != len(that1.Value) { return false } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepCustom but is not nil && this == nil") } if len(this.Id) != len(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", len(this.Id), len(that1.Id)) } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return fmt.Errorf("Id this[%v](%v) Not Equal that[%v](%v)", i, this.Id[i], i, that1.Id[i]) } } if len(this.Value) != len(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", len(this.Value), len(that1.Value)) } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return fmt.Errorf("Value this[%v](%v) Not Equal that[%v](%v)", i, this.Value[i], i, that1.Value[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Id) != len(that1.Id) { return false } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return false } } if len(this.Value) != len(that1.Value) { return false } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNativeUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNativeUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNativeUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNativeUnion but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNativeUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptStructUnion but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !this.Field3.Equal(that1.Field3) { return false } if !this.Field4.Equal(that1.Field4) { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinEmbeddedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinEmbeddedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinEmbeddedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinEmbeddedStructUnion but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", *this.Field210, *that1.Field210) } } else if this.Field210 != nil { return fmt.Errorf("this.Field210 == nil && that.Field210 != nil") } else if that1.Field210 != nil { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinEmbeddedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(that1.Field200) { return false } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return false } } else if this.Field210 != nil { return false } else if that1.Field210 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinNestedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinNestedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinNestedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinNestedStructUnion but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !this.Field2.Equal(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinNestedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if !this.Field2.Equal(that1.Field2) { return false } if !this.Field3.Equal(that1.Field3) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Tree) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Tree") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Tree but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Tree but is not nil && this == nil") } if !this.Or.Equal(that1.Or) { return fmt.Errorf("Or this(%v) Not Equal that(%v)", this.Or, that1.Or) } if !this.And.Equal(that1.And) { return fmt.Errorf("And this(%v) Not Equal that(%v)", this.And, that1.And) } if !this.Leaf.Equal(that1.Leaf) { return fmt.Errorf("Leaf this(%v) Not Equal that(%v)", this.Leaf, that1.Leaf) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Tree) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Or.Equal(that1.Or) { return false } if !this.And.Equal(that1.And) { return false } if !this.Leaf.Equal(that1.Leaf) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OrBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OrBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OrBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OrBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OrBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AndBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AndBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AndBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AndBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AndBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Leaf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Leaf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Leaf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Leaf but is not nil && this == nil") } if this.Value != that1.Value { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if this.StrValue != that1.StrValue { return fmt.Errorf("StrValue this(%v) Not Equal that(%v)", this.StrValue, that1.StrValue) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Leaf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } if this.StrValue != that1.StrValue { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *DeepTree) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DeepTree") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DeepTree but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DeepTree but is not nil && this == nil") } if !this.Down.Equal(that1.Down) { return fmt.Errorf("Down this(%v) Not Equal that(%v)", this.Down, that1.Down) } if !this.And.Equal(that1.And) { return fmt.Errorf("And this(%v) Not Equal that(%v)", this.And, that1.And) } if !this.Leaf.Equal(that1.Leaf) { return fmt.Errorf("Leaf this(%v) Not Equal that(%v)", this.Leaf, that1.Leaf) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *DeepTree) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Down.Equal(that1.Down) { return false } if !this.And.Equal(that1.And) { return false } if !this.Leaf.Equal(that1.Leaf) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *ADeepBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ADeepBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ADeepBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ADeepBranch but is not nil && this == nil") } if !this.Down.Equal(&that1.Down) { return fmt.Errorf("Down this(%v) Not Equal that(%v)", this.Down, that1.Down) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *ADeepBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Down.Equal(&that1.Down) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AndDeepBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AndDeepBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AndDeepBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AndDeepBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AndDeepBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *DeepLeaf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DeepLeaf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DeepLeaf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DeepLeaf but is not nil && this == nil") } if !this.Tree.Equal(&that1.Tree) { return fmt.Errorf("Tree this(%v) Not Equal that(%v)", this.Tree, that1.Tree) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *DeepLeaf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Tree.Equal(&that1.Tree) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Nil) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Nil") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Nil but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Nil but is not nil && this == nil") } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Nil) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptEnum but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptEnum but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptEnumDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptEnumDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptEnumDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptEnumDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptEnumDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AnotherNinOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AnotherNinOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AnotherNinOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AnotherNinOptEnum but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AnotherNinOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AnotherNinOptEnumDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AnotherNinOptEnumDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AnotherNinOptEnumDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AnotherNinOptEnumDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AnotherNinOptEnumDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Timer) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Timer") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Timer but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Timer but is not nil && this == nil") } if this.Time1 != that1.Time1 { return fmt.Errorf("Time1 this(%v) Not Equal that(%v)", this.Time1, that1.Time1) } if this.Time2 != that1.Time2 { return fmt.Errorf("Time2 this(%v) Not Equal that(%v)", this.Time2, that1.Time2) } if !bytes.Equal(this.Data, that1.Data) { return fmt.Errorf("Data this(%v) Not Equal that(%v)", this.Data, that1.Data) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Timer) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Time1 != that1.Time1 { return false } if this.Time2 != that1.Time2 { return false } if !bytes.Equal(this.Data, that1.Data) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *MyExtendable) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MyExtendable") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MyExtendable but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MyExtendable but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return fmt.Errorf("XXX_InternalExtensions this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k]) } } else { return fmt.Errorf("XXX_InternalExtensions[%v] Not In that", k) } } for k := range thatmap { if _, ok := thismap[k]; !ok { return fmt.Errorf("XXX_InternalExtensions[%v] Not In this", k) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *MyExtendable) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return false } } else { return false } } for k := range thatmap { if _, ok := thismap[k]; !ok { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OtherExtenable) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OtherExtenable") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OtherExtenable but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OtherExtenable but is not nil && this == nil") } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if !this.M.Equal(that1.M) { return fmt.Errorf("M this(%v) Not Equal that(%v)", this.M, that1.M) } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return fmt.Errorf("XXX_InternalExtensions this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k]) } } else { return fmt.Errorf("XXX_InternalExtensions[%v] Not In that", k) } } for k := range thatmap { if _, ok := thismap[k]; !ok { return fmt.Errorf("XXX_InternalExtensions[%v] Not In this", k) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OtherExtenable) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if !this.M.Equal(that1.M) { return false } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return false } } else { return false } } for k := range thatmap { if _, ok := thismap[k]; !ok { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { return fmt.Errorf("EnumField this(%v) Not Equal that(%v)", *this.EnumField, *that1.EnumField) } } else if this.EnumField != nil { return fmt.Errorf("this.EnumField == nil && that.EnumField != nil") } else if that1.EnumField != nil { return fmt.Errorf("EnumField this(%v) Not Equal that(%v)", this.EnumField, that1.EnumField) } if !this.NNM.Equal(that1.NNM) { return fmt.Errorf("NNM this(%v) Not Equal that(%v)", this.NNM, that1.NNM) } if !this.NM.Equal(that1.NM) { return fmt.Errorf("NM this(%v) Not Equal that(%v)", this.NM, that1.NM) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { return false } } else if this.EnumField != nil { return false } else if that1.EnumField != nil { return false } if !this.NNM.Equal(that1.NNM) { return false } if !this.NM.Equal(that1.NM) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition_NestedMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition_NestedMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition_NestedMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition_NestedMessage but is not nil && this == nil") } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { return fmt.Errorf("NestedField1 this(%v) Not Equal that(%v)", *this.NestedField1, *that1.NestedField1) } } else if this.NestedField1 != nil { return fmt.Errorf("this.NestedField1 == nil && that.NestedField1 != nil") } else if that1.NestedField1 != nil { return fmt.Errorf("NestedField1 this(%v) Not Equal that(%v)", this.NestedField1, that1.NestedField1) } if !this.NNM.Equal(that1.NNM) { return fmt.Errorf("NNM this(%v) Not Equal that(%v)", this.NNM, that1.NNM) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition_NestedMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { return false } } else if this.NestedField1 != nil { return false } else if that1.NestedField1 != nil { return false } if !this.NNM.Equal(that1.NNM) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition_NestedMessage_NestedNestedMsg") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition_NestedMessage_NestedNestedMsg but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition_NestedMessage_NestedNestedMsg but is not nil && this == nil") } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { return fmt.Errorf("NestedNestedField1 this(%v) Not Equal that(%v)", *this.NestedNestedField1, *that1.NestedNestedField1) } } else if this.NestedNestedField1 != nil { return fmt.Errorf("this.NestedNestedField1 == nil && that.NestedNestedField1 != nil") } else if that1.NestedNestedField1 != nil { return fmt.Errorf("NestedNestedField1 this(%v) Not Equal that(%v)", this.NestedNestedField1, that1.NestedNestedField1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { return false } } else if this.NestedNestedField1 != nil { return false } else if that1.NestedNestedField1 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedScope) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedScope") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedScope but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedScope but is not nil && this == nil") } if !this.A.Equal(that1.A) { return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A) } if this.B != nil && that1.B != nil { if *this.B != *that1.B { return fmt.Errorf("B this(%v) Not Equal that(%v)", *this.B, *that1.B) } } else if this.B != nil { return fmt.Errorf("this.B == nil && that.B != nil") } else if that1.B != nil { return fmt.Errorf("B this(%v) Not Equal that(%v)", this.B, that1.B) } if !this.C.Equal(that1.C) { return fmt.Errorf("C this(%v) Not Equal that(%v)", this.C, that1.C) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedScope) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.A.Equal(that1.A) { return false } if this.B != nil && that1.B != nil { if *this.B != *that1.B { return false } } else if this.B != nil { return false } else if that1.B != nil { return false } if !this.C.Equal(that1.C) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNativeDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNativeDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNativeDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNativeDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", *this.Field8, *that1.Field8) } } else if this.Field8 != nil { return fmt.Errorf("this.Field8 == nil && that.Field8 != nil") } else if that1.Field8 != nil { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", *this.Field9, *that1.Field9) } } else if this.Field9 != nil { return fmt.Errorf("this.Field9 == nil && that.Field9 != nil") } else if that1.Field9 != nil { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", *this.Field10, *that1.Field10) } } else if this.Field10 != nil { return fmt.Errorf("this.Field10 == nil && that.Field10 != nil") } else if that1.Field10 != nil { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", *this.Field11, *that1.Field11) } } else if this.Field11 != nil { return fmt.Errorf("this.Field11 == nil && that.Field11 != nil") } else if that1.Field11 != nil { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", *this.Field12, *that1.Field12) } } else if this.Field12 != nil { return fmt.Errorf("this.Field12 == nil && that.Field12 != nil") } else if that1.Field12 != nil { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNativeDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return false } } else if this.Field8 != nil { return false } else if that1.Field8 != nil { return false } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return false } } else if this.Field9 != nil { return false } else if that1.Field9 != nil { return false } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return false } } else if this.Field10 != nil { return false } else if that1.Field10 != nil { return false } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return false } } else if this.Field11 != nil { return false } else if that1.Field11 != nil { return false } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return false } } else if this.Field12 != nil { return false } else if that1.Field12 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomContainer) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomContainer") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomContainer but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomContainer but is not nil && this == nil") } if !this.CustomStruct.Equal(&that1.CustomStruct) { return fmt.Errorf("CustomStruct this(%v) Not Equal that(%v)", this.CustomStruct, that1.CustomStruct) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomContainer) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.CustomStruct.Equal(&that1.CustomStruct) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNidOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNidOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNidOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNidOptNative but is not nil && this == nil") } if this.FieldA != that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if this.FieldC != that1.FieldC { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if this.FieldD != that1.FieldD { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", this.FieldD, that1.FieldD) } if this.FieldE != that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if this.FieldG != that1.FieldG { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if this.FieldJ != that1.FieldJ { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if this.FieldK != that1.FieldK { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", this.FieldK, that1.FieldK) } if this.FieldL != that1.FieldL { return fmt.Errorf("FieldL this(%v) Not Equal that(%v)", this.FieldL, that1.FieldL) } if this.FieldM != that1.FieldM { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", this.FieldM, that1.FieldM) } if this.FieldN != that1.FieldN { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", this.FieldN, that1.FieldN) } if !bytes.Equal(this.FieldO, that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", this.FieldO, that1.FieldO) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNidOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != that1.FieldA { return false } if this.FieldB != that1.FieldB { return false } if this.FieldC != that1.FieldC { return false } if this.FieldD != that1.FieldD { return false } if this.FieldE != that1.FieldE { return false } if this.FieldF != that1.FieldF { return false } if this.FieldG != that1.FieldG { return false } if this.FieldH != that1.FieldH { return false } if this.FieldI != that1.FieldI { return false } if this.FieldJ != that1.FieldJ { return false } if this.FieldK != that1.FieldK { return false } if this.FieldL != that1.FieldL { return false } if this.FieldM != that1.FieldM { return false } if this.FieldN != that1.FieldN { return false } if !bytes.Equal(this.FieldO, that1.FieldO) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinOptNative but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", *this.FieldC, *that1.FieldC) } } else if this.FieldC != nil { return fmt.Errorf("this.FieldC == nil && that.FieldC != nil") } else if that1.FieldC != nil { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", *this.FieldD, *that1.FieldD) } } else if this.FieldD != nil { return fmt.Errorf("this.FieldD == nil && that.FieldD != nil") } else if that1.FieldD != nil { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", this.FieldD, that1.FieldD) } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", *this.FieldE, *that1.FieldE) } } else if this.FieldE != nil { return fmt.Errorf("this.FieldE == nil && that.FieldE != nil") } else if that1.FieldE != nil { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", *this.FieldF, *that1.FieldF) } } else if this.FieldF != nil { return fmt.Errorf("this.FieldF == nil && that.FieldF != nil") } else if that1.FieldF != nil { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", *this.FieldG, *that1.FieldG) } } else if this.FieldG != nil { return fmt.Errorf("this.FieldG == nil && that.FieldG != nil") } else if that1.FieldG != nil { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", *this.FieldH, *that1.FieldH) } } else if this.FieldH != nil { return fmt.Errorf("this.FieldH == nil && that.FieldH != nil") } else if that1.FieldH != nil { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", *this.FieldI, *that1.FieldI) } } else if this.FieldI != nil { return fmt.Errorf("this.FieldI == nil && that.FieldI != nil") } else if that1.FieldI != nil { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", *this.FieldJ, *that1.FieldJ) } } else if this.FieldJ != nil { return fmt.Errorf("this.FieldJ == nil && that.FieldJ != nil") } else if that1.FieldJ != nil { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", *this.FieldK, *that1.FieldK) } } else if this.FieldK != nil { return fmt.Errorf("this.FieldK == nil && that.FieldK != nil") } else if that1.FieldK != nil { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", this.FieldK, that1.FieldK) } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { return fmt.Errorf("FielL this(%v) Not Equal that(%v)", *this.FielL, *that1.FielL) } } else if this.FielL != nil { return fmt.Errorf("this.FielL == nil && that.FielL != nil") } else if that1.FielL != nil { return fmt.Errorf("FielL this(%v) Not Equal that(%v)", this.FielL, that1.FielL) } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", *this.FieldM, *that1.FieldM) } } else if this.FieldM != nil { return fmt.Errorf("this.FieldM == nil && that.FieldM != nil") } else if that1.FieldM != nil { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", this.FieldM, that1.FieldM) } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", *this.FieldN, *that1.FieldN) } } else if this.FieldN != nil { return fmt.Errorf("this.FieldN == nil && that.FieldN != nil") } else if that1.FieldN != nil { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", this.FieldN, that1.FieldN) } if !bytes.Equal(this.FieldO, that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", this.FieldO, that1.FieldO) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { return false } } else if this.FieldC != nil { return false } else if that1.FieldC != nil { return false } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { return false } } else if this.FieldD != nil { return false } else if that1.FieldD != nil { return false } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return false } } else if this.FieldE != nil { return false } else if that1.FieldE != nil { return false } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return false } } else if this.FieldF != nil { return false } else if that1.FieldF != nil { return false } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { return false } } else if this.FieldG != nil { return false } else if that1.FieldG != nil { return false } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return false } } else if this.FieldH != nil { return false } else if that1.FieldH != nil { return false } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return false } } else if this.FieldI != nil { return false } else if that1.FieldI != nil { return false } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { return false } } else if this.FieldJ != nil { return false } else if that1.FieldJ != nil { return false } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { return false } } else if this.FieldK != nil { return false } else if that1.FieldK != nil { return false } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { return false } } else if this.FielL != nil { return false } else if that1.FielL != nil { return false } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { return false } } else if this.FieldM != nil { return false } else if that1.FieldM != nil { return false } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { return false } } else if this.FieldN != nil { return false } else if that1.FieldN != nil { return false } if !bytes.Equal(this.FieldO, that1.FieldO) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinRepNative but is not nil && this == nil") } if len(this.FieldA) != len(that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", len(this.FieldA), len(that1.FieldA)) } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { return fmt.Errorf("FieldA this[%v](%v) Not Equal that[%v](%v)", i, this.FieldA[i], i, that1.FieldA[i]) } } if len(this.FieldB) != len(that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", len(this.FieldB), len(that1.FieldB)) } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return fmt.Errorf("FieldB this[%v](%v) Not Equal that[%v](%v)", i, this.FieldB[i], i, that1.FieldB[i]) } } if len(this.FieldC) != len(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", len(this.FieldC), len(that1.FieldC)) } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { return fmt.Errorf("FieldC this[%v](%v) Not Equal that[%v](%v)", i, this.FieldC[i], i, that1.FieldC[i]) } } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if len(this.FieldE) != len(that1.FieldE) { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", len(this.FieldE), len(that1.FieldE)) } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { return fmt.Errorf("FieldE this[%v](%v) Not Equal that[%v](%v)", i, this.FieldE[i], i, that1.FieldE[i]) } } if len(this.FieldF) != len(that1.FieldF) { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", len(this.FieldF), len(that1.FieldF)) } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { return fmt.Errorf("FieldF this[%v](%v) Not Equal that[%v](%v)", i, this.FieldF[i], i, that1.FieldF[i]) } } if len(this.FieldG) != len(that1.FieldG) { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", len(this.FieldG), len(that1.FieldG)) } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { return fmt.Errorf("FieldG this[%v](%v) Not Equal that[%v](%v)", i, this.FieldG[i], i, that1.FieldG[i]) } } if len(this.FieldH) != len(that1.FieldH) { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", len(this.FieldH), len(that1.FieldH)) } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { return fmt.Errorf("FieldH this[%v](%v) Not Equal that[%v](%v)", i, this.FieldH[i], i, that1.FieldH[i]) } } if len(this.FieldI) != len(that1.FieldI) { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", len(this.FieldI), len(that1.FieldI)) } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { return fmt.Errorf("FieldI this[%v](%v) Not Equal that[%v](%v)", i, this.FieldI[i], i, that1.FieldI[i]) } } if len(this.FieldJ) != len(that1.FieldJ) { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", len(this.FieldJ), len(that1.FieldJ)) } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { return fmt.Errorf("FieldJ this[%v](%v) Not Equal that[%v](%v)", i, this.FieldJ[i], i, that1.FieldJ[i]) } } if len(this.FieldK) != len(that1.FieldK) { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", len(this.FieldK), len(that1.FieldK)) } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { return fmt.Errorf("FieldK this[%v](%v) Not Equal that[%v](%v)", i, this.FieldK[i], i, that1.FieldK[i]) } } if len(this.FieldL) != len(that1.FieldL) { return fmt.Errorf("FieldL this(%v) Not Equal that(%v)", len(this.FieldL), len(that1.FieldL)) } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { return fmt.Errorf("FieldL this[%v](%v) Not Equal that[%v](%v)", i, this.FieldL[i], i, that1.FieldL[i]) } } if len(this.FieldM) != len(that1.FieldM) { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", len(this.FieldM), len(that1.FieldM)) } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { return fmt.Errorf("FieldM this[%v](%v) Not Equal that[%v](%v)", i, this.FieldM[i], i, that1.FieldM[i]) } } if len(this.FieldN) != len(that1.FieldN) { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", len(this.FieldN), len(that1.FieldN)) } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { return fmt.Errorf("FieldN this[%v](%v) Not Equal that[%v](%v)", i, this.FieldN[i], i, that1.FieldN[i]) } } if len(this.FieldO) != len(that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", len(this.FieldO), len(that1.FieldO)) } for i := range this.FieldO { if !bytes.Equal(this.FieldO[i], that1.FieldO[i]) { return fmt.Errorf("FieldO this[%v](%v) Not Equal that[%v](%v)", i, this.FieldO[i], i, that1.FieldO[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.FieldA) != len(that1.FieldA) { return false } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { return false } } if len(this.FieldB) != len(that1.FieldB) { return false } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return false } } if len(this.FieldC) != len(that1.FieldC) { return false } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { return false } } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { return false } } if len(this.FieldE) != len(that1.FieldE) { return false } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { return false } } if len(this.FieldF) != len(that1.FieldF) { return false } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { return false } } if len(this.FieldG) != len(that1.FieldG) { return false } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { return false } } if len(this.FieldH) != len(that1.FieldH) { return false } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { return false } } if len(this.FieldI) != len(that1.FieldI) { return false } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { return false } } if len(this.FieldJ) != len(that1.FieldJ) { return false } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { return false } } if len(this.FieldK) != len(that1.FieldK) { return false } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { return false } } if len(this.FieldL) != len(that1.FieldL) { return false } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { return false } } if len(this.FieldM) != len(that1.FieldM) { return false } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { return false } } if len(this.FieldN) != len(that1.FieldN) { return false } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { return false } } if len(this.FieldO) != len(that1.FieldO) { return false } for i := range this.FieldO { if !bytes.Equal(this.FieldO[i], that1.FieldO[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinStruct but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if !this.FieldC.Equal(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", *this.FieldE, *that1.FieldE) } } else if this.FieldE != nil { return fmt.Errorf("this.FieldE == nil && that.FieldE != nil") } else if that1.FieldE != nil { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", *this.FieldF, *that1.FieldF) } } else if this.FieldF != nil { return fmt.Errorf("this.FieldF == nil && that.FieldF != nil") } else if that1.FieldF != nil { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if !this.FieldG.Equal(that1.FieldG) { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", *this.FieldH, *that1.FieldH) } } else if this.FieldH != nil { return fmt.Errorf("this.FieldH == nil && that.FieldH != nil") } else if that1.FieldH != nil { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", *this.FieldI, *that1.FieldI) } } else if this.FieldI != nil { return fmt.Errorf("this.FieldI == nil && that.FieldI != nil") } else if that1.FieldI != nil { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if !bytes.Equal(this.FieldJ, that1.FieldJ) { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if !this.FieldC.Equal(that1.FieldC) { return false } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return false } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return false } } else if this.FieldE != nil { return false } else if that1.FieldE != nil { return false } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return false } } else if this.FieldF != nil { return false } else if that1.FieldF != nil { return false } if !this.FieldG.Equal(that1.FieldG) { return false } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return false } } else if this.FieldH != nil { return false } else if that1.FieldH != nil { return false } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return false } } else if this.FieldI != nil { return false } else if that1.FieldI != nil { return false } if !bytes.Equal(this.FieldJ, that1.FieldJ) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameCustomType but is not nil && this == nil") } if that1.FieldA == nil { if this.FieldA != nil { return fmt.Errorf("this.FieldA != nil && that1.FieldA == nil") } } else if !this.FieldA.Equal(*that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if that1.FieldB == nil { if this.FieldB != nil { return fmt.Errorf("this.FieldB != nil && that1.FieldB == nil") } } else if !this.FieldB.Equal(*that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if len(this.FieldC) != len(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", len(this.FieldC), len(that1.FieldC)) } for i := range this.FieldC { if !this.FieldC[i].Equal(that1.FieldC[i]) { return fmt.Errorf("FieldC this[%v](%v) Not Equal that[%v](%v)", i, this.FieldC[i], i, that1.FieldC[i]) } } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.FieldA == nil { if this.FieldA != nil { return false } } else if !this.FieldA.Equal(*that1.FieldA) { return false } if that1.FieldB == nil { if this.FieldB != nil { return false } } else if !this.FieldB.Equal(*that1.FieldB) { return false } if len(this.FieldC) != len(that1.FieldC) { return false } for i := range this.FieldC { if !this.FieldC[i].Equal(that1.FieldC[i]) { return false } } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinEmbeddedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinEmbeddedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinEmbeddedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinEmbeddedStructUnion but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.FieldA.Equal(that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinEmbeddedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.FieldA.Equal(that1.FieldA) { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameEnum but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if len(this.FieldB) != len(that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", len(this.FieldB), len(that1.FieldB)) } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return fmt.Errorf("FieldB this[%v](%v) Not Equal that[%v](%v)", i, this.FieldB[i], i, that1.FieldB[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if len(this.FieldB) != len(that1.FieldB) { return false } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NoExtensionsMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NoExtensionsMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NoExtensionsMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NoExtensionsMap but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return fmt.Errorf("XXX_extensions this(%v) Not Equal that(%v)", this.XXX_extensions, that1.XXX_extensions) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NoExtensionsMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Unrecognized) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Unrecognized") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Unrecognized but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Unrecognized but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *Unrecognized) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *UnrecognizedWithInner) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithInner") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithInner but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithInner but is not nil && this == nil") } if len(this.Embedded) != len(that1.Embedded) { return fmt.Errorf("Embedded this(%v) Not Equal that(%v)", len(this.Embedded), len(that1.Embedded)) } for i := range this.Embedded { if !this.Embedded[i].Equal(that1.Embedded[i]) { return fmt.Errorf("Embedded this[%v](%v) Not Equal that[%v](%v)", i, this.Embedded[i], i, that1.Embedded[i]) } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *UnrecognizedWithInner) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Embedded) != len(that1.Embedded) { return false } for i := range this.Embedded { if !this.Embedded[i].Equal(that1.Embedded[i]) { return false } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *UnrecognizedWithInner_Inner) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithInner_Inner") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithInner_Inner but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithInner_Inner but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *UnrecognizedWithInner_Inner) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *UnrecognizedWithEmbed) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithEmbed") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithEmbed but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithEmbed but is not nil && this == nil") } if !this.UnrecognizedWithEmbed_Embedded.Equal(&that1.UnrecognizedWithEmbed_Embedded) { return fmt.Errorf("UnrecognizedWithEmbed_Embedded this(%v) Not Equal that(%v)", this.UnrecognizedWithEmbed_Embedded, that1.UnrecognizedWithEmbed_Embedded) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *UnrecognizedWithEmbed) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.UnrecognizedWithEmbed_Embedded.Equal(&that1.UnrecognizedWithEmbed_Embedded) { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *UnrecognizedWithEmbed_Embedded) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithEmbed_Embedded") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithEmbed_Embedded but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithEmbed_Embedded but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *UnrecognizedWithEmbed_Embedded) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *Node) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Node") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Node but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Node but is not nil && this == nil") } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { return fmt.Errorf("Label this(%v) Not Equal that(%v)", *this.Label, *that1.Label) } } else if this.Label != nil { return fmt.Errorf("this.Label == nil && that.Label != nil") } else if that1.Label != nil { return fmt.Errorf("Label this(%v) Not Equal that(%v)", this.Label, that1.Label) } if len(this.Children) != len(that1.Children) { return fmt.Errorf("Children this(%v) Not Equal that(%v)", len(this.Children), len(that1.Children)) } for i := range this.Children { if !this.Children[i].Equal(that1.Children[i]) { return fmt.Errorf("Children this[%v](%v) Not Equal that[%v](%v)", i, this.Children[i], i, that1.Children[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Node) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { return false } } else if this.Label != nil { return false } else if that1.Label != nil { return false } if len(this.Children) != len(that1.Children) { return false } for i := range this.Children { if !this.Children[i].Equal(that1.Children[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NonByteCustomType but is not nil && this == nil") } if that1.Field1 == nil { if this.Field1 != nil { return fmt.Errorf("this.Field1 != nil && that1.Field1 == nil") } } else if !this.Field1.Equal(*that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Field1 == nil { if this.Field1 != nil { return false } } else if !this.Field1.Equal(*that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptNonByteCustomType but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNonByteCustomType but is not nil && this == nil") } if that1.Field1 == nil { if this.Field1 != nil { return fmt.Errorf("this.Field1 != nil && that1.Field1 == nil") } } else if !this.Field1.Equal(*that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Field1 == nil { if this.Field1 != nil { return false } } else if !this.Field1.Equal(*that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepNonByteCustomType but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepNonByteCustomType but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *ProtoType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ProtoType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ProtoType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ProtoType but is not nil && this == nil") } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *ProtoType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type NidOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() float64 GetField2() float32 GetField3() int32 GetField4() int64 GetField5() uint32 GetField6() uint64 GetField7() int32 GetField8() int64 GetField9() uint32 GetField10() int32 GetField11() uint64 GetField12() int64 GetField13() bool GetField14() string GetField15() []byte } func (this *NidOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptNativeFromFace(this) } func (this *NidOptNative) GetField1() float64 { return this.Field1 } func (this *NidOptNative) GetField2() float32 { return this.Field2 } func (this *NidOptNative) GetField3() int32 { return this.Field3 } func (this *NidOptNative) GetField4() int64 { return this.Field4 } func (this *NidOptNative) GetField5() uint32 { return this.Field5 } func (this *NidOptNative) GetField6() uint64 { return this.Field6 } func (this *NidOptNative) GetField7() int32 { return this.Field7 } func (this *NidOptNative) GetField8() int64 { return this.Field8 } func (this *NidOptNative) GetField9() uint32 { return this.Field9 } func (this *NidOptNative) GetField10() int32 { return this.Field10 } func (this *NidOptNative) GetField11() uint64 { return this.Field11 } func (this *NidOptNative) GetField12() int64 { return this.Field12 } func (this *NidOptNative) GetField13() bool { return this.Field13 } func (this *NidOptNative) GetField14() string { return this.Field14 } func (this *NidOptNative) GetField15() []byte { return this.Field15 } func NewNidOptNativeFromFace(that NidOptNativeFace) *NidOptNative { this := &NidOptNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *int32 GetField4() *int64 GetField5() *uint32 GetField6() *uint64 GetField7() *int32 GetField8() *int64 GetField9() *uint32 GetField10() *int32 GetField11() *uint64 GetField12() *int64 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNativeFromFace(this) } func (this *NinOptNative) GetField1() *float64 { return this.Field1 } func (this *NinOptNative) GetField2() *float32 { return this.Field2 } func (this *NinOptNative) GetField3() *int32 { return this.Field3 } func (this *NinOptNative) GetField4() *int64 { return this.Field4 } func (this *NinOptNative) GetField5() *uint32 { return this.Field5 } func (this *NinOptNative) GetField6() *uint64 { return this.Field6 } func (this *NinOptNative) GetField7() *int32 { return this.Field7 } func (this *NinOptNative) GetField8() *int64 { return this.Field8 } func (this *NinOptNative) GetField9() *uint32 { return this.Field9 } func (this *NinOptNative) GetField10() *int32 { return this.Field10 } func (this *NinOptNative) GetField11() *uint64 { return this.Field11 } func (this *NinOptNative) GetField12() *int64 { return this.Field12 } func (this *NinOptNative) GetField13() *bool { return this.Field13 } func (this *NinOptNative) GetField14() *string { return this.Field14 } func (this *NinOptNative) GetField15() []byte { return this.Field15 } func NewNinOptNativeFromFace(that NinOptNativeFace) *NinOptNative { this := &NinOptNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NidRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepNativeFromFace(this) } func (this *NidRepNative) GetField1() []float64 { return this.Field1 } func (this *NidRepNative) GetField2() []float32 { return this.Field2 } func (this *NidRepNative) GetField3() []int32 { return this.Field3 } func (this *NidRepNative) GetField4() []int64 { return this.Field4 } func (this *NidRepNative) GetField5() []uint32 { return this.Field5 } func (this *NidRepNative) GetField6() []uint64 { return this.Field6 } func (this *NidRepNative) GetField7() []int32 { return this.Field7 } func (this *NidRepNative) GetField8() []int64 { return this.Field8 } func (this *NidRepNative) GetField9() []uint32 { return this.Field9 } func (this *NidRepNative) GetField10() []int32 { return this.Field10 } func (this *NidRepNative) GetField11() []uint64 { return this.Field11 } func (this *NidRepNative) GetField12() []int64 { return this.Field12 } func (this *NidRepNative) GetField13() []bool { return this.Field13 } func (this *NidRepNative) GetField14() []string { return this.Field14 } func (this *NidRepNative) GetField15() [][]byte { return this.Field15 } func NewNidRepNativeFromFace(that NidRepNativeFace) *NidRepNative { this := &NidRepNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NinRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepNativeFromFace(this) } func (this *NinRepNative) GetField1() []float64 { return this.Field1 } func (this *NinRepNative) GetField2() []float32 { return this.Field2 } func (this *NinRepNative) GetField3() []int32 { return this.Field3 } func (this *NinRepNative) GetField4() []int64 { return this.Field4 } func (this *NinRepNative) GetField5() []uint32 { return this.Field5 } func (this *NinRepNative) GetField6() []uint64 { return this.Field6 } func (this *NinRepNative) GetField7() []int32 { return this.Field7 } func (this *NinRepNative) GetField8() []int64 { return this.Field8 } func (this *NinRepNative) GetField9() []uint32 { return this.Field9 } func (this *NinRepNative) GetField10() []int32 { return this.Field10 } func (this *NinRepNative) GetField11() []uint64 { return this.Field11 } func (this *NinRepNative) GetField12() []int64 { return this.Field12 } func (this *NinRepNative) GetField13() []bool { return this.Field13 } func (this *NinRepNative) GetField14() []string { return this.Field14 } func (this *NinRepNative) GetField15() [][]byte { return this.Field15 } func NewNinRepNativeFromFace(that NinRepNativeFace) *NinRepNative { this := &NinRepNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepPackedNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool } func (this *NidRepPackedNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepPackedNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepPackedNativeFromFace(this) } func (this *NidRepPackedNative) GetField1() []float64 { return this.Field1 } func (this *NidRepPackedNative) GetField2() []float32 { return this.Field2 } func (this *NidRepPackedNative) GetField3() []int32 { return this.Field3 } func (this *NidRepPackedNative) GetField4() []int64 { return this.Field4 } func (this *NidRepPackedNative) GetField5() []uint32 { return this.Field5 } func (this *NidRepPackedNative) GetField6() []uint64 { return this.Field6 } func (this *NidRepPackedNative) GetField7() []int32 { return this.Field7 } func (this *NidRepPackedNative) GetField8() []int64 { return this.Field8 } func (this *NidRepPackedNative) GetField9() []uint32 { return this.Field9 } func (this *NidRepPackedNative) GetField10() []int32 { return this.Field10 } func (this *NidRepPackedNative) GetField11() []uint64 { return this.Field11 } func (this *NidRepPackedNative) GetField12() []int64 { return this.Field12 } func (this *NidRepPackedNative) GetField13() []bool { return this.Field13 } func NewNidRepPackedNativeFromFace(that NidRepPackedNativeFace) *NidRepPackedNative { this := &NidRepPackedNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() return this } type NinRepPackedNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool } func (this *NinRepPackedNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepPackedNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepPackedNativeFromFace(this) } func (this *NinRepPackedNative) GetField1() []float64 { return this.Field1 } func (this *NinRepPackedNative) GetField2() []float32 { return this.Field2 } func (this *NinRepPackedNative) GetField3() []int32 { return this.Field3 } func (this *NinRepPackedNative) GetField4() []int64 { return this.Field4 } func (this *NinRepPackedNative) GetField5() []uint32 { return this.Field5 } func (this *NinRepPackedNative) GetField6() []uint64 { return this.Field6 } func (this *NinRepPackedNative) GetField7() []int32 { return this.Field7 } func (this *NinRepPackedNative) GetField8() []int64 { return this.Field8 } func (this *NinRepPackedNative) GetField9() []uint32 { return this.Field9 } func (this *NinRepPackedNative) GetField10() []int32 { return this.Field10 } func (this *NinRepPackedNative) GetField11() []uint64 { return this.Field11 } func (this *NinRepPackedNative) GetField12() []int64 { return this.Field12 } func (this *NinRepPackedNative) GetField13() []bool { return this.Field13 } func NewNinRepPackedNativeFromFace(that NinRepPackedNativeFace) *NinRepPackedNative { this := &NinRepPackedNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() return this } type NidOptStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() float64 GetField2() float32 GetField3() NidOptNative GetField4() NinOptNative GetField6() uint64 GetField7() int32 GetField8() NidOptNative GetField13() bool GetField14() string GetField15() []byte } func (this *NidOptStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptStructFromFace(this) } func (this *NidOptStruct) GetField1() float64 { return this.Field1 } func (this *NidOptStruct) GetField2() float32 { return this.Field2 } func (this *NidOptStruct) GetField3() NidOptNative { return this.Field3 } func (this *NidOptStruct) GetField4() NinOptNative { return this.Field4 } func (this *NidOptStruct) GetField6() uint64 { return this.Field6 } func (this *NidOptStruct) GetField7() int32 { return this.Field7 } func (this *NidOptStruct) GetField8() NidOptNative { return this.Field8 } func (this *NidOptStruct) GetField13() bool { return this.Field13 } func (this *NidOptStruct) GetField14() string { return this.Field14 } func (this *NidOptStruct) GetField15() []byte { return this.Field15 } func NewNidOptStructFromFace(that NidOptStructFace) *NidOptStruct { this := &NidOptStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *NidOptNative GetField4() *NinOptNative GetField6() *uint64 GetField7() *int32 GetField8() *NidOptNative GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptStructFromFace(this) } func (this *NinOptStruct) GetField1() *float64 { return this.Field1 } func (this *NinOptStruct) GetField2() *float32 { return this.Field2 } func (this *NinOptStruct) GetField3() *NidOptNative { return this.Field3 } func (this *NinOptStruct) GetField4() *NinOptNative { return this.Field4 } func (this *NinOptStruct) GetField6() *uint64 { return this.Field6 } func (this *NinOptStruct) GetField7() *int32 { return this.Field7 } func (this *NinOptStruct) GetField8() *NidOptNative { return this.Field8 } func (this *NinOptStruct) GetField13() *bool { return this.Field13 } func (this *NinOptStruct) GetField14() *string { return this.Field14 } func (this *NinOptStruct) GetField15() []byte { return this.Field15 } func NewNinOptStructFromFace(that NinOptStructFace) *NinOptStruct { this := &NinOptStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []NidOptNative GetField4() []NinOptNative GetField6() []uint64 GetField7() []int32 GetField8() []NidOptNative GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NidRepStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepStructFromFace(this) } func (this *NidRepStruct) GetField1() []float64 { return this.Field1 } func (this *NidRepStruct) GetField2() []float32 { return this.Field2 } func (this *NidRepStruct) GetField3() []NidOptNative { return this.Field3 } func (this *NidRepStruct) GetField4() []NinOptNative { return this.Field4 } func (this *NidRepStruct) GetField6() []uint64 { return this.Field6 } func (this *NidRepStruct) GetField7() []int32 { return this.Field7 } func (this *NidRepStruct) GetField8() []NidOptNative { return this.Field8 } func (this *NidRepStruct) GetField13() []bool { return this.Field13 } func (this *NidRepStruct) GetField14() []string { return this.Field14 } func (this *NidRepStruct) GetField15() [][]byte { return this.Field15 } func NewNidRepStructFromFace(that NidRepStructFace) *NidRepStruct { this := &NidRepStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinRepStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []*NidOptNative GetField4() []*NinOptNative GetField6() []uint64 GetField7() []int32 GetField8() []*NidOptNative GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NinRepStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepStructFromFace(this) } func (this *NinRepStruct) GetField1() []float64 { return this.Field1 } func (this *NinRepStruct) GetField2() []float32 { return this.Field2 } func (this *NinRepStruct) GetField3() []*NidOptNative { return this.Field3 } func (this *NinRepStruct) GetField4() []*NinOptNative { return this.Field4 } func (this *NinRepStruct) GetField6() []uint64 { return this.Field6 } func (this *NinRepStruct) GetField7() []int32 { return this.Field7 } func (this *NinRepStruct) GetField8() []*NidOptNative { return this.Field8 } func (this *NinRepStruct) GetField13() []bool { return this.Field13 } func (this *NinRepStruct) GetField14() []string { return this.Field14 } func (this *NinRepStruct) GetField15() [][]byte { return this.Field15 } func NewNinRepStructFromFace(that NinRepStructFace) *NinRepStruct { this := &NinRepStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidEmbeddedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() NidOptNative GetField210() bool } func (this *NidEmbeddedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidEmbeddedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidEmbeddedStructFromFace(this) } func (this *NidEmbeddedStruct) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NidEmbeddedStruct) GetField200() NidOptNative { return this.Field200 } func (this *NidEmbeddedStruct) GetField210() bool { return this.Field210 } func NewNidEmbeddedStructFromFace(that NidEmbeddedStructFace) *NidEmbeddedStruct { this := &NidEmbeddedStruct{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NinEmbeddedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() *NidOptNative GetField210() *bool } func (this *NinEmbeddedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinEmbeddedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinEmbeddedStructFromFace(this) } func (this *NinEmbeddedStruct) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NinEmbeddedStruct) GetField200() *NidOptNative { return this.Field200 } func (this *NinEmbeddedStruct) GetField210() *bool { return this.Field210 } func NewNinEmbeddedStructFromFace(that NinEmbeddedStructFace) *NinEmbeddedStruct { this := &NinEmbeddedStruct{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NidNestedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() NidOptStruct GetField2() []NidRepStruct } func (this *NidNestedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidNestedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidNestedStructFromFace(this) } func (this *NidNestedStruct) GetField1() NidOptStruct { return this.Field1 } func (this *NidNestedStruct) GetField2() []NidRepStruct { return this.Field2 } func NewNidNestedStructFromFace(that NidNestedStructFace) *NidNestedStruct { this := &NidNestedStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() return this } type NinNestedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *NinOptStruct GetField2() []*NinRepStruct } func (this *NinNestedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinNestedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinNestedStructFromFace(this) } func (this *NinNestedStruct) GetField1() *NinOptStruct { return this.Field1 } func (this *NinNestedStruct) GetField2() []*NinRepStruct { return this.Field2 } func NewNinNestedStructFromFace(that NinNestedStructFace) *NinNestedStruct { this := &NinNestedStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() return this } type NidOptCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() Uuid GetValue() github_com_gogo_protobuf_test_custom.Uint128 } func (this *NidOptCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptCustomFromFace(this) } func (this *NidOptCustom) GetId() Uuid { return this.Id } func (this *NidOptCustom) GetValue() github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNidOptCustomFromFace(that NidOptCustomFace) *NidOptCustom { this := &NidOptCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type CustomDashFace interface { Proto() github_com_gogo_protobuf_proto.Message GetValue() *github_com_gogo_protobuf_test_custom_dash_type.Bytes } func (this *CustomDash) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomDash) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomDashFromFace(this) } func (this *CustomDash) GetValue() *github_com_gogo_protobuf_test_custom_dash_type.Bytes { return this.Value } func NewCustomDashFromFace(that CustomDashFace) *CustomDash { this := &CustomDash{} this.Value = that.GetValue() return this } type NinOptCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() *Uuid GetValue() *github_com_gogo_protobuf_test_custom.Uint128 } func (this *NinOptCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptCustomFromFace(this) } func (this *NinOptCustom) GetId() *Uuid { return this.Id } func (this *NinOptCustom) GetValue() *github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNinOptCustomFromFace(that NinOptCustomFace) *NinOptCustom { this := &NinOptCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NidRepCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() []Uuid GetValue() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *NidRepCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepCustomFromFace(this) } func (this *NidRepCustom) GetId() []Uuid { return this.Id } func (this *NidRepCustom) GetValue() []github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNidRepCustomFromFace(that NidRepCustomFace) *NidRepCustom { this := &NidRepCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NinRepCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() []Uuid GetValue() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *NinRepCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepCustomFromFace(this) } func (this *NinRepCustom) GetId() []Uuid { return this.Id } func (this *NinRepCustom) GetValue() []github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNinRepCustomFromFace(that NinRepCustomFace) *NinRepCustom { this := &NinRepCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NinOptNativeUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *int32 GetField4() *int64 GetField5() *uint32 GetField6() *uint64 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptNativeUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNativeUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNativeUnionFromFace(this) } func (this *NinOptNativeUnion) GetField1() *float64 { return this.Field1 } func (this *NinOptNativeUnion) GetField2() *float32 { return this.Field2 } func (this *NinOptNativeUnion) GetField3() *int32 { return this.Field3 } func (this *NinOptNativeUnion) GetField4() *int64 { return this.Field4 } func (this *NinOptNativeUnion) GetField5() *uint32 { return this.Field5 } func (this *NinOptNativeUnion) GetField6() *uint64 { return this.Field6 } func (this *NinOptNativeUnion) GetField13() *bool { return this.Field13 } func (this *NinOptNativeUnion) GetField14() *string { return this.Field14 } func (this *NinOptNativeUnion) GetField15() []byte { return this.Field15 } func NewNinOptNativeUnionFromFace(that NinOptNativeUnionFace) *NinOptNativeUnion { this := &NinOptNativeUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *NidOptNative GetField4() *NinOptNative GetField6() *uint64 GetField7() *int32 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptStructUnionFromFace(this) } func (this *NinOptStructUnion) GetField1() *float64 { return this.Field1 } func (this *NinOptStructUnion) GetField2() *float32 { return this.Field2 } func (this *NinOptStructUnion) GetField3() *NidOptNative { return this.Field3 } func (this *NinOptStructUnion) GetField4() *NinOptNative { return this.Field4 } func (this *NinOptStructUnion) GetField6() *uint64 { return this.Field6 } func (this *NinOptStructUnion) GetField7() *int32 { return this.Field7 } func (this *NinOptStructUnion) GetField13() *bool { return this.Field13 } func (this *NinOptStructUnion) GetField14() *string { return this.Field14 } func (this *NinOptStructUnion) GetField15() []byte { return this.Field15 } func NewNinOptStructUnionFromFace(that NinOptStructUnionFace) *NinOptStructUnion { this := &NinOptStructUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinEmbeddedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() *NinOptNative GetField210() *bool } func (this *NinEmbeddedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinEmbeddedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinEmbeddedStructUnionFromFace(this) } func (this *NinEmbeddedStructUnion) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NinEmbeddedStructUnion) GetField200() *NinOptNative { return this.Field200 } func (this *NinEmbeddedStructUnion) GetField210() *bool { return this.Field210 } func NewNinEmbeddedStructUnionFromFace(that NinEmbeddedStructUnionFace) *NinEmbeddedStructUnion { this := &NinEmbeddedStructUnion{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NinNestedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *NinOptNativeUnion GetField2() *NinOptStructUnion GetField3() *NinEmbeddedStructUnion } func (this *NinNestedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinNestedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinNestedStructUnionFromFace(this) } func (this *NinNestedStructUnion) GetField1() *NinOptNativeUnion { return this.Field1 } func (this *NinNestedStructUnion) GetField2() *NinOptStructUnion { return this.Field2 } func (this *NinNestedStructUnion) GetField3() *NinEmbeddedStructUnion { return this.Field3 } func NewNinNestedStructUnionFromFace(that NinNestedStructUnionFace) *NinNestedStructUnion { this := &NinNestedStructUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type TreeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetOr() *OrBranch GetAnd() *AndBranch GetLeaf() *Leaf } func (this *Tree) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Tree) TestProto() github_com_gogo_protobuf_proto.Message { return NewTreeFromFace(this) } func (this *Tree) GetOr() *OrBranch { return this.Or } func (this *Tree) GetAnd() *AndBranch { return this.And } func (this *Tree) GetLeaf() *Leaf { return this.Leaf } func NewTreeFromFace(that TreeFace) *Tree { this := &Tree{} this.Or = that.GetOr() this.And = that.GetAnd() this.Leaf = that.GetLeaf() return this } type OrBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() Tree GetRight() Tree } func (this *OrBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *OrBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewOrBranchFromFace(this) } func (this *OrBranch) GetLeft() Tree { return this.Left } func (this *OrBranch) GetRight() Tree { return this.Right } func NewOrBranchFromFace(that OrBranchFace) *OrBranch { this := &OrBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type AndBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() Tree GetRight() Tree } func (this *AndBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AndBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewAndBranchFromFace(this) } func (this *AndBranch) GetLeft() Tree { return this.Left } func (this *AndBranch) GetRight() Tree { return this.Right } func NewAndBranchFromFace(that AndBranchFace) *AndBranch { this := &AndBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type LeafFace interface { Proto() github_com_gogo_protobuf_proto.Message GetValue() int64 GetStrValue() string } func (this *Leaf) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Leaf) TestProto() github_com_gogo_protobuf_proto.Message { return NewLeafFromFace(this) } func (this *Leaf) GetValue() int64 { return this.Value } func (this *Leaf) GetStrValue() string { return this.StrValue } func NewLeafFromFace(that LeafFace) *Leaf { this := &Leaf{} this.Value = that.GetValue() this.StrValue = that.GetStrValue() return this } type DeepTreeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDown() *ADeepBranch GetAnd() *AndDeepBranch GetLeaf() *DeepLeaf } func (this *DeepTree) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *DeepTree) TestProto() github_com_gogo_protobuf_proto.Message { return NewDeepTreeFromFace(this) } func (this *DeepTree) GetDown() *ADeepBranch { return this.Down } func (this *DeepTree) GetAnd() *AndDeepBranch { return this.And } func (this *DeepTree) GetLeaf() *DeepLeaf { return this.Leaf } func NewDeepTreeFromFace(that DeepTreeFace) *DeepTree { this := &DeepTree{} this.Down = that.GetDown() this.And = that.GetAnd() this.Leaf = that.GetLeaf() return this } type ADeepBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDown() DeepTree } func (this *ADeepBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ADeepBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewADeepBranchFromFace(this) } func (this *ADeepBranch) GetDown() DeepTree { return this.Down } func NewADeepBranchFromFace(that ADeepBranchFace) *ADeepBranch { this := &ADeepBranch{} this.Down = that.GetDown() return this } type AndDeepBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() DeepTree GetRight() DeepTree } func (this *AndDeepBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AndDeepBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewAndDeepBranchFromFace(this) } func (this *AndDeepBranch) GetLeft() DeepTree { return this.Left } func (this *AndDeepBranch) GetRight() DeepTree { return this.Right } func NewAndDeepBranchFromFace(that AndDeepBranchFace) *AndDeepBranch { this := &AndDeepBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type DeepLeafFace interface { Proto() github_com_gogo_protobuf_proto.Message GetTree() Tree } func (this *DeepLeaf) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *DeepLeaf) TestProto() github_com_gogo_protobuf_proto.Message { return NewDeepLeafFromFace(this) } func (this *DeepLeaf) GetTree() Tree { return this.Tree } func NewDeepLeafFromFace(that DeepLeafFace) *DeepLeaf { this := &DeepLeaf{} this.Tree = that.GetTree() return this } type NilFace interface { Proto() github_com_gogo_protobuf_proto.Message } func (this *Nil) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Nil) TestProto() github_com_gogo_protobuf_proto.Message { return NewNilFromFace(this) } func NewNilFromFace(that NilFace) *Nil { this := &Nil{} return this } type NidOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() TheTestEnum } func (this *NidOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptEnumFromFace(this) } func (this *NidOptEnum) GetField1() TheTestEnum { return this.Field1 } func NewNidOptEnumFromFace(that NidOptEnumFace) *NidOptEnum { this := &NidOptEnum{} this.Field1 = that.GetField1() return this } type NinOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *TheTestEnum GetField2() *YetAnotherTestEnum GetField3() *YetYetAnotherTestEnum } func (this *NinOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptEnumFromFace(this) } func (this *NinOptEnum) GetField1() *TheTestEnum { return this.Field1 } func (this *NinOptEnum) GetField2() *YetAnotherTestEnum { return this.Field2 } func (this *NinOptEnum) GetField3() *YetYetAnotherTestEnum { return this.Field3 } func NewNinOptEnumFromFace(that NinOptEnumFace) *NinOptEnum { this := &NinOptEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type NidRepEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []TheTestEnum GetField2() []YetAnotherTestEnum GetField3() []YetYetAnotherTestEnum } func (this *NidRepEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepEnumFromFace(this) } func (this *NidRepEnum) GetField1() []TheTestEnum { return this.Field1 } func (this *NidRepEnum) GetField2() []YetAnotherTestEnum { return this.Field2 } func (this *NidRepEnum) GetField3() []YetYetAnotherTestEnum { return this.Field3 } func NewNidRepEnumFromFace(that NidRepEnumFace) *NidRepEnum { this := &NidRepEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type NinRepEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []TheTestEnum GetField2() []YetAnotherTestEnum GetField3() []YetYetAnotherTestEnum } func (this *NinRepEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepEnumFromFace(this) } func (this *NinRepEnum) GetField1() []TheTestEnum { return this.Field1 } func (this *NinRepEnum) GetField2() []YetAnotherTestEnum { return this.Field2 } func (this *NinRepEnum) GetField3() []YetYetAnotherTestEnum { return this.Field3 } func NewNinRepEnumFromFace(that NinRepEnumFace) *NinRepEnum { this := &NinRepEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type AnotherNinOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *AnotherTestEnum GetField2() *YetAnotherTestEnum GetField3() *YetYetAnotherTestEnum } func (this *AnotherNinOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AnotherNinOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewAnotherNinOptEnumFromFace(this) } func (this *AnotherNinOptEnum) GetField1() *AnotherTestEnum { return this.Field1 } func (this *AnotherNinOptEnum) GetField2() *YetAnotherTestEnum { return this.Field2 } func (this *AnotherNinOptEnum) GetField3() *YetYetAnotherTestEnum { return this.Field3 } func NewAnotherNinOptEnumFromFace(that AnotherNinOptEnumFace) *AnotherNinOptEnum { this := &AnotherNinOptEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type TimerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetTime1() int64 GetTime2() int64 GetData() []byte } func (this *Timer) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Timer) TestProto() github_com_gogo_protobuf_proto.Message { return NewTimerFromFace(this) } func (this *Timer) GetTime1() int64 { return this.Time1 } func (this *Timer) GetTime2() int64 { return this.Time2 } func (this *Timer) GetData() []byte { return this.Data } func NewTimerFromFace(that TimerFace) *Timer { this := &Timer{} this.Time1 = that.GetTime1() this.Time2 = that.GetTime2() this.Data = that.GetData() return this } type NestedDefinitionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *int64 GetEnumField() *NestedDefinition_NestedEnum GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg GetNM() *NestedDefinition_NestedMessage } func (this *NestedDefinition) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinitionFromFace(this) } func (this *NestedDefinition) GetField1() *int64 { return this.Field1 } func (this *NestedDefinition) GetEnumField() *NestedDefinition_NestedEnum { return this.EnumField } func (this *NestedDefinition) GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.NNM } func (this *NestedDefinition) GetNM() *NestedDefinition_NestedMessage { return this.NM } func NewNestedDefinitionFromFace(that NestedDefinitionFace) *NestedDefinition { this := &NestedDefinition{} this.Field1 = that.GetField1() this.EnumField = that.GetEnumField() this.NNM = that.GetNNM() this.NM = that.GetNM() return this } type NestedDefinition_NestedMessageFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedField1() *uint64 GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg } func (this *NestedDefinition_NestedMessage) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition_NestedMessage) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinition_NestedMessageFromFace(this) } func (this *NestedDefinition_NestedMessage) GetNestedField1() *uint64 { return this.NestedField1 } func (this *NestedDefinition_NestedMessage) GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.NNM } func NewNestedDefinition_NestedMessageFromFace(that NestedDefinition_NestedMessageFace) *NestedDefinition_NestedMessage { this := &NestedDefinition_NestedMessage{} this.NestedField1 = that.GetNestedField1() this.NNM = that.GetNNM() return this } type NestedDefinition_NestedMessage_NestedNestedMsgFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedNestedField1() *string } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinition_NestedMessage_NestedNestedMsgFromFace(this) } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) GetNestedNestedField1() *string { return this.NestedNestedField1 } func NewNestedDefinition_NestedMessage_NestedNestedMsgFromFace(that NestedDefinition_NestedMessage_NestedNestedMsgFace) *NestedDefinition_NestedMessage_NestedNestedMsg { this := &NestedDefinition_NestedMessage_NestedNestedMsg{} this.NestedNestedField1 = that.GetNestedNestedField1() return this } type NestedScopeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetA() *NestedDefinition_NestedMessage_NestedNestedMsg GetB() *NestedDefinition_NestedEnum GetC() *NestedDefinition_NestedMessage } func (this *NestedScope) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedScope) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedScopeFromFace(this) } func (this *NestedScope) GetA() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.A } func (this *NestedScope) GetB() *NestedDefinition_NestedEnum { return this.B } func (this *NestedScope) GetC() *NestedDefinition_NestedMessage { return this.C } func NewNestedScopeFromFace(that NestedScopeFace) *NestedScope { this := &NestedScope{} this.A = that.GetA() this.B = that.GetB() this.C = that.GetC() return this } type CustomContainerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetCustomStruct() NidOptCustom } func (this *CustomContainer) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomContainer) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomContainerFromFace(this) } func (this *CustomContainer) GetCustomStruct() NidOptCustom { return this.CustomStruct } func NewCustomContainerFromFace(that CustomContainerFace) *CustomContainer { this := &CustomContainer{} this.CustomStruct = that.GetCustomStruct() return this } type CustomNameNidOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() float64 GetFieldB() float32 GetFieldC() int32 GetFieldD() int64 GetFieldE() uint32 GetFieldF() uint64 GetFieldG() int32 GetFieldH() int64 GetFieldI() uint32 GetFieldJ() int32 GetFieldK() uint64 GetFieldL() int64 GetFieldM() bool GetFieldN() string GetFieldO() []byte } func (this *CustomNameNidOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNidOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNidOptNativeFromFace(this) } func (this *CustomNameNidOptNative) GetFieldA() float64 { return this.FieldA } func (this *CustomNameNidOptNative) GetFieldB() float32 { return this.FieldB } func (this *CustomNameNidOptNative) GetFieldC() int32 { return this.FieldC } func (this *CustomNameNidOptNative) GetFieldD() int64 { return this.FieldD } func (this *CustomNameNidOptNative) GetFieldE() uint32 { return this.FieldE } func (this *CustomNameNidOptNative) GetFieldF() uint64 { return this.FieldF } func (this *CustomNameNidOptNative) GetFieldG() int32 { return this.FieldG } func (this *CustomNameNidOptNative) GetFieldH() int64 { return this.FieldH } func (this *CustomNameNidOptNative) GetFieldI() uint32 { return this.FieldI } func (this *CustomNameNidOptNative) GetFieldJ() int32 { return this.FieldJ } func (this *CustomNameNidOptNative) GetFieldK() uint64 { return this.FieldK } func (this *CustomNameNidOptNative) GetFieldL() int64 { return this.FieldL } func (this *CustomNameNidOptNative) GetFieldM() bool { return this.FieldM } func (this *CustomNameNidOptNative) GetFieldN() string { return this.FieldN } func (this *CustomNameNidOptNative) GetFieldO() []byte { return this.FieldO } func NewCustomNameNidOptNativeFromFace(that CustomNameNidOptNativeFace) *CustomNameNidOptNative { this := &CustomNameNidOptNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FieldL = that.GetFieldL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *float64 GetFieldB() *float32 GetFieldC() *int32 GetFieldD() *int64 GetFieldE() *uint32 GetFieldF() *uint64 GetFieldG() *int32 GetFieldH() *int64 GetFieldI() *uint32 GetFieldJ() *int32 GetFieldK() *uint64 GetFielL() *int64 GetFieldM() *bool GetFieldN() *string GetFieldO() []byte } func (this *CustomNameNinOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinOptNativeFromFace(this) } func (this *CustomNameNinOptNative) GetFieldA() *float64 { return this.FieldA } func (this *CustomNameNinOptNative) GetFieldB() *float32 { return this.FieldB } func (this *CustomNameNinOptNative) GetFieldC() *int32 { return this.FieldC } func (this *CustomNameNinOptNative) GetFieldD() *int64 { return this.FieldD } func (this *CustomNameNinOptNative) GetFieldE() *uint32 { return this.FieldE } func (this *CustomNameNinOptNative) GetFieldF() *uint64 { return this.FieldF } func (this *CustomNameNinOptNative) GetFieldG() *int32 { return this.FieldG } func (this *CustomNameNinOptNative) GetFieldH() *int64 { return this.FieldH } func (this *CustomNameNinOptNative) GetFieldI() *uint32 { return this.FieldI } func (this *CustomNameNinOptNative) GetFieldJ() *int32 { return this.FieldJ } func (this *CustomNameNinOptNative) GetFieldK() *uint64 { return this.FieldK } func (this *CustomNameNinOptNative) GetFielL() *int64 { return this.FielL } func (this *CustomNameNinOptNative) GetFieldM() *bool { return this.FieldM } func (this *CustomNameNinOptNative) GetFieldN() *string { return this.FieldN } func (this *CustomNameNinOptNative) GetFieldO() []byte { return this.FieldO } func NewCustomNameNinOptNativeFromFace(that CustomNameNinOptNativeFace) *CustomNameNinOptNative { this := &CustomNameNinOptNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FielL = that.GetFielL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() []float64 GetFieldB() []float32 GetFieldC() []int32 GetFieldD() []int64 GetFieldE() []uint32 GetFieldF() []uint64 GetFieldG() []int32 GetFieldH() []int64 GetFieldI() []uint32 GetFieldJ() []int32 GetFieldK() []uint64 GetFieldL() []int64 GetFieldM() []bool GetFieldN() []string GetFieldO() [][]byte } func (this *CustomNameNinRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinRepNativeFromFace(this) } func (this *CustomNameNinRepNative) GetFieldA() []float64 { return this.FieldA } func (this *CustomNameNinRepNative) GetFieldB() []float32 { return this.FieldB } func (this *CustomNameNinRepNative) GetFieldC() []int32 { return this.FieldC } func (this *CustomNameNinRepNative) GetFieldD() []int64 { return this.FieldD } func (this *CustomNameNinRepNative) GetFieldE() []uint32 { return this.FieldE } func (this *CustomNameNinRepNative) GetFieldF() []uint64 { return this.FieldF } func (this *CustomNameNinRepNative) GetFieldG() []int32 { return this.FieldG } func (this *CustomNameNinRepNative) GetFieldH() []int64 { return this.FieldH } func (this *CustomNameNinRepNative) GetFieldI() []uint32 { return this.FieldI } func (this *CustomNameNinRepNative) GetFieldJ() []int32 { return this.FieldJ } func (this *CustomNameNinRepNative) GetFieldK() []uint64 { return this.FieldK } func (this *CustomNameNinRepNative) GetFieldL() []int64 { return this.FieldL } func (this *CustomNameNinRepNative) GetFieldM() []bool { return this.FieldM } func (this *CustomNameNinRepNative) GetFieldN() []string { return this.FieldN } func (this *CustomNameNinRepNative) GetFieldO() [][]byte { return this.FieldO } func NewCustomNameNinRepNativeFromFace(that CustomNameNinRepNativeFace) *CustomNameNinRepNative { this := &CustomNameNinRepNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FieldL = that.GetFieldL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *float64 GetFieldB() *float32 GetFieldC() *NidOptNative GetFieldD() []*NinOptNative GetFieldE() *uint64 GetFieldF() *int32 GetFieldG() *NidOptNative GetFieldH() *bool GetFieldI() *string GetFieldJ() []byte } func (this *CustomNameNinStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinStructFromFace(this) } func (this *CustomNameNinStruct) GetFieldA() *float64 { return this.FieldA } func (this *CustomNameNinStruct) GetFieldB() *float32 { return this.FieldB } func (this *CustomNameNinStruct) GetFieldC() *NidOptNative { return this.FieldC } func (this *CustomNameNinStruct) GetFieldD() []*NinOptNative { return this.FieldD } func (this *CustomNameNinStruct) GetFieldE() *uint64 { return this.FieldE } func (this *CustomNameNinStruct) GetFieldF() *int32 { return this.FieldF } func (this *CustomNameNinStruct) GetFieldG() *NidOptNative { return this.FieldG } func (this *CustomNameNinStruct) GetFieldH() *bool { return this.FieldH } func (this *CustomNameNinStruct) GetFieldI() *string { return this.FieldI } func (this *CustomNameNinStruct) GetFieldJ() []byte { return this.FieldJ } func NewCustomNameNinStructFromFace(that CustomNameNinStructFace) *CustomNameNinStruct { this := &CustomNameNinStruct{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() return this } type CustomNameCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *Uuid GetFieldB() *github_com_gogo_protobuf_test_custom.Uint128 GetFieldC() []Uuid GetFieldD() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *CustomNameCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameCustomTypeFromFace(this) } func (this *CustomNameCustomType) GetFieldA() *Uuid { return this.FieldA } func (this *CustomNameCustomType) GetFieldB() *github_com_gogo_protobuf_test_custom.Uint128 { return this.FieldB } func (this *CustomNameCustomType) GetFieldC() []Uuid { return this.FieldC } func (this *CustomNameCustomType) GetFieldD() []github_com_gogo_protobuf_test_custom.Uint128 { return this.FieldD } func NewCustomNameCustomTypeFromFace(that CustomNameCustomTypeFace) *CustomNameCustomType { this := &CustomNameCustomType{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() return this } type CustomNameNinEmbeddedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetFieldA() *NinOptNative GetFieldB() *bool } func (this *CustomNameNinEmbeddedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinEmbeddedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinEmbeddedStructUnionFromFace(this) } func (this *CustomNameNinEmbeddedStructUnion) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *CustomNameNinEmbeddedStructUnion) GetFieldA() *NinOptNative { return this.FieldA } func (this *CustomNameNinEmbeddedStructUnion) GetFieldB() *bool { return this.FieldB } func NewCustomNameNinEmbeddedStructUnionFromFace(that CustomNameNinEmbeddedStructUnionFace) *CustomNameNinEmbeddedStructUnion { this := &CustomNameNinEmbeddedStructUnion{} this.NidOptNative = that.GetNidOptNative() this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() return this } type CustomNameEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *TheTestEnum GetFieldB() []TheTestEnum } func (this *CustomNameEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameEnumFromFace(this) } func (this *CustomNameEnum) GetFieldA() *TheTestEnum { return this.FieldA } func (this *CustomNameEnum) GetFieldB() []TheTestEnum { return this.FieldB } func NewCustomNameEnumFromFace(that CustomNameEnumFace) *CustomNameEnum { this := &CustomNameEnum{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() return this } type UnrecognizedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *string } func (this *Unrecognized) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Unrecognized) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedFromFace(this) } func (this *Unrecognized) GetField1() *string { return this.Field1 } func NewUnrecognizedFromFace(that UnrecognizedFace) *Unrecognized { this := &Unrecognized{} this.Field1 = that.GetField1() return this } type UnrecognizedWithInnerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetEmbedded() []*UnrecognizedWithInner_Inner GetField2() *string } func (this *UnrecognizedWithInner) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithInner) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithInnerFromFace(this) } func (this *UnrecognizedWithInner) GetEmbedded() []*UnrecognizedWithInner_Inner { return this.Embedded } func (this *UnrecognizedWithInner) GetField2() *string { return this.Field2 } func NewUnrecognizedWithInnerFromFace(that UnrecognizedWithInnerFace) *UnrecognizedWithInner { this := &UnrecognizedWithInner{} this.Embedded = that.GetEmbedded() this.Field2 = that.GetField2() return this } type UnrecognizedWithInner_InnerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *uint32 } func (this *UnrecognizedWithInner_Inner) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithInner_Inner) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithInner_InnerFromFace(this) } func (this *UnrecognizedWithInner_Inner) GetField1() *uint32 { return this.Field1 } func NewUnrecognizedWithInner_InnerFromFace(that UnrecognizedWithInner_InnerFace) *UnrecognizedWithInner_Inner { this := &UnrecognizedWithInner_Inner{} this.Field1 = that.GetField1() return this } type UnrecognizedWithEmbedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetUnrecognizedWithEmbed_Embedded() UnrecognizedWithEmbed_Embedded GetField2() *string } func (this *UnrecognizedWithEmbed) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithEmbed) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithEmbedFromFace(this) } func (this *UnrecognizedWithEmbed) GetUnrecognizedWithEmbed_Embedded() UnrecognizedWithEmbed_Embedded { return this.UnrecognizedWithEmbed_Embedded } func (this *UnrecognizedWithEmbed) GetField2() *string { return this.Field2 } func NewUnrecognizedWithEmbedFromFace(that UnrecognizedWithEmbedFace) *UnrecognizedWithEmbed { this := &UnrecognizedWithEmbed{} this.UnrecognizedWithEmbed_Embedded = that.GetUnrecognizedWithEmbed_Embedded() this.Field2 = that.GetField2() return this } type UnrecognizedWithEmbed_EmbeddedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *uint32 } func (this *UnrecognizedWithEmbed_Embedded) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithEmbed_Embedded) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithEmbed_EmbeddedFromFace(this) } func (this *UnrecognizedWithEmbed_Embedded) GetField1() *uint32 { return this.Field1 } func NewUnrecognizedWithEmbed_EmbeddedFromFace(that UnrecognizedWithEmbed_EmbeddedFace) *UnrecognizedWithEmbed_Embedded { this := &UnrecognizedWithEmbed_Embedded{} this.Field1 = that.GetField1() return this } type NodeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLabel() *string GetChildren() []*Node } func (this *Node) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Node) TestProto() github_com_gogo_protobuf_proto.Message { return NewNodeFromFace(this) } func (this *Node) GetLabel() *string { return this.Label } func (this *Node) GetChildren() []*Node { return this.Children } func NewNodeFromFace(that NodeFace) *Node { this := &Node{} this.Label = that.GetLabel() this.Children = that.GetChildren() return this } type NonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *T } func (this *NonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNonByteCustomTypeFromFace(this) } func (this *NonByteCustomType) GetField1() *T { return this.Field1 } func NewNonByteCustomTypeFromFace(that NonByteCustomTypeFace) *NonByteCustomType { this := &NonByteCustomType{} this.Field1 = that.GetField1() return this } type NidOptNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() T } func (this *NidOptNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptNonByteCustomTypeFromFace(this) } func (this *NidOptNonByteCustomType) GetField1() T { return this.Field1 } func NewNidOptNonByteCustomTypeFromFace(that NidOptNonByteCustomTypeFace) *NidOptNonByteCustomType { this := &NidOptNonByteCustomType{} this.Field1 = that.GetField1() return this } type NinOptNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *T } func (this *NinOptNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNonByteCustomTypeFromFace(this) } func (this *NinOptNonByteCustomType) GetField1() *T { return this.Field1 } func NewNinOptNonByteCustomTypeFromFace(that NinOptNonByteCustomTypeFace) *NinOptNonByteCustomType { this := &NinOptNonByteCustomType{} this.Field1 = that.GetField1() return this } type NidRepNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []T } func (this *NidRepNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepNonByteCustomTypeFromFace(this) } func (this *NidRepNonByteCustomType) GetField1() []T { return this.Field1 } func NewNidRepNonByteCustomTypeFromFace(that NidRepNonByteCustomTypeFace) *NidRepNonByteCustomType { this := &NidRepNonByteCustomType{} this.Field1 = that.GetField1() return this } type NinRepNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []T } func (this *NinRepNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepNonByteCustomTypeFromFace(this) } func (this *NinRepNonByteCustomType) GetField1() []T { return this.Field1 } func NewNinRepNonByteCustomTypeFromFace(that NinRepNonByteCustomTypeFace) *NinRepNonByteCustomType { this := &NinRepNonByteCustomType{} this.Field1 = that.GetField1() return this } type ProtoTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField2() *string } func (this *ProtoType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ProtoType) TestProto() github_com_gogo_protobuf_proto.Message { return NewProtoTypeFromFace(this) } func (this *ProtoType) GetField2() *string { return this.Field2 } func NewProtoTypeFromFace(that ProtoTypeFace) *ProtoType { this := &ProtoType{} this.Field2 = that.GetField2() return this } func (this *NidOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NidOptNative{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinOptNative{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+valueToGoStringThetest(this.Field8, "int64")+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+valueToGoStringThetest(this.Field9, "uint32")+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+valueToGoStringThetest(this.Field10, "int32")+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+valueToGoStringThetest(this.Field11, "uint64")+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+valueToGoStringThetest(this.Field12, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NidRepNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinRepNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepPackedNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 17) s = append(s, "&test.NidRepPackedNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepPackedNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 17) s = append(s, "&test.NinRepPackedNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NidOptStruct{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") s = append(s, "Field3: "+strings.Replace(this.Field3.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field4: "+strings.Replace(this.Field4.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") s = append(s, "Field8: "+strings.Replace(this.Field8.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NinOptStruct{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NidRepStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { vs := make([]*NidOptNative, len(this.Field3)) for i := range vs { vs[i] = &this.Field3[i] } s = append(s, "Field3: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field4 != nil { vs := make([]*NinOptNative, len(this.Field4)) for i := range vs { vs[i] = &this.Field4[i] } s = append(s, "Field4: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { vs := make([]*NidOptNative, len(this.Field8)) for i := range vs { vs[i] = &this.Field8[i] } s = append(s, "Field8: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NinRepStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidEmbeddedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NidEmbeddedStruct{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } s = append(s, "Field200: "+strings.Replace(this.Field200.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field210: "+fmt.Sprintf("%#v", this.Field210)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinEmbeddedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinEmbeddedStruct{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.Field200 != nil { s = append(s, "Field200: "+fmt.Sprintf("%#v", this.Field200)+",\n") } if this.Field210 != nil { s = append(s, "Field210: "+valueToGoStringThetest(this.Field210, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidNestedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidNestedStruct{") s = append(s, "Field1: "+strings.Replace(this.Field1.GoString(), `&`, ``, 1)+",\n") if this.Field2 != nil { vs := make([]*NidRepStruct, len(this.Field2)) for i := range vs { vs[i] = &this.Field2[i] } s = append(s, "Field2: "+fmt.Sprintf("%#v", vs)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinNestedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinNestedStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidOptCustom{") s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomDash) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.CustomDash{") if this.Value != nil { s = append(s, "Value: "+valueToGoStringThetest(this.Value, "github_com_gogo_protobuf_test_custom_dash_type.Bytes")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinOptCustom{") if this.Id != nil { s = append(s, "Id: "+valueToGoStringThetest(this.Id, "Uuid")+",\n") } if this.Value != nil { s = append(s, "Value: "+valueToGoStringThetest(this.Value, "github_com_gogo_protobuf_test_custom.Uint128")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidRepCustom{") if this.Id != nil { s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") } if this.Value != nil { s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinRepCustom{") if this.Id != nil { s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") } if this.Value != nil { s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNativeUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 13) s = append(s, "&test.NinOptNativeUnion{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 13) s = append(s, "&test.NinOptStructUnion{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinEmbeddedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinEmbeddedStructUnion{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.Field200 != nil { s = append(s, "Field200: "+fmt.Sprintf("%#v", this.Field200)+",\n") } if this.Field210 != nil { s = append(s, "Field210: "+valueToGoStringThetest(this.Field210, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinNestedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinNestedStructUnion{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Tree) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.Tree{") if this.Or != nil { s = append(s, "Or: "+fmt.Sprintf("%#v", this.Or)+",\n") } if this.And != nil { s = append(s, "And: "+fmt.Sprintf("%#v", this.And)+",\n") } if this.Leaf != nil { s = append(s, "Leaf: "+fmt.Sprintf("%#v", this.Leaf)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OrBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.OrBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AndBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.AndBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Leaf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.Leaf{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "StrValue: "+fmt.Sprintf("%#v", this.StrValue)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DeepTree) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.DeepTree{") if this.Down != nil { s = append(s, "Down: "+fmt.Sprintf("%#v", this.Down)+",\n") } if this.And != nil { s = append(s, "And: "+fmt.Sprintf("%#v", this.And)+",\n") } if this.Leaf != nil { s = append(s, "Leaf: "+fmt.Sprintf("%#v", this.Leaf)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ADeepBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.ADeepBranch{") s = append(s, "Down: "+strings.Replace(this.Down.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AndDeepBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.AndDeepBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DeepLeaf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.DeepLeaf{") s = append(s, "Tree: "+strings.Replace(this.Tree.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Nil) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&test.Nil{") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidOptEnum{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinOptEnum{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "TheTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NidRepEnum{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinRepEnum{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptEnumDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinOptEnumDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "TheTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AnotherNinOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.AnotherNinOptEnum{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "AnotherTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AnotherNinOptEnumDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.AnotherNinOptEnumDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "AnotherTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Timer) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.Timer{") s = append(s, "Time1: "+fmt.Sprintf("%#v", this.Time1)+",\n") s = append(s, "Time2: "+fmt.Sprintf("%#v", this.Time2)+",\n") s = append(s, "Data: "+fmt.Sprintf("%#v", this.Data)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MyExtendable) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.MyExtendable{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringThetest(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OtherExtenable) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.OtherExtenable{") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "int64")+",\n") } if this.M != nil { s = append(s, "M: "+fmt.Sprintf("%#v", this.M)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringThetest(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&test.NestedDefinition{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } if this.EnumField != nil { s = append(s, "EnumField: "+valueToGoStringThetest(this.EnumField, "NestedDefinition_NestedEnum")+",\n") } if this.NNM != nil { s = append(s, "NNM: "+fmt.Sprintf("%#v", this.NNM)+",\n") } if this.NM != nil { s = append(s, "NM: "+fmt.Sprintf("%#v", this.NM)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition_NestedMessage) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NestedDefinition_NestedMessage{") if this.NestedField1 != nil { s = append(s, "NestedField1: "+valueToGoStringThetest(this.NestedField1, "uint64")+",\n") } if this.NNM != nil { s = append(s, "NNM: "+fmt.Sprintf("%#v", this.NNM)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NestedDefinition_NestedMessage_NestedNestedMsg{") if this.NestedNestedField1 != nil { s = append(s, "NestedNestedField1: "+valueToGoStringThetest(this.NestedNestedField1, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedScope) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NestedScope{") if this.A != nil { s = append(s, "A: "+fmt.Sprintf("%#v", this.A)+",\n") } if this.B != nil { s = append(s, "B: "+valueToGoStringThetest(this.B, "NestedDefinition_NestedEnum")+",\n") } if this.C != nil { s = append(s, "C: "+fmt.Sprintf("%#v", this.C)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNativeDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinOptNativeDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+valueToGoStringThetest(this.Field8, "int64")+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+valueToGoStringThetest(this.Field9, "uint32")+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+valueToGoStringThetest(this.Field10, "int32")+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+valueToGoStringThetest(this.Field11, "uint64")+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+valueToGoStringThetest(this.Field12, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomContainer) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.CustomContainer{") s = append(s, "CustomStruct: "+strings.Replace(this.CustomStruct.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNidOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNidOptNative{") s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") s = append(s, "FieldE: "+fmt.Sprintf("%#v", this.FieldE)+",\n") s = append(s, "FieldF: "+fmt.Sprintf("%#v", this.FieldF)+",\n") s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") s = append(s, "FieldH: "+fmt.Sprintf("%#v", this.FieldH)+",\n") s = append(s, "FieldI: "+fmt.Sprintf("%#v", this.FieldI)+",\n") s = append(s, "FieldJ: "+fmt.Sprintf("%#v", this.FieldJ)+",\n") s = append(s, "FieldK: "+fmt.Sprintf("%#v", this.FieldK)+",\n") s = append(s, "FieldL: "+fmt.Sprintf("%#v", this.FieldL)+",\n") s = append(s, "FieldM: "+fmt.Sprintf("%#v", this.FieldM)+",\n") s = append(s, "FieldN: "+fmt.Sprintf("%#v", this.FieldN)+",\n") s = append(s, "FieldO: "+fmt.Sprintf("%#v", this.FieldO)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNinOptNative{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "float64")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "float32")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+valueToGoStringThetest(this.FieldC, "int32")+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+valueToGoStringThetest(this.FieldD, "int64")+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+valueToGoStringThetest(this.FieldE, "uint32")+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+valueToGoStringThetest(this.FieldF, "uint64")+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+valueToGoStringThetest(this.FieldG, "int32")+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+valueToGoStringThetest(this.FieldH, "int64")+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+valueToGoStringThetest(this.FieldI, "uint32")+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+valueToGoStringThetest(this.FieldJ, "int32")+",\n") } if this.FieldK != nil { s = append(s, "FieldK: "+valueToGoStringThetest(this.FieldK, "uint64")+",\n") } if this.FielL != nil { s = append(s, "FielL: "+valueToGoStringThetest(this.FielL, "int64")+",\n") } if this.FieldM != nil { s = append(s, "FieldM: "+valueToGoStringThetest(this.FieldM, "bool")+",\n") } if this.FieldN != nil { s = append(s, "FieldN: "+valueToGoStringThetest(this.FieldN, "string")+",\n") } if this.FieldO != nil { s = append(s, "FieldO: "+valueToGoStringThetest(this.FieldO, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNinRepNative{") if this.FieldA != nil { s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+fmt.Sprintf("%#v", this.FieldE)+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+fmt.Sprintf("%#v", this.FieldF)+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+fmt.Sprintf("%#v", this.FieldH)+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+fmt.Sprintf("%#v", this.FieldI)+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+fmt.Sprintf("%#v", this.FieldJ)+",\n") } if this.FieldK != nil { s = append(s, "FieldK: "+fmt.Sprintf("%#v", this.FieldK)+",\n") } if this.FieldL != nil { s = append(s, "FieldL: "+fmt.Sprintf("%#v", this.FieldL)+",\n") } if this.FieldM != nil { s = append(s, "FieldM: "+fmt.Sprintf("%#v", this.FieldM)+",\n") } if this.FieldN != nil { s = append(s, "FieldN: "+fmt.Sprintf("%#v", this.FieldN)+",\n") } if this.FieldO != nil { s = append(s, "FieldO: "+fmt.Sprintf("%#v", this.FieldO)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.CustomNameNinStruct{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "float64")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "float32")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+valueToGoStringThetest(this.FieldE, "uint64")+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+valueToGoStringThetest(this.FieldF, "int32")+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+valueToGoStringThetest(this.FieldH, "bool")+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+valueToGoStringThetest(this.FieldI, "string")+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+valueToGoStringThetest(this.FieldJ, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&test.CustomNameCustomType{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "Uuid")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "github_com_gogo_protobuf_test_custom.Uint128")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinEmbeddedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.CustomNameNinEmbeddedStructUnion{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.FieldA != nil { s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.CustomNameEnum{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "TheTestEnum")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NoExtensionsMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NoExtensionsMap{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } if this.XXX_extensions != nil { s = append(s, "XXX_extensions: "+fmt.Sprintf("%#v", this.XXX_extensions)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Unrecognized) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.Unrecognized{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "string")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithInner) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.UnrecognizedWithInner{") if this.Embedded != nil { s = append(s, "Embedded: "+fmt.Sprintf("%#v", this.Embedded)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithInner_Inner) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.UnrecognizedWithInner_Inner{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithEmbed) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.UnrecognizedWithEmbed{") s = append(s, "UnrecognizedWithEmbed_Embedded: "+strings.Replace(this.UnrecognizedWithEmbed_Embedded.GoString(), `&`, ``, 1)+",\n") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithEmbed_Embedded) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.UnrecognizedWithEmbed_Embedded{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Node) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.Node{") if this.Label != nil { s = append(s, "Label: "+valueToGoStringThetest(this.Label, "string")+",\n") } if this.Children != nil { s = append(s, "Children: "+fmt.Sprintf("%#v", this.Children)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "T")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidOptNonByteCustomType{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NinOptNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "T")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidRepNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NinRepNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ProtoType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.ProtoType{") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringThetest(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func extensionToGoStringThetest(m github_com_gogo_protobuf_proto.Message) string { e := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(m) if e == nil { return "nil" } s := "proto.NewUnsafeXXX_InternalExtensions(map[int32]proto.Extension{" keys := make([]int, 0, len(e)) for k := range e { keys = append(keys, int(k)) } sort.Ints(keys) ss := []string{} for _, k := range keys { ss = append(ss, strconv.Itoa(k)+": "+e[int32(k)].GoString()) } s += strings.Join(ss, ",") + "})" return s } func (m *NidOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3)) dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field4)) dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field5)) dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field6)) dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(m.Field7)<<1)^uint32((m.Field7>>31)))) dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(m.Field8)<<1)^uint64((m.Field8>>63)))) dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field9)) i += 4 dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field10)) i += 4 dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field11)) i += 8 dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field12)) i += 8 dAtA[i] = 0x68 i++ if m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field14))) i += copy(dAtA[i:], m.Field14) if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.Field4 != nil { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field4)) } if m.Field5 != nil { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field5)) } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field8 != nil { dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(*m.Field8)<<1)^uint64((*m.Field8>>63)))) } if m.Field9 != nil { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field9)) i += 4 } if m.Field10 != nil { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field10)) i += 4 } if m.Field11 != nil { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field11)) i += 8 } if m.Field12 != nil { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field12)) i += 8 } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x9 i++ f1 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f1)) i += 8 } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x15 i++ f2 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f2)) i += 4 } } if len(m.Field3) > 0 { for _, num := range m.Field3 { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field4) > 0 { for _, num := range m.Field4 { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field5) > 0 { for _, num := range m.Field5 { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field6) > 0 { for _, num := range m.Field6 { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x38 i++ x3 := (uint32(num) << 1) ^ uint32((num >> 31)) for x3 >= 1<<7 { dAtA[i] = uint8(uint64(x3)&0x7f | 0x80) x3 >>= 7 i++ } dAtA[i] = uint8(x3) i++ } } if len(m.Field8) > 0 { for _, num := range m.Field8 { dAtA[i] = 0x40 i++ x4 := (uint64(num) << 1) ^ uint64((num >> 63)) for x4 >= 1<<7 { dAtA[i] = uint8(uint64(x4)&0x7f | 0x80) x4 >>= 7 i++ } dAtA[i] = uint8(x4) i++ } } if len(m.Field9) > 0 { for _, num := range m.Field9 { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field10) > 0 { for _, num := range m.Field10 { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field11) > 0 { for _, num := range m.Field11 { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field12) > 0 { for _, num := range m.Field12 { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field13) > 0 { for _, b := range m.Field13 { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.Field14) > 0 { for _, s := range m.Field14 { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x9 i++ f5 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f5)) i += 8 } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x15 i++ f6 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f6)) i += 4 } } if len(m.Field3) > 0 { for _, num := range m.Field3 { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field4) > 0 { for _, num := range m.Field4 { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field5) > 0 { for _, num := range m.Field5 { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field6) > 0 { for _, num := range m.Field6 { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x38 i++ x7 := (uint32(num) << 1) ^ uint32((num >> 31)) for x7 >= 1<<7 { dAtA[i] = uint8(uint64(x7)&0x7f | 0x80) x7 >>= 7 i++ } dAtA[i] = uint8(x7) i++ } } if len(m.Field8) > 0 { for _, num := range m.Field8 { dAtA[i] = 0x40 i++ x8 := (uint64(num) << 1) ^ uint64((num >> 63)) for x8 >= 1<<7 { dAtA[i] = uint8(uint64(x8)&0x7f | 0x80) x8 >>= 7 i++ } dAtA[i] = uint8(x8) i++ } } if len(m.Field9) > 0 { for _, num := range m.Field9 { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field10) > 0 { for _, num := range m.Field10 { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field11) > 0 { for _, num := range m.Field11 { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field12) > 0 { for _, num := range m.Field12 { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field13) > 0 { for _, b := range m.Field13 { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.Field14) > 0 { for _, s := range m.Field14 { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepPackedNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepPackedNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field1)*8)) for _, num := range m.Field1 { f9 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f9)) i += 8 } } if len(m.Field2) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field2)*4)) for _, num := range m.Field2 { f10 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f10)) i += 4 } } if len(m.Field3) > 0 { dAtA12 := make([]byte, len(m.Field3)*10) var j11 int for _, num1 := range m.Field3 { num := uint64(num1) for num >= 1<<7 { dAtA12[j11] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j11++ } dAtA12[j11] = uint8(num) j11++ } dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(j11)) i += copy(dAtA[i:], dAtA12[:j11]) } if len(m.Field4) > 0 { dAtA14 := make([]byte, len(m.Field4)*10) var j13 int for _, num1 := range m.Field4 { num := uint64(num1) for num >= 1<<7 { dAtA14[j13] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j13++ } dAtA14[j13] = uint8(num) j13++ } dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(j13)) i += copy(dAtA[i:], dAtA14[:j13]) } if len(m.Field5) > 0 { dAtA16 := make([]byte, len(m.Field5)*10) var j15 int for _, num := range m.Field5 { for num >= 1<<7 { dAtA16[j15] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j15++ } dAtA16[j15] = uint8(num) j15++ } dAtA[i] = 0x2a i++ i = encodeVarintThetest(dAtA, i, uint64(j15)) i += copy(dAtA[i:], dAtA16[:j15]) } if len(m.Field6) > 0 { dAtA18 := make([]byte, len(m.Field6)*10) var j17 int for _, num := range m.Field6 { for num >= 1<<7 { dAtA18[j17] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j17++ } dAtA18[j17] = uint8(num) j17++ } dAtA[i] = 0x32 i++ i = encodeVarintThetest(dAtA, i, uint64(j17)) i += copy(dAtA[i:], dAtA18[:j17]) } if len(m.Field7) > 0 { dAtA19 := make([]byte, len(m.Field7)*5) var j20 int for _, num := range m.Field7 { x21 := (uint32(num) << 1) ^ uint32((num >> 31)) for x21 >= 1<<7 { dAtA19[j20] = uint8(uint64(x21)&0x7f | 0x80) j20++ x21 >>= 7 } dAtA19[j20] = uint8(x21) j20++ } dAtA[i] = 0x3a i++ i = encodeVarintThetest(dAtA, i, uint64(j20)) i += copy(dAtA[i:], dAtA19[:j20]) } if len(m.Field8) > 0 { var j22 int dAtA24 := make([]byte, len(m.Field8)*10) for _, num := range m.Field8 { x23 := (uint64(num) << 1) ^ uint64((num >> 63)) for x23 >= 1<<7 { dAtA24[j22] = uint8(uint64(x23)&0x7f | 0x80) j22++ x23 >>= 7 } dAtA24[j22] = uint8(x23) j22++ } dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(j22)) i += copy(dAtA[i:], dAtA24[:j22]) } if len(m.Field9) > 0 { dAtA[i] = 0x4a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field9)*4)) for _, num := range m.Field9 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field10) > 0 { dAtA[i] = 0x52 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field10)*4)) for _, num := range m.Field10 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field11) > 0 { dAtA[i] = 0x5a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field11)*8)) for _, num := range m.Field11 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field12) > 0 { dAtA[i] = 0x62 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field12)*8)) for _, num := range m.Field12 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field13) > 0 { dAtA[i] = 0x6a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field13))) for _, b := range m.Field13 { if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepPackedNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepPackedNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field1)*8)) for _, num := range m.Field1 { f25 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f25)) i += 8 } } if len(m.Field2) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field2)*4)) for _, num := range m.Field2 { f26 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f26)) i += 4 } } if len(m.Field3) > 0 { dAtA28 := make([]byte, len(m.Field3)*10) var j27 int for _, num1 := range m.Field3 { num := uint64(num1) for num >= 1<<7 { dAtA28[j27] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j27++ } dAtA28[j27] = uint8(num) j27++ } dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(j27)) i += copy(dAtA[i:], dAtA28[:j27]) } if len(m.Field4) > 0 { dAtA30 := make([]byte, len(m.Field4)*10) var j29 int for _, num1 := range m.Field4 { num := uint64(num1) for num >= 1<<7 { dAtA30[j29] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j29++ } dAtA30[j29] = uint8(num) j29++ } dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(j29)) i += copy(dAtA[i:], dAtA30[:j29]) } if len(m.Field5) > 0 { dAtA32 := make([]byte, len(m.Field5)*10) var j31 int for _, num := range m.Field5 { for num >= 1<<7 { dAtA32[j31] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j31++ } dAtA32[j31] = uint8(num) j31++ } dAtA[i] = 0x2a i++ i = encodeVarintThetest(dAtA, i, uint64(j31)) i += copy(dAtA[i:], dAtA32[:j31]) } if len(m.Field6) > 0 { dAtA34 := make([]byte, len(m.Field6)*10) var j33 int for _, num := range m.Field6 { for num >= 1<<7 { dAtA34[j33] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j33++ } dAtA34[j33] = uint8(num) j33++ } dAtA[i] = 0x32 i++ i = encodeVarintThetest(dAtA, i, uint64(j33)) i += copy(dAtA[i:], dAtA34[:j33]) } if len(m.Field7) > 0 { dAtA35 := make([]byte, len(m.Field7)*5) var j36 int for _, num := range m.Field7 { x37 := (uint32(num) << 1) ^ uint32((num >> 31)) for x37 >= 1<<7 { dAtA35[j36] = uint8(uint64(x37)&0x7f | 0x80) j36++ x37 >>= 7 } dAtA35[j36] = uint8(x37) j36++ } dAtA[i] = 0x3a i++ i = encodeVarintThetest(dAtA, i, uint64(j36)) i += copy(dAtA[i:], dAtA35[:j36]) } if len(m.Field8) > 0 { var j38 int dAtA40 := make([]byte, len(m.Field8)*10) for _, num := range m.Field8 { x39 := (uint64(num) << 1) ^ uint64((num >> 63)) for x39 >= 1<<7 { dAtA40[j38] = uint8(uint64(x39)&0x7f | 0x80) j38++ x39 >>= 7 } dAtA40[j38] = uint8(x39) j38++ } dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(j38)) i += copy(dAtA[i:], dAtA40[:j38]) } if len(m.Field9) > 0 { dAtA[i] = 0x4a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field9)*4)) for _, num := range m.Field9 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field10) > 0 { dAtA[i] = 0x52 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field10)*4)) for _, num := range m.Field10 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field11) > 0 { dAtA[i] = 0x5a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field11)*8)) for _, num := range m.Field11 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field12) > 0 { dAtA[i] = 0x62 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field12)*8)) for _, num := range m.Field12 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field13) > 0 { dAtA[i] = 0x6a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field13))) for _, b := range m.Field13 { if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidOptStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3.Size())) n41, err := m.Field3.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n41 dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field4.Size())) n42, err := m.Field4.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n42 dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field6)) dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(m.Field7)<<1)^uint32((m.Field7>>31)))) dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field8.Size())) n43, err := m.Field8.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n43 dAtA[i] = 0x68 i++ if m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field14))) i += copy(dAtA[i:], m.Field14) if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3.Size())) n44, err := m.Field3.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n44 } if m.Field4 != nil { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field4.Size())) n45, err := m.Field4.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n45 } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field8 != nil { dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field8.Size())) n46, err := m.Field8.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n46 } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x9 i++ f47 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f47)) i += 8 } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x15 i++ f48 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f48)) i += 4 } } if len(m.Field3) > 0 { for _, msg := range m.Field3 { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field4) > 0 { for _, msg := range m.Field4 { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field6) > 0 { for _, num := range m.Field6 { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x38 i++ x49 := (uint32(num) << 1) ^ uint32((num >> 31)) for x49 >= 1<<7 { dAtA[i] = uint8(uint64(x49)&0x7f | 0x80) x49 >>= 7 i++ } dAtA[i] = uint8(x49) i++ } } if len(m.Field8) > 0 { for _, msg := range m.Field8 { dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field13) > 0 { for _, b := range m.Field13 { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.Field14) > 0 { for _, s := range m.Field14 { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x9 i++ f50 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f50)) i += 8 } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x15 i++ f51 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f51)) i += 4 } } if len(m.Field3) > 0 { for _, msg := range m.Field3 { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field4) > 0 { for _, msg := range m.Field4 { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field6) > 0 { for _, num := range m.Field6 { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x38 i++ x52 := (uint32(num) << 1) ^ uint32((num >> 31)) for x52 >= 1<<7 { dAtA[i] = uint8(uint64(x52)&0x7f | 0x80) x52 >>= 7 i++ } dAtA[i] = uint8(x52) i++ } } if len(m.Field8) > 0 { for _, msg := range m.Field8 { dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Field13) > 0 { for _, b := range m.Field13 { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.Field14) > 0 { for _, s := range m.Field14 { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidEmbeddedStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidEmbeddedStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NidOptNative != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.NidOptNative.Size())) n53, err := m.NidOptNative.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n53 } dAtA[i] = 0xc2 i++ dAtA[i] = 0xc i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field200.Size())) n54, err := m.Field200.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n54 dAtA[i] = 0x90 i++ dAtA[i] = 0xd i++ if m.Field210 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinEmbeddedStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinEmbeddedStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NidOptNative != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.NidOptNative.Size())) n55, err := m.NidOptNative.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n55 } if m.Field200 != nil { dAtA[i] = 0xc2 i++ dAtA[i] = 0xc i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field200.Size())) n56, err := m.Field200.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n56 } if m.Field210 != nil { dAtA[i] = 0x90 i++ dAtA[i] = 0xd i++ if *m.Field210 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidNestedStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidNestedStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n57, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n57 if len(m.Field2) > 0 { for _, msg := range m.Field2 { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinNestedStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinNestedStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n58, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n58 } if len(m.Field2) > 0 { for _, msg := range m.Field2 { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidOptCustom) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptCustom) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Id.Size())) n59, err := m.Id.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n59 dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Value.Size())) n60, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n60 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomDash) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomDash) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Value != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Value.Size())) n61, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n61 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptCustom) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptCustom) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Id != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Id.Size())) n62, err := m.Id.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n62 } if m.Value != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Value.Size())) n63, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n63 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepCustom) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepCustom) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Id) > 0 { for _, msg := range m.Id { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Value) > 0 { for _, msg := range m.Value { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepCustom) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepCustom) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Id) > 0 { for _, msg := range m.Id { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Value) > 0 { for _, msg := range m.Value { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNativeUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNativeUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.Field4 != nil { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field4)) } if m.Field5 != nil { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field5)) } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptStructUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptStructUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3.Size())) n64, err := m.Field3.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n64 } if m.Field4 != nil { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field4.Size())) n65, err := m.Field4.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n65 } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinEmbeddedStructUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinEmbeddedStructUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NidOptNative != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.NidOptNative.Size())) n66, err := m.NidOptNative.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n66 } if m.Field200 != nil { dAtA[i] = 0xc2 i++ dAtA[i] = 0xc i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field200.Size())) n67, err := m.Field200.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n67 } if m.Field210 != nil { dAtA[i] = 0x90 i++ dAtA[i] = 0xd i++ if *m.Field210 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinNestedStructUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinNestedStructUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n68, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n68 } if m.Field2 != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field2.Size())) n69, err := m.Field2.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n69 } if m.Field3 != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field3.Size())) n70, err := m.Field3.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n70 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Tree) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Tree) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Or != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Or.Size())) n71, err := m.Or.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n71 } if m.And != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.And.Size())) n72, err := m.And.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n72 } if m.Leaf != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Leaf.Size())) n73, err := m.Leaf.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n73 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *OrBranch) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OrBranch) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Left.Size())) n74, err := m.Left.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n74 dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Right.Size())) n75, err := m.Right.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n75 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AndBranch) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AndBranch) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Left.Size())) n76, err := m.Left.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n76 dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Right.Size())) n77, err := m.Right.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n77 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Leaf) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Leaf) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Value)) dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.StrValue))) i += copy(dAtA[i:], m.StrValue) if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *DeepTree) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *DeepTree) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Down != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Down.Size())) n78, err := m.Down.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n78 } if m.And != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.And.Size())) n79, err := m.And.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n79 } if m.Leaf != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.Leaf.Size())) n80, err := m.Leaf.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n80 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *ADeepBranch) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ADeepBranch) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Down.Size())) n81, err := m.Down.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n81 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AndDeepBranch) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AndDeepBranch) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Left.Size())) n82, err := m.Left.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n82 dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Right.Size())) n83, err := m.Right.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n83 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *DeepLeaf) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *DeepLeaf) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Tree.Size())) n84, err := m.Tree.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n84 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Nil) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Nil) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidOptEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1)) if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field3) > 0 { for _, num := range m.Field3 { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, num := range m.Field1 { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.Field3) > 0 { for _, num := range m.Field3 { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptEnumDefault) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptEnumDefault) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AnotherNinOptEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AnotherNinOptEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AnotherNinOptEnumDefault) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AnotherNinOptEnumDefault) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Timer) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Timer) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Time1)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Time2)) i += 8 if m.Data != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Data))) i += copy(dAtA[i:], m.Data) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *MyExtendable) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MyExtendable) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } n, err := github_com_gogo_protobuf_proto.EncodeInternalExtension(m, dAtA[i:]) if err != nil { return 0, err } i += n if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *OtherExtenable) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OtherExtenable) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.M != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.M.Size())) n85, err := m.M.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n85 } if m.Field2 != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field2)) } if m.Field13 != nil { dAtA[i] = 0x68 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field13)) } n, err := github_com_gogo_protobuf_proto.EncodeInternalExtension(m, dAtA[i:]) if err != nil { return 0, err } i += n if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NestedDefinition) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NestedDefinition) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.EnumField != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.EnumField)) } if m.NNM != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.NNM.Size())) n86, err := m.NNM.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n86 } if m.NM != nil { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(m.NM.Size())) n87, err := m.NM.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n87 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NestedDefinition_NestedMessage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NestedDefinition_NestedMessage) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NestedField1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.NestedField1)) i += 8 } if m.NNM != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.NNM.Size())) n88, err := m.NNM.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n88 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NestedNestedField1 != nil { dAtA[i] = 0x52 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.NestedNestedField1))) i += copy(dAtA[i:], *m.NestedNestedField1) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NestedScope) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NestedScope) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.A != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.A.Size())) n89, err := m.A.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n89 } if m.B != nil { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.B)) } if m.C != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.C.Size())) n90, err := m.C.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n90 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNativeDefault) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNativeDefault) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field3)) } if m.Field4 != nil { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field4)) } if m.Field5 != nil { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field5)) } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field8 != nil { dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(*m.Field8)<<1)^uint64((*m.Field8>>63)))) } if m.Field9 != nil { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field9)) i += 4 } if m.Field10 != nil { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field10)) i += 4 } if m.Field11 != nil { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field11)) i += 8 } if m.Field12 != nil { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field12)) i += 8 } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomContainer) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomContainer) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.CustomStruct.Size())) n91, err := m.CustomStruct.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n91 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNidOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNidOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.FieldA)))) i += 8 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.FieldB)))) i += 4 dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldC)) dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldD)) dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldE)) dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldF)) dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(m.FieldG)<<1)^uint32((m.FieldG>>31)))) dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(m.FieldH)<<1)^uint64((m.FieldH>>63)))) dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.FieldI)) i += 4 dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.FieldJ)) i += 4 dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.FieldK)) i += 8 dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.FieldL)) i += 8 dAtA[i] = 0x68 i++ if m.FieldM { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.FieldN))) i += copy(dAtA[i:], m.FieldN) if m.FieldO != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.FieldO))) i += copy(dAtA[i:], m.FieldO) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNinOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNinOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.FieldA != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.FieldA)))) i += 8 } if m.FieldB != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.FieldB)))) i += 4 } if m.FieldC != nil { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldC)) } if m.FieldD != nil { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldD)) } if m.FieldE != nil { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldE)) } if m.FieldF != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldF)) } if m.FieldG != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.FieldG)<<1)^uint32((*m.FieldG>>31)))) } if m.FieldH != nil { dAtA[i] = 0x40 i++ i = encodeVarintThetest(dAtA, i, uint64((uint64(*m.FieldH)<<1)^uint64((*m.FieldH>>63)))) } if m.FieldI != nil { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.FieldI)) i += 4 } if m.FieldJ != nil { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.FieldJ)) i += 4 } if m.FieldK != nil { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.FieldK)) i += 8 } if m.FielL != nil { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.FielL)) i += 8 } if m.FieldM != nil { dAtA[i] = 0x68 i++ if *m.FieldM { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.FieldN != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.FieldN))) i += copy(dAtA[i:], *m.FieldN) } if m.FieldO != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.FieldO))) i += copy(dAtA[i:], m.FieldO) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNinRepNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNinRepNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.FieldA) > 0 { for _, num := range m.FieldA { dAtA[i] = 0x9 i++ f92 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f92)) i += 8 } } if len(m.FieldB) > 0 { for _, num := range m.FieldB { dAtA[i] = 0x15 i++ f93 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f93)) i += 4 } } if len(m.FieldC) > 0 { for _, num := range m.FieldC { dAtA[i] = 0x18 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.FieldD) > 0 { for _, num := range m.FieldD { dAtA[i] = 0x20 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.FieldE) > 0 { for _, num := range m.FieldE { dAtA[i] = 0x28 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.FieldF) > 0 { for _, num := range m.FieldF { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if len(m.FieldG) > 0 { for _, num := range m.FieldG { dAtA[i] = 0x38 i++ x94 := (uint32(num) << 1) ^ uint32((num >> 31)) for x94 >= 1<<7 { dAtA[i] = uint8(uint64(x94)&0x7f | 0x80) x94 >>= 7 i++ } dAtA[i] = uint8(x94) i++ } } if len(m.FieldH) > 0 { for _, num := range m.FieldH { dAtA[i] = 0x40 i++ x95 := (uint64(num) << 1) ^ uint64((num >> 63)) for x95 >= 1<<7 { dAtA[i] = uint8(uint64(x95)&0x7f | 0x80) x95 >>= 7 i++ } dAtA[i] = uint8(x95) i++ } } if len(m.FieldI) > 0 { for _, num := range m.FieldI { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.FieldJ) > 0 { for _, num := range m.FieldJ { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.FieldK) > 0 { for _, num := range m.FieldK { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.FieldL) > 0 { for _, num := range m.FieldL { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.FieldM) > 0 { for _, b := range m.FieldM { dAtA[i] = 0x68 i++ if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.FieldN) > 0 { for _, s := range m.FieldN { dAtA[i] = 0x72 i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if len(m.FieldO) > 0 { for _, b := range m.FieldO { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNinStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNinStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.FieldA != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.FieldA)))) i += 8 } if m.FieldB != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.FieldB)))) i += 4 } if m.FieldC != nil { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldC.Size())) n96, err := m.FieldC.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n96 } if len(m.FieldD) > 0 { for _, msg := range m.FieldD { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.FieldE != nil { dAtA[i] = 0x30 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldE)) } if m.FieldF != nil { dAtA[i] = 0x38 i++ i = encodeVarintThetest(dAtA, i, uint64((uint32(*m.FieldF)<<1)^uint32((*m.FieldF>>31)))) } if m.FieldG != nil { dAtA[i] = 0x42 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldG.Size())) n97, err := m.FieldG.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n97 } if m.FieldH != nil { dAtA[i] = 0x68 i++ if *m.FieldH { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.FieldI != nil { dAtA[i] = 0x72 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.FieldI))) i += copy(dAtA[i:], *m.FieldI) } if m.FieldJ != nil { dAtA[i] = 0x7a i++ i = encodeVarintThetest(dAtA, i, uint64(len(m.FieldJ))) i += copy(dAtA[i:], m.FieldJ) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.FieldA != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldA.Size())) n98, err := m.FieldA.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n98 } if m.FieldB != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldB.Size())) n99, err := m.FieldB.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n99 } if len(m.FieldC) > 0 { for _, msg := range m.FieldC { dAtA[i] = 0x1a i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.FieldD) > 0 { for _, msg := range m.FieldD { dAtA[i] = 0x22 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameNinEmbeddedStructUnion) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameNinEmbeddedStructUnion) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NidOptNative != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.NidOptNative.Size())) n100, err := m.NidOptNative.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n100 } if m.FieldA != nil { dAtA[i] = 0xc2 i++ dAtA[i] = 0xc i++ i = encodeVarintThetest(dAtA, i, uint64(m.FieldA.Size())) n101, err := m.FieldA.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n101 } if m.FieldB != nil { dAtA[i] = 0x90 i++ dAtA[i] = 0xd i++ if *m.FieldB { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomNameEnum) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomNameEnum) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.FieldA != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.FieldA)) } if len(m.FieldB) > 0 { for _, num := range m.FieldB { dAtA[i] = 0x10 i++ i = encodeVarintThetest(dAtA, i, uint64(num)) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NoExtensionsMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NoExtensionsMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } if m.XXX_extensions != nil { i += copy(dAtA[i:], m.XXX_extensions) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *Unrecognized) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Unrecognized) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field1))) i += copy(dAtA[i:], *m.Field1) } return i, nil } func (m *UnrecognizedWithInner) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UnrecognizedWithInner) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Embedded) > 0 { for _, msg := range m.Embedded { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.Field2 != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field2))) i += copy(dAtA[i:], *m.Field2) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *UnrecognizedWithInner_Inner) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UnrecognizedWithInner_Inner) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } return i, nil } func (m *UnrecognizedWithEmbed) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UnrecognizedWithEmbed) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.UnrecognizedWithEmbed_Embedded.Size())) n102, err := m.UnrecognizedWithEmbed_Embedded.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n102 if m.Field2 != nil { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field2))) i += copy(dAtA[i:], *m.Field2) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *UnrecognizedWithEmbed_Embedded) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UnrecognizedWithEmbed_Embedded) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintThetest(dAtA, i, uint64(*m.Field1)) } return i, nil } func (m *Node) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Node) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Label != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Label))) i += copy(dAtA[i:], *m.Label) } if len(m.Children) > 0 { for _, msg := range m.Children { dAtA[i] = 0x12 i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n103, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n103 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidOptNonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptNonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n104, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n104 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(m.Field1.Size())) n105, err := m.Field1.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n105 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidRepNonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidRepNonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, msg := range m.Field1 { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepNonByteCustomType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepNonByteCustomType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { for _, msg := range m.Field1 { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *ProtoType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ProtoType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field2 != nil { dAtA[i] = 0xa i++ i = encodeVarintThetest(dAtA, i, uint64(len(*m.Field2))) i += copy(dAtA[i:], *m.Field2) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintThetest(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedNidOptNative(r randyThetest, easy bool) *NidOptNative { this := &NidOptNative{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } this.Field5 = uint32(r.Uint32()) this.Field6 = uint64(uint64(r.Uint32())) this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } this.Field9 = uint32(r.Uint32()) this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } this.Field11 = uint64(uint64(r.Uint32())) this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } this.Field13 = bool(bool(r.Intn(2) == 0)) this.Field14 = string(randStringThetest(r)) v1 := r.Intn(100) this.Field15 = make([]byte, v1) for i := 0; i < v1; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinOptNative(r randyThetest, easy bool) *NinOptNative { this := &NinOptNative{} if r.Intn(10) != 0 { v2 := float64(r.Float64()) if r.Intn(2) == 0 { v2 *= -1 } this.Field1 = &v2 } if r.Intn(10) != 0 { v3 := float32(r.Float32()) if r.Intn(2) == 0 { v3 *= -1 } this.Field2 = &v3 } if r.Intn(10) != 0 { v4 := int32(r.Int31()) if r.Intn(2) == 0 { v4 *= -1 } this.Field3 = &v4 } if r.Intn(10) != 0 { v5 := int64(r.Int63()) if r.Intn(2) == 0 { v5 *= -1 } this.Field4 = &v5 } if r.Intn(10) != 0 { v6 := uint32(r.Uint32()) this.Field5 = &v6 } if r.Intn(10) != 0 { v7 := uint64(uint64(r.Uint32())) this.Field6 = &v7 } if r.Intn(10) != 0 { v8 := int32(r.Int31()) if r.Intn(2) == 0 { v8 *= -1 } this.Field7 = &v8 } if r.Intn(10) != 0 { v9 := int64(r.Int63()) if r.Intn(2) == 0 { v9 *= -1 } this.Field8 = &v9 } if r.Intn(10) != 0 { v10 := uint32(r.Uint32()) this.Field9 = &v10 } if r.Intn(10) != 0 { v11 := int32(r.Int31()) if r.Intn(2) == 0 { v11 *= -1 } this.Field10 = &v11 } if r.Intn(10) != 0 { v12 := uint64(uint64(r.Uint32())) this.Field11 = &v12 } if r.Intn(10) != 0 { v13 := int64(r.Int63()) if r.Intn(2) == 0 { v13 *= -1 } this.Field12 = &v13 } if r.Intn(10) != 0 { v14 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v14 } if r.Intn(10) != 0 { v15 := string(randStringThetest(r)) this.Field14 = &v15 } if r.Intn(10) != 0 { v16 := r.Intn(100) this.Field15 = make([]byte, v16) for i := 0; i < v16; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepNative(r randyThetest, easy bool) *NidRepNative { this := &NidRepNative{} if r.Intn(10) != 0 { v17 := r.Intn(10) this.Field1 = make([]float64, v17) for i := 0; i < v17; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Field2 = make([]float32, v18) for i := 0; i < v18; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.Field3 = make([]int32, v19) for i := 0; i < v19; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Field4 = make([]int64, v20) for i := 0; i < v20; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Field5 = make([]uint32, v21) for i := 0; i < v21; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Field6 = make([]uint64, v22) for i := 0; i < v22; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Field7 = make([]int32, v23) for i := 0; i < v23; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Field8 = make([]int64, v24) for i := 0; i < v24; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Field9 = make([]uint32, v25) for i := 0; i < v25; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v26 := r.Intn(10) this.Field10 = make([]int32, v26) for i := 0; i < v26; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v27 := r.Intn(10) this.Field11 = make([]uint64, v27) for i := 0; i < v27; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v28 := r.Intn(10) this.Field12 = make([]int64, v28) for i := 0; i < v28; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v29 := r.Intn(10) this.Field13 = make([]bool, v29) for i := 0; i < v29; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v30 := r.Intn(10) this.Field14 = make([]string, v30) for i := 0; i < v30; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v31 := r.Intn(10) this.Field15 = make([][]byte, v31) for i := 0; i < v31; i++ { v32 := r.Intn(100) this.Field15[i] = make([]byte, v32) for j := 0; j < v32; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinRepNative(r randyThetest, easy bool) *NinRepNative { this := &NinRepNative{} if r.Intn(10) != 0 { v33 := r.Intn(10) this.Field1 = make([]float64, v33) for i := 0; i < v33; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v34 := r.Intn(10) this.Field2 = make([]float32, v34) for i := 0; i < v34; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v35 := r.Intn(10) this.Field3 = make([]int32, v35) for i := 0; i < v35; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.Field4 = make([]int64, v36) for i := 0; i < v36; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v37 := r.Intn(10) this.Field5 = make([]uint32, v37) for i := 0; i < v37; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v38 := r.Intn(10) this.Field6 = make([]uint64, v38) for i := 0; i < v38; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v39 := r.Intn(10) this.Field7 = make([]int32, v39) for i := 0; i < v39; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v40 := r.Intn(10) this.Field8 = make([]int64, v40) for i := 0; i < v40; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v41 := r.Intn(10) this.Field9 = make([]uint32, v41) for i := 0; i < v41; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v42 := r.Intn(10) this.Field10 = make([]int32, v42) for i := 0; i < v42; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v43 := r.Intn(10) this.Field11 = make([]uint64, v43) for i := 0; i < v43; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v44 := r.Intn(10) this.Field12 = make([]int64, v44) for i := 0; i < v44; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v45 := r.Intn(10) this.Field13 = make([]bool, v45) for i := 0; i < v45; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v46 := r.Intn(10) this.Field14 = make([]string, v46) for i := 0; i < v46; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v47 := r.Intn(10) this.Field15 = make([][]byte, v47) for i := 0; i < v47; i++ { v48 := r.Intn(100) this.Field15[i] = make([]byte, v48) for j := 0; j < v48; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepPackedNative(r randyThetest, easy bool) *NidRepPackedNative { this := &NidRepPackedNative{} if r.Intn(10) != 0 { v49 := r.Intn(10) this.Field1 = make([]float64, v49) for i := 0; i < v49; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v50 := r.Intn(10) this.Field2 = make([]float32, v50) for i := 0; i < v50; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v51 := r.Intn(10) this.Field3 = make([]int32, v51) for i := 0; i < v51; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v52 := r.Intn(10) this.Field4 = make([]int64, v52) for i := 0; i < v52; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v53 := r.Intn(10) this.Field5 = make([]uint32, v53) for i := 0; i < v53; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v54 := r.Intn(10) this.Field6 = make([]uint64, v54) for i := 0; i < v54; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v55 := r.Intn(10) this.Field7 = make([]int32, v55) for i := 0; i < v55; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v56 := r.Intn(10) this.Field8 = make([]int64, v56) for i := 0; i < v56; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v57 := r.Intn(10) this.Field9 = make([]uint32, v57) for i := 0; i < v57; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v58 := r.Intn(10) this.Field10 = make([]int32, v58) for i := 0; i < v58; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v59 := r.Intn(10) this.Field11 = make([]uint64, v59) for i := 0; i < v59; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v60 := r.Intn(10) this.Field12 = make([]int64, v60) for i := 0; i < v60; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v61 := r.Intn(10) this.Field13 = make([]bool, v61) for i := 0; i < v61; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 14) } return this } func NewPopulatedNinRepPackedNative(r randyThetest, easy bool) *NinRepPackedNative { this := &NinRepPackedNative{} if r.Intn(10) != 0 { v62 := r.Intn(10) this.Field1 = make([]float64, v62) for i := 0; i < v62; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v63 := r.Intn(10) this.Field2 = make([]float32, v63) for i := 0; i < v63; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.Field3 = make([]int32, v64) for i := 0; i < v64; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v65 := r.Intn(10) this.Field4 = make([]int64, v65) for i := 0; i < v65; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v66 := r.Intn(10) this.Field5 = make([]uint32, v66) for i := 0; i < v66; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v67 := r.Intn(10) this.Field6 = make([]uint64, v67) for i := 0; i < v67; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.Field7 = make([]int32, v68) for i := 0; i < v68; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v69 := r.Intn(10) this.Field8 = make([]int64, v69) for i := 0; i < v69; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v70 := r.Intn(10) this.Field9 = make([]uint32, v70) for i := 0; i < v70; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v71 := r.Intn(10) this.Field10 = make([]int32, v71) for i := 0; i < v71; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v72 := r.Intn(10) this.Field11 = make([]uint64, v72) for i := 0; i < v72; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v73 := r.Intn(10) this.Field12 = make([]int64, v73) for i := 0; i < v73; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v74 := r.Intn(10) this.Field13 = make([]bool, v74) for i := 0; i < v74; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 14) } return this } func NewPopulatedNidOptStruct(r randyThetest, easy bool) *NidOptStruct { this := &NidOptStruct{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } v75 := NewPopulatedNidOptNative(r, easy) this.Field3 = *v75 v76 := NewPopulatedNinOptNative(r, easy) this.Field4 = *v76 this.Field6 = uint64(uint64(r.Uint32())) this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } v77 := NewPopulatedNidOptNative(r, easy) this.Field8 = *v77 this.Field13 = bool(bool(r.Intn(2) == 0)) this.Field14 = string(randStringThetest(r)) v78 := r.Intn(100) this.Field15 = make([]byte, v78) for i := 0; i < v78; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinOptStruct(r randyThetest, easy bool) *NinOptStruct { this := &NinOptStruct{} if r.Intn(10) != 0 { v79 := float64(r.Float64()) if r.Intn(2) == 0 { v79 *= -1 } this.Field1 = &v79 } if r.Intn(10) != 0 { v80 := float32(r.Float32()) if r.Intn(2) == 0 { v80 *= -1 } this.Field2 = &v80 } if r.Intn(10) != 0 { this.Field3 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { this.Field4 = NewPopulatedNinOptNative(r, easy) } if r.Intn(10) != 0 { v81 := uint64(uint64(r.Uint32())) this.Field6 = &v81 } if r.Intn(10) != 0 { v82 := int32(r.Int31()) if r.Intn(2) == 0 { v82 *= -1 } this.Field7 = &v82 } if r.Intn(10) != 0 { this.Field8 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v83 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v83 } if r.Intn(10) != 0 { v84 := string(randStringThetest(r)) this.Field14 = &v84 } if r.Intn(10) != 0 { v85 := r.Intn(100) this.Field15 = make([]byte, v85) for i := 0; i < v85; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepStruct(r randyThetest, easy bool) *NidRepStruct { this := &NidRepStruct{} if r.Intn(10) != 0 { v86 := r.Intn(10) this.Field1 = make([]float64, v86) for i := 0; i < v86; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v87 := r.Intn(10) this.Field2 = make([]float32, v87) for i := 0; i < v87; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v88 := r.Intn(5) this.Field3 = make([]NidOptNative, v88) for i := 0; i < v88; i++ { v89 := NewPopulatedNidOptNative(r, easy) this.Field3[i] = *v89 } } if r.Intn(10) != 0 { v90 := r.Intn(5) this.Field4 = make([]NinOptNative, v90) for i := 0; i < v90; i++ { v91 := NewPopulatedNinOptNative(r, easy) this.Field4[i] = *v91 } } if r.Intn(10) != 0 { v92 := r.Intn(10) this.Field6 = make([]uint64, v92) for i := 0; i < v92; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v93 := r.Intn(10) this.Field7 = make([]int32, v93) for i := 0; i < v93; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v94 := r.Intn(5) this.Field8 = make([]NidOptNative, v94) for i := 0; i < v94; i++ { v95 := NewPopulatedNidOptNative(r, easy) this.Field8[i] = *v95 } } if r.Intn(10) != 0 { v96 := r.Intn(10) this.Field13 = make([]bool, v96) for i := 0; i < v96; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v97 := r.Intn(10) this.Field14 = make([]string, v97) for i := 0; i < v97; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v98 := r.Intn(10) this.Field15 = make([][]byte, v98) for i := 0; i < v98; i++ { v99 := r.Intn(100) this.Field15[i] = make([]byte, v99) for j := 0; j < v99; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinRepStruct(r randyThetest, easy bool) *NinRepStruct { this := &NinRepStruct{} if r.Intn(10) != 0 { v100 := r.Intn(10) this.Field1 = make([]float64, v100) for i := 0; i < v100; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v101 := r.Intn(10) this.Field2 = make([]float32, v101) for i := 0; i < v101; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v102 := r.Intn(5) this.Field3 = make([]*NidOptNative, v102) for i := 0; i < v102; i++ { this.Field3[i] = NewPopulatedNidOptNative(r, easy) } } if r.Intn(10) != 0 { v103 := r.Intn(5) this.Field4 = make([]*NinOptNative, v103) for i := 0; i < v103; i++ { this.Field4[i] = NewPopulatedNinOptNative(r, easy) } } if r.Intn(10) != 0 { v104 := r.Intn(10) this.Field6 = make([]uint64, v104) for i := 0; i < v104; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v105 := r.Intn(10) this.Field7 = make([]int32, v105) for i := 0; i < v105; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v106 := r.Intn(5) this.Field8 = make([]*NidOptNative, v106) for i := 0; i < v106; i++ { this.Field8[i] = NewPopulatedNidOptNative(r, easy) } } if r.Intn(10) != 0 { v107 := r.Intn(10) this.Field13 = make([]bool, v107) for i := 0; i < v107; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v108 := r.Intn(10) this.Field14 = make([]string, v108) for i := 0; i < v108; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v109 := r.Intn(10) this.Field15 = make([][]byte, v109) for i := 0; i < v109; i++ { v110 := r.Intn(100) this.Field15[i] = make([]byte, v110) for j := 0; j < v110; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidEmbeddedStruct(r randyThetest, easy bool) *NidEmbeddedStruct { this := &NidEmbeddedStruct{} if r.Intn(10) != 0 { this.NidOptNative = NewPopulatedNidOptNative(r, easy) } v111 := NewPopulatedNidOptNative(r, easy) this.Field200 = *v111 this.Field210 = bool(bool(r.Intn(2) == 0)) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 211) } return this } func NewPopulatedNinEmbeddedStruct(r randyThetest, easy bool) *NinEmbeddedStruct { this := &NinEmbeddedStruct{} if r.Intn(10) != 0 { this.NidOptNative = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { this.Field200 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v112 := bool(bool(r.Intn(2) == 0)) this.Field210 = &v112 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 211) } return this } func NewPopulatedNidNestedStruct(r randyThetest, easy bool) *NidNestedStruct { this := &NidNestedStruct{} v113 := NewPopulatedNidOptStruct(r, easy) this.Field1 = *v113 if r.Intn(10) != 0 { v114 := r.Intn(5) this.Field2 = make([]NidRepStruct, v114) for i := 0; i < v114; i++ { v115 := NewPopulatedNidRepStruct(r, easy) this.Field2[i] = *v115 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinNestedStruct(r randyThetest, easy bool) *NinNestedStruct { this := &NinNestedStruct{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedNinOptStruct(r, easy) } if r.Intn(10) != 0 { v116 := r.Intn(5) this.Field2 = make([]*NinRepStruct, v116) for i := 0; i < v116; i++ { this.Field2[i] = NewPopulatedNinRepStruct(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNidOptCustom(r randyThetest, easy bool) *NidOptCustom { this := &NidOptCustom{} v117 := NewPopulatedUuid(r) this.Id = *v117 v118 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value = *v118 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedCustomDash(r randyThetest, easy bool) *CustomDash { this := &CustomDash{} if r.Intn(10) != 0 { this.Value = github_com_gogo_protobuf_test_custom_dash_type.NewPopulatedBytes(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptCustom(r randyThetest, easy bool) *NinOptCustom { this := &NinOptCustom{} if r.Intn(10) != 0 { this.Id = NewPopulatedUuid(r) } if r.Intn(10) != 0 { this.Value = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNidRepCustom(r randyThetest, easy bool) *NidRepCustom { this := &NidRepCustom{} if r.Intn(10) != 0 { v119 := r.Intn(10) this.Id = make([]Uuid, v119) for i := 0; i < v119; i++ { v120 := NewPopulatedUuid(r) this.Id[i] = *v120 } } if r.Intn(10) != 0 { v121 := r.Intn(10) this.Value = make([]github_com_gogo_protobuf_test_custom.Uint128, v121) for i := 0; i < v121; i++ { v122 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value[i] = *v122 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinRepCustom(r randyThetest, easy bool) *NinRepCustom { this := &NinRepCustom{} if r.Intn(10) != 0 { v123 := r.Intn(10) this.Id = make([]Uuid, v123) for i := 0; i < v123; i++ { v124 := NewPopulatedUuid(r) this.Id[i] = *v124 } } if r.Intn(10) != 0 { v125 := r.Intn(10) this.Value = make([]github_com_gogo_protobuf_test_custom.Uint128, v125) for i := 0; i < v125; i++ { v126 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value[i] = *v126 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinOptNativeUnion(r randyThetest, easy bool) *NinOptNativeUnion { this := &NinOptNativeUnion{} fieldNum := r.Intn(9) switch fieldNum { case 0: v127 := float64(r.Float64()) if r.Intn(2) == 0 { v127 *= -1 } this.Field1 = &v127 case 1: v128 := float32(r.Float32()) if r.Intn(2) == 0 { v128 *= -1 } this.Field2 = &v128 case 2: v129 := int32(r.Int31()) if r.Intn(2) == 0 { v129 *= -1 } this.Field3 = &v129 case 3: v130 := int64(r.Int63()) if r.Intn(2) == 0 { v130 *= -1 } this.Field4 = &v130 case 4: v131 := uint32(r.Uint32()) this.Field5 = &v131 case 5: v132 := uint64(uint64(r.Uint32())) this.Field6 = &v132 case 6: v133 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v133 case 7: v134 := string(randStringThetest(r)) this.Field14 = &v134 case 8: v135 := r.Intn(100) this.Field15 = make([]byte, v135) for i := 0; i < v135; i++ { this.Field15[i] = byte(r.Intn(256)) } } return this } func NewPopulatedNinOptStructUnion(r randyThetest, easy bool) *NinOptStructUnion { this := &NinOptStructUnion{} fieldNum := r.Intn(9) switch fieldNum { case 0: v136 := float64(r.Float64()) if r.Intn(2) == 0 { v136 *= -1 } this.Field1 = &v136 case 1: v137 := float32(r.Float32()) if r.Intn(2) == 0 { v137 *= -1 } this.Field2 = &v137 case 2: this.Field3 = NewPopulatedNidOptNative(r, easy) case 3: this.Field4 = NewPopulatedNinOptNative(r, easy) case 4: v138 := uint64(uint64(r.Uint32())) this.Field6 = &v138 case 5: v139 := int32(r.Int31()) if r.Intn(2) == 0 { v139 *= -1 } this.Field7 = &v139 case 6: v140 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v140 case 7: v141 := string(randStringThetest(r)) this.Field14 = &v141 case 8: v142 := r.Intn(100) this.Field15 = make([]byte, v142) for i := 0; i < v142; i++ { this.Field15[i] = byte(r.Intn(256)) } } return this } func NewPopulatedNinEmbeddedStructUnion(r randyThetest, easy bool) *NinEmbeddedStructUnion { this := &NinEmbeddedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.NidOptNative = NewPopulatedNidOptNative(r, easy) case 1: this.Field200 = NewPopulatedNinOptNative(r, easy) case 2: v143 := bool(bool(r.Intn(2) == 0)) this.Field210 = &v143 } return this } func NewPopulatedNinNestedStructUnion(r randyThetest, easy bool) *NinNestedStructUnion { this := &NinNestedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.Field1 = NewPopulatedNinOptNativeUnion(r, easy) case 1: this.Field2 = NewPopulatedNinOptStructUnion(r, easy) case 2: this.Field3 = NewPopulatedNinEmbeddedStructUnion(r, easy) } return this } func NewPopulatedTree(r randyThetest, easy bool) *Tree { this := &Tree{} fieldNum := r.Intn(102) switch fieldNum { case 0: this.Or = NewPopulatedOrBranch(r, easy) case 1: this.And = NewPopulatedAndBranch(r, easy) case 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101: this.Leaf = NewPopulatedLeaf(r, easy) } return this } func NewPopulatedOrBranch(r randyThetest, easy bool) *OrBranch { this := &OrBranch{} v144 := NewPopulatedTree(r, easy) this.Left = *v144 v145 := NewPopulatedTree(r, easy) this.Right = *v145 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedAndBranch(r randyThetest, easy bool) *AndBranch { this := &AndBranch{} v146 := NewPopulatedTree(r, easy) this.Left = *v146 v147 := NewPopulatedTree(r, easy) this.Right = *v147 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedLeaf(r randyThetest, easy bool) *Leaf { this := &Leaf{} this.Value = int64(r.Int63()) if r.Intn(2) == 0 { this.Value *= -1 } this.StrValue = string(randStringThetest(r)) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedDeepTree(r randyThetest, easy bool) *DeepTree { this := &DeepTree{} fieldNum := r.Intn(102) switch fieldNum { case 0: this.Down = NewPopulatedADeepBranch(r, easy) case 1: this.And = NewPopulatedAndDeepBranch(r, easy) case 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101: this.Leaf = NewPopulatedDeepLeaf(r, easy) } return this } func NewPopulatedADeepBranch(r randyThetest, easy bool) *ADeepBranch { this := &ADeepBranch{} v148 := NewPopulatedDeepTree(r, easy) this.Down = *v148 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedAndDeepBranch(r randyThetest, easy bool) *AndDeepBranch { this := &AndDeepBranch{} v149 := NewPopulatedDeepTree(r, easy) this.Left = *v149 v150 := NewPopulatedDeepTree(r, easy) this.Right = *v150 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedDeepLeaf(r randyThetest, easy bool) *DeepLeaf { this := &DeepLeaf{} v151 := NewPopulatedTree(r, easy) this.Tree = *v151 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNil(r randyThetest, easy bool) *Nil { this := &Nil{} if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 1) } return this } func NewPopulatedNidOptEnum(r randyThetest, easy bool) *NidOptEnum { this := &NidOptEnum{} this.Field1 = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptEnum(r randyThetest, easy bool) *NinOptEnum { this := &NinOptEnum{} if r.Intn(10) != 0 { v152 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.Field1 = &v152 } if r.Intn(10) != 0 { v153 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v153 } if r.Intn(10) != 0 { v154 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v154 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNidRepEnum(r randyThetest, easy bool) *NidRepEnum { this := &NidRepEnum{} if r.Intn(10) != 0 { v155 := r.Intn(10) this.Field1 = make([]TheTestEnum, v155) for i := 0; i < v155; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v156 := r.Intn(10) this.Field2 = make([]YetAnotherTestEnum, v156) for i := 0; i < v156; i++ { this.Field2[i] = YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if r.Intn(10) != 0 { v157 := r.Intn(10) this.Field3 = make([]YetYetAnotherTestEnum, v157) for i := 0; i < v157; i++ { this.Field3[i] = YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinRepEnum(r randyThetest, easy bool) *NinRepEnum { this := &NinRepEnum{} if r.Intn(10) != 0 { v158 := r.Intn(10) this.Field1 = make([]TheTestEnum, v158) for i := 0; i < v158; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v159 := r.Intn(10) this.Field2 = make([]YetAnotherTestEnum, v159) for i := 0; i < v159; i++ { this.Field2[i] = YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if r.Intn(10) != 0 { v160 := r.Intn(10) this.Field3 = make([]YetYetAnotherTestEnum, v160) for i := 0; i < v160; i++ { this.Field3[i] = YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinOptEnumDefault(r randyThetest, easy bool) *NinOptEnumDefault { this := &NinOptEnumDefault{} if r.Intn(10) != 0 { v161 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.Field1 = &v161 } if r.Intn(10) != 0 { v162 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v162 } if r.Intn(10) != 0 { v163 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v163 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedAnotherNinOptEnum(r randyThetest, easy bool) *AnotherNinOptEnum { this := &AnotherNinOptEnum{} if r.Intn(10) != 0 { v164 := AnotherTestEnum([]int32{10, 11}[r.Intn(2)]) this.Field1 = &v164 } if r.Intn(10) != 0 { v165 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v165 } if r.Intn(10) != 0 { v166 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v166 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedAnotherNinOptEnumDefault(r randyThetest, easy bool) *AnotherNinOptEnumDefault { this := &AnotherNinOptEnumDefault{} if r.Intn(10) != 0 { v167 := AnotherTestEnum([]int32{10, 11}[r.Intn(2)]) this.Field1 = &v167 } if r.Intn(10) != 0 { v168 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v168 } if r.Intn(10) != 0 { v169 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v169 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedTimer(r randyThetest, easy bool) *Timer { this := &Timer{} this.Time1 = int64(r.Int63()) if r.Intn(2) == 0 { this.Time1 *= -1 } this.Time2 = int64(r.Int63()) if r.Intn(2) == 0 { this.Time2 *= -1 } v170 := r.Intn(100) this.Data = make([]byte, v170) for i := 0; i < v170; i++ { this.Data[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedMyExtendable(r randyThetest, easy bool) *MyExtendable { this := &MyExtendable{} if r.Intn(10) != 0 { v171 := int64(r.Int63()) if r.Intn(2) == 0 { v171 *= -1 } this.Field1 = &v171 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { fieldNumber := r.Intn(100) + 100 wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 201) } return this } func NewPopulatedOtherExtenable(r randyThetest, easy bool) *OtherExtenable { this := &OtherExtenable{} if r.Intn(10) != 0 { this.M = NewPopulatedMyExtendable(r, easy) } if r.Intn(10) != 0 { v172 := int64(r.Int63()) if r.Intn(2) == 0 { v172 *= -1 } this.Field2 = &v172 } if r.Intn(10) != 0 { v173 := int64(r.Int63()) if r.Intn(2) == 0 { v173 *= -1 } this.Field13 = &v173 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { eIndex := r.Intn(2) fieldNumber := 0 switch eIndex { case 0: fieldNumber = r.Intn(3) + 14 case 1: fieldNumber = r.Intn(3) + 10 } wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 18) } return this } func NewPopulatedNestedDefinition(r randyThetest, easy bool) *NestedDefinition { this := &NestedDefinition{} if r.Intn(10) != 0 { v174 := int64(r.Int63()) if r.Intn(2) == 0 { v174 *= -1 } this.Field1 = &v174 } if r.Intn(10) != 0 { v175 := NestedDefinition_NestedEnum([]int32{1}[r.Intn(1)]) this.EnumField = &v175 } if r.Intn(10) != 0 { this.NNM = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if r.Intn(10) != 0 { this.NM = NewPopulatedNestedDefinition_NestedMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 5) } return this } func NewPopulatedNestedDefinition_NestedMessage(r randyThetest, easy bool) *NestedDefinition_NestedMessage { this := &NestedDefinition_NestedMessage{} if r.Intn(10) != 0 { v176 := uint64(uint64(r.Uint32())) this.NestedField1 = &v176 } if r.Intn(10) != 0 { this.NNM = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r randyThetest, easy bool) *NestedDefinition_NestedMessage_NestedNestedMsg { this := &NestedDefinition_NestedMessage_NestedNestedMsg{} if r.Intn(10) != 0 { v177 := string(randStringThetest(r)) this.NestedNestedField1 = &v177 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 11) } return this } func NewPopulatedNestedScope(r randyThetest, easy bool) *NestedScope { this := &NestedScope{} if r.Intn(10) != 0 { this.A = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if r.Intn(10) != 0 { v178 := NestedDefinition_NestedEnum([]int32{1}[r.Intn(1)]) this.B = &v178 } if r.Intn(10) != 0 { this.C = NewPopulatedNestedDefinition_NestedMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinOptNativeDefault(r randyThetest, easy bool) *NinOptNativeDefault { this := &NinOptNativeDefault{} if r.Intn(10) != 0 { v179 := float64(r.Float64()) if r.Intn(2) == 0 { v179 *= -1 } this.Field1 = &v179 } if r.Intn(10) != 0 { v180 := float32(r.Float32()) if r.Intn(2) == 0 { v180 *= -1 } this.Field2 = &v180 } if r.Intn(10) != 0 { v181 := int32(r.Int31()) if r.Intn(2) == 0 { v181 *= -1 } this.Field3 = &v181 } if r.Intn(10) != 0 { v182 := int64(r.Int63()) if r.Intn(2) == 0 { v182 *= -1 } this.Field4 = &v182 } if r.Intn(10) != 0 { v183 := uint32(r.Uint32()) this.Field5 = &v183 } if r.Intn(10) != 0 { v184 := uint64(uint64(r.Uint32())) this.Field6 = &v184 } if r.Intn(10) != 0 { v185 := int32(r.Int31()) if r.Intn(2) == 0 { v185 *= -1 } this.Field7 = &v185 } if r.Intn(10) != 0 { v186 := int64(r.Int63()) if r.Intn(2) == 0 { v186 *= -1 } this.Field8 = &v186 } if r.Intn(10) != 0 { v187 := uint32(r.Uint32()) this.Field9 = &v187 } if r.Intn(10) != 0 { v188 := int32(r.Int31()) if r.Intn(2) == 0 { v188 *= -1 } this.Field10 = &v188 } if r.Intn(10) != 0 { v189 := uint64(uint64(r.Uint32())) this.Field11 = &v189 } if r.Intn(10) != 0 { v190 := int64(r.Int63()) if r.Intn(2) == 0 { v190 *= -1 } this.Field12 = &v190 } if r.Intn(10) != 0 { v191 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v191 } if r.Intn(10) != 0 { v192 := string(randStringThetest(r)) this.Field14 = &v192 } if r.Intn(10) != 0 { v193 := r.Intn(100) this.Field15 = make([]byte, v193) for i := 0; i < v193; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomContainer(r randyThetest, easy bool) *CustomContainer { this := &CustomContainer{} v194 := NewPopulatedNidOptCustom(r, easy) this.CustomStruct = *v194 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedCustomNameNidOptNative(r randyThetest, easy bool) *CustomNameNidOptNative { this := &CustomNameNidOptNative{} this.FieldA = float64(r.Float64()) if r.Intn(2) == 0 { this.FieldA *= -1 } this.FieldB = float32(r.Float32()) if r.Intn(2) == 0 { this.FieldB *= -1 } this.FieldC = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldC *= -1 } this.FieldD = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldD *= -1 } this.FieldE = uint32(r.Uint32()) this.FieldF = uint64(uint64(r.Uint32())) this.FieldG = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldG *= -1 } this.FieldH = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldH *= -1 } this.FieldI = uint32(r.Uint32()) this.FieldJ = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldJ *= -1 } this.FieldK = uint64(uint64(r.Uint32())) this.FieldL = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldL *= -1 } this.FieldM = bool(bool(r.Intn(2) == 0)) this.FieldN = string(randStringThetest(r)) v195 := r.Intn(100) this.FieldO = make([]byte, v195) for i := 0; i < v195; i++ { this.FieldO[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinOptNative(r randyThetest, easy bool) *CustomNameNinOptNative { this := &CustomNameNinOptNative{} if r.Intn(10) != 0 { v196 := float64(r.Float64()) if r.Intn(2) == 0 { v196 *= -1 } this.FieldA = &v196 } if r.Intn(10) != 0 { v197 := float32(r.Float32()) if r.Intn(2) == 0 { v197 *= -1 } this.FieldB = &v197 } if r.Intn(10) != 0 { v198 := int32(r.Int31()) if r.Intn(2) == 0 { v198 *= -1 } this.FieldC = &v198 } if r.Intn(10) != 0 { v199 := int64(r.Int63()) if r.Intn(2) == 0 { v199 *= -1 } this.FieldD = &v199 } if r.Intn(10) != 0 { v200 := uint32(r.Uint32()) this.FieldE = &v200 } if r.Intn(10) != 0 { v201 := uint64(uint64(r.Uint32())) this.FieldF = &v201 } if r.Intn(10) != 0 { v202 := int32(r.Int31()) if r.Intn(2) == 0 { v202 *= -1 } this.FieldG = &v202 } if r.Intn(10) != 0 { v203 := int64(r.Int63()) if r.Intn(2) == 0 { v203 *= -1 } this.FieldH = &v203 } if r.Intn(10) != 0 { v204 := uint32(r.Uint32()) this.FieldI = &v204 } if r.Intn(10) != 0 { v205 := int32(r.Int31()) if r.Intn(2) == 0 { v205 *= -1 } this.FieldJ = &v205 } if r.Intn(10) != 0 { v206 := uint64(uint64(r.Uint32())) this.FieldK = &v206 } if r.Intn(10) != 0 { v207 := int64(r.Int63()) if r.Intn(2) == 0 { v207 *= -1 } this.FielL = &v207 } if r.Intn(10) != 0 { v208 := bool(bool(r.Intn(2) == 0)) this.FieldM = &v208 } if r.Intn(10) != 0 { v209 := string(randStringThetest(r)) this.FieldN = &v209 } if r.Intn(10) != 0 { v210 := r.Intn(100) this.FieldO = make([]byte, v210) for i := 0; i < v210; i++ { this.FieldO[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinRepNative(r randyThetest, easy bool) *CustomNameNinRepNative { this := &CustomNameNinRepNative{} if r.Intn(10) != 0 { v211 := r.Intn(10) this.FieldA = make([]float64, v211) for i := 0; i < v211; i++ { this.FieldA[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.FieldA[i] *= -1 } } } if r.Intn(10) != 0 { v212 := r.Intn(10) this.FieldB = make([]float32, v212) for i := 0; i < v212; i++ { this.FieldB[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.FieldB[i] *= -1 } } } if r.Intn(10) != 0 { v213 := r.Intn(10) this.FieldC = make([]int32, v213) for i := 0; i < v213; i++ { this.FieldC[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldC[i] *= -1 } } } if r.Intn(10) != 0 { v214 := r.Intn(10) this.FieldD = make([]int64, v214) for i := 0; i < v214; i++ { this.FieldD[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldD[i] *= -1 } } } if r.Intn(10) != 0 { v215 := r.Intn(10) this.FieldE = make([]uint32, v215) for i := 0; i < v215; i++ { this.FieldE[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v216 := r.Intn(10) this.FieldF = make([]uint64, v216) for i := 0; i < v216; i++ { this.FieldF[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v217 := r.Intn(10) this.FieldG = make([]int32, v217) for i := 0; i < v217; i++ { this.FieldG[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldG[i] *= -1 } } } if r.Intn(10) != 0 { v218 := r.Intn(10) this.FieldH = make([]int64, v218) for i := 0; i < v218; i++ { this.FieldH[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldH[i] *= -1 } } } if r.Intn(10) != 0 { v219 := r.Intn(10) this.FieldI = make([]uint32, v219) for i := 0; i < v219; i++ { this.FieldI[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v220 := r.Intn(10) this.FieldJ = make([]int32, v220) for i := 0; i < v220; i++ { this.FieldJ[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldJ[i] *= -1 } } } if r.Intn(10) != 0 { v221 := r.Intn(10) this.FieldK = make([]uint64, v221) for i := 0; i < v221; i++ { this.FieldK[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v222 := r.Intn(10) this.FieldL = make([]int64, v222) for i := 0; i < v222; i++ { this.FieldL[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldL[i] *= -1 } } } if r.Intn(10) != 0 { v223 := r.Intn(10) this.FieldM = make([]bool, v223) for i := 0; i < v223; i++ { this.FieldM[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v224 := r.Intn(10) this.FieldN = make([]string, v224) for i := 0; i < v224; i++ { this.FieldN[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v225 := r.Intn(10) this.FieldO = make([][]byte, v225) for i := 0; i < v225; i++ { v226 := r.Intn(100) this.FieldO[i] = make([]byte, v226) for j := 0; j < v226; j++ { this.FieldO[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinStruct(r randyThetest, easy bool) *CustomNameNinStruct { this := &CustomNameNinStruct{} if r.Intn(10) != 0 { v227 := float64(r.Float64()) if r.Intn(2) == 0 { v227 *= -1 } this.FieldA = &v227 } if r.Intn(10) != 0 { v228 := float32(r.Float32()) if r.Intn(2) == 0 { v228 *= -1 } this.FieldB = &v228 } if r.Intn(10) != 0 { this.FieldC = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v229 := r.Intn(5) this.FieldD = make([]*NinOptNative, v229) for i := 0; i < v229; i++ { this.FieldD[i] = NewPopulatedNinOptNative(r, easy) } } if r.Intn(10) != 0 { v230 := uint64(uint64(r.Uint32())) this.FieldE = &v230 } if r.Intn(10) != 0 { v231 := int32(r.Int31()) if r.Intn(2) == 0 { v231 *= -1 } this.FieldF = &v231 } if r.Intn(10) != 0 { this.FieldG = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v232 := bool(bool(r.Intn(2) == 0)) this.FieldH = &v232 } if r.Intn(10) != 0 { v233 := string(randStringThetest(r)) this.FieldI = &v233 } if r.Intn(10) != 0 { v234 := r.Intn(100) this.FieldJ = make([]byte, v234) for i := 0; i < v234; i++ { this.FieldJ[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameCustomType(r randyThetest, easy bool) *CustomNameCustomType { this := &CustomNameCustomType{} if r.Intn(10) != 0 { this.FieldA = NewPopulatedUuid(r) } if r.Intn(10) != 0 { this.FieldB = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) } if r.Intn(10) != 0 { v235 := r.Intn(10) this.FieldC = make([]Uuid, v235) for i := 0; i < v235; i++ { v236 := NewPopulatedUuid(r) this.FieldC[i] = *v236 } } if r.Intn(10) != 0 { v237 := r.Intn(10) this.FieldD = make([]github_com_gogo_protobuf_test_custom.Uint128, v237) for i := 0; i < v237; i++ { v238 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.FieldD[i] = *v238 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 5) } return this } func NewPopulatedCustomNameNinEmbeddedStructUnion(r randyThetest, easy bool) *CustomNameNinEmbeddedStructUnion { this := &CustomNameNinEmbeddedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.NidOptNative = NewPopulatedNidOptNative(r, easy) case 1: this.FieldA = NewPopulatedNinOptNative(r, easy) case 2: v239 := bool(bool(r.Intn(2) == 0)) this.FieldB = &v239 } return this } func NewPopulatedCustomNameEnum(r randyThetest, easy bool) *CustomNameEnum { this := &CustomNameEnum{} if r.Intn(10) != 0 { v240 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.FieldA = &v240 } if r.Intn(10) != 0 { v241 := r.Intn(10) this.FieldB = make([]TheTestEnum, v241) for i := 0; i < v241; i++ { this.FieldB[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNoExtensionsMap(r randyThetest, easy bool) *NoExtensionsMap { this := &NoExtensionsMap{} if r.Intn(10) != 0 { v242 := int64(r.Int63()) if r.Intn(2) == 0 { v242 *= -1 } this.Field1 = &v242 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { fieldNumber := r.Intn(100) + 100 wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 201) } return this } func NewPopulatedUnrecognized(r randyThetest, easy bool) *Unrecognized { this := &Unrecognized{} if r.Intn(10) != 0 { v243 := string(randStringThetest(r)) this.Field1 = &v243 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUnrecognizedWithInner(r randyThetest, easy bool) *UnrecognizedWithInner { this := &UnrecognizedWithInner{} if r.Intn(10) != 0 { v244 := r.Intn(5) this.Embedded = make([]*UnrecognizedWithInner_Inner, v244) for i := 0; i < v244; i++ { this.Embedded[i] = NewPopulatedUnrecognizedWithInner_Inner(r, easy) } } if r.Intn(10) != 0 { v245 := string(randStringThetest(r)) this.Field2 = &v245 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedUnrecognizedWithInner_Inner(r randyThetest, easy bool) *UnrecognizedWithInner_Inner { this := &UnrecognizedWithInner_Inner{} if r.Intn(10) != 0 { v246 := uint32(r.Uint32()) this.Field1 = &v246 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUnrecognizedWithEmbed(r randyThetest, easy bool) *UnrecognizedWithEmbed { this := &UnrecognizedWithEmbed{} v247 := NewPopulatedUnrecognizedWithEmbed_Embedded(r, easy) this.UnrecognizedWithEmbed_Embedded = *v247 if r.Intn(10) != 0 { v248 := string(randStringThetest(r)) this.Field2 = &v248 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedUnrecognizedWithEmbed_Embedded(r randyThetest, easy bool) *UnrecognizedWithEmbed_Embedded { this := &UnrecognizedWithEmbed_Embedded{} if r.Intn(10) != 0 { v249 := uint32(r.Uint32()) this.Field1 = &v249 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNode(r randyThetest, easy bool) *Node { this := &Node{} if r.Intn(10) != 0 { v250 := string(randStringThetest(r)) this.Label = &v250 } if r.Intn(10) == 0 { v251 := r.Intn(5) this.Children = make([]*Node, v251) for i := 0; i < v251; i++ { this.Children[i] = NewPopulatedNode(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNonByteCustomType(r randyThetest, easy bool) *NonByteCustomType { this := &NonByteCustomType{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedT(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNidOptNonByteCustomType(r randyThetest, easy bool) *NidOptNonByteCustomType { this := &NidOptNonByteCustomType{} v252 := NewPopulatedT(r) this.Field1 = *v252 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptNonByteCustomType(r randyThetest, easy bool) *NinOptNonByteCustomType { this := &NinOptNonByteCustomType{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedT(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNidRepNonByteCustomType(r randyThetest, easy bool) *NidRepNonByteCustomType { this := &NidRepNonByteCustomType{} if r.Intn(10) != 0 { v253 := r.Intn(10) this.Field1 = make([]T, v253) for i := 0; i < v253; i++ { v254 := NewPopulatedT(r) this.Field1[i] = *v254 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinRepNonByteCustomType(r randyThetest, easy bool) *NinRepNonByteCustomType { this := &NinRepNonByteCustomType{} if r.Intn(10) != 0 { v255 := r.Intn(10) this.Field1 = make([]T, v255) for i := 0; i < v255; i++ { v256 := NewPopulatedT(r) this.Field1[i] = *v256 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedProtoType(r randyThetest, easy bool) *ProtoType { this := &ProtoType{} if r.Intn(10) != 0 { v257 := string(randStringThetest(r)) this.Field2 = &v257 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } type randyThetest interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneThetest(r randyThetest) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringThetest(r randyThetest) string { v258 := r.Intn(100) tmps := make([]rune, v258) for i := 0; i < v258; i++ { tmps[i] = randUTF8RuneThetest(r) } return string(tmps) } func randUnrecognizedThetest(r randyThetest, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldThetest(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldThetest(dAtA []byte, r randyThetest, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) v259 := r.Int63() if r.Intn(2) == 0 { v259 *= -1 } dAtA = encodeVarintPopulateThetest(dAtA, uint64(v259)) case 1: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateThetest(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateThetest(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *NidOptNative) Size() (n int) { var l int _ = l n += 9 n += 5 n += 1 + sovThetest(uint64(m.Field3)) n += 1 + sovThetest(uint64(m.Field4)) n += 1 + sovThetest(uint64(m.Field5)) n += 1 + sovThetest(uint64(m.Field6)) n += 1 + sozThetest(uint64(m.Field7)) n += 1 + sozThetest(uint64(m.Field8)) n += 5 n += 5 n += 9 n += 9 n += 2 l = len(m.Field14) n += 1 + l + sovThetest(uint64(l)) if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNative) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozThetest(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field5) > 0 { for _, e := range m.Field5 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field9) > 0 { n += 5 * len(m.Field9) } if len(m.Field10) > 0 { n += 5 * len(m.Field10) } if len(m.Field11) > 0 { n += 9 * len(m.Field11) } if len(m.Field12) > 0 { n += 9 * len(m.Field12) } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field5) > 0 { for _, e := range m.Field5 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field9) > 0 { n += 5 * len(m.Field9) } if len(m.Field10) > 0 { n += 5 * len(m.Field10) } if len(m.Field11) > 0 { n += 9 * len(m.Field11) } if len(m.Field12) > 0 { n += 9 * len(m.Field12) } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepPackedNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 1 + sovThetest(uint64(len(m.Field1)*8)) + len(m.Field1)*8 } if len(m.Field2) > 0 { n += 1 + sovThetest(uint64(len(m.Field2)*4)) + len(m.Field2)*4 } if len(m.Field3) > 0 { l = 0 for _, e := range m.Field3 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field4) > 0 { l = 0 for _, e := range m.Field4 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field5) > 0 { l = 0 for _, e := range m.Field5 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field6) > 0 { l = 0 for _, e := range m.Field6 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field7) > 0 { l = 0 for _, e := range m.Field7 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field8) > 0 { l = 0 for _, e := range m.Field8 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field9) > 0 { n += 1 + sovThetest(uint64(len(m.Field9)*4)) + len(m.Field9)*4 } if len(m.Field10) > 0 { n += 1 + sovThetest(uint64(len(m.Field10)*4)) + len(m.Field10)*4 } if len(m.Field11) > 0 { n += 1 + sovThetest(uint64(len(m.Field11)*8)) + len(m.Field11)*8 } if len(m.Field12) > 0 { n += 1 + sovThetest(uint64(len(m.Field12)*8)) + len(m.Field12)*8 } if len(m.Field13) > 0 { n += 1 + sovThetest(uint64(len(m.Field13))) + len(m.Field13)*1 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepPackedNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 1 + sovThetest(uint64(len(m.Field1)*8)) + len(m.Field1)*8 } if len(m.Field2) > 0 { n += 1 + sovThetest(uint64(len(m.Field2)*4)) + len(m.Field2)*4 } if len(m.Field3) > 0 { l = 0 for _, e := range m.Field3 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field4) > 0 { l = 0 for _, e := range m.Field4 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field5) > 0 { l = 0 for _, e := range m.Field5 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field6) > 0 { l = 0 for _, e := range m.Field6 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field7) > 0 { l = 0 for _, e := range m.Field7 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field8) > 0 { l = 0 for _, e := range m.Field8 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field9) > 0 { n += 1 + sovThetest(uint64(len(m.Field9)*4)) + len(m.Field9)*4 } if len(m.Field10) > 0 { n += 1 + sovThetest(uint64(len(m.Field10)*4)) + len(m.Field10)*4 } if len(m.Field11) > 0 { n += 1 + sovThetest(uint64(len(m.Field11)*8)) + len(m.Field11)*8 } if len(m.Field12) > 0 { n += 1 + sovThetest(uint64(len(m.Field12)*8)) + len(m.Field12)*8 } if len(m.Field13) > 0 { n += 1 + sovThetest(uint64(len(m.Field13))) + len(m.Field13)*1 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptStruct) Size() (n int) { var l int _ = l n += 9 n += 5 l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) n += 1 + sovThetest(uint64(m.Field6)) n += 1 + sozThetest(uint64(m.Field7)) l = m.Field8.Size() n += 1 + l + sovThetest(uint64(l)) n += 2 l = len(m.Field14) n += 1 + l + sovThetest(uint64(l)) if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptStruct) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field4 != nil { l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { l = m.Field8.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepStruct) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepStruct) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidEmbeddedStruct) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) n += 3 if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinEmbeddedStruct) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field200 != nil { l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) } if m.Field210 != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidNestedStruct) Size() (n int) { var l int _ = l l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) if len(m.Field2) > 0 { for _, e := range m.Field2 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinNestedStruct) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.Field2) > 0 { for _, e := range m.Field2 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptCustom) Size() (n int) { var l int _ = l l = m.Id.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomDash) Size() (n int) { var l int _ = l if m.Value != nil { l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptCustom) Size() (n int) { var l int _ = l if m.Id != nil { l = m.Id.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Value != nil { l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepCustom) Size() (n int) { var l int _ = l if len(m.Id) > 0 { for _, e := range m.Id { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Value) > 0 { for _, e := range m.Value { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepCustom) Size() (n int) { var l int _ = l if len(m.Id) > 0 { for _, e := range m.Id { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Value) > 0 { for _, e := range m.Value { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNativeUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptStructUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field4 != nil { l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinEmbeddedStructUnion) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field200 != nil { l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) } if m.Field210 != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinNestedStructUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field2 != nil { l = m.Field2.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Tree) Size() (n int) { var l int _ = l if m.Or != nil { l = m.Or.Size() n += 1 + l + sovThetest(uint64(l)) } if m.And != nil { l = m.And.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Leaf != nil { l = m.Leaf.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OrBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AndBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Leaf) Size() (n int) { var l int _ = l n += 1 + sovThetest(uint64(m.Value)) l = len(m.StrValue) n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *DeepTree) Size() (n int) { var l int _ = l if m.Down != nil { l = m.Down.Size() n += 1 + l + sovThetest(uint64(l)) } if m.And != nil { l = m.And.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Leaf != nil { l = m.Leaf.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *ADeepBranch) Size() (n int) { var l int _ = l l = m.Down.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AndDeepBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *DeepLeaf) Size() (n int) { var l int _ = l l = m.Tree.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Nil) Size() (n int) { var l int _ = l if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptEnum) Size() (n int) { var l int _ = l n += 1 + sovThetest(uint64(m.Field1)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptEnum) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepEnum) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field2) > 0 { for _, e := range m.Field2 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepEnum) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field2) > 0 { for _, e := range m.Field2 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptEnumDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AnotherNinOptEnum) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AnotherNinOptEnumDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Timer) Size() (n int) { var l int _ = l n += 9 n += 9 if m.Data != nil { l = len(m.Data) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *MyExtendable) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } n += github_com_gogo_protobuf_proto.SizeOfInternalExtension(m) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OtherExtenable) Size() (n int) { var l int _ = l if m.M != nil { l = m.M.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field13 != nil { n += 1 + sovThetest(uint64(*m.Field13)) } n += github_com_gogo_protobuf_proto.SizeOfInternalExtension(m) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.EnumField != nil { n += 1 + sovThetest(uint64(*m.EnumField)) } if m.NNM != nil { l = m.NNM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.NM != nil { l = m.NM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition_NestedMessage) Size() (n int) { var l int _ = l if m.NestedField1 != nil { n += 9 } if m.NNM != nil { l = m.NNM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Size() (n int) { var l int _ = l if m.NestedNestedField1 != nil { l = len(*m.NestedNestedField1) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedScope) Size() (n int) { var l int _ = l if m.A != nil { l = m.A.Size() n += 1 + l + sovThetest(uint64(l)) } if m.B != nil { n += 1 + sovThetest(uint64(*m.B)) } if m.C != nil { l = m.C.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNativeDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozThetest(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomContainer) Size() (n int) { var l int _ = l l = m.CustomStruct.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNidOptNative) Size() (n int) { var l int _ = l n += 9 n += 5 n += 1 + sovThetest(uint64(m.FieldC)) n += 1 + sovThetest(uint64(m.FieldD)) n += 1 + sovThetest(uint64(m.FieldE)) n += 1 + sovThetest(uint64(m.FieldF)) n += 1 + sozThetest(uint64(m.FieldG)) n += 1 + sozThetest(uint64(m.FieldH)) n += 5 n += 5 n += 9 n += 9 n += 2 l = len(m.FieldN) n += 1 + l + sovThetest(uint64(l)) if m.FieldO != nil { l = len(m.FieldO) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinOptNative) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 9 } if m.FieldB != nil { n += 5 } if m.FieldC != nil { n += 1 + sovThetest(uint64(*m.FieldC)) } if m.FieldD != nil { n += 1 + sovThetest(uint64(*m.FieldD)) } if m.FieldE != nil { n += 1 + sovThetest(uint64(*m.FieldE)) } if m.FieldF != nil { n += 1 + sovThetest(uint64(*m.FieldF)) } if m.FieldG != nil { n += 1 + sozThetest(uint64(*m.FieldG)) } if m.FieldH != nil { n += 1 + sozThetest(uint64(*m.FieldH)) } if m.FieldI != nil { n += 5 } if m.FieldJ != nil { n += 5 } if m.FieldK != nil { n += 9 } if m.FielL != nil { n += 9 } if m.FieldM != nil { n += 2 } if m.FieldN != nil { l = len(*m.FieldN) n += 1 + l + sovThetest(uint64(l)) } if m.FieldO != nil { l = len(m.FieldO) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinRepNative) Size() (n int) { var l int _ = l if len(m.FieldA) > 0 { n += 9 * len(m.FieldA) } if len(m.FieldB) > 0 { n += 5 * len(m.FieldB) } if len(m.FieldC) > 0 { for _, e := range m.FieldC { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldD) > 0 { for _, e := range m.FieldD { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldE) > 0 { for _, e := range m.FieldE { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldF) > 0 { for _, e := range m.FieldF { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldG) > 0 { for _, e := range m.FieldG { n += 1 + sozThetest(uint64(e)) } } if len(m.FieldH) > 0 { for _, e := range m.FieldH { n += 1 + sozThetest(uint64(e)) } } if len(m.FieldI) > 0 { n += 5 * len(m.FieldI) } if len(m.FieldJ) > 0 { n += 5 * len(m.FieldJ) } if len(m.FieldK) > 0 { n += 9 * len(m.FieldK) } if len(m.FieldL) > 0 { n += 9 * len(m.FieldL) } if len(m.FieldM) > 0 { n += 2 * len(m.FieldM) } if len(m.FieldN) > 0 { for _, s := range m.FieldN { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.FieldO) > 0 { for _, b := range m.FieldO { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinStruct) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 9 } if m.FieldB != nil { n += 5 } if m.FieldC != nil { l = m.FieldC.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.FieldD) > 0 { for _, e := range m.FieldD { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.FieldE != nil { n += 1 + sovThetest(uint64(*m.FieldE)) } if m.FieldF != nil { n += 1 + sozThetest(uint64(*m.FieldF)) } if m.FieldG != nil { l = m.FieldG.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldH != nil { n += 2 } if m.FieldI != nil { l = len(*m.FieldI) n += 1 + l + sovThetest(uint64(l)) } if m.FieldJ != nil { l = len(m.FieldJ) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameCustomType) Size() (n int) { var l int _ = l if m.FieldA != nil { l = m.FieldA.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldB != nil { l = m.FieldB.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.FieldC) > 0 { for _, e := range m.FieldC { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.FieldD) > 0 { for _, e := range m.FieldD { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinEmbeddedStructUnion) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldA != nil { l = m.FieldA.Size() n += 2 + l + sovThetest(uint64(l)) } if m.FieldB != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameEnum) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 1 + sovThetest(uint64(*m.FieldA)) } if len(m.FieldB) > 0 { for _, e := range m.FieldB { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NoExtensionsMap) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.XXX_extensions != nil { n += len(m.XXX_extensions) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Unrecognized) Size() (n int) { var l int _ = l if m.Field1 != nil { l = len(*m.Field1) n += 1 + l + sovThetest(uint64(l)) } return n } func (m *UnrecognizedWithInner) Size() (n int) { var l int _ = l if len(m.Embedded) > 0 { for _, e := range m.Embedded { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *UnrecognizedWithInner_Inner) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } return n } func (m *UnrecognizedWithEmbed) Size() (n int) { var l int _ = l l = m.UnrecognizedWithEmbed_Embedded.Size() n += 1 + l + sovThetest(uint64(l)) if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *UnrecognizedWithEmbed_Embedded) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } return n } func (m *Node) Size() (n int) { var l int _ = l if m.Label != nil { l = len(*m.Label) n += 1 + l + sovThetest(uint64(l)) } if len(m.Children) > 0 { for _, e := range m.Children { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NonByteCustomType) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptNonByteCustomType) Size() (n int) { var l int _ = l l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNonByteCustomType) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepNonByteCustomType) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepNonByteCustomType) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *ProtoType) Size() (n int) { var l int _ = l if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovThetest(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozThetest(x uint64) (n int) { return sovThetest(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *NidOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNative{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + valueToStringThetest(this.Field8) + `,`, `Field9:` + valueToStringThetest(this.Field9) + `,`, `Field10:` + valueToStringThetest(this.Field10) + `,`, `Field11:` + valueToStringThetest(this.Field11) + `,`, `Field12:` + valueToStringThetest(this.Field12) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepPackedNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepPackedNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepPackedNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepPackedNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(strings.Replace(this.Field3.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field4:` + strings.Replace(strings.Replace(this.Field4.String(), "NinOptNative", "NinOptNative", 1), `&`, ``, 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(strings.Replace(this.Field8.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptStruct{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field4:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1), `&`, ``, 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidEmbeddedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidEmbeddedStruct{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(strings.Replace(this.Field200.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field210:` + fmt.Sprintf("%v", this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinEmbeddedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinEmbeddedStruct{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(fmt.Sprintf("%v", this.Field200), "NidOptNative", "NidOptNative", 1) + `,`, `Field210:` + valueToStringThetest(this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidNestedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidNestedStruct{`, `Field1:` + strings.Replace(strings.Replace(this.Field1.String(), "NidOptStruct", "NidOptStruct", 1), `&`, ``, 1) + `,`, `Field2:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field2), "NidRepStruct", "NidRepStruct", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinNestedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinNestedStruct{`, `Field1:` + strings.Replace(fmt.Sprintf("%v", this.Field1), "NinOptStruct", "NinOptStruct", 1) + `,`, `Field2:` + strings.Replace(fmt.Sprintf("%v", this.Field2), "NinRepStruct", "NinRepStruct", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomDash) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomDash{`, `Value:` + valueToStringThetest(this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptCustom{`, `Id:` + valueToStringThetest(this.Id) + `,`, `Value:` + valueToStringThetest(this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNativeUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNativeUnion{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptStructUnion{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinEmbeddedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinEmbeddedStructUnion{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(fmt.Sprintf("%v", this.Field200), "NinOptNative", "NinOptNative", 1) + `,`, `Field210:` + valueToStringThetest(this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinNestedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinNestedStructUnion{`, `Field1:` + strings.Replace(fmt.Sprintf("%v", this.Field1), "NinOptNativeUnion", "NinOptNativeUnion", 1) + `,`, `Field2:` + strings.Replace(fmt.Sprintf("%v", this.Field2), "NinOptStructUnion", "NinOptStructUnion", 1) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NinEmbeddedStructUnion", "NinEmbeddedStructUnion", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Tree) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Tree{`, `Or:` + strings.Replace(fmt.Sprintf("%v", this.Or), "OrBranch", "OrBranch", 1) + `,`, `And:` + strings.Replace(fmt.Sprintf("%v", this.And), "AndBranch", "AndBranch", 1) + `,`, `Leaf:` + strings.Replace(fmt.Sprintf("%v", this.Leaf), "Leaf", "Leaf", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OrBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OrBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AndBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AndBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Leaf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Leaf{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `StrValue:` + fmt.Sprintf("%v", this.StrValue) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *DeepTree) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&DeepTree{`, `Down:` + strings.Replace(fmt.Sprintf("%v", this.Down), "ADeepBranch", "ADeepBranch", 1) + `,`, `And:` + strings.Replace(fmt.Sprintf("%v", this.And), "AndDeepBranch", "AndDeepBranch", 1) + `,`, `Leaf:` + strings.Replace(fmt.Sprintf("%v", this.Leaf), "DeepLeaf", "DeepLeaf", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *ADeepBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ADeepBranch{`, `Down:` + strings.Replace(strings.Replace(this.Down.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AndDeepBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AndDeepBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *DeepLeaf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&DeepLeaf{`, `Tree:` + strings.Replace(strings.Replace(this.Tree.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Nil) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Nil{`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptEnum{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptEnumDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptEnumDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AnotherNinOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AnotherNinOptEnum{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AnotherNinOptEnumDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AnotherNinOptEnumDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Timer) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Timer{`, `Time1:` + fmt.Sprintf("%v", this.Time1) + `,`, `Time2:` + fmt.Sprintf("%v", this.Time2) + `,`, `Data:` + fmt.Sprintf("%v", this.Data) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *MyExtendable) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&MyExtendable{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_InternalExtensions:` + github_com_gogo_protobuf_proto.StringFromInternalExtension(this) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OtherExtenable) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OtherExtenable{`, `M:` + strings.Replace(fmt.Sprintf("%v", this.M), "MyExtendable", "MyExtendable", 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `XXX_InternalExtensions:` + github_com_gogo_protobuf_proto.StringFromInternalExtension(this) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `EnumField:` + valueToStringThetest(this.EnumField) + `,`, `NNM:` + strings.Replace(fmt.Sprintf("%v", this.NNM), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `NM:` + strings.Replace(fmt.Sprintf("%v", this.NM), "NestedDefinition_NestedMessage", "NestedDefinition_NestedMessage", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition_NestedMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition_NestedMessage{`, `NestedField1:` + valueToStringThetest(this.NestedField1) + `,`, `NNM:` + strings.Replace(fmt.Sprintf("%v", this.NNM), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition_NestedMessage_NestedNestedMsg{`, `NestedNestedField1:` + valueToStringThetest(this.NestedNestedField1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedScope) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedScope{`, `A:` + strings.Replace(fmt.Sprintf("%v", this.A), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `B:` + valueToStringThetest(this.B) + `,`, `C:` + strings.Replace(fmt.Sprintf("%v", this.C), "NestedDefinition_NestedMessage", "NestedDefinition_NestedMessage", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNativeDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNativeDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + valueToStringThetest(this.Field8) + `,`, `Field9:` + valueToStringThetest(this.Field9) + `,`, `Field10:` + valueToStringThetest(this.Field10) + `,`, `Field11:` + valueToStringThetest(this.Field11) + `,`, `Field12:` + valueToStringThetest(this.Field12) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomContainer) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomContainer{`, `CustomStruct:` + strings.Replace(strings.Replace(this.CustomStruct.String(), "NidOptCustom", "NidOptCustom", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNidOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNidOptNative{`, `FieldA:` + fmt.Sprintf("%v", this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `FieldE:` + fmt.Sprintf("%v", this.FieldE) + `,`, `FieldF:` + fmt.Sprintf("%v", this.FieldF) + `,`, `FieldG:` + fmt.Sprintf("%v", this.FieldG) + `,`, `FieldH:` + fmt.Sprintf("%v", this.FieldH) + `,`, `FieldI:` + fmt.Sprintf("%v", this.FieldI) + `,`, `FieldJ:` + fmt.Sprintf("%v", this.FieldJ) + `,`, `FieldK:` + fmt.Sprintf("%v", this.FieldK) + `,`, `FieldL:` + fmt.Sprintf("%v", this.FieldL) + `,`, `FieldM:` + fmt.Sprintf("%v", this.FieldM) + `,`, `FieldN:` + fmt.Sprintf("%v", this.FieldN) + `,`, `FieldO:` + fmt.Sprintf("%v", this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinOptNative{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + valueToStringThetest(this.FieldC) + `,`, `FieldD:` + valueToStringThetest(this.FieldD) + `,`, `FieldE:` + valueToStringThetest(this.FieldE) + `,`, `FieldF:` + valueToStringThetest(this.FieldF) + `,`, `FieldG:` + valueToStringThetest(this.FieldG) + `,`, `FieldH:` + valueToStringThetest(this.FieldH) + `,`, `FieldI:` + valueToStringThetest(this.FieldI) + `,`, `FieldJ:` + valueToStringThetest(this.FieldJ) + `,`, `FieldK:` + valueToStringThetest(this.FieldK) + `,`, `FielL:` + valueToStringThetest(this.FielL) + `,`, `FieldM:` + valueToStringThetest(this.FieldM) + `,`, `FieldN:` + valueToStringThetest(this.FieldN) + `,`, `FieldO:` + valueToStringThetest(this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinRepNative{`, `FieldA:` + fmt.Sprintf("%v", this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `FieldE:` + fmt.Sprintf("%v", this.FieldE) + `,`, `FieldF:` + fmt.Sprintf("%v", this.FieldF) + `,`, `FieldG:` + fmt.Sprintf("%v", this.FieldG) + `,`, `FieldH:` + fmt.Sprintf("%v", this.FieldH) + `,`, `FieldI:` + fmt.Sprintf("%v", this.FieldI) + `,`, `FieldJ:` + fmt.Sprintf("%v", this.FieldJ) + `,`, `FieldK:` + fmt.Sprintf("%v", this.FieldK) + `,`, `FieldL:` + fmt.Sprintf("%v", this.FieldL) + `,`, `FieldM:` + fmt.Sprintf("%v", this.FieldM) + `,`, `FieldN:` + fmt.Sprintf("%v", this.FieldN) + `,`, `FieldO:` + fmt.Sprintf("%v", this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinStruct{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + strings.Replace(fmt.Sprintf("%v", this.FieldC), "NidOptNative", "NidOptNative", 1) + `,`, `FieldD:` + strings.Replace(fmt.Sprintf("%v", this.FieldD), "NinOptNative", "NinOptNative", 1) + `,`, `FieldE:` + valueToStringThetest(this.FieldE) + `,`, `FieldF:` + valueToStringThetest(this.FieldF) + `,`, `FieldG:` + strings.Replace(fmt.Sprintf("%v", this.FieldG), "NidOptNative", "NidOptNative", 1) + `,`, `FieldH:` + valueToStringThetest(this.FieldH) + `,`, `FieldI:` + valueToStringThetest(this.FieldI) + `,`, `FieldJ:` + valueToStringThetest(this.FieldJ) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameCustomType{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinEmbeddedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinEmbeddedStructUnion{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `FieldA:` + strings.Replace(fmt.Sprintf("%v", this.FieldA), "NinOptNative", "NinOptNative", 1) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameEnum{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NoExtensionsMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NoExtensionsMap{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_extensions:` + github_com_gogo_protobuf_proto.StringFromExtensionsBytes(this.XXX_extensions) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Unrecognized) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Unrecognized{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithInner) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithInner{`, `Embedded:` + strings.Replace(fmt.Sprintf("%v", this.Embedded), "UnrecognizedWithInner_Inner", "UnrecognizedWithInner_Inner", 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithInner_Inner) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithInner_Inner{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithEmbed) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithEmbed{`, `UnrecognizedWithEmbed_Embedded:` + strings.Replace(strings.Replace(this.UnrecognizedWithEmbed_Embedded.String(), "UnrecognizedWithEmbed_Embedded", "UnrecognizedWithEmbed_Embedded", 1), `&`, ``, 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithEmbed_Embedded) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithEmbed_Embedded{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *Node) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Node{`, `Label:` + valueToStringThetest(this.Label) + `,`, `Children:` + strings.Replace(fmt.Sprintf("%v", this.Children), "Node", "Node", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NonByteCustomType{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNonByteCustomType{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *ProtoType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ProtoType{`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringThetest(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (this *NinOptNativeUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } if this.Field4 != nil { return this.Field4 } if this.Field5 != nil { return this.Field5 } if this.Field6 != nil { return this.Field6 } if this.Field13 != nil { return this.Field13 } if this.Field14 != nil { return this.Field14 } if this.Field15 != nil { return this.Field15 } return nil } func (this *NinOptNativeUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *float64: this.Field1 = vt case *float32: this.Field2 = vt case *int32: this.Field3 = vt case *int64: this.Field4 = vt case *uint32: this.Field5 = vt case *uint64: this.Field6 = vt case *bool: this.Field13 = vt case *string: this.Field14 = vt case []byte: this.Field15 = vt default: return false } return true } func (this *NinOptStructUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } if this.Field4 != nil { return this.Field4 } if this.Field6 != nil { return this.Field6 } if this.Field7 != nil { return this.Field7 } if this.Field13 != nil { return this.Field13 } if this.Field14 != nil { return this.Field14 } if this.Field15 != nil { return this.Field15 } return nil } func (this *NinOptStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *float64: this.Field1 = vt case *float32: this.Field2 = vt case *NidOptNative: this.Field3 = vt case *NinOptNative: this.Field4 = vt case *uint64: this.Field6 = vt case *int32: this.Field7 = vt case *bool: this.Field13 = vt case *string: this.Field14 = vt case []byte: this.Field15 = vt default: return false } return true } func (this *NinEmbeddedStructUnion) GetValue() interface{} { if this.NidOptNative != nil { return this.NidOptNative } if this.Field200 != nil { return this.Field200 } if this.Field210 != nil { return this.Field210 } return nil } func (this *NinEmbeddedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NidOptNative: this.NidOptNative = vt case *NinOptNative: this.Field200 = vt case *bool: this.Field210 = vt default: return false } return true } func (this *NinNestedStructUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } return nil } func (this *NinNestedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NinOptNativeUnion: this.Field1 = vt case *NinOptStructUnion: this.Field2 = vt case *NinEmbeddedStructUnion: this.Field3 = vt default: this.Field1 = new(NinOptNativeUnion) if set := this.Field1.SetValue(value); set { return true } this.Field1 = nil this.Field2 = new(NinOptStructUnion) if set := this.Field2.SetValue(value); set { return true } this.Field2 = nil this.Field3 = new(NinEmbeddedStructUnion) if set := this.Field3.SetValue(value); set { return true } this.Field3 = nil return false } return true } func (this *Tree) GetValue() interface{} { if this.Or != nil { return this.Or } if this.And != nil { return this.And } if this.Leaf != nil { return this.Leaf } return nil } func (this *Tree) SetValue(value interface{}) bool { switch vt := value.(type) { case *OrBranch: this.Or = vt case *AndBranch: this.And = vt case *Leaf: this.Leaf = vt default: return false } return true } func (this *DeepTree) GetValue() interface{} { if this.Down != nil { return this.Down } if this.And != nil { return this.And } if this.Leaf != nil { return this.Leaf } return nil } func (this *DeepTree) SetValue(value interface{}) bool { switch vt := value.(type) { case *ADeepBranch: this.Down = vt case *AndDeepBranch: this.And = vt case *DeepLeaf: this.Leaf = vt default: return false } return true } func (this *CustomNameNinEmbeddedStructUnion) GetValue() interface{} { if this.NidOptNative != nil { return this.NidOptNative } if this.FieldA != nil { return this.FieldA } if this.FieldB != nil { return this.FieldB } return nil } func (this *CustomNameNinEmbeddedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NidOptNative: this.NidOptNative = vt case *NinOptNative: this.FieldA = vt case *bool: this.FieldB = vt default: return false } return true } func init() { proto.RegisterFile("combos/marshaler/thetest.proto", fileDescriptorThetest) } var fileDescriptorThetest = []byte{ // 3086 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4f, 0x6c, 0x1b, 0xc7, 0xd5, 0xe7, 0xec, 0x50, 0x0a, 0xf5, 0x24, 0x4b, 0xf4, 0x26, 0x56, 0x16, 0x8c, 0xbe, 0x15, 0xbd, 0x91, 0xf5, 0x31, 0x44, 0x2c, 0x51, 0x14, 0x25, 0xcb, 0x4c, 0x93, 0x42, 0xfc, 0xe3, 0x46, 0x6e, 0x44, 0x19, 0x8c, 0xdc, 0xd6, 0x40, 0x81, 0x82, 0x16, 0xd7, 0x22, 0x51, 0x69, 0x29, 0x90, 0xab, 0x34, 0xee, 0xa1, 0x08, 0x72, 0x28, 0x82, 0x5e, 0x8b, 0x1e, 0xdb, 0xb8, 0x28, 0x0a, 0xa4, 0xb7, 0x1c, 0x8a, 0xa2, 0x28, 0x8a, 0xc6, 0x97, 0x02, 0xea, 0xcd, 0xe8, 0xa9, 0x08, 0x0a, 0x21, 0x62, 0x2e, 0x39, 0x06, 0xbd, 0x34, 0x87, 0x1c, 0x8a, 0xdd, 0x9d, 0x9d, 0x9d, 0x19, 0xee, 0x72, 0x97, 0x96, 0xd2, 0xe6, 0x62, 0x8b, 0xf3, 0xde, 0x9b, 0x79, 0xfb, 0x7e, 0xbf, 0xf7, 0xf6, 0xed, 0xcc, 0x80, 0xba, 0xd7, 0x39, 0xbc, 0xdf, 0xe9, 0x2d, 0x1f, 0x36, 0xba, 0xbd, 0x56, 0xe3, 0x40, 0xef, 0x2e, 0x9b, 0x2d, 0xdd, 0xd4, 0x7b, 0xe6, 0xd2, 0x51, 0xb7, 0x63, 0x76, 0xe4, 0xb8, 0xf5, 0x77, 0xea, 0xfa, 0x7e, 0xdb, 0x6c, 0x1d, 0xdf, 0x5f, 0xda, 0xeb, 0x1c, 0x2e, 0xef, 0x77, 0xf6, 0x3b, 0xcb, 0xb6, 0xf0, 0xfe, 0xf1, 0x03, 0xfb, 0x97, 0xfd, 0xc3, 0xfe, 0xcb, 0x31, 0xd2, 0xfe, 0x89, 0x61, 0xaa, 0xd6, 0x6e, 0xee, 0x1c, 0x99, 0xb5, 0x86, 0xd9, 0x7e, 0x4b, 0x97, 0xe7, 0x60, 0xfc, 0x56, 0x5b, 0x3f, 0x68, 0xae, 0x28, 0x28, 0x8d, 0x32, 0xa8, 0x14, 0x3f, 0x39, 0x9d, 0x8f, 0xd5, 0xc9, 0x18, 0x95, 0xe6, 0x15, 0x29, 0x8d, 0x32, 0x12, 0x27, 0xcd, 0x53, 0xe9, 0xaa, 0x82, 0xd3, 0x28, 0x33, 0xc6, 0x49, 0x57, 0xa9, 0xb4, 0xa0, 0xc4, 0xd3, 0x28, 0x83, 0x39, 0x69, 0x81, 0x4a, 0xd7, 0x94, 0xb1, 0x34, 0xca, 0x5c, 0xe2, 0xa4, 0x6b, 0x54, 0xba, 0xae, 0x8c, 0xa7, 0x51, 0x26, 0xce, 0x49, 0xd7, 0xa9, 0xf4, 0x86, 0xf2, 0x4c, 0x1a, 0x65, 0x2e, 0x73, 0xd2, 0x1b, 0x54, 0xba, 0xa1, 0x24, 0xd2, 0x28, 0x23, 0x73, 0xd2, 0x0d, 0x2a, 0xbd, 0xa9, 0x4c, 0xa4, 0x51, 0xe6, 0x19, 0x4e, 0x7a, 0x53, 0x56, 0xe1, 0x19, 0xe7, 0xc9, 0x73, 0x0a, 0xa4, 0x51, 0x66, 0x86, 0x88, 0xdd, 0x41, 0x4f, 0xbe, 0xa2, 0x4c, 0xa6, 0x51, 0x66, 0x9c, 0x97, 0xaf, 0x78, 0xf2, 0xbc, 0x32, 0x95, 0x46, 0x99, 0x24, 0x2f, 0xcf, 0x7b, 0xf2, 0x55, 0xe5, 0x52, 0x1a, 0x65, 0x12, 0xbc, 0x7c, 0xd5, 0x93, 0x17, 0x94, 0xe9, 0x34, 0xca, 0x4c, 0xf0, 0xf2, 0x82, 0x27, 0x5f, 0x53, 0x66, 0xd2, 0x28, 0x33, 0xc5, 0xcb, 0xd7, 0xb4, 0x77, 0x6d, 0x78, 0x0d, 0x0f, 0xde, 0x59, 0x1e, 0x5e, 0x0a, 0xec, 0x2c, 0x0f, 0x2c, 0x85, 0x74, 0x96, 0x87, 0x94, 0x82, 0x39, 0xcb, 0x83, 0x49, 0x61, 0x9c, 0xe5, 0x61, 0xa4, 0x00, 0xce, 0xf2, 0x00, 0x52, 0xe8, 0x66, 0x79, 0xe8, 0x28, 0x68, 0xb3, 0x3c, 0x68, 0x14, 0xae, 0x59, 0x1e, 0x2e, 0x0a, 0x94, 0x22, 0x00, 0xe5, 0x41, 0xa4, 0x08, 0x10, 0x79, 0xe0, 0x28, 0x02, 0x38, 0x1e, 0x2c, 0x8a, 0x00, 0x8b, 0x07, 0x88, 0x22, 0x00, 0xe2, 0x41, 0xa1, 0x08, 0x50, 0x78, 0x20, 0x90, 0x1c, 0xab, 0xeb, 0x47, 0x3e, 0x39, 0x86, 0x87, 0xe6, 0x18, 0x1e, 0x9a, 0x63, 0x78, 0x68, 0x8e, 0xe1, 0xa1, 0x39, 0x86, 0x87, 0xe6, 0x18, 0x1e, 0x9a, 0x63, 0x78, 0x68, 0x8e, 0xe1, 0xa1, 0x39, 0x86, 0x87, 0xe7, 0x18, 0x0e, 0xc9, 0x31, 0x1c, 0x92, 0x63, 0x38, 0x24, 0xc7, 0x70, 0x48, 0x8e, 0xe1, 0x90, 0x1c, 0xc3, 0x81, 0x39, 0xe6, 0xc1, 0x3b, 0xcb, 0xc3, 0xeb, 0x9b, 0x63, 0x38, 0x20, 0xc7, 0x70, 0x40, 0x8e, 0xe1, 0x80, 0x1c, 0xc3, 0x01, 0x39, 0x86, 0x03, 0x72, 0x0c, 0x07, 0xe4, 0x18, 0x0e, 0xc8, 0x31, 0x1c, 0x94, 0x63, 0x38, 0x30, 0xc7, 0x70, 0x60, 0x8e, 0xe1, 0xc0, 0x1c, 0xc3, 0x81, 0x39, 0x86, 0x03, 0x73, 0x0c, 0xb3, 0x39, 0xf6, 0x67, 0x0c, 0xb2, 0x93, 0x63, 0x77, 0x1a, 0x7b, 0x3f, 0xd4, 0x9b, 0x04, 0x0a, 0x55, 0xc8, 0xb4, 0x71, 0x0b, 0xba, 0xa4, 0x07, 0x89, 0x2a, 0xe4, 0x1a, 0x2f, 0xcf, 0x53, 0xb9, 0x9b, 0x6d, 0xbc, 0x7c, 0x95, 0xca, 0xdd, 0x7c, 0xe3, 0xe5, 0x05, 0x2a, 0x77, 0x33, 0x8e, 0x97, 0xaf, 0x51, 0xb9, 0x9b, 0x73, 0xbc, 0x7c, 0x9d, 0xca, 0xdd, 0xac, 0xe3, 0xe5, 0x37, 0xa8, 0xdc, 0xcd, 0x3b, 0x5e, 0xbe, 0x41, 0xe5, 0x6e, 0xe6, 0xf1, 0xf2, 0x9b, 0x72, 0x5a, 0xcc, 0x3d, 0x57, 0x81, 0x42, 0x9b, 0x16, 0xb3, 0x4f, 0xd0, 0x58, 0xf1, 0x34, 0xdc, 0xfc, 0x13, 0x34, 0xf2, 0x9e, 0x86, 0x9b, 0x81, 0x82, 0xc6, 0xaa, 0xf6, 0x9e, 0x0d, 0x9f, 0x21, 0xc2, 0x97, 0x12, 0xe0, 0x93, 0x18, 0xe8, 0x52, 0x02, 0x74, 0x12, 0x03, 0x5b, 0x4a, 0x80, 0x4d, 0x62, 0x20, 0x4b, 0x09, 0x90, 0x49, 0x0c, 0x5c, 0x29, 0x01, 0x2e, 0x89, 0x81, 0x2a, 0x25, 0x40, 0x25, 0x31, 0x30, 0xa5, 0x04, 0x98, 0x24, 0x06, 0xa2, 0x94, 0x00, 0x91, 0xc4, 0xc0, 0x93, 0x12, 0xe0, 0x91, 0x18, 0x68, 0xe6, 0x44, 0x68, 0x24, 0x16, 0x96, 0x39, 0x11, 0x16, 0x89, 0x85, 0x64, 0x4e, 0x84, 0x44, 0x62, 0xe1, 0x98, 0x13, 0xe1, 0x90, 0x58, 0x28, 0xbe, 0x94, 0xdc, 0x8e, 0xf0, 0x4d, 0xb3, 0x7b, 0xbc, 0x67, 0x9e, 0xab, 0x23, 0xcc, 0x71, 0xed, 0xc3, 0x64, 0x5e, 0x5e, 0xb2, 0x1b, 0x56, 0xb6, 0xe3, 0x14, 0xde, 0x60, 0x39, 0xae, 0xb1, 0x60, 0x2c, 0x0c, 0x7f, 0x8b, 0xc2, 0xb9, 0x7a, 0xc3, 0x1c, 0xd7, 0x66, 0x84, 0xfb, 0xb7, 0xf1, 0x95, 0x77, 0x6c, 0x8f, 0x25, 0xb7, 0x63, 0x23, 0xe1, 0x1f, 0xb5, 0x63, 0xcb, 0x86, 0x87, 0x9c, 0x06, 0x3b, 0x1b, 0x1e, 0xec, 0x81, 0xb7, 0x4e, 0xd4, 0x0e, 0x2e, 0x1b, 0x1e, 0x5a, 0x1a, 0xd4, 0x8b, 0xed, 0xb7, 0x08, 0x83, 0xeb, 0xfa, 0x91, 0x0f, 0x83, 0x47, 0xed, 0xb7, 0x72, 0x5c, 0x29, 0x19, 0x95, 0xc1, 0x78, 0x64, 0x06, 0x8f, 0xda, 0x79, 0xe5, 0xb8, 0xf2, 0x32, 0x32, 0x83, 0xbf, 0x82, 0x7e, 0x88, 0x30, 0xd8, 0x0b, 0xff, 0xa8, 0xfd, 0x50, 0x36, 0x3c, 0xe4, 0xbe, 0x0c, 0xc6, 0x23, 0x30, 0x38, 0x4a, 0x7f, 0x94, 0x0d, 0x0f, 0xad, 0x3f, 0x83, 0xcf, 0xdd, 0xcd, 0xbc, 0x8f, 0xe0, 0x72, 0xad, 0xdd, 0xac, 0x1e, 0xde, 0xd7, 0x9b, 0x4d, 0xbd, 0x49, 0xe2, 0x98, 0xe3, 0x2a, 0x41, 0x00, 0xd4, 0x4f, 0x4e, 0xe7, 0xbd, 0x08, 0xaf, 0x41, 0xc2, 0x89, 0x69, 0x2e, 0xa7, 0x9c, 0xa0, 0x90, 0x0a, 0x47, 0x55, 0xe5, 0xab, 0xae, 0xd9, 0x4a, 0x4e, 0xf9, 0x3b, 0x62, 0xaa, 0x1c, 0x1d, 0xd6, 0x7e, 0x6e, 0x7b, 0x68, 0x9c, 0xdb, 0xc3, 0xe5, 0x48, 0x1e, 0x32, 0xbe, 0xbd, 0x30, 0xe0, 0x1b, 0xe3, 0xd5, 0x31, 0xcc, 0xd4, 0xda, 0xcd, 0x9a, 0xde, 0x33, 0xa3, 0xb9, 0xe4, 0xe8, 0x08, 0xf5, 0x20, 0xc7, 0xd1, 0x92, 0xb5, 0xa0, 0x94, 0xe6, 0x6b, 0x84, 0xd6, 0xb6, 0x96, 0x35, 0xb8, 0x65, 0xb3, 0x41, 0xcb, 0x7a, 0x95, 0x9d, 0x2e, 0x98, 0x0d, 0x5a, 0xd0, 0xcb, 0x21, 0xba, 0xd4, 0xdb, 0xee, 0xcb, 0xb9, 0x7c, 0xdc, 0x33, 0x3b, 0x87, 0xf2, 0x1c, 0x48, 0x5b, 0x4d, 0x7b, 0x8d, 0xa9, 0xd2, 0x94, 0xe5, 0xd4, 0xc7, 0xa7, 0xf3, 0xf1, 0xbb, 0xc7, 0xed, 0x66, 0x5d, 0xda, 0x6a, 0xca, 0xb7, 0x61, 0xec, 0x3b, 0x8d, 0x83, 0x63, 0xdd, 0x7e, 0x45, 0x4c, 0x95, 0x0a, 0x44, 0xe1, 0xe5, 0xc0, 0x3d, 0x22, 0x6b, 0xe1, 0xe5, 0x3d, 0x7b, 0xea, 0xa5, 0xbb, 0x6d, 0xc3, 0x5c, 0xc9, 0x6f, 0xd4, 0x9d, 0x29, 0xb4, 0xef, 0x03, 0x38, 0x6b, 0x56, 0x1a, 0xbd, 0x96, 0x5c, 0x73, 0x67, 0x76, 0x96, 0xde, 0xf8, 0xf8, 0x74, 0xbe, 0x10, 0x65, 0xd6, 0xeb, 0xcd, 0x46, 0xaf, 0x75, 0xdd, 0x7c, 0x78, 0xa4, 0x2f, 0x95, 0x1e, 0x9a, 0x7a, 0xcf, 0x9d, 0xfd, 0xc8, 0x7d, 0xeb, 0x91, 0xe7, 0x52, 0x98, 0xe7, 0x4a, 0x70, 0xcf, 0x74, 0x8b, 0x7f, 0xa6, 0xdc, 0xd3, 0x3e, 0xcf, 0xdb, 0xee, 0x4b, 0x42, 0x88, 0x24, 0x0e, 0x8b, 0x24, 0x3e, 0x6f, 0x24, 0x8f, 0xdc, 0xfa, 0x28, 0x3c, 0x2b, 0x1e, 0xf6, 0xac, 0xf8, 0x3c, 0xcf, 0xfa, 0x6f, 0x27, 0x5b, 0x69, 0x3e, 0xdd, 0x35, 0xda, 0x1d, 0xe3, 0x6b, 0xb7, 0x17, 0x74, 0xa1, 0x5d, 0x40, 0x31, 0x7e, 0xf2, 0x68, 0x1e, 0x69, 0xef, 0x4b, 0xee, 0x93, 0x3b, 0x89, 0xf4, 0x74, 0x4f, 0xfe, 0x75, 0xe9, 0xa9, 0xbe, 0x8a, 0x08, 0xfd, 0x0a, 0xc1, 0xec, 0x40, 0x25, 0x77, 0xc2, 0x74, 0xb1, 0xe5, 0xdc, 0x18, 0xb5, 0x9c, 0x13, 0x07, 0x7f, 0x8f, 0xe0, 0x39, 0xa1, 0xbc, 0x3a, 0xee, 0x2d, 0x0b, 0xee, 0x3d, 0x3f, 0xb8, 0x92, 0xad, 0xc8, 0x78, 0xc7, 0xc2, 0x2b, 0x18, 0x30, 0x33, 0x53, 0xdc, 0x0b, 0x02, 0xee, 0x73, 0xd4, 0xc0, 0x27, 0x5c, 0x2e, 0x03, 0x88, 0xdb, 0x1d, 0x88, 0xef, 0x76, 0x75, 0x5d, 0x56, 0x41, 0xda, 0xe9, 0x12, 0x0f, 0xa7, 0x1d, 0xfb, 0x9d, 0x6e, 0xa9, 0xdb, 0x30, 0xf6, 0x5a, 0x75, 0x69, 0xa7, 0x2b, 0x5f, 0x05, 0xbc, 0x69, 0x34, 0x89, 0x47, 0x33, 0x8e, 0xc2, 0xa6, 0xd1, 0x24, 0x1a, 0x96, 0x4c, 0x56, 0x21, 0xfe, 0x86, 0xde, 0x78, 0x40, 0x9c, 0x00, 0x47, 0xc7, 0x1a, 0xa9, 0xdb, 0xe3, 0x64, 0xc1, 0xef, 0x41, 0xc2, 0x9d, 0x58, 0x5e, 0xb0, 0x2c, 0x1e, 0x98, 0x64, 0x59, 0x62, 0x61, 0xb9, 0x43, 0xde, 0x5c, 0xb6, 0x54, 0x5e, 0x84, 0xb1, 0x7a, 0x7b, 0xbf, 0x65, 0x92, 0xc5, 0x07, 0xd5, 0x1c, 0xb1, 0x76, 0x0f, 0x26, 0xa8, 0x47, 0x17, 0x3c, 0x75, 0xc5, 0x79, 0x34, 0x39, 0xc5, 0xbe, 0x4f, 0xdc, 0x7d, 0x4b, 0x67, 0x48, 0x4e, 0x43, 0xe2, 0x4d, 0xb3, 0xeb, 0x15, 0x7d, 0xb7, 0x23, 0xa5, 0xa3, 0xda, 0xbb, 0x08, 0x12, 0x15, 0x5d, 0x3f, 0xb2, 0x03, 0x7e, 0x0d, 0xe2, 0x95, 0xce, 0x8f, 0x0c, 0xe2, 0xe0, 0x65, 0x12, 0x51, 0x4b, 0x4c, 0x62, 0x6a, 0x8b, 0xe5, 0x6b, 0x6c, 0xdc, 0x9f, 0xa5, 0x71, 0x67, 0xf4, 0xec, 0xd8, 0x6b, 0x5c, 0xec, 0x09, 0x80, 0x96, 0xd2, 0x40, 0xfc, 0x6f, 0xc0, 0x24, 0xb3, 0x8a, 0x9c, 0x21, 0x6e, 0x48, 0xa2, 0x21, 0x1b, 0x2b, 0x4b, 0x43, 0xd3, 0xe1, 0x12, 0xb7, 0xb0, 0x65, 0xca, 0x84, 0x38, 0xc0, 0xd4, 0x0e, 0x73, 0x96, 0x0f, 0xb3, 0xbf, 0x2a, 0x09, 0x75, 0xce, 0x89, 0x91, 0x1d, 0xee, 0x05, 0x87, 0x9c, 0xc1, 0x20, 0x5a, 0x7f, 0x6b, 0x63, 0x80, 0x6b, 0xed, 0x03, 0xed, 0x55, 0x00, 0x27, 0xe5, 0xab, 0xc6, 0xf1, 0xa1, 0x90, 0x75, 0xd3, 0x6e, 0x80, 0x77, 0x5b, 0xfa, 0xae, 0xde, 0xb3, 0x55, 0xf8, 0x7e, 0xca, 0x2a, 0x30, 0xe0, 0xa4, 0x98, 0x6d, 0xff, 0x52, 0xa8, 0xbd, 0x6f, 0x27, 0x66, 0xa9, 0x2a, 0x8e, 0xea, 0x3d, 0xdd, 0xdc, 0x34, 0x3a, 0x66, 0x4b, 0xef, 0x0a, 0x16, 0x79, 0x79, 0x95, 0x4b, 0xd8, 0xe9, 0xfc, 0x0b, 0xd4, 0x22, 0xd0, 0x68, 0x55, 0xfb, 0xd0, 0x76, 0xd0, 0x6a, 0x05, 0x06, 0x1e, 0x10, 0x47, 0x78, 0x40, 0x79, 0x9d, 0xeb, 0xdf, 0x86, 0xb8, 0x29, 0x7c, 0x5a, 0xde, 0xe4, 0xbe, 0x73, 0x86, 0x3b, 0xcb, 0x7f, 0x63, 0xba, 0x31, 0x75, 0x5d, 0x7e, 0x29, 0xd4, 0xe5, 0x80, 0xee, 0x76, 0xd4, 0x98, 0xe2, 0xa8, 0x31, 0xfd, 0x13, 0xed, 0x38, 0xac, 0xe1, 0x8a, 0xfe, 0xa0, 0x71, 0x7c, 0x60, 0xca, 0x2f, 0x87, 0x62, 0x5f, 0x44, 0x65, 0xea, 0x6a, 0x21, 0x2a, 0xfc, 0x45, 0xa9, 0x54, 0xa2, 0xee, 0xde, 0x18, 0x81, 0x02, 0x45, 0xa9, 0x5c, 0xa6, 0x65, 0x3b, 0xf1, 0xde, 0xa3, 0x79, 0xf4, 0xc1, 0xa3, 0xf9, 0x98, 0xf6, 0x3b, 0x04, 0x97, 0x89, 0x26, 0x43, 0xdc, 0xeb, 0x82, 0xf3, 0x57, 0xdc, 0x9a, 0xe1, 0x17, 0x81, 0xff, 0x1a, 0x79, 0xff, 0x8a, 0x40, 0x19, 0xf0, 0xd5, 0x8d, 0x77, 0x2e, 0x92, 0xcb, 0x45, 0x54, 0xfd, 0xdf, 0xc7, 0xfc, 0x1e, 0x8c, 0xed, 0xb6, 0x0f, 0xf5, 0xae, 0xf5, 0x26, 0xb0, 0xfe, 0x70, 0x5c, 0x76, 0x0f, 0x73, 0x9c, 0x21, 0x57, 0xe6, 0x38, 0xc7, 0xc9, 0xf2, 0xb2, 0x02, 0xf1, 0x4a, 0xc3, 0x6c, 0xd8, 0x1e, 0x4c, 0xd1, 0xfa, 0xda, 0x30, 0x1b, 0xda, 0x2a, 0x4c, 0x6d, 0x3f, 0xac, 0xbe, 0x6d, 0xea, 0x46, 0xb3, 0x71, 0xff, 0x40, 0x3c, 0x03, 0x75, 0xfb, 0xd5, 0x95, 0xec, 0x58, 0xa2, 0x99, 0x3c, 0x41, 0xc5, 0xb8, 0xed, 0xcf, 0x5b, 0x30, 0xbd, 0x63, 0xb9, 0x6d, 0xdb, 0xd9, 0x66, 0x69, 0x40, 0xdb, 0x7c, 0x23, 0xc4, 0xce, 0x5a, 0x47, 0xdb, 0x42, 0xfb, 0x88, 0x69, 0x78, 0x84, 0xb6, 0x0d, 0xd3, 0xb6, 0x2d, 0x1b, 0x4f, 0x4c, 0x27, 0x2f, 0x67, 0xe3, 0x09, 0x48, 0x5e, 0x22, 0xeb, 0xfe, 0x0d, 0x43, 0xd2, 0x69, 0x75, 0x2a, 0xfa, 0x83, 0xb6, 0xd1, 0x36, 0x07, 0xfb, 0x55, 0xea, 0xb1, 0xfc, 0x4d, 0x98, 0xb0, 0x42, 0x6a, 0xff, 0x22, 0x80, 0x5d, 0x25, 0x2d, 0x8a, 0x30, 0x05, 0x19, 0xb0, 0xa9, 0xe3, 0xd9, 0xc8, 0xb7, 0x00, 0xd7, 0x6a, 0xdb, 0xe4, 0xe5, 0x56, 0x18, 0x6a, 0xba, 0xad, 0xf7, 0x7a, 0x8d, 0x7d, 0x9d, 0xfc, 0x22, 0x63, 0xbd, 0xfd, 0xba, 0x35, 0x81, 0x5c, 0x00, 0xa9, 0xb6, 0x4d, 0x1a, 0xde, 0x85, 0x28, 0xd3, 0xd4, 0xa5, 0xda, 0x76, 0xea, 0x2f, 0x08, 0x2e, 0x71, 0xa3, 0xb2, 0x06, 0x53, 0xce, 0x00, 0xf3, 0xb8, 0xe3, 0x75, 0x6e, 0xcc, 0xf5, 0x59, 0x3a, 0xa7, 0xcf, 0xa9, 0x4d, 0x98, 0x11, 0xc6, 0xe5, 0x25, 0x90, 0xd9, 0x21, 0xe2, 0x04, 0xd8, 0x0d, 0xb5, 0x8f, 0x44, 0xfb, 0x3f, 0x00, 0x2f, 0xae, 0xf2, 0x0c, 0x4c, 0xee, 0xde, 0xbb, 0x53, 0xfd, 0x41, 0xad, 0xfa, 0xe6, 0x6e, 0xb5, 0x92, 0x44, 0xda, 0x1f, 0x10, 0x4c, 0x92, 0xb6, 0x75, 0xaf, 0x73, 0xa4, 0xcb, 0x25, 0x40, 0x9b, 0x84, 0x41, 0x4f, 0xe7, 0x37, 0xda, 0x94, 0x97, 0x01, 0x95, 0xa2, 0x43, 0x8d, 0x4a, 0x72, 0x1e, 0x50, 0x99, 0x00, 0x1c, 0x0d, 0x19, 0x54, 0xd6, 0xfe, 0x85, 0xe1, 0x59, 0xb6, 0x8d, 0x76, 0xeb, 0xc9, 0x55, 0xfe, 0xbb, 0xa9, 0x38, 0xb1, 0x92, 0x5f, 0x2d, 0x2c, 0x59, 0xff, 0x50, 0x4a, 0x6a, 0xfc, 0x27, 0x54, 0x11, 0xa8, 0xca, 0x4a, 0xd0, 0x3d, 0x91, 0x62, 0x9c, 0x99, 0x61, 0xe0, 0x9e, 0x08, 0x27, 0x1d, 0xb8, 0x27, 0xc2, 0x49, 0x07, 0xee, 0x89, 0x70, 0xd2, 0x81, 0xb3, 0x00, 0x4e, 0x3a, 0x70, 0x4f, 0x84, 0x93, 0x0e, 0xdc, 0x13, 0xe1, 0xa4, 0x83, 0xf7, 0x44, 0x88, 0x38, 0xf0, 0x9e, 0x08, 0x2f, 0x1f, 0xbc, 0x27, 0xc2, 0xcb, 0x07, 0xef, 0x89, 0x14, 0xe3, 0x66, 0xf7, 0x58, 0x0f, 0x3e, 0x75, 0xe0, 0xed, 0x87, 0x7d, 0x04, 0x7a, 0x15, 0x78, 0x07, 0x66, 0x9c, 0x0d, 0x89, 0x72, 0xc7, 0x30, 0x1b, 0x6d, 0x43, 0xef, 0xca, 0xdf, 0x80, 0x29, 0x67, 0xc8, 0xf9, 0xcc, 0xf1, 0xfb, 0x0c, 0x74, 0xe4, 0xa4, 0xde, 0x72, 0xda, 0xda, 0x97, 0x71, 0x98, 0x75, 0x06, 0x6a, 0x8d, 0x43, 0x9d, 0xbb, 0x65, 0xb4, 0x28, 0x9c, 0x29, 0x4d, 0x5b, 0xe6, 0xfd, 0xd3, 0x79, 0x67, 0x74, 0x93, 0xb2, 0x69, 0x51, 0x38, 0x5d, 0xe2, 0xf5, 0xbc, 0x17, 0xd0, 0xa2, 0x70, 0xf3, 0x88, 0xd7, 0xa3, 0xef, 0x1b, 0xaa, 0xe7, 0xde, 0x41, 0xe2, 0xf5, 0x2a, 0x94, 0x65, 0x8b, 0xc2, 0x6d, 0x24, 0x5e, 0xaf, 0x4a, 0xf9, 0xb6, 0x28, 0x9c, 0x3d, 0xf1, 0x7a, 0xb7, 0x28, 0xf3, 0x16, 0x85, 0x53, 0x28, 0x5e, 0xef, 0x5b, 0x94, 0x83, 0x8b, 0xc2, 0x5d, 0x25, 0x5e, 0xef, 0x75, 0xca, 0xc6, 0x45, 0xe1, 0xd6, 0x12, 0xaf, 0xb7, 0x45, 0x79, 0x99, 0x11, 0xef, 0x2f, 0xf1, 0x8a, 0xb7, 0x3d, 0x86, 0x66, 0xc4, 0x9b, 0x4c, 0xbc, 0xe6, 0xb7, 0x3d, 0xae, 0x66, 0xc4, 0x3b, 0x4d, 0xbc, 0xe6, 0x1b, 0x1e, 0x6b, 0x33, 0xe2, 0x59, 0x19, 0xaf, 0xb9, 0xed, 0xf1, 0x37, 0x23, 0x9e, 0x9a, 0xf1, 0x9a, 0x35, 0x8f, 0xc9, 0x19, 0xf1, 0xfc, 0x8c, 0xd7, 0xdc, 0xf1, 0x36, 0xd1, 0x3f, 0x12, 0xe8, 0xc7, 0xdc, 0x82, 0xd2, 0x04, 0xfa, 0x81, 0x0f, 0xf5, 0x84, 0x42, 0xc6, 0xe8, 0x78, 0xb4, 0xd3, 0x04, 0xda, 0x81, 0x0f, 0xe5, 0x34, 0x81, 0x72, 0xe0, 0x43, 0x37, 0x4d, 0xa0, 0x1b, 0xf8, 0x50, 0x4d, 0x13, 0xa8, 0x06, 0x3e, 0x34, 0xd3, 0x04, 0x9a, 0x81, 0x0f, 0xc5, 0x34, 0x81, 0x62, 0xe0, 0x43, 0x2f, 0x4d, 0xa0, 0x17, 0xf8, 0x50, 0x6b, 0x41, 0xa4, 0x16, 0xf8, 0xd1, 0x6a, 0x41, 0xa4, 0x15, 0xf8, 0x51, 0xea, 0x45, 0x91, 0x52, 0x13, 0xfd, 0xd3, 0xf9, 0x31, 0x6b, 0x88, 0x61, 0xd3, 0x82, 0xc8, 0x26, 0xf0, 0x63, 0xd2, 0x82, 0xc8, 0x24, 0xf0, 0x63, 0xd1, 0x82, 0xc8, 0x22, 0xf0, 0x63, 0xd0, 0x63, 0x91, 0x41, 0xde, 0x1d, 0x1f, 0x4d, 0x38, 0x52, 0x0c, 0x63, 0x10, 0x8e, 0xc0, 0x20, 0x1c, 0x81, 0x41, 0x38, 0x02, 0x83, 0x70, 0x04, 0x06, 0xe1, 0x08, 0x0c, 0xc2, 0x11, 0x18, 0x84, 0x23, 0x30, 0x08, 0x47, 0x61, 0x10, 0x8e, 0xc4, 0x20, 0x1c, 0xc4, 0xa0, 0x05, 0xf1, 0xc6, 0x03, 0xf8, 0x15, 0xa4, 0x05, 0xf1, 0xe8, 0x33, 0x9c, 0x42, 0x38, 0x12, 0x85, 0x70, 0x10, 0x85, 0x3e, 0xc2, 0xf0, 0x2c, 0x47, 0x21, 0x72, 0x3e, 0x74, 0x51, 0x15, 0x68, 0x3d, 0xc2, 0x05, 0x0b, 0x3f, 0x4e, 0xad, 0x47, 0x38, 0xa4, 0x1e, 0xc6, 0xb3, 0xc1, 0x2a, 0x54, 0x8d, 0x50, 0x85, 0x6e, 0x51, 0x0e, 0xad, 0x47, 0xb8, 0x78, 0x31, 0xc8, 0xbd, 0x8d, 0x61, 0x45, 0xe0, 0xf5, 0x48, 0x45, 0x60, 0x2b, 0x52, 0x11, 0xb8, 0xed, 0x21, 0xf8, 0x53, 0x09, 0x9e, 0xf3, 0x10, 0x74, 0xfe, 0xda, 0x7d, 0x78, 0x64, 0x95, 0x00, 0xef, 0x88, 0x4a, 0x76, 0x8f, 0x6d, 0x18, 0x18, 0xa5, 0xad, 0xa6, 0x7c, 0x87, 0x3f, 0xac, 0x2a, 0x8e, 0x7a, 0x80, 0xc3, 0x20, 0x4e, 0x36, 0x43, 0x17, 0x00, 0x6f, 0x35, 0x7b, 0x76, 0xb5, 0xf0, 0x5b, 0xb6, 0x5c, 0xb7, 0xc4, 0x72, 0x1d, 0xc6, 0x6d, 0xf5, 0x9e, 0x0d, 0xef, 0x79, 0x16, 0xae, 0xd4, 0xc9, 0x4c, 0xda, 0x63, 0x04, 0x69, 0x8e, 0xca, 0x17, 0x73, 0x64, 0xf0, 0x4a, 0xa4, 0x23, 0x03, 0x2e, 0x41, 0xbc, 0xe3, 0x83, 0xff, 0x1f, 0x3c, 0xa9, 0x66, 0xb3, 0x44, 0x3c, 0x4a, 0xf8, 0x09, 0x4c, 0x7b, 0x4f, 0x60, 0x7f, 0xb3, 0xad, 0x85, 0xef, 0x66, 0xfa, 0xa5, 0xe6, 0x9a, 0xb0, 0x8b, 0x36, 0xd4, 0x8c, 0x66, 0xab, 0x56, 0x84, 0x99, 0x5a, 0xc7, 0xde, 0x33, 0xe8, 0xb5, 0x3b, 0x46, 0x6f, 0xbb, 0x71, 0x14, 0xb6, 0x19, 0x91, 0xb0, 0x5a, 0xf3, 0x93, 0x5f, 0xcf, 0xc7, 0xb4, 0x97, 0x61, 0xea, 0xae, 0xd1, 0xd5, 0xf7, 0x3a, 0xfb, 0x46, 0xfb, 0xc7, 0x7a, 0x53, 0x30, 0x9c, 0x70, 0x0d, 0x8b, 0xf1, 0x27, 0x96, 0xf6, 0x2f, 0x10, 0x5c, 0x61, 0xd5, 0xbf, 0xdb, 0x36, 0x5b, 0x5b, 0x86, 0xd5, 0xd3, 0xbf, 0x0a, 0x09, 0x9d, 0x00, 0x67, 0xbf, 0xbb, 0x26, 0xdd, 0xef, 0x48, 0x5f, 0xf5, 0x25, 0xfb, 0xdf, 0x3a, 0x35, 0x11, 0xf6, 0x38, 0xdc, 0x65, 0xf3, 0xa9, 0x6b, 0x30, 0xe6, 0xcc, 0xcf, 0xfb, 0x75, 0x49, 0xf0, 0xeb, 0xb7, 0x3e, 0x7e, 0xd9, 0x3c, 0x92, 0x6f, 0x73, 0x7e, 0x31, 0x9f, 0xab, 0xbe, 0xea, 0x4b, 0x2e, 0xf9, 0x4a, 0x09, 0xab, 0xff, 0xb3, 0x19, 0x15, 0xee, 0x64, 0x06, 0x12, 0x55, 0x51, 0xc7, 0xdf, 0xcf, 0x0a, 0xc4, 0x6b, 0x9d, 0xa6, 0x2e, 0x3f, 0x07, 0x63, 0x6f, 0x34, 0xee, 0xeb, 0x07, 0x24, 0xc8, 0xce, 0x0f, 0x79, 0x11, 0x12, 0xe5, 0x56, 0xfb, 0xa0, 0xd9, 0xd5, 0x0d, 0x72, 0x66, 0x4f, 0xb6, 0xd0, 0x2d, 0x9b, 0x3a, 0x95, 0x69, 0x65, 0xb8, 0x5c, 0xeb, 0x18, 0xa5, 0x87, 0x26, 0x5b, 0x37, 0x96, 0x84, 0x14, 0x21, 0x67, 0x3e, 0x77, 0xac, 0x6c, 0xb4, 0x14, 0x4a, 0x63, 0x1f, 0x9f, 0xce, 0xa3, 0x5d, 0xba, 0x7f, 0xbe, 0x0d, 0xcf, 0x93, 0xf4, 0x19, 0x98, 0x2a, 0x1f, 0x36, 0xd5, 0x04, 0x39, 0xa7, 0x66, 0xa6, 0xdb, 0xb2, 0xa6, 0x33, 0x7c, 0xa7, 0x7b, 0x3a, 0xcf, 0xac, 0xa6, 0x68, 0xa8, 0x67, 0x78, 0x24, 0xcf, 0x7c, 0xa7, 0x5b, 0x0a, 0x9b, 0x4e, 0xf0, 0xec, 0x45, 0x98, 0xa0, 0x32, 0x86, 0x0d, 0x6c, 0xa6, 0xe4, 0xb3, 0x1a, 0x4c, 0x32, 0x09, 0x2b, 0x8f, 0x01, 0xda, 0x4c, 0xc6, 0xac, 0xff, 0x4a, 0x49, 0x64, 0xfd, 0x57, 0x4e, 0x4a, 0xd9, 0x6b, 0x30, 0x23, 0xec, 0x5f, 0x5a, 0x92, 0x4a, 0x12, 0xac, 0xff, 0xaa, 0xc9, 0xc9, 0x54, 0xfc, 0xbd, 0xdf, 0xa8, 0xb1, 0xec, 0x2b, 0x20, 0x0f, 0xee, 0x74, 0xca, 0xe3, 0x20, 0x6d, 0x5a, 0x53, 0x3e, 0x0f, 0x52, 0xa9, 0x94, 0x44, 0xa9, 0x99, 0x9f, 0xfd, 0x32, 0x3d, 0x59, 0xd2, 0x4d, 0x53, 0xef, 0xde, 0xd3, 0xcd, 0x52, 0x89, 0x18, 0xbf, 0x06, 0x57, 0x7c, 0x77, 0x4a, 0x2d, 0xfb, 0x72, 0xd9, 0xb1, 0xaf, 0x54, 0x06, 0xec, 0x2b, 0x15, 0xdb, 0x1e, 0x15, 0xdd, 0x13, 0xe7, 0x4d, 0xd9, 0x67, 0x5f, 0x52, 0x69, 0x32, 0x27, 0xdc, 0x9b, 0xc5, 0xd7, 0x88, 0x6e, 0xc9, 0x57, 0x57, 0x0f, 0x39, 0xb1, 0x2e, 0x15, 0xcb, 0xc4, 0xbe, 0xec, 0x6b, 0xff, 0x40, 0x38, 0x56, 0xe5, 0xdf, 0x10, 0x64, 0x92, 0x32, 0x75, 0xb8, 0xe2, 0x3b, 0x49, 0x8b, 0xb9, 0xec, 0x5e, 0xa1, 0x0e, 0x57, 0x7d, 0x75, 0xdb, 0x21, 0x97, 0xbe, 0xaa, 0xc5, 0x65, 0xf2, 0x92, 0xdf, 0x5c, 0x91, 0xaf, 0xb8, 0x39, 0xca, 0x55, 0x60, 0x12, 0x20, 0x57, 0xab, 0x58, 0x26, 0x06, 0xa5, 0x40, 0x83, 0xe0, 0x28, 0xb9, 0x96, 0xc5, 0xd7, 0xc9, 0x24, 0xe5, 0xc0, 0x49, 0x42, 0x42, 0xe5, 0x9a, 0x97, 0x76, 0x4f, 0xce, 0xd4, 0xd8, 0x93, 0x33, 0x35, 0xf6, 0x8f, 0x33, 0x35, 0xf6, 0xc9, 0x99, 0x8a, 0x3e, 0x3b, 0x53, 0xd1, 0xe7, 0x67, 0x2a, 0xfa, 0xe2, 0x4c, 0x45, 0xef, 0xf4, 0x55, 0xf4, 0x41, 0x5f, 0x45, 0x1f, 0xf6, 0x55, 0xf4, 0xc7, 0xbe, 0x8a, 0x1e, 0xf7, 0x55, 0x74, 0xd2, 0x57, 0xd1, 0x93, 0xbe, 0x1a, 0xfb, 0xa4, 0xaf, 0xa2, 0xcf, 0xfa, 0x6a, 0xec, 0xf3, 0xbe, 0x8a, 0xbe, 0xe8, 0xab, 0xb1, 0x77, 0x3e, 0x55, 0x63, 0x8f, 0x3e, 0x55, 0x63, 0x1f, 0x7c, 0xaa, 0xa2, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x3d, 0xd8, 0x02, 0x18, 0x4c, 0x36, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/combos/marshaler/thetest.proto000066400000000000000000000557211317075173200243430ustar00rootroot00000000000000// 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 test; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.protosizer_all) = false; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; option (gogoproto.compare_all) = true; message NidOptNative { optional double Field1 = 1 [(gogoproto.nullable) = false]; optional float Field2 = 2 [(gogoproto.nullable) = false]; optional int32 Field3 = 3 [(gogoproto.nullable) = false]; optional int64 Field4 = 4 [(gogoproto.nullable) = false]; optional uint32 Field5 = 5 [(gogoproto.nullable) = false]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false]; optional sint64 Field8 = 8 [(gogoproto.nullable) = false]; optional fixed32 Field9 = 9 [(gogoproto.nullable) = false]; optional sfixed32 Field10 = 10 [(gogoproto.nullable) = false]; optional fixed64 Field11 = 11 [(gogoproto.nullable) = false]; optional sfixed64 Field12 = 12 [(gogoproto.nullable) = false]; optional bool Field13 = 13 [(gogoproto.nullable) = false]; optional string Field14 = 14 [(gogoproto.nullable) = false]; optional bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinOptNative { optional double Field1 = 1; optional float Field2 = 2; optional int32 Field3 = 3; optional int64 Field4 = 4; optional uint32 Field5 = 5; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional sint64 Field8 = 8; optional fixed32 Field9 = 9; optional sfixed32 Field10 = 10; optional fixed64 Field11 = 11; optional sfixed64 Field12 = 12; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NidRepNative { repeated double Field1 = 1 [(gogoproto.nullable) = false]; repeated float Field2 = 2 [(gogoproto.nullable) = false]; repeated int32 Field3 = 3 [(gogoproto.nullable) = false]; repeated int64 Field4 = 4 [(gogoproto.nullable) = false]; repeated uint32 Field5 = 5 [(gogoproto.nullable) = false]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false]; repeated sint64 Field8 = 8 [(gogoproto.nullable) = false]; repeated fixed32 Field9 = 9 [(gogoproto.nullable) = false]; repeated sfixed32 Field10 = 10 [(gogoproto.nullable) = false]; repeated fixed64 Field11 = 11 [(gogoproto.nullable) = false]; repeated sfixed64 Field12 = 12 [(gogoproto.nullable) = false]; repeated bool Field13 = 13 [(gogoproto.nullable) = false]; repeated string Field14 = 14 [(gogoproto.nullable) = false]; repeated bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinRepNative { repeated double Field1 = 1; repeated float Field2 = 2; repeated int32 Field3 = 3; repeated int64 Field4 = 4; repeated uint32 Field5 = 5; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated sint64 Field8 = 8; repeated fixed32 Field9 = 9; repeated sfixed32 Field10 = 10; repeated fixed64 Field11 = 11; repeated sfixed64 Field12 = 12; repeated bool Field13 = 13; repeated string Field14 = 14; repeated bytes Field15 = 15; } message NidRepPackedNative { repeated double Field1 = 1 [(gogoproto.nullable) = false, packed = true]; repeated float Field2 = 2 [(gogoproto.nullable) = false, packed = true]; repeated int32 Field3 = 3 [(gogoproto.nullable) = false, packed = true]; repeated int64 Field4 = 4 [(gogoproto.nullable) = false, packed = true]; repeated uint32 Field5 = 5 [(gogoproto.nullable) = false, packed = true]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false, packed = true]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false, packed = true]; repeated sint64 Field8 = 8 [(gogoproto.nullable) = false, packed = true]; repeated fixed32 Field9 = 9 [(gogoproto.nullable) = false, packed = true]; repeated sfixed32 Field10 = 10 [(gogoproto.nullable) = false, packed = true]; repeated fixed64 Field11 = 11 [(gogoproto.nullable) = false, packed = true]; repeated sfixed64 Field12 = 12 [(gogoproto.nullable) = false, packed = true]; repeated bool Field13 = 13 [(gogoproto.nullable) = false, packed = true]; } message NinRepPackedNative { repeated double Field1 = 1 [packed = true]; repeated float Field2 = 2 [packed = true]; repeated int32 Field3 = 3 [packed = true]; repeated int64 Field4 = 4 [packed = true]; repeated uint32 Field5 = 5 [packed = true]; repeated uint64 Field6 = 6 [packed = true]; repeated sint32 Field7 = 7 [packed = true]; repeated sint64 Field8 = 8 [packed = true]; repeated fixed32 Field9 = 9 [packed = true]; repeated sfixed32 Field10 = 10 [packed = true]; repeated fixed64 Field11 = 11 [packed = true]; repeated sfixed64 Field12 = 12 [packed = true]; repeated bool Field13 = 13 [packed = true]; } message NidOptStruct { optional double Field1 = 1 [(gogoproto.nullable) = false]; optional float Field2 = 2 [(gogoproto.nullable) = false]; optional NidOptNative Field3 = 3 [(gogoproto.nullable) = false]; optional NinOptNative Field4 = 4 [(gogoproto.nullable) = false]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false]; optional NidOptNative Field8 = 8 [(gogoproto.nullable) = false]; optional bool Field13 = 13 [(gogoproto.nullable) = false]; optional string Field14 = 14 [(gogoproto.nullable) = false]; optional bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinOptStruct { optional double Field1 = 1; optional float Field2 = 2; optional NidOptNative Field3 = 3; optional NinOptNative Field4 = 4; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional NidOptNative Field8 = 8; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NidRepStruct { repeated double Field1 = 1 [(gogoproto.nullable) = false]; repeated float Field2 = 2 [(gogoproto.nullable) = false]; repeated NidOptNative Field3 = 3 [(gogoproto.nullable) = false]; repeated NinOptNative Field4 = 4 [(gogoproto.nullable) = false]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false]; repeated NidOptNative Field8 = 8 [(gogoproto.nullable) = false]; repeated bool Field13 = 13 [(gogoproto.nullable) = false]; repeated string Field14 = 14 [(gogoproto.nullable) = false]; repeated bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinRepStruct { repeated double Field1 = 1; repeated float Field2 = 2; repeated NidOptNative Field3 = 3; repeated NinOptNative Field4 = 4; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated NidOptNative Field8 = 8; repeated bool Field13 = 13; repeated string Field14 = 14; repeated bytes Field15 = 15; } message NidEmbeddedStruct { optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NidOptNative Field200 = 200 [(gogoproto.nullable) = false]; optional bool Field210 = 210 [(gogoproto.nullable) = false]; } message NinEmbeddedStruct { optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NidOptNative Field200 = 200; optional bool Field210 = 210; } message NidNestedStruct { optional NidOptStruct Field1 = 1 [(gogoproto.nullable) = false]; repeated NidRepStruct Field2 = 2 [(gogoproto.nullable) = false]; } message NinNestedStruct { optional NinOptStruct Field1 = 1; repeated NinRepStruct Field2 = 2; } message NidOptCustom { optional bytes Id = 1 [(gogoproto.customtype) = "Uuid", (gogoproto.nullable) = false]; optional bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } message CustomDash { optional bytes Value = 1 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom-dash-type.Bytes"]; } message NinOptCustom { optional bytes Id = 1 [(gogoproto.customtype) = "Uuid"]; optional bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message NidRepCustom { repeated bytes Id = 1 [(gogoproto.customtype) = "Uuid", (gogoproto.nullable) = false]; repeated bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } message NinRepCustom { repeated bytes Id = 1 [(gogoproto.customtype) = "Uuid"]; repeated bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message NinOptNativeUnion { option (gogoproto.onlyone) = true; optional double Field1 = 1; optional float Field2 = 2; optional int32 Field3 = 3; optional int64 Field4 = 4; optional uint32 Field5 = 5; optional uint64 Field6 = 6; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NinOptStructUnion { option (gogoproto.onlyone) = true; optional double Field1 = 1; optional float Field2 = 2; optional NidOptNative Field3 = 3; optional NinOptNative Field4 = 4; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NinEmbeddedStructUnion { option (gogoproto.onlyone) = true; optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NinOptNative Field200 = 200; optional bool Field210 = 210; } message NinNestedStructUnion { option (gogoproto.onlyone) = true; optional NinOptNativeUnion Field1 = 1; optional NinOptStructUnion Field2 = 2; optional NinEmbeddedStructUnion Field3 = 3; } message Tree { option (gogoproto.onlyone) = true; optional OrBranch Or = 1; optional AndBranch And = 2; optional Leaf Leaf = 3; } message OrBranch { optional Tree Left = 1 [(gogoproto.nullable) = false]; optional Tree Right = 2 [(gogoproto.nullable) = false]; } message AndBranch { optional Tree Left = 1 [(gogoproto.nullable) = false]; optional Tree Right = 2 [(gogoproto.nullable) = false]; } message Leaf { optional int64 Value = 1 [(gogoproto.nullable) = false]; optional string StrValue = 2 [(gogoproto.nullable) = false]; } message DeepTree { option (gogoproto.onlyone) = true; optional ADeepBranch Down = 1; optional AndDeepBranch And = 2; optional DeepLeaf Leaf = 3; } message ADeepBranch { optional DeepTree Down = 2 [(gogoproto.nullable) = false]; } message AndDeepBranch { optional DeepTree Left = 1 [(gogoproto.nullable) = false]; optional DeepTree Right = 2 [(gogoproto.nullable) = false]; } message DeepLeaf { optional Tree Tree = 1 [(gogoproto.nullable) = false]; } message Nil { } enum TheTestEnum { A = 0; B = 1; C = 2; } enum AnotherTestEnum { option (gogoproto.goproto_enum_prefix) = false; D = 10; E = 11; } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. enum YetAnotherTestEnum { option (gogoproto.goproto_enum_prefix) = false; AA = 0; BB = 1 [(gogoproto.enumvalue_customname) = "BetterYetBB"]; } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. enum YetYetAnotherTestEnum { option (gogoproto.goproto_enum_prefix) = true; CC = 0; DD = 1 [(gogoproto.enumvalue_customname) = "BetterYetDD"]; } message NidOptEnum { optional TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; } message NinOptEnum { optional TheTestEnum Field1 = 1; optional YetAnotherTestEnum Field2 = 2; optional YetYetAnotherTestEnum Field3 = 3; } message NidRepEnum { repeated TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; repeated YetAnotherTestEnum Field2 = 2 [(gogoproto.nullable) = false]; repeated YetYetAnotherTestEnum Field3 = 3 [(gogoproto.nullable) = false]; } message NinRepEnum { repeated TheTestEnum Field1 = 1; repeated YetAnotherTestEnum Field2 = 2; repeated YetYetAnotherTestEnum Field3 = 3; } message NinOptEnumDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional TheTestEnum Field1 = 1 [default=C]; optional YetAnotherTestEnum Field2 = 2 [default=BB]; optional YetYetAnotherTestEnum Field3 = 3 [default=CC]; } message AnotherNinOptEnum { optional AnotherTestEnum Field1 = 1; optional YetAnotherTestEnum Field2 = 2; optional YetYetAnotherTestEnum Field3 = 3; } message AnotherNinOptEnumDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional AnotherTestEnum Field1 = 1 [default=E]; optional YetAnotherTestEnum Field2 = 2 [default=BB]; optional YetYetAnotherTestEnum Field3 = 3 [default=CC]; } message Timer { optional sfixed64 Time1 = 1 [(gogoproto.nullable) = false]; optional sfixed64 Time2 = 2 [(gogoproto.nullable) = false]; optional bytes Data = 3 [(gogoproto.nullable) = false]; } message MyExtendable { option (gogoproto.face) = false; optional int64 Field1 = 1; extensions 100 to 199; } extend MyExtendable { optional double FieldA = 100; optional NinOptNative FieldB = 101; optional NinEmbeddedStruct FieldC = 102; repeated int64 FieldD = 104; repeated NinOptNative FieldE = 105; } message OtherExtenable { option (gogoproto.face) = false; optional int64 Field2 = 2; extensions 14 to 16; optional int64 Field13 = 13; extensions 10 to 12; optional MyExtendable M = 1; } message NestedDefinition { optional int64 Field1 = 1; message NestedMessage { optional fixed64 NestedField1 = 1; optional NestedNestedMsg NNM = 2; message NestedNestedMsg { optional string NestedNestedField1 = 10; } } enum NestedEnum { TYPE_NESTED = 1; } optional NestedEnum EnumField = 2; optional NestedMessage.NestedNestedMsg NNM = 3; optional NestedMessage NM = 4; } message NestedScope { optional NestedDefinition.NestedMessage.NestedNestedMsg A = 1; optional NestedDefinition.NestedEnum B = 2; optional NestedDefinition.NestedMessage C = 3; } message NinOptNativeDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional double Field1 = 1 [default = 1234.1234]; optional float Field2 = 2 [default = 1234.1234]; optional int32 Field3 = 3 [default = 1234]; optional int64 Field4 = 4 [default = 1234]; optional uint32 Field5 = 5 [default = 1234]; optional uint64 Field6 = 6 [default = 1234]; optional sint32 Field7 = 7 [default = 1234]; optional sint64 Field8 = 8 [default = 1234]; optional fixed32 Field9 = 9 [default = 1234]; optional sfixed32 Field10 = 10 [default = 1234]; optional fixed64 Field11 = 11 [default = 1234]; optional sfixed64 Field12 = 12 [default = 1234]; optional bool Field13 = 13 [default = true]; optional string Field14 = 14 [default = "1234"]; optional bytes Field15 = 15; } message CustomContainer { optional NidOptCustom CustomStruct = 1 [(gogoproto.nullable) = false]; } message CustomNameNidOptNative { optional double Field1 = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldB"]; optional int32 Field3 = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldC"]; optional int64 Field4 = 4 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldD"]; optional uint32 Field5 = 5 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldE"]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldF"]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldG"]; optional sint64 Field8 = 8 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldH"]; optional fixed32 Field9 = 9 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldI"]; optional sfixed32 Field10 = 10 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldJ"]; optional fixed64 Field11 = 11 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldK"]; optional sfixed64 Field12 = 12 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldL"]; optional bool Field13 = 13 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldM"]; optional string Field14 = 14 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldN"]; optional bytes Field15 = 15 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldO"]; } message CustomNameNinOptNative { optional double Field1 = 1 [(gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.customname) = "FieldB"]; optional int32 Field3 = 3 [(gogoproto.customname) = "FieldC"]; optional int64 Field4 = 4 [(gogoproto.customname) = "FieldD"]; optional uint32 Field5 = 5 [(gogoproto.customname) = "FieldE"]; optional uint64 Field6 = 6 [(gogoproto.customname) = "FieldF"]; optional sint32 Field7 = 7 [(gogoproto.customname) = "FieldG"]; optional sint64 Field8 = 8 [(gogoproto.customname) = "FieldH"]; optional fixed32 Field9 = 9 [(gogoproto.customname) = "FieldI"]; optional sfixed32 Field10 = 10 [(gogoproto.customname) = "FieldJ"]; optional fixed64 Field11 = 11 [(gogoproto.customname) = "FieldK"]; optional sfixed64 Field12 = 12 [(gogoproto.customname) = "FielL"]; optional bool Field13 = 13 [(gogoproto.customname) = "FieldM"]; optional string Field14 = 14 [(gogoproto.customname) = "FieldN"]; optional bytes Field15 = 15 [(gogoproto.customname) = "FieldO"]; } message CustomNameNinRepNative { repeated double Field1 = 1 [(gogoproto.customname) = "FieldA"]; repeated float Field2 = 2 [(gogoproto.customname) = "FieldB"]; repeated int32 Field3 = 3 [(gogoproto.customname) = "FieldC"]; repeated int64 Field4 = 4 [(gogoproto.customname) = "FieldD"]; repeated uint32 Field5 = 5 [(gogoproto.customname) = "FieldE"]; repeated uint64 Field6 = 6 [(gogoproto.customname) = "FieldF"]; repeated sint32 Field7 = 7 [(gogoproto.customname) = "FieldG"]; repeated sint64 Field8 = 8 [(gogoproto.customname) = "FieldH"]; repeated fixed32 Field9 = 9 [(gogoproto.customname) = "FieldI"]; repeated sfixed32 Field10 = 10 [(gogoproto.customname) = "FieldJ"]; repeated fixed64 Field11 = 11 [(gogoproto.customname) = "FieldK"]; repeated sfixed64 Field12 = 12 [(gogoproto.customname) = "FieldL"]; repeated bool Field13 = 13 [(gogoproto.customname) = "FieldM"]; repeated string Field14 = 14 [(gogoproto.customname) = "FieldN"]; repeated bytes Field15 = 15 [(gogoproto.customname) = "FieldO"]; } message CustomNameNinStruct { optional double Field1 = 1 [(gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.customname) = "FieldB"]; optional NidOptNative Field3 = 3 [(gogoproto.customname) = "FieldC"]; repeated NinOptNative Field4 = 4 [(gogoproto.customname) = "FieldD"]; optional uint64 Field6 = 6 [(gogoproto.customname) = "FieldE"]; optional sint32 Field7 = 7 [(gogoproto.customname) = "FieldF"]; optional NidOptNative Field8 = 8 [(gogoproto.customname) = "FieldG"]; optional bool Field13 = 13 [(gogoproto.customname) = "FieldH"]; optional string Field14 = 14 [(gogoproto.customname) = "FieldI"]; optional bytes Field15 = 15 [(gogoproto.customname) = "FieldJ"]; } message CustomNameCustomType { optional bytes Id = 1 [(gogoproto.customname) = "FieldA", (gogoproto.customtype) = "Uuid"]; optional bytes Value = 2 [(gogoproto.customname) = "FieldB", (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; repeated bytes Ids = 3 [(gogoproto.customname) = "FieldC", (gogoproto.customtype) = "Uuid"]; repeated bytes Values = 4 [(gogoproto.customname) = "FieldD", (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message CustomNameNinEmbeddedStructUnion { option (gogoproto.onlyone) = true; optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NinOptNative Field200 = 200 [(gogoproto.customname) = "FieldA"]; optional bool Field210 = 210 [(gogoproto.customname) = "FieldB"]; } message CustomNameEnum { optional TheTestEnum Field1 = 1 [(gogoproto.customname) = "FieldA"]; repeated TheTestEnum Field2 = 2 [(gogoproto.customname) = "FieldB"]; } message NoExtensionsMap { option (gogoproto.face) = false; option (gogoproto.goproto_extensions_map) = false; optional int64 Field1 = 1; extensions 100 to 199; } extend NoExtensionsMap { optional double FieldA1 = 100; optional NinOptNative FieldB1 = 101; optional NinEmbeddedStruct FieldC1 = 102; } message Unrecognized { option (gogoproto.goproto_unrecognized) = false; optional string Field1 = 1; } message UnrecognizedWithInner { message Inner { option (gogoproto.goproto_unrecognized) = false; optional uint32 Field1 = 1; } repeated Inner embedded = 1; optional string Field2 = 2; } message UnrecognizedWithEmbed { message Embedded { option (gogoproto.goproto_unrecognized) = false; optional uint32 Field1 = 1; } optional Embedded embedded = 1 [(gogoproto.embed) = true, (gogoproto.nullable) = false]; optional string Field2 = 2; } message Node { optional string Label = 1; repeated Node Children = 2; } message NonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message NidOptNonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T", (gogoproto.nullable) = false]; } message NinOptNonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message NidRepNonByteCustomType { repeated ProtoType Field1 = 1 [(gogoproto.customtype) = "T", (gogoproto.nullable) = false]; } message NinRepNonByteCustomType { repeated ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message ProtoType { optional string Field2 = 1; } golang-gogoprotobuf-0.5/test/combos/marshaler/thetestpb_test.go000066400000000000000000020500441317075173200251610ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/thetest.proto /* Package test is a generated protocol buffer package. It is generated from these files: combos/marshaler/thetest.proto It has these top-level messages: NidOptNative NinOptNative NidRepNative NinRepNative NidRepPackedNative NinRepPackedNative NidOptStruct NinOptStruct NidRepStruct NinRepStruct NidEmbeddedStruct NinEmbeddedStruct NidNestedStruct NinNestedStruct NidOptCustom CustomDash NinOptCustom NidRepCustom NinRepCustom NinOptNativeUnion NinOptStructUnion NinEmbeddedStructUnion NinNestedStructUnion Tree OrBranch AndBranch Leaf DeepTree ADeepBranch AndDeepBranch DeepLeaf Nil NidOptEnum NinOptEnum NidRepEnum NinRepEnum NinOptEnumDefault AnotherNinOptEnum AnotherNinOptEnumDefault Timer MyExtendable OtherExtenable NestedDefinition NestedScope NinOptNativeDefault CustomContainer CustomNameNidOptNative CustomNameNinOptNative CustomNameNinRepNative CustomNameNinStruct CustomNameCustomType CustomNameNinEmbeddedStructUnion CustomNameEnum NoExtensionsMap Unrecognized UnrecognizedWithInner UnrecognizedWithEmbed Node NonByteCustomType NidOptNonByteCustomType NinOptNonByteCustomType NidRepNonByteCustomType NinRepNonByteCustomType ProtoType */ package test import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestNidOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepPackedNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepPackedNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepPackedNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepPackedNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepPackedNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepPackedNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepPackedNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepPackedNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepPackedNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepPackedNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepPackedNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepPackedNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepPackedNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepPackedNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidEmbeddedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidEmbeddedStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidEmbeddedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidEmbeddedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidEmbeddedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidEmbeddedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidEmbeddedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinEmbeddedStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinEmbeddedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinEmbeddedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinEmbeddedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinEmbeddedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidNestedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidNestedStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidNestedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidNestedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidNestedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidNestedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidNestedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinNestedStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinNestedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinNestedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinNestedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinNestedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptCustomMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomDashProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomDashMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomDashProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomDash, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomDash(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomDashProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomDash(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomDash{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptCustomMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepCustomMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepCustomMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptNativeUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptNativeUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNativeUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNativeUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNativeUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptStructUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinEmbeddedStructUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinEmbeddedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinEmbeddedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinEmbeddedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinEmbeddedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinNestedStructUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinNestedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinNestedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinNestedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinNestedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinNestedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestTreeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestTreeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkTreeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Tree, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkTreeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedTree(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Tree{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOrBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOrBranchMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkOrBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OrBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOrBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOrBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOrBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OrBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAndBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAndBranchMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAndBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAndBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAndBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAndBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AndBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestLeafProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestLeafMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkLeafProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Leaf, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkLeafProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedLeaf(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Leaf{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDeepTreeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDeepTreeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDeepTreeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepTree, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDeepTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDeepTreeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDeepTree(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DeepTree{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestADeepBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestADeepBranchMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkADeepBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ADeepBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedADeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkADeepBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedADeepBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ADeepBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAndDeepBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAndDeepBranchMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAndDeepBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndDeepBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAndDeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAndDeepBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAndDeepBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AndDeepBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDeepLeafProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDeepLeafMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDeepLeafProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepLeaf, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDeepLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDeepLeafProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDeepLeaf(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DeepLeaf{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNilProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNilMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNilProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nil, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNil(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNilProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNil(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Nil{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptEnumDefaultMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptEnumDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnumDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptEnumDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptEnumDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptEnumDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAnotherNinOptEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAnotherNinOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAnotherNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAnotherNinOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAnotherNinOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AnotherNinOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAnotherNinOptEnumDefaultMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAnotherNinOptEnumDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnumDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAnotherNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAnotherNinOptEnumDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAnotherNinOptEnumDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AnotherNinOptEnumDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestTimerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestTimerMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkTimerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Timer, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedTimer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkTimerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedTimer(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Timer{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMyExtendableProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMyExtendableMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMyExtendableProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyExtendable, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMyExtendable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMyExtendableProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMyExtendable(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MyExtendable{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOtherExtenableProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOtherExtenableMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkOtherExtenableProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OtherExtenable, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOtherExtenable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOtherExtenableProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOtherExtenable(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OtherExtenable{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinitionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedDefinitionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedDefinitionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinitionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedDefinition_NestedMessageMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedDefinition_NestedMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinition_NestedMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition_NestedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition_NestedMessage{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessage_NestedNestedMsgProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage_NestedNestedMsg, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedScopeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedScopeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedScopeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedScope, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedScope(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedScopeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedScope(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedScope{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptNativeDefaultMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptNativeDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNativeDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNativeDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNativeDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomContainerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomContainerMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomContainerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomContainer, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomContainer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomContainerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomContainer(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomContainer{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNidOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNidOptNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNidOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNidOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNidOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNidOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNidOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNinOptNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNinOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNinRepNativeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNinRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNinStructMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNinStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinEmbeddedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameNinEmbeddedStructUnionMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameNinEmbeddedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinEmbeddedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinEmbeddedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinEmbeddedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomNameEnumMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomNameEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNoExtensionsMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNoExtensionsMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNoExtensionsMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NoExtensionsMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNoExtensionsMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNoExtensionsMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNoExtensionsMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NoExtensionsMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Unrecognized, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognized(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognized(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Unrecognized{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInnerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedWithInnerMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedWithInnerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithInnerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithInner(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithInner{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInner_InnerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedWithInner_InnerMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedWithInner_InnerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner_Inner, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner_Inner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithInner_InnerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithInner_Inner(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithInner_Inner{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedWithEmbedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedWithEmbedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithEmbedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithEmbed(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithEmbed{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbed_EmbeddedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUnrecognizedWithEmbed_EmbeddedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUnrecognizedWithEmbed_EmbeddedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed_Embedded, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithEmbed_EmbeddedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithEmbed_Embedded{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNodeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNodeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNodeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Node, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNode(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNodeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNode(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Node{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidOptNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinOptNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNidRepNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepNonByteCustomTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNinRepNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestProtoTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestProtoTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkProtoTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedProtoType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkProtoTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedProtoType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ProtoType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepPackedNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepPackedNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidEmbeddedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinEmbeddedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidNestedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinNestedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomDashJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinNestedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTreeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOrBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAndBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestLeafJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDeepTreeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestADeepBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAndDeepBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDeepLeafJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNilJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptEnumDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAnotherNinOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTimerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMyExtendableJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOtherExtenableJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinitionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedScopeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomContainerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNidOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNoExtensionsMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithInnerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNodeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestProtoTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepPackedNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepPackedNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepPackedNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepPackedNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidEmbeddedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidEmbeddedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidNestedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidNestedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomDashProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomDashProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTreeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Tree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTreeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Tree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOrBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOrBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestLeafProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Leaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestLeafProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Leaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepTreeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepTreeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestADeepBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestADeepBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndDeepBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndDeepBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepLeafProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepLeafProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNilProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Nil{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNilProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Nil{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTimerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Timer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTimerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Timer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyExtendableProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyExtendableProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOtherExtenableProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOtherExtenableProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinitionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinitionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedScopeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedScopeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomContainerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomContainerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNidOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNidOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNoExtensionsMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNoExtensionsMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInnerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInnerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNodeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Node{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNodeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Node{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepPackedNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepPackedNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepPackedNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepPackedNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidEmbeddedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidEmbeddedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinEmbeddedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinEmbeddedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidNestedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidNestedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinNestedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinNestedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomDashCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomDash(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNativeUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinEmbeddedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinEmbeddedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinNestedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinNestedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestTreeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedTree(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestOrBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedOrBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAndBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAndBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestLeafCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedLeaf(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestDeepTreeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedDeepTree(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestADeepBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedADeepBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAndDeepBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAndDeepBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestDeepLeafCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedDeepLeaf(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNilCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNil(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptEnumDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptEnumDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAnotherNinOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAnotherNinOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAnotherNinOptEnumDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAnotherNinOptEnumDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestTimerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedTimer(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestMyExtendableCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedMyExtendable(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestOtherExtenableCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedOtherExtenable(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinitionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinition_NestedMessageCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition_NestedMessage(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedScopeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedScope(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNativeDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomContainerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomContainer(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNidOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNidOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinEmbeddedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNoExtensionsMapCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNoExtensionsMap(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognized(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithInnerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithInner(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithInner_InnerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithInner_Inner(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithEmbedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithEmbed(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithEmbed_EmbeddedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNodeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNode(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestProtoTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedProtoType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestThetestDescription(t *testing.T) { ThetestDescription() } func TestNidOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepPackedNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepPackedNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidEmbeddedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinEmbeddedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidNestedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinNestedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomDashVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinEmbeddedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinNestedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTreeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOrBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAndBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestLeafVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDeepTreeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestADeepBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAndDeepBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDeepLeafVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNilVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptEnumDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAnotherNinOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAnotherNinOptEnumDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTimerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMyExtendableVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOtherExtenableVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinitionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinition_NestedMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedScopeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomContainerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNidOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinEmbeddedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNoExtensionsMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithInnerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithInner_InnerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithEmbedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithEmbed_EmbeddedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNodeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestProtoTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepPackedNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepPackedNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidEmbeddedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinEmbeddedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidNestedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinNestedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomDashFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNativeUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinEmbeddedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinNestedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestTreeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestOrBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAndBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestLeafFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestDeepTreeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestADeepBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAndDeepBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestDeepLeafFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNilFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAnotherNinOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestTimerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinitionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinition_NestedMessageFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedScopeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomContainerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNidOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinEmbeddedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithInnerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithInner_InnerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithEmbedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNodeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestProtoTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepPackedNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepPackedNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidEmbeddedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinEmbeddedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidNestedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinNestedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomDashGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinEmbeddedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinNestedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTreeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOrBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAndBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestLeafGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestDeepTreeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestADeepBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAndDeepBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestDeepLeafGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNilGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptEnumDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAnotherNinOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAnotherNinOptEnumDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTimerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMyExtendableGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOtherExtenableGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinitionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinition_NestedMessageGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedScopeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomContainerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNidOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinEmbeddedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNoExtensionsMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithInnerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithInner_InnerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithEmbedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithEmbed_EmbeddedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNodeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestProtoTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepPackedNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepPackedNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepPackedNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepPackedNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepPackedNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepPackedNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidEmbeddedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidEmbeddedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidEmbeddedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinEmbeddedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidNestedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidNestedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidNestedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinNestedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomDashSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomDashSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomDash, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomDash(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNativeUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinEmbeddedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinNestedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinNestedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestTreeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkTreeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Tree, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOrBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOrBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OrBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOrBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAndBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAndBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAndBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestLeafSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkLeafSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Leaf, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDeepTreeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDeepTreeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepTree, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDeepTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestADeepBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkADeepBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ADeepBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedADeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAndDeepBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAndDeepBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndDeepBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAndDeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDeepLeafSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDeepLeafSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepLeaf, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDeepLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNilSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNilSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nil, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNil(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptEnumDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnumDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAnotherNinOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAnotherNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAnotherNinOptEnumDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnumDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAnotherNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestTimerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkTimerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Timer, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedTimer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMyExtendableSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMyExtendableSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyExtendable, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMyExtendable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOtherExtenableSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOtherExtenableSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OtherExtenable, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOtherExtenable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinitionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinitionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinition_NestedMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessage_NestedNestedMsgSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage_NestedNestedMsg, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedScopeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedScopeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedScope, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedScope(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNativeDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomContainerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomContainerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomContainer, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomContainer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNidOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNidOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNidOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinEmbeddedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinEmbeddedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinEmbeddedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNoExtensionsMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNoExtensionsMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NoExtensionsMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNoExtensionsMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Unrecognized, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognized(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInnerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithInnerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInner_InnerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithInner_InnerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner_Inner, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner_Inner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithEmbedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbed_EmbeddedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithEmbed_EmbeddedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed_Embedded, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNodeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNodeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Node, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNode(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestProtoTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkProtoTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedProtoType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepPackedNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepPackedNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidEmbeddedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinEmbeddedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidNestedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinNestedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomDashStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinEmbeddedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinNestedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTreeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOrBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAndBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestLeafStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestDeepTreeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestADeepBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAndDeepBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestDeepLeafStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNilStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptEnumDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAnotherNinOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAnotherNinOptEnumDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTimerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestMyExtendableStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOtherExtenableStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinitionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinition_NestedMessageStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedScopeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomContainerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNidOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinEmbeddedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNoExtensionsMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithInnerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithInner_InnerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithEmbedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithEmbed_EmbeddedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNodeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestProtoTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, true) v := p.GetValue() msg := &NinOptNativeUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinOptStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, true) v := p.GetValue() msg := &NinOptStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinEmbeddedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, true) v := p.GetValue() msg := &NinEmbeddedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinNestedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, true) v := p.GetValue() msg := &NinNestedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestTreeOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, true) v := p.GetValue() msg := &Tree{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestDeepTreeOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, true) v := p.GetValue() msg := &DeepTree{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestCustomNameNinEmbeddedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) v := p.GetValue() msg := &CustomNameNinEmbeddedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/combos/marshaler/uuid.go000066400000000000000000000063211317075173200230630ustar00rootroot00000000000000// 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. package test import ( "bytes" "encoding/hex" "encoding/json" ) func PutLittleEndianUint64(b []byte, offset int, v uint64) { b[offset] = byte(v) b[offset+1] = byte(v >> 8) b[offset+2] = byte(v >> 16) b[offset+3] = byte(v >> 24) b[offset+4] = byte(v >> 32) b[offset+5] = byte(v >> 40) b[offset+6] = byte(v >> 48) b[offset+7] = byte(v >> 56) } type Uuid []byte func (uuid Uuid) Marshal() ([]byte, error) { if len(uuid) == 0 { return nil, nil } return []byte(uuid), nil } func (uuid Uuid) MarshalTo(data []byte) (n int, err error) { if len(uuid) == 0 { return 0, nil } copy(data, uuid) return 16, nil } func (uuid *Uuid) Unmarshal(data []byte) error { if len(data) == 0 { uuid = nil return nil } id := Uuid(make([]byte, 16)) copy(id, data) *uuid = id return nil } func (uuid *Uuid) Size() int { if uuid == nil { return 0 } if len(*uuid) == 0 { return 0 } return 16 } func (uuid Uuid) MarshalJSON() ([]byte, error) { s := hex.EncodeToString([]byte(uuid)) return json.Marshal(s) } func (uuid *Uuid) UnmarshalJSON(data []byte) error { var s string err := json.Unmarshal(data, &s) if err != nil { return err } d, err := hex.DecodeString(s) if err != nil { return err } *uuid = Uuid(d) return nil } func (uuid Uuid) Equal(other Uuid) bool { return bytes.Equal(uuid[0:], other[0:]) } func (uuid Uuid) Compare(other Uuid) int { return bytes.Compare(uuid[0:], other[0:]) } type int63 interface { Int63() int64 } func NewPopulatedUuid(r int63) *Uuid { u := RandV4(r) return &u } func RandV4(r int63) Uuid { uuid := make(Uuid, 16) uuid.RandV4(r) return uuid } func (uuid Uuid) RandV4(r int63) { PutLittleEndianUint64(uuid, 0, uint64(r.Int63())) PutLittleEndianUint64(uuid, 8, uint64(r.Int63())) uuid[6] = (uuid[6] & 0xf) | 0x40 uuid[8] = (uuid[8] & 0x3f) | 0x80 } golang-gogoprotobuf-0.5/test/combos/unmarshaler/000077500000000000000000000000001317075173200221275ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/combos/unmarshaler/bug_test.go000066400000000000000000000276111317075173200243010ustar00rootroot00000000000000// 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. package test import ( "fmt" "math" "math/rand" "testing" "time" "github.com/gogo/protobuf/proto" ) //http://code.google.com/p/goprotobuf/issues/detail?id=39 func TestBugUint32VarintSize(t *testing.T) { temp := uint32(math.MaxUint32) n := &NinOptNative{} n.Field5 = &temp data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != 6 { t.Fatalf("data should be length 6, but its %#v", data) } } func TestBugZeroLengthSliceSize(t *testing.T) { n := &NinRepPackedNative{ Field8: []int64{}, } size := n.Size() data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != size { t.Fatalf("expected %v, but got %v", len(data), size) } } //http://code.google.com/p/goprotobuf/issues/detail?id=40 func TestBugPackedProtoSize(t *testing.T) { n := &NinRepPackedNative{ Field4: []int64{172960727389894724, 2360337516664475010, 860833876131988189, 9068073014890763245, 7794843386260381831, 4023536436053141786, 8992311247496919020, 4330096163611305776, 4490411416244976467, 7873947349172707443, 2754969595834279669, 1360667855926938684, 4771480785172657389, 4875578924966668055, 8070579869808877481, 9128179594766551001, 4630419407064527516, 863844540220372892, 8208727650143073487, 7086117356301045838, 7779695211931506151, 5493835345187563535, 9119767633370806007, 9054342025895349248, 1887303228838508438, 7624573031734528281, 1874668389749611225, 3517684643468970593, 6677697606628877758, 7293473953189936168, 444475066704085538, 8594971141363049302, 1146643249094989673, 733393306232853371, 7721178528893916886, 7784452000911004429, 6436373110242711440, 6897422461738321237, 8772249155667732778, 6211871464311393541, 3061903718310406883, 7845488913176136641, 8342255034663902574, 3443058984649725748, 8410801047334832902, 7496541071517841153, 4305416923521577765, 7814967600020476457, 8671843803465481186, 3490266370361096855, 1447425664719091336, 653218597262334239, 8306243902880091940, 7851896059762409081, 5936760560798954978, 5755724498441478025, 7022701569985035966, 3707709584811468220, 529069456924666920, 7986469043681522462, 3092513330689518836, 5103541550470476202, 3577384161242626406, 3733428084624703294, 8388690542440473117, 3262468785346149388, 8788358556558007570, 5476276940198542020, 7277903243119461239, 5065861426928605020, 7533460976202697734, 1749213838654236956, 557497603941617931, 5496307611456481108, 6444547750062831720, 6992758776744205596, 7356719693428537399, 2896328872476734507, 381447079530132038, 598300737753233118, 3687980626612697715, 7240924191084283349, 8172414415307971170, 4847024388701257185, 2081764168600256551, 3394217778539123488, 6244660626429310923, 8301712215675381614, 5360615125359461174, 8410140945829785773, 3152963269026381373, 6197275282781459633, 4419829061407546410, 6262035523070047537, 2837207483933463885, 2158105736666826128, 8150764172235490711}, Field7: []int32{249451845, 1409974015, 393609128, 435232428, 1817529040, 91769006, 861170933, 1556185603, 1568580279, 1236375273, 512276621, 693633711, 967580535, 1950715977, 853431462, 1362390253, 159591204, 111900629, 322985263, 279671129, 1592548430, 465651370, 733849989, 1172059400, 1574824441, 263541092, 1271612397, 1520584358, 467078791, 117698716, 1098255064, 2054264846, 1766452305, 1267576395, 1557505617, 1187833560, 956187431, 1970977586, 1160235159, 1610259028, 489585797, 459139078, 566263183, 954319278, 1545018565, 1753946743, 948214318, 422878159, 883926576, 1424009347, 824732372, 1290433180, 80297942, 417294230, 1402647904, 2078392782, 220505045, 787368129, 463781454, 293083578, 808156928, 293976361}, Field9: []uint32{0xaa4976e8, 0x3da8cc4c, 0x8c470d83, 0x344d964e, 0x5b90925, 0xa4c4d34e, 0x666eff19, 0xc238e552, 0x9be53bb6, 0x56364245, 0x33ee079d, 0x96bf0ede, 0x7941b74f, 0xdb07cb47, 0x6d76d827, 0x9b211d5d, 0x2798adb6, 0xe48b0c3b, 0x87061b21, 0x48f4e4d2, 0x3e5d5c12, 0x5ee91288, 0x336d4f35, 0xe1d44941, 0xc065548d, 0x2953d73f, 0x873af451, 0xfc769db, 0x9f1bf8da, 0x9baafdfc, 0xf1d3d770, 0x5bb5d2b4, 0xc2c67c48, 0x6845c4c1, 0xa48f32b0, 0xbb04bb70, 0xa5b1ca36, 0x8d98356a, 0x2171f654, 0x5ae279b0, 0x6c4a3d6b, 0x4fff5468, 0xcf9bf851, 0x68513614, 0xdbecd9b0, 0x9553ed3c, 0xa494a736, 0x42205438, 0xbf8e5caa, 0xd3283c6, 0x76d20788, 0x9179826f, 0x96b24f85, 0xbc2eacf4, 0xe4afae0b, 0x4bca85cb, 0x35e63b5b, 0xd7ccee0c, 0x2b506bb9, 0xe78e9f44, 0x9ad232f1, 0x99a37335, 0xa5d6ffc8}, Field11: []uint64{0x53c01ebc, 0x4fb85ba6, 0x8805eea1, 0xb20ec896, 0x93b63410, 0xec7c9492, 0x50765a28, 0x19592106, 0x2ecc59b3, 0x39cd474f, 0xe4c9e47, 0x444f48c5, 0xe7731d32, 0xf3f43975, 0x603caedd, 0xbb05a1af, 0xa808e34e, 0x88580b07, 0x4c96bbd1, 0x730b4ab9, 0xed126e2b, 0x6db48205, 0x154ba1b9, 0xc26bfb6a, 0x389aa052, 0x869d966c, 0x7c86b366, 0xcc8edbcd, 0xfa8d6dad, 0xcf5857d9, 0x2d9cda0f, 0x1218a0b8, 0x41bf997, 0xf0ca65ac, 0xa610d4b9, 0x8d362e28, 0xb7212d87, 0x8e0fe109, 0xbee041d9, 0x759be2f6, 0x35fef4f3, 0xaeacdb71, 0x10888852, 0xf4e28117, 0xe2a14812, 0x73b748dc, 0xd1c3c6b2, 0xfef41bf0, 0xc9b43b62, 0x810e4faa, 0xcaa41c06, 0x1893fe0d, 0xedc7c850, 0xd12b9eaa, 0x467ee1a9, 0xbe84756b, 0xda7b1680, 0xdc069ffe, 0xf1e7e9f9, 0xb3d95370, 0xa92b77df, 0x5693ac41, 0xd04b7287, 0x27aebf15, 0x837b316e, 0x4dbe2263, 0xbab70c67, 0x547dab21, 0x3c346c1f, 0xb8ef0e4e, 0xfe2d03ce, 0xe1d75955, 0xfec1306, 0xba35c23e, 0xb784ed04, 0x2a4e33aa, 0x7e19d09a, 0x3827c1fe, 0xf3a51561, 0xef765e2b, 0xb044256c, 0x62b322be, 0xf34d56be, 0xeb71b369, 0xffe1294f, 0x237fe8d0, 0x77a1473b, 0x239e1196, 0xdd19bf3d, 0x82c91fe1, 0x95361c57, 0xffea3f1b, 0x1a094c84}, Field12: []int64{8308420747267165049, 3664160795077875961, 7868970059161834817, 7237335984251173739, 5254748003907196506, 3362259627111837480, 430460752854552122, 5119635556501066533, 1277716037866233522, 9185775384759813768, 833932430882717888, 7986528304451297640, 6792233378368656337, 2074207091120609721, 1788723326198279432, 7756514594746453657, 2283775964901597324, 3061497730110517191, 7733947890656120277, 626967303632386244, 7822928600388582821, 3489658753000061230, 168869995163005961, 248814782163480763, 477885608911386247, 4198422415674133867, 3379354662797976109, 9925112544736939, 1486335136459138480, 4561560414032850671, 1010864164014091267, 186722821683803084, 5106357936724819318, 1298160820191228988, 4675403242419953145, 7130634540106489752, 7101280006672440929, 7176058292431955718, 9109875054097770321, 6810974877085322872, 4736707874303993641, 8993135362721382187, 6857881554990254283, 3704748883307461680, 1099360832887634994, 5207691918707192633, 5984721695043995243}, } size := proto.Size(n) data, err := proto.Marshal(n) if err != nil { panic(err) } if len(data) != size { t.Fatalf("expected %v, but got %v diff is %v", len(data), size, len(data)-size) } } func testSize(m interface { proto.Message Size() int }, desc string, expected int) ([]byte, error) { data, err := proto.Marshal(m) if err != nil { return nil, err } protoSize := proto.Size(m) mSize := m.Size() lenData := len(data) if protoSize != mSize || protoSize != lenData || mSize != lenData { return nil, fmt.Errorf("%s proto.Size(m){%d} != m.Size(){%d} != len(data){%d}", desc, protoSize, mSize, lenData) } if got := protoSize; got != expected { return nil, fmt.Errorf("%s proto.Size(m) got %d expected %d", desc, got, expected) } if got := mSize; got != expected { return nil, fmt.Errorf("%s m.Size() got %d expected %d", desc, got, expected) } if got := lenData; got != expected { return nil, fmt.Errorf("%s len(data) got %d expected %d", desc, got, expected) } return data, nil } func TestInt32Int64Compatibility(t *testing.T) { //test nullable int32 and int64 data1, err := testSize(&NinOptNative{ Field3: proto.Int32(-1), }, "nullable", 11) if err != nil { t.Error(err) } //change marshaled data1 to unmarshal into 4th field which is an int64 data1[0] = uint8(uint32(4 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) u1 := &NinOptNative{} if err = proto.Unmarshal(data1, u1); err != nil { t.Error(err) } if !u1.Equal(&NinOptNative{ Field4: proto.Int64(-1), }) { t.Error("nullable unmarshaled int32 is not the same int64") } //test non-nullable int32 and int64 data2, err := testSize(&NidOptNative{ Field3: -1, }, "non nullable", 67) if err != nil { t.Error(err) } //change marshaled data2 to unmarshal into 4th field which is an int64 field3 := uint8(uint32(3 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) field4 := uint8(uint32(4 /*fieldNumber*/)<<3 | uint32(0 /*wireType*/)) for i, c := range data2 { if c == field4 { data2[i] = field3 } else if c == field3 { data2[i] = field4 } } u2 := &NidOptNative{} if err = proto.Unmarshal(data2, u2); err != nil { t.Error(err) } if !u2.Equal(&NidOptNative{ Field4: -1, }) { t.Error("non nullable unmarshaled int32 is not the same int64") } //test packed repeated int32 and int64 m4 := &NinRepPackedNative{ Field3: []int32{-1}, } data4, err := testSize(m4, "packed", 12) if err != nil { t.Error(err) } u4 := &NinRepPackedNative{} if err := proto.Unmarshal(data4, u4); err != nil { t.Error(err) } if err := u4.VerboseEqual(m4); err != nil { t.Fatalf("%#v", u4) } //test repeated int32 and int64 if _, err := testSize(&NinRepNative{ Field3: []int32{-1}, }, "repeated", 11); err != nil { t.Error(err) } t.Logf("tested all") } func TestRepeatedExtensionsMsgsIssue161(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) rep := 10 nins := make([]*NinOptNative, rep) for i := range nins { nins[i] = NewPopulatedNinOptNative(r, true) } input := &MyExtendable{} if err := proto.SetExtension(input, E_FieldE, nins); err != nil { t.Fatal(err) } data, err := proto.Marshal(input) if err != nil { t.Fatal(err) } output := &MyExtendable{} if err := proto.Unmarshal(data, output); err != nil { t.Fatal(err) } if !input.Equal(output) { t.Fatal("expected equal") } data2, err2 := proto.Marshal(output) if err2 != nil { t.Fatal(err2) } if len(data) != len(data2) { t.Fatal("expected equal length buffers") } } func TestRepeatedExtensionsFieldsIssue161(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) rep := 10 ints := make([]int64, rep) for i := range ints { ints[i] = r.Int63() } input := &MyExtendable{} if err := proto.SetExtension(input, E_FieldD, ints); err != nil { t.Fatal(err) } data, err := proto.Marshal(input) if err != nil { t.Fatal(err) } output := &MyExtendable{} if err := proto.Unmarshal(data, output); err != nil { t.Fatal(err) } if !input.Equal(output) { t.Fatal("expected equal") } data2, err2 := proto.Marshal(output) if err2 != nil { t.Fatal(err2) } if len(data) != len(data2) { t.Fatal("expected equal length buffers") } } golang-gogoprotobuf-0.5/test/combos/unmarshaler/t.go000066400000000000000000000021531317075173200227220ustar00rootroot00000000000000package test import ( "encoding/json" "strings" "github.com/gogo/protobuf/proto" ) type T struct { Data string } func (gt *T) protoType() *ProtoType { return &ProtoType{ Field2: >.Data, } } func (gt T) Equal(other T) bool { return gt.protoType().Equal(other.protoType()) } func (gt *T) Size() int { proto := &ProtoType{ Field2: >.Data, } return proto.Size() } func NewPopulatedT(r randyThetest) *T { data := NewPopulatedProtoType(r, false).Field2 gt := &T{} if data != nil { gt.Data = *data } return gt } func (r T) Marshal() ([]byte, error) { return proto.Marshal(r.protoType()) } func (r *T) Unmarshal(data []byte) error { pr := &ProtoType{} err := proto.Unmarshal(data, pr) if err != nil { return err } if pr.Field2 != nil { r.Data = *pr.Field2 } return nil } func (gt T) MarshalJSON() ([]byte, error) { return json.Marshal(gt.Data) } func (gt *T) UnmarshalJSON(data []byte) error { var s string err := json.Unmarshal(data, &s) if err != nil { return err } *gt = T{Data: s} return nil } func (gt T) Compare(other T) int { return strings.Compare(gt.Data, other.Data) } golang-gogoprotobuf-0.5/test/combos/unmarshaler/thetest.pb.go000066400000000000000000037233331317075173200245540ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/thetest.proto /* Package test is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/thetest.proto It has these top-level messages: NidOptNative NinOptNative NidRepNative NinRepNative NidRepPackedNative NinRepPackedNative NidOptStruct NinOptStruct NidRepStruct NinRepStruct NidEmbeddedStruct NinEmbeddedStruct NidNestedStruct NinNestedStruct NidOptCustom CustomDash NinOptCustom NidRepCustom NinRepCustom NinOptNativeUnion NinOptStructUnion NinEmbeddedStructUnion NinNestedStructUnion Tree OrBranch AndBranch Leaf DeepTree ADeepBranch AndDeepBranch DeepLeaf Nil NidOptEnum NinOptEnum NidRepEnum NinRepEnum NinOptEnumDefault AnotherNinOptEnum AnotherNinOptEnumDefault Timer MyExtendable OtherExtenable NestedDefinition NestedScope NinOptNativeDefault CustomContainer CustomNameNidOptNative CustomNameNinOptNative CustomNameNinRepNative CustomNameNinStruct CustomNameCustomType CustomNameNinEmbeddedStructUnion CustomNameEnum NoExtensionsMap Unrecognized UnrecognizedWithInner UnrecognizedWithEmbed Node NonByteCustomType NidOptNonByteCustomType NinOptNonByteCustomType NidRepNonByteCustomType NinRepNonByteCustomType ProtoType */ package test import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test_custom_dash_type "github.com/gogo/protobuf/test/custom-dash-type" import bytes "bytes" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import compress_gzip "compress/gzip" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import sort "sort" import reflect "reflect" import io "io" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type TheTestEnum int32 const ( A TheTestEnum = 0 B TheTestEnum = 1 C TheTestEnum = 2 ) var TheTestEnum_name = map[int32]string{ 0: "A", 1: "B", 2: "C", } var TheTestEnum_value = map[string]int32{ "A": 0, "B": 1, "C": 2, } func (x TheTestEnum) Enum() *TheTestEnum { p := new(TheTestEnum) *p = x return p } func (x TheTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(TheTestEnum_name, int32(x)) } func (x *TheTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(TheTestEnum_value, data, "TheTestEnum") if err != nil { return err } *x = TheTestEnum(value) return nil } func (TheTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{0} } type AnotherTestEnum int32 const ( D AnotherTestEnum = 10 E AnotherTestEnum = 11 ) var AnotherTestEnum_name = map[int32]string{ 10: "D", 11: "E", } var AnotherTestEnum_value = map[string]int32{ "D": 10, "E": 11, } func (x AnotherTestEnum) Enum() *AnotherTestEnum { p := new(AnotherTestEnum) *p = x return p } func (x AnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(AnotherTestEnum_name, int32(x)) } func (x *AnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(AnotherTestEnum_value, data, "AnotherTestEnum") if err != nil { return err } *x = AnotherTestEnum(value) return nil } func (AnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{1} } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. type YetAnotherTestEnum int32 const ( AA YetAnotherTestEnum = 0 BetterYetBB YetAnotherTestEnum = 1 ) var YetAnotherTestEnum_name = map[int32]string{ 0: "AA", 1: "BB", } var YetAnotherTestEnum_value = map[string]int32{ "AA": 0, "BB": 1, } func (x YetAnotherTestEnum) Enum() *YetAnotherTestEnum { p := new(YetAnotherTestEnum) *p = x return p } func (x YetAnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(YetAnotherTestEnum_name, int32(x)) } func (x *YetAnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(YetAnotherTestEnum_value, data, "YetAnotherTestEnum") if err != nil { return err } *x = YetAnotherTestEnum(value) return nil } func (YetAnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{2} } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. type YetYetAnotherTestEnum int32 const ( YetYetAnotherTestEnum_CC YetYetAnotherTestEnum = 0 YetYetAnotherTestEnum_BetterYetDD YetYetAnotherTestEnum = 1 ) var YetYetAnotherTestEnum_name = map[int32]string{ 0: "CC", 1: "DD", } var YetYetAnotherTestEnum_value = map[string]int32{ "CC": 0, "DD": 1, } func (x YetYetAnotherTestEnum) Enum() *YetYetAnotherTestEnum { p := new(YetYetAnotherTestEnum) *p = x return p } func (x YetYetAnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(YetYetAnotherTestEnum_name, int32(x)) } func (x *YetYetAnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(YetYetAnotherTestEnum_value, data, "YetYetAnotherTestEnum") if err != nil { return err } *x = YetYetAnotherTestEnum(value) return nil } func (YetYetAnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{3} } type NestedDefinition_NestedEnum int32 const ( TYPE_NESTED NestedDefinition_NestedEnum = 1 ) var NestedDefinition_NestedEnum_name = map[int32]string{ 1: "TYPE_NESTED", } var NestedDefinition_NestedEnum_value = map[string]int32{ "TYPE_NESTED": 1, } func (x NestedDefinition_NestedEnum) Enum() *NestedDefinition_NestedEnum { p := new(NestedDefinition_NestedEnum) *p = x return p } func (x NestedDefinition_NestedEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(NestedDefinition_NestedEnum_name, int32(x)) } func (x *NestedDefinition_NestedEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(NestedDefinition_NestedEnum_value, data, "NestedDefinition_NestedEnum") if err != nil { return err } *x = NestedDefinition_NestedEnum(value) return nil } func (NestedDefinition_NestedEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0} } type NidOptNative struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` Field2 float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` Field3 int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3"` Field4 int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4"` Field5 uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5"` Field6 uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8"` Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9"` Field10 int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10"` Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11"` Field12 int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12"` Field13 bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` Field14 string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptNative) Reset() { *m = NidOptNative{} } func (*NidOptNative) ProtoMessage() {} func (*NidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{0} } type NinOptNative struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNative) Reset() { *m = NinOptNative{} } func (*NinOptNative) ProtoMessage() {} func (*NinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{1} } type NidRepNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepNative) Reset() { *m = NidRepNative{} } func (*NidRepNative) ProtoMessage() {} func (*NidRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{2} } type NinRepNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNative) Reset() { *m = NinRepNative{} } func (*NinRepNative) ProtoMessage() {} func (*NinRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{3} } type NidRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepPackedNative) Reset() { *m = NidRepPackedNative{} } func (*NidRepPackedNative) ProtoMessage() {} func (*NidRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{4} } type NinRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepPackedNative) Reset() { *m = NinRepPackedNative{} } func (*NinRepPackedNative) ProtoMessage() {} func (*NinRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{5} } type NidOptStruct struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` Field2 float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` Field3 NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3"` Field4 NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4"` Field6 uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` Field8 NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8"` Field13 bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` Field14 string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptStruct) Reset() { *m = NidOptStruct{} } func (*NidOptStruct) ProtoMessage() {} func (*NidOptStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{6} } type NinOptStruct struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptStruct) Reset() { *m = NinOptStruct{} } func (*NinOptStruct) ProtoMessage() {} func (*NinOptStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{7} } type NidRepStruct struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []NidOptNative `protobuf:"bytes,3,rep,name=Field3" json:"Field3"` Field4 []NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []NidOptNative `protobuf:"bytes,8,rep,name=Field8" json:"Field8"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepStruct) Reset() { *m = NidRepStruct{} } func (*NidRepStruct) ProtoMessage() {} func (*NidRepStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{8} } type NinRepStruct struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []*NidOptNative `protobuf:"bytes,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []*NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []*NidOptNative `protobuf:"bytes,8,rep,name=Field8" json:"Field8,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepStruct) Reset() { *m = NinRepStruct{} } func (*NinRepStruct) ProtoMessage() {} func (*NinRepStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{9} } type NidEmbeddedStruct struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 NidOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200"` Field210 bool `protobuf:"varint,210,opt,name=Field210" json:"Field210"` XXX_unrecognized []byte `json:"-"` } func (m *NidEmbeddedStruct) Reset() { *m = NidEmbeddedStruct{} } func (*NidEmbeddedStruct) ProtoMessage() {} func (*NidEmbeddedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{10} } type NinEmbeddedStruct struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 *NidOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` Field210 *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinEmbeddedStruct) Reset() { *m = NinEmbeddedStruct{} } func (*NinEmbeddedStruct) ProtoMessage() {} func (*NinEmbeddedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{11} } type NidNestedStruct struct { Field1 NidOptStruct `protobuf:"bytes,1,opt,name=Field1" json:"Field1"` Field2 []NidRepStruct `protobuf:"bytes,2,rep,name=Field2" json:"Field2"` XXX_unrecognized []byte `json:"-"` } func (m *NidNestedStruct) Reset() { *m = NidNestedStruct{} } func (*NidNestedStruct) ProtoMessage() {} func (*NidNestedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{12} } type NinNestedStruct struct { Field1 *NinOptStruct `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 []*NinRepStruct `protobuf:"bytes,2,rep,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinNestedStruct) Reset() { *m = NinNestedStruct{} } func (*NinNestedStruct) ProtoMessage() {} func (*NinNestedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{13} } type NidOptCustom struct { Id Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id"` Value github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptCustom) Reset() { *m = NidOptCustom{} } func (*NidOptCustom) ProtoMessage() {} func (*NidOptCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{14} } type CustomDash struct { Value *github_com_gogo_protobuf_test_custom_dash_type.Bytes `protobuf:"bytes,1,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom-dash-type.Bytes" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomDash) Reset() { *m = CustomDash{} } func (*CustomDash) ProtoMessage() {} func (*CustomDash) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{15} } type NinOptCustom struct { Id *Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id,omitempty"` Value *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptCustom) Reset() { *m = NinOptCustom{} } func (*NinOptCustom) ProtoMessage() {} func (*NinOptCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{16} } type NidRepCustom struct { Id []Uuid `protobuf:"bytes,1,rep,name=Id,customtype=Uuid" json:"Id"` Value []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepCustom) Reset() { *m = NidRepCustom{} } func (*NidRepCustom) ProtoMessage() {} func (*NidRepCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{17} } type NinRepCustom struct { Id []Uuid `protobuf:"bytes,1,rep,name=Id,customtype=Uuid" json:"Id,omitempty"` Value []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepCustom) Reset() { *m = NinRepCustom{} } func (*NinRepCustom) ProtoMessage() {} func (*NinRepCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{18} } type NinOptNativeUnion struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNativeUnion) Reset() { *m = NinOptNativeUnion{} } func (*NinOptNativeUnion) ProtoMessage() {} func (*NinOptNativeUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{19} } type NinOptStructUnion struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptStructUnion) Reset() { *m = NinOptStructUnion{} } func (*NinOptStructUnion) ProtoMessage() {} func (*NinOptStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{20} } type NinEmbeddedStructUnion struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 *NinOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` Field210 *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinEmbeddedStructUnion) Reset() { *m = NinEmbeddedStructUnion{} } func (*NinEmbeddedStructUnion) ProtoMessage() {} func (*NinEmbeddedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{21} } type NinNestedStructUnion struct { Field1 *NinOptNativeUnion `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *NinOptStructUnion `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NinEmbeddedStructUnion `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinNestedStructUnion) Reset() { *m = NinNestedStructUnion{} } func (*NinNestedStructUnion) ProtoMessage() {} func (*NinNestedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{22} } type Tree struct { Or *OrBranch `protobuf:"bytes,1,opt,name=Or" json:"Or,omitempty"` And *AndBranch `protobuf:"bytes,2,opt,name=And" json:"And,omitempty"` Leaf *Leaf `protobuf:"bytes,3,opt,name=Leaf" json:"Leaf,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Tree) Reset() { *m = Tree{} } func (*Tree) ProtoMessage() {} func (*Tree) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{23} } type OrBranch struct { Left Tree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right Tree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *OrBranch) Reset() { *m = OrBranch{} } func (*OrBranch) ProtoMessage() {} func (*OrBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{24} } type AndBranch struct { Left Tree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right Tree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *AndBranch) Reset() { *m = AndBranch{} } func (*AndBranch) ProtoMessage() {} func (*AndBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{25} } type Leaf struct { Value int64 `protobuf:"varint,1,opt,name=Value" json:"Value"` StrValue string `protobuf:"bytes,2,opt,name=StrValue" json:"StrValue"` XXX_unrecognized []byte `json:"-"` } func (m *Leaf) Reset() { *m = Leaf{} } func (*Leaf) ProtoMessage() {} func (*Leaf) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{26} } type DeepTree struct { Down *ADeepBranch `protobuf:"bytes,1,opt,name=Down" json:"Down,omitempty"` And *AndDeepBranch `protobuf:"bytes,2,opt,name=And" json:"And,omitempty"` Leaf *DeepLeaf `protobuf:"bytes,3,opt,name=Leaf" json:"Leaf,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *DeepTree) Reset() { *m = DeepTree{} } func (*DeepTree) ProtoMessage() {} func (*DeepTree) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{27} } type ADeepBranch struct { Down DeepTree `protobuf:"bytes,2,opt,name=Down" json:"Down"` XXX_unrecognized []byte `json:"-"` } func (m *ADeepBranch) Reset() { *m = ADeepBranch{} } func (*ADeepBranch) ProtoMessage() {} func (*ADeepBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{28} } type AndDeepBranch struct { Left DeepTree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right DeepTree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *AndDeepBranch) Reset() { *m = AndDeepBranch{} } func (*AndDeepBranch) ProtoMessage() {} func (*AndDeepBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{29} } type DeepLeaf struct { Tree Tree `protobuf:"bytes,1,opt,name=Tree" json:"Tree"` XXX_unrecognized []byte `json:"-"` } func (m *DeepLeaf) Reset() { *m = DeepLeaf{} } func (*DeepLeaf) ProtoMessage() {} func (*DeepLeaf) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{30} } type Nil struct { XXX_unrecognized []byte `json:"-"` } func (m *Nil) Reset() { *m = Nil{} } func (*Nil) ProtoMessage() {} func (*Nil) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{31} } type NidOptEnum struct { Field1 TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptEnum) Reset() { *m = NidOptEnum{} } func (*NidOptEnum) ProtoMessage() {} func (*NidOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{32} } type NinOptEnum struct { Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptEnum) Reset() { *m = NinOptEnum{} } func (*NinOptEnum) ProtoMessage() {} func (*NinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{33} } type NidRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 []YetAnotherTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 []YetYetAnotherTestEnum `protobuf:"varint,3,rep,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepEnum) Reset() { *m = NidRepEnum{} } func (*NidRepEnum) ProtoMessage() {} func (*NidRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{34} } type NinRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 []YetAnotherTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 []YetYetAnotherTestEnum `protobuf:"varint,3,rep,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepEnum) Reset() { *m = NinRepEnum{} } func (*NinRepEnum) ProtoMessage() {} func (*NinRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{35} } type NinOptEnumDefault struct { Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum,def=2" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum,def=1" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum,def=0" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptEnumDefault) Reset() { *m = NinOptEnumDefault{} } func (*NinOptEnumDefault) ProtoMessage() {} func (*NinOptEnumDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{36} } const Default_NinOptEnumDefault_Field1 TheTestEnum = C const Default_NinOptEnumDefault_Field2 YetAnotherTestEnum = BetterYetBB const Default_NinOptEnumDefault_Field3 YetYetAnotherTestEnum = YetYetAnotherTestEnum_CC func (m *NinOptEnumDefault) GetField1() TheTestEnum { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_NinOptEnumDefault_Field1 } func (m *NinOptEnumDefault) GetField2() YetAnotherTestEnum { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_NinOptEnumDefault_Field2 } func (m *NinOptEnumDefault) GetField3() YetYetAnotherTestEnum { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_NinOptEnumDefault_Field3 } type AnotherNinOptEnum struct { Field1 *AnotherTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.AnotherTestEnum" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *AnotherNinOptEnum) Reset() { *m = AnotherNinOptEnum{} } func (*AnotherNinOptEnum) ProtoMessage() {} func (*AnotherNinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{37} } type AnotherNinOptEnumDefault struct { Field1 *AnotherTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.AnotherTestEnum,def=11" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum,def=1" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum,def=0" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *AnotherNinOptEnumDefault) Reset() { *m = AnotherNinOptEnumDefault{} } func (*AnotherNinOptEnumDefault) ProtoMessage() {} func (*AnotherNinOptEnumDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{38} } const Default_AnotherNinOptEnumDefault_Field1 AnotherTestEnum = E const Default_AnotherNinOptEnumDefault_Field2 YetAnotherTestEnum = BetterYetBB const Default_AnotherNinOptEnumDefault_Field3 YetYetAnotherTestEnum = YetYetAnotherTestEnum_CC func (m *AnotherNinOptEnumDefault) GetField1() AnotherTestEnum { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_AnotherNinOptEnumDefault_Field1 } func (m *AnotherNinOptEnumDefault) GetField2() YetAnotherTestEnum { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_AnotherNinOptEnumDefault_Field2 } func (m *AnotherNinOptEnumDefault) GetField3() YetYetAnotherTestEnum { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_AnotherNinOptEnumDefault_Field3 } type Timer struct { Time1 int64 `protobuf:"fixed64,1,opt,name=Time1" json:"Time1"` Time2 int64 `protobuf:"fixed64,2,opt,name=Time2" json:"Time2"` Data []byte `protobuf:"bytes,3,opt,name=Data" json:"Data"` XXX_unrecognized []byte `json:"-"` } func (m *Timer) Reset() { *m = Timer{} } func (*Timer) ProtoMessage() {} func (*Timer) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{39} } type MyExtendable struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *MyExtendable) Reset() { *m = MyExtendable{} } func (*MyExtendable) ProtoMessage() {} func (*MyExtendable) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{40} } var extRange_MyExtendable = []proto.ExtensionRange{ {Start: 100, End: 199}, } func (*MyExtendable) ExtensionRangeArray() []proto.ExtensionRange { return extRange_MyExtendable } type OtherExtenable struct { Field2 *int64 `protobuf:"varint,2,opt,name=Field2" json:"Field2,omitempty"` Field13 *int64 `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` M *MyExtendable `protobuf:"bytes,1,opt,name=M" json:"M,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *OtherExtenable) Reset() { *m = OtherExtenable{} } func (*OtherExtenable) ProtoMessage() {} func (*OtherExtenable) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{41} } var extRange_OtherExtenable = []proto.ExtensionRange{ {Start: 14, End: 16}, {Start: 10, End: 12}, } func (*OtherExtenable) ExtensionRangeArray() []proto.ExtensionRange { return extRange_OtherExtenable } type NestedDefinition struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` EnumField *NestedDefinition_NestedEnum `protobuf:"varint,2,opt,name=EnumField,enum=test.NestedDefinition_NestedEnum" json:"EnumField,omitempty"` NNM *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,3,opt,name=NNM" json:"NNM,omitempty"` NM *NestedDefinition_NestedMessage `protobuf:"bytes,4,opt,name=NM" json:"NM,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition) Reset() { *m = NestedDefinition{} } func (*NestedDefinition) ProtoMessage() {} func (*NestedDefinition) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42} } type NestedDefinition_NestedMessage struct { NestedField1 *uint64 `protobuf:"fixed64,1,opt,name=NestedField1" json:"NestedField1,omitempty"` NNM *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,2,opt,name=NNM" json:"NNM,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition_NestedMessage) Reset() { *m = NestedDefinition_NestedMessage{} } func (*NestedDefinition_NestedMessage) ProtoMessage() {} func (*NestedDefinition_NestedMessage) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0} } type NestedDefinition_NestedMessage_NestedNestedMsg struct { NestedNestedField1 *string `protobuf:"bytes,10,opt,name=NestedNestedField1" json:"NestedNestedField1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Reset() { *m = NestedDefinition_NestedMessage_NestedNestedMsg{} } func (*NestedDefinition_NestedMessage_NestedNestedMsg) ProtoMessage() {} func (*NestedDefinition_NestedMessage_NestedNestedMsg) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0, 0} } type NestedScope struct { A *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,1,opt,name=A" json:"A,omitempty"` B *NestedDefinition_NestedEnum `protobuf:"varint,2,opt,name=B,enum=test.NestedDefinition_NestedEnum" json:"B,omitempty"` C *NestedDefinition_NestedMessage `protobuf:"bytes,3,opt,name=C" json:"C,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedScope) Reset() { *m = NestedScope{} } func (*NestedScope) ProtoMessage() {} func (*NestedScope) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{43} } type NinOptNativeDefault struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1,def=1234.1234" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2,def=1234.12341" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3,def=1234" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4,def=1234" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5,def=1234" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6,def=1234" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7,def=1234" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,opt,name=Field8,def=1234" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,opt,name=Field9,def=1234" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,opt,name=Field10,def=1234" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,opt,name=Field11,def=1234" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,opt,name=Field12,def=1234" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13,def=1" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14,def=1234" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNativeDefault) Reset() { *m = NinOptNativeDefault{} } func (*NinOptNativeDefault) ProtoMessage() {} func (*NinOptNativeDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{44} } const Default_NinOptNativeDefault_Field1 float64 = 1234.1234 const Default_NinOptNativeDefault_Field2 float32 = 1234.12341 const Default_NinOptNativeDefault_Field3 int32 = 1234 const Default_NinOptNativeDefault_Field4 int64 = 1234 const Default_NinOptNativeDefault_Field5 uint32 = 1234 const Default_NinOptNativeDefault_Field6 uint64 = 1234 const Default_NinOptNativeDefault_Field7 int32 = 1234 const Default_NinOptNativeDefault_Field8 int64 = 1234 const Default_NinOptNativeDefault_Field9 uint32 = 1234 const Default_NinOptNativeDefault_Field10 int32 = 1234 const Default_NinOptNativeDefault_Field11 uint64 = 1234 const Default_NinOptNativeDefault_Field12 int64 = 1234 const Default_NinOptNativeDefault_Field13 bool = true const Default_NinOptNativeDefault_Field14 string = "1234" func (m *NinOptNativeDefault) GetField1() float64 { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_NinOptNativeDefault_Field1 } func (m *NinOptNativeDefault) GetField2() float32 { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_NinOptNativeDefault_Field2 } func (m *NinOptNativeDefault) GetField3() int32 { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_NinOptNativeDefault_Field3 } func (m *NinOptNativeDefault) GetField4() int64 { if m != nil && m.Field4 != nil { return *m.Field4 } return Default_NinOptNativeDefault_Field4 } func (m *NinOptNativeDefault) GetField5() uint32 { if m != nil && m.Field5 != nil { return *m.Field5 } return Default_NinOptNativeDefault_Field5 } func (m *NinOptNativeDefault) GetField6() uint64 { if m != nil && m.Field6 != nil { return *m.Field6 } return Default_NinOptNativeDefault_Field6 } func (m *NinOptNativeDefault) GetField7() int32 { if m != nil && m.Field7 != nil { return *m.Field7 } return Default_NinOptNativeDefault_Field7 } func (m *NinOptNativeDefault) GetField8() int64 { if m != nil && m.Field8 != nil { return *m.Field8 } return Default_NinOptNativeDefault_Field8 } func (m *NinOptNativeDefault) GetField9() uint32 { if m != nil && m.Field9 != nil { return *m.Field9 } return Default_NinOptNativeDefault_Field9 } func (m *NinOptNativeDefault) GetField10() int32 { if m != nil && m.Field10 != nil { return *m.Field10 } return Default_NinOptNativeDefault_Field10 } func (m *NinOptNativeDefault) GetField11() uint64 { if m != nil && m.Field11 != nil { return *m.Field11 } return Default_NinOptNativeDefault_Field11 } func (m *NinOptNativeDefault) GetField12() int64 { if m != nil && m.Field12 != nil { return *m.Field12 } return Default_NinOptNativeDefault_Field12 } func (m *NinOptNativeDefault) GetField13() bool { if m != nil && m.Field13 != nil { return *m.Field13 } return Default_NinOptNativeDefault_Field13 } func (m *NinOptNativeDefault) GetField14() string { if m != nil && m.Field14 != nil { return *m.Field14 } return Default_NinOptNativeDefault_Field14 } func (m *NinOptNativeDefault) GetField15() []byte { if m != nil { return m.Field15 } return nil } type CustomContainer struct { CustomStruct NidOptCustom `protobuf:"bytes,1,opt,name=CustomStruct" json:"CustomStruct"` XXX_unrecognized []byte `json:"-"` } func (m *CustomContainer) Reset() { *m = CustomContainer{} } func (*CustomContainer) ProtoMessage() {} func (*CustomContainer) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{45} } type CustomNameNidOptNative struct { FieldA float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` FieldB float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` FieldC int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3"` FieldD int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4"` FieldE uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5"` FieldF uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` FieldG int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` FieldH int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8"` FieldI uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9"` FieldJ int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10"` FieldK uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11"` FieldL int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12"` FieldM bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` FieldN string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` FieldO []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNidOptNative) Reset() { *m = CustomNameNidOptNative{} } func (*CustomNameNidOptNative) ProtoMessage() {} func (*CustomNameNidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{46} } type CustomNameNinOptNative struct { FieldA *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` FieldB *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` FieldC *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` FieldD *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` FieldE *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` FieldF *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` FieldG *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` FieldH *int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8,omitempty"` FieldI *uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9,omitempty"` FieldJ *int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10,omitempty"` FieldK *uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11,omitempty"` FielL *int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12,omitempty"` FieldM *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` FieldN *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` FieldO []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinOptNative) Reset() { *m = CustomNameNinOptNative{} } func (*CustomNameNinOptNative) ProtoMessage() {} func (*CustomNameNinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{47} } type CustomNameNinRepNative struct { FieldA []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` FieldB []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` FieldC []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` FieldD []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` FieldE []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` FieldF []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` FieldG []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` FieldH []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` FieldI []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` FieldJ []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` FieldK []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` FieldL []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` FieldM []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` FieldN []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` FieldO [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinRepNative) Reset() { *m = CustomNameNinRepNative{} } func (*CustomNameNinRepNative) ProtoMessage() {} func (*CustomNameNinRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{48} } type CustomNameNinStruct struct { FieldA *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` FieldB *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` FieldC *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` FieldD []*NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4,omitempty"` FieldE *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` FieldF *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` FieldG *NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8,omitempty"` FieldH *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` FieldI *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` FieldJ []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinStruct) Reset() { *m = CustomNameNinStruct{} } func (*CustomNameNinStruct) ProtoMessage() {} func (*CustomNameNinStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{49} } type CustomNameCustomType struct { FieldA *Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id,omitempty"` FieldB *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` FieldC []Uuid `protobuf:"bytes,3,rep,name=Ids,customtype=Uuid" json:"Ids,omitempty"` FieldD []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,4,rep,name=Values,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Values,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameCustomType) Reset() { *m = CustomNameCustomType{} } func (*CustomNameCustomType) ProtoMessage() {} func (*CustomNameCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{50} } type CustomNameNinEmbeddedStructUnion struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` FieldA *NinOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` FieldB *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinEmbeddedStructUnion) Reset() { *m = CustomNameNinEmbeddedStructUnion{} } func (*CustomNameNinEmbeddedStructUnion) ProtoMessage() {} func (*CustomNameNinEmbeddedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{51} } type CustomNameEnum struct { FieldA *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` FieldB []TheTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.TheTestEnum" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameEnum) Reset() { *m = CustomNameEnum{} } func (*CustomNameEnum) ProtoMessage() {} func (*CustomNameEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{52} } type NoExtensionsMap struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` XXX_extensions []byte `protobuf:"bytes,0,opt" json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *NoExtensionsMap) Reset() { *m = NoExtensionsMap{} } func (*NoExtensionsMap) ProtoMessage() {} func (*NoExtensionsMap) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{53} } var extRange_NoExtensionsMap = []proto.ExtensionRange{ {Start: 100, End: 199}, } func (*NoExtensionsMap) ExtensionRangeArray() []proto.ExtensionRange { return extRange_NoExtensionsMap } func (m *NoExtensionsMap) GetExtensions() *[]byte { if m.XXX_extensions == nil { m.XXX_extensions = make([]byte, 0) } return &m.XXX_extensions } type Unrecognized struct { Field1 *string `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *Unrecognized) Reset() { *m = Unrecognized{} } func (*Unrecognized) ProtoMessage() {} func (*Unrecognized) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{54} } type UnrecognizedWithInner struct { Embedded []*UnrecognizedWithInner_Inner `protobuf:"bytes,1,rep,name=embedded" json:"embedded,omitempty"` Field2 *string `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UnrecognizedWithInner) Reset() { *m = UnrecognizedWithInner{} } func (*UnrecognizedWithInner) ProtoMessage() {} func (*UnrecognizedWithInner) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{55} } type UnrecognizedWithInner_Inner struct { Field1 *uint32 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *UnrecognizedWithInner_Inner) Reset() { *m = UnrecognizedWithInner_Inner{} } func (*UnrecognizedWithInner_Inner) ProtoMessage() {} func (*UnrecognizedWithInner_Inner) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{55, 0} } type UnrecognizedWithEmbed struct { UnrecognizedWithEmbed_Embedded `protobuf:"bytes,1,opt,name=embedded,embedded=embedded" json:"embedded"` Field2 *string `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UnrecognizedWithEmbed) Reset() { *m = UnrecognizedWithEmbed{} } func (*UnrecognizedWithEmbed) ProtoMessage() {} func (*UnrecognizedWithEmbed) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{56} } type UnrecognizedWithEmbed_Embedded struct { Field1 *uint32 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *UnrecognizedWithEmbed_Embedded) Reset() { *m = UnrecognizedWithEmbed_Embedded{} } func (*UnrecognizedWithEmbed_Embedded) ProtoMessage() {} func (*UnrecognizedWithEmbed_Embedded) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{56, 0} } type Node struct { Label *string `protobuf:"bytes,1,opt,name=Label" json:"Label,omitempty"` Children []*Node `protobuf:"bytes,2,rep,name=Children" json:"Children,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Node) Reset() { *m = Node{} } func (*Node) ProtoMessage() {} func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{57} } type NonByteCustomType struct { Field1 *T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NonByteCustomType) Reset() { *m = NonByteCustomType{} } func (*NonByteCustomType) ProtoMessage() {} func (*NonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{58} } type NidOptNonByteCustomType struct { Field1 T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptNonByteCustomType) Reset() { *m = NidOptNonByteCustomType{} } func (*NidOptNonByteCustomType) ProtoMessage() {} func (*NidOptNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{59} } type NinOptNonByteCustomType struct { Field1 *T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNonByteCustomType) Reset() { *m = NinOptNonByteCustomType{} } func (*NinOptNonByteCustomType) ProtoMessage() {} func (*NinOptNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{60} } type NidRepNonByteCustomType struct { Field1 []T `protobuf:"bytes,1,rep,name=Field1,customtype=T" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepNonByteCustomType) Reset() { *m = NidRepNonByteCustomType{} } func (*NidRepNonByteCustomType) ProtoMessage() {} func (*NidRepNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{61} } type NinRepNonByteCustomType struct { Field1 []T `protobuf:"bytes,1,rep,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNonByteCustomType) Reset() { *m = NinRepNonByteCustomType{} } func (*NinRepNonByteCustomType) ProtoMessage() {} func (*NinRepNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{62} } type ProtoType struct { Field2 *string `protobuf:"bytes,1,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *ProtoType) Reset() { *m = ProtoType{} } func (*ProtoType) ProtoMessage() {} func (*ProtoType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{63} } var E_FieldA = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*float64)(nil), Field: 100, Name: "test.FieldA", Tag: "fixed64,100,opt,name=FieldA", Filename: "combos/unmarshaler/thetest.proto", } var E_FieldB = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*NinOptNative)(nil), Field: 101, Name: "test.FieldB", Tag: "bytes,101,opt,name=FieldB", Filename: "combos/unmarshaler/thetest.proto", } var E_FieldC = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*NinEmbeddedStruct)(nil), Field: 102, Name: "test.FieldC", Tag: "bytes,102,opt,name=FieldC", Filename: "combos/unmarshaler/thetest.proto", } var E_FieldD = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: ([]int64)(nil), Field: 104, Name: "test.FieldD", Tag: "varint,104,rep,name=FieldD", Filename: "combos/unmarshaler/thetest.proto", } var E_FieldE = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: ([]*NinOptNative)(nil), Field: 105, Name: "test.FieldE", Tag: "bytes,105,rep,name=FieldE", Filename: "combos/unmarshaler/thetest.proto", } var E_FieldA1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*float64)(nil), Field: 100, Name: "test.FieldA1", Tag: "fixed64,100,opt,name=FieldA1", Filename: "combos/unmarshaler/thetest.proto", } var E_FieldB1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*NinOptNative)(nil), Field: 101, Name: "test.FieldB1", Tag: "bytes,101,opt,name=FieldB1", Filename: "combos/unmarshaler/thetest.proto", } var E_FieldC1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*NinEmbeddedStruct)(nil), Field: 102, Name: "test.FieldC1", Tag: "bytes,102,opt,name=FieldC1", Filename: "combos/unmarshaler/thetest.proto", } func init() { proto.RegisterType((*NidOptNative)(nil), "test.NidOptNative") proto.RegisterType((*NinOptNative)(nil), "test.NinOptNative") proto.RegisterType((*NidRepNative)(nil), "test.NidRepNative") proto.RegisterType((*NinRepNative)(nil), "test.NinRepNative") proto.RegisterType((*NidRepPackedNative)(nil), "test.NidRepPackedNative") proto.RegisterType((*NinRepPackedNative)(nil), "test.NinRepPackedNative") proto.RegisterType((*NidOptStruct)(nil), "test.NidOptStruct") proto.RegisterType((*NinOptStruct)(nil), "test.NinOptStruct") proto.RegisterType((*NidRepStruct)(nil), "test.NidRepStruct") proto.RegisterType((*NinRepStruct)(nil), "test.NinRepStruct") proto.RegisterType((*NidEmbeddedStruct)(nil), "test.NidEmbeddedStruct") proto.RegisterType((*NinEmbeddedStruct)(nil), "test.NinEmbeddedStruct") proto.RegisterType((*NidNestedStruct)(nil), "test.NidNestedStruct") proto.RegisterType((*NinNestedStruct)(nil), "test.NinNestedStruct") proto.RegisterType((*NidOptCustom)(nil), "test.NidOptCustom") proto.RegisterType((*CustomDash)(nil), "test.CustomDash") proto.RegisterType((*NinOptCustom)(nil), "test.NinOptCustom") proto.RegisterType((*NidRepCustom)(nil), "test.NidRepCustom") proto.RegisterType((*NinRepCustom)(nil), "test.NinRepCustom") proto.RegisterType((*NinOptNativeUnion)(nil), "test.NinOptNativeUnion") proto.RegisterType((*NinOptStructUnion)(nil), "test.NinOptStructUnion") proto.RegisterType((*NinEmbeddedStructUnion)(nil), "test.NinEmbeddedStructUnion") proto.RegisterType((*NinNestedStructUnion)(nil), "test.NinNestedStructUnion") proto.RegisterType((*Tree)(nil), "test.Tree") proto.RegisterType((*OrBranch)(nil), "test.OrBranch") proto.RegisterType((*AndBranch)(nil), "test.AndBranch") proto.RegisterType((*Leaf)(nil), "test.Leaf") proto.RegisterType((*DeepTree)(nil), "test.DeepTree") proto.RegisterType((*ADeepBranch)(nil), "test.ADeepBranch") proto.RegisterType((*AndDeepBranch)(nil), "test.AndDeepBranch") proto.RegisterType((*DeepLeaf)(nil), "test.DeepLeaf") proto.RegisterType((*Nil)(nil), "test.Nil") proto.RegisterType((*NidOptEnum)(nil), "test.NidOptEnum") proto.RegisterType((*NinOptEnum)(nil), "test.NinOptEnum") proto.RegisterType((*NidRepEnum)(nil), "test.NidRepEnum") proto.RegisterType((*NinRepEnum)(nil), "test.NinRepEnum") proto.RegisterType((*NinOptEnumDefault)(nil), "test.NinOptEnumDefault") proto.RegisterType((*AnotherNinOptEnum)(nil), "test.AnotherNinOptEnum") proto.RegisterType((*AnotherNinOptEnumDefault)(nil), "test.AnotherNinOptEnumDefault") proto.RegisterType((*Timer)(nil), "test.Timer") proto.RegisterType((*MyExtendable)(nil), "test.MyExtendable") proto.RegisterType((*OtherExtenable)(nil), "test.OtherExtenable") proto.RegisterType((*NestedDefinition)(nil), "test.NestedDefinition") proto.RegisterType((*NestedDefinition_NestedMessage)(nil), "test.NestedDefinition.NestedMessage") proto.RegisterType((*NestedDefinition_NestedMessage_NestedNestedMsg)(nil), "test.NestedDefinition.NestedMessage.NestedNestedMsg") proto.RegisterType((*NestedScope)(nil), "test.NestedScope") proto.RegisterType((*NinOptNativeDefault)(nil), "test.NinOptNativeDefault") proto.RegisterType((*CustomContainer)(nil), "test.CustomContainer") proto.RegisterType((*CustomNameNidOptNative)(nil), "test.CustomNameNidOptNative") proto.RegisterType((*CustomNameNinOptNative)(nil), "test.CustomNameNinOptNative") proto.RegisterType((*CustomNameNinRepNative)(nil), "test.CustomNameNinRepNative") proto.RegisterType((*CustomNameNinStruct)(nil), "test.CustomNameNinStruct") proto.RegisterType((*CustomNameCustomType)(nil), "test.CustomNameCustomType") proto.RegisterType((*CustomNameNinEmbeddedStructUnion)(nil), "test.CustomNameNinEmbeddedStructUnion") proto.RegisterType((*CustomNameEnum)(nil), "test.CustomNameEnum") proto.RegisterType((*NoExtensionsMap)(nil), "test.NoExtensionsMap") proto.RegisterType((*Unrecognized)(nil), "test.Unrecognized") proto.RegisterType((*UnrecognizedWithInner)(nil), "test.UnrecognizedWithInner") proto.RegisterType((*UnrecognizedWithInner_Inner)(nil), "test.UnrecognizedWithInner.Inner") proto.RegisterType((*UnrecognizedWithEmbed)(nil), "test.UnrecognizedWithEmbed") proto.RegisterType((*UnrecognizedWithEmbed_Embedded)(nil), "test.UnrecognizedWithEmbed.Embedded") proto.RegisterType((*Node)(nil), "test.Node") proto.RegisterType((*NonByteCustomType)(nil), "test.NonByteCustomType") proto.RegisterType((*NidOptNonByteCustomType)(nil), "test.NidOptNonByteCustomType") proto.RegisterType((*NinOptNonByteCustomType)(nil), "test.NinOptNonByteCustomType") proto.RegisterType((*NidRepNonByteCustomType)(nil), "test.NidRepNonByteCustomType") proto.RegisterType((*NinRepNonByteCustomType)(nil), "test.NinRepNonByteCustomType") proto.RegisterType((*ProtoType)(nil), "test.ProtoType") proto.RegisterEnum("test.TheTestEnum", TheTestEnum_name, TheTestEnum_value) proto.RegisterEnum("test.AnotherTestEnum", AnotherTestEnum_name, AnotherTestEnum_value) proto.RegisterEnum("test.YetAnotherTestEnum", YetAnotherTestEnum_name, YetAnotherTestEnum_value) proto.RegisterEnum("test.YetYetAnotherTestEnum", YetYetAnotherTestEnum_name, YetYetAnotherTestEnum_value) proto.RegisterEnum("test.NestedDefinition_NestedEnum", NestedDefinition_NestedEnum_name, NestedDefinition_NestedEnum_value) proto.RegisterExtension(E_FieldA) proto.RegisterExtension(E_FieldB) proto.RegisterExtension(E_FieldC) proto.RegisterExtension(E_FieldD) proto.RegisterExtension(E_FieldE) proto.RegisterExtension(E_FieldA1) proto.RegisterExtension(E_FieldB1) proto.RegisterExtension(E_FieldC1) } func (this *NidOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if this.Field2 != that1.Field2 { if this.Field2 < that1.Field2 { return -1 } return 1 } if this.Field3 != that1.Field3 { if this.Field3 < that1.Field3 { return -1 } return 1 } if this.Field4 != that1.Field4 { if this.Field4 < that1.Field4 { return -1 } return 1 } if this.Field5 != that1.Field5 { if this.Field5 < that1.Field5 { return -1 } return 1 } if this.Field6 != that1.Field6 { if this.Field6 < that1.Field6 { return -1 } return 1 } if this.Field7 != that1.Field7 { if this.Field7 < that1.Field7 { return -1 } return 1 } if this.Field8 != that1.Field8 { if this.Field8 < that1.Field8 { return -1 } return 1 } if this.Field9 != that1.Field9 { if this.Field9 < that1.Field9 { return -1 } return 1 } if this.Field10 != that1.Field10 { if this.Field10 < that1.Field10 { return -1 } return 1 } if this.Field11 != that1.Field11 { if this.Field11 < that1.Field11 { return -1 } return 1 } if this.Field12 != that1.Field12 { if this.Field12 < that1.Field12 { return -1 } return 1 } if this.Field13 != that1.Field13 { if !this.Field13 { return -1 } return 1 } if this.Field14 != that1.Field14 { if this.Field14 < that1.Field14 { return -1 } return 1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { if *this.Field8 < *that1.Field8 { return -1 } return 1 } } else if this.Field8 != nil { return 1 } else if that1.Field8 != nil { return -1 } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { if *this.Field9 < *that1.Field9 { return -1 } return 1 } } else if this.Field9 != nil { return 1 } else if that1.Field9 != nil { return -1 } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { if *this.Field10 < *that1.Field10 { return -1 } return 1 } } else if this.Field10 != nil { return 1 } else if that1.Field10 != nil { return -1 } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { if *this.Field11 < *that1.Field11 { return -1 } return 1 } } else if this.Field11 != nil { return 1 } else if that1.Field11 != nil { return -1 } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { if *this.Field12 < *that1.Field12 { return -1 } return 1 } } else if this.Field12 != nil { return 1 } else if that1.Field12 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepPackedNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepPackedNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if this.Field2 != that1.Field2 { if this.Field2 < that1.Field2 { return -1 } return 1 } if c := this.Field3.Compare(&that1.Field3); c != 0 { return c } if c := this.Field4.Compare(&that1.Field4); c != 0 { return c } if this.Field6 != that1.Field6 { if this.Field6 < that1.Field6 { return -1 } return 1 } if this.Field7 != that1.Field7 { if this.Field7 < that1.Field7 { return -1 } return 1 } if c := this.Field8.Compare(&that1.Field8); c != 0 { return c } if this.Field13 != that1.Field13 { if !this.Field13 { return -1 } return 1 } if this.Field14 != that1.Field14 { if this.Field14 < that1.Field14 { return -1 } return 1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := this.Field4.Compare(that1.Field4); c != 0 { return c } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if c := this.Field8.Compare(that1.Field8); c != 0 { return c } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if c := this.Field3[i].Compare(&that1.Field3[i]); c != 0 { return c } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if c := this.Field4[i].Compare(&that1.Field4[i]); c != 0 { return c } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if c := this.Field8[i].Compare(&that1.Field8[i]); c != 0 { return c } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if c := this.Field3[i].Compare(that1.Field3[i]); c != 0 { return c } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if c := this.Field4[i].Compare(that1.Field4[i]); c != 0 { return c } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if c := this.Field8[i].Compare(that1.Field8[i]); c != 0 { return c } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidEmbeddedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(&that1.Field200); c != 0 { return c } if this.Field210 != that1.Field210 { if !this.Field210 { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinEmbeddedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(that1.Field200); c != 0 { return c } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { if !*this.Field210 { return -1 } return 1 } } else if this.Field210 != nil { return 1 } else if that1.Field210 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidNestedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(&that1.Field1); c != 0 { return c } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if c := this.Field2[i].Compare(&that1.Field2[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinNestedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if c := this.Field2[i].Compare(that1.Field2[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Id.Compare(that1.Id); c != 0 { return c } if c := this.Value.Compare(that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomDash) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Value == nil { if this.Value != nil { return 1 } } else if this.Value == nil { return -1 } else if c := this.Value.Compare(*that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Id == nil { if this.Id != nil { return 1 } } else if this.Id == nil { return -1 } else if c := this.Id.Compare(*that1.Id); c != 0 { return c } if that1.Value == nil { if this.Value != nil { return 1 } } else if this.Value == nil { return -1 } else if c := this.Value.Compare(*that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Id) != len(that1.Id) { if len(this.Id) < len(that1.Id) { return -1 } return 1 } for i := range this.Id { if c := this.Id[i].Compare(that1.Id[i]); c != 0 { return c } } if len(this.Value) != len(that1.Value) { if len(this.Value) < len(that1.Value) { return -1 } return 1 } for i := range this.Value { if c := this.Value[i].Compare(that1.Value[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Id) != len(that1.Id) { if len(this.Id) < len(that1.Id) { return -1 } return 1 } for i := range this.Id { if c := this.Id[i].Compare(that1.Id[i]); c != 0 { return c } } if len(this.Value) != len(that1.Value) { if len(this.Value) < len(that1.Value) { return -1 } return 1 } for i := range this.Value { if c := this.Value[i].Compare(that1.Value[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNativeUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := this.Field4.Compare(that1.Field4); c != 0 { return c } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinEmbeddedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(that1.Field200); c != 0 { return c } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { if !*this.Field210 { return -1 } return 1 } } else if this.Field210 != nil { return 1 } else if that1.Field210 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinNestedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if c := this.Field2.Compare(that1.Field2); c != 0 { return c } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Tree) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Or.Compare(that1.Or); c != 0 { return c } if c := this.And.Compare(that1.And); c != 0 { return c } if c := this.Leaf.Compare(that1.Leaf); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *OrBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AndBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Leaf) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } if this.StrValue != that1.StrValue { if this.StrValue < that1.StrValue { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *DeepTree) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Down.Compare(that1.Down); c != 0 { return c } if c := this.And.Compare(that1.And); c != 0 { return c } if c := this.Leaf.Compare(that1.Leaf); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *ADeepBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Down.Compare(&that1.Down); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AndDeepBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *DeepLeaf) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Tree.Compare(&that1.Tree); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Nil) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptEnumDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AnotherNinOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AnotherNinOptEnumDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Timer) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Time1 != that1.Time1 { if this.Time1 < that1.Time1 { return -1 } return 1 } if this.Time2 != that1.Time2 { if this.Time2 < that1.Time2 { return -1 } return 1 } if c := bytes.Compare(this.Data, that1.Data); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *MyExtendable) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) extkeys := make([]int32, 0, len(thismap)+len(thatmap)) for k := range thismap { extkeys = append(extkeys, k) } for k := range thatmap { if _, ok := thismap[k]; !ok { extkeys = append(extkeys, k) } } github_com_gogo_protobuf_sortkeys.Int32s(extkeys) for _, k := range extkeys { if v, ok := thismap[k]; ok { if v2, ok := thatmap[k]; ok { if c := v.Compare(&v2); c != 0 { return c } } else { return 1 } } else { return -1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *OtherExtenable) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if *this.Field13 < *that1.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if c := this.M.Compare(that1.M); c != 0 { return c } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) extkeys := make([]int32, 0, len(thismap)+len(thatmap)) for k := range thismap { extkeys = append(extkeys, k) } for k := range thatmap { if _, ok := thismap[k]; !ok { extkeys = append(extkeys, k) } } github_com_gogo_protobuf_sortkeys.Int32s(extkeys) for _, k := range extkeys { if v, ok := thismap[k]; ok { if v2, ok := thatmap[k]; ok { if c := v.Compare(&v2); c != 0 { return c } } else { return 1 } } else { return -1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { if *this.EnumField < *that1.EnumField { return -1 } return 1 } } else if this.EnumField != nil { return 1 } else if that1.EnumField != nil { return -1 } if c := this.NNM.Compare(that1.NNM); c != 0 { return c } if c := this.NM.Compare(that1.NM); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition_NestedMessage) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { if *this.NestedField1 < *that1.NestedField1 { return -1 } return 1 } } else if this.NestedField1 != nil { return 1 } else if that1.NestedField1 != nil { return -1 } if c := this.NNM.Compare(that1.NNM); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { if *this.NestedNestedField1 < *that1.NestedNestedField1 { return -1 } return 1 } } else if this.NestedNestedField1 != nil { return 1 } else if that1.NestedNestedField1 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedScope) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.A.Compare(that1.A); c != 0 { return c } if this.B != nil && that1.B != nil { if *this.B != *that1.B { if *this.B < *that1.B { return -1 } return 1 } } else if this.B != nil { return 1 } else if that1.B != nil { return -1 } if c := this.C.Compare(that1.C); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNativeDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { if *this.Field8 < *that1.Field8 { return -1 } return 1 } } else if this.Field8 != nil { return 1 } else if that1.Field8 != nil { return -1 } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { if *this.Field9 < *that1.Field9 { return -1 } return 1 } } else if this.Field9 != nil { return 1 } else if that1.Field9 != nil { return -1 } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { if *this.Field10 < *that1.Field10 { return -1 } return 1 } } else if this.Field10 != nil { return 1 } else if that1.Field10 != nil { return -1 } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { if *this.Field11 < *that1.Field11 { return -1 } return 1 } } else if this.Field11 != nil { return 1 } else if that1.Field11 != nil { return -1 } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { if *this.Field12 < *that1.Field12 { return -1 } return 1 } } else if this.Field12 != nil { return 1 } else if that1.Field12 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomContainer) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.CustomStruct.Compare(&that1.CustomStruct); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNidOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != that1.FieldA { if this.FieldA < that1.FieldA { return -1 } return 1 } if this.FieldB != that1.FieldB { if this.FieldB < that1.FieldB { return -1 } return 1 } if this.FieldC != that1.FieldC { if this.FieldC < that1.FieldC { return -1 } return 1 } if this.FieldD != that1.FieldD { if this.FieldD < that1.FieldD { return -1 } return 1 } if this.FieldE != that1.FieldE { if this.FieldE < that1.FieldE { return -1 } return 1 } if this.FieldF != that1.FieldF { if this.FieldF < that1.FieldF { return -1 } return 1 } if this.FieldG != that1.FieldG { if this.FieldG < that1.FieldG { return -1 } return 1 } if this.FieldH != that1.FieldH { if this.FieldH < that1.FieldH { return -1 } return 1 } if this.FieldI != that1.FieldI { if this.FieldI < that1.FieldI { return -1 } return 1 } if this.FieldJ != that1.FieldJ { if this.FieldJ < that1.FieldJ { return -1 } return 1 } if this.FieldK != that1.FieldK { if this.FieldK < that1.FieldK { return -1 } return 1 } if this.FieldL != that1.FieldL { if this.FieldL < that1.FieldL { return -1 } return 1 } if this.FieldM != that1.FieldM { if !this.FieldM { return -1 } return 1 } if this.FieldN != that1.FieldN { if this.FieldN < that1.FieldN { return -1 } return 1 } if c := bytes.Compare(this.FieldO, that1.FieldO); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if *this.FieldB < *that1.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { if *this.FieldC < *that1.FieldC { return -1 } return 1 } } else if this.FieldC != nil { return 1 } else if that1.FieldC != nil { return -1 } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { if *this.FieldD < *that1.FieldD { return -1 } return 1 } } else if this.FieldD != nil { return 1 } else if that1.FieldD != nil { return -1 } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { if *this.FieldE < *that1.FieldE { return -1 } return 1 } } else if this.FieldE != nil { return 1 } else if that1.FieldE != nil { return -1 } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { if *this.FieldF < *that1.FieldF { return -1 } return 1 } } else if this.FieldF != nil { return 1 } else if that1.FieldF != nil { return -1 } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { if *this.FieldG < *that1.FieldG { return -1 } return 1 } } else if this.FieldG != nil { return 1 } else if that1.FieldG != nil { return -1 } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { if *this.FieldH < *that1.FieldH { return -1 } return 1 } } else if this.FieldH != nil { return 1 } else if that1.FieldH != nil { return -1 } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { if *this.FieldI < *that1.FieldI { return -1 } return 1 } } else if this.FieldI != nil { return 1 } else if that1.FieldI != nil { return -1 } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { if *this.FieldJ < *that1.FieldJ { return -1 } return 1 } } else if this.FieldJ != nil { return 1 } else if that1.FieldJ != nil { return -1 } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { if *this.FieldK < *that1.FieldK { return -1 } return 1 } } else if this.FieldK != nil { return 1 } else if that1.FieldK != nil { return -1 } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { if *this.FielL < *that1.FielL { return -1 } return 1 } } else if this.FielL != nil { return 1 } else if that1.FielL != nil { return -1 } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { if !*this.FieldM { return -1 } return 1 } } else if this.FieldM != nil { return 1 } else if that1.FieldM != nil { return -1 } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { if *this.FieldN < *that1.FieldN { return -1 } return 1 } } else if this.FieldN != nil { return 1 } else if that1.FieldN != nil { return -1 } if c := bytes.Compare(this.FieldO, that1.FieldO); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.FieldA) != len(that1.FieldA) { if len(this.FieldA) < len(that1.FieldA) { return -1 } return 1 } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { if this.FieldA[i] < that1.FieldA[i] { return -1 } return 1 } } if len(this.FieldB) != len(that1.FieldB) { if len(this.FieldB) < len(that1.FieldB) { return -1 } return 1 } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { if this.FieldB[i] < that1.FieldB[i] { return -1 } return 1 } } if len(this.FieldC) != len(that1.FieldC) { if len(this.FieldC) < len(that1.FieldC) { return -1 } return 1 } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { if this.FieldC[i] < that1.FieldC[i] { return -1 } return 1 } } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { if this.FieldD[i] < that1.FieldD[i] { return -1 } return 1 } } if len(this.FieldE) != len(that1.FieldE) { if len(this.FieldE) < len(that1.FieldE) { return -1 } return 1 } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { if this.FieldE[i] < that1.FieldE[i] { return -1 } return 1 } } if len(this.FieldF) != len(that1.FieldF) { if len(this.FieldF) < len(that1.FieldF) { return -1 } return 1 } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { if this.FieldF[i] < that1.FieldF[i] { return -1 } return 1 } } if len(this.FieldG) != len(that1.FieldG) { if len(this.FieldG) < len(that1.FieldG) { return -1 } return 1 } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { if this.FieldG[i] < that1.FieldG[i] { return -1 } return 1 } } if len(this.FieldH) != len(that1.FieldH) { if len(this.FieldH) < len(that1.FieldH) { return -1 } return 1 } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { if this.FieldH[i] < that1.FieldH[i] { return -1 } return 1 } } if len(this.FieldI) != len(that1.FieldI) { if len(this.FieldI) < len(that1.FieldI) { return -1 } return 1 } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { if this.FieldI[i] < that1.FieldI[i] { return -1 } return 1 } } if len(this.FieldJ) != len(that1.FieldJ) { if len(this.FieldJ) < len(that1.FieldJ) { return -1 } return 1 } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { if this.FieldJ[i] < that1.FieldJ[i] { return -1 } return 1 } } if len(this.FieldK) != len(that1.FieldK) { if len(this.FieldK) < len(that1.FieldK) { return -1 } return 1 } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { if this.FieldK[i] < that1.FieldK[i] { return -1 } return 1 } } if len(this.FieldL) != len(that1.FieldL) { if len(this.FieldL) < len(that1.FieldL) { return -1 } return 1 } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { if this.FieldL[i] < that1.FieldL[i] { return -1 } return 1 } } if len(this.FieldM) != len(that1.FieldM) { if len(this.FieldM) < len(that1.FieldM) { return -1 } return 1 } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { if !this.FieldM[i] { return -1 } return 1 } } if len(this.FieldN) != len(that1.FieldN) { if len(this.FieldN) < len(that1.FieldN) { return -1 } return 1 } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { if this.FieldN[i] < that1.FieldN[i] { return -1 } return 1 } } if len(this.FieldO) != len(that1.FieldO) { if len(this.FieldO) < len(that1.FieldO) { return -1 } return 1 } for i := range this.FieldO { if c := bytes.Compare(this.FieldO[i], that1.FieldO[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if *this.FieldB < *that1.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if c := this.FieldC.Compare(that1.FieldC); c != 0 { return c } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if c := this.FieldD[i].Compare(that1.FieldD[i]); c != 0 { return c } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { if *this.FieldE < *that1.FieldE { return -1 } return 1 } } else if this.FieldE != nil { return 1 } else if that1.FieldE != nil { return -1 } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { if *this.FieldF < *that1.FieldF { return -1 } return 1 } } else if this.FieldF != nil { return 1 } else if that1.FieldF != nil { return -1 } if c := this.FieldG.Compare(that1.FieldG); c != 0 { return c } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { if !*this.FieldH { return -1 } return 1 } } else if this.FieldH != nil { return 1 } else if that1.FieldH != nil { return -1 } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { if *this.FieldI < *that1.FieldI { return -1 } return 1 } } else if this.FieldI != nil { return 1 } else if that1.FieldI != nil { return -1 } if c := bytes.Compare(this.FieldJ, that1.FieldJ); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.FieldA == nil { if this.FieldA != nil { return 1 } } else if this.FieldA == nil { return -1 } else if c := this.FieldA.Compare(*that1.FieldA); c != 0 { return c } if that1.FieldB == nil { if this.FieldB != nil { return 1 } } else if this.FieldB == nil { return -1 } else if c := this.FieldB.Compare(*that1.FieldB); c != 0 { return c } if len(this.FieldC) != len(that1.FieldC) { if len(this.FieldC) < len(that1.FieldC) { return -1 } return 1 } for i := range this.FieldC { if c := this.FieldC[i].Compare(that1.FieldC[i]); c != 0 { return c } } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if c := this.FieldD[i].Compare(that1.FieldD[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinEmbeddedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.FieldA.Compare(that1.FieldA); c != 0 { return c } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if !*this.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if len(this.FieldB) != len(that1.FieldB) { if len(this.FieldB) < len(that1.FieldB) { return -1 } return 1 } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { if this.FieldB[i] < that1.FieldB[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NoExtensionsMap) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if c := bytes.Compare(this.XXX_extensions, that1.XXX_extensions); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Unrecognized) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *UnrecognizedWithInner) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Embedded) != len(that1.Embedded) { if len(this.Embedded) < len(that1.Embedded) { return -1 } return 1 } for i := range this.Embedded { if c := this.Embedded[i].Compare(that1.Embedded[i]); c != 0 { return c } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *UnrecognizedWithInner_Inner) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *UnrecognizedWithEmbed) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.UnrecognizedWithEmbed_Embedded.Compare(&that1.UnrecognizedWithEmbed_Embedded); c != 0 { return c } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *UnrecognizedWithEmbed_Embedded) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *Node) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { if *this.Label < *that1.Label { return -1 } return 1 } } else if this.Label != nil { return 1 } else if that1.Label != nil { return -1 } if len(this.Children) != len(that1.Children) { if len(this.Children) < len(that1.Children) { return -1 } return 1 } for i := range this.Children { if c := this.Children[i].Compare(that1.Children[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Field1 == nil { if this.Field1 != nil { return 1 } } else if this.Field1 == nil { return -1 } else if c := this.Field1.Compare(*that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Field1 == nil { if this.Field1 != nil { return 1 } } else if this.Field1 == nil { return -1 } else if c := this.Field1.Compare(*that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if c := this.Field1[i].Compare(that1.Field1[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if c := this.Field1[i].Compare(that1.Field1[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *ProtoType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepPackedNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepPackedNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidEmbeddedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinEmbeddedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidNestedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinNestedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomDash) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNativeUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinEmbeddedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinNestedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Tree) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *OrBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AndBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Leaf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *DeepTree) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *ADeepBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AndDeepBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *DeepLeaf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Nil) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptEnumDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AnotherNinOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AnotherNinOptEnumDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Timer) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *MyExtendable) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *OtherExtenable) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition_NestedMessage) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedScope) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNativeDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomContainer) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNidOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinEmbeddedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NoExtensionsMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Unrecognized) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithInner) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithInner_Inner) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithEmbed) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithEmbed_Embedded) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Node) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *ProtoType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func ThetestDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 6585 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0x7b, 0x70, 0x24, 0x57, 0x75, 0xb7, 0x7a, 0x7a, 0xa4, 0x1d, 0x1d, 0xbd, 0x5a, 0xad, 0x5d, 0xed, 0x58, 0x5e, 0x4b, 0xda, 0xf1, 0x7a, 0x2d, 0x0b, 0x5b, 0xab, 0xd5, 0x6a, 0x5f, 0xb3, 0xd8, 0xfe, 0xe6, 0xb5, 0x6b, 0x2d, 0xab, 0x91, 0x68, 0x49, 0xd8, 0xcb, 0xf7, 0x55, 0x4d, 0xf5, 0xce, 0x5c, 0x49, 0x63, 0xcf, 0x74, 0x0f, 0xd3, 0x3d, 0xb6, 0xe5, 0xfa, 0xea, 0x2b, 0x7f, 0x90, 0x10, 0x48, 0x2a, 0x4f, 0x92, 0x0a, 0x10, 0x30, 0x86, 0x14, 0xc1, 0x40, 0x1e, 0x10, 0x08, 0x21, 0x54, 0x2a, 0xf8, 0x1f, 0x92, 0xcd, 0x3f, 0x94, 0xc9, 0x5f, 0x29, 0x2a, 0xe5, 0xc2, 0x0b, 0x55, 0x21, 0x89, 0x93, 0x10, 0x70, 0x55, 0xa8, 0x32, 0x7f, 0xa4, 0xee, 0xab, 0xbb, 0xef, 0x9d, 0x1e, 0x75, 0xcb, 0x6b, 0x1b, 0xfe, 0xd9, 0x9d, 0xb9, 0xe7, 0xfc, 0xce, 0x3d, 0xf7, 0x3c, 0xee, 0x3d, 0xf7, 0xa1, 0x81, 0x2f, 0x5e, 0x80, 0xd9, 0x1d, 0xdb, 0xde, 0x69, 0xa0, 0x53, 0xad, 0xb6, 0xed, 0xda, 0x37, 0x3a, 0xdb, 0xa7, 0x6a, 0xc8, 0xa9, 0xb6, 0xeb, 0x2d, 0xd7, 0x6e, 0x2f, 0x90, 0x36, 0x7d, 0x8c, 0x72, 0x2c, 0x70, 0x8e, 0xcc, 0x2a, 0x8c, 0x5f, 0xae, 0x37, 0x50, 0xd1, 0x63, 0xdc, 0x40, 0xae, 0x7e, 0x01, 0x92, 0xdb, 0xf5, 0x06, 0x4a, 0x2b, 0xb3, 0xea, 0xdc, 0xd0, 0xd2, 0x89, 0x05, 0x09, 0xb4, 0x20, 0x22, 0xd6, 0x71, 0xb3, 0x41, 0x10, 0x99, 0x1f, 0x24, 0x61, 0x22, 0x84, 0xaa, 0xeb, 0x90, 0xb4, 0xcc, 0x26, 0x96, 0xa8, 0xcc, 0x0d, 0x1a, 0xe4, 0xb3, 0x9e, 0x86, 0x43, 0x2d, 0xb3, 0xfa, 0x84, 0xb9, 0x83, 0xd2, 0x09, 0xd2, 0xcc, 0xbf, 0xea, 0xd3, 0x00, 0x35, 0xd4, 0x42, 0x56, 0x0d, 0x59, 0xd5, 0xbd, 0xb4, 0x3a, 0xab, 0xce, 0x0d, 0x1a, 0x81, 0x16, 0xfd, 0x1d, 0x30, 0xde, 0xea, 0xdc, 0x68, 0xd4, 0xab, 0x95, 0x00, 0x1b, 0xcc, 0xaa, 0x73, 0xfd, 0x86, 0x46, 0x09, 0x45, 0x9f, 0xf9, 0x5e, 0x18, 0x7b, 0x0a, 0x99, 0x4f, 0x04, 0x59, 0x87, 0x08, 0xeb, 0x28, 0x6e, 0x0e, 0x30, 0x16, 0x60, 0xb8, 0x89, 0x1c, 0xc7, 0xdc, 0x41, 0x15, 0x77, 0xaf, 0x85, 0xd2, 0x49, 0x32, 0xfa, 0xd9, 0xae, 0xd1, 0xcb, 0x23, 0x1f, 0x62, 0xa8, 0xcd, 0xbd, 0x16, 0xd2, 0x73, 0x30, 0x88, 0xac, 0x4e, 0x93, 0x4a, 0xe8, 0xef, 0x61, 0xbf, 0x92, 0xd5, 0x69, 0xca, 0x52, 0x52, 0x18, 0xc6, 0x44, 0x1c, 0x72, 0x50, 0xfb, 0xc9, 0x7a, 0x15, 0xa5, 0x07, 0x88, 0x80, 0x7b, 0xbb, 0x04, 0x6c, 0x50, 0xba, 0x2c, 0x83, 0xe3, 0xf4, 0x02, 0x0c, 0xa2, 0xa7, 0x5d, 0x64, 0x39, 0x75, 0xdb, 0x4a, 0x1f, 0x22, 0x42, 0xee, 0x09, 0xf1, 0x22, 0x6a, 0xd4, 0x64, 0x11, 0x3e, 0x4e, 0x3f, 0x07, 0x87, 0xec, 0x96, 0x5b, 0xb7, 0x2d, 0x27, 0x9d, 0x9a, 0x55, 0xe6, 0x86, 0x96, 0x8e, 0x85, 0x06, 0xc2, 0x1a, 0xe5, 0x31, 0x38, 0xb3, 0xbe, 0x02, 0x9a, 0x63, 0x77, 0xda, 0x55, 0x54, 0xa9, 0xda, 0x35, 0x54, 0xa9, 0x5b, 0xdb, 0x76, 0x7a, 0x90, 0x08, 0x98, 0xe9, 0x1e, 0x08, 0x61, 0x2c, 0xd8, 0x35, 0xb4, 0x62, 0x6d, 0xdb, 0xc6, 0xa8, 0x23, 0x7c, 0xd7, 0x27, 0x61, 0xc0, 0xd9, 0xb3, 0x5c, 0xf3, 0xe9, 0xf4, 0x30, 0x89, 0x10, 0xf6, 0x2d, 0xf3, 0x57, 0x03, 0x30, 0x16, 0x27, 0xc4, 0x2e, 0x41, 0xff, 0x36, 0x1e, 0x65, 0x3a, 0x71, 0x10, 0x1b, 0x50, 0x8c, 0x68, 0xc4, 0x81, 0x37, 0x68, 0xc4, 0x1c, 0x0c, 0x59, 0xc8, 0x71, 0x51, 0x8d, 0x46, 0x84, 0x1a, 0x33, 0xa6, 0x80, 0x82, 0xba, 0x43, 0x2a, 0xf9, 0x86, 0x42, 0xea, 0x31, 0x18, 0xf3, 0x54, 0xaa, 0xb4, 0x4d, 0x6b, 0x87, 0xc7, 0xe6, 0xa9, 0x28, 0x4d, 0x16, 0x4a, 0x1c, 0x67, 0x60, 0x98, 0x31, 0x8a, 0x84, 0xef, 0x7a, 0x11, 0xc0, 0xb6, 0x90, 0xbd, 0x5d, 0xa9, 0xa1, 0x6a, 0x23, 0x9d, 0xea, 0x61, 0xa5, 0x35, 0xcc, 0xd2, 0x65, 0x25, 0x9b, 0xb6, 0x56, 0x1b, 0xfa, 0x45, 0x3f, 0xd4, 0x0e, 0xf5, 0x88, 0x94, 0x55, 0x9a, 0x64, 0x5d, 0xd1, 0xb6, 0x05, 0xa3, 0x6d, 0x84, 0xe3, 0x1e, 0xd5, 0xd8, 0xc8, 0x06, 0x89, 0x12, 0x0b, 0x91, 0x23, 0x33, 0x18, 0x8c, 0x0e, 0x6c, 0xa4, 0x1d, 0xfc, 0xaa, 0xdf, 0x0d, 0x5e, 0x43, 0x85, 0x84, 0x15, 0x90, 0x59, 0x68, 0x98, 0x37, 0x96, 0xcd, 0x26, 0x9a, 0x7a, 0x06, 0x46, 0x45, 0xf3, 0xe8, 0x87, 0xa1, 0xdf, 0x71, 0xcd, 0xb6, 0x4b, 0xa2, 0xb0, 0xdf, 0xa0, 0x5f, 0x74, 0x0d, 0x54, 0x64, 0xd5, 0xc8, 0x2c, 0xd7, 0x6f, 0xe0, 0x8f, 0xfa, 0xff, 0xf2, 0x07, 0xac, 0x92, 0x01, 0x9f, 0xec, 0xf6, 0xa8, 0x20, 0x59, 0x1e, 0xf7, 0xd4, 0x79, 0x18, 0x11, 0x06, 0x10, 0xb7, 0xeb, 0xcc, 0xff, 0x85, 0x23, 0xa1, 0xa2, 0xf5, 0xc7, 0xe0, 0x70, 0xc7, 0xaa, 0x5b, 0x2e, 0x6a, 0xb7, 0xda, 0x08, 0x47, 0x2c, 0xed, 0x2a, 0xfd, 0xcf, 0x87, 0x7a, 0xc4, 0xdc, 0x56, 0x90, 0x9b, 0x4a, 0x31, 0x26, 0x3a, 0xdd, 0x8d, 0xf3, 0x83, 0xa9, 0x1f, 0x1e, 0xd2, 0x9e, 0x7d, 0xf6, 0xd9, 0x67, 0x13, 0x99, 0x8f, 0x0e, 0xc0, 0xe1, 0xb0, 0x9c, 0x09, 0x4d, 0xdf, 0x49, 0x18, 0xb0, 0x3a, 0xcd, 0x1b, 0xa8, 0x4d, 0x8c, 0xd4, 0x6f, 0xb0, 0x6f, 0x7a, 0x0e, 0xfa, 0x1b, 0xe6, 0x0d, 0xd4, 0x48, 0x27, 0x67, 0x95, 0xb9, 0xd1, 0xa5, 0x77, 0xc4, 0xca, 0xca, 0x85, 0x6b, 0x18, 0x62, 0x50, 0xa4, 0xfe, 0x10, 0x24, 0xd9, 0x14, 0x8d, 0x25, 0xcc, 0xc7, 0x93, 0x80, 0x73, 0xc9, 0x20, 0x38, 0xfd, 0x4e, 0x18, 0xc4, 0xff, 0xd3, 0xd8, 0x18, 0x20, 0x3a, 0xa7, 0x70, 0x03, 0x8e, 0x0b, 0x7d, 0x0a, 0x52, 0x24, 0x4d, 0x6a, 0x88, 0x2f, 0x6d, 0xde, 0x77, 0x1c, 0x58, 0x35, 0xb4, 0x6d, 0x76, 0x1a, 0x6e, 0xe5, 0x49, 0xb3, 0xd1, 0x41, 0x24, 0xe0, 0x07, 0x8d, 0x61, 0xd6, 0xf8, 0x1e, 0xdc, 0xa6, 0xcf, 0xc0, 0x10, 0xcd, 0xaa, 0xba, 0x55, 0x43, 0x4f, 0x93, 0xd9, 0xb3, 0xdf, 0xa0, 0x89, 0xb6, 0x82, 0x5b, 0x70, 0xf7, 0x8f, 0x3b, 0xb6, 0xc5, 0x43, 0x93, 0x74, 0x81, 0x1b, 0x48, 0xf7, 0xe7, 0xe5, 0x89, 0xfb, 0xae, 0xf0, 0xe1, 0xc9, 0x31, 0x95, 0xf9, 0x5a, 0x02, 0x92, 0x64, 0xbe, 0x18, 0x83, 0xa1, 0xcd, 0xeb, 0xeb, 0xa5, 0x4a, 0x71, 0x6d, 0x2b, 0x7f, 0xad, 0xa4, 0x29, 0xfa, 0x28, 0x00, 0x69, 0xb8, 0x7c, 0x6d, 0x2d, 0xb7, 0xa9, 0x25, 0xbc, 0xef, 0x2b, 0xe5, 0xcd, 0x73, 0xcb, 0x9a, 0xea, 0x01, 0xb6, 0x68, 0x43, 0x32, 0xc8, 0x70, 0x66, 0x49, 0xeb, 0xd7, 0x35, 0x18, 0xa6, 0x02, 0x56, 0x1e, 0x2b, 0x15, 0xcf, 0x2d, 0x6b, 0x03, 0x62, 0xcb, 0x99, 0x25, 0xed, 0x90, 0x3e, 0x02, 0x83, 0xa4, 0x25, 0xbf, 0xb6, 0x76, 0x4d, 0x4b, 0x79, 0x32, 0x37, 0x36, 0x8d, 0x95, 0xf2, 0x15, 0x6d, 0xd0, 0x93, 0x79, 0xc5, 0x58, 0xdb, 0x5a, 0xd7, 0xc0, 0x93, 0xb0, 0x5a, 0xda, 0xd8, 0xc8, 0x5d, 0x29, 0x69, 0x43, 0x1e, 0x47, 0xfe, 0xfa, 0x66, 0x69, 0x43, 0x1b, 0x16, 0xd4, 0x3a, 0xb3, 0xa4, 0x8d, 0x78, 0x5d, 0x94, 0xca, 0x5b, 0xab, 0xda, 0xa8, 0x3e, 0x0e, 0x23, 0xb4, 0x0b, 0xae, 0xc4, 0x98, 0xd4, 0x74, 0x6e, 0x59, 0xd3, 0x7c, 0x45, 0xa8, 0x94, 0x71, 0xa1, 0xe1, 0xdc, 0xb2, 0xa6, 0x67, 0x0a, 0xd0, 0x4f, 0xa2, 0x4b, 0xd7, 0x61, 0xf4, 0x5a, 0x2e, 0x5f, 0xba, 0x56, 0x59, 0x5b, 0xdf, 0x5c, 0x59, 0x2b, 0xe7, 0xae, 0x69, 0x8a, 0xdf, 0x66, 0x94, 0xde, 0xbd, 0xb5, 0x62, 0x94, 0x8a, 0x5a, 0x22, 0xd8, 0xb6, 0x5e, 0xca, 0x6d, 0x96, 0x8a, 0x9a, 0x9a, 0xa9, 0xc2, 0xe1, 0xb0, 0x79, 0x32, 0x34, 0x33, 0x02, 0x2e, 0x4e, 0xf4, 0x70, 0x31, 0x91, 0xd5, 0xe5, 0xe2, 0xcf, 0x28, 0x30, 0x11, 0xb2, 0x56, 0x84, 0x76, 0xf2, 0x30, 0xf4, 0xd3, 0x10, 0xa5, 0xab, 0xe7, 0x7d, 0xa1, 0x8b, 0x0e, 0x09, 0xd8, 0xae, 0x15, 0x94, 0xe0, 0x82, 0x15, 0x84, 0xda, 0xa3, 0x82, 0xc0, 0x22, 0xba, 0x94, 0xfc, 0x80, 0x02, 0xe9, 0x5e, 0xb2, 0x23, 0x26, 0x8a, 0x84, 0x30, 0x51, 0x5c, 0x92, 0x15, 0x38, 0xde, 0x7b, 0x0c, 0x5d, 0x5a, 0x7c, 0x4e, 0x81, 0xc9, 0xf0, 0x42, 0x2b, 0x54, 0x87, 0x87, 0x60, 0xa0, 0x89, 0xdc, 0x5d, 0x9b, 0x17, 0x1b, 0x27, 0x43, 0x96, 0x30, 0x4c, 0x96, 0x6d, 0xc5, 0x50, 0xc1, 0x35, 0x50, 0xed, 0x55, 0x2d, 0x51, 0x6d, 0xba, 0x34, 0xfd, 0x70, 0x02, 0x8e, 0x84, 0x0a, 0x0f, 0x55, 0xf4, 0x2e, 0x80, 0xba, 0xd5, 0xea, 0xb8, 0xb4, 0xa0, 0xa0, 0xf3, 0xd3, 0x20, 0x69, 0x21, 0xb9, 0x8f, 0xe7, 0x9e, 0x8e, 0xeb, 0xd1, 0x55, 0x42, 0x07, 0xda, 0x44, 0x18, 0x2e, 0xf8, 0x8a, 0x26, 0x89, 0xa2, 0xd3, 0x3d, 0x46, 0xda, 0xb5, 0x56, 0x2f, 0x82, 0x56, 0x6d, 0xd4, 0x91, 0xe5, 0x56, 0x1c, 0xb7, 0x8d, 0xcc, 0x66, 0xdd, 0xda, 0x21, 0x13, 0x70, 0x2a, 0xdb, 0xbf, 0x6d, 0x36, 0x1c, 0x64, 0x8c, 0x51, 0xf2, 0x06, 0xa7, 0x62, 0x04, 0x59, 0xe3, 0xda, 0x01, 0xc4, 0x80, 0x80, 0xa0, 0x64, 0x0f, 0x91, 0xf9, 0x4a, 0x0a, 0x86, 0x02, 0x65, 0xa9, 0x7e, 0x1c, 0x86, 0x1f, 0x37, 0x9f, 0x34, 0x2b, 0x7c, 0xab, 0x41, 0x2d, 0x31, 0x84, 0xdb, 0xd6, 0xd9, 0x76, 0x63, 0x11, 0x0e, 0x13, 0x16, 0xbb, 0xe3, 0xa2, 0x76, 0xa5, 0xda, 0x30, 0x1d, 0x87, 0x18, 0x2d, 0x45, 0x58, 0x75, 0x4c, 0x5b, 0xc3, 0xa4, 0x02, 0xa7, 0xe8, 0x67, 0x61, 0x82, 0x20, 0x9a, 0x9d, 0x86, 0x5b, 0x6f, 0x35, 0x50, 0x05, 0x6f, 0x7e, 0x1c, 0x32, 0x11, 0x7b, 0x9a, 0x8d, 0x63, 0x8e, 0x55, 0xc6, 0x80, 0x35, 0x72, 0xf4, 0x22, 0xdc, 0x45, 0x60, 0x3b, 0xc8, 0x42, 0x6d, 0xd3, 0x45, 0x15, 0xf4, 0xbe, 0x8e, 0xd9, 0x70, 0x2a, 0xa6, 0x55, 0xab, 0xec, 0x9a, 0xce, 0x6e, 0xfa, 0x30, 0x16, 0x90, 0x4f, 0xa4, 0x15, 0xe3, 0x0e, 0xcc, 0x78, 0x85, 0xf1, 0x95, 0x08, 0x5b, 0xce, 0xaa, 0x3d, 0x62, 0x3a, 0xbb, 0x7a, 0x16, 0x26, 0x89, 0x14, 0xc7, 0x6d, 0xd7, 0xad, 0x9d, 0x4a, 0x75, 0x17, 0x55, 0x9f, 0xa8, 0x74, 0xdc, 0xed, 0x0b, 0xe9, 0x3b, 0x83, 0xfd, 0x13, 0x0d, 0x37, 0x08, 0x4f, 0x01, 0xb3, 0x6c, 0xb9, 0xdb, 0x17, 0xf4, 0x0d, 0x18, 0xc6, 0xce, 0x68, 0xd6, 0x9f, 0x41, 0x95, 0x6d, 0xbb, 0x4d, 0x56, 0x96, 0xd1, 0x90, 0xcc, 0x0e, 0x58, 0x70, 0x61, 0x8d, 0x01, 0x56, 0xed, 0x1a, 0xca, 0xf6, 0x6f, 0xac, 0x97, 0x4a, 0x45, 0x63, 0x88, 0x4b, 0xb9, 0x6c, 0xb7, 0x71, 0x40, 0xed, 0xd8, 0x9e, 0x81, 0x87, 0x68, 0x40, 0xed, 0xd8, 0xdc, 0xbc, 0x67, 0x61, 0xa2, 0x5a, 0xa5, 0x63, 0xae, 0x57, 0x2b, 0x6c, 0x8b, 0xe2, 0xa4, 0x35, 0xc1, 0x58, 0xd5, 0xea, 0x15, 0xca, 0xc0, 0x62, 0xdc, 0xd1, 0x2f, 0xc2, 0x11, 0xdf, 0x58, 0x41, 0xe0, 0x78, 0xd7, 0x28, 0x65, 0xe8, 0x59, 0x98, 0x68, 0xed, 0x75, 0x03, 0x75, 0xa1, 0xc7, 0xd6, 0x9e, 0x0c, 0x3b, 0x0f, 0x87, 0x5b, 0xbb, 0xad, 0x6e, 0xdc, 0x44, 0x10, 0xa7, 0xb7, 0x76, 0x5b, 0x32, 0xf0, 0x1e, 0xb2, 0x5f, 0x6d, 0xa3, 0xaa, 0xe9, 0xa2, 0x5a, 0xfa, 0x68, 0x90, 0x3d, 0x40, 0xd0, 0x4f, 0x81, 0x56, 0xad, 0x56, 0x90, 0x65, 0xde, 0x68, 0xa0, 0x8a, 0xd9, 0x46, 0x96, 0xe9, 0xa4, 0x67, 0x82, 0xcc, 0xa3, 0xd5, 0x6a, 0x89, 0x50, 0x73, 0x84, 0xa8, 0xcf, 0xc3, 0xb8, 0x7d, 0xe3, 0xf1, 0x2a, 0x0d, 0xc9, 0x4a, 0xab, 0x8d, 0xb6, 0xeb, 0x4f, 0xa7, 0x4f, 0x10, 0xfb, 0x8e, 0x61, 0x02, 0x09, 0xc8, 0x75, 0xd2, 0xac, 0xdf, 0x07, 0x5a, 0xd5, 0xd9, 0x35, 0xdb, 0x2d, 0x52, 0x13, 0x38, 0x2d, 0xb3, 0x8a, 0xd2, 0xf7, 0x50, 0x56, 0xda, 0x5e, 0xe6, 0xcd, 0x38, 0x25, 0x9c, 0xa7, 0xea, 0xdb, 0x2e, 0x97, 0x78, 0x2f, 0x4d, 0x09, 0xd2, 0xc6, 0xa4, 0xcd, 0x81, 0x86, 0x4d, 0x21, 0x74, 0x3c, 0x47, 0xd8, 0x46, 0x5b, 0xbb, 0xad, 0x60, 0xbf, 0x77, 0xc3, 0x08, 0xe6, 0xf4, 0x3b, 0xbd, 0x8f, 0xd6, 0x33, 0xad, 0xdd, 0x40, 0x8f, 0x6f, 0x59, 0x69, 0x99, 0xc9, 0xc2, 0x70, 0x30, 0x3e, 0xf5, 0x41, 0xa0, 0x11, 0xaa, 0x29, 0x78, 0xad, 0x2f, 0xac, 0x15, 0xf1, 0x2a, 0xfd, 0xde, 0x92, 0x96, 0xc0, 0xd5, 0xc2, 0xb5, 0x95, 0xcd, 0x52, 0xc5, 0xd8, 0x2a, 0x6f, 0xae, 0xac, 0x96, 0x34, 0x35, 0x58, 0x96, 0x7e, 0x2b, 0x01, 0xa3, 0xe2, 0x0e, 0x43, 0x7f, 0x27, 0x1c, 0xe5, 0xc7, 0x01, 0x0e, 0x72, 0x2b, 0x4f, 0xd5, 0xdb, 0x24, 0x65, 0x9a, 0x26, 0xad, 0xb0, 0x3d, 0xa7, 0x1d, 0x66, 0x5c, 0x1b, 0xc8, 0x7d, 0xb4, 0xde, 0xc6, 0x09, 0xd1, 0x34, 0x5d, 0xfd, 0x1a, 0xcc, 0x58, 0x76, 0xc5, 0x71, 0x4d, 0xab, 0x66, 0xb6, 0x6b, 0x15, 0xff, 0x20, 0xa6, 0x62, 0x56, 0xab, 0xc8, 0x71, 0x6c, 0xba, 0x54, 0x79, 0x52, 0x8e, 0x59, 0xf6, 0x06, 0x63, 0xf6, 0xe7, 0xf0, 0x1c, 0x63, 0x95, 0x02, 0x4c, 0xed, 0x15, 0x60, 0x77, 0xc2, 0x60, 0xd3, 0x6c, 0x55, 0x90, 0xe5, 0xb6, 0xf7, 0x48, 0x5d, 0x99, 0x32, 0x52, 0x4d, 0xb3, 0x55, 0xc2, 0xdf, 0xdf, 0x9e, 0xf2, 0xfe, 0x9f, 0x54, 0x18, 0x0e, 0xd6, 0x96, 0xb8, 0x54, 0xaf, 0x92, 0x75, 0x44, 0x21, 0x33, 0xcd, 0xdd, 0xfb, 0x56, 0xa2, 0x0b, 0x05, 0xbc, 0xc0, 0x64, 0x07, 0x68, 0xc5, 0x67, 0x50, 0x24, 0x5e, 0xdc, 0xf1, 0xdc, 0x82, 0xe8, 0x2e, 0x26, 0x65, 0xb0, 0x6f, 0xfa, 0x15, 0x18, 0x78, 0xdc, 0x21, 0xb2, 0x07, 0x88, 0xec, 0x13, 0xfb, 0xcb, 0xbe, 0xba, 0x41, 0x84, 0x0f, 0x5e, 0xdd, 0xa8, 0x94, 0xd7, 0x8c, 0xd5, 0xdc, 0x35, 0x83, 0xc1, 0xf5, 0x3b, 0x20, 0xd9, 0x30, 0x9f, 0xd9, 0x13, 0x97, 0x22, 0xd2, 0x14, 0xd7, 0xf0, 0x77, 0x40, 0xf2, 0x29, 0x64, 0x3e, 0x21, 0x2e, 0x00, 0xa4, 0xe9, 0x2d, 0x0c, 0xfd, 0x53, 0xd0, 0x4f, 0xec, 0xa5, 0x03, 0x30, 0x8b, 0x69, 0x7d, 0x7a, 0x0a, 0x92, 0x85, 0x35, 0x03, 0x87, 0xbf, 0x06, 0xc3, 0xb4, 0xb5, 0xb2, 0xbe, 0x52, 0x2a, 0x94, 0xb4, 0x44, 0xe6, 0x2c, 0x0c, 0x50, 0x23, 0xe0, 0xd4, 0xf0, 0xcc, 0xa0, 0xf5, 0xb1, 0xaf, 0x4c, 0x86, 0xc2, 0xa9, 0x5b, 0xab, 0xf9, 0x92, 0xa1, 0x25, 0x82, 0xee, 0x75, 0x60, 0x38, 0x58, 0x56, 0xbe, 0x3d, 0x31, 0xf5, 0x0d, 0x05, 0x86, 0x02, 0x65, 0x22, 0x2e, 0x50, 0xcc, 0x46, 0xc3, 0x7e, 0xaa, 0x62, 0x36, 0xea, 0xa6, 0xc3, 0x82, 0x02, 0x48, 0x53, 0x0e, 0xb7, 0xc4, 0x75, 0xda, 0xdb, 0xa2, 0xfc, 0x73, 0x0a, 0x68, 0x72, 0x89, 0x29, 0x29, 0xa8, 0xfc, 0x5c, 0x15, 0xfc, 0x84, 0x02, 0xa3, 0x62, 0x5d, 0x29, 0xa9, 0x77, 0xfc, 0xe7, 0xaa, 0xde, 0xf7, 0x12, 0x30, 0x22, 0x54, 0x93, 0x71, 0xb5, 0x7b, 0x1f, 0x8c, 0xd7, 0x6b, 0xa8, 0xd9, 0xb2, 0x5d, 0x64, 0x55, 0xf7, 0x2a, 0x0d, 0xf4, 0x24, 0x6a, 0xa4, 0x33, 0x64, 0xa2, 0x38, 0xb5, 0x7f, 0xbd, 0xba, 0xb0, 0xe2, 0xe3, 0xae, 0x61, 0x58, 0x76, 0x62, 0xa5, 0x58, 0x5a, 0x5d, 0x5f, 0xdb, 0x2c, 0x95, 0x0b, 0xd7, 0x2b, 0x5b, 0xe5, 0x77, 0x95, 0xd7, 0x1e, 0x2d, 0x1b, 0x5a, 0x5d, 0x62, 0x7b, 0x0b, 0x53, 0x7d, 0x1d, 0x34, 0x59, 0x29, 0xfd, 0x28, 0x84, 0xa9, 0xa5, 0xf5, 0xe9, 0x13, 0x30, 0x56, 0x5e, 0xab, 0x6c, 0xac, 0x14, 0x4b, 0x95, 0xd2, 0xe5, 0xcb, 0xa5, 0xc2, 0xe6, 0x06, 0xdd, 0xc0, 0x7b, 0xdc, 0x9b, 0x62, 0x52, 0x7f, 0x5c, 0x85, 0x89, 0x10, 0x4d, 0xf4, 0x1c, 0xdb, 0x3b, 0xd0, 0xed, 0xcc, 0x03, 0x71, 0xb4, 0x5f, 0xc0, 0x4b, 0xfe, 0xba, 0xd9, 0x76, 0xd9, 0x56, 0xe3, 0x3e, 0xc0, 0x56, 0xb2, 0xdc, 0xfa, 0x76, 0x1d, 0xb5, 0xd9, 0x79, 0x07, 0xdd, 0x50, 0x8c, 0xf9, 0xed, 0xf4, 0xc8, 0xe3, 0x7e, 0xd0, 0x5b, 0xb6, 0x53, 0x77, 0xeb, 0x4f, 0xa2, 0x4a, 0xdd, 0xe2, 0x87, 0x23, 0x78, 0x83, 0x91, 0x34, 0x34, 0x4e, 0x59, 0xb1, 0x5c, 0x8f, 0xdb, 0x42, 0x3b, 0xa6, 0xc4, 0x8d, 0x27, 0x70, 0xd5, 0xd0, 0x38, 0xc5, 0xe3, 0x3e, 0x0e, 0xc3, 0x35, 0xbb, 0x83, 0xab, 0x2e, 0xca, 0x87, 0xd7, 0x0b, 0xc5, 0x18, 0xa2, 0x6d, 0x1e, 0x0b, 0xab, 0xa7, 0xfd, 0x53, 0x99, 0x61, 0x63, 0x88, 0xb6, 0x51, 0x96, 0x7b, 0x61, 0xcc, 0xdc, 0xd9, 0x69, 0x63, 0xe1, 0x5c, 0x10, 0xdd, 0x21, 0x8c, 0x7a, 0xcd, 0x84, 0x71, 0xea, 0x2a, 0xa4, 0xb8, 0x1d, 0xf0, 0x92, 0x8c, 0x2d, 0x51, 0x69, 0xd1, 0x93, 0xb9, 0xc4, 0xdc, 0xa0, 0x91, 0xb2, 0x38, 0xf1, 0x38, 0x0c, 0xd7, 0x9d, 0x8a, 0x7f, 0xc8, 0x9c, 0x98, 0x4d, 0xcc, 0xa5, 0x8c, 0xa1, 0xba, 0xe3, 0x1d, 0xd0, 0x65, 0x3e, 0x97, 0x80, 0x51, 0xf1, 0x90, 0x5c, 0x2f, 0x42, 0xaa, 0x61, 0x57, 0x4d, 0x12, 0x5a, 0xf4, 0x86, 0x66, 0x2e, 0xe2, 0x5c, 0x7d, 0xe1, 0x1a, 0xe3, 0x37, 0x3c, 0xe4, 0xd4, 0xb7, 0x15, 0x48, 0xf1, 0x66, 0x7d, 0x12, 0x92, 0x2d, 0xd3, 0xdd, 0x25, 0xe2, 0xfa, 0xf3, 0x09, 0x4d, 0x31, 0xc8, 0x77, 0xdc, 0xee, 0xb4, 0x4c, 0x8b, 0x84, 0x00, 0x6b, 0xc7, 0xdf, 0xb1, 0x5f, 0x1b, 0xc8, 0xac, 0x91, 0xed, 0x87, 0xdd, 0x6c, 0x22, 0xcb, 0x75, 0xb8, 0x5f, 0x59, 0x7b, 0x81, 0x35, 0xeb, 0xef, 0x80, 0x71, 0xb7, 0x6d, 0xd6, 0x1b, 0x02, 0x6f, 0x92, 0xf0, 0x6a, 0x9c, 0xe0, 0x31, 0x67, 0xe1, 0x0e, 0x2e, 0xb7, 0x86, 0x5c, 0xb3, 0xba, 0x8b, 0x6a, 0x3e, 0x68, 0x80, 0x9c, 0xc0, 0x1e, 0x65, 0x0c, 0x45, 0x46, 0xe7, 0xd8, 0xcc, 0x77, 0x14, 0x18, 0xe7, 0x1b, 0xa6, 0x9a, 0x67, 0xac, 0x55, 0x00, 0xd3, 0xb2, 0x6c, 0x37, 0x68, 0xae, 0xee, 0x50, 0xee, 0xc2, 0x2d, 0xe4, 0x3c, 0x90, 0x11, 0x10, 0x30, 0xd5, 0x04, 0xf0, 0x29, 0x3d, 0xcd, 0x36, 0x03, 0x43, 0xec, 0x06, 0x84, 0x5c, 0xa3, 0xd1, 0x2d, 0x36, 0xd0, 0x26, 0xbc, 0xb3, 0xd2, 0x0f, 0x43, 0xff, 0x0d, 0xb4, 0x53, 0xb7, 0xd8, 0xb9, 0x26, 0xfd, 0xc2, 0xcf, 0x6a, 0x93, 0xde, 0x59, 0x6d, 0xfe, 0x31, 0x98, 0xa8, 0xda, 0x4d, 0x59, 0xdd, 0xbc, 0x26, 0x6d, 0xf3, 0x9d, 0x47, 0x94, 0xf7, 0x82, 0x5f, 0x62, 0x7e, 0x26, 0xa1, 0x5e, 0x59, 0xcf, 0x7f, 0x21, 0x31, 0x75, 0x85, 0xe2, 0xd6, 0xf9, 0x30, 0x0d, 0xb4, 0xdd, 0x40, 0x55, 0xac, 0x3a, 0xfc, 0xe4, 0x24, 0x3c, 0xb0, 0x53, 0x77, 0x77, 0x3b, 0x37, 0x16, 0xaa, 0x76, 0xf3, 0xd4, 0x8e, 0xbd, 0x63, 0xfb, 0xd7, 0x86, 0xf8, 0x1b, 0xf9, 0x42, 0x3e, 0xb1, 0xab, 0xc3, 0x41, 0xaf, 0x75, 0x2a, 0xf2, 0x9e, 0x31, 0x5b, 0x86, 0x09, 0xc6, 0x5c, 0x21, 0x77, 0x17, 0x74, 0x0b, 0xa1, 0xef, 0x7b, 0xfe, 0x93, 0xfe, 0xf2, 0x0f, 0xc8, 0x5a, 0x6d, 0x8c, 0x33, 0x28, 0xa6, 0xd1, 0x5d, 0x46, 0xd6, 0x80, 0x23, 0x82, 0x3c, 0x9a, 0x97, 0xa8, 0x1d, 0x21, 0xf1, 0x5b, 0x4c, 0xe2, 0x44, 0x40, 0xe2, 0x06, 0x83, 0x66, 0x0b, 0x30, 0x72, 0x10, 0x59, 0x7f, 0xcb, 0x64, 0x0d, 0xa3, 0xa0, 0x90, 0x2b, 0x30, 0x46, 0x84, 0x54, 0x3b, 0x8e, 0x6b, 0x37, 0xc9, 0xa4, 0xb7, 0xbf, 0x98, 0xbf, 0xfb, 0x01, 0x4d, 0x94, 0x51, 0x0c, 0x2b, 0x78, 0xa8, 0x6c, 0x16, 0xc8, 0x75, 0x4d, 0x0d, 0x55, 0x1b, 0x11, 0x12, 0x6e, 0x32, 0x45, 0x3c, 0xfe, 0xec, 0x7b, 0xe0, 0x30, 0xfe, 0x4c, 0xe6, 0xa4, 0xa0, 0x26, 0xd1, 0xa7, 0x5d, 0xe9, 0xef, 0x7c, 0x80, 0xe6, 0xe2, 0x84, 0x27, 0x20, 0xa0, 0x53, 0xc0, 0x8b, 0x3b, 0xc8, 0x75, 0x51, 0xdb, 0xa9, 0x98, 0x8d, 0x30, 0xf5, 0x02, 0xc7, 0x05, 0xe9, 0x8f, 0xbd, 0x2a, 0x7a, 0xf1, 0x0a, 0x45, 0xe6, 0x1a, 0x8d, 0xec, 0x16, 0x1c, 0x0d, 0x89, 0x8a, 0x18, 0x32, 0x3f, 0xce, 0x64, 0x1e, 0xee, 0x8a, 0x0c, 0x2c, 0x76, 0x1d, 0x78, 0xbb, 0xe7, 0xcb, 0x18, 0x32, 0xff, 0x80, 0xc9, 0xd4, 0x19, 0x96, 0xbb, 0x14, 0x4b, 0xbc, 0x0a, 0xe3, 0x4f, 0xa2, 0xf6, 0x0d, 0xdb, 0x61, 0x47, 0x34, 0x31, 0xc4, 0x7d, 0x82, 0x89, 0x1b, 0x63, 0x40, 0x72, 0x66, 0x83, 0x65, 0x5d, 0x84, 0xd4, 0xb6, 0x59, 0x45, 0x31, 0x44, 0x7c, 0x92, 0x89, 0x38, 0x84, 0xf9, 0x31, 0x34, 0x07, 0xc3, 0x3b, 0x36, 0x5b, 0x96, 0xa2, 0xe1, 0xcf, 0x31, 0xf8, 0x10, 0xc7, 0x30, 0x11, 0x2d, 0xbb, 0xd5, 0x69, 0xe0, 0x35, 0x2b, 0x5a, 0xc4, 0xa7, 0xb8, 0x08, 0x8e, 0x61, 0x22, 0x0e, 0x60, 0xd6, 0xe7, 0xb9, 0x08, 0x27, 0x60, 0xcf, 0x87, 0x61, 0xc8, 0xb6, 0x1a, 0x7b, 0xb6, 0x15, 0x47, 0x89, 0x4f, 0x33, 0x09, 0xc0, 0x20, 0x58, 0xc0, 0x25, 0x18, 0x8c, 0xeb, 0x88, 0xcf, 0xbe, 0xca, 0xd3, 0x83, 0x7b, 0xe0, 0x0a, 0x8c, 0xf1, 0x09, 0xaa, 0x6e, 0x5b, 0x31, 0x44, 0xfc, 0x11, 0x13, 0x31, 0x1a, 0x80, 0xb1, 0x61, 0xb8, 0xc8, 0x71, 0x77, 0x50, 0x1c, 0x21, 0x9f, 0xe3, 0xc3, 0x60, 0x10, 0x66, 0xca, 0x1b, 0xc8, 0xaa, 0xee, 0xc6, 0x93, 0xf0, 0x02, 0x37, 0x25, 0xc7, 0x60, 0x11, 0x05, 0x18, 0x69, 0x9a, 0x6d, 0x67, 0xd7, 0x6c, 0xc4, 0x72, 0xc7, 0xe7, 0x99, 0x8c, 0x61, 0x0f, 0xc4, 0x2c, 0xd2, 0xb1, 0x0e, 0x22, 0xe6, 0x0b, 0xdc, 0x22, 0x01, 0x18, 0x4b, 0x3d, 0xc7, 0x25, 0xe7, 0x59, 0x07, 0x91, 0xf6, 0x45, 0x9e, 0x7a, 0x14, 0xbb, 0x1a, 0x94, 0x78, 0x09, 0x06, 0x9d, 0xfa, 0x33, 0xb1, 0xc4, 0xfc, 0x31, 0xf7, 0x34, 0x01, 0x60, 0xf0, 0x75, 0xb8, 0x23, 0x74, 0x99, 0x88, 0x21, 0xec, 0x4f, 0x98, 0xb0, 0xc9, 0x90, 0xa5, 0x82, 0x4d, 0x09, 0x07, 0x15, 0xf9, 0xa7, 0x7c, 0x4a, 0x40, 0x92, 0xac, 0x75, 0xbc, 0x51, 0x70, 0xcc, 0xed, 0x83, 0x59, 0xed, 0xcf, 0xb8, 0xd5, 0x28, 0x56, 0xb0, 0xda, 0x26, 0x4c, 0x32, 0x89, 0x07, 0xf3, 0xeb, 0x97, 0xf8, 0xc4, 0x4a, 0xd1, 0x5b, 0xa2, 0x77, 0xff, 0x37, 0x4c, 0x79, 0xe6, 0xe4, 0x15, 0xa9, 0x53, 0x69, 0x9a, 0xad, 0x18, 0x92, 0xbf, 0xcc, 0x24, 0xf3, 0x19, 0xdf, 0x2b, 0x69, 0x9d, 0x55, 0xb3, 0x85, 0x85, 0x3f, 0x06, 0x69, 0x2e, 0xbc, 0x63, 0xb5, 0x51, 0xd5, 0xde, 0xb1, 0xea, 0xcf, 0xa0, 0x5a, 0x0c, 0xd1, 0x7f, 0x2e, 0xb9, 0x6a, 0x2b, 0x00, 0xc7, 0x92, 0x57, 0x40, 0xf3, 0x6a, 0x95, 0x4a, 0xbd, 0xd9, 0xb2, 0xdb, 0x6e, 0x84, 0xc4, 0xaf, 0x70, 0x4f, 0x79, 0xb8, 0x15, 0x02, 0xcb, 0x96, 0x60, 0x94, 0x7c, 0x8d, 0x1b, 0x92, 0x5f, 0x65, 0x82, 0x46, 0x7c, 0x14, 0x9b, 0x38, 0xaa, 0x76, 0xb3, 0x65, 0xb6, 0xe3, 0xcc, 0x7f, 0x7f, 0xc1, 0x27, 0x0e, 0x06, 0x61, 0x13, 0x87, 0xbb, 0xd7, 0x42, 0x78, 0xb5, 0x8f, 0x21, 0xe1, 0x6b, 0x7c, 0xe2, 0xe0, 0x18, 0x26, 0x82, 0x17, 0x0c, 0x31, 0x44, 0xfc, 0x25, 0x17, 0xc1, 0x31, 0x58, 0xc4, 0xbb, 0xfd, 0x85, 0xb6, 0x8d, 0x76, 0xea, 0x8e, 0xdb, 0xa6, 0x75, 0xf0, 0xfe, 0xa2, 0xbe, 0xfe, 0xaa, 0x58, 0x84, 0x19, 0x01, 0x68, 0xf6, 0x2a, 0x8c, 0x49, 0x25, 0x86, 0x1e, 0xf5, 0xf6, 0x23, 0xfd, 0xff, 0x5f, 0x63, 0x93, 0x91, 0x58, 0x61, 0x64, 0xaf, 0x61, 0xbf, 0x8b, 0x75, 0x40, 0xb4, 0xb0, 0x0f, 0xbc, 0xe6, 0xb9, 0x5e, 0x28, 0x03, 0xb2, 0x97, 0x61, 0x44, 0xa8, 0x01, 0xa2, 0x45, 0xfd, 0x12, 0x13, 0x35, 0x1c, 0x2c, 0x01, 0xb2, 0x67, 0x21, 0x89, 0xd7, 0xf3, 0x68, 0xf8, 0x2f, 0x33, 0x38, 0x61, 0xcf, 0x3e, 0x08, 0x29, 0xbe, 0x8e, 0x47, 0x43, 0x3f, 0xc8, 0xa0, 0x1e, 0x04, 0xc3, 0xf9, 0x1a, 0x1e, 0x0d, 0xff, 0x15, 0x0e, 0xe7, 0x10, 0x0c, 0x8f, 0x6f, 0xc2, 0x17, 0x7f, 0x2d, 0xc9, 0xe6, 0x61, 0x6e, 0xbb, 0x4b, 0x70, 0x88, 0x2d, 0xde, 0xd1, 0xe8, 0x0f, 0xb3, 0xce, 0x39, 0x22, 0x7b, 0x1e, 0xfa, 0x63, 0x1a, 0xfc, 0xd7, 0x19, 0x94, 0xf2, 0x67, 0x0b, 0x30, 0x14, 0x58, 0xb0, 0xa3, 0xe1, 0xbf, 0xc1, 0xe0, 0x41, 0x14, 0x56, 0x9d, 0x2d, 0xd8, 0xd1, 0x02, 0x7e, 0x93, 0xab, 0xce, 0x10, 0xd8, 0x6c, 0x7c, 0xad, 0x8e, 0x46, 0xff, 0x16, 0xb7, 0x3a, 0x87, 0x64, 0x1f, 0x86, 0x41, 0x6f, 0xfe, 0x8d, 0xc6, 0xff, 0x36, 0xc3, 0xfb, 0x18, 0x6c, 0x81, 0xc0, 0xfc, 0x1f, 0x2d, 0xe2, 0x77, 0xb8, 0x05, 0x02, 0x28, 0x9c, 0x46, 0xf2, 0x9a, 0x1e, 0x2d, 0xe9, 0x23, 0x3c, 0x8d, 0xa4, 0x25, 0x1d, 0x7b, 0x93, 0x4c, 0x83, 0xd1, 0x22, 0x7e, 0x97, 0x7b, 0x93, 0xf0, 0x63, 0x35, 0xe4, 0x45, 0x32, 0x5a, 0xc6, 0xef, 0x73, 0x35, 0xa4, 0x35, 0x32, 0xbb, 0x0e, 0x7a, 0xf7, 0x02, 0x19, 0x2d, 0xef, 0xa3, 0x4c, 0xde, 0x78, 0xd7, 0xfa, 0x98, 0x7d, 0x14, 0x26, 0xc3, 0x17, 0xc7, 0x68, 0xa9, 0x1f, 0x7b, 0x4d, 0xda, 0xce, 0x04, 0xd7, 0xc6, 0xec, 0xa6, 0x3f, 0xcb, 0x06, 0x17, 0xc6, 0x68, 0xb1, 0x1f, 0x7f, 0x4d, 0x9c, 0x68, 0x83, 0xeb, 0x62, 0x36, 0x07, 0xe0, 0xaf, 0x49, 0xd1, 0xb2, 0x3e, 0xc1, 0x64, 0x05, 0x40, 0x38, 0x35, 0xd8, 0x92, 0x14, 0x8d, 0xff, 0x24, 0x4f, 0x0d, 0x86, 0xc0, 0xa9, 0xc1, 0x57, 0xa3, 0x68, 0xf4, 0x73, 0x3c, 0x35, 0x38, 0x24, 0x7b, 0x09, 0x52, 0x56, 0xa7, 0xd1, 0xc0, 0xb1, 0xa5, 0xef, 0xff, 0x9c, 0x29, 0xfd, 0x2f, 0xaf, 0x33, 0x30, 0x07, 0x64, 0xcf, 0x42, 0x3f, 0x6a, 0xde, 0x40, 0xb5, 0x28, 0xe4, 0xbf, 0xbe, 0xce, 0xe7, 0x13, 0xcc, 0x9d, 0x7d, 0x18, 0x80, 0x6e, 0xa6, 0xc9, 0x2d, 0x51, 0x04, 0xf6, 0xdf, 0x5e, 0x67, 0x2f, 0x25, 0x7c, 0x88, 0x2f, 0x80, 0xbe, 0xbb, 0xd8, 0x5f, 0xc0, 0xab, 0xa2, 0x00, 0xb2, 0x01, 0xbf, 0x08, 0x87, 0x1e, 0x77, 0x6c, 0xcb, 0x35, 0x77, 0xa2, 0xd0, 0xff, 0xce, 0xd0, 0x9c, 0x1f, 0x1b, 0xac, 0x69, 0xb7, 0x91, 0x6b, 0xee, 0x38, 0x51, 0xd8, 0xff, 0x60, 0x58, 0x0f, 0x80, 0xc1, 0x55, 0xd3, 0x71, 0xe3, 0x8c, 0xfb, 0x3f, 0x39, 0x98, 0x03, 0xb0, 0xd2, 0xf8, 0xf3, 0x13, 0x68, 0x2f, 0x0a, 0xfb, 0x23, 0xae, 0x34, 0xe3, 0xcf, 0x3e, 0x08, 0x83, 0xf8, 0x23, 0x7d, 0x3d, 0x14, 0x01, 0xfe, 0x2f, 0x06, 0xf6, 0x11, 0xb8, 0x67, 0xc7, 0xad, 0xb9, 0xf5, 0x68, 0x63, 0xff, 0x98, 0x79, 0x9a, 0xf3, 0x67, 0x73, 0x30, 0xe4, 0xb8, 0xb5, 0x5a, 0x87, 0x55, 0x34, 0x11, 0xf0, 0x9f, 0xbc, 0xee, 0x6d, 0x72, 0x3d, 0x4c, 0xfe, 0x78, 0xf8, 0x61, 0x1d, 0x5c, 0xb1, 0xaf, 0xd8, 0xf4, 0x98, 0x0e, 0xbe, 0xdd, 0x80, 0xd9, 0xaa, 0xdd, 0xbc, 0x61, 0x3b, 0xa7, 0x02, 0xd3, 0xd0, 0x29, 0x77, 0x17, 0xe1, 0x15, 0x84, 0x1d, 0xb4, 0x25, 0xf1, 0xe7, 0xa9, 0x83, 0x9d, 0xce, 0x91, 0x8b, 0xd7, 0x72, 0x1d, 0x2b, 0x58, 0x26, 0x67, 0xdf, 0xfa, 0x31, 0x18, 0x20, 0x2a, 0x9f, 0x26, 0xf7, 0x4b, 0x4a, 0x3e, 0x79, 0xf3, 0xe5, 0x99, 0x3e, 0x83, 0xb5, 0x79, 0xd4, 0x25, 0x72, 0x38, 0x99, 0x10, 0xa8, 0x4b, 0x1e, 0xf5, 0x0c, 0x3d, 0x9f, 0x14, 0xa8, 0x67, 0x3c, 0xea, 0x32, 0x39, 0xa9, 0x54, 0x05, 0xea, 0xb2, 0x47, 0x3d, 0x4b, 0x4e, 0xe3, 0x47, 0x04, 0xea, 0x59, 0x8f, 0x7a, 0x8e, 0x9c, 0xc1, 0x27, 0x05, 0xea, 0x39, 0x8f, 0x7a, 0x9e, 0x1c, 0xbf, 0x8f, 0x0b, 0xd4, 0xf3, 0x1e, 0xf5, 0x02, 0x39, 0x76, 0xd7, 0x05, 0xea, 0x05, 0x8f, 0x7a, 0x91, 0xbc, 0x69, 0x39, 0x24, 0x50, 0x2f, 0xea, 0xd3, 0x70, 0x88, 0x8e, 0x7c, 0x91, 0xdc, 0xd1, 0x8e, 0x31, 0x32, 0x6f, 0xf4, 0xe9, 0xa7, 0xc9, 0xfb, 0x95, 0x01, 0x91, 0x7e, 0xda, 0xa7, 0x2f, 0x91, 0x97, 0xe8, 0x9a, 0x48, 0x5f, 0xf2, 0xe9, 0x67, 0xd2, 0x23, 0xe4, 0x0d, 0x8f, 0x40, 0x3f, 0xe3, 0xd3, 0x97, 0xd3, 0xa3, 0x38, 0x6a, 0x45, 0xfa, 0xb2, 0x4f, 0x3f, 0x9b, 0x1e, 0x9b, 0x55, 0xe6, 0x86, 0x45, 0xfa, 0xd9, 0xcc, 0xfb, 0x89, 0x7b, 0x2d, 0xdf, 0xbd, 0x93, 0xa2, 0x7b, 0x3d, 0xc7, 0x4e, 0x8a, 0x8e, 0xf5, 0x5c, 0x3a, 0x29, 0xba, 0xd4, 0x73, 0xe6, 0xa4, 0xe8, 0x4c, 0xcf, 0x8d, 0x93, 0xa2, 0x1b, 0x3d, 0x07, 0x4e, 0x8a, 0x0e, 0xf4, 0x5c, 0x37, 0x29, 0xba, 0xce, 0x73, 0xda, 0xa4, 0xe8, 0x34, 0xcf, 0x5d, 0x93, 0xa2, 0xbb, 0x3c, 0x47, 0xa5, 0x25, 0x47, 0xf9, 0x2e, 0x4a, 0x4b, 0x2e, 0xf2, 0x9d, 0x93, 0x96, 0x9c, 0xe3, 0xbb, 0x25, 0x2d, 0xb9, 0xc5, 0x77, 0x48, 0x5a, 0x72, 0x88, 0xef, 0x8a, 0xb4, 0xe4, 0x0a, 0xdf, 0x09, 0x2c, 0xc7, 0x0c, 0xd4, 0x0a, 0xc9, 0x31, 0x75, 0xdf, 0x1c, 0x53, 0xf7, 0xcd, 0x31, 0x75, 0xdf, 0x1c, 0x53, 0xf7, 0xcd, 0x31, 0x75, 0xdf, 0x1c, 0x53, 0xf7, 0xcd, 0x31, 0x75, 0xdf, 0x1c, 0x53, 0xf7, 0xcd, 0x31, 0x75, 0xff, 0x1c, 0x53, 0x23, 0x72, 0x4c, 0x8d, 0xc8, 0x31, 0x35, 0x22, 0xc7, 0xd4, 0x88, 0x1c, 0x53, 0x23, 0x72, 0x4c, 0xed, 0x99, 0x63, 0xbe, 0x7b, 0x27, 0x45, 0xf7, 0x86, 0xe6, 0x98, 0xda, 0x23, 0xc7, 0xd4, 0x1e, 0x39, 0xa6, 0xf6, 0xc8, 0x31, 0xb5, 0x47, 0x8e, 0xa9, 0x3d, 0x72, 0x4c, 0xed, 0x91, 0x63, 0x6a, 0x8f, 0x1c, 0x53, 0x7b, 0xe5, 0x98, 0xda, 0x33, 0xc7, 0xd4, 0x9e, 0x39, 0xa6, 0xf6, 0xcc, 0x31, 0xb5, 0x67, 0x8e, 0xa9, 0x3d, 0x73, 0x4c, 0x0d, 0xe6, 0xd8, 0x5f, 0xab, 0xa0, 0xd3, 0x1c, 0x5b, 0x27, 0xaf, 0x7c, 0x98, 0x2b, 0xa6, 0xa5, 0x4c, 0x1b, 0xc0, 0xae, 0xd3, 0x7c, 0x97, 0x4c, 0x4b, 0xb9, 0x26, 0xd2, 0x97, 0x3c, 0x3a, 0xcf, 0x36, 0x91, 0x7e, 0xc6, 0xa3, 0xf3, 0x7c, 0x13, 0xe9, 0xcb, 0x1e, 0x9d, 0x67, 0x9c, 0x48, 0x3f, 0xeb, 0xd1, 0x79, 0xce, 0x89, 0xf4, 0x73, 0x1e, 0x9d, 0x67, 0x9d, 0x48, 0x3f, 0xef, 0xd1, 0x79, 0xde, 0x89, 0xf4, 0x0b, 0x1e, 0x9d, 0x67, 0x9e, 0x48, 0xbf, 0xa8, 0xcf, 0xca, 0xb9, 0xc7, 0x19, 0x3c, 0xd7, 0xce, 0xca, 0xd9, 0x27, 0x71, 0x9c, 0xf6, 0x39, 0x78, 0xfe, 0x49, 0x1c, 0x4b, 0x3e, 0x07, 0xcf, 0x40, 0x89, 0xe3, 0x4c, 0xe6, 0x43, 0xc4, 0x7d, 0x96, 0xec, 0xbe, 0x29, 0xc9, 0x7d, 0x89, 0x80, 0xeb, 0xa6, 0x24, 0xd7, 0x25, 0x02, 0x6e, 0x9b, 0x92, 0xdc, 0x96, 0x08, 0xb8, 0x6c, 0x4a, 0x72, 0x59, 0x22, 0xe0, 0xae, 0x29, 0xc9, 0x5d, 0x89, 0x80, 0xab, 0xa6, 0x24, 0x57, 0x25, 0x02, 0x6e, 0x9a, 0x92, 0xdc, 0x94, 0x08, 0xb8, 0x68, 0x4a, 0x72, 0x51, 0x22, 0xe0, 0x9e, 0x29, 0xc9, 0x3d, 0x89, 0x80, 0x6b, 0x8e, 0xc9, 0xae, 0x49, 0x04, 0xdd, 0x72, 0x4c, 0x76, 0x4b, 0x22, 0xe8, 0x92, 0x63, 0xb2, 0x4b, 0x12, 0x41, 0x77, 0x1c, 0x93, 0xdd, 0x91, 0x08, 0xba, 0xe2, 0x67, 0x09, 0x5e, 0x11, 0x6e, 0xb8, 0xed, 0x4e, 0xd5, 0xbd, 0xad, 0x8a, 0x70, 0x51, 0x28, 0x1f, 0x86, 0x96, 0xf4, 0x05, 0x52, 0xb0, 0x06, 0x2b, 0x4e, 0x69, 0x05, 0x5b, 0x14, 0x0a, 0x8b, 0x00, 0xc2, 0x0a, 0x47, 0x2c, 0xdf, 0x56, 0x6d, 0xb8, 0x28, 0x94, 0x19, 0xd1, 0xfa, 0x5d, 0x78, 0xcb, 0x2b, 0xb6, 0x17, 0x13, 0xbc, 0x62, 0x63, 0xe6, 0x3f, 0x68, 0xc5, 0x36, 0x1f, 0x6d, 0x72, 0xcf, 0xd8, 0xf3, 0xd1, 0xc6, 0xee, 0x5a, 0x75, 0xe2, 0x56, 0x70, 0xf3, 0xd1, 0xa6, 0xf5, 0x8c, 0xfa, 0xe6, 0xd6, 0x5b, 0x2c, 0x82, 0x0d, 0xd4, 0x0a, 0x89, 0xe0, 0x83, 0xd6, 0x5b, 0x8b, 0xc2, 0x54, 0x72, 0xd0, 0x08, 0x56, 0x0f, 0x1c, 0xc1, 0x07, 0xad, 0xbc, 0x16, 0x85, 0xe9, 0xe5, 0xc0, 0x11, 0xfc, 0x16, 0xd4, 0x43, 0x2c, 0x82, 0x7d, 0xf3, 0x1f, 0xb4, 0x1e, 0x9a, 0x8f, 0x36, 0x79, 0x68, 0x04, 0xab, 0x07, 0x88, 0xe0, 0x38, 0xf5, 0xd1, 0x7c, 0xb4, 0x69, 0xc3, 0x23, 0xf8, 0xb6, 0xab, 0x99, 0x4f, 0x29, 0x30, 0x5e, 0xae, 0xd7, 0x4a, 0xcd, 0x1b, 0xa8, 0x56, 0x43, 0x35, 0x66, 0xc7, 0x45, 0x61, 0x26, 0xe8, 0xe1, 0xea, 0x97, 0x5e, 0x9e, 0xf1, 0x2d, 0x7c, 0x16, 0x52, 0xd4, 0xa6, 0x8b, 0x8b, 0xe9, 0x9b, 0x4a, 0xc4, 0x0c, 0xe7, 0xb1, 0xea, 0xc7, 0x39, 0xec, 0xf4, 0x62, 0xfa, 0x1f, 0x94, 0xc0, 0x2c, 0xe7, 0x35, 0x67, 0x3e, 0x42, 0x34, 0xb4, 0x6e, 0x5b, 0xc3, 0x53, 0xb1, 0x34, 0x0c, 0xe8, 0x76, 0x67, 0x97, 0x6e, 0x01, 0xad, 0x3a, 0x30, 0x56, 0xae, 0xd7, 0xca, 0xe4, 0x6f, 0xa0, 0xe3, 0xa8, 0x44, 0x79, 0xa4, 0xf9, 0x60, 0x51, 0x08, 0xcb, 0x20, 0xc2, 0x0b, 0x69, 0x71, 0x8e, 0xc8, 0xd4, 0x71, 0xb7, 0x96, 0xd0, 0xed, 0x7c, 0xaf, 0x6e, 0xfd, 0x99, 0xdd, 0xeb, 0x70, 0xbe, 0x57, 0x87, 0x7e, 0x0e, 0x79, 0x5d, 0x3d, 0xcd, 0x17, 0x67, 0xfa, 0xdc, 0x46, 0x3f, 0x06, 0x89, 0x15, 0xfa, 0x14, 0x78, 0x38, 0x3f, 0x8c, 0x95, 0xfa, 0xee, 0xcb, 0x33, 0xc9, 0xad, 0x4e, 0xbd, 0x66, 0x24, 0x56, 0x6a, 0xfa, 0x55, 0xe8, 0x7f, 0x0f, 0xfb, 0x4b, 0x3c, 0xcc, 0xb0, 0xcc, 0x18, 0xee, 0xef, 0x79, 0x46, 0x84, 0x3b, 0x3e, 0x45, 0x0f, 0x12, 0x17, 0xb6, 0xea, 0x96, 0x7b, 0x7a, 0xe9, 0x82, 0x41, 0x45, 0x64, 0xfe, 0x0f, 0x00, 0xed, 0xb3, 0x68, 0x3a, 0xbb, 0x7a, 0x99, 0x4b, 0xa6, 0x5d, 0x5f, 0xf8, 0xee, 0xcb, 0x33, 0xcb, 0x71, 0xa4, 0x3e, 0x50, 0x33, 0x9d, 0xdd, 0x07, 0xdc, 0xbd, 0x16, 0x5a, 0xc8, 0xef, 0xb9, 0xc8, 0xe1, 0xd2, 0x5b, 0x7c, 0xd5, 0x63, 0xe3, 0x4a, 0x07, 0xc6, 0x95, 0x12, 0xc6, 0x74, 0x59, 0x1c, 0xd3, 0xe2, 0x1b, 0x1d, 0xcf, 0xd3, 0x7c, 0x91, 0x90, 0x2c, 0xa9, 0x46, 0x59, 0x52, 0xbd, 0x5d, 0x4b, 0xb6, 0xf8, 0xfc, 0x28, 0x8d, 0x55, 0xdd, 0x6f, 0xac, 0xea, 0xed, 0x8c, 0xf5, 0xbf, 0x69, 0xb6, 0x7a, 0xf9, 0xb4, 0x65, 0xd1, 0x67, 0x88, 0xbf, 0x58, 0x67, 0x41, 0x6f, 0x6a, 0x15, 0x90, 0x4d, 0xde, 0x7c, 0x7e, 0x46, 0xc9, 0x7c, 0x2a, 0xc1, 0x47, 0x4e, 0x13, 0xe9, 0x8d, 0x8d, 0xfc, 0x17, 0xa5, 0xa6, 0x7a, 0x2b, 0x2c, 0xf4, 0x9c, 0x02, 0x93, 0x5d, 0x33, 0x39, 0x35, 0xd3, 0x9b, 0x3b, 0x9d, 0x5b, 0x07, 0x9d, 0xce, 0x99, 0x82, 0x5f, 0x55, 0xe0, 0xb0, 0x34, 0xbd, 0x52, 0xf5, 0x4e, 0x49, 0xea, 0x1d, 0xed, 0xee, 0x89, 0x30, 0x06, 0xb4, 0x0b, 0xba, 0x57, 0x02, 0x04, 0x24, 0x7b, 0x7e, 0x5f, 0x96, 0xfc, 0x7e, 0xcc, 0x03, 0x84, 0x98, 0x8b, 0x47, 0x00, 0x53, 0xdb, 0x86, 0xe4, 0x66, 0x1b, 0x21, 0x7d, 0x1a, 0x12, 0x6b, 0x6d, 0xa6, 0xe1, 0x28, 0xc5, 0xaf, 0xb5, 0xf3, 0x6d, 0xd3, 0xaa, 0xee, 0x1a, 0x89, 0xb5, 0xb6, 0x7e, 0x1c, 0xd4, 0x1c, 0xfb, 0xa5, 0x85, 0xa1, 0xa5, 0x31, 0xca, 0x90, 0xb3, 0x6a, 0x8c, 0x03, 0xd3, 0xf4, 0x69, 0x48, 0x5e, 0x43, 0xe6, 0x36, 0x53, 0x02, 0x28, 0x0f, 0x6e, 0x31, 0x48, 0x3b, 0xeb, 0xf0, 0x31, 0x48, 0x71, 0xc1, 0xfa, 0x09, 0x8c, 0xd8, 0x76, 0x59, 0xb7, 0x0c, 0x81, 0xd5, 0x61, 0x2b, 0x17, 0xa1, 0xea, 0x27, 0xa1, 0xdf, 0xa8, 0xef, 0xec, 0xba, 0xac, 0xf3, 0x6e, 0x36, 0x4a, 0xce, 0x5c, 0x87, 0x41, 0x4f, 0xa3, 0x37, 0x59, 0x74, 0x91, 0x0e, 0x4d, 0x9f, 0x0a, 0xae, 0x27, 0xfc, 0xdc, 0x92, 0x36, 0xe9, 0xb3, 0x90, 0xda, 0x70, 0xdb, 0xfe, 0xa4, 0xcf, 0x2b, 0x52, 0xaf, 0x35, 0xf3, 0x7e, 0x05, 0x52, 0x45, 0x84, 0x5a, 0xc4, 0xe0, 0xf7, 0x40, 0xb2, 0x68, 0x3f, 0x65, 0x31, 0x05, 0xc7, 0x99, 0x45, 0x31, 0x99, 0xd9, 0x94, 0x90, 0xf5, 0x7b, 0x82, 0x76, 0x9f, 0xf0, 0xec, 0x1e, 0xe0, 0x23, 0xb6, 0xcf, 0x08, 0xb6, 0x67, 0x0e, 0xc4, 0x4c, 0x5d, 0xf6, 0x3f, 0x0f, 0x43, 0x81, 0x5e, 0xf4, 0x39, 0xa6, 0x46, 0x42, 0x06, 0x06, 0x6d, 0x85, 0x39, 0x32, 0x08, 0x46, 0x84, 0x8e, 0x31, 0x34, 0x60, 0xe2, 0x1e, 0x50, 0x62, 0xe6, 0x79, 0xd1, 0xcc, 0xe1, 0xac, 0xcc, 0xd4, 0x8b, 0xd4, 0x46, 0xc4, 0xdc, 0x27, 0x68, 0x70, 0xf6, 0x76, 0x22, 0xfe, 0x9c, 0xe9, 0x07, 0xb5, 0x5c, 0x6f, 0x64, 0x1e, 0x04, 0xa0, 0x29, 0x5f, 0xb2, 0x3a, 0x4d, 0x29, 0xeb, 0x46, 0xb9, 0x81, 0x37, 0x77, 0xd1, 0x26, 0x72, 0x08, 0x8b, 0x58, 0x4f, 0xe1, 0x09, 0x06, 0x68, 0x8a, 0x11, 0xfc, 0x7d, 0x91, 0xf8, 0xd0, 0x4a, 0x0c, 0xb3, 0xa6, 0x29, 0xeb, 0x75, 0xe4, 0xe6, 0x2c, 0xdb, 0xdd, 0x45, 0x6d, 0x09, 0xb1, 0xa4, 0x9f, 0x11, 0x12, 0x76, 0x74, 0xe9, 0x4e, 0x0f, 0xd1, 0x13, 0x74, 0x26, 0xf3, 0x25, 0xa2, 0x20, 0x2e, 0x05, 0xba, 0x06, 0xa8, 0xc6, 0x18, 0xa0, 0x7e, 0x4e, 0xa8, 0xdf, 0xf6, 0x51, 0x53, 0xda, 0x5a, 0x5e, 0x14, 0xf6, 0x39, 0xfb, 0x2b, 0x2b, 0xee, 0x31, 0xb9, 0x4d, 0xb9, 0xca, 0xf7, 0x45, 0xaa, 0xdc, 0xa3, 0xba, 0x3d, 0xa8, 0x4d, 0xd5, 0xb8, 0x36, 0xfd, 0x86, 0x57, 0x71, 0xd0, 0x5f, 0x8d, 0x20, 0x3f, 0x52, 0xa2, 0xdf, 0x1f, 0xe9, 0xfb, 0xac, 0x52, 0xf0, 0x54, 0x5d, 0x8e, 0xeb, 0xfe, 0x6c, 0x22, 0x9f, 0xf7, 0xd4, 0x3d, 0x7f, 0x80, 0x10, 0xc8, 0x26, 0x0a, 0x05, 0x6f, 0xda, 0x4e, 0x7d, 0xe8, 0xf9, 0x19, 0xe5, 0x85, 0xe7, 0x67, 0xfa, 0x32, 0x9f, 0x57, 0x60, 0x9c, 0x71, 0x06, 0x02, 0xf7, 0x01, 0x49, 0xf9, 0x23, 0x7c, 0xce, 0x08, 0xb3, 0xc0, 0xdb, 0x16, 0xbc, 0xdf, 0x52, 0x20, 0xdd, 0xa5, 0x2b, 0xb7, 0xf7, 0x62, 0x2c, 0x95, 0xb3, 0x4a, 0xe9, 0xe7, 0x6f, 0xf3, 0xeb, 0xd0, 0xbf, 0x59, 0x6f, 0xa2, 0x36, 0x5e, 0x09, 0xf0, 0x07, 0xaa, 0x32, 0xbf, 0xcc, 0xa1, 0x4d, 0x9c, 0x46, 0x95, 0x13, 0x68, 0x4b, 0x7a, 0x1a, 0x92, 0x45, 0xd3, 0x35, 0x89, 0x06, 0xc3, 0xde, 0xfc, 0x6a, 0xba, 0x66, 0xe6, 0x0c, 0x0c, 0xaf, 0xee, 0x91, 0xb7, 0x32, 0x35, 0xf2, 0x0e, 0x44, 0xac, 0xfe, 0x78, 0xbd, 0x7a, 0x7a, 0xbe, 0x3f, 0x55, 0xd3, 0x6e, 0x2a, 0xd9, 0x24, 0xd1, 0xe7, 0x49, 0x18, 0x5d, 0xc3, 0x6a, 0x13, 0x9c, 0x00, 0xa3, 0xbd, 0xab, 0xde, 0xe0, 0xa5, 0xa2, 0x4c, 0xf5, 0x8b, 0xb2, 0x59, 0x50, 0x56, 0xc5, 0xd2, 0x29, 0xa8, 0x87, 0xa1, 0xac, 0xce, 0x27, 0x53, 0xa3, 0xda, 0xf8, 0x7c, 0x32, 0x05, 0xda, 0x08, 0xeb, 0xf7, 0xef, 0x55, 0xd0, 0x68, 0xa9, 0x53, 0x44, 0xdb, 0x75, 0xab, 0xee, 0x76, 0xd7, 0xab, 0x9e, 0xc6, 0xfa, 0xc3, 0x30, 0x88, 0x4d, 0x7a, 0x99, 0xfd, 0x56, 0x19, 0x36, 0xfd, 0x71, 0x56, 0xa2, 0x48, 0x22, 0x58, 0x03, 0x09, 0x1d, 0x1f, 0xa3, 0x5f, 0x06, 0xb5, 0x5c, 0x5e, 0x65, 0x8b, 0xdb, 0xf2, 0xbe, 0x50, 0xf6, 0xd4, 0x86, 0x7d, 0x63, 0x6d, 0xce, 0x8e, 0x81, 0x05, 0xe8, 0xcb, 0x90, 0x28, 0xaf, 0xb2, 0x82, 0xf7, 0x44, 0x1c, 0x31, 0x46, 0xa2, 0xbc, 0x3a, 0xf5, 0x37, 0x0a, 0x8c, 0x08, 0xad, 0x7a, 0x06, 0x86, 0x69, 0x43, 0x60, 0xb8, 0x03, 0x86, 0xd0, 0xc6, 0x75, 0x4e, 0xdc, 0xa6, 0xce, 0x53, 0x39, 0x18, 0x93, 0xda, 0xf5, 0x05, 0xd0, 0x83, 0x4d, 0x4c, 0x09, 0xfa, 0x3b, 0x49, 0x21, 0x94, 0xcc, 0x5d, 0x00, 0xbe, 0x5d, 0xbd, 0x9f, 0xf7, 0x29, 0x97, 0x36, 0x36, 0x4b, 0x45, 0x4d, 0xc9, 0x7c, 0x4d, 0x81, 0x21, 0x56, 0xb6, 0x56, 0xed, 0x16, 0xd2, 0xf3, 0xa0, 0xe4, 0x58, 0x3c, 0xbc, 0x31, 0xbd, 0x95, 0x9c, 0x7e, 0x0a, 0x94, 0x7c, 0x7c, 0x57, 0x2b, 0x79, 0x7d, 0x09, 0x94, 0x02, 0x73, 0x70, 0x3c, 0xcf, 0x28, 0x85, 0xcc, 0x8f, 0x55, 0x98, 0x08, 0x96, 0xd1, 0x7c, 0x3e, 0x39, 0x2e, 0xee, 0x9b, 0xb2, 0x83, 0xa7, 0x97, 0xce, 0x2c, 0x2f, 0xe0, 0x7f, 0xbc, 0x90, 0xcc, 0x88, 0x5b, 0xa8, 0x2c, 0x78, 0x2c, 0xa7, 0x7b, 0xbd, 0x13, 0xc9, 0x26, 0x03, 0x12, 0xba, 0xde, 0x89, 0x08, 0xd4, 0xae, 0x77, 0x22, 0x02, 0xb5, 0xeb, 0x9d, 0x88, 0x40, 0xed, 0xba, 0x0b, 0x10, 0xa8, 0x5d, 0xef, 0x44, 0x04, 0x6a, 0xd7, 0x3b, 0x11, 0x81, 0xda, 0xfd, 0x4e, 0x84, 0x91, 0x7b, 0xbe, 0x13, 0x11, 0xe9, 0xdd, 0xef, 0x44, 0x44, 0x7a, 0xf7, 0x3b, 0x91, 0x6c, 0xd2, 0x6d, 0x77, 0x50, 0xef, 0x5b, 0x07, 0x11, 0xbf, 0xdf, 0x26, 0xd0, 0x9f, 0x81, 0xd7, 0x60, 0x8c, 0x1e, 0x48, 0x14, 0x6c, 0xcb, 0x35, 0xeb, 0x16, 0x6a, 0xeb, 0xef, 0x84, 0x61, 0xda, 0x44, 0xb7, 0x39, 0x61, 0xdb, 0x40, 0x4a, 0x67, 0xf3, 0xad, 0xc0, 0x9d, 0xf9, 0x59, 0x12, 0x26, 0x69, 0x43, 0xd9, 0x6c, 0x22, 0xe1, 0x95, 0xd1, 0x49, 0xe9, 0x4e, 0x69, 0x14, 0xc3, 0x6f, 0xbd, 0x3c, 0x43, 0x5b, 0x73, 0x5e, 0x34, 0x9d, 0x94, 0x6e, 0x97, 0x44, 0x3e, 0x7f, 0x01, 0x3a, 0x29, 0xbd, 0x3c, 0x12, 0xf9, 0xbc, 0xf5, 0xc6, 0xe3, 0xe3, 0x6f, 0x90, 0x44, 0xbe, 0xa2, 0x17, 0x65, 0x27, 0xa5, 0xd7, 0x48, 0x22, 0x5f, 0xc9, 0x8b, 0xb7, 0x93, 0xd2, 0xdd, 0x93, 0xc8, 0x77, 0xd9, 0x8b, 0xbc, 0x93, 0xd2, 0x2d, 0x94, 0xc8, 0x77, 0xc5, 0x8b, 0xc1, 0x93, 0xd2, 0x5b, 0x25, 0x91, 0xef, 0x11, 0x2f, 0x1a, 0x4f, 0x4a, 0xaf, 0x96, 0x44, 0xbe, 0x15, 0x2f, 0x2e, 0xe7, 0xe4, 0xf7, 0x4b, 0x22, 0xe3, 0x55, 0x3f, 0x42, 0xe7, 0xe4, 0x97, 0x4c, 0x22, 0xe7, 0xbb, 0xfc, 0x58, 0x9d, 0x93, 0xdf, 0x34, 0x89, 0x9c, 0xd7, 0xfc, 0xa8, 0x9d, 0x93, 0xef, 0xca, 0x44, 0xce, 0x55, 0x3f, 0x7e, 0xe7, 0xe4, 0x5b, 0x33, 0x91, 0xb3, 0xec, 0x47, 0xf2, 0x9c, 0x7c, 0x7f, 0x26, 0x72, 0xae, 0xf9, 0x87, 0xe8, 0xdf, 0x94, 0xc2, 0x2f, 0xf0, 0x0a, 0x2a, 0x23, 0x85, 0x1f, 0x84, 0x84, 0x9e, 0x34, 0x91, 0x05, 0x78, 0xfc, 0xb0, 0xcb, 0x48, 0x61, 0x07, 0x21, 0x21, 0x97, 0x91, 0x42, 0x0e, 0x42, 0xc2, 0x2d, 0x23, 0x85, 0x1b, 0x84, 0x84, 0x5a, 0x46, 0x0a, 0x35, 0x08, 0x09, 0xb3, 0x8c, 0x14, 0x66, 0x10, 0x12, 0x62, 0x19, 0x29, 0xc4, 0x20, 0x24, 0xbc, 0x32, 0x52, 0x78, 0x41, 0x48, 0x68, 0x9d, 0x90, 0x43, 0x0b, 0xc2, 0xc2, 0xea, 0x84, 0x1c, 0x56, 0x10, 0x16, 0x52, 0x77, 0xcb, 0x21, 0x35, 0x78, 0xeb, 0xe5, 0x99, 0x7e, 0xdc, 0x14, 0x88, 0xa6, 0x13, 0x72, 0x34, 0x41, 0x58, 0x24, 0x9d, 0x90, 0x23, 0x09, 0xc2, 0xa2, 0xe8, 0x84, 0x1c, 0x45, 0x10, 0x16, 0x41, 0x2f, 0xca, 0x11, 0xe4, 0xbf, 0xf1, 0xc9, 0x48, 0x57, 0x8a, 0x51, 0x11, 0xa4, 0xc6, 0x88, 0x20, 0x35, 0x46, 0x04, 0xa9, 0x31, 0x22, 0x48, 0x8d, 0x11, 0x41, 0x6a, 0x8c, 0x08, 0x52, 0x63, 0x44, 0x90, 0x1a, 0x23, 0x82, 0xd4, 0x38, 0x11, 0xa4, 0xc6, 0x8a, 0x20, 0xb5, 0x57, 0x04, 0x9d, 0x90, 0x5f, 0x3c, 0x40, 0xd8, 0x84, 0x74, 0x42, 0xbe, 0xfa, 0x8c, 0x0e, 0x21, 0x35, 0x56, 0x08, 0xa9, 0xbd, 0x42, 0xe8, 0x9b, 0x2a, 0x4c, 0x08, 0x21, 0xc4, 0xee, 0x87, 0xde, 0xac, 0x19, 0xe8, 0x5c, 0x8c, 0x07, 0x16, 0x61, 0x31, 0x75, 0x2e, 0xc6, 0x25, 0xf5, 0x7e, 0x71, 0xd6, 0x3d, 0x0b, 0x95, 0x62, 0xcc, 0x42, 0x97, 0xbd, 0x18, 0x3a, 0x17, 0xe3, 0xe1, 0x45, 0x77, 0xec, 0x5d, 0xd8, 0x6f, 0x12, 0x78, 0x24, 0xd6, 0x24, 0xb0, 0x12, 0x6b, 0x12, 0xb8, 0xea, 0x7b, 0xf0, 0x83, 0x09, 0x38, 0xec, 0x7b, 0x90, 0x7e, 0x22, 0x3f, 0x86, 0x94, 0x09, 0x5c, 0x51, 0xe9, 0xfc, 0xda, 0x26, 0xe0, 0xc6, 0xc4, 0x4a, 0x4d, 0x5f, 0x17, 0x2f, 0xab, 0xb2, 0x07, 0xbd, 0xc0, 0x09, 0x78, 0x9c, 0x1d, 0x86, 0x9e, 0x00, 0x75, 0xa5, 0xe6, 0x90, 0xd9, 0x22, 0xac, 0xdb, 0x82, 0x81, 0xc9, 0xba, 0x01, 0x03, 0x84, 0xdd, 0x21, 0xee, 0xbd, 0x9d, 0x8e, 0x8b, 0x06, 0x93, 0x94, 0x79, 0x51, 0x81, 0x59, 0x21, 0x94, 0xdf, 0x9c, 0x2b, 0x83, 0x4b, 0xb1, 0xae, 0x0c, 0x84, 0x04, 0xf1, 0xaf, 0x0f, 0xee, 0xed, 0xbe, 0xa9, 0x0e, 0x66, 0x89, 0x7c, 0x95, 0xf0, 0xff, 0x60, 0xd4, 0x1f, 0x01, 0xd9, 0xb3, 0x9d, 0x8d, 0x3e, 0xcd, 0x0c, 0x4b, 0xcd, 0xb3, 0xd2, 0x29, 0xda, 0xbe, 0x30, 0x2f, 0x5b, 0x33, 0x59, 0x18, 0x2b, 0x8b, 0x7f, 0xb5, 0x13, 0x75, 0x18, 0x91, 0xc2, 0xa5, 0xf9, 0xcd, 0x4f, 0xcf, 0xf4, 0x65, 0xee, 0x87, 0xe1, 0xe0, 0x1f, 0xe6, 0x48, 0xc0, 0x41, 0x0e, 0xcc, 0x26, 0x5f, 0xc2, 0xdc, 0xbf, 0xa7, 0xc0, 0x91, 0x20, 0xfb, 0xa3, 0x75, 0x77, 0x77, 0xc5, 0xc2, 0x35, 0xfd, 0x83, 0x90, 0x42, 0xcc, 0x71, 0xec, 0x77, 0x4d, 0xd8, 0x3e, 0x32, 0x94, 0x7d, 0x81, 0xfc, 0x6b, 0x78, 0x10, 0xe9, 0x14, 0x84, 0x77, 0xbb, 0x34, 0x75, 0x0f, 0xf4, 0x53, 0xf9, 0xa2, 0x5e, 0x23, 0x92, 0x5e, 0x9f, 0x0d, 0xd1, 0x8b, 0xc4, 0x91, 0x7e, 0x55, 0xd0, 0x2b, 0xb0, 0x5d, 0x0d, 0x65, 0x5f, 0xe0, 0xc1, 0x97, 0x4f, 0xe1, 0xfa, 0x8f, 0x44, 0x54, 0xb4, 0x92, 0x73, 0x90, 0x2a, 0xc9, 0x3c, 0xe1, 0x7a, 0x16, 0x21, 0x59, 0xb6, 0x6b, 0xe4, 0x17, 0x57, 0xc8, 0x2f, 0xf4, 0x32, 0x23, 0xb3, 0x9f, 0xeb, 0x3d, 0x09, 0xa9, 0xc2, 0x6e, 0xbd, 0x51, 0x6b, 0x23, 0x8b, 0xdd, 0xd9, 0xb3, 0x23, 0x74, 0x8c, 0x31, 0x3c, 0x5a, 0xa6, 0x00, 0xe3, 0x65, 0xdb, 0xca, 0xef, 0xb9, 0xc1, 0x79, 0x63, 0x41, 0x4a, 0x11, 0x76, 0xe7, 0x43, 0xfe, 0xd4, 0x03, 0x33, 0xe4, 0xfb, 0xbf, 0xfb, 0xf2, 0x8c, 0xb2, 0xe9, 0x9d, 0x9f, 0xaf, 0xc2, 0x51, 0x96, 0x3e, 0x5d, 0xa2, 0x96, 0xa2, 0x44, 0x0d, 0xb2, 0x7b, 0xea, 0x80, 0xb8, 0x15, 0x2c, 0xce, 0x0a, 0x15, 0xf7, 0xc6, 0x34, 0xc3, 0x45, 0xd1, 0xbe, 0x9a, 0xa9, 0x07, 0xd2, 0x2c, 0x54, 0xdc, 0x42, 0x94, 0x38, 0x49, 0xb3, 0xbb, 0x61, 0xd0, 0xa3, 0x05, 0xa2, 0x21, 0x98, 0x29, 0x4b, 0xf3, 0x19, 0x18, 0x0a, 0x24, 0xac, 0xde, 0x0f, 0x4a, 0x4e, 0xeb, 0xc3, 0xff, 0xe5, 0x35, 0x05, 0xff, 0x57, 0xd0, 0x12, 0xf3, 0xf7, 0xc0, 0x98, 0x74, 0x7e, 0x89, 0x29, 0x45, 0x0d, 0xf0, 0x7f, 0x25, 0x6d, 0x68, 0x2a, 0xf9, 0xa1, 0x3f, 0x9c, 0xee, 0x9b, 0xbf, 0x04, 0x7a, 0xf7, 0x49, 0xa7, 0x3e, 0x00, 0x89, 0x1c, 0x16, 0x79, 0x14, 0x12, 0xf9, 0xbc, 0xa6, 0x4c, 0x8d, 0xfd, 0xea, 0x27, 0x67, 0x87, 0xf2, 0xe4, 0xaf, 0x8e, 0xaf, 0x23, 0x37, 0x9f, 0x67, 0xe0, 0x87, 0xe0, 0x48, 0xe8, 0x49, 0x29, 0xc6, 0x17, 0x0a, 0x14, 0x5f, 0x2c, 0x76, 0xe1, 0x8b, 0x45, 0x82, 0x57, 0xb2, 0xfc, 0xc6, 0x39, 0xa7, 0x87, 0x9c, 0x32, 0xa6, 0x6b, 0x81, 0x1b, 0xee, 0x5c, 0xf6, 0x21, 0xc6, 0x9b, 0x0f, 0xe5, 0x45, 0x11, 0x37, 0xd6, 0xf9, 0x6c, 0x81, 0xe1, 0x0b, 0xa1, 0xf8, 0x6d, 0xe9, 0x5a, 0x55, 0x5c, 0x21, 0x98, 0x90, 0x82, 0xa7, 0x70, 0x31, 0x54, 0xc8, 0x6e, 0xe0, 0xb1, 0x7b, 0xd1, 0x53, 0xb8, 0x14, 0xca, 0x5b, 0x8f, 0x78, 0xf4, 0x55, 0xca, 0x9e, 0x62, 0x8b, 0x7c, 0xee, 0xb4, 0x7e, 0x84, 0xe7, 0xa8, 0x30, 0x03, 0x33, 0x03, 0x71, 0xae, 0x6c, 0x81, 0x01, 0xf2, 0x3d, 0x01, 0xbd, 0xad, 0xc4, 0x91, 0xd9, 0x47, 0x98, 0x90, 0x42, 0x4f, 0x21, 0x11, 0xa6, 0xe2, 0xf0, 0xfc, 0xe6, 0xcd, 0x57, 0xa6, 0xfb, 0x5e, 0x7a, 0x65, 0xba, 0xef, 0x1f, 0x5f, 0x99, 0xee, 0xfb, 0xde, 0x2b, 0xd3, 0xca, 0x0f, 0x5f, 0x99, 0x56, 0x7e, 0xf4, 0xca, 0xb4, 0xf2, 0xd3, 0x57, 0xa6, 0x95, 0x67, 0x6f, 0x4d, 0x2b, 0x2f, 0xdc, 0x9a, 0x56, 0xbe, 0x74, 0x6b, 0x5a, 0xf9, 0xfa, 0xad, 0x69, 0xe5, 0xc5, 0x5b, 0xd3, 0xca, 0xcd, 0x5b, 0xd3, 0x7d, 0x2f, 0xdd, 0x9a, 0x56, 0xbe, 0x77, 0x6b, 0x5a, 0xf9, 0xe1, 0xad, 0xe9, 0xbe, 0x1f, 0xdd, 0x9a, 0x56, 0x7e, 0x7a, 0x6b, 0xba, 0xef, 0xd9, 0xef, 0x4f, 0xf7, 0x3d, 0xff, 0xfd, 0xe9, 0xbe, 0x17, 0xbe, 0x3f, 0xad, 0xfc, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf8, 0x49, 0x0a, 0xf7, 0xf5, 0x65, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x TheTestEnum) String() string { s, ok := TheTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x AnotherTestEnum) String() string { s, ok := AnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x YetAnotherTestEnum) String() string { s, ok := YetAnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x YetYetAnotherTestEnum) String() string { s, ok := YetYetAnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x NestedDefinition_NestedEnum) String() string { s, ok := NestedDefinition_NestedEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *NidOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptNative but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if this.Field2 != that1.Field2 { return false } if this.Field3 != that1.Field3 { return false } if this.Field4 != that1.Field4 { return false } if this.Field5 != that1.Field5 { return false } if this.Field6 != that1.Field6 { return false } if this.Field7 != that1.Field7 { return false } if this.Field8 != that1.Field8 { return false } if this.Field9 != that1.Field9 { return false } if this.Field10 != that1.Field10 { return false } if this.Field11 != that1.Field11 { return false } if this.Field12 != that1.Field12 { return false } if this.Field13 != that1.Field13 { return false } if this.Field14 != that1.Field14 { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNative but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", *this.Field8, *that1.Field8) } } else if this.Field8 != nil { return fmt.Errorf("this.Field8 == nil && that.Field8 != nil") } else if that1.Field8 != nil { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", *this.Field9, *that1.Field9) } } else if this.Field9 != nil { return fmt.Errorf("this.Field9 == nil && that.Field9 != nil") } else if that1.Field9 != nil { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", *this.Field10, *that1.Field10) } } else if this.Field10 != nil { return fmt.Errorf("this.Field10 == nil && that.Field10 != nil") } else if that1.Field10 != nil { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", *this.Field11, *that1.Field11) } } else if this.Field11 != nil { return fmt.Errorf("this.Field11 == nil && that.Field11 != nil") } else if that1.Field11 != nil { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", *this.Field12, *that1.Field12) } } else if this.Field12 != nil { return fmt.Errorf("this.Field12 == nil && that.Field12 != nil") } else if that1.Field12 != nil { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return false } } else if this.Field8 != nil { return false } else if that1.Field8 != nil { return false } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return false } } else if this.Field9 != nil { return false } else if that1.Field9 != nil { return false } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return false } } else if this.Field10 != nil { return false } else if that1.Field10 != nil { return false } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return false } } else if this.Field11 != nil { return false } else if that1.Field11 != nil { return false } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return false } } else if this.Field12 != nil { return false } else if that1.Field12 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepPackedNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepPackedNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepPackedNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepPackedNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepPackedNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepPackedNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepPackedNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepPackedNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepPackedNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepPackedNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptStruct but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(&that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(&that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if !this.Field8.Equal(&that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if this.Field2 != that1.Field2 { return false } if !this.Field3.Equal(&that1.Field3) { return false } if !this.Field4.Equal(&that1.Field4) { return false } if this.Field6 != that1.Field6 { return false } if this.Field7 != that1.Field7 { return false } if !this.Field8.Equal(&that1.Field8) { return false } if this.Field13 != that1.Field13 { return false } if this.Field14 != that1.Field14 { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptStruct but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if !this.Field8.Equal(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !this.Field3.Equal(that1.Field3) { return false } if !this.Field4.Equal(that1.Field4) { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if !this.Field8.Equal(that1.Field8) { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepStruct but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if !this.Field3[i].Equal(&that1.Field3[i]) { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if !this.Field4[i].Equal(&that1.Field4[i]) { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if !this.Field8[i].Equal(&that1.Field8[i]) { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if !this.Field3[i].Equal(&that1.Field3[i]) { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if !this.Field4[i].Equal(&that1.Field4[i]) { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if !this.Field8[i].Equal(&that1.Field8[i]) { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepStruct but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if !this.Field3[i].Equal(that1.Field3[i]) { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if !this.Field4[i].Equal(that1.Field4[i]) { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if !this.Field8[i].Equal(that1.Field8[i]) { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if !this.Field3[i].Equal(that1.Field3[i]) { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if !this.Field4[i].Equal(that1.Field4[i]) { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if !this.Field8[i].Equal(that1.Field8[i]) { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidEmbeddedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidEmbeddedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidEmbeddedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidEmbeddedStruct but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(&that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidEmbeddedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(&that1.Field200) { return false } if this.Field210 != that1.Field210 { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinEmbeddedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinEmbeddedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinEmbeddedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinEmbeddedStruct but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", *this.Field210, *that1.Field210) } } else if this.Field210 != nil { return fmt.Errorf("this.Field210 == nil && that.Field210 != nil") } else if that1.Field210 != nil { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinEmbeddedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(that1.Field200) { return false } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return false } } else if this.Field210 != nil { return false } else if that1.Field210 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidNestedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidNestedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidNestedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidNestedStruct but is not nil && this == nil") } if !this.Field1.Equal(&that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if !this.Field2[i].Equal(&that1.Field2[i]) { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidNestedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(&that1.Field1) { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if !this.Field2[i].Equal(&that1.Field2[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinNestedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinNestedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinNestedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinNestedStruct but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if !this.Field2[i].Equal(that1.Field2[i]) { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinNestedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if !this.Field2[i].Equal(that1.Field2[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptCustom but is not nil && this == nil") } if !this.Id.Equal(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id) } if !this.Value.Equal(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Id.Equal(that1.Id) { return false } if !this.Value.Equal(that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomDash) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomDash") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomDash but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomDash but is not nil && this == nil") } if that1.Value == nil { if this.Value != nil { return fmt.Errorf("this.Value != nil && that1.Value == nil") } } else if !this.Value.Equal(*that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomDash) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Value == nil { if this.Value != nil { return false } } else if !this.Value.Equal(*that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptCustom but is not nil && this == nil") } if that1.Id == nil { if this.Id != nil { return fmt.Errorf("this.Id != nil && that1.Id == nil") } } else if !this.Id.Equal(*that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id) } if that1.Value == nil { if this.Value != nil { return fmt.Errorf("this.Value != nil && that1.Value == nil") } } else if !this.Value.Equal(*that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Id == nil { if this.Id != nil { return false } } else if !this.Id.Equal(*that1.Id) { return false } if that1.Value == nil { if this.Value != nil { return false } } else if !this.Value.Equal(*that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepCustom but is not nil && this == nil") } if len(this.Id) != len(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", len(this.Id), len(that1.Id)) } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return fmt.Errorf("Id this[%v](%v) Not Equal that[%v](%v)", i, this.Id[i], i, that1.Id[i]) } } if len(this.Value) != len(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", len(this.Value), len(that1.Value)) } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return fmt.Errorf("Value this[%v](%v) Not Equal that[%v](%v)", i, this.Value[i], i, that1.Value[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Id) != len(that1.Id) { return false } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return false } } if len(this.Value) != len(that1.Value) { return false } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepCustom but is not nil && this == nil") } if len(this.Id) != len(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", len(this.Id), len(that1.Id)) } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return fmt.Errorf("Id this[%v](%v) Not Equal that[%v](%v)", i, this.Id[i], i, that1.Id[i]) } } if len(this.Value) != len(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", len(this.Value), len(that1.Value)) } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return fmt.Errorf("Value this[%v](%v) Not Equal that[%v](%v)", i, this.Value[i], i, that1.Value[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Id) != len(that1.Id) { return false } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return false } } if len(this.Value) != len(that1.Value) { return false } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNativeUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNativeUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNativeUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNativeUnion but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNativeUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptStructUnion but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !this.Field3.Equal(that1.Field3) { return false } if !this.Field4.Equal(that1.Field4) { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinEmbeddedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinEmbeddedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinEmbeddedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinEmbeddedStructUnion but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", *this.Field210, *that1.Field210) } } else if this.Field210 != nil { return fmt.Errorf("this.Field210 == nil && that.Field210 != nil") } else if that1.Field210 != nil { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinEmbeddedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(that1.Field200) { return false } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return false } } else if this.Field210 != nil { return false } else if that1.Field210 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinNestedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinNestedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinNestedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinNestedStructUnion but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !this.Field2.Equal(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinNestedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if !this.Field2.Equal(that1.Field2) { return false } if !this.Field3.Equal(that1.Field3) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Tree) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Tree") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Tree but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Tree but is not nil && this == nil") } if !this.Or.Equal(that1.Or) { return fmt.Errorf("Or this(%v) Not Equal that(%v)", this.Or, that1.Or) } if !this.And.Equal(that1.And) { return fmt.Errorf("And this(%v) Not Equal that(%v)", this.And, that1.And) } if !this.Leaf.Equal(that1.Leaf) { return fmt.Errorf("Leaf this(%v) Not Equal that(%v)", this.Leaf, that1.Leaf) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Tree) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Or.Equal(that1.Or) { return false } if !this.And.Equal(that1.And) { return false } if !this.Leaf.Equal(that1.Leaf) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OrBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OrBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OrBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OrBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OrBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AndBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AndBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AndBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AndBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AndBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Leaf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Leaf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Leaf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Leaf but is not nil && this == nil") } if this.Value != that1.Value { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if this.StrValue != that1.StrValue { return fmt.Errorf("StrValue this(%v) Not Equal that(%v)", this.StrValue, that1.StrValue) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Leaf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } if this.StrValue != that1.StrValue { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *DeepTree) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DeepTree") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DeepTree but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DeepTree but is not nil && this == nil") } if !this.Down.Equal(that1.Down) { return fmt.Errorf("Down this(%v) Not Equal that(%v)", this.Down, that1.Down) } if !this.And.Equal(that1.And) { return fmt.Errorf("And this(%v) Not Equal that(%v)", this.And, that1.And) } if !this.Leaf.Equal(that1.Leaf) { return fmt.Errorf("Leaf this(%v) Not Equal that(%v)", this.Leaf, that1.Leaf) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *DeepTree) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Down.Equal(that1.Down) { return false } if !this.And.Equal(that1.And) { return false } if !this.Leaf.Equal(that1.Leaf) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *ADeepBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ADeepBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ADeepBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ADeepBranch but is not nil && this == nil") } if !this.Down.Equal(&that1.Down) { return fmt.Errorf("Down this(%v) Not Equal that(%v)", this.Down, that1.Down) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *ADeepBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Down.Equal(&that1.Down) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AndDeepBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AndDeepBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AndDeepBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AndDeepBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AndDeepBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *DeepLeaf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DeepLeaf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DeepLeaf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DeepLeaf but is not nil && this == nil") } if !this.Tree.Equal(&that1.Tree) { return fmt.Errorf("Tree this(%v) Not Equal that(%v)", this.Tree, that1.Tree) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *DeepLeaf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Tree.Equal(&that1.Tree) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Nil) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Nil") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Nil but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Nil but is not nil && this == nil") } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Nil) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptEnum but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptEnum but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptEnumDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptEnumDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptEnumDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptEnumDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptEnumDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AnotherNinOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AnotherNinOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AnotherNinOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AnotherNinOptEnum but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AnotherNinOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AnotherNinOptEnumDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AnotherNinOptEnumDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AnotherNinOptEnumDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AnotherNinOptEnumDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AnotherNinOptEnumDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Timer) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Timer") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Timer but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Timer but is not nil && this == nil") } if this.Time1 != that1.Time1 { return fmt.Errorf("Time1 this(%v) Not Equal that(%v)", this.Time1, that1.Time1) } if this.Time2 != that1.Time2 { return fmt.Errorf("Time2 this(%v) Not Equal that(%v)", this.Time2, that1.Time2) } if !bytes.Equal(this.Data, that1.Data) { return fmt.Errorf("Data this(%v) Not Equal that(%v)", this.Data, that1.Data) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Timer) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Time1 != that1.Time1 { return false } if this.Time2 != that1.Time2 { return false } if !bytes.Equal(this.Data, that1.Data) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *MyExtendable) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MyExtendable") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MyExtendable but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MyExtendable but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return fmt.Errorf("XXX_InternalExtensions this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k]) } } else { return fmt.Errorf("XXX_InternalExtensions[%v] Not In that", k) } } for k := range thatmap { if _, ok := thismap[k]; !ok { return fmt.Errorf("XXX_InternalExtensions[%v] Not In this", k) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *MyExtendable) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return false } } else { return false } } for k := range thatmap { if _, ok := thismap[k]; !ok { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OtherExtenable) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OtherExtenable") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OtherExtenable but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OtherExtenable but is not nil && this == nil") } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if !this.M.Equal(that1.M) { return fmt.Errorf("M this(%v) Not Equal that(%v)", this.M, that1.M) } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return fmt.Errorf("XXX_InternalExtensions this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k]) } } else { return fmt.Errorf("XXX_InternalExtensions[%v] Not In that", k) } } for k := range thatmap { if _, ok := thismap[k]; !ok { return fmt.Errorf("XXX_InternalExtensions[%v] Not In this", k) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OtherExtenable) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if !this.M.Equal(that1.M) { return false } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return false } } else { return false } } for k := range thatmap { if _, ok := thismap[k]; !ok { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { return fmt.Errorf("EnumField this(%v) Not Equal that(%v)", *this.EnumField, *that1.EnumField) } } else if this.EnumField != nil { return fmt.Errorf("this.EnumField == nil && that.EnumField != nil") } else if that1.EnumField != nil { return fmt.Errorf("EnumField this(%v) Not Equal that(%v)", this.EnumField, that1.EnumField) } if !this.NNM.Equal(that1.NNM) { return fmt.Errorf("NNM this(%v) Not Equal that(%v)", this.NNM, that1.NNM) } if !this.NM.Equal(that1.NM) { return fmt.Errorf("NM this(%v) Not Equal that(%v)", this.NM, that1.NM) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { return false } } else if this.EnumField != nil { return false } else if that1.EnumField != nil { return false } if !this.NNM.Equal(that1.NNM) { return false } if !this.NM.Equal(that1.NM) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition_NestedMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition_NestedMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition_NestedMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition_NestedMessage but is not nil && this == nil") } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { return fmt.Errorf("NestedField1 this(%v) Not Equal that(%v)", *this.NestedField1, *that1.NestedField1) } } else if this.NestedField1 != nil { return fmt.Errorf("this.NestedField1 == nil && that.NestedField1 != nil") } else if that1.NestedField1 != nil { return fmt.Errorf("NestedField1 this(%v) Not Equal that(%v)", this.NestedField1, that1.NestedField1) } if !this.NNM.Equal(that1.NNM) { return fmt.Errorf("NNM this(%v) Not Equal that(%v)", this.NNM, that1.NNM) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition_NestedMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { return false } } else if this.NestedField1 != nil { return false } else if that1.NestedField1 != nil { return false } if !this.NNM.Equal(that1.NNM) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition_NestedMessage_NestedNestedMsg") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition_NestedMessage_NestedNestedMsg but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition_NestedMessage_NestedNestedMsg but is not nil && this == nil") } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { return fmt.Errorf("NestedNestedField1 this(%v) Not Equal that(%v)", *this.NestedNestedField1, *that1.NestedNestedField1) } } else if this.NestedNestedField1 != nil { return fmt.Errorf("this.NestedNestedField1 == nil && that.NestedNestedField1 != nil") } else if that1.NestedNestedField1 != nil { return fmt.Errorf("NestedNestedField1 this(%v) Not Equal that(%v)", this.NestedNestedField1, that1.NestedNestedField1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { return false } } else if this.NestedNestedField1 != nil { return false } else if that1.NestedNestedField1 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedScope) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedScope") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedScope but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedScope but is not nil && this == nil") } if !this.A.Equal(that1.A) { return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A) } if this.B != nil && that1.B != nil { if *this.B != *that1.B { return fmt.Errorf("B this(%v) Not Equal that(%v)", *this.B, *that1.B) } } else if this.B != nil { return fmt.Errorf("this.B == nil && that.B != nil") } else if that1.B != nil { return fmt.Errorf("B this(%v) Not Equal that(%v)", this.B, that1.B) } if !this.C.Equal(that1.C) { return fmt.Errorf("C this(%v) Not Equal that(%v)", this.C, that1.C) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedScope) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.A.Equal(that1.A) { return false } if this.B != nil && that1.B != nil { if *this.B != *that1.B { return false } } else if this.B != nil { return false } else if that1.B != nil { return false } if !this.C.Equal(that1.C) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNativeDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNativeDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNativeDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNativeDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", *this.Field8, *that1.Field8) } } else if this.Field8 != nil { return fmt.Errorf("this.Field8 == nil && that.Field8 != nil") } else if that1.Field8 != nil { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", *this.Field9, *that1.Field9) } } else if this.Field9 != nil { return fmt.Errorf("this.Field9 == nil && that.Field9 != nil") } else if that1.Field9 != nil { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", *this.Field10, *that1.Field10) } } else if this.Field10 != nil { return fmt.Errorf("this.Field10 == nil && that.Field10 != nil") } else if that1.Field10 != nil { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", *this.Field11, *that1.Field11) } } else if this.Field11 != nil { return fmt.Errorf("this.Field11 == nil && that.Field11 != nil") } else if that1.Field11 != nil { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", *this.Field12, *that1.Field12) } } else if this.Field12 != nil { return fmt.Errorf("this.Field12 == nil && that.Field12 != nil") } else if that1.Field12 != nil { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNativeDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return false } } else if this.Field8 != nil { return false } else if that1.Field8 != nil { return false } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return false } } else if this.Field9 != nil { return false } else if that1.Field9 != nil { return false } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return false } } else if this.Field10 != nil { return false } else if that1.Field10 != nil { return false } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return false } } else if this.Field11 != nil { return false } else if that1.Field11 != nil { return false } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return false } } else if this.Field12 != nil { return false } else if that1.Field12 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomContainer) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomContainer") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomContainer but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomContainer but is not nil && this == nil") } if !this.CustomStruct.Equal(&that1.CustomStruct) { return fmt.Errorf("CustomStruct this(%v) Not Equal that(%v)", this.CustomStruct, that1.CustomStruct) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomContainer) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.CustomStruct.Equal(&that1.CustomStruct) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNidOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNidOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNidOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNidOptNative but is not nil && this == nil") } if this.FieldA != that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if this.FieldC != that1.FieldC { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if this.FieldD != that1.FieldD { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", this.FieldD, that1.FieldD) } if this.FieldE != that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if this.FieldG != that1.FieldG { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if this.FieldJ != that1.FieldJ { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if this.FieldK != that1.FieldK { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", this.FieldK, that1.FieldK) } if this.FieldL != that1.FieldL { return fmt.Errorf("FieldL this(%v) Not Equal that(%v)", this.FieldL, that1.FieldL) } if this.FieldM != that1.FieldM { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", this.FieldM, that1.FieldM) } if this.FieldN != that1.FieldN { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", this.FieldN, that1.FieldN) } if !bytes.Equal(this.FieldO, that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", this.FieldO, that1.FieldO) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNidOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != that1.FieldA { return false } if this.FieldB != that1.FieldB { return false } if this.FieldC != that1.FieldC { return false } if this.FieldD != that1.FieldD { return false } if this.FieldE != that1.FieldE { return false } if this.FieldF != that1.FieldF { return false } if this.FieldG != that1.FieldG { return false } if this.FieldH != that1.FieldH { return false } if this.FieldI != that1.FieldI { return false } if this.FieldJ != that1.FieldJ { return false } if this.FieldK != that1.FieldK { return false } if this.FieldL != that1.FieldL { return false } if this.FieldM != that1.FieldM { return false } if this.FieldN != that1.FieldN { return false } if !bytes.Equal(this.FieldO, that1.FieldO) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinOptNative but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", *this.FieldC, *that1.FieldC) } } else if this.FieldC != nil { return fmt.Errorf("this.FieldC == nil && that.FieldC != nil") } else if that1.FieldC != nil { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", *this.FieldD, *that1.FieldD) } } else if this.FieldD != nil { return fmt.Errorf("this.FieldD == nil && that.FieldD != nil") } else if that1.FieldD != nil { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", this.FieldD, that1.FieldD) } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", *this.FieldE, *that1.FieldE) } } else if this.FieldE != nil { return fmt.Errorf("this.FieldE == nil && that.FieldE != nil") } else if that1.FieldE != nil { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", *this.FieldF, *that1.FieldF) } } else if this.FieldF != nil { return fmt.Errorf("this.FieldF == nil && that.FieldF != nil") } else if that1.FieldF != nil { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", *this.FieldG, *that1.FieldG) } } else if this.FieldG != nil { return fmt.Errorf("this.FieldG == nil && that.FieldG != nil") } else if that1.FieldG != nil { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", *this.FieldH, *that1.FieldH) } } else if this.FieldH != nil { return fmt.Errorf("this.FieldH == nil && that.FieldH != nil") } else if that1.FieldH != nil { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", *this.FieldI, *that1.FieldI) } } else if this.FieldI != nil { return fmt.Errorf("this.FieldI == nil && that.FieldI != nil") } else if that1.FieldI != nil { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", *this.FieldJ, *that1.FieldJ) } } else if this.FieldJ != nil { return fmt.Errorf("this.FieldJ == nil && that.FieldJ != nil") } else if that1.FieldJ != nil { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", *this.FieldK, *that1.FieldK) } } else if this.FieldK != nil { return fmt.Errorf("this.FieldK == nil && that.FieldK != nil") } else if that1.FieldK != nil { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", this.FieldK, that1.FieldK) } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { return fmt.Errorf("FielL this(%v) Not Equal that(%v)", *this.FielL, *that1.FielL) } } else if this.FielL != nil { return fmt.Errorf("this.FielL == nil && that.FielL != nil") } else if that1.FielL != nil { return fmt.Errorf("FielL this(%v) Not Equal that(%v)", this.FielL, that1.FielL) } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", *this.FieldM, *that1.FieldM) } } else if this.FieldM != nil { return fmt.Errorf("this.FieldM == nil && that.FieldM != nil") } else if that1.FieldM != nil { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", this.FieldM, that1.FieldM) } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", *this.FieldN, *that1.FieldN) } } else if this.FieldN != nil { return fmt.Errorf("this.FieldN == nil && that.FieldN != nil") } else if that1.FieldN != nil { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", this.FieldN, that1.FieldN) } if !bytes.Equal(this.FieldO, that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", this.FieldO, that1.FieldO) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { return false } } else if this.FieldC != nil { return false } else if that1.FieldC != nil { return false } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { return false } } else if this.FieldD != nil { return false } else if that1.FieldD != nil { return false } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return false } } else if this.FieldE != nil { return false } else if that1.FieldE != nil { return false } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return false } } else if this.FieldF != nil { return false } else if that1.FieldF != nil { return false } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { return false } } else if this.FieldG != nil { return false } else if that1.FieldG != nil { return false } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return false } } else if this.FieldH != nil { return false } else if that1.FieldH != nil { return false } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return false } } else if this.FieldI != nil { return false } else if that1.FieldI != nil { return false } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { return false } } else if this.FieldJ != nil { return false } else if that1.FieldJ != nil { return false } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { return false } } else if this.FieldK != nil { return false } else if that1.FieldK != nil { return false } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { return false } } else if this.FielL != nil { return false } else if that1.FielL != nil { return false } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { return false } } else if this.FieldM != nil { return false } else if that1.FieldM != nil { return false } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { return false } } else if this.FieldN != nil { return false } else if that1.FieldN != nil { return false } if !bytes.Equal(this.FieldO, that1.FieldO) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinRepNative but is not nil && this == nil") } if len(this.FieldA) != len(that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", len(this.FieldA), len(that1.FieldA)) } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { return fmt.Errorf("FieldA this[%v](%v) Not Equal that[%v](%v)", i, this.FieldA[i], i, that1.FieldA[i]) } } if len(this.FieldB) != len(that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", len(this.FieldB), len(that1.FieldB)) } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return fmt.Errorf("FieldB this[%v](%v) Not Equal that[%v](%v)", i, this.FieldB[i], i, that1.FieldB[i]) } } if len(this.FieldC) != len(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", len(this.FieldC), len(that1.FieldC)) } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { return fmt.Errorf("FieldC this[%v](%v) Not Equal that[%v](%v)", i, this.FieldC[i], i, that1.FieldC[i]) } } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if len(this.FieldE) != len(that1.FieldE) { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", len(this.FieldE), len(that1.FieldE)) } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { return fmt.Errorf("FieldE this[%v](%v) Not Equal that[%v](%v)", i, this.FieldE[i], i, that1.FieldE[i]) } } if len(this.FieldF) != len(that1.FieldF) { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", len(this.FieldF), len(that1.FieldF)) } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { return fmt.Errorf("FieldF this[%v](%v) Not Equal that[%v](%v)", i, this.FieldF[i], i, that1.FieldF[i]) } } if len(this.FieldG) != len(that1.FieldG) { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", len(this.FieldG), len(that1.FieldG)) } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { return fmt.Errorf("FieldG this[%v](%v) Not Equal that[%v](%v)", i, this.FieldG[i], i, that1.FieldG[i]) } } if len(this.FieldH) != len(that1.FieldH) { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", len(this.FieldH), len(that1.FieldH)) } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { return fmt.Errorf("FieldH this[%v](%v) Not Equal that[%v](%v)", i, this.FieldH[i], i, that1.FieldH[i]) } } if len(this.FieldI) != len(that1.FieldI) { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", len(this.FieldI), len(that1.FieldI)) } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { return fmt.Errorf("FieldI this[%v](%v) Not Equal that[%v](%v)", i, this.FieldI[i], i, that1.FieldI[i]) } } if len(this.FieldJ) != len(that1.FieldJ) { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", len(this.FieldJ), len(that1.FieldJ)) } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { return fmt.Errorf("FieldJ this[%v](%v) Not Equal that[%v](%v)", i, this.FieldJ[i], i, that1.FieldJ[i]) } } if len(this.FieldK) != len(that1.FieldK) { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", len(this.FieldK), len(that1.FieldK)) } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { return fmt.Errorf("FieldK this[%v](%v) Not Equal that[%v](%v)", i, this.FieldK[i], i, that1.FieldK[i]) } } if len(this.FieldL) != len(that1.FieldL) { return fmt.Errorf("FieldL this(%v) Not Equal that(%v)", len(this.FieldL), len(that1.FieldL)) } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { return fmt.Errorf("FieldL this[%v](%v) Not Equal that[%v](%v)", i, this.FieldL[i], i, that1.FieldL[i]) } } if len(this.FieldM) != len(that1.FieldM) { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", len(this.FieldM), len(that1.FieldM)) } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { return fmt.Errorf("FieldM this[%v](%v) Not Equal that[%v](%v)", i, this.FieldM[i], i, that1.FieldM[i]) } } if len(this.FieldN) != len(that1.FieldN) { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", len(this.FieldN), len(that1.FieldN)) } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { return fmt.Errorf("FieldN this[%v](%v) Not Equal that[%v](%v)", i, this.FieldN[i], i, that1.FieldN[i]) } } if len(this.FieldO) != len(that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", len(this.FieldO), len(that1.FieldO)) } for i := range this.FieldO { if !bytes.Equal(this.FieldO[i], that1.FieldO[i]) { return fmt.Errorf("FieldO this[%v](%v) Not Equal that[%v](%v)", i, this.FieldO[i], i, that1.FieldO[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.FieldA) != len(that1.FieldA) { return false } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { return false } } if len(this.FieldB) != len(that1.FieldB) { return false } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return false } } if len(this.FieldC) != len(that1.FieldC) { return false } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { return false } } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { return false } } if len(this.FieldE) != len(that1.FieldE) { return false } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { return false } } if len(this.FieldF) != len(that1.FieldF) { return false } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { return false } } if len(this.FieldG) != len(that1.FieldG) { return false } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { return false } } if len(this.FieldH) != len(that1.FieldH) { return false } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { return false } } if len(this.FieldI) != len(that1.FieldI) { return false } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { return false } } if len(this.FieldJ) != len(that1.FieldJ) { return false } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { return false } } if len(this.FieldK) != len(that1.FieldK) { return false } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { return false } } if len(this.FieldL) != len(that1.FieldL) { return false } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { return false } } if len(this.FieldM) != len(that1.FieldM) { return false } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { return false } } if len(this.FieldN) != len(that1.FieldN) { return false } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { return false } } if len(this.FieldO) != len(that1.FieldO) { return false } for i := range this.FieldO { if !bytes.Equal(this.FieldO[i], that1.FieldO[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinStruct but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if !this.FieldC.Equal(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", *this.FieldE, *that1.FieldE) } } else if this.FieldE != nil { return fmt.Errorf("this.FieldE == nil && that.FieldE != nil") } else if that1.FieldE != nil { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", *this.FieldF, *that1.FieldF) } } else if this.FieldF != nil { return fmt.Errorf("this.FieldF == nil && that.FieldF != nil") } else if that1.FieldF != nil { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if !this.FieldG.Equal(that1.FieldG) { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", *this.FieldH, *that1.FieldH) } } else if this.FieldH != nil { return fmt.Errorf("this.FieldH == nil && that.FieldH != nil") } else if that1.FieldH != nil { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", *this.FieldI, *that1.FieldI) } } else if this.FieldI != nil { return fmt.Errorf("this.FieldI == nil && that.FieldI != nil") } else if that1.FieldI != nil { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if !bytes.Equal(this.FieldJ, that1.FieldJ) { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if !this.FieldC.Equal(that1.FieldC) { return false } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return false } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return false } } else if this.FieldE != nil { return false } else if that1.FieldE != nil { return false } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return false } } else if this.FieldF != nil { return false } else if that1.FieldF != nil { return false } if !this.FieldG.Equal(that1.FieldG) { return false } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return false } } else if this.FieldH != nil { return false } else if that1.FieldH != nil { return false } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return false } } else if this.FieldI != nil { return false } else if that1.FieldI != nil { return false } if !bytes.Equal(this.FieldJ, that1.FieldJ) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameCustomType but is not nil && this == nil") } if that1.FieldA == nil { if this.FieldA != nil { return fmt.Errorf("this.FieldA != nil && that1.FieldA == nil") } } else if !this.FieldA.Equal(*that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if that1.FieldB == nil { if this.FieldB != nil { return fmt.Errorf("this.FieldB != nil && that1.FieldB == nil") } } else if !this.FieldB.Equal(*that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if len(this.FieldC) != len(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", len(this.FieldC), len(that1.FieldC)) } for i := range this.FieldC { if !this.FieldC[i].Equal(that1.FieldC[i]) { return fmt.Errorf("FieldC this[%v](%v) Not Equal that[%v](%v)", i, this.FieldC[i], i, that1.FieldC[i]) } } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.FieldA == nil { if this.FieldA != nil { return false } } else if !this.FieldA.Equal(*that1.FieldA) { return false } if that1.FieldB == nil { if this.FieldB != nil { return false } } else if !this.FieldB.Equal(*that1.FieldB) { return false } if len(this.FieldC) != len(that1.FieldC) { return false } for i := range this.FieldC { if !this.FieldC[i].Equal(that1.FieldC[i]) { return false } } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinEmbeddedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinEmbeddedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinEmbeddedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinEmbeddedStructUnion but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.FieldA.Equal(that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinEmbeddedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.FieldA.Equal(that1.FieldA) { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameEnum but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if len(this.FieldB) != len(that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", len(this.FieldB), len(that1.FieldB)) } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return fmt.Errorf("FieldB this[%v](%v) Not Equal that[%v](%v)", i, this.FieldB[i], i, that1.FieldB[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if len(this.FieldB) != len(that1.FieldB) { return false } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NoExtensionsMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NoExtensionsMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NoExtensionsMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NoExtensionsMap but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return fmt.Errorf("XXX_extensions this(%v) Not Equal that(%v)", this.XXX_extensions, that1.XXX_extensions) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NoExtensionsMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Unrecognized) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Unrecognized") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Unrecognized but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Unrecognized but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *Unrecognized) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *UnrecognizedWithInner) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithInner") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithInner but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithInner but is not nil && this == nil") } if len(this.Embedded) != len(that1.Embedded) { return fmt.Errorf("Embedded this(%v) Not Equal that(%v)", len(this.Embedded), len(that1.Embedded)) } for i := range this.Embedded { if !this.Embedded[i].Equal(that1.Embedded[i]) { return fmt.Errorf("Embedded this[%v](%v) Not Equal that[%v](%v)", i, this.Embedded[i], i, that1.Embedded[i]) } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *UnrecognizedWithInner) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Embedded) != len(that1.Embedded) { return false } for i := range this.Embedded { if !this.Embedded[i].Equal(that1.Embedded[i]) { return false } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *UnrecognizedWithInner_Inner) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithInner_Inner") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithInner_Inner but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithInner_Inner but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *UnrecognizedWithInner_Inner) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *UnrecognizedWithEmbed) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithEmbed") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithEmbed but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithEmbed but is not nil && this == nil") } if !this.UnrecognizedWithEmbed_Embedded.Equal(&that1.UnrecognizedWithEmbed_Embedded) { return fmt.Errorf("UnrecognizedWithEmbed_Embedded this(%v) Not Equal that(%v)", this.UnrecognizedWithEmbed_Embedded, that1.UnrecognizedWithEmbed_Embedded) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *UnrecognizedWithEmbed) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.UnrecognizedWithEmbed_Embedded.Equal(&that1.UnrecognizedWithEmbed_Embedded) { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *UnrecognizedWithEmbed_Embedded) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithEmbed_Embedded") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithEmbed_Embedded but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithEmbed_Embedded but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *UnrecognizedWithEmbed_Embedded) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *Node) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Node") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Node but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Node but is not nil && this == nil") } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { return fmt.Errorf("Label this(%v) Not Equal that(%v)", *this.Label, *that1.Label) } } else if this.Label != nil { return fmt.Errorf("this.Label == nil && that.Label != nil") } else if that1.Label != nil { return fmt.Errorf("Label this(%v) Not Equal that(%v)", this.Label, that1.Label) } if len(this.Children) != len(that1.Children) { return fmt.Errorf("Children this(%v) Not Equal that(%v)", len(this.Children), len(that1.Children)) } for i := range this.Children { if !this.Children[i].Equal(that1.Children[i]) { return fmt.Errorf("Children this[%v](%v) Not Equal that[%v](%v)", i, this.Children[i], i, that1.Children[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Node) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { return false } } else if this.Label != nil { return false } else if that1.Label != nil { return false } if len(this.Children) != len(that1.Children) { return false } for i := range this.Children { if !this.Children[i].Equal(that1.Children[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NonByteCustomType but is not nil && this == nil") } if that1.Field1 == nil { if this.Field1 != nil { return fmt.Errorf("this.Field1 != nil && that1.Field1 == nil") } } else if !this.Field1.Equal(*that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Field1 == nil { if this.Field1 != nil { return false } } else if !this.Field1.Equal(*that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptNonByteCustomType but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNonByteCustomType but is not nil && this == nil") } if that1.Field1 == nil { if this.Field1 != nil { return fmt.Errorf("this.Field1 != nil && that1.Field1 == nil") } } else if !this.Field1.Equal(*that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Field1 == nil { if this.Field1 != nil { return false } } else if !this.Field1.Equal(*that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepNonByteCustomType but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepNonByteCustomType but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *ProtoType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ProtoType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ProtoType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ProtoType but is not nil && this == nil") } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *ProtoType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type NidOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() float64 GetField2() float32 GetField3() int32 GetField4() int64 GetField5() uint32 GetField6() uint64 GetField7() int32 GetField8() int64 GetField9() uint32 GetField10() int32 GetField11() uint64 GetField12() int64 GetField13() bool GetField14() string GetField15() []byte } func (this *NidOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptNativeFromFace(this) } func (this *NidOptNative) GetField1() float64 { return this.Field1 } func (this *NidOptNative) GetField2() float32 { return this.Field2 } func (this *NidOptNative) GetField3() int32 { return this.Field3 } func (this *NidOptNative) GetField4() int64 { return this.Field4 } func (this *NidOptNative) GetField5() uint32 { return this.Field5 } func (this *NidOptNative) GetField6() uint64 { return this.Field6 } func (this *NidOptNative) GetField7() int32 { return this.Field7 } func (this *NidOptNative) GetField8() int64 { return this.Field8 } func (this *NidOptNative) GetField9() uint32 { return this.Field9 } func (this *NidOptNative) GetField10() int32 { return this.Field10 } func (this *NidOptNative) GetField11() uint64 { return this.Field11 } func (this *NidOptNative) GetField12() int64 { return this.Field12 } func (this *NidOptNative) GetField13() bool { return this.Field13 } func (this *NidOptNative) GetField14() string { return this.Field14 } func (this *NidOptNative) GetField15() []byte { return this.Field15 } func NewNidOptNativeFromFace(that NidOptNativeFace) *NidOptNative { this := &NidOptNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *int32 GetField4() *int64 GetField5() *uint32 GetField6() *uint64 GetField7() *int32 GetField8() *int64 GetField9() *uint32 GetField10() *int32 GetField11() *uint64 GetField12() *int64 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNativeFromFace(this) } func (this *NinOptNative) GetField1() *float64 { return this.Field1 } func (this *NinOptNative) GetField2() *float32 { return this.Field2 } func (this *NinOptNative) GetField3() *int32 { return this.Field3 } func (this *NinOptNative) GetField4() *int64 { return this.Field4 } func (this *NinOptNative) GetField5() *uint32 { return this.Field5 } func (this *NinOptNative) GetField6() *uint64 { return this.Field6 } func (this *NinOptNative) GetField7() *int32 { return this.Field7 } func (this *NinOptNative) GetField8() *int64 { return this.Field8 } func (this *NinOptNative) GetField9() *uint32 { return this.Field9 } func (this *NinOptNative) GetField10() *int32 { return this.Field10 } func (this *NinOptNative) GetField11() *uint64 { return this.Field11 } func (this *NinOptNative) GetField12() *int64 { return this.Field12 } func (this *NinOptNative) GetField13() *bool { return this.Field13 } func (this *NinOptNative) GetField14() *string { return this.Field14 } func (this *NinOptNative) GetField15() []byte { return this.Field15 } func NewNinOptNativeFromFace(that NinOptNativeFace) *NinOptNative { this := &NinOptNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NidRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepNativeFromFace(this) } func (this *NidRepNative) GetField1() []float64 { return this.Field1 } func (this *NidRepNative) GetField2() []float32 { return this.Field2 } func (this *NidRepNative) GetField3() []int32 { return this.Field3 } func (this *NidRepNative) GetField4() []int64 { return this.Field4 } func (this *NidRepNative) GetField5() []uint32 { return this.Field5 } func (this *NidRepNative) GetField6() []uint64 { return this.Field6 } func (this *NidRepNative) GetField7() []int32 { return this.Field7 } func (this *NidRepNative) GetField8() []int64 { return this.Field8 } func (this *NidRepNative) GetField9() []uint32 { return this.Field9 } func (this *NidRepNative) GetField10() []int32 { return this.Field10 } func (this *NidRepNative) GetField11() []uint64 { return this.Field11 } func (this *NidRepNative) GetField12() []int64 { return this.Field12 } func (this *NidRepNative) GetField13() []bool { return this.Field13 } func (this *NidRepNative) GetField14() []string { return this.Field14 } func (this *NidRepNative) GetField15() [][]byte { return this.Field15 } func NewNidRepNativeFromFace(that NidRepNativeFace) *NidRepNative { this := &NidRepNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NinRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepNativeFromFace(this) } func (this *NinRepNative) GetField1() []float64 { return this.Field1 } func (this *NinRepNative) GetField2() []float32 { return this.Field2 } func (this *NinRepNative) GetField3() []int32 { return this.Field3 } func (this *NinRepNative) GetField4() []int64 { return this.Field4 } func (this *NinRepNative) GetField5() []uint32 { return this.Field5 } func (this *NinRepNative) GetField6() []uint64 { return this.Field6 } func (this *NinRepNative) GetField7() []int32 { return this.Field7 } func (this *NinRepNative) GetField8() []int64 { return this.Field8 } func (this *NinRepNative) GetField9() []uint32 { return this.Field9 } func (this *NinRepNative) GetField10() []int32 { return this.Field10 } func (this *NinRepNative) GetField11() []uint64 { return this.Field11 } func (this *NinRepNative) GetField12() []int64 { return this.Field12 } func (this *NinRepNative) GetField13() []bool { return this.Field13 } func (this *NinRepNative) GetField14() []string { return this.Field14 } func (this *NinRepNative) GetField15() [][]byte { return this.Field15 } func NewNinRepNativeFromFace(that NinRepNativeFace) *NinRepNative { this := &NinRepNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepPackedNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool } func (this *NidRepPackedNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepPackedNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepPackedNativeFromFace(this) } func (this *NidRepPackedNative) GetField1() []float64 { return this.Field1 } func (this *NidRepPackedNative) GetField2() []float32 { return this.Field2 } func (this *NidRepPackedNative) GetField3() []int32 { return this.Field3 } func (this *NidRepPackedNative) GetField4() []int64 { return this.Field4 } func (this *NidRepPackedNative) GetField5() []uint32 { return this.Field5 } func (this *NidRepPackedNative) GetField6() []uint64 { return this.Field6 } func (this *NidRepPackedNative) GetField7() []int32 { return this.Field7 } func (this *NidRepPackedNative) GetField8() []int64 { return this.Field8 } func (this *NidRepPackedNative) GetField9() []uint32 { return this.Field9 } func (this *NidRepPackedNative) GetField10() []int32 { return this.Field10 } func (this *NidRepPackedNative) GetField11() []uint64 { return this.Field11 } func (this *NidRepPackedNative) GetField12() []int64 { return this.Field12 } func (this *NidRepPackedNative) GetField13() []bool { return this.Field13 } func NewNidRepPackedNativeFromFace(that NidRepPackedNativeFace) *NidRepPackedNative { this := &NidRepPackedNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() return this } type NinRepPackedNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool } func (this *NinRepPackedNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepPackedNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepPackedNativeFromFace(this) } func (this *NinRepPackedNative) GetField1() []float64 { return this.Field1 } func (this *NinRepPackedNative) GetField2() []float32 { return this.Field2 } func (this *NinRepPackedNative) GetField3() []int32 { return this.Field3 } func (this *NinRepPackedNative) GetField4() []int64 { return this.Field4 } func (this *NinRepPackedNative) GetField5() []uint32 { return this.Field5 } func (this *NinRepPackedNative) GetField6() []uint64 { return this.Field6 } func (this *NinRepPackedNative) GetField7() []int32 { return this.Field7 } func (this *NinRepPackedNative) GetField8() []int64 { return this.Field8 } func (this *NinRepPackedNative) GetField9() []uint32 { return this.Field9 } func (this *NinRepPackedNative) GetField10() []int32 { return this.Field10 } func (this *NinRepPackedNative) GetField11() []uint64 { return this.Field11 } func (this *NinRepPackedNative) GetField12() []int64 { return this.Field12 } func (this *NinRepPackedNative) GetField13() []bool { return this.Field13 } func NewNinRepPackedNativeFromFace(that NinRepPackedNativeFace) *NinRepPackedNative { this := &NinRepPackedNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() return this } type NidOptStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() float64 GetField2() float32 GetField3() NidOptNative GetField4() NinOptNative GetField6() uint64 GetField7() int32 GetField8() NidOptNative GetField13() bool GetField14() string GetField15() []byte } func (this *NidOptStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptStructFromFace(this) } func (this *NidOptStruct) GetField1() float64 { return this.Field1 } func (this *NidOptStruct) GetField2() float32 { return this.Field2 } func (this *NidOptStruct) GetField3() NidOptNative { return this.Field3 } func (this *NidOptStruct) GetField4() NinOptNative { return this.Field4 } func (this *NidOptStruct) GetField6() uint64 { return this.Field6 } func (this *NidOptStruct) GetField7() int32 { return this.Field7 } func (this *NidOptStruct) GetField8() NidOptNative { return this.Field8 } func (this *NidOptStruct) GetField13() bool { return this.Field13 } func (this *NidOptStruct) GetField14() string { return this.Field14 } func (this *NidOptStruct) GetField15() []byte { return this.Field15 } func NewNidOptStructFromFace(that NidOptStructFace) *NidOptStruct { this := &NidOptStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *NidOptNative GetField4() *NinOptNative GetField6() *uint64 GetField7() *int32 GetField8() *NidOptNative GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptStructFromFace(this) } func (this *NinOptStruct) GetField1() *float64 { return this.Field1 } func (this *NinOptStruct) GetField2() *float32 { return this.Field2 } func (this *NinOptStruct) GetField3() *NidOptNative { return this.Field3 } func (this *NinOptStruct) GetField4() *NinOptNative { return this.Field4 } func (this *NinOptStruct) GetField6() *uint64 { return this.Field6 } func (this *NinOptStruct) GetField7() *int32 { return this.Field7 } func (this *NinOptStruct) GetField8() *NidOptNative { return this.Field8 } func (this *NinOptStruct) GetField13() *bool { return this.Field13 } func (this *NinOptStruct) GetField14() *string { return this.Field14 } func (this *NinOptStruct) GetField15() []byte { return this.Field15 } func NewNinOptStructFromFace(that NinOptStructFace) *NinOptStruct { this := &NinOptStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []NidOptNative GetField4() []NinOptNative GetField6() []uint64 GetField7() []int32 GetField8() []NidOptNative GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NidRepStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepStructFromFace(this) } func (this *NidRepStruct) GetField1() []float64 { return this.Field1 } func (this *NidRepStruct) GetField2() []float32 { return this.Field2 } func (this *NidRepStruct) GetField3() []NidOptNative { return this.Field3 } func (this *NidRepStruct) GetField4() []NinOptNative { return this.Field4 } func (this *NidRepStruct) GetField6() []uint64 { return this.Field6 } func (this *NidRepStruct) GetField7() []int32 { return this.Field7 } func (this *NidRepStruct) GetField8() []NidOptNative { return this.Field8 } func (this *NidRepStruct) GetField13() []bool { return this.Field13 } func (this *NidRepStruct) GetField14() []string { return this.Field14 } func (this *NidRepStruct) GetField15() [][]byte { return this.Field15 } func NewNidRepStructFromFace(that NidRepStructFace) *NidRepStruct { this := &NidRepStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinRepStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []*NidOptNative GetField4() []*NinOptNative GetField6() []uint64 GetField7() []int32 GetField8() []*NidOptNative GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NinRepStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepStructFromFace(this) } func (this *NinRepStruct) GetField1() []float64 { return this.Field1 } func (this *NinRepStruct) GetField2() []float32 { return this.Field2 } func (this *NinRepStruct) GetField3() []*NidOptNative { return this.Field3 } func (this *NinRepStruct) GetField4() []*NinOptNative { return this.Field4 } func (this *NinRepStruct) GetField6() []uint64 { return this.Field6 } func (this *NinRepStruct) GetField7() []int32 { return this.Field7 } func (this *NinRepStruct) GetField8() []*NidOptNative { return this.Field8 } func (this *NinRepStruct) GetField13() []bool { return this.Field13 } func (this *NinRepStruct) GetField14() []string { return this.Field14 } func (this *NinRepStruct) GetField15() [][]byte { return this.Field15 } func NewNinRepStructFromFace(that NinRepStructFace) *NinRepStruct { this := &NinRepStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidEmbeddedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() NidOptNative GetField210() bool } func (this *NidEmbeddedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidEmbeddedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidEmbeddedStructFromFace(this) } func (this *NidEmbeddedStruct) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NidEmbeddedStruct) GetField200() NidOptNative { return this.Field200 } func (this *NidEmbeddedStruct) GetField210() bool { return this.Field210 } func NewNidEmbeddedStructFromFace(that NidEmbeddedStructFace) *NidEmbeddedStruct { this := &NidEmbeddedStruct{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NinEmbeddedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() *NidOptNative GetField210() *bool } func (this *NinEmbeddedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinEmbeddedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinEmbeddedStructFromFace(this) } func (this *NinEmbeddedStruct) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NinEmbeddedStruct) GetField200() *NidOptNative { return this.Field200 } func (this *NinEmbeddedStruct) GetField210() *bool { return this.Field210 } func NewNinEmbeddedStructFromFace(that NinEmbeddedStructFace) *NinEmbeddedStruct { this := &NinEmbeddedStruct{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NidNestedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() NidOptStruct GetField2() []NidRepStruct } func (this *NidNestedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidNestedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidNestedStructFromFace(this) } func (this *NidNestedStruct) GetField1() NidOptStruct { return this.Field1 } func (this *NidNestedStruct) GetField2() []NidRepStruct { return this.Field2 } func NewNidNestedStructFromFace(that NidNestedStructFace) *NidNestedStruct { this := &NidNestedStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() return this } type NinNestedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *NinOptStruct GetField2() []*NinRepStruct } func (this *NinNestedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinNestedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinNestedStructFromFace(this) } func (this *NinNestedStruct) GetField1() *NinOptStruct { return this.Field1 } func (this *NinNestedStruct) GetField2() []*NinRepStruct { return this.Field2 } func NewNinNestedStructFromFace(that NinNestedStructFace) *NinNestedStruct { this := &NinNestedStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() return this } type NidOptCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() Uuid GetValue() github_com_gogo_protobuf_test_custom.Uint128 } func (this *NidOptCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptCustomFromFace(this) } func (this *NidOptCustom) GetId() Uuid { return this.Id } func (this *NidOptCustom) GetValue() github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNidOptCustomFromFace(that NidOptCustomFace) *NidOptCustom { this := &NidOptCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type CustomDashFace interface { Proto() github_com_gogo_protobuf_proto.Message GetValue() *github_com_gogo_protobuf_test_custom_dash_type.Bytes } func (this *CustomDash) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomDash) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomDashFromFace(this) } func (this *CustomDash) GetValue() *github_com_gogo_protobuf_test_custom_dash_type.Bytes { return this.Value } func NewCustomDashFromFace(that CustomDashFace) *CustomDash { this := &CustomDash{} this.Value = that.GetValue() return this } type NinOptCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() *Uuid GetValue() *github_com_gogo_protobuf_test_custom.Uint128 } func (this *NinOptCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptCustomFromFace(this) } func (this *NinOptCustom) GetId() *Uuid { return this.Id } func (this *NinOptCustom) GetValue() *github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNinOptCustomFromFace(that NinOptCustomFace) *NinOptCustom { this := &NinOptCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NidRepCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() []Uuid GetValue() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *NidRepCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepCustomFromFace(this) } func (this *NidRepCustom) GetId() []Uuid { return this.Id } func (this *NidRepCustom) GetValue() []github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNidRepCustomFromFace(that NidRepCustomFace) *NidRepCustom { this := &NidRepCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NinRepCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() []Uuid GetValue() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *NinRepCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepCustomFromFace(this) } func (this *NinRepCustom) GetId() []Uuid { return this.Id } func (this *NinRepCustom) GetValue() []github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNinRepCustomFromFace(that NinRepCustomFace) *NinRepCustom { this := &NinRepCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NinOptNativeUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *int32 GetField4() *int64 GetField5() *uint32 GetField6() *uint64 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptNativeUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNativeUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNativeUnionFromFace(this) } func (this *NinOptNativeUnion) GetField1() *float64 { return this.Field1 } func (this *NinOptNativeUnion) GetField2() *float32 { return this.Field2 } func (this *NinOptNativeUnion) GetField3() *int32 { return this.Field3 } func (this *NinOptNativeUnion) GetField4() *int64 { return this.Field4 } func (this *NinOptNativeUnion) GetField5() *uint32 { return this.Field5 } func (this *NinOptNativeUnion) GetField6() *uint64 { return this.Field6 } func (this *NinOptNativeUnion) GetField13() *bool { return this.Field13 } func (this *NinOptNativeUnion) GetField14() *string { return this.Field14 } func (this *NinOptNativeUnion) GetField15() []byte { return this.Field15 } func NewNinOptNativeUnionFromFace(that NinOptNativeUnionFace) *NinOptNativeUnion { this := &NinOptNativeUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *NidOptNative GetField4() *NinOptNative GetField6() *uint64 GetField7() *int32 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptStructUnionFromFace(this) } func (this *NinOptStructUnion) GetField1() *float64 { return this.Field1 } func (this *NinOptStructUnion) GetField2() *float32 { return this.Field2 } func (this *NinOptStructUnion) GetField3() *NidOptNative { return this.Field3 } func (this *NinOptStructUnion) GetField4() *NinOptNative { return this.Field4 } func (this *NinOptStructUnion) GetField6() *uint64 { return this.Field6 } func (this *NinOptStructUnion) GetField7() *int32 { return this.Field7 } func (this *NinOptStructUnion) GetField13() *bool { return this.Field13 } func (this *NinOptStructUnion) GetField14() *string { return this.Field14 } func (this *NinOptStructUnion) GetField15() []byte { return this.Field15 } func NewNinOptStructUnionFromFace(that NinOptStructUnionFace) *NinOptStructUnion { this := &NinOptStructUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinEmbeddedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() *NinOptNative GetField210() *bool } func (this *NinEmbeddedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinEmbeddedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinEmbeddedStructUnionFromFace(this) } func (this *NinEmbeddedStructUnion) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NinEmbeddedStructUnion) GetField200() *NinOptNative { return this.Field200 } func (this *NinEmbeddedStructUnion) GetField210() *bool { return this.Field210 } func NewNinEmbeddedStructUnionFromFace(that NinEmbeddedStructUnionFace) *NinEmbeddedStructUnion { this := &NinEmbeddedStructUnion{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NinNestedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *NinOptNativeUnion GetField2() *NinOptStructUnion GetField3() *NinEmbeddedStructUnion } func (this *NinNestedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinNestedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinNestedStructUnionFromFace(this) } func (this *NinNestedStructUnion) GetField1() *NinOptNativeUnion { return this.Field1 } func (this *NinNestedStructUnion) GetField2() *NinOptStructUnion { return this.Field2 } func (this *NinNestedStructUnion) GetField3() *NinEmbeddedStructUnion { return this.Field3 } func NewNinNestedStructUnionFromFace(that NinNestedStructUnionFace) *NinNestedStructUnion { this := &NinNestedStructUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type TreeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetOr() *OrBranch GetAnd() *AndBranch GetLeaf() *Leaf } func (this *Tree) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Tree) TestProto() github_com_gogo_protobuf_proto.Message { return NewTreeFromFace(this) } func (this *Tree) GetOr() *OrBranch { return this.Or } func (this *Tree) GetAnd() *AndBranch { return this.And } func (this *Tree) GetLeaf() *Leaf { return this.Leaf } func NewTreeFromFace(that TreeFace) *Tree { this := &Tree{} this.Or = that.GetOr() this.And = that.GetAnd() this.Leaf = that.GetLeaf() return this } type OrBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() Tree GetRight() Tree } func (this *OrBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *OrBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewOrBranchFromFace(this) } func (this *OrBranch) GetLeft() Tree { return this.Left } func (this *OrBranch) GetRight() Tree { return this.Right } func NewOrBranchFromFace(that OrBranchFace) *OrBranch { this := &OrBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type AndBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() Tree GetRight() Tree } func (this *AndBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AndBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewAndBranchFromFace(this) } func (this *AndBranch) GetLeft() Tree { return this.Left } func (this *AndBranch) GetRight() Tree { return this.Right } func NewAndBranchFromFace(that AndBranchFace) *AndBranch { this := &AndBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type LeafFace interface { Proto() github_com_gogo_protobuf_proto.Message GetValue() int64 GetStrValue() string } func (this *Leaf) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Leaf) TestProto() github_com_gogo_protobuf_proto.Message { return NewLeafFromFace(this) } func (this *Leaf) GetValue() int64 { return this.Value } func (this *Leaf) GetStrValue() string { return this.StrValue } func NewLeafFromFace(that LeafFace) *Leaf { this := &Leaf{} this.Value = that.GetValue() this.StrValue = that.GetStrValue() return this } type DeepTreeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDown() *ADeepBranch GetAnd() *AndDeepBranch GetLeaf() *DeepLeaf } func (this *DeepTree) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *DeepTree) TestProto() github_com_gogo_protobuf_proto.Message { return NewDeepTreeFromFace(this) } func (this *DeepTree) GetDown() *ADeepBranch { return this.Down } func (this *DeepTree) GetAnd() *AndDeepBranch { return this.And } func (this *DeepTree) GetLeaf() *DeepLeaf { return this.Leaf } func NewDeepTreeFromFace(that DeepTreeFace) *DeepTree { this := &DeepTree{} this.Down = that.GetDown() this.And = that.GetAnd() this.Leaf = that.GetLeaf() return this } type ADeepBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDown() DeepTree } func (this *ADeepBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ADeepBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewADeepBranchFromFace(this) } func (this *ADeepBranch) GetDown() DeepTree { return this.Down } func NewADeepBranchFromFace(that ADeepBranchFace) *ADeepBranch { this := &ADeepBranch{} this.Down = that.GetDown() return this } type AndDeepBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() DeepTree GetRight() DeepTree } func (this *AndDeepBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AndDeepBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewAndDeepBranchFromFace(this) } func (this *AndDeepBranch) GetLeft() DeepTree { return this.Left } func (this *AndDeepBranch) GetRight() DeepTree { return this.Right } func NewAndDeepBranchFromFace(that AndDeepBranchFace) *AndDeepBranch { this := &AndDeepBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type DeepLeafFace interface { Proto() github_com_gogo_protobuf_proto.Message GetTree() Tree } func (this *DeepLeaf) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *DeepLeaf) TestProto() github_com_gogo_protobuf_proto.Message { return NewDeepLeafFromFace(this) } func (this *DeepLeaf) GetTree() Tree { return this.Tree } func NewDeepLeafFromFace(that DeepLeafFace) *DeepLeaf { this := &DeepLeaf{} this.Tree = that.GetTree() return this } type NilFace interface { Proto() github_com_gogo_protobuf_proto.Message } func (this *Nil) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Nil) TestProto() github_com_gogo_protobuf_proto.Message { return NewNilFromFace(this) } func NewNilFromFace(that NilFace) *Nil { this := &Nil{} return this } type NidOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() TheTestEnum } func (this *NidOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptEnumFromFace(this) } func (this *NidOptEnum) GetField1() TheTestEnum { return this.Field1 } func NewNidOptEnumFromFace(that NidOptEnumFace) *NidOptEnum { this := &NidOptEnum{} this.Field1 = that.GetField1() return this } type NinOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *TheTestEnum GetField2() *YetAnotherTestEnum GetField3() *YetYetAnotherTestEnum } func (this *NinOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptEnumFromFace(this) } func (this *NinOptEnum) GetField1() *TheTestEnum { return this.Field1 } func (this *NinOptEnum) GetField2() *YetAnotherTestEnum { return this.Field2 } func (this *NinOptEnum) GetField3() *YetYetAnotherTestEnum { return this.Field3 } func NewNinOptEnumFromFace(that NinOptEnumFace) *NinOptEnum { this := &NinOptEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type NidRepEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []TheTestEnum GetField2() []YetAnotherTestEnum GetField3() []YetYetAnotherTestEnum } func (this *NidRepEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepEnumFromFace(this) } func (this *NidRepEnum) GetField1() []TheTestEnum { return this.Field1 } func (this *NidRepEnum) GetField2() []YetAnotherTestEnum { return this.Field2 } func (this *NidRepEnum) GetField3() []YetYetAnotherTestEnum { return this.Field3 } func NewNidRepEnumFromFace(that NidRepEnumFace) *NidRepEnum { this := &NidRepEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type NinRepEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []TheTestEnum GetField2() []YetAnotherTestEnum GetField3() []YetYetAnotherTestEnum } func (this *NinRepEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepEnumFromFace(this) } func (this *NinRepEnum) GetField1() []TheTestEnum { return this.Field1 } func (this *NinRepEnum) GetField2() []YetAnotherTestEnum { return this.Field2 } func (this *NinRepEnum) GetField3() []YetYetAnotherTestEnum { return this.Field3 } func NewNinRepEnumFromFace(that NinRepEnumFace) *NinRepEnum { this := &NinRepEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type AnotherNinOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *AnotherTestEnum GetField2() *YetAnotherTestEnum GetField3() *YetYetAnotherTestEnum } func (this *AnotherNinOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AnotherNinOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewAnotherNinOptEnumFromFace(this) } func (this *AnotherNinOptEnum) GetField1() *AnotherTestEnum { return this.Field1 } func (this *AnotherNinOptEnum) GetField2() *YetAnotherTestEnum { return this.Field2 } func (this *AnotherNinOptEnum) GetField3() *YetYetAnotherTestEnum { return this.Field3 } func NewAnotherNinOptEnumFromFace(that AnotherNinOptEnumFace) *AnotherNinOptEnum { this := &AnotherNinOptEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type TimerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetTime1() int64 GetTime2() int64 GetData() []byte } func (this *Timer) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Timer) TestProto() github_com_gogo_protobuf_proto.Message { return NewTimerFromFace(this) } func (this *Timer) GetTime1() int64 { return this.Time1 } func (this *Timer) GetTime2() int64 { return this.Time2 } func (this *Timer) GetData() []byte { return this.Data } func NewTimerFromFace(that TimerFace) *Timer { this := &Timer{} this.Time1 = that.GetTime1() this.Time2 = that.GetTime2() this.Data = that.GetData() return this } type NestedDefinitionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *int64 GetEnumField() *NestedDefinition_NestedEnum GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg GetNM() *NestedDefinition_NestedMessage } func (this *NestedDefinition) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinitionFromFace(this) } func (this *NestedDefinition) GetField1() *int64 { return this.Field1 } func (this *NestedDefinition) GetEnumField() *NestedDefinition_NestedEnum { return this.EnumField } func (this *NestedDefinition) GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.NNM } func (this *NestedDefinition) GetNM() *NestedDefinition_NestedMessage { return this.NM } func NewNestedDefinitionFromFace(that NestedDefinitionFace) *NestedDefinition { this := &NestedDefinition{} this.Field1 = that.GetField1() this.EnumField = that.GetEnumField() this.NNM = that.GetNNM() this.NM = that.GetNM() return this } type NestedDefinition_NestedMessageFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedField1() *uint64 GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg } func (this *NestedDefinition_NestedMessage) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition_NestedMessage) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinition_NestedMessageFromFace(this) } func (this *NestedDefinition_NestedMessage) GetNestedField1() *uint64 { return this.NestedField1 } func (this *NestedDefinition_NestedMessage) GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.NNM } func NewNestedDefinition_NestedMessageFromFace(that NestedDefinition_NestedMessageFace) *NestedDefinition_NestedMessage { this := &NestedDefinition_NestedMessage{} this.NestedField1 = that.GetNestedField1() this.NNM = that.GetNNM() return this } type NestedDefinition_NestedMessage_NestedNestedMsgFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedNestedField1() *string } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinition_NestedMessage_NestedNestedMsgFromFace(this) } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) GetNestedNestedField1() *string { return this.NestedNestedField1 } func NewNestedDefinition_NestedMessage_NestedNestedMsgFromFace(that NestedDefinition_NestedMessage_NestedNestedMsgFace) *NestedDefinition_NestedMessage_NestedNestedMsg { this := &NestedDefinition_NestedMessage_NestedNestedMsg{} this.NestedNestedField1 = that.GetNestedNestedField1() return this } type NestedScopeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetA() *NestedDefinition_NestedMessage_NestedNestedMsg GetB() *NestedDefinition_NestedEnum GetC() *NestedDefinition_NestedMessage } func (this *NestedScope) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedScope) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedScopeFromFace(this) } func (this *NestedScope) GetA() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.A } func (this *NestedScope) GetB() *NestedDefinition_NestedEnum { return this.B } func (this *NestedScope) GetC() *NestedDefinition_NestedMessage { return this.C } func NewNestedScopeFromFace(that NestedScopeFace) *NestedScope { this := &NestedScope{} this.A = that.GetA() this.B = that.GetB() this.C = that.GetC() return this } type CustomContainerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetCustomStruct() NidOptCustom } func (this *CustomContainer) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomContainer) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomContainerFromFace(this) } func (this *CustomContainer) GetCustomStruct() NidOptCustom { return this.CustomStruct } func NewCustomContainerFromFace(that CustomContainerFace) *CustomContainer { this := &CustomContainer{} this.CustomStruct = that.GetCustomStruct() return this } type CustomNameNidOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() float64 GetFieldB() float32 GetFieldC() int32 GetFieldD() int64 GetFieldE() uint32 GetFieldF() uint64 GetFieldG() int32 GetFieldH() int64 GetFieldI() uint32 GetFieldJ() int32 GetFieldK() uint64 GetFieldL() int64 GetFieldM() bool GetFieldN() string GetFieldO() []byte } func (this *CustomNameNidOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNidOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNidOptNativeFromFace(this) } func (this *CustomNameNidOptNative) GetFieldA() float64 { return this.FieldA } func (this *CustomNameNidOptNative) GetFieldB() float32 { return this.FieldB } func (this *CustomNameNidOptNative) GetFieldC() int32 { return this.FieldC } func (this *CustomNameNidOptNative) GetFieldD() int64 { return this.FieldD } func (this *CustomNameNidOptNative) GetFieldE() uint32 { return this.FieldE } func (this *CustomNameNidOptNative) GetFieldF() uint64 { return this.FieldF } func (this *CustomNameNidOptNative) GetFieldG() int32 { return this.FieldG } func (this *CustomNameNidOptNative) GetFieldH() int64 { return this.FieldH } func (this *CustomNameNidOptNative) GetFieldI() uint32 { return this.FieldI } func (this *CustomNameNidOptNative) GetFieldJ() int32 { return this.FieldJ } func (this *CustomNameNidOptNative) GetFieldK() uint64 { return this.FieldK } func (this *CustomNameNidOptNative) GetFieldL() int64 { return this.FieldL } func (this *CustomNameNidOptNative) GetFieldM() bool { return this.FieldM } func (this *CustomNameNidOptNative) GetFieldN() string { return this.FieldN } func (this *CustomNameNidOptNative) GetFieldO() []byte { return this.FieldO } func NewCustomNameNidOptNativeFromFace(that CustomNameNidOptNativeFace) *CustomNameNidOptNative { this := &CustomNameNidOptNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FieldL = that.GetFieldL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *float64 GetFieldB() *float32 GetFieldC() *int32 GetFieldD() *int64 GetFieldE() *uint32 GetFieldF() *uint64 GetFieldG() *int32 GetFieldH() *int64 GetFieldI() *uint32 GetFieldJ() *int32 GetFieldK() *uint64 GetFielL() *int64 GetFieldM() *bool GetFieldN() *string GetFieldO() []byte } func (this *CustomNameNinOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinOptNativeFromFace(this) } func (this *CustomNameNinOptNative) GetFieldA() *float64 { return this.FieldA } func (this *CustomNameNinOptNative) GetFieldB() *float32 { return this.FieldB } func (this *CustomNameNinOptNative) GetFieldC() *int32 { return this.FieldC } func (this *CustomNameNinOptNative) GetFieldD() *int64 { return this.FieldD } func (this *CustomNameNinOptNative) GetFieldE() *uint32 { return this.FieldE } func (this *CustomNameNinOptNative) GetFieldF() *uint64 { return this.FieldF } func (this *CustomNameNinOptNative) GetFieldG() *int32 { return this.FieldG } func (this *CustomNameNinOptNative) GetFieldH() *int64 { return this.FieldH } func (this *CustomNameNinOptNative) GetFieldI() *uint32 { return this.FieldI } func (this *CustomNameNinOptNative) GetFieldJ() *int32 { return this.FieldJ } func (this *CustomNameNinOptNative) GetFieldK() *uint64 { return this.FieldK } func (this *CustomNameNinOptNative) GetFielL() *int64 { return this.FielL } func (this *CustomNameNinOptNative) GetFieldM() *bool { return this.FieldM } func (this *CustomNameNinOptNative) GetFieldN() *string { return this.FieldN } func (this *CustomNameNinOptNative) GetFieldO() []byte { return this.FieldO } func NewCustomNameNinOptNativeFromFace(that CustomNameNinOptNativeFace) *CustomNameNinOptNative { this := &CustomNameNinOptNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FielL = that.GetFielL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() []float64 GetFieldB() []float32 GetFieldC() []int32 GetFieldD() []int64 GetFieldE() []uint32 GetFieldF() []uint64 GetFieldG() []int32 GetFieldH() []int64 GetFieldI() []uint32 GetFieldJ() []int32 GetFieldK() []uint64 GetFieldL() []int64 GetFieldM() []bool GetFieldN() []string GetFieldO() [][]byte } func (this *CustomNameNinRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinRepNativeFromFace(this) } func (this *CustomNameNinRepNative) GetFieldA() []float64 { return this.FieldA } func (this *CustomNameNinRepNative) GetFieldB() []float32 { return this.FieldB } func (this *CustomNameNinRepNative) GetFieldC() []int32 { return this.FieldC } func (this *CustomNameNinRepNative) GetFieldD() []int64 { return this.FieldD } func (this *CustomNameNinRepNative) GetFieldE() []uint32 { return this.FieldE } func (this *CustomNameNinRepNative) GetFieldF() []uint64 { return this.FieldF } func (this *CustomNameNinRepNative) GetFieldG() []int32 { return this.FieldG } func (this *CustomNameNinRepNative) GetFieldH() []int64 { return this.FieldH } func (this *CustomNameNinRepNative) GetFieldI() []uint32 { return this.FieldI } func (this *CustomNameNinRepNative) GetFieldJ() []int32 { return this.FieldJ } func (this *CustomNameNinRepNative) GetFieldK() []uint64 { return this.FieldK } func (this *CustomNameNinRepNative) GetFieldL() []int64 { return this.FieldL } func (this *CustomNameNinRepNative) GetFieldM() []bool { return this.FieldM } func (this *CustomNameNinRepNative) GetFieldN() []string { return this.FieldN } func (this *CustomNameNinRepNative) GetFieldO() [][]byte { return this.FieldO } func NewCustomNameNinRepNativeFromFace(that CustomNameNinRepNativeFace) *CustomNameNinRepNative { this := &CustomNameNinRepNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FieldL = that.GetFieldL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *float64 GetFieldB() *float32 GetFieldC() *NidOptNative GetFieldD() []*NinOptNative GetFieldE() *uint64 GetFieldF() *int32 GetFieldG() *NidOptNative GetFieldH() *bool GetFieldI() *string GetFieldJ() []byte } func (this *CustomNameNinStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinStructFromFace(this) } func (this *CustomNameNinStruct) GetFieldA() *float64 { return this.FieldA } func (this *CustomNameNinStruct) GetFieldB() *float32 { return this.FieldB } func (this *CustomNameNinStruct) GetFieldC() *NidOptNative { return this.FieldC } func (this *CustomNameNinStruct) GetFieldD() []*NinOptNative { return this.FieldD } func (this *CustomNameNinStruct) GetFieldE() *uint64 { return this.FieldE } func (this *CustomNameNinStruct) GetFieldF() *int32 { return this.FieldF } func (this *CustomNameNinStruct) GetFieldG() *NidOptNative { return this.FieldG } func (this *CustomNameNinStruct) GetFieldH() *bool { return this.FieldH } func (this *CustomNameNinStruct) GetFieldI() *string { return this.FieldI } func (this *CustomNameNinStruct) GetFieldJ() []byte { return this.FieldJ } func NewCustomNameNinStructFromFace(that CustomNameNinStructFace) *CustomNameNinStruct { this := &CustomNameNinStruct{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() return this } type CustomNameCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *Uuid GetFieldB() *github_com_gogo_protobuf_test_custom.Uint128 GetFieldC() []Uuid GetFieldD() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *CustomNameCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameCustomTypeFromFace(this) } func (this *CustomNameCustomType) GetFieldA() *Uuid { return this.FieldA } func (this *CustomNameCustomType) GetFieldB() *github_com_gogo_protobuf_test_custom.Uint128 { return this.FieldB } func (this *CustomNameCustomType) GetFieldC() []Uuid { return this.FieldC } func (this *CustomNameCustomType) GetFieldD() []github_com_gogo_protobuf_test_custom.Uint128 { return this.FieldD } func NewCustomNameCustomTypeFromFace(that CustomNameCustomTypeFace) *CustomNameCustomType { this := &CustomNameCustomType{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() return this } type CustomNameNinEmbeddedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetFieldA() *NinOptNative GetFieldB() *bool } func (this *CustomNameNinEmbeddedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinEmbeddedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinEmbeddedStructUnionFromFace(this) } func (this *CustomNameNinEmbeddedStructUnion) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *CustomNameNinEmbeddedStructUnion) GetFieldA() *NinOptNative { return this.FieldA } func (this *CustomNameNinEmbeddedStructUnion) GetFieldB() *bool { return this.FieldB } func NewCustomNameNinEmbeddedStructUnionFromFace(that CustomNameNinEmbeddedStructUnionFace) *CustomNameNinEmbeddedStructUnion { this := &CustomNameNinEmbeddedStructUnion{} this.NidOptNative = that.GetNidOptNative() this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() return this } type CustomNameEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *TheTestEnum GetFieldB() []TheTestEnum } func (this *CustomNameEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameEnumFromFace(this) } func (this *CustomNameEnum) GetFieldA() *TheTestEnum { return this.FieldA } func (this *CustomNameEnum) GetFieldB() []TheTestEnum { return this.FieldB } func NewCustomNameEnumFromFace(that CustomNameEnumFace) *CustomNameEnum { this := &CustomNameEnum{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() return this } type UnrecognizedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *string } func (this *Unrecognized) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Unrecognized) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedFromFace(this) } func (this *Unrecognized) GetField1() *string { return this.Field1 } func NewUnrecognizedFromFace(that UnrecognizedFace) *Unrecognized { this := &Unrecognized{} this.Field1 = that.GetField1() return this } type UnrecognizedWithInnerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetEmbedded() []*UnrecognizedWithInner_Inner GetField2() *string } func (this *UnrecognizedWithInner) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithInner) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithInnerFromFace(this) } func (this *UnrecognizedWithInner) GetEmbedded() []*UnrecognizedWithInner_Inner { return this.Embedded } func (this *UnrecognizedWithInner) GetField2() *string { return this.Field2 } func NewUnrecognizedWithInnerFromFace(that UnrecognizedWithInnerFace) *UnrecognizedWithInner { this := &UnrecognizedWithInner{} this.Embedded = that.GetEmbedded() this.Field2 = that.GetField2() return this } type UnrecognizedWithInner_InnerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *uint32 } func (this *UnrecognizedWithInner_Inner) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithInner_Inner) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithInner_InnerFromFace(this) } func (this *UnrecognizedWithInner_Inner) GetField1() *uint32 { return this.Field1 } func NewUnrecognizedWithInner_InnerFromFace(that UnrecognizedWithInner_InnerFace) *UnrecognizedWithInner_Inner { this := &UnrecognizedWithInner_Inner{} this.Field1 = that.GetField1() return this } type UnrecognizedWithEmbedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetUnrecognizedWithEmbed_Embedded() UnrecognizedWithEmbed_Embedded GetField2() *string } func (this *UnrecognizedWithEmbed) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithEmbed) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithEmbedFromFace(this) } func (this *UnrecognizedWithEmbed) GetUnrecognizedWithEmbed_Embedded() UnrecognizedWithEmbed_Embedded { return this.UnrecognizedWithEmbed_Embedded } func (this *UnrecognizedWithEmbed) GetField2() *string { return this.Field2 } func NewUnrecognizedWithEmbedFromFace(that UnrecognizedWithEmbedFace) *UnrecognizedWithEmbed { this := &UnrecognizedWithEmbed{} this.UnrecognizedWithEmbed_Embedded = that.GetUnrecognizedWithEmbed_Embedded() this.Field2 = that.GetField2() return this } type UnrecognizedWithEmbed_EmbeddedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *uint32 } func (this *UnrecognizedWithEmbed_Embedded) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithEmbed_Embedded) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithEmbed_EmbeddedFromFace(this) } func (this *UnrecognizedWithEmbed_Embedded) GetField1() *uint32 { return this.Field1 } func NewUnrecognizedWithEmbed_EmbeddedFromFace(that UnrecognizedWithEmbed_EmbeddedFace) *UnrecognizedWithEmbed_Embedded { this := &UnrecognizedWithEmbed_Embedded{} this.Field1 = that.GetField1() return this } type NodeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLabel() *string GetChildren() []*Node } func (this *Node) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Node) TestProto() github_com_gogo_protobuf_proto.Message { return NewNodeFromFace(this) } func (this *Node) GetLabel() *string { return this.Label } func (this *Node) GetChildren() []*Node { return this.Children } func NewNodeFromFace(that NodeFace) *Node { this := &Node{} this.Label = that.GetLabel() this.Children = that.GetChildren() return this } type NonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *T } func (this *NonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNonByteCustomTypeFromFace(this) } func (this *NonByteCustomType) GetField1() *T { return this.Field1 } func NewNonByteCustomTypeFromFace(that NonByteCustomTypeFace) *NonByteCustomType { this := &NonByteCustomType{} this.Field1 = that.GetField1() return this } type NidOptNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() T } func (this *NidOptNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptNonByteCustomTypeFromFace(this) } func (this *NidOptNonByteCustomType) GetField1() T { return this.Field1 } func NewNidOptNonByteCustomTypeFromFace(that NidOptNonByteCustomTypeFace) *NidOptNonByteCustomType { this := &NidOptNonByteCustomType{} this.Field1 = that.GetField1() return this } type NinOptNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *T } func (this *NinOptNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNonByteCustomTypeFromFace(this) } func (this *NinOptNonByteCustomType) GetField1() *T { return this.Field1 } func NewNinOptNonByteCustomTypeFromFace(that NinOptNonByteCustomTypeFace) *NinOptNonByteCustomType { this := &NinOptNonByteCustomType{} this.Field1 = that.GetField1() return this } type NidRepNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []T } func (this *NidRepNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepNonByteCustomTypeFromFace(this) } func (this *NidRepNonByteCustomType) GetField1() []T { return this.Field1 } func NewNidRepNonByteCustomTypeFromFace(that NidRepNonByteCustomTypeFace) *NidRepNonByteCustomType { this := &NidRepNonByteCustomType{} this.Field1 = that.GetField1() return this } type NinRepNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []T } func (this *NinRepNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepNonByteCustomTypeFromFace(this) } func (this *NinRepNonByteCustomType) GetField1() []T { return this.Field1 } func NewNinRepNonByteCustomTypeFromFace(that NinRepNonByteCustomTypeFace) *NinRepNonByteCustomType { this := &NinRepNonByteCustomType{} this.Field1 = that.GetField1() return this } type ProtoTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField2() *string } func (this *ProtoType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ProtoType) TestProto() github_com_gogo_protobuf_proto.Message { return NewProtoTypeFromFace(this) } func (this *ProtoType) GetField2() *string { return this.Field2 } func NewProtoTypeFromFace(that ProtoTypeFace) *ProtoType { this := &ProtoType{} this.Field2 = that.GetField2() return this } func (this *NidOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NidOptNative{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinOptNative{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+valueToGoStringThetest(this.Field8, "int64")+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+valueToGoStringThetest(this.Field9, "uint32")+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+valueToGoStringThetest(this.Field10, "int32")+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+valueToGoStringThetest(this.Field11, "uint64")+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+valueToGoStringThetest(this.Field12, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NidRepNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinRepNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepPackedNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 17) s = append(s, "&test.NidRepPackedNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepPackedNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 17) s = append(s, "&test.NinRepPackedNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NidOptStruct{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") s = append(s, "Field3: "+strings.Replace(this.Field3.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field4: "+strings.Replace(this.Field4.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") s = append(s, "Field8: "+strings.Replace(this.Field8.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NinOptStruct{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NidRepStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { vs := make([]*NidOptNative, len(this.Field3)) for i := range vs { vs[i] = &this.Field3[i] } s = append(s, "Field3: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field4 != nil { vs := make([]*NinOptNative, len(this.Field4)) for i := range vs { vs[i] = &this.Field4[i] } s = append(s, "Field4: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { vs := make([]*NidOptNative, len(this.Field8)) for i := range vs { vs[i] = &this.Field8[i] } s = append(s, "Field8: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NinRepStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidEmbeddedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NidEmbeddedStruct{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } s = append(s, "Field200: "+strings.Replace(this.Field200.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field210: "+fmt.Sprintf("%#v", this.Field210)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinEmbeddedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinEmbeddedStruct{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.Field200 != nil { s = append(s, "Field200: "+fmt.Sprintf("%#v", this.Field200)+",\n") } if this.Field210 != nil { s = append(s, "Field210: "+valueToGoStringThetest(this.Field210, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidNestedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidNestedStruct{") s = append(s, "Field1: "+strings.Replace(this.Field1.GoString(), `&`, ``, 1)+",\n") if this.Field2 != nil { vs := make([]*NidRepStruct, len(this.Field2)) for i := range vs { vs[i] = &this.Field2[i] } s = append(s, "Field2: "+fmt.Sprintf("%#v", vs)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinNestedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinNestedStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidOptCustom{") s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomDash) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.CustomDash{") if this.Value != nil { s = append(s, "Value: "+valueToGoStringThetest(this.Value, "github_com_gogo_protobuf_test_custom_dash_type.Bytes")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinOptCustom{") if this.Id != nil { s = append(s, "Id: "+valueToGoStringThetest(this.Id, "Uuid")+",\n") } if this.Value != nil { s = append(s, "Value: "+valueToGoStringThetest(this.Value, "github_com_gogo_protobuf_test_custom.Uint128")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidRepCustom{") if this.Id != nil { s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") } if this.Value != nil { s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinRepCustom{") if this.Id != nil { s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") } if this.Value != nil { s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNativeUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 13) s = append(s, "&test.NinOptNativeUnion{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 13) s = append(s, "&test.NinOptStructUnion{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinEmbeddedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinEmbeddedStructUnion{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.Field200 != nil { s = append(s, "Field200: "+fmt.Sprintf("%#v", this.Field200)+",\n") } if this.Field210 != nil { s = append(s, "Field210: "+valueToGoStringThetest(this.Field210, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinNestedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinNestedStructUnion{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Tree) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.Tree{") if this.Or != nil { s = append(s, "Or: "+fmt.Sprintf("%#v", this.Or)+",\n") } if this.And != nil { s = append(s, "And: "+fmt.Sprintf("%#v", this.And)+",\n") } if this.Leaf != nil { s = append(s, "Leaf: "+fmt.Sprintf("%#v", this.Leaf)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OrBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.OrBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AndBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.AndBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Leaf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.Leaf{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "StrValue: "+fmt.Sprintf("%#v", this.StrValue)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DeepTree) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.DeepTree{") if this.Down != nil { s = append(s, "Down: "+fmt.Sprintf("%#v", this.Down)+",\n") } if this.And != nil { s = append(s, "And: "+fmt.Sprintf("%#v", this.And)+",\n") } if this.Leaf != nil { s = append(s, "Leaf: "+fmt.Sprintf("%#v", this.Leaf)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ADeepBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.ADeepBranch{") s = append(s, "Down: "+strings.Replace(this.Down.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AndDeepBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.AndDeepBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DeepLeaf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.DeepLeaf{") s = append(s, "Tree: "+strings.Replace(this.Tree.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Nil) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&test.Nil{") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidOptEnum{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinOptEnum{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "TheTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NidRepEnum{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinRepEnum{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptEnumDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinOptEnumDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "TheTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AnotherNinOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.AnotherNinOptEnum{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "AnotherTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AnotherNinOptEnumDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.AnotherNinOptEnumDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "AnotherTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Timer) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.Timer{") s = append(s, "Time1: "+fmt.Sprintf("%#v", this.Time1)+",\n") s = append(s, "Time2: "+fmt.Sprintf("%#v", this.Time2)+",\n") s = append(s, "Data: "+fmt.Sprintf("%#v", this.Data)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MyExtendable) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.MyExtendable{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringThetest(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OtherExtenable) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.OtherExtenable{") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "int64")+",\n") } if this.M != nil { s = append(s, "M: "+fmt.Sprintf("%#v", this.M)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringThetest(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&test.NestedDefinition{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } if this.EnumField != nil { s = append(s, "EnumField: "+valueToGoStringThetest(this.EnumField, "NestedDefinition_NestedEnum")+",\n") } if this.NNM != nil { s = append(s, "NNM: "+fmt.Sprintf("%#v", this.NNM)+",\n") } if this.NM != nil { s = append(s, "NM: "+fmt.Sprintf("%#v", this.NM)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition_NestedMessage) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NestedDefinition_NestedMessage{") if this.NestedField1 != nil { s = append(s, "NestedField1: "+valueToGoStringThetest(this.NestedField1, "uint64")+",\n") } if this.NNM != nil { s = append(s, "NNM: "+fmt.Sprintf("%#v", this.NNM)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NestedDefinition_NestedMessage_NestedNestedMsg{") if this.NestedNestedField1 != nil { s = append(s, "NestedNestedField1: "+valueToGoStringThetest(this.NestedNestedField1, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedScope) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NestedScope{") if this.A != nil { s = append(s, "A: "+fmt.Sprintf("%#v", this.A)+",\n") } if this.B != nil { s = append(s, "B: "+valueToGoStringThetest(this.B, "NestedDefinition_NestedEnum")+",\n") } if this.C != nil { s = append(s, "C: "+fmt.Sprintf("%#v", this.C)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNativeDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinOptNativeDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+valueToGoStringThetest(this.Field8, "int64")+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+valueToGoStringThetest(this.Field9, "uint32")+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+valueToGoStringThetest(this.Field10, "int32")+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+valueToGoStringThetest(this.Field11, "uint64")+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+valueToGoStringThetest(this.Field12, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomContainer) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.CustomContainer{") s = append(s, "CustomStruct: "+strings.Replace(this.CustomStruct.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNidOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNidOptNative{") s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") s = append(s, "FieldE: "+fmt.Sprintf("%#v", this.FieldE)+",\n") s = append(s, "FieldF: "+fmt.Sprintf("%#v", this.FieldF)+",\n") s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") s = append(s, "FieldH: "+fmt.Sprintf("%#v", this.FieldH)+",\n") s = append(s, "FieldI: "+fmt.Sprintf("%#v", this.FieldI)+",\n") s = append(s, "FieldJ: "+fmt.Sprintf("%#v", this.FieldJ)+",\n") s = append(s, "FieldK: "+fmt.Sprintf("%#v", this.FieldK)+",\n") s = append(s, "FieldL: "+fmt.Sprintf("%#v", this.FieldL)+",\n") s = append(s, "FieldM: "+fmt.Sprintf("%#v", this.FieldM)+",\n") s = append(s, "FieldN: "+fmt.Sprintf("%#v", this.FieldN)+",\n") s = append(s, "FieldO: "+fmt.Sprintf("%#v", this.FieldO)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNinOptNative{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "float64")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "float32")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+valueToGoStringThetest(this.FieldC, "int32")+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+valueToGoStringThetest(this.FieldD, "int64")+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+valueToGoStringThetest(this.FieldE, "uint32")+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+valueToGoStringThetest(this.FieldF, "uint64")+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+valueToGoStringThetest(this.FieldG, "int32")+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+valueToGoStringThetest(this.FieldH, "int64")+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+valueToGoStringThetest(this.FieldI, "uint32")+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+valueToGoStringThetest(this.FieldJ, "int32")+",\n") } if this.FieldK != nil { s = append(s, "FieldK: "+valueToGoStringThetest(this.FieldK, "uint64")+",\n") } if this.FielL != nil { s = append(s, "FielL: "+valueToGoStringThetest(this.FielL, "int64")+",\n") } if this.FieldM != nil { s = append(s, "FieldM: "+valueToGoStringThetest(this.FieldM, "bool")+",\n") } if this.FieldN != nil { s = append(s, "FieldN: "+valueToGoStringThetest(this.FieldN, "string")+",\n") } if this.FieldO != nil { s = append(s, "FieldO: "+valueToGoStringThetest(this.FieldO, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNinRepNative{") if this.FieldA != nil { s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+fmt.Sprintf("%#v", this.FieldE)+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+fmt.Sprintf("%#v", this.FieldF)+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+fmt.Sprintf("%#v", this.FieldH)+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+fmt.Sprintf("%#v", this.FieldI)+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+fmt.Sprintf("%#v", this.FieldJ)+",\n") } if this.FieldK != nil { s = append(s, "FieldK: "+fmt.Sprintf("%#v", this.FieldK)+",\n") } if this.FieldL != nil { s = append(s, "FieldL: "+fmt.Sprintf("%#v", this.FieldL)+",\n") } if this.FieldM != nil { s = append(s, "FieldM: "+fmt.Sprintf("%#v", this.FieldM)+",\n") } if this.FieldN != nil { s = append(s, "FieldN: "+fmt.Sprintf("%#v", this.FieldN)+",\n") } if this.FieldO != nil { s = append(s, "FieldO: "+fmt.Sprintf("%#v", this.FieldO)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.CustomNameNinStruct{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "float64")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "float32")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+valueToGoStringThetest(this.FieldE, "uint64")+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+valueToGoStringThetest(this.FieldF, "int32")+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+valueToGoStringThetest(this.FieldH, "bool")+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+valueToGoStringThetest(this.FieldI, "string")+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+valueToGoStringThetest(this.FieldJ, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&test.CustomNameCustomType{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "Uuid")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "github_com_gogo_protobuf_test_custom.Uint128")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinEmbeddedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.CustomNameNinEmbeddedStructUnion{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.FieldA != nil { s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.CustomNameEnum{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "TheTestEnum")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NoExtensionsMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NoExtensionsMap{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } if this.XXX_extensions != nil { s = append(s, "XXX_extensions: "+fmt.Sprintf("%#v", this.XXX_extensions)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Unrecognized) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.Unrecognized{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "string")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithInner) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.UnrecognizedWithInner{") if this.Embedded != nil { s = append(s, "Embedded: "+fmt.Sprintf("%#v", this.Embedded)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithInner_Inner) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.UnrecognizedWithInner_Inner{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithEmbed) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.UnrecognizedWithEmbed{") s = append(s, "UnrecognizedWithEmbed_Embedded: "+strings.Replace(this.UnrecognizedWithEmbed_Embedded.GoString(), `&`, ``, 1)+",\n") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithEmbed_Embedded) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.UnrecognizedWithEmbed_Embedded{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Node) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.Node{") if this.Label != nil { s = append(s, "Label: "+valueToGoStringThetest(this.Label, "string")+",\n") } if this.Children != nil { s = append(s, "Children: "+fmt.Sprintf("%#v", this.Children)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "T")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidOptNonByteCustomType{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NinOptNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "T")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidRepNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NinRepNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ProtoType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.ProtoType{") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringThetest(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func extensionToGoStringThetest(m github_com_gogo_protobuf_proto.Message) string { e := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(m) if e == nil { return "nil" } s := "proto.NewUnsafeXXX_InternalExtensions(map[int32]proto.Extension{" keys := make([]int, 0, len(e)) for k := range e { keys = append(keys, int(k)) } sort.Ints(keys) ss := []string{} for _, k := range keys { ss = append(ss, strconv.Itoa(k)+": "+e[int32(k)].GoString()) } s += strings.Join(ss, ",") + "})" return s } func NewPopulatedNidOptNative(r randyThetest, easy bool) *NidOptNative { this := &NidOptNative{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } this.Field5 = uint32(r.Uint32()) this.Field6 = uint64(uint64(r.Uint32())) this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } this.Field9 = uint32(r.Uint32()) this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } this.Field11 = uint64(uint64(r.Uint32())) this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } this.Field13 = bool(bool(r.Intn(2) == 0)) this.Field14 = string(randStringThetest(r)) v1 := r.Intn(100) this.Field15 = make([]byte, v1) for i := 0; i < v1; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinOptNative(r randyThetest, easy bool) *NinOptNative { this := &NinOptNative{} if r.Intn(10) != 0 { v2 := float64(r.Float64()) if r.Intn(2) == 0 { v2 *= -1 } this.Field1 = &v2 } if r.Intn(10) != 0 { v3 := float32(r.Float32()) if r.Intn(2) == 0 { v3 *= -1 } this.Field2 = &v3 } if r.Intn(10) != 0 { v4 := int32(r.Int31()) if r.Intn(2) == 0 { v4 *= -1 } this.Field3 = &v4 } if r.Intn(10) != 0 { v5 := int64(r.Int63()) if r.Intn(2) == 0 { v5 *= -1 } this.Field4 = &v5 } if r.Intn(10) != 0 { v6 := uint32(r.Uint32()) this.Field5 = &v6 } if r.Intn(10) != 0 { v7 := uint64(uint64(r.Uint32())) this.Field6 = &v7 } if r.Intn(10) != 0 { v8 := int32(r.Int31()) if r.Intn(2) == 0 { v8 *= -1 } this.Field7 = &v8 } if r.Intn(10) != 0 { v9 := int64(r.Int63()) if r.Intn(2) == 0 { v9 *= -1 } this.Field8 = &v9 } if r.Intn(10) != 0 { v10 := uint32(r.Uint32()) this.Field9 = &v10 } if r.Intn(10) != 0 { v11 := int32(r.Int31()) if r.Intn(2) == 0 { v11 *= -1 } this.Field10 = &v11 } if r.Intn(10) != 0 { v12 := uint64(uint64(r.Uint32())) this.Field11 = &v12 } if r.Intn(10) != 0 { v13 := int64(r.Int63()) if r.Intn(2) == 0 { v13 *= -1 } this.Field12 = &v13 } if r.Intn(10) != 0 { v14 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v14 } if r.Intn(10) != 0 { v15 := string(randStringThetest(r)) this.Field14 = &v15 } if r.Intn(10) != 0 { v16 := r.Intn(100) this.Field15 = make([]byte, v16) for i := 0; i < v16; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepNative(r randyThetest, easy bool) *NidRepNative { this := &NidRepNative{} if r.Intn(10) != 0 { v17 := r.Intn(10) this.Field1 = make([]float64, v17) for i := 0; i < v17; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Field2 = make([]float32, v18) for i := 0; i < v18; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.Field3 = make([]int32, v19) for i := 0; i < v19; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Field4 = make([]int64, v20) for i := 0; i < v20; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Field5 = make([]uint32, v21) for i := 0; i < v21; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Field6 = make([]uint64, v22) for i := 0; i < v22; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Field7 = make([]int32, v23) for i := 0; i < v23; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Field8 = make([]int64, v24) for i := 0; i < v24; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Field9 = make([]uint32, v25) for i := 0; i < v25; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v26 := r.Intn(10) this.Field10 = make([]int32, v26) for i := 0; i < v26; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v27 := r.Intn(10) this.Field11 = make([]uint64, v27) for i := 0; i < v27; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v28 := r.Intn(10) this.Field12 = make([]int64, v28) for i := 0; i < v28; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v29 := r.Intn(10) this.Field13 = make([]bool, v29) for i := 0; i < v29; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v30 := r.Intn(10) this.Field14 = make([]string, v30) for i := 0; i < v30; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v31 := r.Intn(10) this.Field15 = make([][]byte, v31) for i := 0; i < v31; i++ { v32 := r.Intn(100) this.Field15[i] = make([]byte, v32) for j := 0; j < v32; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinRepNative(r randyThetest, easy bool) *NinRepNative { this := &NinRepNative{} if r.Intn(10) != 0 { v33 := r.Intn(10) this.Field1 = make([]float64, v33) for i := 0; i < v33; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v34 := r.Intn(10) this.Field2 = make([]float32, v34) for i := 0; i < v34; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v35 := r.Intn(10) this.Field3 = make([]int32, v35) for i := 0; i < v35; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.Field4 = make([]int64, v36) for i := 0; i < v36; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v37 := r.Intn(10) this.Field5 = make([]uint32, v37) for i := 0; i < v37; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v38 := r.Intn(10) this.Field6 = make([]uint64, v38) for i := 0; i < v38; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v39 := r.Intn(10) this.Field7 = make([]int32, v39) for i := 0; i < v39; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v40 := r.Intn(10) this.Field8 = make([]int64, v40) for i := 0; i < v40; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v41 := r.Intn(10) this.Field9 = make([]uint32, v41) for i := 0; i < v41; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v42 := r.Intn(10) this.Field10 = make([]int32, v42) for i := 0; i < v42; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v43 := r.Intn(10) this.Field11 = make([]uint64, v43) for i := 0; i < v43; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v44 := r.Intn(10) this.Field12 = make([]int64, v44) for i := 0; i < v44; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v45 := r.Intn(10) this.Field13 = make([]bool, v45) for i := 0; i < v45; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v46 := r.Intn(10) this.Field14 = make([]string, v46) for i := 0; i < v46; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v47 := r.Intn(10) this.Field15 = make([][]byte, v47) for i := 0; i < v47; i++ { v48 := r.Intn(100) this.Field15[i] = make([]byte, v48) for j := 0; j < v48; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepPackedNative(r randyThetest, easy bool) *NidRepPackedNative { this := &NidRepPackedNative{} if r.Intn(10) != 0 { v49 := r.Intn(10) this.Field1 = make([]float64, v49) for i := 0; i < v49; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v50 := r.Intn(10) this.Field2 = make([]float32, v50) for i := 0; i < v50; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v51 := r.Intn(10) this.Field3 = make([]int32, v51) for i := 0; i < v51; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v52 := r.Intn(10) this.Field4 = make([]int64, v52) for i := 0; i < v52; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v53 := r.Intn(10) this.Field5 = make([]uint32, v53) for i := 0; i < v53; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v54 := r.Intn(10) this.Field6 = make([]uint64, v54) for i := 0; i < v54; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v55 := r.Intn(10) this.Field7 = make([]int32, v55) for i := 0; i < v55; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v56 := r.Intn(10) this.Field8 = make([]int64, v56) for i := 0; i < v56; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v57 := r.Intn(10) this.Field9 = make([]uint32, v57) for i := 0; i < v57; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v58 := r.Intn(10) this.Field10 = make([]int32, v58) for i := 0; i < v58; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v59 := r.Intn(10) this.Field11 = make([]uint64, v59) for i := 0; i < v59; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v60 := r.Intn(10) this.Field12 = make([]int64, v60) for i := 0; i < v60; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v61 := r.Intn(10) this.Field13 = make([]bool, v61) for i := 0; i < v61; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 14) } return this } func NewPopulatedNinRepPackedNative(r randyThetest, easy bool) *NinRepPackedNative { this := &NinRepPackedNative{} if r.Intn(10) != 0 { v62 := r.Intn(10) this.Field1 = make([]float64, v62) for i := 0; i < v62; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v63 := r.Intn(10) this.Field2 = make([]float32, v63) for i := 0; i < v63; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.Field3 = make([]int32, v64) for i := 0; i < v64; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v65 := r.Intn(10) this.Field4 = make([]int64, v65) for i := 0; i < v65; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v66 := r.Intn(10) this.Field5 = make([]uint32, v66) for i := 0; i < v66; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v67 := r.Intn(10) this.Field6 = make([]uint64, v67) for i := 0; i < v67; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.Field7 = make([]int32, v68) for i := 0; i < v68; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v69 := r.Intn(10) this.Field8 = make([]int64, v69) for i := 0; i < v69; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v70 := r.Intn(10) this.Field9 = make([]uint32, v70) for i := 0; i < v70; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v71 := r.Intn(10) this.Field10 = make([]int32, v71) for i := 0; i < v71; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v72 := r.Intn(10) this.Field11 = make([]uint64, v72) for i := 0; i < v72; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v73 := r.Intn(10) this.Field12 = make([]int64, v73) for i := 0; i < v73; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v74 := r.Intn(10) this.Field13 = make([]bool, v74) for i := 0; i < v74; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 14) } return this } func NewPopulatedNidOptStruct(r randyThetest, easy bool) *NidOptStruct { this := &NidOptStruct{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } v75 := NewPopulatedNidOptNative(r, easy) this.Field3 = *v75 v76 := NewPopulatedNinOptNative(r, easy) this.Field4 = *v76 this.Field6 = uint64(uint64(r.Uint32())) this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } v77 := NewPopulatedNidOptNative(r, easy) this.Field8 = *v77 this.Field13 = bool(bool(r.Intn(2) == 0)) this.Field14 = string(randStringThetest(r)) v78 := r.Intn(100) this.Field15 = make([]byte, v78) for i := 0; i < v78; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinOptStruct(r randyThetest, easy bool) *NinOptStruct { this := &NinOptStruct{} if r.Intn(10) != 0 { v79 := float64(r.Float64()) if r.Intn(2) == 0 { v79 *= -1 } this.Field1 = &v79 } if r.Intn(10) != 0 { v80 := float32(r.Float32()) if r.Intn(2) == 0 { v80 *= -1 } this.Field2 = &v80 } if r.Intn(10) != 0 { this.Field3 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { this.Field4 = NewPopulatedNinOptNative(r, easy) } if r.Intn(10) != 0 { v81 := uint64(uint64(r.Uint32())) this.Field6 = &v81 } if r.Intn(10) != 0 { v82 := int32(r.Int31()) if r.Intn(2) == 0 { v82 *= -1 } this.Field7 = &v82 } if r.Intn(10) != 0 { this.Field8 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v83 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v83 } if r.Intn(10) != 0 { v84 := string(randStringThetest(r)) this.Field14 = &v84 } if r.Intn(10) != 0 { v85 := r.Intn(100) this.Field15 = make([]byte, v85) for i := 0; i < v85; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepStruct(r randyThetest, easy bool) *NidRepStruct { this := &NidRepStruct{} if r.Intn(10) != 0 { v86 := r.Intn(10) this.Field1 = make([]float64, v86) for i := 0; i < v86; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v87 := r.Intn(10) this.Field2 = make([]float32, v87) for i := 0; i < v87; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v88 := r.Intn(5) this.Field3 = make([]NidOptNative, v88) for i := 0; i < v88; i++ { v89 := NewPopulatedNidOptNative(r, easy) this.Field3[i] = *v89 } } if r.Intn(10) != 0 { v90 := r.Intn(5) this.Field4 = make([]NinOptNative, v90) for i := 0; i < v90; i++ { v91 := NewPopulatedNinOptNative(r, easy) this.Field4[i] = *v91 } } if r.Intn(10) != 0 { v92 := r.Intn(10) this.Field6 = make([]uint64, v92) for i := 0; i < v92; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v93 := r.Intn(10) this.Field7 = make([]int32, v93) for i := 0; i < v93; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v94 := r.Intn(5) this.Field8 = make([]NidOptNative, v94) for i := 0; i < v94; i++ { v95 := NewPopulatedNidOptNative(r, easy) this.Field8[i] = *v95 } } if r.Intn(10) != 0 { v96 := r.Intn(10) this.Field13 = make([]bool, v96) for i := 0; i < v96; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v97 := r.Intn(10) this.Field14 = make([]string, v97) for i := 0; i < v97; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v98 := r.Intn(10) this.Field15 = make([][]byte, v98) for i := 0; i < v98; i++ { v99 := r.Intn(100) this.Field15[i] = make([]byte, v99) for j := 0; j < v99; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinRepStruct(r randyThetest, easy bool) *NinRepStruct { this := &NinRepStruct{} if r.Intn(10) != 0 { v100 := r.Intn(10) this.Field1 = make([]float64, v100) for i := 0; i < v100; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v101 := r.Intn(10) this.Field2 = make([]float32, v101) for i := 0; i < v101; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v102 := r.Intn(5) this.Field3 = make([]*NidOptNative, v102) for i := 0; i < v102; i++ { this.Field3[i] = NewPopulatedNidOptNative(r, easy) } } if r.Intn(10) != 0 { v103 := r.Intn(5) this.Field4 = make([]*NinOptNative, v103) for i := 0; i < v103; i++ { this.Field4[i] = NewPopulatedNinOptNative(r, easy) } } if r.Intn(10) != 0 { v104 := r.Intn(10) this.Field6 = make([]uint64, v104) for i := 0; i < v104; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v105 := r.Intn(10) this.Field7 = make([]int32, v105) for i := 0; i < v105; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v106 := r.Intn(5) this.Field8 = make([]*NidOptNative, v106) for i := 0; i < v106; i++ { this.Field8[i] = NewPopulatedNidOptNative(r, easy) } } if r.Intn(10) != 0 { v107 := r.Intn(10) this.Field13 = make([]bool, v107) for i := 0; i < v107; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v108 := r.Intn(10) this.Field14 = make([]string, v108) for i := 0; i < v108; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v109 := r.Intn(10) this.Field15 = make([][]byte, v109) for i := 0; i < v109; i++ { v110 := r.Intn(100) this.Field15[i] = make([]byte, v110) for j := 0; j < v110; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidEmbeddedStruct(r randyThetest, easy bool) *NidEmbeddedStruct { this := &NidEmbeddedStruct{} if r.Intn(10) != 0 { this.NidOptNative = NewPopulatedNidOptNative(r, easy) } v111 := NewPopulatedNidOptNative(r, easy) this.Field200 = *v111 this.Field210 = bool(bool(r.Intn(2) == 0)) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 211) } return this } func NewPopulatedNinEmbeddedStruct(r randyThetest, easy bool) *NinEmbeddedStruct { this := &NinEmbeddedStruct{} if r.Intn(10) != 0 { this.NidOptNative = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { this.Field200 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v112 := bool(bool(r.Intn(2) == 0)) this.Field210 = &v112 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 211) } return this } func NewPopulatedNidNestedStruct(r randyThetest, easy bool) *NidNestedStruct { this := &NidNestedStruct{} v113 := NewPopulatedNidOptStruct(r, easy) this.Field1 = *v113 if r.Intn(10) != 0 { v114 := r.Intn(5) this.Field2 = make([]NidRepStruct, v114) for i := 0; i < v114; i++ { v115 := NewPopulatedNidRepStruct(r, easy) this.Field2[i] = *v115 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinNestedStruct(r randyThetest, easy bool) *NinNestedStruct { this := &NinNestedStruct{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedNinOptStruct(r, easy) } if r.Intn(10) != 0 { v116 := r.Intn(5) this.Field2 = make([]*NinRepStruct, v116) for i := 0; i < v116; i++ { this.Field2[i] = NewPopulatedNinRepStruct(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNidOptCustom(r randyThetest, easy bool) *NidOptCustom { this := &NidOptCustom{} v117 := NewPopulatedUuid(r) this.Id = *v117 v118 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value = *v118 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedCustomDash(r randyThetest, easy bool) *CustomDash { this := &CustomDash{} if r.Intn(10) != 0 { this.Value = github_com_gogo_protobuf_test_custom_dash_type.NewPopulatedBytes(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptCustom(r randyThetest, easy bool) *NinOptCustom { this := &NinOptCustom{} if r.Intn(10) != 0 { this.Id = NewPopulatedUuid(r) } if r.Intn(10) != 0 { this.Value = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNidRepCustom(r randyThetest, easy bool) *NidRepCustom { this := &NidRepCustom{} if r.Intn(10) != 0 { v119 := r.Intn(10) this.Id = make([]Uuid, v119) for i := 0; i < v119; i++ { v120 := NewPopulatedUuid(r) this.Id[i] = *v120 } } if r.Intn(10) != 0 { v121 := r.Intn(10) this.Value = make([]github_com_gogo_protobuf_test_custom.Uint128, v121) for i := 0; i < v121; i++ { v122 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value[i] = *v122 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinRepCustom(r randyThetest, easy bool) *NinRepCustom { this := &NinRepCustom{} if r.Intn(10) != 0 { v123 := r.Intn(10) this.Id = make([]Uuid, v123) for i := 0; i < v123; i++ { v124 := NewPopulatedUuid(r) this.Id[i] = *v124 } } if r.Intn(10) != 0 { v125 := r.Intn(10) this.Value = make([]github_com_gogo_protobuf_test_custom.Uint128, v125) for i := 0; i < v125; i++ { v126 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value[i] = *v126 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinOptNativeUnion(r randyThetest, easy bool) *NinOptNativeUnion { this := &NinOptNativeUnion{} fieldNum := r.Intn(9) switch fieldNum { case 0: v127 := float64(r.Float64()) if r.Intn(2) == 0 { v127 *= -1 } this.Field1 = &v127 case 1: v128 := float32(r.Float32()) if r.Intn(2) == 0 { v128 *= -1 } this.Field2 = &v128 case 2: v129 := int32(r.Int31()) if r.Intn(2) == 0 { v129 *= -1 } this.Field3 = &v129 case 3: v130 := int64(r.Int63()) if r.Intn(2) == 0 { v130 *= -1 } this.Field4 = &v130 case 4: v131 := uint32(r.Uint32()) this.Field5 = &v131 case 5: v132 := uint64(uint64(r.Uint32())) this.Field6 = &v132 case 6: v133 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v133 case 7: v134 := string(randStringThetest(r)) this.Field14 = &v134 case 8: v135 := r.Intn(100) this.Field15 = make([]byte, v135) for i := 0; i < v135; i++ { this.Field15[i] = byte(r.Intn(256)) } } return this } func NewPopulatedNinOptStructUnion(r randyThetest, easy bool) *NinOptStructUnion { this := &NinOptStructUnion{} fieldNum := r.Intn(9) switch fieldNum { case 0: v136 := float64(r.Float64()) if r.Intn(2) == 0 { v136 *= -1 } this.Field1 = &v136 case 1: v137 := float32(r.Float32()) if r.Intn(2) == 0 { v137 *= -1 } this.Field2 = &v137 case 2: this.Field3 = NewPopulatedNidOptNative(r, easy) case 3: this.Field4 = NewPopulatedNinOptNative(r, easy) case 4: v138 := uint64(uint64(r.Uint32())) this.Field6 = &v138 case 5: v139 := int32(r.Int31()) if r.Intn(2) == 0 { v139 *= -1 } this.Field7 = &v139 case 6: v140 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v140 case 7: v141 := string(randStringThetest(r)) this.Field14 = &v141 case 8: v142 := r.Intn(100) this.Field15 = make([]byte, v142) for i := 0; i < v142; i++ { this.Field15[i] = byte(r.Intn(256)) } } return this } func NewPopulatedNinEmbeddedStructUnion(r randyThetest, easy bool) *NinEmbeddedStructUnion { this := &NinEmbeddedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.NidOptNative = NewPopulatedNidOptNative(r, easy) case 1: this.Field200 = NewPopulatedNinOptNative(r, easy) case 2: v143 := bool(bool(r.Intn(2) == 0)) this.Field210 = &v143 } return this } func NewPopulatedNinNestedStructUnion(r randyThetest, easy bool) *NinNestedStructUnion { this := &NinNestedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.Field1 = NewPopulatedNinOptNativeUnion(r, easy) case 1: this.Field2 = NewPopulatedNinOptStructUnion(r, easy) case 2: this.Field3 = NewPopulatedNinEmbeddedStructUnion(r, easy) } return this } func NewPopulatedTree(r randyThetest, easy bool) *Tree { this := &Tree{} fieldNum := r.Intn(102) switch fieldNum { case 0: this.Or = NewPopulatedOrBranch(r, easy) case 1: this.And = NewPopulatedAndBranch(r, easy) case 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101: this.Leaf = NewPopulatedLeaf(r, easy) } return this } func NewPopulatedOrBranch(r randyThetest, easy bool) *OrBranch { this := &OrBranch{} v144 := NewPopulatedTree(r, easy) this.Left = *v144 v145 := NewPopulatedTree(r, easy) this.Right = *v145 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedAndBranch(r randyThetest, easy bool) *AndBranch { this := &AndBranch{} v146 := NewPopulatedTree(r, easy) this.Left = *v146 v147 := NewPopulatedTree(r, easy) this.Right = *v147 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedLeaf(r randyThetest, easy bool) *Leaf { this := &Leaf{} this.Value = int64(r.Int63()) if r.Intn(2) == 0 { this.Value *= -1 } this.StrValue = string(randStringThetest(r)) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedDeepTree(r randyThetest, easy bool) *DeepTree { this := &DeepTree{} fieldNum := r.Intn(102) switch fieldNum { case 0: this.Down = NewPopulatedADeepBranch(r, easy) case 1: this.And = NewPopulatedAndDeepBranch(r, easy) case 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101: this.Leaf = NewPopulatedDeepLeaf(r, easy) } return this } func NewPopulatedADeepBranch(r randyThetest, easy bool) *ADeepBranch { this := &ADeepBranch{} v148 := NewPopulatedDeepTree(r, easy) this.Down = *v148 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedAndDeepBranch(r randyThetest, easy bool) *AndDeepBranch { this := &AndDeepBranch{} v149 := NewPopulatedDeepTree(r, easy) this.Left = *v149 v150 := NewPopulatedDeepTree(r, easy) this.Right = *v150 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedDeepLeaf(r randyThetest, easy bool) *DeepLeaf { this := &DeepLeaf{} v151 := NewPopulatedTree(r, easy) this.Tree = *v151 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNil(r randyThetest, easy bool) *Nil { this := &Nil{} if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 1) } return this } func NewPopulatedNidOptEnum(r randyThetest, easy bool) *NidOptEnum { this := &NidOptEnum{} this.Field1 = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptEnum(r randyThetest, easy bool) *NinOptEnum { this := &NinOptEnum{} if r.Intn(10) != 0 { v152 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.Field1 = &v152 } if r.Intn(10) != 0 { v153 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v153 } if r.Intn(10) != 0 { v154 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v154 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNidRepEnum(r randyThetest, easy bool) *NidRepEnum { this := &NidRepEnum{} if r.Intn(10) != 0 { v155 := r.Intn(10) this.Field1 = make([]TheTestEnum, v155) for i := 0; i < v155; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v156 := r.Intn(10) this.Field2 = make([]YetAnotherTestEnum, v156) for i := 0; i < v156; i++ { this.Field2[i] = YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if r.Intn(10) != 0 { v157 := r.Intn(10) this.Field3 = make([]YetYetAnotherTestEnum, v157) for i := 0; i < v157; i++ { this.Field3[i] = YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinRepEnum(r randyThetest, easy bool) *NinRepEnum { this := &NinRepEnum{} if r.Intn(10) != 0 { v158 := r.Intn(10) this.Field1 = make([]TheTestEnum, v158) for i := 0; i < v158; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v159 := r.Intn(10) this.Field2 = make([]YetAnotherTestEnum, v159) for i := 0; i < v159; i++ { this.Field2[i] = YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if r.Intn(10) != 0 { v160 := r.Intn(10) this.Field3 = make([]YetYetAnotherTestEnum, v160) for i := 0; i < v160; i++ { this.Field3[i] = YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinOptEnumDefault(r randyThetest, easy bool) *NinOptEnumDefault { this := &NinOptEnumDefault{} if r.Intn(10) != 0 { v161 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.Field1 = &v161 } if r.Intn(10) != 0 { v162 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v162 } if r.Intn(10) != 0 { v163 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v163 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedAnotherNinOptEnum(r randyThetest, easy bool) *AnotherNinOptEnum { this := &AnotherNinOptEnum{} if r.Intn(10) != 0 { v164 := AnotherTestEnum([]int32{10, 11}[r.Intn(2)]) this.Field1 = &v164 } if r.Intn(10) != 0 { v165 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v165 } if r.Intn(10) != 0 { v166 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v166 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedAnotherNinOptEnumDefault(r randyThetest, easy bool) *AnotherNinOptEnumDefault { this := &AnotherNinOptEnumDefault{} if r.Intn(10) != 0 { v167 := AnotherTestEnum([]int32{10, 11}[r.Intn(2)]) this.Field1 = &v167 } if r.Intn(10) != 0 { v168 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v168 } if r.Intn(10) != 0 { v169 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v169 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedTimer(r randyThetest, easy bool) *Timer { this := &Timer{} this.Time1 = int64(r.Int63()) if r.Intn(2) == 0 { this.Time1 *= -1 } this.Time2 = int64(r.Int63()) if r.Intn(2) == 0 { this.Time2 *= -1 } v170 := r.Intn(100) this.Data = make([]byte, v170) for i := 0; i < v170; i++ { this.Data[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedMyExtendable(r randyThetest, easy bool) *MyExtendable { this := &MyExtendable{} if r.Intn(10) != 0 { v171 := int64(r.Int63()) if r.Intn(2) == 0 { v171 *= -1 } this.Field1 = &v171 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { fieldNumber := r.Intn(100) + 100 wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 201) } return this } func NewPopulatedOtherExtenable(r randyThetest, easy bool) *OtherExtenable { this := &OtherExtenable{} if r.Intn(10) != 0 { v172 := int64(r.Int63()) if r.Intn(2) == 0 { v172 *= -1 } this.Field2 = &v172 } if r.Intn(10) != 0 { v173 := int64(r.Int63()) if r.Intn(2) == 0 { v173 *= -1 } this.Field13 = &v173 } if r.Intn(10) != 0 { this.M = NewPopulatedMyExtendable(r, easy) } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { eIndex := r.Intn(2) fieldNumber := 0 switch eIndex { case 0: fieldNumber = r.Intn(3) + 14 case 1: fieldNumber = r.Intn(3) + 10 } wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 18) } return this } func NewPopulatedNestedDefinition(r randyThetest, easy bool) *NestedDefinition { this := &NestedDefinition{} if r.Intn(10) != 0 { v174 := int64(r.Int63()) if r.Intn(2) == 0 { v174 *= -1 } this.Field1 = &v174 } if r.Intn(10) != 0 { v175 := NestedDefinition_NestedEnum([]int32{1}[r.Intn(1)]) this.EnumField = &v175 } if r.Intn(10) != 0 { this.NNM = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if r.Intn(10) != 0 { this.NM = NewPopulatedNestedDefinition_NestedMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 5) } return this } func NewPopulatedNestedDefinition_NestedMessage(r randyThetest, easy bool) *NestedDefinition_NestedMessage { this := &NestedDefinition_NestedMessage{} if r.Intn(10) != 0 { v176 := uint64(uint64(r.Uint32())) this.NestedField1 = &v176 } if r.Intn(10) != 0 { this.NNM = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r randyThetest, easy bool) *NestedDefinition_NestedMessage_NestedNestedMsg { this := &NestedDefinition_NestedMessage_NestedNestedMsg{} if r.Intn(10) != 0 { v177 := string(randStringThetest(r)) this.NestedNestedField1 = &v177 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 11) } return this } func NewPopulatedNestedScope(r randyThetest, easy bool) *NestedScope { this := &NestedScope{} if r.Intn(10) != 0 { this.A = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if r.Intn(10) != 0 { v178 := NestedDefinition_NestedEnum([]int32{1}[r.Intn(1)]) this.B = &v178 } if r.Intn(10) != 0 { this.C = NewPopulatedNestedDefinition_NestedMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinOptNativeDefault(r randyThetest, easy bool) *NinOptNativeDefault { this := &NinOptNativeDefault{} if r.Intn(10) != 0 { v179 := float64(r.Float64()) if r.Intn(2) == 0 { v179 *= -1 } this.Field1 = &v179 } if r.Intn(10) != 0 { v180 := float32(r.Float32()) if r.Intn(2) == 0 { v180 *= -1 } this.Field2 = &v180 } if r.Intn(10) != 0 { v181 := int32(r.Int31()) if r.Intn(2) == 0 { v181 *= -1 } this.Field3 = &v181 } if r.Intn(10) != 0 { v182 := int64(r.Int63()) if r.Intn(2) == 0 { v182 *= -1 } this.Field4 = &v182 } if r.Intn(10) != 0 { v183 := uint32(r.Uint32()) this.Field5 = &v183 } if r.Intn(10) != 0 { v184 := uint64(uint64(r.Uint32())) this.Field6 = &v184 } if r.Intn(10) != 0 { v185 := int32(r.Int31()) if r.Intn(2) == 0 { v185 *= -1 } this.Field7 = &v185 } if r.Intn(10) != 0 { v186 := int64(r.Int63()) if r.Intn(2) == 0 { v186 *= -1 } this.Field8 = &v186 } if r.Intn(10) != 0 { v187 := uint32(r.Uint32()) this.Field9 = &v187 } if r.Intn(10) != 0 { v188 := int32(r.Int31()) if r.Intn(2) == 0 { v188 *= -1 } this.Field10 = &v188 } if r.Intn(10) != 0 { v189 := uint64(uint64(r.Uint32())) this.Field11 = &v189 } if r.Intn(10) != 0 { v190 := int64(r.Int63()) if r.Intn(2) == 0 { v190 *= -1 } this.Field12 = &v190 } if r.Intn(10) != 0 { v191 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v191 } if r.Intn(10) != 0 { v192 := string(randStringThetest(r)) this.Field14 = &v192 } if r.Intn(10) != 0 { v193 := r.Intn(100) this.Field15 = make([]byte, v193) for i := 0; i < v193; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomContainer(r randyThetest, easy bool) *CustomContainer { this := &CustomContainer{} v194 := NewPopulatedNidOptCustom(r, easy) this.CustomStruct = *v194 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedCustomNameNidOptNative(r randyThetest, easy bool) *CustomNameNidOptNative { this := &CustomNameNidOptNative{} this.FieldA = float64(r.Float64()) if r.Intn(2) == 0 { this.FieldA *= -1 } this.FieldB = float32(r.Float32()) if r.Intn(2) == 0 { this.FieldB *= -1 } this.FieldC = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldC *= -1 } this.FieldD = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldD *= -1 } this.FieldE = uint32(r.Uint32()) this.FieldF = uint64(uint64(r.Uint32())) this.FieldG = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldG *= -1 } this.FieldH = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldH *= -1 } this.FieldI = uint32(r.Uint32()) this.FieldJ = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldJ *= -1 } this.FieldK = uint64(uint64(r.Uint32())) this.FieldL = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldL *= -1 } this.FieldM = bool(bool(r.Intn(2) == 0)) this.FieldN = string(randStringThetest(r)) v195 := r.Intn(100) this.FieldO = make([]byte, v195) for i := 0; i < v195; i++ { this.FieldO[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinOptNative(r randyThetest, easy bool) *CustomNameNinOptNative { this := &CustomNameNinOptNative{} if r.Intn(10) != 0 { v196 := float64(r.Float64()) if r.Intn(2) == 0 { v196 *= -1 } this.FieldA = &v196 } if r.Intn(10) != 0 { v197 := float32(r.Float32()) if r.Intn(2) == 0 { v197 *= -1 } this.FieldB = &v197 } if r.Intn(10) != 0 { v198 := int32(r.Int31()) if r.Intn(2) == 0 { v198 *= -1 } this.FieldC = &v198 } if r.Intn(10) != 0 { v199 := int64(r.Int63()) if r.Intn(2) == 0 { v199 *= -1 } this.FieldD = &v199 } if r.Intn(10) != 0 { v200 := uint32(r.Uint32()) this.FieldE = &v200 } if r.Intn(10) != 0 { v201 := uint64(uint64(r.Uint32())) this.FieldF = &v201 } if r.Intn(10) != 0 { v202 := int32(r.Int31()) if r.Intn(2) == 0 { v202 *= -1 } this.FieldG = &v202 } if r.Intn(10) != 0 { v203 := int64(r.Int63()) if r.Intn(2) == 0 { v203 *= -1 } this.FieldH = &v203 } if r.Intn(10) != 0 { v204 := uint32(r.Uint32()) this.FieldI = &v204 } if r.Intn(10) != 0 { v205 := int32(r.Int31()) if r.Intn(2) == 0 { v205 *= -1 } this.FieldJ = &v205 } if r.Intn(10) != 0 { v206 := uint64(uint64(r.Uint32())) this.FieldK = &v206 } if r.Intn(10) != 0 { v207 := int64(r.Int63()) if r.Intn(2) == 0 { v207 *= -1 } this.FielL = &v207 } if r.Intn(10) != 0 { v208 := bool(bool(r.Intn(2) == 0)) this.FieldM = &v208 } if r.Intn(10) != 0 { v209 := string(randStringThetest(r)) this.FieldN = &v209 } if r.Intn(10) != 0 { v210 := r.Intn(100) this.FieldO = make([]byte, v210) for i := 0; i < v210; i++ { this.FieldO[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinRepNative(r randyThetest, easy bool) *CustomNameNinRepNative { this := &CustomNameNinRepNative{} if r.Intn(10) != 0 { v211 := r.Intn(10) this.FieldA = make([]float64, v211) for i := 0; i < v211; i++ { this.FieldA[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.FieldA[i] *= -1 } } } if r.Intn(10) != 0 { v212 := r.Intn(10) this.FieldB = make([]float32, v212) for i := 0; i < v212; i++ { this.FieldB[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.FieldB[i] *= -1 } } } if r.Intn(10) != 0 { v213 := r.Intn(10) this.FieldC = make([]int32, v213) for i := 0; i < v213; i++ { this.FieldC[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldC[i] *= -1 } } } if r.Intn(10) != 0 { v214 := r.Intn(10) this.FieldD = make([]int64, v214) for i := 0; i < v214; i++ { this.FieldD[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldD[i] *= -1 } } } if r.Intn(10) != 0 { v215 := r.Intn(10) this.FieldE = make([]uint32, v215) for i := 0; i < v215; i++ { this.FieldE[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v216 := r.Intn(10) this.FieldF = make([]uint64, v216) for i := 0; i < v216; i++ { this.FieldF[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v217 := r.Intn(10) this.FieldG = make([]int32, v217) for i := 0; i < v217; i++ { this.FieldG[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldG[i] *= -1 } } } if r.Intn(10) != 0 { v218 := r.Intn(10) this.FieldH = make([]int64, v218) for i := 0; i < v218; i++ { this.FieldH[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldH[i] *= -1 } } } if r.Intn(10) != 0 { v219 := r.Intn(10) this.FieldI = make([]uint32, v219) for i := 0; i < v219; i++ { this.FieldI[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v220 := r.Intn(10) this.FieldJ = make([]int32, v220) for i := 0; i < v220; i++ { this.FieldJ[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldJ[i] *= -1 } } } if r.Intn(10) != 0 { v221 := r.Intn(10) this.FieldK = make([]uint64, v221) for i := 0; i < v221; i++ { this.FieldK[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v222 := r.Intn(10) this.FieldL = make([]int64, v222) for i := 0; i < v222; i++ { this.FieldL[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldL[i] *= -1 } } } if r.Intn(10) != 0 { v223 := r.Intn(10) this.FieldM = make([]bool, v223) for i := 0; i < v223; i++ { this.FieldM[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v224 := r.Intn(10) this.FieldN = make([]string, v224) for i := 0; i < v224; i++ { this.FieldN[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v225 := r.Intn(10) this.FieldO = make([][]byte, v225) for i := 0; i < v225; i++ { v226 := r.Intn(100) this.FieldO[i] = make([]byte, v226) for j := 0; j < v226; j++ { this.FieldO[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinStruct(r randyThetest, easy bool) *CustomNameNinStruct { this := &CustomNameNinStruct{} if r.Intn(10) != 0 { v227 := float64(r.Float64()) if r.Intn(2) == 0 { v227 *= -1 } this.FieldA = &v227 } if r.Intn(10) != 0 { v228 := float32(r.Float32()) if r.Intn(2) == 0 { v228 *= -1 } this.FieldB = &v228 } if r.Intn(10) != 0 { this.FieldC = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v229 := r.Intn(5) this.FieldD = make([]*NinOptNative, v229) for i := 0; i < v229; i++ { this.FieldD[i] = NewPopulatedNinOptNative(r, easy) } } if r.Intn(10) != 0 { v230 := uint64(uint64(r.Uint32())) this.FieldE = &v230 } if r.Intn(10) != 0 { v231 := int32(r.Int31()) if r.Intn(2) == 0 { v231 *= -1 } this.FieldF = &v231 } if r.Intn(10) != 0 { this.FieldG = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v232 := bool(bool(r.Intn(2) == 0)) this.FieldH = &v232 } if r.Intn(10) != 0 { v233 := string(randStringThetest(r)) this.FieldI = &v233 } if r.Intn(10) != 0 { v234 := r.Intn(100) this.FieldJ = make([]byte, v234) for i := 0; i < v234; i++ { this.FieldJ[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameCustomType(r randyThetest, easy bool) *CustomNameCustomType { this := &CustomNameCustomType{} if r.Intn(10) != 0 { this.FieldA = NewPopulatedUuid(r) } if r.Intn(10) != 0 { this.FieldB = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) } if r.Intn(10) != 0 { v235 := r.Intn(10) this.FieldC = make([]Uuid, v235) for i := 0; i < v235; i++ { v236 := NewPopulatedUuid(r) this.FieldC[i] = *v236 } } if r.Intn(10) != 0 { v237 := r.Intn(10) this.FieldD = make([]github_com_gogo_protobuf_test_custom.Uint128, v237) for i := 0; i < v237; i++ { v238 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.FieldD[i] = *v238 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 5) } return this } func NewPopulatedCustomNameNinEmbeddedStructUnion(r randyThetest, easy bool) *CustomNameNinEmbeddedStructUnion { this := &CustomNameNinEmbeddedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.NidOptNative = NewPopulatedNidOptNative(r, easy) case 1: this.FieldA = NewPopulatedNinOptNative(r, easy) case 2: v239 := bool(bool(r.Intn(2) == 0)) this.FieldB = &v239 } return this } func NewPopulatedCustomNameEnum(r randyThetest, easy bool) *CustomNameEnum { this := &CustomNameEnum{} if r.Intn(10) != 0 { v240 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.FieldA = &v240 } if r.Intn(10) != 0 { v241 := r.Intn(10) this.FieldB = make([]TheTestEnum, v241) for i := 0; i < v241; i++ { this.FieldB[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNoExtensionsMap(r randyThetest, easy bool) *NoExtensionsMap { this := &NoExtensionsMap{} if r.Intn(10) != 0 { v242 := int64(r.Int63()) if r.Intn(2) == 0 { v242 *= -1 } this.Field1 = &v242 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { fieldNumber := r.Intn(100) + 100 wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 201) } return this } func NewPopulatedUnrecognized(r randyThetest, easy bool) *Unrecognized { this := &Unrecognized{} if r.Intn(10) != 0 { v243 := string(randStringThetest(r)) this.Field1 = &v243 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUnrecognizedWithInner(r randyThetest, easy bool) *UnrecognizedWithInner { this := &UnrecognizedWithInner{} if r.Intn(10) != 0 { v244 := r.Intn(5) this.Embedded = make([]*UnrecognizedWithInner_Inner, v244) for i := 0; i < v244; i++ { this.Embedded[i] = NewPopulatedUnrecognizedWithInner_Inner(r, easy) } } if r.Intn(10) != 0 { v245 := string(randStringThetest(r)) this.Field2 = &v245 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedUnrecognizedWithInner_Inner(r randyThetest, easy bool) *UnrecognizedWithInner_Inner { this := &UnrecognizedWithInner_Inner{} if r.Intn(10) != 0 { v246 := uint32(r.Uint32()) this.Field1 = &v246 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUnrecognizedWithEmbed(r randyThetest, easy bool) *UnrecognizedWithEmbed { this := &UnrecognizedWithEmbed{} v247 := NewPopulatedUnrecognizedWithEmbed_Embedded(r, easy) this.UnrecognizedWithEmbed_Embedded = *v247 if r.Intn(10) != 0 { v248 := string(randStringThetest(r)) this.Field2 = &v248 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedUnrecognizedWithEmbed_Embedded(r randyThetest, easy bool) *UnrecognizedWithEmbed_Embedded { this := &UnrecognizedWithEmbed_Embedded{} if r.Intn(10) != 0 { v249 := uint32(r.Uint32()) this.Field1 = &v249 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNode(r randyThetest, easy bool) *Node { this := &Node{} if r.Intn(10) != 0 { v250 := string(randStringThetest(r)) this.Label = &v250 } if r.Intn(10) == 0 { v251 := r.Intn(5) this.Children = make([]*Node, v251) for i := 0; i < v251; i++ { this.Children[i] = NewPopulatedNode(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNonByteCustomType(r randyThetest, easy bool) *NonByteCustomType { this := &NonByteCustomType{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedT(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNidOptNonByteCustomType(r randyThetest, easy bool) *NidOptNonByteCustomType { this := &NidOptNonByteCustomType{} v252 := NewPopulatedT(r) this.Field1 = *v252 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptNonByteCustomType(r randyThetest, easy bool) *NinOptNonByteCustomType { this := &NinOptNonByteCustomType{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedT(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNidRepNonByteCustomType(r randyThetest, easy bool) *NidRepNonByteCustomType { this := &NidRepNonByteCustomType{} if r.Intn(10) != 0 { v253 := r.Intn(10) this.Field1 = make([]T, v253) for i := 0; i < v253; i++ { v254 := NewPopulatedT(r) this.Field1[i] = *v254 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinRepNonByteCustomType(r randyThetest, easy bool) *NinRepNonByteCustomType { this := &NinRepNonByteCustomType{} if r.Intn(10) != 0 { v255 := r.Intn(10) this.Field1 = make([]T, v255) for i := 0; i < v255; i++ { v256 := NewPopulatedT(r) this.Field1[i] = *v256 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedProtoType(r randyThetest, easy bool) *ProtoType { this := &ProtoType{} if r.Intn(10) != 0 { v257 := string(randStringThetest(r)) this.Field2 = &v257 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } type randyThetest interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneThetest(r randyThetest) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringThetest(r randyThetest) string { v258 := r.Intn(100) tmps := make([]rune, v258) for i := 0; i < v258; i++ { tmps[i] = randUTF8RuneThetest(r) } return string(tmps) } func randUnrecognizedThetest(r randyThetest, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldThetest(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldThetest(dAtA []byte, r randyThetest, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) v259 := r.Int63() if r.Intn(2) == 0 { v259 *= -1 } dAtA = encodeVarintPopulateThetest(dAtA, uint64(v259)) case 1: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateThetest(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateThetest(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *NidOptNative) Size() (n int) { var l int _ = l n += 9 n += 5 n += 1 + sovThetest(uint64(m.Field3)) n += 1 + sovThetest(uint64(m.Field4)) n += 1 + sovThetest(uint64(m.Field5)) n += 1 + sovThetest(uint64(m.Field6)) n += 1 + sozThetest(uint64(m.Field7)) n += 1 + sozThetest(uint64(m.Field8)) n += 5 n += 5 n += 9 n += 9 n += 2 l = len(m.Field14) n += 1 + l + sovThetest(uint64(l)) if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNative) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozThetest(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field5) > 0 { for _, e := range m.Field5 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field9) > 0 { n += 5 * len(m.Field9) } if len(m.Field10) > 0 { n += 5 * len(m.Field10) } if len(m.Field11) > 0 { n += 9 * len(m.Field11) } if len(m.Field12) > 0 { n += 9 * len(m.Field12) } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field5) > 0 { for _, e := range m.Field5 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field9) > 0 { n += 5 * len(m.Field9) } if len(m.Field10) > 0 { n += 5 * len(m.Field10) } if len(m.Field11) > 0 { n += 9 * len(m.Field11) } if len(m.Field12) > 0 { n += 9 * len(m.Field12) } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepPackedNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 1 + sovThetest(uint64(len(m.Field1)*8)) + len(m.Field1)*8 } if len(m.Field2) > 0 { n += 1 + sovThetest(uint64(len(m.Field2)*4)) + len(m.Field2)*4 } if len(m.Field3) > 0 { l = 0 for _, e := range m.Field3 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field4) > 0 { l = 0 for _, e := range m.Field4 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field5) > 0 { l = 0 for _, e := range m.Field5 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field6) > 0 { l = 0 for _, e := range m.Field6 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field7) > 0 { l = 0 for _, e := range m.Field7 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field8) > 0 { l = 0 for _, e := range m.Field8 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field9) > 0 { n += 1 + sovThetest(uint64(len(m.Field9)*4)) + len(m.Field9)*4 } if len(m.Field10) > 0 { n += 1 + sovThetest(uint64(len(m.Field10)*4)) + len(m.Field10)*4 } if len(m.Field11) > 0 { n += 1 + sovThetest(uint64(len(m.Field11)*8)) + len(m.Field11)*8 } if len(m.Field12) > 0 { n += 1 + sovThetest(uint64(len(m.Field12)*8)) + len(m.Field12)*8 } if len(m.Field13) > 0 { n += 1 + sovThetest(uint64(len(m.Field13))) + len(m.Field13)*1 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepPackedNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 1 + sovThetest(uint64(len(m.Field1)*8)) + len(m.Field1)*8 } if len(m.Field2) > 0 { n += 1 + sovThetest(uint64(len(m.Field2)*4)) + len(m.Field2)*4 } if len(m.Field3) > 0 { l = 0 for _, e := range m.Field3 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field4) > 0 { l = 0 for _, e := range m.Field4 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field5) > 0 { l = 0 for _, e := range m.Field5 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field6) > 0 { l = 0 for _, e := range m.Field6 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field7) > 0 { l = 0 for _, e := range m.Field7 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field8) > 0 { l = 0 for _, e := range m.Field8 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field9) > 0 { n += 1 + sovThetest(uint64(len(m.Field9)*4)) + len(m.Field9)*4 } if len(m.Field10) > 0 { n += 1 + sovThetest(uint64(len(m.Field10)*4)) + len(m.Field10)*4 } if len(m.Field11) > 0 { n += 1 + sovThetest(uint64(len(m.Field11)*8)) + len(m.Field11)*8 } if len(m.Field12) > 0 { n += 1 + sovThetest(uint64(len(m.Field12)*8)) + len(m.Field12)*8 } if len(m.Field13) > 0 { n += 1 + sovThetest(uint64(len(m.Field13))) + len(m.Field13)*1 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptStruct) Size() (n int) { var l int _ = l n += 9 n += 5 l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) n += 1 + sovThetest(uint64(m.Field6)) n += 1 + sozThetest(uint64(m.Field7)) l = m.Field8.Size() n += 1 + l + sovThetest(uint64(l)) n += 2 l = len(m.Field14) n += 1 + l + sovThetest(uint64(l)) if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptStruct) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field4 != nil { l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { l = m.Field8.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepStruct) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepStruct) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidEmbeddedStruct) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) n += 3 if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinEmbeddedStruct) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field200 != nil { l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) } if m.Field210 != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidNestedStruct) Size() (n int) { var l int _ = l l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) if len(m.Field2) > 0 { for _, e := range m.Field2 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinNestedStruct) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.Field2) > 0 { for _, e := range m.Field2 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptCustom) Size() (n int) { var l int _ = l l = m.Id.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomDash) Size() (n int) { var l int _ = l if m.Value != nil { l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptCustom) Size() (n int) { var l int _ = l if m.Id != nil { l = m.Id.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Value != nil { l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepCustom) Size() (n int) { var l int _ = l if len(m.Id) > 0 { for _, e := range m.Id { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Value) > 0 { for _, e := range m.Value { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepCustom) Size() (n int) { var l int _ = l if len(m.Id) > 0 { for _, e := range m.Id { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Value) > 0 { for _, e := range m.Value { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNativeUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptStructUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field4 != nil { l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinEmbeddedStructUnion) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field200 != nil { l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) } if m.Field210 != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinNestedStructUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field2 != nil { l = m.Field2.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Tree) Size() (n int) { var l int _ = l if m.Or != nil { l = m.Or.Size() n += 1 + l + sovThetest(uint64(l)) } if m.And != nil { l = m.And.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Leaf != nil { l = m.Leaf.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OrBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AndBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Leaf) Size() (n int) { var l int _ = l n += 1 + sovThetest(uint64(m.Value)) l = len(m.StrValue) n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *DeepTree) Size() (n int) { var l int _ = l if m.Down != nil { l = m.Down.Size() n += 1 + l + sovThetest(uint64(l)) } if m.And != nil { l = m.And.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Leaf != nil { l = m.Leaf.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *ADeepBranch) Size() (n int) { var l int _ = l l = m.Down.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AndDeepBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *DeepLeaf) Size() (n int) { var l int _ = l l = m.Tree.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Nil) Size() (n int) { var l int _ = l if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptEnum) Size() (n int) { var l int _ = l n += 1 + sovThetest(uint64(m.Field1)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptEnum) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepEnum) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field2) > 0 { for _, e := range m.Field2 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepEnum) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field2) > 0 { for _, e := range m.Field2 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptEnumDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AnotherNinOptEnum) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AnotherNinOptEnumDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Timer) Size() (n int) { var l int _ = l n += 9 n += 9 if m.Data != nil { l = len(m.Data) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *MyExtendable) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } n += github_com_gogo_protobuf_proto.SizeOfInternalExtension(m) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OtherExtenable) Size() (n int) { var l int _ = l if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field13 != nil { n += 1 + sovThetest(uint64(*m.Field13)) } if m.M != nil { l = m.M.Size() n += 1 + l + sovThetest(uint64(l)) } n += github_com_gogo_protobuf_proto.SizeOfInternalExtension(m) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.EnumField != nil { n += 1 + sovThetest(uint64(*m.EnumField)) } if m.NNM != nil { l = m.NNM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.NM != nil { l = m.NM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition_NestedMessage) Size() (n int) { var l int _ = l if m.NestedField1 != nil { n += 9 } if m.NNM != nil { l = m.NNM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Size() (n int) { var l int _ = l if m.NestedNestedField1 != nil { l = len(*m.NestedNestedField1) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedScope) Size() (n int) { var l int _ = l if m.A != nil { l = m.A.Size() n += 1 + l + sovThetest(uint64(l)) } if m.B != nil { n += 1 + sovThetest(uint64(*m.B)) } if m.C != nil { l = m.C.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNativeDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozThetest(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomContainer) Size() (n int) { var l int _ = l l = m.CustomStruct.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNidOptNative) Size() (n int) { var l int _ = l n += 9 n += 5 n += 1 + sovThetest(uint64(m.FieldC)) n += 1 + sovThetest(uint64(m.FieldD)) n += 1 + sovThetest(uint64(m.FieldE)) n += 1 + sovThetest(uint64(m.FieldF)) n += 1 + sozThetest(uint64(m.FieldG)) n += 1 + sozThetest(uint64(m.FieldH)) n += 5 n += 5 n += 9 n += 9 n += 2 l = len(m.FieldN) n += 1 + l + sovThetest(uint64(l)) if m.FieldO != nil { l = len(m.FieldO) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinOptNative) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 9 } if m.FieldB != nil { n += 5 } if m.FieldC != nil { n += 1 + sovThetest(uint64(*m.FieldC)) } if m.FieldD != nil { n += 1 + sovThetest(uint64(*m.FieldD)) } if m.FieldE != nil { n += 1 + sovThetest(uint64(*m.FieldE)) } if m.FieldF != nil { n += 1 + sovThetest(uint64(*m.FieldF)) } if m.FieldG != nil { n += 1 + sozThetest(uint64(*m.FieldG)) } if m.FieldH != nil { n += 1 + sozThetest(uint64(*m.FieldH)) } if m.FieldI != nil { n += 5 } if m.FieldJ != nil { n += 5 } if m.FieldK != nil { n += 9 } if m.FielL != nil { n += 9 } if m.FieldM != nil { n += 2 } if m.FieldN != nil { l = len(*m.FieldN) n += 1 + l + sovThetest(uint64(l)) } if m.FieldO != nil { l = len(m.FieldO) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinRepNative) Size() (n int) { var l int _ = l if len(m.FieldA) > 0 { n += 9 * len(m.FieldA) } if len(m.FieldB) > 0 { n += 5 * len(m.FieldB) } if len(m.FieldC) > 0 { for _, e := range m.FieldC { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldD) > 0 { for _, e := range m.FieldD { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldE) > 0 { for _, e := range m.FieldE { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldF) > 0 { for _, e := range m.FieldF { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldG) > 0 { for _, e := range m.FieldG { n += 1 + sozThetest(uint64(e)) } } if len(m.FieldH) > 0 { for _, e := range m.FieldH { n += 1 + sozThetest(uint64(e)) } } if len(m.FieldI) > 0 { n += 5 * len(m.FieldI) } if len(m.FieldJ) > 0 { n += 5 * len(m.FieldJ) } if len(m.FieldK) > 0 { n += 9 * len(m.FieldK) } if len(m.FieldL) > 0 { n += 9 * len(m.FieldL) } if len(m.FieldM) > 0 { n += 2 * len(m.FieldM) } if len(m.FieldN) > 0 { for _, s := range m.FieldN { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.FieldO) > 0 { for _, b := range m.FieldO { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinStruct) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 9 } if m.FieldB != nil { n += 5 } if m.FieldC != nil { l = m.FieldC.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.FieldD) > 0 { for _, e := range m.FieldD { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.FieldE != nil { n += 1 + sovThetest(uint64(*m.FieldE)) } if m.FieldF != nil { n += 1 + sozThetest(uint64(*m.FieldF)) } if m.FieldG != nil { l = m.FieldG.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldH != nil { n += 2 } if m.FieldI != nil { l = len(*m.FieldI) n += 1 + l + sovThetest(uint64(l)) } if m.FieldJ != nil { l = len(m.FieldJ) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameCustomType) Size() (n int) { var l int _ = l if m.FieldA != nil { l = m.FieldA.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldB != nil { l = m.FieldB.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.FieldC) > 0 { for _, e := range m.FieldC { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.FieldD) > 0 { for _, e := range m.FieldD { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinEmbeddedStructUnion) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldA != nil { l = m.FieldA.Size() n += 2 + l + sovThetest(uint64(l)) } if m.FieldB != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameEnum) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 1 + sovThetest(uint64(*m.FieldA)) } if len(m.FieldB) > 0 { for _, e := range m.FieldB { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NoExtensionsMap) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.XXX_extensions != nil { n += len(m.XXX_extensions) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Unrecognized) Size() (n int) { var l int _ = l if m.Field1 != nil { l = len(*m.Field1) n += 1 + l + sovThetest(uint64(l)) } return n } func (m *UnrecognizedWithInner) Size() (n int) { var l int _ = l if len(m.Embedded) > 0 { for _, e := range m.Embedded { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *UnrecognizedWithInner_Inner) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } return n } func (m *UnrecognizedWithEmbed) Size() (n int) { var l int _ = l l = m.UnrecognizedWithEmbed_Embedded.Size() n += 1 + l + sovThetest(uint64(l)) if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *UnrecognizedWithEmbed_Embedded) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } return n } func (m *Node) Size() (n int) { var l int _ = l if m.Label != nil { l = len(*m.Label) n += 1 + l + sovThetest(uint64(l)) } if len(m.Children) > 0 { for _, e := range m.Children { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NonByteCustomType) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptNonByteCustomType) Size() (n int) { var l int _ = l l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNonByteCustomType) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepNonByteCustomType) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepNonByteCustomType) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *ProtoType) Size() (n int) { var l int _ = l if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovThetest(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozThetest(x uint64) (n int) { return sovThetest(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *NidOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNative{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + valueToStringThetest(this.Field8) + `,`, `Field9:` + valueToStringThetest(this.Field9) + `,`, `Field10:` + valueToStringThetest(this.Field10) + `,`, `Field11:` + valueToStringThetest(this.Field11) + `,`, `Field12:` + valueToStringThetest(this.Field12) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepPackedNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepPackedNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepPackedNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepPackedNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(strings.Replace(this.Field3.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field4:` + strings.Replace(strings.Replace(this.Field4.String(), "NinOptNative", "NinOptNative", 1), `&`, ``, 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(strings.Replace(this.Field8.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptStruct{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field4:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1), `&`, ``, 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidEmbeddedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidEmbeddedStruct{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(strings.Replace(this.Field200.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field210:` + fmt.Sprintf("%v", this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinEmbeddedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinEmbeddedStruct{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(fmt.Sprintf("%v", this.Field200), "NidOptNative", "NidOptNative", 1) + `,`, `Field210:` + valueToStringThetest(this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidNestedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidNestedStruct{`, `Field1:` + strings.Replace(strings.Replace(this.Field1.String(), "NidOptStruct", "NidOptStruct", 1), `&`, ``, 1) + `,`, `Field2:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field2), "NidRepStruct", "NidRepStruct", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinNestedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinNestedStruct{`, `Field1:` + strings.Replace(fmt.Sprintf("%v", this.Field1), "NinOptStruct", "NinOptStruct", 1) + `,`, `Field2:` + strings.Replace(fmt.Sprintf("%v", this.Field2), "NinRepStruct", "NinRepStruct", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomDash) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomDash{`, `Value:` + valueToStringThetest(this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptCustom{`, `Id:` + valueToStringThetest(this.Id) + `,`, `Value:` + valueToStringThetest(this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNativeUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNativeUnion{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptStructUnion{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinEmbeddedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinEmbeddedStructUnion{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(fmt.Sprintf("%v", this.Field200), "NinOptNative", "NinOptNative", 1) + `,`, `Field210:` + valueToStringThetest(this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinNestedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinNestedStructUnion{`, `Field1:` + strings.Replace(fmt.Sprintf("%v", this.Field1), "NinOptNativeUnion", "NinOptNativeUnion", 1) + `,`, `Field2:` + strings.Replace(fmt.Sprintf("%v", this.Field2), "NinOptStructUnion", "NinOptStructUnion", 1) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NinEmbeddedStructUnion", "NinEmbeddedStructUnion", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Tree) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Tree{`, `Or:` + strings.Replace(fmt.Sprintf("%v", this.Or), "OrBranch", "OrBranch", 1) + `,`, `And:` + strings.Replace(fmt.Sprintf("%v", this.And), "AndBranch", "AndBranch", 1) + `,`, `Leaf:` + strings.Replace(fmt.Sprintf("%v", this.Leaf), "Leaf", "Leaf", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OrBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OrBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AndBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AndBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Leaf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Leaf{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `StrValue:` + fmt.Sprintf("%v", this.StrValue) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *DeepTree) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&DeepTree{`, `Down:` + strings.Replace(fmt.Sprintf("%v", this.Down), "ADeepBranch", "ADeepBranch", 1) + `,`, `And:` + strings.Replace(fmt.Sprintf("%v", this.And), "AndDeepBranch", "AndDeepBranch", 1) + `,`, `Leaf:` + strings.Replace(fmt.Sprintf("%v", this.Leaf), "DeepLeaf", "DeepLeaf", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *ADeepBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ADeepBranch{`, `Down:` + strings.Replace(strings.Replace(this.Down.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AndDeepBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AndDeepBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *DeepLeaf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&DeepLeaf{`, `Tree:` + strings.Replace(strings.Replace(this.Tree.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Nil) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Nil{`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptEnum{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptEnumDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptEnumDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AnotherNinOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AnotherNinOptEnum{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AnotherNinOptEnumDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AnotherNinOptEnumDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Timer) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Timer{`, `Time1:` + fmt.Sprintf("%v", this.Time1) + `,`, `Time2:` + fmt.Sprintf("%v", this.Time2) + `,`, `Data:` + fmt.Sprintf("%v", this.Data) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *MyExtendable) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&MyExtendable{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_InternalExtensions:` + github_com_gogo_protobuf_proto.StringFromInternalExtension(this) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OtherExtenable) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OtherExtenable{`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `M:` + strings.Replace(fmt.Sprintf("%v", this.M), "MyExtendable", "MyExtendable", 1) + `,`, `XXX_InternalExtensions:` + github_com_gogo_protobuf_proto.StringFromInternalExtension(this) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `EnumField:` + valueToStringThetest(this.EnumField) + `,`, `NNM:` + strings.Replace(fmt.Sprintf("%v", this.NNM), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `NM:` + strings.Replace(fmt.Sprintf("%v", this.NM), "NestedDefinition_NestedMessage", "NestedDefinition_NestedMessage", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition_NestedMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition_NestedMessage{`, `NestedField1:` + valueToStringThetest(this.NestedField1) + `,`, `NNM:` + strings.Replace(fmt.Sprintf("%v", this.NNM), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition_NestedMessage_NestedNestedMsg{`, `NestedNestedField1:` + valueToStringThetest(this.NestedNestedField1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedScope) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedScope{`, `A:` + strings.Replace(fmt.Sprintf("%v", this.A), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `B:` + valueToStringThetest(this.B) + `,`, `C:` + strings.Replace(fmt.Sprintf("%v", this.C), "NestedDefinition_NestedMessage", "NestedDefinition_NestedMessage", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNativeDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNativeDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + valueToStringThetest(this.Field8) + `,`, `Field9:` + valueToStringThetest(this.Field9) + `,`, `Field10:` + valueToStringThetest(this.Field10) + `,`, `Field11:` + valueToStringThetest(this.Field11) + `,`, `Field12:` + valueToStringThetest(this.Field12) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomContainer) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomContainer{`, `CustomStruct:` + strings.Replace(strings.Replace(this.CustomStruct.String(), "NidOptCustom", "NidOptCustom", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNidOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNidOptNative{`, `FieldA:` + fmt.Sprintf("%v", this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `FieldE:` + fmt.Sprintf("%v", this.FieldE) + `,`, `FieldF:` + fmt.Sprintf("%v", this.FieldF) + `,`, `FieldG:` + fmt.Sprintf("%v", this.FieldG) + `,`, `FieldH:` + fmt.Sprintf("%v", this.FieldH) + `,`, `FieldI:` + fmt.Sprintf("%v", this.FieldI) + `,`, `FieldJ:` + fmt.Sprintf("%v", this.FieldJ) + `,`, `FieldK:` + fmt.Sprintf("%v", this.FieldK) + `,`, `FieldL:` + fmt.Sprintf("%v", this.FieldL) + `,`, `FieldM:` + fmt.Sprintf("%v", this.FieldM) + `,`, `FieldN:` + fmt.Sprintf("%v", this.FieldN) + `,`, `FieldO:` + fmt.Sprintf("%v", this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinOptNative{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + valueToStringThetest(this.FieldC) + `,`, `FieldD:` + valueToStringThetest(this.FieldD) + `,`, `FieldE:` + valueToStringThetest(this.FieldE) + `,`, `FieldF:` + valueToStringThetest(this.FieldF) + `,`, `FieldG:` + valueToStringThetest(this.FieldG) + `,`, `FieldH:` + valueToStringThetest(this.FieldH) + `,`, `FieldI:` + valueToStringThetest(this.FieldI) + `,`, `FieldJ:` + valueToStringThetest(this.FieldJ) + `,`, `FieldK:` + valueToStringThetest(this.FieldK) + `,`, `FielL:` + valueToStringThetest(this.FielL) + `,`, `FieldM:` + valueToStringThetest(this.FieldM) + `,`, `FieldN:` + valueToStringThetest(this.FieldN) + `,`, `FieldO:` + valueToStringThetest(this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinRepNative{`, `FieldA:` + fmt.Sprintf("%v", this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `FieldE:` + fmt.Sprintf("%v", this.FieldE) + `,`, `FieldF:` + fmt.Sprintf("%v", this.FieldF) + `,`, `FieldG:` + fmt.Sprintf("%v", this.FieldG) + `,`, `FieldH:` + fmt.Sprintf("%v", this.FieldH) + `,`, `FieldI:` + fmt.Sprintf("%v", this.FieldI) + `,`, `FieldJ:` + fmt.Sprintf("%v", this.FieldJ) + `,`, `FieldK:` + fmt.Sprintf("%v", this.FieldK) + `,`, `FieldL:` + fmt.Sprintf("%v", this.FieldL) + `,`, `FieldM:` + fmt.Sprintf("%v", this.FieldM) + `,`, `FieldN:` + fmt.Sprintf("%v", this.FieldN) + `,`, `FieldO:` + fmt.Sprintf("%v", this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinStruct{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + strings.Replace(fmt.Sprintf("%v", this.FieldC), "NidOptNative", "NidOptNative", 1) + `,`, `FieldD:` + strings.Replace(fmt.Sprintf("%v", this.FieldD), "NinOptNative", "NinOptNative", 1) + `,`, `FieldE:` + valueToStringThetest(this.FieldE) + `,`, `FieldF:` + valueToStringThetest(this.FieldF) + `,`, `FieldG:` + strings.Replace(fmt.Sprintf("%v", this.FieldG), "NidOptNative", "NidOptNative", 1) + `,`, `FieldH:` + valueToStringThetest(this.FieldH) + `,`, `FieldI:` + valueToStringThetest(this.FieldI) + `,`, `FieldJ:` + valueToStringThetest(this.FieldJ) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameCustomType{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinEmbeddedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinEmbeddedStructUnion{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `FieldA:` + strings.Replace(fmt.Sprintf("%v", this.FieldA), "NinOptNative", "NinOptNative", 1) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameEnum{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NoExtensionsMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NoExtensionsMap{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_extensions:` + github_com_gogo_protobuf_proto.StringFromExtensionsBytes(this.XXX_extensions) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Unrecognized) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Unrecognized{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithInner) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithInner{`, `Embedded:` + strings.Replace(fmt.Sprintf("%v", this.Embedded), "UnrecognizedWithInner_Inner", "UnrecognizedWithInner_Inner", 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithInner_Inner) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithInner_Inner{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithEmbed) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithEmbed{`, `UnrecognizedWithEmbed_Embedded:` + strings.Replace(strings.Replace(this.UnrecognizedWithEmbed_Embedded.String(), "UnrecognizedWithEmbed_Embedded", "UnrecognizedWithEmbed_Embedded", 1), `&`, ``, 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithEmbed_Embedded) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithEmbed_Embedded{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *Node) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Node{`, `Label:` + valueToStringThetest(this.Label) + `,`, `Children:` + strings.Replace(fmt.Sprintf("%v", this.Children), "Node", "Node", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NonByteCustomType{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNonByteCustomType{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *ProtoType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ProtoType{`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringThetest(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (this *NinOptNativeUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } if this.Field4 != nil { return this.Field4 } if this.Field5 != nil { return this.Field5 } if this.Field6 != nil { return this.Field6 } if this.Field13 != nil { return this.Field13 } if this.Field14 != nil { return this.Field14 } if this.Field15 != nil { return this.Field15 } return nil } func (this *NinOptNativeUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *float64: this.Field1 = vt case *float32: this.Field2 = vt case *int32: this.Field3 = vt case *int64: this.Field4 = vt case *uint32: this.Field5 = vt case *uint64: this.Field6 = vt case *bool: this.Field13 = vt case *string: this.Field14 = vt case []byte: this.Field15 = vt default: return false } return true } func (this *NinOptStructUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } if this.Field4 != nil { return this.Field4 } if this.Field6 != nil { return this.Field6 } if this.Field7 != nil { return this.Field7 } if this.Field13 != nil { return this.Field13 } if this.Field14 != nil { return this.Field14 } if this.Field15 != nil { return this.Field15 } return nil } func (this *NinOptStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *float64: this.Field1 = vt case *float32: this.Field2 = vt case *NidOptNative: this.Field3 = vt case *NinOptNative: this.Field4 = vt case *uint64: this.Field6 = vt case *int32: this.Field7 = vt case *bool: this.Field13 = vt case *string: this.Field14 = vt case []byte: this.Field15 = vt default: return false } return true } func (this *NinEmbeddedStructUnion) GetValue() interface{} { if this.NidOptNative != nil { return this.NidOptNative } if this.Field200 != nil { return this.Field200 } if this.Field210 != nil { return this.Field210 } return nil } func (this *NinEmbeddedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NidOptNative: this.NidOptNative = vt case *NinOptNative: this.Field200 = vt case *bool: this.Field210 = vt default: return false } return true } func (this *NinNestedStructUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } return nil } func (this *NinNestedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NinOptNativeUnion: this.Field1 = vt case *NinOptStructUnion: this.Field2 = vt case *NinEmbeddedStructUnion: this.Field3 = vt default: this.Field1 = new(NinOptNativeUnion) if set := this.Field1.SetValue(value); set { return true } this.Field1 = nil this.Field2 = new(NinOptStructUnion) if set := this.Field2.SetValue(value); set { return true } this.Field2 = nil this.Field3 = new(NinEmbeddedStructUnion) if set := this.Field3.SetValue(value); set { return true } this.Field3 = nil return false } return true } func (this *Tree) GetValue() interface{} { if this.Or != nil { return this.Or } if this.And != nil { return this.And } if this.Leaf != nil { return this.Leaf } return nil } func (this *Tree) SetValue(value interface{}) bool { switch vt := value.(type) { case *OrBranch: this.Or = vt case *AndBranch: this.And = vt case *Leaf: this.Leaf = vt default: return false } return true } func (this *DeepTree) GetValue() interface{} { if this.Down != nil { return this.Down } if this.And != nil { return this.And } if this.Leaf != nil { return this.Leaf } return nil } func (this *DeepTree) SetValue(value interface{}) bool { switch vt := value.(type) { case *ADeepBranch: this.Down = vt case *AndDeepBranch: this.And = vt case *DeepLeaf: this.Leaf = vt default: return false } return true } func (this *CustomNameNinEmbeddedStructUnion) GetValue() interface{} { if this.NidOptNative != nil { return this.NidOptNative } if this.FieldA != nil { return this.FieldA } if this.FieldB != nil { return this.FieldB } return nil } func (this *CustomNameNinEmbeddedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NidOptNative: this.NidOptNative = vt case *NinOptNative: this.FieldA = vt case *bool: this.FieldB = vt default: return false } return true } func (m *NidOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field1 = float64(math.Float64frombits(v)) case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field2 = float32(math.Float32frombits(v)) case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } m.Field3 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field3 |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } m.Field4 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field4 |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } m.Field5 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field5 |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } m.Field6 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field6 |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = int64(v) case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } m.Field9 = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.Field9 = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } m.Field10 = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.Field10 = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } m.Field11 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Field11 = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } m.Field12 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Field12 = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = bool(v != 0) case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = &v case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) v2 := int64(v) m.Field8 = &v2 case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = &v case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = &v case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = &v case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = append(m.Field14, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15, make([]byte, postIndex-iNdEx)) copy(m.Field15[len(m.Field15)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = append(m.Field14, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15, make([]byte, postIndex-iNdEx)) copy(m.Field15[len(m.Field15)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepPackedNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepPackedNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepPackedNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepPackedNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepPackedNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepPackedNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidOptStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field1 = float64(math.Float64frombits(v)) case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field2 = float32(math.Float32frombits(v)) case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field3.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field4.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } m.Field6 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field6 |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = v case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field8.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = bool(v != 0) case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field3 == nil { m.Field3 = &NidOptNative{} } if err := m.Field3.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field4 == nil { m.Field4 = &NinOptNative{} } if err := m.Field4.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field8 == nil { m.Field8 = &NidOptNative{} } if err := m.Field8.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field3 = append(m.Field3, NidOptNative{}) if err := m.Field3[len(m.Field3)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field4 = append(m.Field4, NinOptNative{}) if err := m.Field4[len(m.Field4)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field8 = append(m.Field8, NidOptNative{}) if err := m.Field8[len(m.Field8)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = append(m.Field14, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15, make([]byte, postIndex-iNdEx)) copy(m.Field15[len(m.Field15)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field3 = append(m.Field3, &NidOptNative{}) if err := m.Field3[len(m.Field3)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field4 = append(m.Field4, &NinOptNative{}) if err := m.Field4[len(m.Field4)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field8 = append(m.Field8, &NidOptNative{}) if err := m.Field8[len(m.Field8)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = append(m.Field14, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15, make([]byte, postIndex-iNdEx)) copy(m.Field15[len(m.Field15)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidEmbeddedStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidEmbeddedStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidEmbeddedStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NidOptNative", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NidOptNative == nil { m.NidOptNative = &NidOptNative{} } if err := m.NidOptNative.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 200: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field200", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field200.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 210: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field210", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field210 = bool(v != 0) default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinEmbeddedStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinEmbeddedStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinEmbeddedStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NidOptNative", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NidOptNative == nil { m.NidOptNative = &NidOptNative{} } if err := m.NidOptNative.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 200: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field200", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field200 == nil { m.Field200 = &NidOptNative{} } if err := m.Field200.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 210: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field210", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field210 = &b default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidNestedStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidNestedStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidNestedStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field2 = append(m.Field2, NidRepStruct{}) if err := m.Field2[len(m.Field2)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinNestedStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinNestedStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinNestedStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field1 == nil { m.Field1 = &NinOptStruct{} } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field2 = append(m.Field2, &NinRepStruct{}) if err := m.Field2[len(m.Field2)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidOptCustom) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptCustom: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptCustom: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Id.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Value.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomDash) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomDash: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomDash: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom_dash_type.Bytes m.Value = &v if err := m.Value.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptCustom) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptCustom: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptCustom: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.Id = &v if err := m.Id.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.Value = &v if err := m.Value.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepCustom) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepCustom: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepCustom: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.Id = append(m.Id, v) if err := m.Id[len(m.Id)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.Value = append(m.Value, v) if err := m.Value[len(m.Value)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepCustom) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepCustom: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepCustom: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.Id = append(m.Id, v) if err := m.Id[len(m.Id)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.Value = append(m.Value, v) if err := m.Value[len(m.Value)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNativeUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNativeUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNativeUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = &v case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptStructUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptStructUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptStructUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field3 == nil { m.Field3 = &NidOptNative{} } if err := m.Field3.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field4 == nil { m.Field4 = &NinOptNative{} } if err := m.Field4.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinEmbeddedStructUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinEmbeddedStructUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinEmbeddedStructUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NidOptNative", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NidOptNative == nil { m.NidOptNative = &NidOptNative{} } if err := m.NidOptNative.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 200: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field200", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field200 == nil { m.Field200 = &NinOptNative{} } if err := m.Field200.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 210: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field210", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field210 = &b default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinNestedStructUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinNestedStructUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinNestedStructUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field1 == nil { m.Field1 = &NinOptNativeUnion{} } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field2 == nil { m.Field2 = &NinOptStructUnion{} } if err := m.Field2.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field3 == nil { m.Field3 = &NinEmbeddedStructUnion{} } if err := m.Field3.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Tree) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Tree: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Tree: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Or", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Or == nil { m.Or = &OrBranch{} } if err := m.Or.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field And", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.And == nil { m.And = &AndBranch{} } if err := m.And.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Leaf", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Leaf == nil { m.Leaf = &Leaf{} } if err := m.Leaf.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OrBranch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OrBranch: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OrBranch: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Left", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Left.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Right", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Right.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AndBranch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AndBranch: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AndBranch: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Left", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Left.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Right", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Right.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Leaf) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Leaf: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Leaf: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } m.Value = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Value |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StrValue", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.StrValue = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *DeepTree) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: DeepTree: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: DeepTree: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Down", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Down == nil { m.Down = &ADeepBranch{} } if err := m.Down.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field And", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.And == nil { m.And = &AndDeepBranch{} } if err := m.And.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Leaf", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Leaf == nil { m.Leaf = &DeepLeaf{} } if err := m.Leaf.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ADeepBranch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: ADeepBranch: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: ADeepBranch: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Down", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Down.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AndDeepBranch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AndDeepBranch: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AndDeepBranch: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Left", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Left.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Right", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Right.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *DeepLeaf) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: DeepLeaf: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: DeepLeaf: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Tree", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Tree.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Nil) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Nil: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Nil: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidOptEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } m.Field1 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field1 |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 0 { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = append(m.Field1, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = append(m.Field1, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 0 { var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = append(m.Field2, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = append(m.Field2, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 0 { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = append(m.Field1, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = append(m.Field1, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 0 { var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = append(m.Field2, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = append(m.Field2, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptEnumDefault) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptEnumDefault: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptEnumDefault: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AnotherNinOptEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AnotherNinOptEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AnotherNinOptEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v AnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (AnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AnotherNinOptEnumDefault) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AnotherNinOptEnumDefault: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AnotherNinOptEnumDefault: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v AnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (AnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v YetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v YetYetAnotherTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (YetYetAnotherTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Timer) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Timer: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Timer: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Time1", wireType) } m.Time1 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Time1 = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 2: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Time2", wireType) } m.Time2 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Time2 = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) if m.Data == nil { m.Data = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *MyExtendable) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MyExtendable: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MyExtendable: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: if (fieldNum >= 100) && (fieldNum < 200) { var sizeOfWire int for { sizeOfWire++ wire >>= 7 if wire == 0 { break } } iNdEx -= sizeOfWire skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } github_com_gogo_protobuf_proto.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy]) iNdEx += skippy } else { iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OtherExtenable) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OtherExtenable: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OtherExtenable: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field2 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = &v case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field M", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.M == nil { m.M = &MyExtendable{} } if err := m.M.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: if ((fieldNum >= 14) && (fieldNum < 17)) || ((fieldNum >= 10) && (fieldNum < 13)) { var sizeOfWire int for { sizeOfWire++ wire >>= 7 if wire == 0 { break } } iNdEx -= sizeOfWire skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } github_com_gogo_protobuf_proto.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy]) iNdEx += skippy } else { iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NestedDefinition) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedDefinition: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedDefinition: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field EnumField", wireType) } var v NestedDefinition_NestedEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (NestedDefinition_NestedEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.EnumField = &v case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NNM", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NNM == nil { m.NNM = &NestedDefinition_NestedMessage_NestedNestedMsg{} } if err := m.NNM.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NM", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NM == nil { m.NM = &NestedDefinition_NestedMessage{} } if err := m.NM.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NestedDefinition_NestedMessage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedMessage: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedMessage: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field NestedField1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.NestedField1 = &v case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NNM", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NNM == nil { m.NNM = &NestedDefinition_NestedMessage_NestedNestedMsg{} } if err := m.NNM.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedNestedMsg: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedNestedMsg: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NestedNestedField1", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.NestedNestedField1 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NestedScope) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedScope: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedScope: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field A", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.A == nil { m.A = &NestedDefinition_NestedMessage_NestedNestedMsg{} } if err := m.A.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var v NestedDefinition_NestedEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (NestedDefinition_NestedEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.B = &v case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field C", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.C == nil { m.C = &NestedDefinition_NestedMessage{} } if err := m.C.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNativeDefault) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNativeDefault: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNativeDefault: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = &v case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) v2 := int64(v) m.Field8 = &v2 case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = &v case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = &v case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = &v case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomContainer) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomContainer: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomContainer: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CustomStruct", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.CustomStruct.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNidOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNidOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNidOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldA = float64(math.Float64frombits(v)) case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldB = float32(math.Float32frombits(v)) case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } m.FieldC = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.FieldC |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } m.FieldD = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.FieldD |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldE", wireType) } m.FieldE = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.FieldE |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldF", wireType) } m.FieldF = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.FieldF |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldG", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldG = v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldH", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.FieldH = int64(v) case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldI", wireType) } m.FieldI = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.FieldI = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldJ", wireType) } m.FieldJ = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.FieldJ = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldK", wireType) } m.FieldK = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.FieldK = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldL", wireType) } m.FieldL = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.FieldL = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldM", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldM = bool(v != 0) case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldN", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldN = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldO", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldO = append(m.FieldO[:0], dAtA[iNdEx:postIndex]...) if m.FieldO == nil { m.FieldO = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNinOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNinOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNinOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.FieldA = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.FieldB = &v2 case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldC = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldD = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldE", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldE = &v case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldF", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldF = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldG", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldG = &v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldH", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) v2 := int64(v) m.FieldH = &v2 case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldI", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldI = &v case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldJ", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldJ = &v case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldK", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldK = &v case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FielL", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FielL = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldM", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.FieldM = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldN", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.FieldN = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldO", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldO = append(m.FieldO[:0], dAtA[iNdEx:postIndex]...) if m.FieldO == nil { m.FieldO = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNinRepNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNinRepNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNinRepNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.FieldA = append(m.FieldA, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.FieldA = append(m.FieldA, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.FieldB = append(m.FieldB, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.FieldB = append(m.FieldB, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldC = append(m.FieldC, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldC = append(m.FieldC, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldD = append(m.FieldD, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldD = append(m.FieldD, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldE = append(m.FieldE, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldE = append(m.FieldE, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldE", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldF = append(m.FieldF, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldF = append(m.FieldF, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldF", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldG = append(m.FieldG, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldG = append(m.FieldG, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldG", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.FieldH = append(m.FieldH, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.FieldH = append(m.FieldH, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldH", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldI = append(m.FieldI, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldI = append(m.FieldI, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldI", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldJ = append(m.FieldJ, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.FieldJ = append(m.FieldJ, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldJ", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldK = append(m.FieldK, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldK = append(m.FieldK, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldK", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldL = append(m.FieldL, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.FieldL = append(m.FieldL, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldL", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldM = append(m.FieldM, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldM = append(m.FieldM, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldM", wireType) } case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldN", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldN = append(m.FieldN, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldO", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldO = append(m.FieldO, make([]byte, postIndex-iNdEx)) copy(m.FieldO[len(m.FieldO)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNinStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNinStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNinStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.FieldA = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.FieldB = &v2 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.FieldC == nil { m.FieldC = &NidOptNative{} } if err := m.FieldC.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldD = append(m.FieldD, &NinOptNative{}) if err := m.FieldD[len(m.FieldD)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldE", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldE = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldF", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.FieldF = &v case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldG", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.FieldG == nil { m.FieldG = &NidOptNative{} } if err := m.FieldG.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldH", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.FieldH = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldI", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.FieldI = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldJ", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.FieldJ = append(m.FieldJ[:0], dAtA[iNdEx:postIndex]...) if m.FieldJ == nil { m.FieldJ = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.FieldA = &v if err := m.FieldA.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.FieldB = &v if err := m.FieldB.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldC", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v Uuid m.FieldC = append(m.FieldC, v) if err := m.FieldC[len(m.FieldC)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldD", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.FieldD = append(m.FieldD, v) if err := m.FieldD[len(m.FieldD)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameNinEmbeddedStructUnion) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameNinEmbeddedStructUnion: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameNinEmbeddedStructUnion: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NidOptNative", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NidOptNative == nil { m.NidOptNative = &NidOptNative{} } if err := m.NidOptNative.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 200: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.FieldA == nil { m.FieldA = &NinOptNative{} } if err := m.FieldA.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 210: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.FieldB = &b default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomNameEnum) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomNameEnum: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomNameEnum: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field FieldA", wireType) } var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldA = &v case 2: if wireType == 0 { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldB = append(m.FieldB, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v TheTestEnum for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (TheTestEnum(b) & 0x7F) << shift if b < 0x80 { break } } m.FieldB = append(m.FieldB, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field FieldB", wireType) } default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NoExtensionsMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NoExtensionsMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NoExtensionsMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: if (fieldNum >= 100) && (fieldNum < 200) { var sizeOfWire int for { sizeOfWire++ wire >>= 7 if wire == 0 { break } } iNdEx -= sizeOfWire skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } github_com_gogo_protobuf_proto.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy]) iNdEx += skippy } else { iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Unrecognized) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Unrecognized: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Unrecognized: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field1 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UnrecognizedWithInner) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: UnrecognizedWithInner: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: UnrecognizedWithInner: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Embedded", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Embedded = append(m.Embedded, &UnrecognizedWithInner_Inner{}) if err := m.Embedded[len(m.Embedded)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field2 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UnrecognizedWithInner_Inner) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Inner: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Inner: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UnrecognizedWithEmbed) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: UnrecognizedWithEmbed: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: UnrecognizedWithEmbed: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field UnrecognizedWithEmbed_Embedded", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.UnrecognizedWithEmbed_Embedded.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field2 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UnrecognizedWithEmbed_Embedded) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Embedded: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Embedded: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Node) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Node: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Node: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Label", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Label = &s iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Children", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Children = append(m.Children, &Node{}) if err := m.Children[len(m.Children)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field1 == nil { m.Field1 = &T{} } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidOptNonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptNonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptNonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field1 == nil { m.Field1 = &T{} } if err := m.Field1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidRepNonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidRepNonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidRepNonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field1 = append(m.Field1, T{}) if err := m.Field1[len(m.Field1)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepNonByteCustomType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepNonByteCustomType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepNonByteCustomType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Field1 = append(m.Field1, T{}) if err := m.Field1[len(m.Field1)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ProtoType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: ProtoType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: ProtoType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowThetest } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthThetest } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field2 = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipThetest(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthThetest } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipThetest(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowThetest } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowThetest } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowThetest } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthThetest } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowThetest } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipThetest(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthThetest = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowThetest = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/unmarshaler/thetest.proto", fileDescriptorThetest) } var fileDescriptorThetest = []byte{ // 3088 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4f, 0x6c, 0x1b, 0xc7, 0xd5, 0xe7, 0xec, 0x50, 0x0a, 0xf5, 0x24, 0x4b, 0xf4, 0x26, 0x56, 0x16, 0x8c, 0xbe, 0x15, 0xbd, 0x91, 0xf5, 0x31, 0x44, 0x2c, 0x51, 0x14, 0x25, 0xcb, 0x4c, 0x93, 0x42, 0xfc, 0xe3, 0x46, 0x6e, 0x44, 0x19, 0x8c, 0xdc, 0xd6, 0x40, 0x81, 0x82, 0x16, 0xd7, 0x22, 0x51, 0x69, 0x29, 0x90, 0xab, 0x34, 0xee, 0xa1, 0x08, 0x72, 0x28, 0x82, 0x5e, 0x8b, 0x1e, 0xdb, 0xb8, 0x28, 0x0a, 0xa4, 0xb7, 0x1c, 0x8a, 0xa2, 0x28, 0x8a, 0xc6, 0x97, 0x02, 0xea, 0xcd, 0xe8, 0xa9, 0x08, 0x0a, 0x21, 0x62, 0x2e, 0x39, 0x06, 0xbd, 0x34, 0x87, 0x1c, 0x8a, 0xdd, 0x9d, 0x9d, 0x9d, 0x19, 0xee, 0x72, 0x97, 0x96, 0xd2, 0xe6, 0x62, 0x8b, 0xf3, 0xde, 0x9b, 0x79, 0xfb, 0x7e, 0xbf, 0xf7, 0xf6, 0xed, 0xcc, 0x40, 0x7a, 0xaf, 0x73, 0x78, 0xbf, 0xd3, 0x5b, 0x3e, 0x36, 0x0e, 0x1b, 0xdd, 0x5e, 0xab, 0x71, 0xa0, 0x77, 0x97, 0xcd, 0x96, 0x6e, 0xea, 0x3d, 0x73, 0xe9, 0xa8, 0xdb, 0x31, 0x3b, 0x72, 0xdc, 0xfa, 0x3b, 0x75, 0x7d, 0xbf, 0x6d, 0xb6, 0x8e, 0xef, 0x2f, 0xed, 0x75, 0x0e, 0x97, 0xf7, 0x3b, 0xfb, 0x9d, 0x65, 0x5b, 0x78, 0xff, 0xf8, 0x81, 0xfd, 0xcb, 0xfe, 0x61, 0xff, 0xe5, 0x18, 0x69, 0xff, 0xc4, 0x30, 0x55, 0x6b, 0x37, 0x77, 0x8e, 0xcc, 0x5a, 0xc3, 0x6c, 0xbf, 0xa5, 0xcb, 0x73, 0x30, 0x7e, 0xab, 0xad, 0x1f, 0x34, 0x57, 0x14, 0x94, 0x46, 0x19, 0x54, 0x8a, 0x9f, 0x9c, 0xce, 0xc7, 0xea, 0x64, 0x8c, 0x4a, 0xf3, 0x8a, 0x94, 0x46, 0x19, 0x89, 0x93, 0xe6, 0xa9, 0x74, 0x55, 0xc1, 0x69, 0x94, 0x19, 0xe3, 0xa4, 0xab, 0x54, 0x5a, 0x50, 0xe2, 0x69, 0x94, 0xc1, 0x9c, 0xb4, 0x40, 0xa5, 0x6b, 0xca, 0x58, 0x1a, 0x65, 0x2e, 0x71, 0xd2, 0x35, 0x2a, 0x5d, 0x57, 0xc6, 0xd3, 0x28, 0x13, 0xe7, 0xa4, 0xeb, 0x54, 0x7a, 0x43, 0x79, 0x26, 0x8d, 0x32, 0x97, 0x39, 0xe9, 0x0d, 0x2a, 0xdd, 0x50, 0x12, 0x69, 0x94, 0x91, 0x39, 0xe9, 0x06, 0x95, 0xde, 0x54, 0x26, 0xd2, 0x28, 0xf3, 0x0c, 0x27, 0xbd, 0x29, 0xab, 0xf0, 0x8c, 0xf3, 0xe4, 0x39, 0x05, 0xd2, 0x28, 0x33, 0x43, 0xc4, 0xee, 0xa0, 0x27, 0x5f, 0x51, 0x26, 0xd3, 0x28, 0x33, 0xce, 0xcb, 0x57, 0x3c, 0x79, 0x5e, 0x99, 0x4a, 0xa3, 0x4c, 0x92, 0x97, 0xe7, 0x3d, 0xf9, 0xaa, 0x72, 0x29, 0x8d, 0x32, 0x09, 0x5e, 0xbe, 0xea, 0xc9, 0x0b, 0xca, 0x74, 0x1a, 0x65, 0x26, 0x78, 0x79, 0xc1, 0x93, 0xaf, 0x29, 0x33, 0x69, 0x94, 0x99, 0xe2, 0xe5, 0x6b, 0xda, 0xbb, 0x36, 0xbc, 0x86, 0x07, 0xef, 0x2c, 0x0f, 0x2f, 0x05, 0x76, 0x96, 0x07, 0x96, 0x42, 0x3a, 0xcb, 0x43, 0x4a, 0xc1, 0x9c, 0xe5, 0xc1, 0xa4, 0x30, 0xce, 0xf2, 0x30, 0x52, 0x00, 0x67, 0x79, 0x00, 0x29, 0x74, 0xb3, 0x3c, 0x74, 0x14, 0xb4, 0x59, 0x1e, 0x34, 0x0a, 0xd7, 0x2c, 0x0f, 0x17, 0x05, 0x4a, 0x11, 0x80, 0xf2, 0x20, 0x52, 0x04, 0x88, 0x3c, 0x70, 0x14, 0x01, 0x1c, 0x0f, 0x16, 0x45, 0x80, 0xc5, 0x03, 0x44, 0x11, 0x00, 0xf1, 0xa0, 0x50, 0x04, 0x28, 0x3c, 0x10, 0x48, 0x8e, 0xd5, 0xf5, 0x23, 0x9f, 0x1c, 0xc3, 0x43, 0x73, 0x0c, 0x0f, 0xcd, 0x31, 0x3c, 0x34, 0xc7, 0xf0, 0xd0, 0x1c, 0xc3, 0x43, 0x73, 0x0c, 0x0f, 0xcd, 0x31, 0x3c, 0x34, 0xc7, 0xf0, 0xd0, 0x1c, 0xc3, 0xc3, 0x73, 0x0c, 0x87, 0xe4, 0x18, 0x0e, 0xc9, 0x31, 0x1c, 0x92, 0x63, 0x38, 0x24, 0xc7, 0x70, 0x48, 0x8e, 0xe1, 0xc0, 0x1c, 0xf3, 0xe0, 0x9d, 0xe5, 0xe1, 0xf5, 0xcd, 0x31, 0x1c, 0x90, 0x63, 0x38, 0x20, 0xc7, 0x70, 0x40, 0x8e, 0xe1, 0x80, 0x1c, 0xc3, 0x01, 0x39, 0x86, 0x03, 0x72, 0x0c, 0x07, 0xe4, 0x18, 0x0e, 0xca, 0x31, 0x1c, 0x98, 0x63, 0x38, 0x30, 0xc7, 0x70, 0x60, 0x8e, 0xe1, 0xc0, 0x1c, 0xc3, 0x81, 0x39, 0x86, 0xd9, 0x1c, 0xfb, 0x33, 0x06, 0xd9, 0xc9, 0xb1, 0x3b, 0x8d, 0xbd, 0x1f, 0xea, 0x4d, 0x02, 0x85, 0x2a, 0x64, 0xda, 0xb8, 0x05, 0x5d, 0xd2, 0x83, 0x44, 0x15, 0x72, 0x8d, 0x97, 0xe7, 0xa9, 0xdc, 0xcd, 0x36, 0x5e, 0xbe, 0x4a, 0xe5, 0x6e, 0xbe, 0xf1, 0xf2, 0x02, 0x95, 0xbb, 0x19, 0xc7, 0xcb, 0xd7, 0xa8, 0xdc, 0xcd, 0x39, 0x5e, 0xbe, 0x4e, 0xe5, 0x6e, 0xd6, 0xf1, 0xf2, 0x1b, 0x54, 0xee, 0xe6, 0x1d, 0x2f, 0xdf, 0xa0, 0x72, 0x37, 0xf3, 0x78, 0xf9, 0x4d, 0x39, 0x2d, 0xe6, 0x9e, 0xab, 0x40, 0xa1, 0x4d, 0x8b, 0xd9, 0x27, 0x68, 0xac, 0x78, 0x1a, 0x6e, 0xfe, 0x09, 0x1a, 0x79, 0x4f, 0xc3, 0xcd, 0x40, 0x41, 0x63, 0x55, 0x7b, 0xcf, 0x86, 0xcf, 0x10, 0xe1, 0x4b, 0x09, 0xf0, 0x49, 0x0c, 0x74, 0x29, 0x01, 0x3a, 0x89, 0x81, 0x2d, 0x25, 0xc0, 0x26, 0x31, 0x90, 0xa5, 0x04, 0xc8, 0x24, 0x06, 0xae, 0x94, 0x00, 0x97, 0xc4, 0x40, 0x95, 0x12, 0xa0, 0x92, 0x18, 0x98, 0x52, 0x02, 0x4c, 0x12, 0x03, 0x51, 0x4a, 0x80, 0x48, 0x62, 0xe0, 0x49, 0x09, 0xf0, 0x48, 0x0c, 0x34, 0x73, 0x22, 0x34, 0x12, 0x0b, 0xcb, 0x9c, 0x08, 0x8b, 0xc4, 0x42, 0x32, 0x27, 0x42, 0x22, 0xb1, 0x70, 0xcc, 0x89, 0x70, 0x48, 0x2c, 0x14, 0x5f, 0x4a, 0x6e, 0x47, 0xf8, 0xa6, 0xd9, 0x3d, 0xde, 0x33, 0xcf, 0xd5, 0x11, 0xe6, 0xb8, 0xf6, 0x61, 0x32, 0x2f, 0x2f, 0xd9, 0x0d, 0x2b, 0xdb, 0x71, 0x0a, 0x6f, 0xb0, 0x1c, 0xd7, 0x58, 0x30, 0x16, 0x86, 0xbf, 0x45, 0xe1, 0x5c, 0xbd, 0x61, 0x8e, 0x6b, 0x33, 0xc2, 0xfd, 0xdb, 0xf8, 0xca, 0x3b, 0xb6, 0xc7, 0x92, 0xdb, 0xb1, 0x91, 0xf0, 0x8f, 0xda, 0xb1, 0x65, 0xc3, 0x43, 0x4e, 0x83, 0x9d, 0x0d, 0x0f, 0xf6, 0xc0, 0x5b, 0x27, 0x6a, 0x07, 0x97, 0x0d, 0x0f, 0x2d, 0x0d, 0xea, 0xc5, 0xf6, 0x5b, 0x84, 0xc1, 0x75, 0xfd, 0xc8, 0x87, 0xc1, 0xa3, 0xf6, 0x5b, 0x39, 0xae, 0x94, 0x8c, 0xca, 0x60, 0x3c, 0x32, 0x83, 0x47, 0xed, 0xbc, 0x72, 0x5c, 0x79, 0x19, 0x99, 0xc1, 0x5f, 0x41, 0x3f, 0x44, 0x18, 0xec, 0x85, 0x7f, 0xd4, 0x7e, 0x28, 0x1b, 0x1e, 0x72, 0x5f, 0x06, 0xe3, 0x11, 0x18, 0x1c, 0xa5, 0x3f, 0xca, 0x86, 0x87, 0xd6, 0x9f, 0xc1, 0xe7, 0xee, 0x66, 0xde, 0x47, 0x70, 0xb9, 0xd6, 0x6e, 0x56, 0x0f, 0xef, 0xeb, 0xcd, 0xa6, 0xde, 0x24, 0x71, 0xcc, 0x71, 0x95, 0x20, 0x00, 0xea, 0x27, 0xa7, 0xf3, 0x5e, 0x84, 0xd7, 0x20, 0xe1, 0xc4, 0x34, 0x97, 0x53, 0x4e, 0x50, 0x48, 0x85, 0xa3, 0xaa, 0xf2, 0x55, 0xd7, 0x6c, 0x25, 0xa7, 0xfc, 0x1d, 0x31, 0x55, 0x8e, 0x0e, 0x6b, 0x3f, 0xb7, 0x3d, 0x34, 0xce, 0xed, 0xe1, 0x72, 0x24, 0x0f, 0x19, 0xdf, 0x5e, 0x18, 0xf0, 0x8d, 0xf1, 0xea, 0x18, 0x66, 0x6a, 0xed, 0x66, 0x4d, 0xef, 0x99, 0xd1, 0x5c, 0x72, 0x74, 0x84, 0x7a, 0x90, 0xe3, 0x68, 0xc9, 0x5a, 0x50, 0x4a, 0xf3, 0x35, 0x42, 0x6b, 0x5b, 0xcb, 0x1a, 0xdc, 0xb2, 0xd9, 0xa0, 0x65, 0xbd, 0xca, 0x4e, 0x17, 0xcc, 0x06, 0x2d, 0xe8, 0xe5, 0x10, 0x5d, 0xea, 0x6d, 0xf7, 0xe5, 0x5c, 0x3e, 0xee, 0x99, 0x9d, 0x43, 0x79, 0x0e, 0xa4, 0xad, 0xa6, 0xbd, 0xc6, 0x54, 0x69, 0xca, 0x72, 0xea, 0xe3, 0xd3, 0xf9, 0xf8, 0xdd, 0xe3, 0x76, 0xb3, 0x2e, 0x6d, 0x35, 0xe5, 0xdb, 0x30, 0xf6, 0x9d, 0xc6, 0xc1, 0xb1, 0x6e, 0xbf, 0x22, 0xa6, 0x4a, 0x05, 0xa2, 0xf0, 0x72, 0xe0, 0x1e, 0x91, 0xb5, 0xf0, 0xf2, 0x9e, 0x3d, 0xf5, 0xd2, 0xdd, 0xb6, 0x61, 0xae, 0xe4, 0x37, 0xea, 0xce, 0x14, 0xda, 0xf7, 0x01, 0x9c, 0x35, 0x2b, 0x8d, 0x5e, 0x4b, 0xae, 0xb9, 0x33, 0x3b, 0x4b, 0x6f, 0x7c, 0x7c, 0x3a, 0x5f, 0x88, 0x32, 0xeb, 0xf5, 0x66, 0xa3, 0xd7, 0xba, 0x6e, 0x3e, 0x3c, 0xd2, 0x97, 0x4a, 0x0f, 0x4d, 0xbd, 0xe7, 0xce, 0x7e, 0xe4, 0xbe, 0xf5, 0xc8, 0x73, 0x29, 0xcc, 0x73, 0x25, 0xb8, 0x67, 0xba, 0xc5, 0x3f, 0x53, 0xee, 0x69, 0x9f, 0xe7, 0x6d, 0xf7, 0x25, 0x21, 0x44, 0x12, 0x87, 0x45, 0x12, 0x9f, 0x37, 0x92, 0x47, 0x6e, 0x7d, 0x14, 0x9e, 0x15, 0x0f, 0x7b, 0x56, 0x7c, 0x9e, 0x67, 0xfd, 0xb7, 0x93, 0xad, 0x34, 0x9f, 0xee, 0x1a, 0xed, 0x8e, 0xf1, 0xb5, 0xdb, 0x0b, 0xba, 0xd0, 0x2e, 0xa0, 0x18, 0x3f, 0x79, 0x34, 0x8f, 0xb4, 0xf7, 0x25, 0xf7, 0xc9, 0x9d, 0x44, 0x7a, 0xba, 0x27, 0xff, 0xba, 0xf4, 0x54, 0x5f, 0x45, 0x84, 0x7e, 0x85, 0x60, 0x76, 0xa0, 0x92, 0x3b, 0x61, 0xba, 0xd8, 0x72, 0x6e, 0x8c, 0x5a, 0xce, 0x89, 0x83, 0xbf, 0x47, 0xf0, 0x9c, 0x50, 0x5e, 0x1d, 0xf7, 0x96, 0x05, 0xf7, 0x9e, 0x1f, 0x5c, 0xc9, 0x56, 0x64, 0xbc, 0x63, 0xe1, 0x15, 0x0c, 0x98, 0x99, 0x29, 0xee, 0x05, 0x01, 0xf7, 0x39, 0x6a, 0xe0, 0x13, 0x2e, 0x97, 0x01, 0xc4, 0xed, 0x0e, 0xc4, 0x77, 0xbb, 0xba, 0x2e, 0xab, 0x20, 0xed, 0x74, 0x89, 0x87, 0xd3, 0x8e, 0xfd, 0x4e, 0xb7, 0xd4, 0x6d, 0x18, 0x7b, 0xad, 0xba, 0xb4, 0xd3, 0x95, 0xaf, 0x02, 0xde, 0x34, 0x9a, 0xc4, 0xa3, 0x19, 0x47, 0x61, 0xd3, 0x68, 0x12, 0x0d, 0x4b, 0x26, 0xab, 0x10, 0x7f, 0x43, 0x6f, 0x3c, 0x20, 0x4e, 0x80, 0xa3, 0x63, 0x8d, 0xd4, 0xed, 0x71, 0xb2, 0xe0, 0xf7, 0x20, 0xe1, 0x4e, 0x2c, 0x2f, 0x58, 0x16, 0x0f, 0x4c, 0xb2, 0x2c, 0xb1, 0xb0, 0xdc, 0x21, 0x6f, 0x2e, 0x5b, 0x2a, 0x2f, 0xc2, 0x58, 0xbd, 0xbd, 0xdf, 0x32, 0xc9, 0xe2, 0x83, 0x6a, 0x8e, 0x58, 0xbb, 0x07, 0x13, 0xd4, 0xa3, 0x0b, 0x9e, 0xba, 0xe2, 0x3c, 0x9a, 0x9c, 0x62, 0xdf, 0x27, 0xee, 0xbe, 0xa5, 0x33, 0x24, 0xa7, 0x21, 0xf1, 0xa6, 0xd9, 0xf5, 0x8a, 0xbe, 0xdb, 0x91, 0xd2, 0x51, 0xed, 0x5d, 0x04, 0x89, 0x8a, 0xae, 0x1f, 0xd9, 0x01, 0xbf, 0x06, 0xf1, 0x4a, 0xe7, 0x47, 0x06, 0x71, 0xf0, 0x32, 0x89, 0xa8, 0x25, 0x26, 0x31, 0xb5, 0xc5, 0xf2, 0x35, 0x36, 0xee, 0xcf, 0xd2, 0xb8, 0x33, 0x7a, 0x76, 0xec, 0x35, 0x2e, 0xf6, 0x04, 0x40, 0x4b, 0x69, 0x20, 0xfe, 0x37, 0x60, 0x92, 0x59, 0x45, 0xce, 0x10, 0x37, 0x24, 0xd1, 0x90, 0x8d, 0x95, 0xa5, 0xa1, 0xe9, 0x70, 0x89, 0x5b, 0xd8, 0x32, 0x65, 0x42, 0x1c, 0x60, 0x6a, 0x87, 0x39, 0xcb, 0x87, 0xd9, 0x5f, 0x95, 0x84, 0x3a, 0xe7, 0xc4, 0xc8, 0x0e, 0xf7, 0x82, 0x43, 0xce, 0x60, 0x10, 0xad, 0xbf, 0xb5, 0x31, 0xc0, 0xb5, 0xf6, 0x81, 0xf6, 0x2a, 0x80, 0x93, 0xf2, 0x55, 0xe3, 0xf8, 0x50, 0xc8, 0xba, 0x69, 0x37, 0xc0, 0xbb, 0x2d, 0x7d, 0x57, 0xef, 0xd9, 0x2a, 0x7c, 0x3f, 0x65, 0x15, 0x18, 0x70, 0x52, 0xcc, 0xb6, 0x7f, 0x29, 0xd4, 0xde, 0xb7, 0x13, 0xb3, 0x54, 0x15, 0x47, 0xf5, 0x9e, 0x6e, 0x6e, 0x1a, 0x1d, 0xb3, 0xa5, 0x77, 0x05, 0x8b, 0xbc, 0xbc, 0xca, 0x25, 0xec, 0x74, 0xfe, 0x05, 0x6a, 0x11, 0x68, 0xb4, 0xaa, 0x7d, 0x68, 0x3b, 0x68, 0xb5, 0x02, 0x03, 0x0f, 0x88, 0x23, 0x3c, 0xa0, 0xbc, 0xce, 0xf5, 0x6f, 0x43, 0xdc, 0x14, 0x3e, 0x2d, 0x6f, 0x72, 0xdf, 0x39, 0xc3, 0x9d, 0xe5, 0xbf, 0x31, 0xdd, 0x98, 0xba, 0x2e, 0xbf, 0x14, 0xea, 0x72, 0x40, 0x77, 0x3b, 0x6a, 0x4c, 0x71, 0xd4, 0x98, 0xfe, 0x89, 0x76, 0x1c, 0xd6, 0x70, 0x45, 0x7f, 0xd0, 0x38, 0x3e, 0x30, 0xe5, 0x97, 0x43, 0xb1, 0x2f, 0xa2, 0x32, 0x75, 0xb5, 0x10, 0x15, 0xfe, 0xa2, 0x54, 0x2a, 0x51, 0x77, 0x6f, 0x8c, 0x40, 0x81, 0xa2, 0x54, 0x2e, 0xd3, 0xb2, 0x9d, 0x78, 0xef, 0xd1, 0x3c, 0xfa, 0xe0, 0xd1, 0x7c, 0x4c, 0xfb, 0x1d, 0x82, 0xcb, 0x44, 0x93, 0x21, 0xee, 0x75, 0xc1, 0xf9, 0x2b, 0x6e, 0xcd, 0xf0, 0x8b, 0xc0, 0x7f, 0x8d, 0xbc, 0x7f, 0x45, 0xa0, 0x0c, 0xf8, 0xea, 0xc6, 0x3b, 0x17, 0xc9, 0xe5, 0x22, 0xaa, 0xfe, 0xef, 0x63, 0x7e, 0x0f, 0xc6, 0x76, 0xdb, 0x87, 0x7a, 0xd7, 0x7a, 0x13, 0x58, 0x7f, 0x38, 0x2e, 0xbb, 0x87, 0x39, 0xce, 0x90, 0x2b, 0x73, 0x9c, 0xe3, 0x64, 0x79, 0x59, 0x81, 0x78, 0xa5, 0x61, 0x36, 0x6c, 0x0f, 0xa6, 0x68, 0x7d, 0x6d, 0x98, 0x0d, 0x6d, 0x15, 0xa6, 0xb6, 0x1f, 0x56, 0xdf, 0x36, 0x75, 0xa3, 0xd9, 0xb8, 0x7f, 0x20, 0x9e, 0x81, 0xba, 0xfd, 0xea, 0x4a, 0x76, 0x2c, 0xd1, 0x4c, 0x9e, 0xa0, 0x62, 0xdc, 0xf6, 0xe7, 0x2d, 0x98, 0xde, 0xb1, 0xdc, 0xb6, 0xed, 0x38, 0x33, 0x67, 0x75, 0x4c, 0x1f, 0x5e, 0x68, 0xca, 0xb0, 0xd7, 0x94, 0xa5, 0x01, 0x6d, 0xf3, 0xad, 0x13, 0xeb, 0x47, 0x1d, 0x6d, 0x67, 0xe3, 0x89, 0xe9, 0xe4, 0xe5, 0x6c, 0x3c, 0x01, 0xc9, 0x4b, 0x64, 0xdd, 0xbf, 0x61, 0x48, 0x3a, 0xad, 0x4e, 0x45, 0x7f, 0xd0, 0x36, 0xda, 0xe6, 0x60, 0xbf, 0x4a, 0x3d, 0x96, 0xbf, 0x09, 0x13, 0x56, 0x48, 0xed, 0x5f, 0x04, 0xb0, 0xab, 0xa4, 0x45, 0x11, 0xa6, 0x20, 0x03, 0x36, 0x75, 0x3c, 0x1b, 0xf9, 0x16, 0xe0, 0x5a, 0x6d, 0x9b, 0xbc, 0xdc, 0x0a, 0x43, 0x4d, 0xb7, 0xf5, 0x5e, 0xaf, 0xb1, 0xaf, 0x93, 0x5f, 0x64, 0xac, 0xb7, 0x5f, 0xb7, 0x26, 0x90, 0x0b, 0x20, 0xd5, 0xb6, 0x49, 0xc3, 0xbb, 0x10, 0x65, 0x9a, 0xba, 0x54, 0xdb, 0x4e, 0xfd, 0x05, 0xc1, 0x25, 0x6e, 0x54, 0xd6, 0x60, 0xca, 0x19, 0x60, 0x1e, 0x77, 0xbc, 0xce, 0x8d, 0xb9, 0x3e, 0x4b, 0xe7, 0xf4, 0x39, 0xb5, 0x09, 0x33, 0xc2, 0xb8, 0xbc, 0x04, 0x32, 0x3b, 0x44, 0x9c, 0x00, 0xbb, 0xa1, 0xf6, 0x91, 0x68, 0xff, 0x07, 0xe0, 0xc5, 0x55, 0x9e, 0x81, 0xc9, 0xdd, 0x7b, 0x77, 0xaa, 0x3f, 0xa8, 0x55, 0xdf, 0xdc, 0xad, 0x56, 0x92, 0x48, 0xfb, 0x03, 0x82, 0x49, 0xd2, 0xb6, 0xee, 0x75, 0x8e, 0x74, 0xb9, 0x04, 0x68, 0x93, 0xf0, 0xe1, 0xe9, 0xfc, 0x46, 0x9b, 0xf2, 0x32, 0xa0, 0x52, 0x74, 0xa8, 0x51, 0x49, 0xce, 0x03, 0x2a, 0x13, 0x80, 0xa3, 0x21, 0x83, 0xca, 0xda, 0xbf, 0x30, 0x3c, 0xcb, 0xb6, 0xd1, 0x6e, 0x3d, 0xb9, 0xca, 0x7f, 0x37, 0x15, 0x27, 0x56, 0xf2, 0xab, 0x85, 0x25, 0xeb, 0x1f, 0x4a, 0x49, 0x8d, 0xff, 0x84, 0x2a, 0x02, 0x55, 0x59, 0x09, 0xba, 0x27, 0x52, 0x8c, 0x33, 0x33, 0x0c, 0xdc, 0x13, 0xe1, 0xa4, 0x03, 0xf7, 0x44, 0x38, 0xe9, 0xc0, 0x3d, 0x11, 0x4e, 0x3a, 0x70, 0x16, 0xc0, 0x49, 0x07, 0xee, 0x89, 0x70, 0xd2, 0x81, 0x7b, 0x22, 0x9c, 0x74, 0xf0, 0x9e, 0x08, 0x11, 0x07, 0xde, 0x13, 0xe1, 0xe5, 0x83, 0xf7, 0x44, 0x78, 0xf9, 0xe0, 0x3d, 0x91, 0x62, 0xdc, 0xec, 0x1e, 0xeb, 0xc1, 0xa7, 0x0e, 0xbc, 0xfd, 0xb0, 0x8f, 0x40, 0xaf, 0x02, 0xef, 0xc0, 0x8c, 0xb3, 0x21, 0x51, 0xee, 0x18, 0x66, 0xa3, 0x6d, 0xe8, 0x5d, 0xf9, 0x1b, 0x30, 0xe5, 0x0c, 0x39, 0x9f, 0x39, 0x7e, 0x9f, 0x81, 0x8e, 0x9c, 0xd4, 0x5b, 0x4e, 0x5b, 0xfb, 0x32, 0x0e, 0xb3, 0xce, 0x40, 0xad, 0x71, 0xa8, 0x73, 0xb7, 0x8c, 0x16, 0x85, 0x33, 0xa5, 0x69, 0xcb, 0xbc, 0x7f, 0x3a, 0xef, 0x8c, 0x6e, 0x52, 0x36, 0x2d, 0x0a, 0xa7, 0x4b, 0xbc, 0x9e, 0xf7, 0x02, 0x5a, 0x14, 0x6e, 0x1e, 0xf1, 0x7a, 0xf4, 0x7d, 0x43, 0xf5, 0xdc, 0x3b, 0x48, 0xbc, 0x5e, 0x85, 0xb2, 0x6c, 0x51, 0xb8, 0x8d, 0xc4, 0xeb, 0x55, 0x29, 0xdf, 0x16, 0x85, 0xb3, 0x27, 0x5e, 0xef, 0x16, 0x65, 0xde, 0xa2, 0x70, 0x0a, 0xc5, 0xeb, 0x7d, 0x8b, 0x72, 0x70, 0x51, 0xb8, 0xab, 0xc4, 0xeb, 0xbd, 0x4e, 0xd9, 0xb8, 0x28, 0xdc, 0x5a, 0xe2, 0xf5, 0xb6, 0x28, 0x2f, 0x33, 0xe2, 0xfd, 0x25, 0x5e, 0xf1, 0xb6, 0xc7, 0xd0, 0x8c, 0x78, 0x93, 0x89, 0xd7, 0xfc, 0xb6, 0xc7, 0xd5, 0x8c, 0x78, 0xa7, 0x89, 0xd7, 0x7c, 0xc3, 0x63, 0x6d, 0x46, 0x3c, 0x2b, 0xe3, 0x35, 0xb7, 0x3d, 0xfe, 0x66, 0xc4, 0x53, 0x33, 0x5e, 0xb3, 0xe6, 0x31, 0x39, 0x23, 0x9e, 0x9f, 0xf1, 0x9a, 0x3b, 0xde, 0x26, 0xfa, 0x47, 0x02, 0xfd, 0x98, 0x5b, 0x50, 0x9a, 0x40, 0x3f, 0xf0, 0xa1, 0x9e, 0x50, 0xc8, 0x18, 0x1d, 0x8f, 0x76, 0x9a, 0x40, 0x3b, 0xf0, 0xa1, 0x9c, 0x26, 0x50, 0x0e, 0x7c, 0xe8, 0xa6, 0x09, 0x74, 0x03, 0x1f, 0xaa, 0x69, 0x02, 0xd5, 0xc0, 0x87, 0x66, 0x9a, 0x40, 0x33, 0xf0, 0xa1, 0x98, 0x26, 0x50, 0x0c, 0x7c, 0xe8, 0xa5, 0x09, 0xf4, 0x02, 0x1f, 0x6a, 0x2d, 0x88, 0xd4, 0x02, 0x3f, 0x5a, 0x2d, 0x88, 0xb4, 0x02, 0x3f, 0x4a, 0xbd, 0x28, 0x52, 0x6a, 0xa2, 0x7f, 0x3a, 0x3f, 0x66, 0x0d, 0x31, 0x6c, 0x5a, 0x10, 0xd9, 0x04, 0x7e, 0x4c, 0x5a, 0x10, 0x99, 0x04, 0x7e, 0x2c, 0x5a, 0x10, 0x59, 0x04, 0x7e, 0x0c, 0x7a, 0x2c, 0x32, 0xc8, 0xbb, 0xe3, 0xa3, 0x09, 0x47, 0x8a, 0x61, 0x0c, 0xc2, 0x11, 0x18, 0x84, 0x23, 0x30, 0x08, 0x47, 0x60, 0x10, 0x8e, 0xc0, 0x20, 0x1c, 0x81, 0x41, 0x38, 0x02, 0x83, 0x70, 0x04, 0x06, 0xe1, 0x28, 0x0c, 0xc2, 0x91, 0x18, 0x84, 0x83, 0x18, 0xb4, 0x20, 0xde, 0x78, 0x00, 0xbf, 0x82, 0xb4, 0x20, 0x1e, 0x7d, 0x86, 0x53, 0x08, 0x47, 0xa2, 0x10, 0x0e, 0xa2, 0xd0, 0x47, 0x18, 0x9e, 0xe5, 0x28, 0x44, 0xce, 0x87, 0x2e, 0xaa, 0x02, 0xad, 0x47, 0xb8, 0x60, 0xe1, 0xc7, 0xa9, 0xf5, 0x08, 0x87, 0xd4, 0xc3, 0x78, 0x36, 0x58, 0x85, 0xaa, 0x11, 0xaa, 0xd0, 0x2d, 0xca, 0xa1, 0xf5, 0x08, 0x17, 0x2f, 0x06, 0xb9, 0xb7, 0x31, 0xac, 0x08, 0xbc, 0x1e, 0xa9, 0x08, 0x6c, 0x45, 0x2a, 0x02, 0xb7, 0x3d, 0x04, 0x7f, 0x2a, 0xc1, 0x73, 0x1e, 0x82, 0xce, 0x5f, 0xbb, 0x0f, 0x8f, 0xac, 0x12, 0xe0, 0x1d, 0x51, 0xc9, 0xee, 0xb1, 0x0d, 0x03, 0xa3, 0xb4, 0xd5, 0x94, 0xef, 0xf0, 0x87, 0x55, 0xc5, 0x51, 0x0f, 0x70, 0x18, 0xc4, 0xc9, 0x66, 0xe8, 0x02, 0xe0, 0xad, 0x66, 0xcf, 0xae, 0x16, 0x7e, 0xcb, 0x96, 0xeb, 0x96, 0x58, 0xae, 0xc3, 0xb8, 0xad, 0xde, 0xb3, 0xe1, 0x3d, 0xcf, 0xc2, 0x95, 0x3a, 0x99, 0x49, 0x7b, 0x8c, 0x20, 0xcd, 0x51, 0xf9, 0x62, 0x8e, 0x0c, 0x5e, 0x89, 0x74, 0x64, 0xc0, 0x25, 0x88, 0x77, 0x7c, 0xf0, 0xff, 0x83, 0x27, 0xd5, 0x6c, 0x96, 0x88, 0x47, 0x09, 0x3f, 0x81, 0x69, 0xef, 0x09, 0xec, 0x6f, 0xb6, 0xb5, 0xf0, 0xdd, 0x4c, 0xbf, 0xd4, 0x5c, 0x13, 0x76, 0xd1, 0x86, 0x9a, 0xd1, 0x6c, 0xd5, 0x8a, 0x30, 0x53, 0xeb, 0xd8, 0x3b, 0x00, 0xbd, 0x76, 0xc7, 0xe8, 0x6d, 0x37, 0x8e, 0xc2, 0x36, 0x23, 0x12, 0x56, 0x6b, 0x7e, 0xf2, 0xeb, 0xf9, 0x98, 0xf6, 0x32, 0x4c, 0xdd, 0x35, 0xba, 0xfa, 0x5e, 0x67, 0xdf, 0x68, 0xff, 0x58, 0x6f, 0x0a, 0x86, 0x13, 0xae, 0x61, 0x31, 0xfe, 0xc4, 0xd2, 0xfe, 0x05, 0x82, 0x2b, 0xac, 0xfa, 0x77, 0xdb, 0x66, 0x6b, 0xcb, 0xb0, 0x7a, 0xfa, 0x57, 0x21, 0xa1, 0x13, 0xe0, 0xec, 0x77, 0xd7, 0xa4, 0xfb, 0x1d, 0xe9, 0xab, 0xbe, 0x64, 0xff, 0x5b, 0xa7, 0x26, 0xc2, 0x2e, 0x88, 0xbb, 0x6c, 0x3e, 0x75, 0x0d, 0xc6, 0x9c, 0xf9, 0x79, 0xbf, 0x2e, 0x09, 0x7e, 0xfd, 0xd6, 0xc7, 0x2f, 0x9b, 0x47, 0xf2, 0x6d, 0xce, 0x2f, 0xe6, 0x73, 0xd5, 0x57, 0x7d, 0xc9, 0x25, 0x5f, 0x29, 0x61, 0xf5, 0x7f, 0x36, 0xa3, 0xc2, 0x9d, 0xcc, 0x40, 0xa2, 0x2a, 0xea, 0xf8, 0xfb, 0x59, 0x81, 0x78, 0xad, 0xd3, 0xd4, 0xe5, 0xe7, 0x60, 0xec, 0x8d, 0xc6, 0x7d, 0xfd, 0x80, 0x04, 0xd9, 0xf9, 0x21, 0x2f, 0x42, 0xa2, 0xdc, 0x6a, 0x1f, 0x34, 0xbb, 0xba, 0x41, 0xce, 0xec, 0xc9, 0x16, 0xba, 0x65, 0x53, 0xa7, 0x32, 0xad, 0x0c, 0x97, 0x6b, 0x1d, 0xa3, 0xf4, 0xd0, 0x64, 0xeb, 0xc6, 0x92, 0x90, 0x22, 0xe4, 0xcc, 0xe7, 0x8e, 0x95, 0x8d, 0x96, 0x42, 0x69, 0xec, 0xe3, 0xd3, 0x79, 0xb4, 0x4b, 0xf7, 0xcf, 0xb7, 0xe1, 0x79, 0x92, 0x3e, 0x03, 0x53, 0xe5, 0xc3, 0xa6, 0x9a, 0x20, 0xe7, 0xd4, 0xcc, 0x74, 0x5b, 0xd6, 0x74, 0x86, 0xef, 0x74, 0x4f, 0xe7, 0x99, 0xd5, 0x14, 0x0d, 0xf5, 0x0c, 0x8f, 0xe4, 0x99, 0xef, 0x74, 0x4b, 0x61, 0xd3, 0x09, 0x9e, 0xbd, 0x08, 0x13, 0x54, 0xc6, 0xb0, 0x81, 0xcd, 0x94, 0x7c, 0x56, 0x83, 0x49, 0x26, 0x61, 0xe5, 0x31, 0x40, 0x9b, 0xc9, 0x98, 0xf5, 0x5f, 0x29, 0x89, 0xac, 0xff, 0xca, 0x49, 0x29, 0x7b, 0x0d, 0x66, 0x84, 0xfd, 0x4b, 0x4b, 0x52, 0x49, 0x82, 0xf5, 0x5f, 0x35, 0x39, 0x99, 0x8a, 0xbf, 0xf7, 0x1b, 0x35, 0x96, 0x7d, 0x05, 0xe4, 0xc1, 0x9d, 0x4e, 0x79, 0x1c, 0xa4, 0x4d, 0x6b, 0xca, 0xe7, 0x41, 0x2a, 0x95, 0x92, 0x28, 0x35, 0xf3, 0xb3, 0x5f, 0xa6, 0x27, 0x4b, 0xba, 0x69, 0xea, 0xdd, 0x7b, 0xba, 0x59, 0x2a, 0x11, 0xe3, 0xd7, 0xe0, 0x8a, 0xef, 0x4e, 0xa9, 0x65, 0x5f, 0x2e, 0x3b, 0xf6, 0x95, 0xca, 0x80, 0x7d, 0xa5, 0x62, 0xdb, 0xa3, 0xa2, 0x7b, 0xe2, 0xbc, 0x29, 0xfb, 0xec, 0x32, 0x2a, 0x4d, 0xe6, 0x84, 0x7b, 0xb3, 0xf8, 0x1a, 0xd1, 0x2d, 0xf9, 0xea, 0xea, 0x21, 0x27, 0xd6, 0xa5, 0x62, 0x99, 0xd8, 0x97, 0x7d, 0xed, 0x1f, 0x08, 0xc7, 0xaa, 0xfc, 0x1b, 0x82, 0x4c, 0x52, 0xa6, 0x0e, 0x57, 0x7c, 0x27, 0x69, 0x31, 0x97, 0xdd, 0x2b, 0xd4, 0xe1, 0xaa, 0xaf, 0x6e, 0x3b, 0xe4, 0xd2, 0x57, 0xb5, 0xb8, 0x4c, 0x5e, 0xf2, 0x9b, 0x2b, 0xf2, 0x15, 0x37, 0x47, 0xb9, 0x0a, 0x4c, 0x02, 0xe4, 0x6a, 0x15, 0xcb, 0xc4, 0xa0, 0x14, 0x68, 0x10, 0x1c, 0x25, 0xd7, 0xb2, 0xf8, 0x3a, 0x99, 0xa4, 0x1c, 0x38, 0x49, 0x48, 0xa8, 0x5c, 0xf3, 0xd2, 0xee, 0xc9, 0x99, 0x1a, 0x7b, 0x72, 0xa6, 0xc6, 0xfe, 0x71, 0xa6, 0xc6, 0x3e, 0x39, 0x53, 0xd1, 0x67, 0x67, 0x2a, 0xfa, 0xfc, 0x4c, 0x45, 0x5f, 0x9c, 0xa9, 0xe8, 0x9d, 0xbe, 0x8a, 0x3e, 0xe8, 0xab, 0xe8, 0xc3, 0xbe, 0x8a, 0xfe, 0xd8, 0x57, 0xd1, 0xe3, 0xbe, 0x8a, 0x4e, 0xfa, 0x6a, 0xec, 0x49, 0x5f, 0x45, 0x9f, 0xf4, 0x55, 0xf4, 0x59, 0x5f, 0x8d, 0x7d, 0xde, 0x57, 0xd1, 0x17, 0x7d, 0x35, 0xf6, 0xce, 0xa7, 0x6a, 0xec, 0xd1, 0xa7, 0x6a, 0xec, 0x83, 0x4f, 0x55, 0xf4, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3b, 0xf6, 0x66, 0xae, 0x4e, 0x36, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/combos/unmarshaler/thetest.proto000066400000000000000000000557211317075173200247060ustar00rootroot00000000000000// 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 test; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.protosizer_all) = false; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; option (gogoproto.compare_all) = true; message NidOptNative { optional double Field1 = 1 [(gogoproto.nullable) = false]; optional float Field2 = 2 [(gogoproto.nullable) = false]; optional int32 Field3 = 3 [(gogoproto.nullable) = false]; optional int64 Field4 = 4 [(gogoproto.nullable) = false]; optional uint32 Field5 = 5 [(gogoproto.nullable) = false]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false]; optional sint64 Field8 = 8 [(gogoproto.nullable) = false]; optional fixed32 Field9 = 9 [(gogoproto.nullable) = false]; optional sfixed32 Field10 = 10 [(gogoproto.nullable) = false]; optional fixed64 Field11 = 11 [(gogoproto.nullable) = false]; optional sfixed64 Field12 = 12 [(gogoproto.nullable) = false]; optional bool Field13 = 13 [(gogoproto.nullable) = false]; optional string Field14 = 14 [(gogoproto.nullable) = false]; optional bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinOptNative { optional double Field1 = 1; optional float Field2 = 2; optional int32 Field3 = 3; optional int64 Field4 = 4; optional uint32 Field5 = 5; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional sint64 Field8 = 8; optional fixed32 Field9 = 9; optional sfixed32 Field10 = 10; optional fixed64 Field11 = 11; optional sfixed64 Field12 = 12; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NidRepNative { repeated double Field1 = 1 [(gogoproto.nullable) = false]; repeated float Field2 = 2 [(gogoproto.nullable) = false]; repeated int32 Field3 = 3 [(gogoproto.nullable) = false]; repeated int64 Field4 = 4 [(gogoproto.nullable) = false]; repeated uint32 Field5 = 5 [(gogoproto.nullable) = false]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false]; repeated sint64 Field8 = 8 [(gogoproto.nullable) = false]; repeated fixed32 Field9 = 9 [(gogoproto.nullable) = false]; repeated sfixed32 Field10 = 10 [(gogoproto.nullable) = false]; repeated fixed64 Field11 = 11 [(gogoproto.nullable) = false]; repeated sfixed64 Field12 = 12 [(gogoproto.nullable) = false]; repeated bool Field13 = 13 [(gogoproto.nullable) = false]; repeated string Field14 = 14 [(gogoproto.nullable) = false]; repeated bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinRepNative { repeated double Field1 = 1; repeated float Field2 = 2; repeated int32 Field3 = 3; repeated int64 Field4 = 4; repeated uint32 Field5 = 5; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated sint64 Field8 = 8; repeated fixed32 Field9 = 9; repeated sfixed32 Field10 = 10; repeated fixed64 Field11 = 11; repeated sfixed64 Field12 = 12; repeated bool Field13 = 13; repeated string Field14 = 14; repeated bytes Field15 = 15; } message NidRepPackedNative { repeated double Field1 = 1 [(gogoproto.nullable) = false, packed = true]; repeated float Field2 = 2 [(gogoproto.nullable) = false, packed = true]; repeated int32 Field3 = 3 [(gogoproto.nullable) = false, packed = true]; repeated int64 Field4 = 4 [(gogoproto.nullable) = false, packed = true]; repeated uint32 Field5 = 5 [(gogoproto.nullable) = false, packed = true]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false, packed = true]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false, packed = true]; repeated sint64 Field8 = 8 [(gogoproto.nullable) = false, packed = true]; repeated fixed32 Field9 = 9 [(gogoproto.nullable) = false, packed = true]; repeated sfixed32 Field10 = 10 [(gogoproto.nullable) = false, packed = true]; repeated fixed64 Field11 = 11 [(gogoproto.nullable) = false, packed = true]; repeated sfixed64 Field12 = 12 [(gogoproto.nullable) = false, packed = true]; repeated bool Field13 = 13 [(gogoproto.nullable) = false, packed = true]; } message NinRepPackedNative { repeated double Field1 = 1 [packed = true]; repeated float Field2 = 2 [packed = true]; repeated int32 Field3 = 3 [packed = true]; repeated int64 Field4 = 4 [packed = true]; repeated uint32 Field5 = 5 [packed = true]; repeated uint64 Field6 = 6 [packed = true]; repeated sint32 Field7 = 7 [packed = true]; repeated sint64 Field8 = 8 [packed = true]; repeated fixed32 Field9 = 9 [packed = true]; repeated sfixed32 Field10 = 10 [packed = true]; repeated fixed64 Field11 = 11 [packed = true]; repeated sfixed64 Field12 = 12 [packed = true]; repeated bool Field13 = 13 [packed = true]; } message NidOptStruct { optional double Field1 = 1 [(gogoproto.nullable) = false]; optional float Field2 = 2 [(gogoproto.nullable) = false]; optional NidOptNative Field3 = 3 [(gogoproto.nullable) = false]; optional NinOptNative Field4 = 4 [(gogoproto.nullable) = false]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false]; optional NidOptNative Field8 = 8 [(gogoproto.nullable) = false]; optional bool Field13 = 13 [(gogoproto.nullable) = false]; optional string Field14 = 14 [(gogoproto.nullable) = false]; optional bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinOptStruct { optional double Field1 = 1; optional float Field2 = 2; optional NidOptNative Field3 = 3; optional NinOptNative Field4 = 4; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional NidOptNative Field8 = 8; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NidRepStruct { repeated double Field1 = 1 [(gogoproto.nullable) = false]; repeated float Field2 = 2 [(gogoproto.nullable) = false]; repeated NidOptNative Field3 = 3 [(gogoproto.nullable) = false]; repeated NinOptNative Field4 = 4 [(gogoproto.nullable) = false]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false]; repeated NidOptNative Field8 = 8 [(gogoproto.nullable) = false]; repeated bool Field13 = 13 [(gogoproto.nullable) = false]; repeated string Field14 = 14 [(gogoproto.nullable) = false]; repeated bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinRepStruct { repeated double Field1 = 1; repeated float Field2 = 2; repeated NidOptNative Field3 = 3; repeated NinOptNative Field4 = 4; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated NidOptNative Field8 = 8; repeated bool Field13 = 13; repeated string Field14 = 14; repeated bytes Field15 = 15; } message NidEmbeddedStruct { optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NidOptNative Field200 = 200 [(gogoproto.nullable) = false]; optional bool Field210 = 210 [(gogoproto.nullable) = false]; } message NinEmbeddedStruct { optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NidOptNative Field200 = 200; optional bool Field210 = 210; } message NidNestedStruct { optional NidOptStruct Field1 = 1 [(gogoproto.nullable) = false]; repeated NidRepStruct Field2 = 2 [(gogoproto.nullable) = false]; } message NinNestedStruct { optional NinOptStruct Field1 = 1; repeated NinRepStruct Field2 = 2; } message NidOptCustom { optional bytes Id = 1 [(gogoproto.customtype) = "Uuid", (gogoproto.nullable) = false]; optional bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } message CustomDash { optional bytes Value = 1 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom-dash-type.Bytes"]; } message NinOptCustom { optional bytes Id = 1 [(gogoproto.customtype) = "Uuid"]; optional bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message NidRepCustom { repeated bytes Id = 1 [(gogoproto.customtype) = "Uuid", (gogoproto.nullable) = false]; repeated bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } message NinRepCustom { repeated bytes Id = 1 [(gogoproto.customtype) = "Uuid"]; repeated bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message NinOptNativeUnion { option (gogoproto.onlyone) = true; optional double Field1 = 1; optional float Field2 = 2; optional int32 Field3 = 3; optional int64 Field4 = 4; optional uint32 Field5 = 5; optional uint64 Field6 = 6; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NinOptStructUnion { option (gogoproto.onlyone) = true; optional double Field1 = 1; optional float Field2 = 2; optional NidOptNative Field3 = 3; optional NinOptNative Field4 = 4; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NinEmbeddedStructUnion { option (gogoproto.onlyone) = true; optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NinOptNative Field200 = 200; optional bool Field210 = 210; } message NinNestedStructUnion { option (gogoproto.onlyone) = true; optional NinOptNativeUnion Field1 = 1; optional NinOptStructUnion Field2 = 2; optional NinEmbeddedStructUnion Field3 = 3; } message Tree { option (gogoproto.onlyone) = true; optional OrBranch Or = 1; optional AndBranch And = 2; optional Leaf Leaf = 3; } message OrBranch { optional Tree Left = 1 [(gogoproto.nullable) = false]; optional Tree Right = 2 [(gogoproto.nullable) = false]; } message AndBranch { optional Tree Left = 1 [(gogoproto.nullable) = false]; optional Tree Right = 2 [(gogoproto.nullable) = false]; } message Leaf { optional int64 Value = 1 [(gogoproto.nullable) = false]; optional string StrValue = 2 [(gogoproto.nullable) = false]; } message DeepTree { option (gogoproto.onlyone) = true; optional ADeepBranch Down = 1; optional AndDeepBranch And = 2; optional DeepLeaf Leaf = 3; } message ADeepBranch { optional DeepTree Down = 2 [(gogoproto.nullable) = false]; } message AndDeepBranch { optional DeepTree Left = 1 [(gogoproto.nullable) = false]; optional DeepTree Right = 2 [(gogoproto.nullable) = false]; } message DeepLeaf { optional Tree Tree = 1 [(gogoproto.nullable) = false]; } message Nil { } enum TheTestEnum { A = 0; B = 1; C = 2; } enum AnotherTestEnum { option (gogoproto.goproto_enum_prefix) = false; D = 10; E = 11; } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. enum YetAnotherTestEnum { option (gogoproto.goproto_enum_prefix) = false; AA = 0; BB = 1 [(gogoproto.enumvalue_customname) = "BetterYetBB"]; } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. enum YetYetAnotherTestEnum { option (gogoproto.goproto_enum_prefix) = true; CC = 0; DD = 1 [(gogoproto.enumvalue_customname) = "BetterYetDD"]; } message NidOptEnum { optional TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; } message NinOptEnum { optional TheTestEnum Field1 = 1; optional YetAnotherTestEnum Field2 = 2; optional YetYetAnotherTestEnum Field3 = 3; } message NidRepEnum { repeated TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; repeated YetAnotherTestEnum Field2 = 2 [(gogoproto.nullable) = false]; repeated YetYetAnotherTestEnum Field3 = 3 [(gogoproto.nullable) = false]; } message NinRepEnum { repeated TheTestEnum Field1 = 1; repeated YetAnotherTestEnum Field2 = 2; repeated YetYetAnotherTestEnum Field3 = 3; } message NinOptEnumDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional TheTestEnum Field1 = 1 [default=C]; optional YetAnotherTestEnum Field2 = 2 [default=BB]; optional YetYetAnotherTestEnum Field3 = 3 [default=CC]; } message AnotherNinOptEnum { optional AnotherTestEnum Field1 = 1; optional YetAnotherTestEnum Field2 = 2; optional YetYetAnotherTestEnum Field3 = 3; } message AnotherNinOptEnumDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional AnotherTestEnum Field1 = 1 [default=E]; optional YetAnotherTestEnum Field2 = 2 [default=BB]; optional YetYetAnotherTestEnum Field3 = 3 [default=CC]; } message Timer { optional sfixed64 Time1 = 1 [(gogoproto.nullable) = false]; optional sfixed64 Time2 = 2 [(gogoproto.nullable) = false]; optional bytes Data = 3 [(gogoproto.nullable) = false]; } message MyExtendable { option (gogoproto.face) = false; optional int64 Field1 = 1; extensions 100 to 199; } extend MyExtendable { optional double FieldA = 100; optional NinOptNative FieldB = 101; optional NinEmbeddedStruct FieldC = 102; repeated int64 FieldD = 104; repeated NinOptNative FieldE = 105; } message OtherExtenable { option (gogoproto.face) = false; optional int64 Field2 = 2; extensions 14 to 16; optional int64 Field13 = 13; extensions 10 to 12; optional MyExtendable M = 1; } message NestedDefinition { optional int64 Field1 = 1; message NestedMessage { optional fixed64 NestedField1 = 1; optional NestedNestedMsg NNM = 2; message NestedNestedMsg { optional string NestedNestedField1 = 10; } } enum NestedEnum { TYPE_NESTED = 1; } optional NestedEnum EnumField = 2; optional NestedMessage.NestedNestedMsg NNM = 3; optional NestedMessage NM = 4; } message NestedScope { optional NestedDefinition.NestedMessage.NestedNestedMsg A = 1; optional NestedDefinition.NestedEnum B = 2; optional NestedDefinition.NestedMessage C = 3; } message NinOptNativeDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional double Field1 = 1 [default = 1234.1234]; optional float Field2 = 2 [default = 1234.1234]; optional int32 Field3 = 3 [default = 1234]; optional int64 Field4 = 4 [default = 1234]; optional uint32 Field5 = 5 [default = 1234]; optional uint64 Field6 = 6 [default = 1234]; optional sint32 Field7 = 7 [default = 1234]; optional sint64 Field8 = 8 [default = 1234]; optional fixed32 Field9 = 9 [default = 1234]; optional sfixed32 Field10 = 10 [default = 1234]; optional fixed64 Field11 = 11 [default = 1234]; optional sfixed64 Field12 = 12 [default = 1234]; optional bool Field13 = 13 [default = true]; optional string Field14 = 14 [default = "1234"]; optional bytes Field15 = 15; } message CustomContainer { optional NidOptCustom CustomStruct = 1 [(gogoproto.nullable) = false]; } message CustomNameNidOptNative { optional double Field1 = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldB"]; optional int32 Field3 = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldC"]; optional int64 Field4 = 4 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldD"]; optional uint32 Field5 = 5 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldE"]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldF"]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldG"]; optional sint64 Field8 = 8 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldH"]; optional fixed32 Field9 = 9 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldI"]; optional sfixed32 Field10 = 10 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldJ"]; optional fixed64 Field11 = 11 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldK"]; optional sfixed64 Field12 = 12 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldL"]; optional bool Field13 = 13 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldM"]; optional string Field14 = 14 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldN"]; optional bytes Field15 = 15 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldO"]; } message CustomNameNinOptNative { optional double Field1 = 1 [(gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.customname) = "FieldB"]; optional int32 Field3 = 3 [(gogoproto.customname) = "FieldC"]; optional int64 Field4 = 4 [(gogoproto.customname) = "FieldD"]; optional uint32 Field5 = 5 [(gogoproto.customname) = "FieldE"]; optional uint64 Field6 = 6 [(gogoproto.customname) = "FieldF"]; optional sint32 Field7 = 7 [(gogoproto.customname) = "FieldG"]; optional sint64 Field8 = 8 [(gogoproto.customname) = "FieldH"]; optional fixed32 Field9 = 9 [(gogoproto.customname) = "FieldI"]; optional sfixed32 Field10 = 10 [(gogoproto.customname) = "FieldJ"]; optional fixed64 Field11 = 11 [(gogoproto.customname) = "FieldK"]; optional sfixed64 Field12 = 12 [(gogoproto.customname) = "FielL"]; optional bool Field13 = 13 [(gogoproto.customname) = "FieldM"]; optional string Field14 = 14 [(gogoproto.customname) = "FieldN"]; optional bytes Field15 = 15 [(gogoproto.customname) = "FieldO"]; } message CustomNameNinRepNative { repeated double Field1 = 1 [(gogoproto.customname) = "FieldA"]; repeated float Field2 = 2 [(gogoproto.customname) = "FieldB"]; repeated int32 Field3 = 3 [(gogoproto.customname) = "FieldC"]; repeated int64 Field4 = 4 [(gogoproto.customname) = "FieldD"]; repeated uint32 Field5 = 5 [(gogoproto.customname) = "FieldE"]; repeated uint64 Field6 = 6 [(gogoproto.customname) = "FieldF"]; repeated sint32 Field7 = 7 [(gogoproto.customname) = "FieldG"]; repeated sint64 Field8 = 8 [(gogoproto.customname) = "FieldH"]; repeated fixed32 Field9 = 9 [(gogoproto.customname) = "FieldI"]; repeated sfixed32 Field10 = 10 [(gogoproto.customname) = "FieldJ"]; repeated fixed64 Field11 = 11 [(gogoproto.customname) = "FieldK"]; repeated sfixed64 Field12 = 12 [(gogoproto.customname) = "FieldL"]; repeated bool Field13 = 13 [(gogoproto.customname) = "FieldM"]; repeated string Field14 = 14 [(gogoproto.customname) = "FieldN"]; repeated bytes Field15 = 15 [(gogoproto.customname) = "FieldO"]; } message CustomNameNinStruct { optional double Field1 = 1 [(gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.customname) = "FieldB"]; optional NidOptNative Field3 = 3 [(gogoproto.customname) = "FieldC"]; repeated NinOptNative Field4 = 4 [(gogoproto.customname) = "FieldD"]; optional uint64 Field6 = 6 [(gogoproto.customname) = "FieldE"]; optional sint32 Field7 = 7 [(gogoproto.customname) = "FieldF"]; optional NidOptNative Field8 = 8 [(gogoproto.customname) = "FieldG"]; optional bool Field13 = 13 [(gogoproto.customname) = "FieldH"]; optional string Field14 = 14 [(gogoproto.customname) = "FieldI"]; optional bytes Field15 = 15 [(gogoproto.customname) = "FieldJ"]; } message CustomNameCustomType { optional bytes Id = 1 [(gogoproto.customname) = "FieldA", (gogoproto.customtype) = "Uuid"]; optional bytes Value = 2 [(gogoproto.customname) = "FieldB", (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; repeated bytes Ids = 3 [(gogoproto.customname) = "FieldC", (gogoproto.customtype) = "Uuid"]; repeated bytes Values = 4 [(gogoproto.customname) = "FieldD", (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message CustomNameNinEmbeddedStructUnion { option (gogoproto.onlyone) = true; optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NinOptNative Field200 = 200 [(gogoproto.customname) = "FieldA"]; optional bool Field210 = 210 [(gogoproto.customname) = "FieldB"]; } message CustomNameEnum { optional TheTestEnum Field1 = 1 [(gogoproto.customname) = "FieldA"]; repeated TheTestEnum Field2 = 2 [(gogoproto.customname) = "FieldB"]; } message NoExtensionsMap { option (gogoproto.face) = false; option (gogoproto.goproto_extensions_map) = false; optional int64 Field1 = 1; extensions 100 to 199; } extend NoExtensionsMap { optional double FieldA1 = 100; optional NinOptNative FieldB1 = 101; optional NinEmbeddedStruct FieldC1 = 102; } message Unrecognized { option (gogoproto.goproto_unrecognized) = false; optional string Field1 = 1; } message UnrecognizedWithInner { message Inner { option (gogoproto.goproto_unrecognized) = false; optional uint32 Field1 = 1; } repeated Inner embedded = 1; optional string Field2 = 2; } message UnrecognizedWithEmbed { message Embedded { option (gogoproto.goproto_unrecognized) = false; optional uint32 Field1 = 1; } optional Embedded embedded = 1 [(gogoproto.embed) = true, (gogoproto.nullable) = false]; optional string Field2 = 2; } message Node { optional string Label = 1; repeated Node Children = 2; } message NonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message NidOptNonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T", (gogoproto.nullable) = false]; } message NinOptNonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message NidRepNonByteCustomType { repeated ProtoType Field1 = 1 [(gogoproto.customtype) = "T", (gogoproto.nullable) = false]; } message NinRepNonByteCustomType { repeated ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message ProtoType { optional string Field2 = 1; } golang-gogoprotobuf-0.5/test/combos/unmarshaler/thetestpb_test.go000066400000000000000000016765071317075173200255450ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/thetest.proto /* Package test is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/thetest.proto It has these top-level messages: NidOptNative NinOptNative NidRepNative NinRepNative NidRepPackedNative NinRepPackedNative NidOptStruct NinOptStruct NidRepStruct NinRepStruct NidEmbeddedStruct NinEmbeddedStruct NidNestedStruct NinNestedStruct NidOptCustom CustomDash NinOptCustom NidRepCustom NinRepCustom NinOptNativeUnion NinOptStructUnion NinEmbeddedStructUnion NinNestedStructUnion Tree OrBranch AndBranch Leaf DeepTree ADeepBranch AndDeepBranch DeepLeaf Nil NidOptEnum NinOptEnum NidRepEnum NinRepEnum NinOptEnumDefault AnotherNinOptEnum AnotherNinOptEnumDefault Timer MyExtendable OtherExtenable NestedDefinition NestedScope NinOptNativeDefault CustomContainer CustomNameNidOptNative CustomNameNinOptNative CustomNameNinRepNative CustomNameNinStruct CustomNameCustomType CustomNameNinEmbeddedStructUnion CustomNameEnum NoExtensionsMap Unrecognized UnrecognizedWithInner UnrecognizedWithEmbed Node NonByteCustomType NidOptNonByteCustomType NinOptNonByteCustomType NidRepNonByteCustomType NinRepNonByteCustomType ProtoType */ package test import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestNidOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepPackedNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepPackedNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepPackedNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepPackedNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepPackedNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepPackedNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepPackedNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepPackedNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepPackedNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepPackedNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepPackedNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepPackedNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidEmbeddedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidEmbeddedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidEmbeddedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidEmbeddedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidEmbeddedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidEmbeddedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinEmbeddedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinEmbeddedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinEmbeddedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinEmbeddedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidNestedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidNestedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidNestedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidNestedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidNestedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidNestedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinNestedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinNestedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinNestedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinNestedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomDashProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomDashProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomDash, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomDash(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomDashProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomDash(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomDash{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptNativeUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNativeUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNativeUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNativeUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinEmbeddedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinEmbeddedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinEmbeddedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinEmbeddedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinNestedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinNestedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinNestedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinNestedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinNestedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestTreeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkTreeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Tree, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkTreeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedTree(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Tree{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOrBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkOrBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OrBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOrBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOrBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOrBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OrBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAndBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAndBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAndBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAndBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAndBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AndBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestLeafProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkLeafProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Leaf, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkLeafProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedLeaf(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Leaf{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDeepTreeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkDeepTreeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepTree, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDeepTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDeepTreeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDeepTree(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DeepTree{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestADeepBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkADeepBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ADeepBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedADeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkADeepBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedADeepBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ADeepBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAndDeepBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAndDeepBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndDeepBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAndDeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAndDeepBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAndDeepBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AndDeepBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDeepLeafProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkDeepLeafProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepLeaf, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDeepLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDeepLeafProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDeepLeaf(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DeepLeaf{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNilProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNilProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nil, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNil(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNilProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNil(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Nil{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptEnumDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnumDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptEnumDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptEnumDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptEnumDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAnotherNinOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAnotherNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAnotherNinOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAnotherNinOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AnotherNinOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAnotherNinOptEnumDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnumDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAnotherNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAnotherNinOptEnumDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAnotherNinOptEnumDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AnotherNinOptEnumDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestTimerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkTimerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Timer, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedTimer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkTimerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedTimer(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Timer{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMyExtendableProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMyExtendableProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyExtendable, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMyExtendable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMyExtendableProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMyExtendable(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MyExtendable{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOtherExtenableProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkOtherExtenableProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OtherExtenable, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOtherExtenable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOtherExtenableProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOtherExtenable(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OtherExtenable{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinitionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedDefinitionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinitionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedDefinition_NestedMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinition_NestedMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition_NestedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition_NestedMessage{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessage_NestedNestedMsgProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage_NestedNestedMsg, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedScopeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedScopeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedScope, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedScope(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedScopeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedScope(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedScope{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptNativeDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNativeDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNativeDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNativeDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomContainerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomContainerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomContainer, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomContainer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomContainerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomContainer(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomContainer{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNidOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNidOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNidOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNidOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNidOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNidOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNinOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNinRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNinStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinEmbeddedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNinEmbeddedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinEmbeddedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinEmbeddedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinEmbeddedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNoExtensionsMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNoExtensionsMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NoExtensionsMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNoExtensionsMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNoExtensionsMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNoExtensionsMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NoExtensionsMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Unrecognized, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognized(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognized(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Unrecognized{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInnerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedWithInnerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithInnerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithInner(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithInner{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInner_InnerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedWithInner_InnerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner_Inner, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner_Inner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithInner_InnerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithInner_Inner(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithInner_Inner{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedWithEmbedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithEmbedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithEmbed(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithEmbed{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbed_EmbeddedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedWithEmbed_EmbeddedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed_Embedded, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithEmbed_EmbeddedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithEmbed_Embedded{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNodeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNodeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Node, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNode(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNodeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNode(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Node{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestProtoTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkProtoTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedProtoType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkProtoTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedProtoType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ProtoType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepPackedNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepPackedNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidEmbeddedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinEmbeddedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidNestedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinNestedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomDashJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinNestedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTreeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOrBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAndBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestLeafJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDeepTreeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestADeepBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAndDeepBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDeepLeafJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNilJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptEnumDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAnotherNinOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTimerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMyExtendableJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOtherExtenableJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinitionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedScopeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomContainerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNidOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNoExtensionsMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithInnerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNodeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestProtoTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepPackedNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepPackedNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepPackedNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepPackedNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidEmbeddedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidEmbeddedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidNestedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidNestedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomDashProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomDashProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTreeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Tree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTreeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Tree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOrBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOrBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestLeafProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Leaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestLeafProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Leaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepTreeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepTreeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestADeepBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestADeepBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndDeepBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndDeepBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepLeafProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepLeafProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNilProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Nil{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNilProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Nil{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTimerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Timer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTimerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Timer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyExtendableProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyExtendableProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOtherExtenableProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOtherExtenableProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinitionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinitionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedScopeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedScopeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomContainerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomContainerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNidOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNidOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNoExtensionsMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNoExtensionsMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInnerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInnerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNodeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Node{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNodeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Node{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepPackedNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepPackedNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepPackedNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepPackedNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidEmbeddedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidEmbeddedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinEmbeddedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinEmbeddedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidNestedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidNestedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinNestedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinNestedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomDashCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomDash(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNativeUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinEmbeddedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinEmbeddedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinNestedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinNestedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestTreeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedTree(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestOrBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedOrBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAndBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAndBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestLeafCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedLeaf(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestDeepTreeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedDeepTree(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestADeepBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedADeepBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAndDeepBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAndDeepBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestDeepLeafCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedDeepLeaf(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNilCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNil(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptEnumDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptEnumDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAnotherNinOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAnotherNinOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAnotherNinOptEnumDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAnotherNinOptEnumDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestTimerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedTimer(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestMyExtendableCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedMyExtendable(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestOtherExtenableCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedOtherExtenable(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinitionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinition_NestedMessageCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition_NestedMessage(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedScopeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedScope(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNativeDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomContainerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomContainer(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNidOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNidOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinEmbeddedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNoExtensionsMapCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNoExtensionsMap(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognized(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithInnerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithInner(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithInner_InnerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithInner_Inner(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithEmbedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithEmbed(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithEmbed_EmbeddedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNodeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNode(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestProtoTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedProtoType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestThetestDescription(t *testing.T) { ThetestDescription() } func TestNidOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepPackedNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepPackedNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidEmbeddedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinEmbeddedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidNestedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinNestedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomDashVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinEmbeddedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinNestedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTreeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOrBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAndBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestLeafVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDeepTreeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestADeepBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAndDeepBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDeepLeafVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNilVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptEnumDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAnotherNinOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAnotherNinOptEnumDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTimerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMyExtendableVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOtherExtenableVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinitionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinition_NestedMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedScopeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomContainerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNidOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinEmbeddedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNoExtensionsMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithInnerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithInner_InnerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithEmbedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithEmbed_EmbeddedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNodeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestProtoTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepPackedNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepPackedNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidEmbeddedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinEmbeddedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidNestedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinNestedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomDashFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNativeUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinEmbeddedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinNestedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestTreeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestOrBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAndBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestLeafFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestDeepTreeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestADeepBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAndDeepBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestDeepLeafFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNilFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAnotherNinOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestTimerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinitionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinition_NestedMessageFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedScopeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomContainerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNidOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinEmbeddedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithInnerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithInner_InnerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithEmbedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNodeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestProtoTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepPackedNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepPackedNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidEmbeddedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinEmbeddedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidNestedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinNestedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomDashGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinEmbeddedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinNestedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTreeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOrBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAndBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestLeafGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestDeepTreeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestADeepBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAndDeepBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestDeepLeafGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNilGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptEnumDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAnotherNinOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAnotherNinOptEnumDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTimerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMyExtendableGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOtherExtenableGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinitionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinition_NestedMessageGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedScopeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomContainerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNidOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinEmbeddedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNoExtensionsMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithInnerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithInner_InnerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithEmbedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithEmbed_EmbeddedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNodeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestProtoTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepPackedNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepPackedNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepPackedNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepPackedNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepPackedNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepPackedNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidEmbeddedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidEmbeddedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidEmbeddedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinEmbeddedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidNestedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidNestedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidNestedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinNestedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomDashSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomDashSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomDash, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomDash(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNativeUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinEmbeddedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinNestedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinNestedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestTreeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkTreeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Tree, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOrBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOrBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OrBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOrBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAndBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAndBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAndBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestLeafSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkLeafSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Leaf, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDeepTreeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDeepTreeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepTree, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDeepTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestADeepBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkADeepBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ADeepBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedADeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAndDeepBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAndDeepBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndDeepBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAndDeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDeepLeafSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDeepLeafSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepLeaf, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDeepLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNilSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNilSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nil, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNil(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptEnumDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnumDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAnotherNinOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAnotherNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAnotherNinOptEnumDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnumDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAnotherNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestTimerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkTimerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Timer, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedTimer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMyExtendableSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMyExtendableSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyExtendable, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMyExtendable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOtherExtenableSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOtherExtenableSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OtherExtenable, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOtherExtenable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinitionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinitionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinition_NestedMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessage_NestedNestedMsgSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage_NestedNestedMsg, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedScopeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedScopeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedScope, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedScope(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNativeDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomContainerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomContainerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomContainer, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomContainer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNidOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNidOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNidOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinEmbeddedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinEmbeddedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinEmbeddedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNoExtensionsMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNoExtensionsMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NoExtensionsMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNoExtensionsMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Unrecognized, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognized(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInnerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithInnerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInner_InnerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithInner_InnerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner_Inner, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner_Inner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithEmbedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbed_EmbeddedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithEmbed_EmbeddedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed_Embedded, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNodeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNodeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Node, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNode(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestProtoTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkProtoTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedProtoType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepPackedNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepPackedNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidEmbeddedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinEmbeddedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidNestedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinNestedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomDashStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinEmbeddedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinNestedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTreeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOrBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAndBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestLeafStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestDeepTreeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestADeepBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAndDeepBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestDeepLeafStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNilStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptEnumDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAnotherNinOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAnotherNinOptEnumDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTimerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestMyExtendableStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOtherExtenableStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinitionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinition_NestedMessageStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedScopeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomContainerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNidOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinEmbeddedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNoExtensionsMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithInnerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithInner_InnerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithEmbedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithEmbed_EmbeddedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNodeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestProtoTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, true) v := p.GetValue() msg := &NinOptNativeUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinOptStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, true) v := p.GetValue() msg := &NinOptStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinEmbeddedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, true) v := p.GetValue() msg := &NinEmbeddedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinNestedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, true) v := p.GetValue() msg := &NinNestedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestTreeOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, true) v := p.GetValue() msg := &Tree{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestDeepTreeOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, true) v := p.GetValue() msg := &DeepTree{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestCustomNameNinEmbeddedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) v := p.GetValue() msg := &CustomNameNinEmbeddedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/combos/unmarshaler/uuid.go000066400000000000000000000063211317075173200234260ustar00rootroot00000000000000// 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. package test import ( "bytes" "encoding/hex" "encoding/json" ) func PutLittleEndianUint64(b []byte, offset int, v uint64) { b[offset] = byte(v) b[offset+1] = byte(v >> 8) b[offset+2] = byte(v >> 16) b[offset+3] = byte(v >> 24) b[offset+4] = byte(v >> 32) b[offset+5] = byte(v >> 40) b[offset+6] = byte(v >> 48) b[offset+7] = byte(v >> 56) } type Uuid []byte func (uuid Uuid) Marshal() ([]byte, error) { if len(uuid) == 0 { return nil, nil } return []byte(uuid), nil } func (uuid Uuid) MarshalTo(data []byte) (n int, err error) { if len(uuid) == 0 { return 0, nil } copy(data, uuid) return 16, nil } func (uuid *Uuid) Unmarshal(data []byte) error { if len(data) == 0 { uuid = nil return nil } id := Uuid(make([]byte, 16)) copy(id, data) *uuid = id return nil } func (uuid *Uuid) Size() int { if uuid == nil { return 0 } if len(*uuid) == 0 { return 0 } return 16 } func (uuid Uuid) MarshalJSON() ([]byte, error) { s := hex.EncodeToString([]byte(uuid)) return json.Marshal(s) } func (uuid *Uuid) UnmarshalJSON(data []byte) error { var s string err := json.Unmarshal(data, &s) if err != nil { return err } d, err := hex.DecodeString(s) if err != nil { return err } *uuid = Uuid(d) return nil } func (uuid Uuid) Equal(other Uuid) bool { return bytes.Equal(uuid[0:], other[0:]) } func (uuid Uuid) Compare(other Uuid) int { return bytes.Compare(uuid[0:], other[0:]) } type int63 interface { Int63() int64 } func NewPopulatedUuid(r int63) *Uuid { u := RandV4(r) return &u } func RandV4(r int63) Uuid { uuid := make(Uuid, 16) uuid.RandV4(r) return uuid } func (uuid Uuid) RandV4(r int63) { PutLittleEndianUint64(uuid, 0, uint64(r.Int63())) PutLittleEndianUint64(uuid, 8, uint64(r.Int63())) uuid[6] = (uuid[6] & 0xf) | 0x40 uuid[8] = (uuid[8] & 0x3f) | 0x80 } golang-gogoprotobuf-0.5/test/custom-dash-type/000077500000000000000000000000001317075173200215325ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/custom-dash-type/customdash.go000066400000000000000000000053261317075173200242410ustar00rootroot00000000000000// 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. /* Package custom contains custom types for test and example purposes. These types are used by the test structures generated by gogoprotobuf. */ package custom import ( "bytes" "encoding/json" ) type Bytes []byte func (b Bytes) Marshal() ([]byte, error) { buffer := make([]byte, len(b)) _, err := b.MarshalTo(buffer) return buffer, err } func (b Bytes) MarshalTo(data []byte) (n int, err error) { copy(data, b) return len(b), nil } func (b *Bytes) Unmarshal(data []byte) error { if data == nil { b = nil return nil } pb := make([]byte, len(data)) copy(pb, data) *b = pb return nil } func (b Bytes) MarshalJSON() ([]byte, error) { data, err := b.Marshal() if err != nil { return nil, err } return json.Marshal(data) } func (b *Bytes) Size() int { return len(*b) } func (b *Bytes) UnmarshalJSON(data []byte) error { v := new([]byte) err := json.Unmarshal(data, v) if err != nil { return err } return b.Unmarshal(*v) } func (this Bytes) Equal(that Bytes) bool { return bytes.Equal(this, that) } func (this Bytes) Compare(that Bytes) int { return bytes.Compare(this, that) } type randy interface { Intn(n int) int } func NewPopulatedBytes(r randy) *Bytes { l := r.Intn(100) data := Bytes(make([]byte, l)) for i := 0; i < l; i++ { data[i] = byte(r.Intn(255)) } return &data } golang-gogoprotobuf-0.5/test/custom/000077500000000000000000000000001317075173200176365ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/custom/custom.go000066400000000000000000000077421317075173200215110ustar00rootroot00000000000000// 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. /* Package custom contains custom types for test and example purposes. These types are used by the test structures generated by gogoprotobuf. */ package custom import ( "bytes" "encoding/json" "errors" ) type Uint128 [2]uint64 func (u Uint128) Marshal() ([]byte, error) { buffer := make([]byte, 16) _, err := u.MarshalTo(buffer) return buffer, err } func (u Uint128) MarshalTo(data []byte) (n int, err error) { PutLittleEndianUint128(data, 0, u) return 16, nil } func GetLittleEndianUint64(b []byte, offset int) uint64 { v := uint64(b[offset+7]) << 56 v += uint64(b[offset+6]) << 48 v += uint64(b[offset+5]) << 40 v += uint64(b[offset+4]) << 32 v += uint64(b[offset+3]) << 24 v += uint64(b[offset+2]) << 16 v += uint64(b[offset+1]) << 8 v += uint64(b[offset]) return v } func PutLittleEndianUint64(b []byte, offset int, v uint64) { b[offset] = byte(v) b[offset+1] = byte(v >> 8) b[offset+2] = byte(v >> 16) b[offset+3] = byte(v >> 24) b[offset+4] = byte(v >> 32) b[offset+5] = byte(v >> 40) b[offset+6] = byte(v >> 48) b[offset+7] = byte(v >> 56) } func PutLittleEndianUint128(buffer []byte, offset int, v [2]uint64) { PutLittleEndianUint64(buffer, offset, v[0]) PutLittleEndianUint64(buffer, offset+8, v[1]) } func GetLittleEndianUint128(buffer []byte, offset int) (value [2]uint64) { value[0] = GetLittleEndianUint64(buffer, offset) value[1] = GetLittleEndianUint64(buffer, offset+8) return } func (u *Uint128) Unmarshal(data []byte) error { if data == nil { u = nil return nil } if len(data) == 0 { pu := Uint128{} *u = pu return nil } if len(data) != 16 { return errors.New("Uint128: invalid length") } pu := Uint128(GetLittleEndianUint128(data, 0)) *u = pu return nil } func (u Uint128) MarshalJSON() ([]byte, error) { data, err := u.Marshal() if err != nil { return nil, err } return json.Marshal(data) } func (u Uint128) Size() int { return 16 } func (u *Uint128) UnmarshalJSON(data []byte) error { v := new([]byte) err := json.Unmarshal(data, v) if err != nil { return err } return u.Unmarshal(*v) } func (this Uint128) Equal(that Uint128) bool { return this == that } func (this Uint128) Compare(that Uint128) int { thisdata, err := this.Marshal() if err != nil { panic(err) } thatdata, err := that.Marshal() if err != nil { panic(err) } return bytes.Compare(thisdata, thatdata) } type randy interface { Intn(n int) int } func NewPopulatedUint128(r randy) *Uint128 { data := make([]byte, 16) for i := 0; i < 16; i++ { data[i] = byte(r.Intn(255)) } u := Uint128(GetLittleEndianUint128(data, 0)) return &u } golang-gogoprotobuf-0.5/test/custom/custom_test.go000066400000000000000000000033151317075173200225400ustar00rootroot00000000000000// 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. package custom import ( "testing" ) func TestUint128(t *testing.T) { var uint128a = Uint128{0, 1} buf := make([]byte, 16) PutLittleEndianUint128(buf, 0, uint128a) uint128b := GetLittleEndianUint128(buf, 0) if !uint128a.Equal(uint128b) { t.Fatalf("%v != %v", uint128a, uint128b) } } golang-gogoprotobuf-0.5/test/custombytesnonstruct/000077500000000000000000000000001317075173200226655ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/custombytesnonstruct/Makefile000066400000000000000000000027531317075173200243340ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. proto.proto) golang-gogoprotobuf-0.5/test/custombytesnonstruct/custombytesnonstruct_test.go000066400000000000000000000030201317075173200306070ustar00rootroot00000000000000// 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. package custombytesnonstruct import testing "testing" func TestCustomBytesNonStruct(t *testing.T) { } golang-gogoprotobuf-0.5/test/custombytesnonstruct/customtype.go000066400000000000000000000030531317075173200254310ustar00rootroot00000000000000// 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. package custombytesnonstruct type CustomType int func (c *CustomType) Unmarshal(data []byte) error { data[0] = 42 return nil } golang-gogoprotobuf-0.5/test/custombytesnonstruct/proto.pb.go000066400000000000000000000160671317075173200247710ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto.proto /* Package custombytesnonstruct is a generated protocol buffer package. It is generated from these files: proto.proto It has these top-level messages: Object */ package custombytesnonstruct import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Object struct { CustomField1 *CustomType `protobuf:"bytes,1,opt,name=CustomField1,customtype=CustomType" json:"CustomField1,omitempty"` CustomField2 []CustomType `protobuf:"bytes,2,rep,name=CustomField2,customtype=CustomType" json:"CustomField2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Object) Reset() { *m = Object{} } func (m *Object) String() string { return proto.CompactTextString(m) } func (*Object) ProtoMessage() {} func (*Object) Descriptor() ([]byte, []int) { return fileDescriptorProto, []int{0} } func init() { proto.RegisterType((*Object)(nil), "custombytesnonstruct.Object") } func (m *Object) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Object: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Object: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CustomField1", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthProto } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v CustomType m.CustomField1 = &v if err := m.CustomField1.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CustomField2", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthProto } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v CustomType m.CustomField2 = append(m.CustomField2, v) if err := m.CustomField2[len(m.CustomField2)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipProto(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthProto } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipProto(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthProto } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipProto(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthProto = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowProto = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("proto.proto", fileDescriptorProto) } var fileDescriptorProto = []byte{ // 147 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2e, 0x28, 0xca, 0x2f, 0xc9, 0xd7, 0x03, 0x93, 0x42, 0x22, 0xc9, 0xa5, 0xc5, 0x25, 0xf9, 0xb9, 0x49, 0x95, 0x25, 0xa9, 0xc5, 0x79, 0xf9, 0x79, 0xc5, 0x25, 0x45, 0xa5, 0xc9, 0x25, 0x52, 0xba, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xe9, 0xf9, 0xe9, 0xf9, 0xfa, 0x60, 0xc5, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0x0c, 0x51, 0x2a, 0xe0, 0x62, 0xf3, 0x4f, 0xca, 0x4a, 0x4d, 0x2e, 0x11, 0x32, 0xe2, 0xe2, 0x71, 0x06, 0x1b, 0xe8, 0x96, 0x99, 0x9a, 0x93, 0x62, 0x28, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0xe3, 0xc4, 0x77, 0xeb, 0x9e, 0x3c, 0x17, 0x44, 0x3c, 0xa4, 0xb2, 0x20, 0x35, 0x08, 0x45, 0x0d, 0x9a, 0x1e, 0x23, 0x09, 0x26, 0x05, 0x66, 0x02, 0x7a, 0x8c, 0x9c, 0x58, 0x2e, 0x3c, 0x92, 0x63, 0x04, 0x04, 0x00, 0x00, 0xff, 0xff, 0xdd, 0xc6, 0xf3, 0xe3, 0xca, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/custombytesnonstruct/proto.proto000066400000000000000000000033541317075173200251220ustar00rootroot00000000000000// 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 custombytesnonstruct; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.unmarshaler_all) = true; message Object { optional bytes CustomField1 = 1 [(gogoproto.customtype) = "CustomType"]; repeated bytes CustomField2 = 2 [(gogoproto.customtype) = "CustomType"]; } golang-gogoprotobuf-0.5/test/dashfilename/000077500000000000000000000000001317075173200207445ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/dashfilename/dash-filename.proto000066400000000000000000000031071317075173200245270ustar00rootroot00000000000000// 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 dashfilename; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.marshaler_all) = true; message test { } golang-gogoprotobuf-0.5/test/dashfilename/df_test.go000066400000000000000000000035701317075173200227300ustar00rootroot00000000000000// 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. package dashfilename import ( "os" "os/exec" "testing" ) //Issue 16 : https://github.com/gogo/protobuf/issues/detail?id=16 func TestDashFilename(t *testing.T) { name := "dash-filename" cmd := exec.Command("protoc", "--gogo_out=.", "-I=../../../../../:../../protobuf/:.", name+".proto") data, err := cmd.CombinedOutput() if err != nil { t.Fatalf("err = %v: %s", err, string(data)) } if err := os.Remove(name + ".pb.go"); err != nil { panic(err) } } golang-gogoprotobuf-0.5/test/dashfilename/doc.go000066400000000000000000000000251317075173200220350ustar00rootroot00000000000000package dashfilename golang-gogoprotobuf-0.5/test/data/000077500000000000000000000000001317075173200172355ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/data/Makefile000066400000000000000000000031661317075173200207030ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2016, 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-min-version go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=. \ --proto_path=../../../../../:../../protobuf/:. data.proto golang-gogoprotobuf-0.5/test/data/data.pb.go000066400000000000000000000253271317075173200211060ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: data.proto /* Package data is a generated protocol buffer package. It is generated from these files: data.proto It has these top-level messages: MyMessage */ package data import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MyMessage struct { MyData uint32 `protobuf:"varint,1,opt,name=my_data,json=myData,proto3" json:"my_data,omitempty"` } func (m *MyMessage) Reset() { *m = MyMessage{} } func (*MyMessage) ProtoMessage() {} func (*MyMessage) Descriptor() ([]byte, []int) { return fileDescriptorData, []int{0} } func (m *MyMessage) GetMyData() uint32 { if m != nil { return m.MyData } return 0 } func init() { proto.RegisterType((*MyMessage)(nil), "data.MyMessage") } func (this *MyMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MyMessage) if !ok { that2, ok := that.(MyMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MyMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MyMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MyMessage but is not nil && this == nil") } if this.MyData != that1.MyData { return fmt.Errorf("MyData this(%v) Not Equal that(%v)", this.MyData, that1.MyData) } return nil } func (this *MyMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MyMessage) if !ok { that2, ok := that.(MyMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.MyData != that1.MyData { return false } return true } func (this *MyMessage) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&data.MyMessage{") s = append(s, "MyData: "+fmt.Sprintf("%#v", this.MyData)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringData(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *MyMessage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MyMessage) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.MyData != 0 { dAtA[i] = 0x8 i++ i = encodeVarintData(dAtA, i, uint64(m.MyData)) } return i, nil } func encodeVarintData(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedMyMessage(r randyData, easy bool) *MyMessage { this := &MyMessage{} this.MyData = uint32(r.Uint32()) if !easy && r.Intn(10) != 0 { } return this } type randyData interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneData(r randyData) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringData(r randyData) string { v1 := r.Intn(100) tmps := make([]rune, v1) for i := 0; i < v1; i++ { tmps[i] = randUTF8RuneData(r) } return string(tmps) } func randUnrecognizedData(r randyData, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldData(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldData(dAtA []byte, r randyData, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateData(dAtA, uint64(key)) v2 := r.Int63() if r.Intn(2) == 0 { v2 *= -1 } dAtA = encodeVarintPopulateData(dAtA, uint64(v2)) case 1: dAtA = encodeVarintPopulateData(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateData(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateData(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateData(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateData(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *MyMessage) Size() (n int) { var l int _ = l if m.MyData != 0 { n += 1 + sovData(uint64(m.MyData)) } return n } func sovData(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozData(x uint64) (n int) { return sovData(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *MyMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&MyMessage{`, `MyData:` + fmt.Sprintf("%v", this.MyData) + `,`, `}`, }, "") return s } func valueToStringData(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *MyMessage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowData } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MyMessage: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MyMessage: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field MyData", wireType) } m.MyData = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowData } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.MyData |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipData(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthData } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipData(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowData } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowData } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowData } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthData } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowData } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipData(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthData = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowData = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("data.proto", fileDescriptorData) } var fileDescriptorData = []byte{ // 160 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4a, 0x49, 0x2c, 0x49, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x01, 0xb1, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0x92, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0x34, 0x29, 0xa9, 0x70, 0x71, 0xfa, 0x56, 0xfa, 0xa6, 0x16, 0x17, 0x27, 0xa6, 0xa7, 0x0a, 0x89, 0x73, 0xb1, 0xe7, 0x56, 0xc6, 0x83, 0x8c, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0d, 0x62, 0xcb, 0xad, 0x74, 0x49, 0x2c, 0x49, 0x74, 0xd2, 0xb9, 0xf1, 0x50, 0x8e, 0xe1, 0xc1, 0x43, 0x39, 0xc6, 0x0f, 0x0f, 0xe5, 0x18, 0x7f, 0x3c, 0x94, 0x63, 0x6c, 0x78, 0x24, 0xc7, 0xb8, 0xe2, 0x91, 0x1c, 0xe3, 0x8e, 0x47, 0x72, 0x8c, 0x07, 0x1e, 0xc9, 0x31, 0x9e, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x49, 0x6c, 0x60, 0xa3, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xfd, 0x4f, 0xfb, 0xa7, 0x9d, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/data/data.proto000066400000000000000000000037631317075173200212440ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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 = "proto3"; package data; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.gostring_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.stringer_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.unmarshaler_all) = true; message MyMessage { uint32 my_data = 1; }golang-gogoprotobuf-0.5/test/data/datapb_test.go000066400000000000000000000167001317075173200220620ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: data.proto /* Package data is a generated protocol buffer package. It is generated from these files: data.proto It has these top-level messages: MyMessage */ package data import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMyMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMyMessageMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyMessage(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMyMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyMessage, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMyMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMyMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMyMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MyMessage{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMyMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyMessage{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMyMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MyMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MyMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MyMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMyMessageGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyMessage(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMyMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMyMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyMessage, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMyMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMyMessageStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyMessage(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/defaultconflict/000077500000000000000000000000001317075173200214725ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/defaultconflict/df.proto000066400000000000000000000032321317075173200231500ustar00rootroot00000000000000// 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 defaultcheck; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.face_all) = true; option (gogoproto.goproto_getters_all) = false; message A { optional int64 Field1 = 1 [default=1234]; } golang-gogoprotobuf-0.5/test/defaultconflict/dg.proto000066400000000000000000000031661317075173200231570ustar00rootroot00000000000000// 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 defaultcheck; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_getters_all) = false; message A { optional int64 Field1 = 1 [default=1234]; } golang-gogoprotobuf-0.5/test/defaultconflict/doc.go000066400000000000000000000000251317075173200225630ustar00rootroot00000000000000package defaultcheck golang-gogoprotobuf-0.5/test/defaultconflict/nc.proto000066400000000000000000000031461317075173200231630ustar00rootroot00000000000000// 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 defaultcheck; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message A { optional int64 Field1 = 1 [default = 1234, (gogoproto.nullable) = false];; } golang-gogoprotobuf-0.5/test/defaultconflict/nc_test.go000066400000000000000000000044721317075173200234670ustar00rootroot00000000000000// 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. package defaultcheck import ( "os" "os/exec" "strings" "testing" ) func testDefaultConflict(t *testing.T, name string) { cmd := exec.Command("protoc", "--gogo_out=.", "-I=../../../../../:../../protobuf/:.", name+".proto") data, err := cmd.CombinedOutput() if err == nil && !strings.Contains(string(data), "Plugin failed with status code 1") { t.Errorf("Expected error, got: %s", data) if err = os.Remove(name + ".pb.go"); err != nil { t.Error(err) } } t.Logf("received expected error = %v and output = %v", err, string(data)) } func TestNullableDefault(t *testing.T) { testDefaultConflict(t, "nc") } func TestNullableExtension(t *testing.T) { testDefaultConflict(t, "nx") } func TestNullableEnum(t *testing.T) { testDefaultConflict(t, "ne") } func TestFaceDefault(t *testing.T) { testDefaultConflict(t, "df") } func TestNoGettersDefault(t *testing.T) { testDefaultConflict(t, "dg") } golang-gogoprotobuf-0.5/test/defaultconflict/ne.proto000066400000000000000000000031571317075173200231670ustar00rootroot00000000000000// 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 defaultcheck; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; enum E { P = 10; Q = 11; } message A { optional E Field1 = 1 [(gogoproto.nullable) = false]; } golang-gogoprotobuf-0.5/test/defaultconflict/nx.proto000066400000000000000000000031711317075173200232060ustar00rootroot00000000000000// 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 defaultcheck; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message A { extensions 1 to max; } extend A { optional int64 Field1 = 1 [(gogoproto.nullable) = false]; } golang-gogoprotobuf-0.5/test/embedconflict/000077500000000000000000000000001317075173200211225ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/embedconflict/.gitignore000066400000000000000000000000101317075173200231010ustar00rootroot00000000000000*.pb.go golang-gogoprotobuf-0.5/test/embedconflict/doc.go000066400000000000000000000000261317075173200222140ustar00rootroot00000000000000package embedconflict golang-gogoprotobuf-0.5/test/embedconflict/eb.proto000066400000000000000000000032321317075173200225750ustar00rootroot00000000000000// 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 embedconflict; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message TakesLongTooDebug { optional bytes Field1 = 1; optional bytes Field2 = 2 [(gogoproto.nullable)=false, (gogoproto.embed)=true]; } golang-gogoprotobuf-0.5/test/embedconflict/ec.proto000066400000000000000000000031751317075173200226040ustar00rootroot00000000000000// 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. package embedconflict; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message A { optional int64 Field1 = 1; optional B B = 2 [(gogoproto.embed) = true]; } message B { optional double Field1 = 1; } golang-gogoprotobuf-0.5/test/embedconflict/ec_test.go000066400000000000000000000110101317075173200230700ustar00rootroot00000000000000// 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. package embedconflict import ( "os" "os/exec" "strings" "testing" ) func TestEmbedConflict(t *testing.T) { cmd := exec.Command("protoc", "--gogo_out=.", "-I=../../../../../:../../protobuf/:.", "ec.proto") data, err := cmd.CombinedOutput() if err == nil && !strings.Contains(string(data), "Plugin failed with status code 1") { t.Errorf("Expected error, got: %s", data) if err = os.Remove("ec.pb.go"); err != nil { t.Error(err) } } t.Logf("received expected error = %v and output = %v", err, string(data)) } func TestEmbedMarshaler(t *testing.T) { cmd := exec.Command("protoc", "--gogo_out=.", "-I=../../../../../:../../protobuf/:.", "em.proto") data, err := cmd.CombinedOutput() dataStr := string(data) t.Logf("received error = %v and output = %v", err, dataStr) if !strings.Contains(dataStr, "WARNING: found non-") || !strings.Contains(dataStr, "unsafe_marshaler") { t.Errorf("Expected WARNING: found non-[marshaler unsafe_marshaler] C with embedded marshaler D") } if err = os.Remove("em.pb.go"); err != nil { t.Error(err) } } func TestEmbedExtend(t *testing.T) { cmd := exec.Command("protoc", "--gogo_out=.", "-I=../../../../../:../../protobuf/:.", "ee.proto") data, err := cmd.CombinedOutput() if err == nil && !strings.Contains(string(data), "Plugin failed with status code 1") { t.Errorf("Expected error, got: %s", data) if err = os.Remove("ee.pb.go"); err != nil { t.Error(err) } } t.Logf("received expected error = %v and output = %v", err, string(data)) } func TestCustomName(t *testing.T) { cmd := exec.Command("protoc", "--gogo_out=.", "-I=../../../../../:../../protobuf/:.", "en.proto") data, err := cmd.CombinedOutput() if err == nil && !strings.Contains(string(data), "Plugin failed with status code 1") { t.Errorf("Expected error, got: %s", data) if err = os.Remove("en.pb.go"); err != nil { t.Error(err) } } t.Logf("received expected error = %v and output = %v", err, string(data)) } func TestRepeatedEmbed(t *testing.T) { cmd := exec.Command("protoc", "--gogo_out=.", "-I=../../../../../:../../protobuf/:.", "er.proto") data, err := cmd.CombinedOutput() if err == nil && !strings.Contains(string(data), "Plugin failed with status code 1") { t.Errorf("Expected error, got: %s", data) if err = os.Remove("er.pb.go"); err != nil { t.Error(err) } } dataStr := string(data) t.Logf("received error = %v and output = %v", err, dataStr) warning := "ERROR: found repeated embedded field B in message A" if !strings.Contains(dataStr, warning) { t.Errorf("Expected " + warning) } } func TestTakesTooLongToDebug(t *testing.T) { cmd := exec.Command("protoc", "--gogo_out=.", "-I=../../../../../:../../protobuf/:.", "eb.proto") data, err := cmd.CombinedOutput() if err == nil && !strings.Contains(string(data), "Plugin failed with status code 1") { t.Errorf("Expected error, got: %s", data) if err = os.Remove("eb.pb.go"); err != nil { t.Error(err) } } dataStr := string(data) t.Logf("received error = %v and output = %v", err, dataStr) warning := "ERROR: found embedded bytes field" if !strings.Contains(dataStr, warning) { t.Errorf("Expected " + warning) } } golang-gogoprotobuf-0.5/test/embedconflict/ee.proto000066400000000000000000000032251317075173200226020ustar00rootroot00000000000000// 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 embedconflict; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message E { optional int64 Field1 = 1; extensions 100 to 199; } extend E { optional int64 Field1 = 100 [(gogoproto.embed) = true]; } golang-gogoprotobuf-0.5/test/embedconflict/em.proto000066400000000000000000000032661317075173200226170ustar00rootroot00000000000000// 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 embedconflict; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message C { optional int64 Field1 = 1; optional D D = 2 [(gogoproto.embed) = true]; } message D { option (gogoproto.marshaler) = true; optional double Field2 = 2; } golang-gogoprotobuf-0.5/test/embedconflict/en.proto000066400000000000000000000032211317075173200226070ustar00rootroot00000000000000// 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 embedconflict; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message F { optional G G = 2 [(gogoproto.embed) = true, (gogoproto.customname) = "G"]; } message G { optional int64 Field1 = 1; } golang-gogoprotobuf-0.5/test/embedconflict/er.proto000066400000000000000000000032201317075173200226120ustar00rootroot00000000000000// 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 embedconflict; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message A { optional int64 Field1 = 1; repeated B B = 2 [(gogoproto.embed) = true]; } message B { optional double Field2 = 2; } golang-gogoprotobuf-0.5/test/empty-issue70/000077500000000000000000000000001317075173200207575ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/empty-issue70/Makefile000066400000000000000000000027531317075173200224260ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. empty.proto) golang-gogoprotobuf-0.5/test/empty-issue70/empty.pb.go000066400000000000000000000120461317075173200230470ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: empty.proto /* Package empty is a generated protocol buffer package. It is generated from these files: empty.proto It has these top-level messages: TestRequest */ package empty import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type TestRequest struct { XXX_unrecognized []byte `json:"-"` } func (m *TestRequest) Reset() { *m = TestRequest{} } func (m *TestRequest) String() string { return proto.CompactTextString(m) } func (*TestRequest) ProtoMessage() {} func (*TestRequest) Descriptor() ([]byte, []int) { return fileDescriptorEmpty, []int{0} } func init() { proto.RegisterType((*TestRequest)(nil), "empty.TestRequest") } func (m *TestRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEmpty } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: TestRequest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: TestRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipEmpty(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthEmpty } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipEmpty(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEmpty } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEmpty } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEmpty } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthEmpty } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEmpty } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipEmpty(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthEmpty = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowEmpty = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("empty.proto", fileDescriptorEmpty) } var fileDescriptorEmpty = []byte{ // 92 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4e, 0xcd, 0x2d, 0x28, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x05, 0x73, 0xa4, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0xb2, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0x74, 0x29, 0xf1, 0x72, 0x71, 0x87, 0xa4, 0x16, 0x97, 0x04, 0xa5, 0x16, 0x96, 0xa6, 0x16, 0x97, 0x38, 0xb1, 0x5c, 0x78, 0x24, 0xc7, 0x08, 0x08, 0x00, 0x00, 0xff, 0xff, 0x0e, 0xe3, 0x23, 0x3d, 0x58, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/empty-issue70/empty.proto000066400000000000000000000031101317075173200231750ustar00rootroot00000000000000// 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 empty; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.unmarshaler_all) = true; message TestRequest { } golang-gogoprotobuf-0.5/test/empty-issue70/empty_test.go000066400000000000000000000027601317075173200235100ustar00rootroot00000000000000// 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. package empty import ( "testing" ) func TestEmpty(t *testing.T) { } golang-gogoprotobuf-0.5/test/enumcustomname/000077500000000000000000000000001317075173200213645ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/enumcustomname/Makefile000066400000000000000000000027641317075173200230350ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. enumcustomname.proto) golang-gogoprotobuf-0.5/test/enumcustomname/enumcustomname.pb.go000066400000000000000000000336151317075173200253630ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: enumcustomname.proto /* Package enumcustomname is a generated protocol buffer package. Package enumcustomname tests the behavior of enum_customname and enumvalue_customname extensions. It is generated from these files: enumcustomname.proto It has these top-level messages: OnlyEnums */ package enumcustomname import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import test "github.com/gogo/protobuf/test" import strconv "strconv" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MyCustomEnum int32 const ( // The following field will take on the custom name and the prefix, joined // by an underscore. MyCustomEnum_MyBetterNameA MyCustomEnum = 0 MyCustomEnum_B MyCustomEnum = 1 ) var MyCustomEnum_name = map[int32]string{ 0: "A", 1: "B", } var MyCustomEnum_value = map[string]int32{ "A": 0, "B": 1, } func (x MyCustomEnum) Enum() *MyCustomEnum { p := new(MyCustomEnum) *p = x return p } func (x MyCustomEnum) String() string { return proto.EnumName(MyCustomEnum_name, int32(x)) } func (x *MyCustomEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MyCustomEnum_value, data, "MyCustomEnum") if err != nil { return err } *x = MyCustomEnum(value) return nil } func (MyCustomEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorEnumcustomname, []int{0} } type MyCustomUnprefixedEnum int32 const ( MyBetterNameUnprefixedA MyCustomUnprefixedEnum = 0 UNPREFIXED_B MyCustomUnprefixedEnum = 1 ) var MyCustomUnprefixedEnum_name = map[int32]string{ 0: "UNPREFIXED_A", 1: "UNPREFIXED_B", } var MyCustomUnprefixedEnum_value = map[string]int32{ "UNPREFIXED_A": 0, "UNPREFIXED_B": 1, } func (x MyCustomUnprefixedEnum) Enum() *MyCustomUnprefixedEnum { p := new(MyCustomUnprefixedEnum) *p = x return p } func (x MyCustomUnprefixedEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(MyCustomUnprefixedEnum_name, int32(x)) } func (x *MyCustomUnprefixedEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MyCustomUnprefixedEnum_value, data, "MyCustomUnprefixedEnum") if err != nil { return err } *x = MyCustomUnprefixedEnum(value) return nil } func (MyCustomUnprefixedEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorEnumcustomname, []int{1} } type MyEnumWithEnumStringer int32 const ( MyEnumWithEnumStringer_EnumValueStringerA MyEnumWithEnumStringer = 0 MyEnumWithEnumStringer_STRINGER_B MyEnumWithEnumStringer = 1 ) var MyEnumWithEnumStringer_name = map[int32]string{ 0: "STRINGER_A", 1: "STRINGER_B", } var MyEnumWithEnumStringer_value = map[string]int32{ "STRINGER_A": 0, "STRINGER_B": 1, } func (x MyEnumWithEnumStringer) Enum() *MyEnumWithEnumStringer { p := new(MyEnumWithEnumStringer) *p = x return p } func (x MyEnumWithEnumStringer) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(MyEnumWithEnumStringer_name, int32(x)) } func (x *MyEnumWithEnumStringer) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MyEnumWithEnumStringer_value, data, "MyEnumWithEnumStringer") if err != nil { return err } *x = MyEnumWithEnumStringer(value) return nil } func (MyEnumWithEnumStringer) EnumDescriptor() ([]byte, []int) { return fileDescriptorEnumcustomname, []int{2} } type OnlyEnums struct { MyEnum *MyCustomEnum `protobuf:"varint,1,opt,name=my_enum,json=myEnum,enum=enumcustomname.MyCustomEnum" json:"my_enum,omitempty"` MyEnumDefaultA *MyCustomEnum `protobuf:"varint,2,opt,name=my_enum_default_a,json=myEnumDefaultA,enum=enumcustomname.MyCustomEnum,def=0" json:"my_enum_default_a,omitempty"` MyEnumDefaultB *MyCustomEnum `protobuf:"varint,3,opt,name=my_enum_default_b,json=myEnumDefaultB,enum=enumcustomname.MyCustomEnum,def=1" json:"my_enum_default_b,omitempty"` MyUnprefixedEnum *MyCustomUnprefixedEnum `protobuf:"varint,4,opt,name=my_unprefixed_enum,json=myUnprefixedEnum,enum=enumcustomname.MyCustomUnprefixedEnum" json:"my_unprefixed_enum,omitempty"` MyUnprefixedEnumDefaultA *MyCustomUnprefixedEnum `protobuf:"varint,5,opt,name=my_unprefixed_enum_default_a,json=myUnprefixedEnumDefaultA,enum=enumcustomname.MyCustomUnprefixedEnum,def=0" json:"my_unprefixed_enum_default_a,omitempty"` MyUnprefixedEnumDefaultB *MyCustomUnprefixedEnum `protobuf:"varint,6,opt,name=my_unprefixed_enum_default_b,json=myUnprefixedEnumDefaultB,enum=enumcustomname.MyCustomUnprefixedEnum,def=1" json:"my_unprefixed_enum_default_b,omitempty"` YetAnotherTestEnum *test.YetAnotherTestEnum `protobuf:"varint,7,opt,name=yet_another_test_enum,json=yetAnotherTestEnum,enum=test.YetAnotherTestEnum" json:"yet_another_test_enum,omitempty"` YetAnotherTestEnumDefaultAa *test.YetAnotherTestEnum `protobuf:"varint,8,opt,name=yet_another_test_enum_default_aa,json=yetAnotherTestEnumDefaultAa,enum=test.YetAnotherTestEnum,def=0" json:"yet_another_test_enum_default_aa,omitempty"` YetAnotherTestEnumDefaultBb *test.YetAnotherTestEnum `protobuf:"varint,9,opt,name=yet_another_test_enum_default_bb,json=yetAnotherTestEnumDefaultBb,enum=test.YetAnotherTestEnum,def=1" json:"yet_another_test_enum_default_bb,omitempty"` YetYetAnotherTestEnum *test.YetYetAnotherTestEnum `protobuf:"varint,10,opt,name=yet_yet_another_test_enum,json=yetYetAnotherTestEnum,enum=test.YetYetAnotherTestEnum" json:"yet_yet_another_test_enum,omitempty"` YetYetAnotherTestEnumDefaultCc *test.YetYetAnotherTestEnum `protobuf:"varint,11,opt,name=yet_yet_another_test_enum_default_cc,json=yetYetAnotherTestEnumDefaultCc,enum=test.YetYetAnotherTestEnum,def=0" json:"yet_yet_another_test_enum_default_cc,omitempty"` YetYetAnotherTestEnumDefaultDd *test.YetYetAnotherTestEnum `protobuf:"varint,12,opt,name=yet_yet_another_test_enum_default_dd,json=yetYetAnotherTestEnumDefaultDd,enum=test.YetYetAnotherTestEnum,def=1" json:"yet_yet_another_test_enum_default_dd,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OnlyEnums) Reset() { *m = OnlyEnums{} } func (m *OnlyEnums) String() string { return proto.CompactTextString(m) } func (*OnlyEnums) ProtoMessage() {} func (*OnlyEnums) Descriptor() ([]byte, []int) { return fileDescriptorEnumcustomname, []int{0} } const Default_OnlyEnums_MyEnumDefaultA MyCustomEnum = MyCustomEnum_MyBetterNameA const Default_OnlyEnums_MyEnumDefaultB MyCustomEnum = MyCustomEnum_B const Default_OnlyEnums_MyUnprefixedEnumDefaultA MyCustomUnprefixedEnum = MyBetterNameUnprefixedA const Default_OnlyEnums_MyUnprefixedEnumDefaultB MyCustomUnprefixedEnum = UNPREFIXED_B const Default_OnlyEnums_YetAnotherTestEnumDefaultAa test.YetAnotherTestEnum = test.AA const Default_OnlyEnums_YetAnotherTestEnumDefaultBb test.YetAnotherTestEnum = test.BetterYetBB const Default_OnlyEnums_YetYetAnotherTestEnumDefaultCc test.YetYetAnotherTestEnum = test.YetYetAnotherTestEnum_CC const Default_OnlyEnums_YetYetAnotherTestEnumDefaultDd test.YetYetAnotherTestEnum = test.YetYetAnotherTestEnum_BetterYetDD func (m *OnlyEnums) GetMyEnum() MyCustomEnum { if m != nil && m.MyEnum != nil { return *m.MyEnum } return MyCustomEnum_MyBetterNameA } func (m *OnlyEnums) GetMyEnumDefaultA() MyCustomEnum { if m != nil && m.MyEnumDefaultA != nil { return *m.MyEnumDefaultA } return Default_OnlyEnums_MyEnumDefaultA } func (m *OnlyEnums) GetMyEnumDefaultB() MyCustomEnum { if m != nil && m.MyEnumDefaultB != nil { return *m.MyEnumDefaultB } return Default_OnlyEnums_MyEnumDefaultB } func (m *OnlyEnums) GetMyUnprefixedEnum() MyCustomUnprefixedEnum { if m != nil && m.MyUnprefixedEnum != nil { return *m.MyUnprefixedEnum } return MyBetterNameUnprefixedA } func (m *OnlyEnums) GetMyUnprefixedEnumDefaultA() MyCustomUnprefixedEnum { if m != nil && m.MyUnprefixedEnumDefaultA != nil { return *m.MyUnprefixedEnumDefaultA } return Default_OnlyEnums_MyUnprefixedEnumDefaultA } func (m *OnlyEnums) GetMyUnprefixedEnumDefaultB() MyCustomUnprefixedEnum { if m != nil && m.MyUnprefixedEnumDefaultB != nil { return *m.MyUnprefixedEnumDefaultB } return Default_OnlyEnums_MyUnprefixedEnumDefaultB } func (m *OnlyEnums) GetYetAnotherTestEnum() test.YetAnotherTestEnum { if m != nil && m.YetAnotherTestEnum != nil { return *m.YetAnotherTestEnum } return test.AA } func (m *OnlyEnums) GetYetAnotherTestEnumDefaultAa() test.YetAnotherTestEnum { if m != nil && m.YetAnotherTestEnumDefaultAa != nil { return *m.YetAnotherTestEnumDefaultAa } return Default_OnlyEnums_YetAnotherTestEnumDefaultAa } func (m *OnlyEnums) GetYetAnotherTestEnumDefaultBb() test.YetAnotherTestEnum { if m != nil && m.YetAnotherTestEnumDefaultBb != nil { return *m.YetAnotherTestEnumDefaultBb } return Default_OnlyEnums_YetAnotherTestEnumDefaultBb } func (m *OnlyEnums) GetYetYetAnotherTestEnum() test.YetYetAnotherTestEnum { if m != nil && m.YetYetAnotherTestEnum != nil { return *m.YetYetAnotherTestEnum } return test.YetYetAnotherTestEnum_CC } func (m *OnlyEnums) GetYetYetAnotherTestEnumDefaultCc() test.YetYetAnotherTestEnum { if m != nil && m.YetYetAnotherTestEnumDefaultCc != nil { return *m.YetYetAnotherTestEnumDefaultCc } return Default_OnlyEnums_YetYetAnotherTestEnumDefaultCc } func (m *OnlyEnums) GetYetYetAnotherTestEnumDefaultDd() test.YetYetAnotherTestEnum { if m != nil && m.YetYetAnotherTestEnumDefaultDd != nil { return *m.YetYetAnotherTestEnumDefaultDd } return Default_OnlyEnums_YetYetAnotherTestEnumDefaultDd } func init() { proto.RegisterType((*OnlyEnums)(nil), "enumcustomname.OnlyEnums") proto.RegisterEnum("enumcustomname.MyCustomEnum", MyCustomEnum_name, MyCustomEnum_value) proto.RegisterEnum("enumcustomname.MyCustomUnprefixedEnum", MyCustomUnprefixedEnum_name, MyCustomUnprefixedEnum_value) proto.RegisterEnum("enumcustomname.MyEnumWithEnumStringer", MyEnumWithEnumStringer_name, MyEnumWithEnumStringer_value) } func (x MyEnumWithEnumStringer) String() string { s, ok := MyEnumWithEnumStringer_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func init() { proto.RegisterFile("enumcustomname.proto", fileDescriptorEnumcustomname) } var fileDescriptorEnumcustomname = []byte{ // 551 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x4f, 0x8f, 0xd2, 0x40, 0x18, 0xc6, 0x29, 0xba, 0x2c, 0x3b, 0x22, 0xe9, 0x4e, 0x14, 0x47, 0x30, 0x4d, 0xb3, 0x31, 0xc6, 0x60, 0x16, 0x12, 0x8f, 0x78, 0x9a, 0x52, 0x34, 0x1b, 0x03, 0x9a, 0xee, 0xe2, 0xbf, 0x4b, 0xd3, 0x96, 0xe1, 0x4f, 0xc2, 0xb4, 0x9b, 0x32, 0x8d, 0xf6, 0x1b, 0x18, 0xbe, 0x03, 0x27, 0x39, 0x78, 0xf4, 0xbc, 0x67, 0x3f, 0x98, 0x99, 0xe9, 0xc2, 0x42, 0x5b, 0x0a, 0xf1, 0x34, 0xed, 0x9b, 0xe7, 0x7d, 0x7e, 0xf3, 0x3e, 0x79, 0x07, 0x3c, 0x22, 0x6e, 0x40, 0x9d, 0x60, 0xc6, 0x3c, 0xea, 0x5a, 0x94, 0x34, 0xae, 0x7d, 0x8f, 0x79, 0xb0, 0xbc, 0x5d, 0xad, 0x9e, 0x8f, 0x26, 0x6c, 0x1c, 0xd8, 0x0d, 0xc7, 0xa3, 0xcd, 0x91, 0x37, 0xf2, 0x9a, 0x42, 0x66, 0x07, 0x43, 0xf1, 0x27, 0x7e, 0xc4, 0x57, 0xd4, 0x5e, 0x7d, 0xb5, 0x53, 0xce, 0xc8, 0x8c, 0x35, 0xd9, 0x98, 0xf0, 0x33, 0x12, 0x9f, 0xfd, 0x2d, 0x82, 0x93, 0x0f, 0xee, 0x34, 0xec, 0xb8, 0x01, 0x9d, 0xc1, 0x26, 0x38, 0xa6, 0xa1, 0xc9, 0xf1, 0x48, 0x52, 0xa5, 0x97, 0xe5, 0xd7, 0x95, 0x46, 0xec, 0x86, 0x5d, 0xa1, 0x34, 0x0a, 0x54, 0x9c, 0x50, 0x07, 0xa7, 0xb7, 0x0d, 0xe6, 0x80, 0x0c, 0xad, 0x60, 0xca, 0x4c, 0x0b, 0xe5, 0xb3, 0x5a, 0x5b, 0x12, 0x36, 0xca, 0x51, 0xb7, 0x1e, 0x75, 0xe0, 0x34, 0x17, 0x1b, 0xdd, 0xcb, 0x76, 0xd1, 0x62, 0x2e, 0x1a, 0xec, 0x01, 0x48, 0x43, 0x33, 0x70, 0xaf, 0x7d, 0x32, 0x9c, 0xfc, 0x20, 0x83, 0x68, 0x8e, 0xfb, 0xc2, 0x46, 0x4d, 0xda, 0xf4, 0xd7, 0x42, 0x31, 0x91, 0x4c, 0x63, 0x15, 0xe8, 0x82, 0x67, 0x49, 0xbf, 0x8d, 0x31, 0x8f, 0x0e, 0x73, 0x6e, 0x95, 0xfa, 0xbd, 0x8f, 0x46, 0xe7, 0xed, 0xc5, 0x97, 0x8e, 0x6e, 0x62, 0x03, 0xc5, 0x39, 0xeb, 0x14, 0xb2, 0x79, 0x36, 0x2a, 0xfc, 0x07, 0x4f, 0xdb, 0xc9, 0xd3, 0xe0, 0x7b, 0xf0, 0x38, 0x24, 0xcc, 0xb4, 0x5c, 0x8f, 0x8d, 0x89, 0x6f, 0xf2, 0xa5, 0x88, 0x22, 0x3b, 0x16, 0x20, 0xd4, 0x10, 0x6b, 0xf2, 0x95, 0x30, 0x1c, 0x29, 0xae, 0xc8, 0x8c, 0x89, 0xa8, 0x60, 0x98, 0xa8, 0x41, 0x07, 0xa8, 0xa9, 0x66, 0x77, 0x79, 0x59, 0xa8, 0x98, 0xed, 0xdb, 0xca, 0x63, 0x6c, 0xd4, 0x92, 0xde, 0xab, 0x80, 0xac, 0xfd, 0x10, 0xdb, 0x46, 0x27, 0xfb, 0x20, 0x9a, 0x96, 0x01, 0xd1, 0x6c, 0xd8, 0x07, 0x4f, 0x39, 0x24, 0x3d, 0x1a, 0x20, 0xdc, 0x6b, 0x6b, 0xf7, 0x94, 0x74, 0x78, 0xa8, 0xc9, 0x32, 0xa4, 0xe0, 0xf9, 0x4e, 0xdb, 0xf5, 0xfd, 0x1d, 0x07, 0x3d, 0xd8, 0x4b, 0x68, 0xe5, 0xdb, 0x6d, 0x43, 0x49, 0xa5, 0xdc, 0x4e, 0xd1, 0x76, 0x0e, 0xc3, 0x0d, 0x06, 0xa8, 0x74, 0x00, 0x4e, 0xd7, 0xb3, 0x71, 0xfa, 0xa0, 0xfe, 0x06, 0x14, 0xa2, 0x87, 0x09, 0x11, 0x90, 0xb0, 0x9c, 0xab, 0x9e, 0xce, 0x17, 0xea, 0xc3, 0x6e, 0xa8, 0x11, 0xc6, 0x88, 0xdf, 0xb3, 0x28, 0xc1, 0xf0, 0x08, 0x48, 0x9a, 0x2c, 0x55, 0xe5, 0x9b, 0xa5, 0x52, 0xea, 0x86, 0x6d, 0xb1, 0xc1, 0xbc, 0xa5, 0xfe, 0x1d, 0xc8, 0xf1, 0x25, 0x86, 0xe7, 0x60, 0xeb, 0xd9, 0xc8, 0xb9, 0x6a, 0x6d, 0xbe, 0x50, 0x9f, 0x6c, 0x3a, 0xde, 0x75, 0x60, 0x28, 0x6f, 0xc9, 0x39, 0xe6, 0xec, 0xe7, 0x2f, 0x25, 0xf7, 0x7b, 0xa9, 0xe4, 0x6e, 0x96, 0x4a, 0x65, 0x85, 0xdb, 0x86, 0xd4, 0xbf, 0x81, 0x4a, 0x74, 0xeb, 0xcf, 0x13, 0x36, 0xe6, 0xe7, 0x25, 0xf3, 0x27, 0xee, 0x88, 0xf8, 0xf0, 0x05, 0x00, 0x97, 0x57, 0xc6, 0x45, 0xef, 0x5d, 0xc7, 0x10, 0xf0, 0xca, 0x7c, 0xa1, 0x42, 0xae, 0xf8, 0x64, 0x4d, 0x03, 0xb2, 0x92, 0x61, 0x58, 0xde, 0xd0, 0x71, 0x6a, 0x91, 0x13, 0xff, 0x2c, 0x15, 0xe9, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbe, 0x65, 0x55, 0xe7, 0xdb, 0x05, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/enumcustomname/enumcustomname.proto000066400000000000000000000067571317075173200255300ustar00rootroot00000000000000// 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 enumcustomname tests the behavior of enum_customname and // enumvalue_customname extensions. package enumcustomname; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/thetest.proto"; enum MyEnum { option (gogoproto.enum_customname) = "MyCustomEnum"; // The following field will take on the custom name and the prefix, joined // by an underscore. A = 0 [(gogoproto.enumvalue_customname) = "MyBetterNameA"]; B = 1; // Should be MyCustomEnum_B } enum MyUnprefixedEnum { option (gogoproto.goproto_enum_prefix) = false; option (gogoproto.goproto_enum_stringer) = false; // ensure it behaves correctly without stringer. option (gogoproto.enum_customname) = "MyCustomUnprefixedEnum"; // no prefix added but type gets name UNPREFIXED_A = 0 [(gogoproto.enumvalue_customname) = "MyBetterNameUnprefixedA"]; UNPREFIXED_B = 1 ; // Should not pick up prefix above } enum MyEnumWithEnumStringer { option (gogoproto.goproto_enum_stringer) = false; // ensure it behaves correctly without stringer. option (gogoproto.enum_stringer) = true; // ensure it behaves correctly without stringer. STRINGER_A = 0 [(gogoproto.enumvalue_customname) = "EnumValueStringerA"]; STRINGER_B = 1; } message OnlyEnums { optional MyEnum my_enum = 1; optional MyEnum my_enum_default_a = 2 [default=A]; optional MyEnum my_enum_default_b = 3 [default=B]; optional MyUnprefixedEnum my_unprefixed_enum = 4; optional MyUnprefixedEnum my_unprefixed_enum_default_a = 5 [default=UNPREFIXED_A]; optional MyUnprefixedEnum my_unprefixed_enum_default_b = 6 [default=UNPREFIXED_B]; optional test.YetAnotherTestEnum yet_another_test_enum = 7; optional test.YetAnotherTestEnum yet_another_test_enum_default_aa = 8 [default=AA]; optional test.YetAnotherTestEnum yet_another_test_enum_default_bb = 9 [default=BB]; optional test.YetYetAnotherTestEnum yet_yet_another_test_enum = 10; optional test.YetYetAnotherTestEnum yet_yet_another_test_enum_default_cc = 11 [default=CC]; optional test.YetYetAnotherTestEnum yet_yet_another_test_enum_default_dd = 12 [default=DD]; } golang-gogoprotobuf-0.5/test/enumdecl/000077500000000000000000000000001317075173200201205ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/enumdecl/Makefile000066400000000000000000000002621317075173200215600ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. enumdecl.proto golang-gogoprotobuf-0.5/test/enumdecl/enumdecl.pb.go000066400000000000000000000255461317075173200226570ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: enumdecl.proto /* Package enumdecl is a generated protocol buffer package. It is generated from these files: enumdecl.proto It has these top-level messages: Message */ package enumdecl import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package var MyEnum_name = map[int32]string{ 0: "A", 1: "B", } var MyEnum_value = map[string]int32{ "A": 0, "B": 1, } func (x MyEnum) String() string { return proto.EnumName(MyEnum_name, int32(x)) } func (MyEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorEnumdecl, []int{0} } type Message struct { EnumeratedField MyEnum `protobuf:"varint,1,opt,name=enumerated_field,json=enumeratedField,proto3,enum=enumdecl.MyEnum" json:"enumerated_field,omitempty"` } func (m *Message) Reset() { *m = Message{} } func (m *Message) String() string { return proto.CompactTextString(m) } func (*Message) ProtoMessage() {} func (*Message) Descriptor() ([]byte, []int) { return fileDescriptorEnumdecl, []int{0} } func (m *Message) GetEnumeratedField() MyEnum { if m != nil { return m.EnumeratedField } return A } func init() { proto.RegisterType((*Message)(nil), "enumdecl.Message") proto.RegisterEnum("enumdecl.MyEnum", MyEnum_name, MyEnum_value) } func (this *Message) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Message") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Message but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Message but is not nil && this == nil") } if this.EnumeratedField != that1.EnumeratedField { return fmt.Errorf("EnumeratedField this(%v) Not Equal that(%v)", this.EnumeratedField, that1.EnumeratedField) } return nil } func (this *Message) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.EnumeratedField != that1.EnumeratedField { return false } return true } func (m *Message) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Message) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.EnumeratedField != 0 { dAtA[i] = 0x8 i++ i = encodeVarintEnumdecl(dAtA, i, uint64(m.EnumeratedField)) } return i, nil } func encodeVarintEnumdecl(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedMessage(r randyEnumdecl, easy bool) *Message { this := &Message{} this.EnumeratedField = MyEnum([]int32{0, 1}[r.Intn(2)]) if !easy && r.Intn(10) != 0 { } return this } type randyEnumdecl interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneEnumdecl(r randyEnumdecl) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringEnumdecl(r randyEnumdecl) string { v1 := r.Intn(100) tmps := make([]rune, v1) for i := 0; i < v1; i++ { tmps[i] = randUTF8RuneEnumdecl(r) } return string(tmps) } func randUnrecognizedEnumdecl(r randyEnumdecl, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldEnumdecl(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldEnumdecl(dAtA []byte, r randyEnumdecl, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateEnumdecl(dAtA, uint64(key)) v2 := r.Int63() if r.Intn(2) == 0 { v2 *= -1 } dAtA = encodeVarintPopulateEnumdecl(dAtA, uint64(v2)) case 1: dAtA = encodeVarintPopulateEnumdecl(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateEnumdecl(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateEnumdecl(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateEnumdecl(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateEnumdecl(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Message) Size() (n int) { var l int _ = l if m.EnumeratedField != 0 { n += 1 + sovEnumdecl(uint64(m.EnumeratedField)) } return n } func sovEnumdecl(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozEnumdecl(x uint64) (n int) { return sovEnumdecl(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Message) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEnumdecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Message: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Message: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field EnumeratedField", wireType) } m.EnumeratedField = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEnumdecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.EnumeratedField |= (MyEnum(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipEnumdecl(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthEnumdecl } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipEnumdecl(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEnumdecl } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEnumdecl } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEnumdecl } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthEnumdecl } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEnumdecl } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipEnumdecl(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthEnumdecl = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowEnumdecl = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("enumdecl.proto", fileDescriptorEnumdecl) } var fileDescriptorEnumdecl = []byte{ // 205 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4b, 0xcd, 0x2b, 0xcd, 0x4d, 0x49, 0x4d, 0xce, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x80, 0xf1, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0x0a, 0x92, 0x4a, 0xd3, 0xc0, 0x3c, 0x30, 0x07, 0xcc, 0x82, 0x68, 0x54, 0x72, 0xe3, 0x62, 0xf7, 0x4d, 0x2d, 0x2e, 0x4e, 0x4c, 0x4f, 0x15, 0xb2, 0xe6, 0x12, 0x00, 0x99, 0x92, 0x5a, 0x94, 0x58, 0x92, 0x9a, 0x12, 0x9f, 0x96, 0x99, 0x9a, 0x93, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x67, 0x24, 0xa0, 0x07, 0xb7, 0xce, 0xb7, 0xd2, 0x35, 0xaf, 0x34, 0x37, 0x88, 0x1f, 0xa1, 0xd2, 0x0d, 0xa4, 0x50, 0x4b, 0x81, 0x8b, 0x0d, 0x22, 0x25, 0xc4, 0xca, 0xc5, 0xe8, 0x28, 0xc0, 0x00, 0xa2, 0x9c, 0x04, 0x18, 0xa5, 0x38, 0x3a, 0x16, 0xcb, 0x31, 0x1c, 0x58, 0x22, 0xc7, 0xe0, 0xa4, 0xf1, 0xe0, 0xa1, 0x1c, 0xe3, 0x8f, 0x87, 0x72, 0x8c, 0x2b, 0x1e, 0xc9, 0x31, 0xee, 0x78, 0x24, 0xc7, 0x78, 0xe0, 0x91, 0x1c, 0xe3, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0xf8, 0xe3, 0x91, 0x1c, 0x43, 0xc3, 0x63, 0x39, 0x86, 0x24, 0x36, 0xb0, 0xd3, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x76, 0x04, 0x55, 0xb7, 0xe5, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/enumdecl/enumdecl.proto000066400000000000000000000013001317075173200227730ustar00rootroot00000000000000syntax = "proto3"; package enumdecl; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; enum MyEnum { option (gogoproto.enumdecl) = false; option (gogoproto.goproto_enum_prefix) = false; A = 0; B = 1; } message Message { MyEnum enumerated_field = 1; } golang-gogoprotobuf-0.5/test/enumdecl/enumdeclpb_test.go000066400000000000000000000154411317075173200236310ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: enumdecl.proto /* Package enumdecl is a generated protocol buffer package. It is generated from these files: enumdecl.proto It has these top-level messages: Message */ package enumdecl import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMessageMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Message{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/enumdecl/models.go000066400000000000000000000001211317075173200217240ustar00rootroot00000000000000package enumdecl type MyEnum int32 const ( A MyEnum = iota B MyEnum = iota ) golang-gogoprotobuf-0.5/test/enumdecl_all/000077500000000000000000000000001317075173200207505ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/enumdecl_all/Makefile000066400000000000000000000002651317075173200224130ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. enumdeclall.proto golang-gogoprotobuf-0.5/test/enumdecl_all/enumdeclall.pb.go000066400000000000000000000321471317075173200241730ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: enumdeclall.proto /* Package enumdeclall is a generated protocol buffer package. It is generated from these files: enumdeclall.proto It has these top-level messages: Message */ package enumdeclall import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package var MyEnum_name = map[int32]string{ 0: "A", 1: "B", } var MyEnum_value = map[string]int32{ "A": 0, "B": 1, } func (x MyEnum) String() string { return proto.EnumName(MyEnum_name, int32(x)) } func (MyEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorEnumdeclall, []int{0} } type MyOtherEnum int32 const ( C MyOtherEnum = 0 D MyOtherEnum = 1 ) var MyOtherEnum_name = map[int32]string{ 0: "C", 1: "D", } var MyOtherEnum_value = map[string]int32{ "C": 0, "D": 1, } func (x MyOtherEnum) String() string { return proto.EnumName(MyOtherEnum_name, int32(x)) } func (MyOtherEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorEnumdeclall, []int{1} } type Message struct { EnumeratedField MyEnum `protobuf:"varint,1,opt,name=enumerated_field,json=enumeratedField,proto3,enum=enumdeclall.MyEnum" json:"enumerated_field,omitempty"` OtherenumeratedField MyOtherEnum `protobuf:"varint,2,opt,name=otherenumerated_field,json=otherenumeratedField,proto3,enum=enumdeclall.MyOtherEnum" json:"otherenumerated_field,omitempty"` } func (m *Message) Reset() { *m = Message{} } func (m *Message) String() string { return proto.CompactTextString(m) } func (*Message) ProtoMessage() {} func (*Message) Descriptor() ([]byte, []int) { return fileDescriptorEnumdeclall, []int{0} } func (m *Message) GetEnumeratedField() MyEnum { if m != nil { return m.EnumeratedField } return A } func (m *Message) GetOtherenumeratedField() MyOtherEnum { if m != nil { return m.OtherenumeratedField } return C } func init() { proto.RegisterType((*Message)(nil), "enumdeclall.Message") proto.RegisterEnum("enumdeclall.MyEnum", MyEnum_name, MyEnum_value) proto.RegisterEnum("enumdeclall.MyOtherEnum", MyOtherEnum_name, MyOtherEnum_value) } func (this *Message) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Message") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Message but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Message but is not nil && this == nil") } if this.EnumeratedField != that1.EnumeratedField { return fmt.Errorf("EnumeratedField this(%v) Not Equal that(%v)", this.EnumeratedField, that1.EnumeratedField) } if this.OtherenumeratedField != that1.OtherenumeratedField { return fmt.Errorf("OtherenumeratedField this(%v) Not Equal that(%v)", this.OtherenumeratedField, that1.OtherenumeratedField) } return nil } func (this *Message) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.EnumeratedField != that1.EnumeratedField { return false } if this.OtherenumeratedField != that1.OtherenumeratedField { return false } return true } func (m *Message) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Message) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.EnumeratedField != 0 { dAtA[i] = 0x8 i++ i = encodeVarintEnumdeclall(dAtA, i, uint64(m.EnumeratedField)) } if m.OtherenumeratedField != 0 { dAtA[i] = 0x10 i++ i = encodeVarintEnumdeclall(dAtA, i, uint64(m.OtherenumeratedField)) } return i, nil } func encodeVarintEnumdeclall(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedMessage(r randyEnumdeclall, easy bool) *Message { this := &Message{} this.EnumeratedField = MyEnum([]int32{0, 1}[r.Intn(2)]) this.OtherenumeratedField = MyOtherEnum([]int32{0, 1}[r.Intn(2)]) if !easy && r.Intn(10) != 0 { } return this } type randyEnumdeclall interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneEnumdeclall(r randyEnumdeclall) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringEnumdeclall(r randyEnumdeclall) string { v1 := r.Intn(100) tmps := make([]rune, v1) for i := 0; i < v1; i++ { tmps[i] = randUTF8RuneEnumdeclall(r) } return string(tmps) } func randUnrecognizedEnumdeclall(r randyEnumdeclall, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldEnumdeclall(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldEnumdeclall(dAtA []byte, r randyEnumdeclall, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateEnumdeclall(dAtA, uint64(key)) v2 := r.Int63() if r.Intn(2) == 0 { v2 *= -1 } dAtA = encodeVarintPopulateEnumdeclall(dAtA, uint64(v2)) case 1: dAtA = encodeVarintPopulateEnumdeclall(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateEnumdeclall(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateEnumdeclall(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateEnumdeclall(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateEnumdeclall(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Message) Size() (n int) { var l int _ = l if m.EnumeratedField != 0 { n += 1 + sovEnumdeclall(uint64(m.EnumeratedField)) } if m.OtherenumeratedField != 0 { n += 1 + sovEnumdeclall(uint64(m.OtherenumeratedField)) } return n } func sovEnumdeclall(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozEnumdeclall(x uint64) (n int) { return sovEnumdeclall(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Message) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEnumdeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Message: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Message: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field EnumeratedField", wireType) } m.EnumeratedField = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEnumdeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.EnumeratedField |= (MyEnum(b) & 0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field OtherenumeratedField", wireType) } m.OtherenumeratedField = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEnumdeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.OtherenumeratedField |= (MyOtherEnum(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipEnumdeclall(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthEnumdeclall } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipEnumdeclall(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEnumdeclall } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEnumdeclall } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEnumdeclall } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthEnumdeclall } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEnumdeclall } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipEnumdeclall(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthEnumdeclall = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowEnumdeclall = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("enumdeclall.proto", fileDescriptorEnumdeclall) } var fileDescriptorEnumdeclall = []byte{ // 260 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4c, 0xcd, 0x2b, 0xcd, 0x4d, 0x49, 0x4d, 0xce, 0x49, 0xcc, 0xc9, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x46, 0x12, 0x92, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0xab, 0x49, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0xa2, 0x57, 0x69, 0x06, 0x23, 0x17, 0xbb, 0x6f, 0x6a, 0x71, 0x71, 0x62, 0x7a, 0xaa, 0x90, 0x1d, 0x97, 0x00, 0xc8, 0xa4, 0xd4, 0xa2, 0xc4, 0x92, 0xd4, 0x94, 0xf8, 0xb4, 0xcc, 0xd4, 0x9c, 0x14, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x3e, 0x23, 0x61, 0x3d, 0x64, 0x5b, 0x7d, 0x2b, 0x5d, 0xf3, 0x4a, 0x73, 0x83, 0xf8, 0x11, 0x8a, 0xdd, 0x40, 0x6a, 0x85, 0x7c, 0xb9, 0x44, 0xf3, 0x4b, 0x32, 0x52, 0x8b, 0x30, 0x0c, 0x61, 0x02, 0x1b, 0x22, 0x81, 0x66, 0x88, 0x3f, 0x48, 0x2d, 0xd8, 0x24, 0x11, 0x34, 0x6d, 0x60, 0xe3, 0xb4, 0x64, 0xb8, 0xd8, 0x20, 0x36, 0x09, 0xb1, 0x72, 0x31, 0x3a, 0x0a, 0x30, 0x80, 0x28, 0x27, 0x01, 0x46, 0x29, 0x96, 0x8e, 0xc5, 0x72, 0x0c, 0x5a, 0xaa, 0x5c, 0xdc, 0x48, 0x46, 0x80, 0xe4, 0x9c, 0x21, 0x4a, 0x5c, 0x04, 0x18, 0xa5, 0x38, 0x40, 0x4a, 0x0e, 0x2c, 0x91, 0x63, 0x74, 0xd2, 0x79, 0xf0, 0x50, 0x8e, 0xf1, 0xc7, 0x43, 0x39, 0xc6, 0x15, 0x8f, 0xe4, 0x18, 0x77, 0x3c, 0x92, 0x63, 0x3c, 0xf0, 0x48, 0x8e, 0xf1, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0xfc, 0xf1, 0x48, 0x8e, 0xa1, 0xe1, 0xb1, 0x1c, 0xc3, 0x8e, 0xc7, 0x72, 0x0c, 0x49, 0x6c, 0xe0, 0x40, 0x31, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x91, 0xd9, 0xaf, 0x65, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/enumdecl_all/enumdeclall.proto000066400000000000000000000015661317075173200243320ustar00rootroot00000000000000syntax = "proto3"; package enumdeclall; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; option (gogoproto.enumdecl_all) = false; enum MyEnum { option (gogoproto.goproto_enum_prefix) = false; A = 0; B = 1; } enum MyOtherEnum { option (gogoproto.enumdecl) = true; option (gogoproto.goproto_enum_prefix) = false; C = 0; D = 1; } message Message { MyEnum enumerated_field = 1; MyOtherEnum otherenumerated_field = 2; } golang-gogoprotobuf-0.5/test/enumdecl_all/enumdeclallpb_test.go000066400000000000000000000154551317075173200251570ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: enumdeclall.proto /* Package enumdeclall is a generated protocol buffer package. It is generated from these files: enumdeclall.proto It has these top-level messages: Message */ package enumdeclall import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMessageMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Message{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/enumdecl_all/models.go000066400000000000000000000001241317075173200225570ustar00rootroot00000000000000package enumdeclall type MyEnum int32 const ( A MyEnum = iota B MyEnum = iota ) golang-gogoprotobuf-0.5/test/enumprefix/000077500000000000000000000000001317075173200205065ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/enumprefix/Makefile000066400000000000000000000027601317075173200221530ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. enumprefix.proto) golang-gogoprotobuf-0.5/test/enumprefix/enumprefix.pb.go000066400000000000000000000051231317075173200236200ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: enumprefix.proto /* Package enumprefix is a generated protocol buffer package. It is generated from these files: enumprefix.proto It has these top-level messages: MyMessage */ package enumprefix import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import test "github.com/gogo/protobuf/test" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MyMessage struct { TheField test.TheTestEnum `protobuf:"varint,1,opt,name=TheField,enum=test.TheTestEnum" json:"TheField"` XXX_unrecognized []byte `json:"-"` } func (m *MyMessage) Reset() { *m = MyMessage{} } func (m *MyMessage) String() string { return proto.CompactTextString(m) } func (*MyMessage) ProtoMessage() {} func (*MyMessage) Descriptor() ([]byte, []int) { return fileDescriptorEnumprefix, []int{0} } func (m *MyMessage) GetTheField() test.TheTestEnum { if m != nil { return m.TheField } return test.A } func init() { proto.RegisterType((*MyMessage)(nil), "enumprefix.MyMessage") } func init() { proto.RegisterFile("enumprefix.proto", fileDescriptorEnumprefix) } var fileDescriptorEnumprefix = []byte{ // 149 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x48, 0xcd, 0x2b, 0xcd, 0x2d, 0x28, 0x4a, 0x4d, 0xcb, 0xac, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x42, 0x88, 0x48, 0x69, 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xa7, 0xe7, 0xa7, 0xe7, 0xeb, 0x83, 0x95, 0x24, 0x95, 0xa6, 0xe9, 0x97, 0xa4, 0x16, 0x97, 0xe8, 0x97, 0x64, 0xa4, 0x82, 0x68, 0x88, 0x46, 0x29, 0x5d, 0x9c, 0x8a, 0x41, 0x3c, 0x30, 0x07, 0xcc, 0x82, 0x28, 0x57, 0x72, 0xe0, 0xe2, 0xf4, 0xad, 0xf4, 0x4d, 0x2d, 0x2e, 0x4e, 0x4c, 0x4f, 0x15, 0x32, 0xe6, 0xe2, 0x08, 0xc9, 0x48, 0x75, 0xcb, 0x4c, 0xcd, 0x49, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x33, 0x12, 0xd4, 0x03, 0x1b, 0x1d, 0x92, 0x91, 0x1a, 0x92, 0x5a, 0x5c, 0xe2, 0x9a, 0x57, 0x9a, 0xeb, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x5c, 0x21, 0x20, 0x00, 0x00, 0xff, 0xff, 0xda, 0xd1, 0x3c, 0x03, 0xbc, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/enumprefix/enumprefix.proto000066400000000000000000000032351317075173200237600ustar00rootroot00000000000000// 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 enumprefix; import "github.com/gogo/protobuf/test/thetest.proto"; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message MyMessage { optional test.TheTestEnum TheField = 1 [(gogoproto.nullable) = false]; } golang-gogoprotobuf-0.5/test/enumstringer/000077500000000000000000000000001317075173200210465ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/enumstringer/Makefile000066400000000000000000000027621317075173200225150ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. enumstringer.proto) golang-gogoprotobuf-0.5/test/enumstringer/enumstringer.pb.go000066400000000000000000000373131317075173200245260ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: enumstringer.proto /* Package enumstringer is a generated protocol buffer package. It is generated from these files: enumstringer.proto It has these top-level messages: NidOptEnum NinOptEnum NidRepEnum NinRepEnum */ package enumstringer import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type TheTestEnum int32 const ( TheTestEnum_A TheTestEnum = 0 TheTestEnum_B TheTestEnum = 1 TheTestEnum_C TheTestEnum = 2 ) var TheTestEnum_name = map[int32]string{ 0: "A", 1: "B", 2: "C", } var TheTestEnum_value = map[string]int32{ "A": 0, "B": 1, "C": 2, } func (x TheTestEnum) Enum() *TheTestEnum { p := new(TheTestEnum) *p = x return p } func (x TheTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(TheTestEnum_name, int32(x)) } func (x *TheTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(TheTestEnum_value, data, "TheTestEnum") if err != nil { return err } *x = TheTestEnum(value) return nil } func (TheTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{0} } type NidOptEnum struct { Field1 TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=enumstringer.TheTestEnum" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptEnum) Reset() { *m = NidOptEnum{} } func (m *NidOptEnum) String() string { return proto.CompactTextString(m) } func (*NidOptEnum) ProtoMessage() {} func (*NidOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{0} } func (m *NidOptEnum) GetField1() TheTestEnum { if m != nil { return m.Field1 } return TheTestEnum_A } type NinOptEnum struct { Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=enumstringer.TheTestEnum" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptEnum) Reset() { *m = NinOptEnum{} } func (m *NinOptEnum) String() string { return proto.CompactTextString(m) } func (*NinOptEnum) ProtoMessage() {} func (*NinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{1} } func (m *NinOptEnum) GetField1() TheTestEnum { if m != nil && m.Field1 != nil { return *m.Field1 } return TheTestEnum_A } type NidRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=enumstringer.TheTestEnum" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepEnum) Reset() { *m = NidRepEnum{} } func (m *NidRepEnum) String() string { return proto.CompactTextString(m) } func (*NidRepEnum) ProtoMessage() {} func (*NidRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{2} } func (m *NidRepEnum) GetField1() []TheTestEnum { if m != nil { return m.Field1 } return nil } type NinRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=enumstringer.TheTestEnum" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepEnum) Reset() { *m = NinRepEnum{} } func (m *NinRepEnum) String() string { return proto.CompactTextString(m) } func (*NinRepEnum) ProtoMessage() {} func (*NinRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{3} } func (m *NinRepEnum) GetField1() []TheTestEnum { if m != nil { return m.Field1 } return nil } func init() { proto.RegisterType((*NidOptEnum)(nil), "enumstringer.NidOptEnum") proto.RegisterType((*NinOptEnum)(nil), "enumstringer.NinOptEnum") proto.RegisterType((*NidRepEnum)(nil), "enumstringer.NidRepEnum") proto.RegisterType((*NinRepEnum)(nil), "enumstringer.NinRepEnum") proto.RegisterEnum("enumstringer.TheTestEnum", TheTestEnum_name, TheTestEnum_value) } func (this *NidOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptEnum but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptEnum but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func NewPopulatedNidOptEnum(r randyEnumstringer, easy bool) *NidOptEnum { this := &NidOptEnum{} this.Field1 = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedEnumstringer(r, 2) } return this } func NewPopulatedNinOptEnum(r randyEnumstringer, easy bool) *NinOptEnum { this := &NinOptEnum{} if r.Intn(10) != 0 { v1 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.Field1 = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedEnumstringer(r, 2) } return this } func NewPopulatedNidRepEnum(r randyEnumstringer, easy bool) *NidRepEnum { this := &NidRepEnum{} if r.Intn(10) != 0 { v2 := r.Intn(10) this.Field1 = make([]TheTestEnum, v2) for i := 0; i < v2; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedEnumstringer(r, 2) } return this } func NewPopulatedNinRepEnum(r randyEnumstringer, easy bool) *NinRepEnum { this := &NinRepEnum{} if r.Intn(10) != 0 { v3 := r.Intn(10) this.Field1 = make([]TheTestEnum, v3) for i := 0; i < v3; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedEnumstringer(r, 2) } return this } type randyEnumstringer interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneEnumstringer(r randyEnumstringer) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringEnumstringer(r randyEnumstringer) string { v4 := r.Intn(100) tmps := make([]rune, v4) for i := 0; i < v4; i++ { tmps[i] = randUTF8RuneEnumstringer(r) } return string(tmps) } func randUnrecognizedEnumstringer(r randyEnumstringer, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldEnumstringer(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldEnumstringer(dAtA []byte, r randyEnumstringer, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(key)) v5 := r.Int63() if r.Intn(2) == 0 { v5 *= -1 } dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(v5)) case 1: dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateEnumstringer(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func init() { proto.RegisterFile("enumstringer.proto", fileDescriptorEnumstringer) } var fileDescriptorEnumstringer = []byte{ // 208 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4a, 0xcd, 0x2b, 0xcd, 0x2d, 0x2e, 0x29, 0xca, 0xcc, 0x4b, 0x4f, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x41, 0x16, 0x93, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0x2b, 0x4a, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0xa2, 0x59, 0xc9, 0x95, 0x8b, 0xcb, 0x2f, 0x33, 0xc5, 0xbf, 0xa0, 0xc4, 0x35, 0xaf, 0x34, 0x57, 0xc8, 0x9c, 0x8b, 0xcd, 0x2d, 0x33, 0x35, 0x27, 0xc5, 0x50, 0x82, 0x51, 0x81, 0x51, 0x83, 0xcf, 0x48, 0x52, 0x0f, 0xc5, 0xbe, 0x90, 0x8c, 0xd4, 0x90, 0xd4, 0x62, 0xb0, 0x52, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0xca, 0x95, 0xec, 0x41, 0xc6, 0xe4, 0xc1, 0x8c, 0x31, 0x24, 0xda, 0x18, 0xb8, 0x01, 0x10, 0x77, 0x04, 0xa5, 0x16, 0x60, 0xb8, 0x83, 0x99, 0x74, 0x77, 0xc0, 0x8c, 0x31, 0x24, 0xda, 0x18, 0x98, 0x01, 0x5a, 0x4a, 0x5c, 0xdc, 0x48, 0xc2, 0x42, 0xac, 0x5c, 0x8c, 0x8e, 0x02, 0x0c, 0x20, 0xca, 0x49, 0x80, 0x11, 0x44, 0x39, 0x0b, 0x30, 0x39, 0x89, 0x3c, 0x78, 0x28, 0xc7, 0xf8, 0xe3, 0xa1, 0x1c, 0xe3, 0x8a, 0x47, 0x72, 0x8c, 0x3b, 0x1e, 0xc9, 0x31, 0xbe, 0x78, 0x24, 0xc7, 0x00, 0x08, 0x00, 0x00, 0xff, 0xff, 0x2c, 0xb2, 0x8f, 0xc2, 0x9b, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/enumstringer/enumstringer.proto000066400000000000000000000041011317075173200246510ustar00rootroot00000000000000// 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 enumstringer; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; enum TheTestEnum { A = 0; B = 1; C = 2; } message NidOptEnum { optional TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; } message NinOptEnum { optional TheTestEnum Field1 = 1; } message NidRepEnum { repeated TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; } message NinRepEnum { repeated TheTestEnum Field1 = 1; } golang-gogoprotobuf-0.5/test/enumstringer/enumstringerpb_test.go000066400000000000000000000341411317075173200255030ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: enumstringer.proto /* Package enumstringer is a generated protocol buffer package. It is generated from these files: enumstringer.proto It has these top-level messages: NidOptEnum NinOptEnum NidRepEnum NinRepEnum */ package enumstringer import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestNidOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNinRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNidOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/enumstringer/string.go000066400000000000000000000031171317075173200227050ustar00rootroot00000000000000// 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. package enumstringer func (this TheTestEnum) String() string { switch this { case 0: return "a" case 1: return "blabla" case 2: return "z" } return "3" } golang-gogoprotobuf-0.5/test/example/000077500000000000000000000000001317075173200177575ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/example/Makefile000066400000000000000000000027511317075173200214240ustar00rootroot00000000000000# 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: (protoc -I=. -I=../../../../../ -I=../../protobuf/ --gogo_out=. example.proto) golang-gogoprotobuf-0.5/test/example/example.pb.go000066400000000000000000002254671317075173200223610ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: example.proto /* Package test is a generated protocol buffer package. It is generated from these files: example.proto It has these top-level messages: A B C U E R CastType */ package test import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test "github.com/gogo/protobuf/test" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type A struct { Description string `protobuf:"bytes,1,opt,name=Description" json:"Description"` Number int64 `protobuf:"varint,2,opt,name=Number" json:"Number"` Id github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,3,opt,name=Id,customtype=github.com/gogo/protobuf/test.Uuid" json:"Id"` XXX_unrecognized []byte `json:"-"` } func (m *A) Reset() { *m = A{} } func (*A) ProtoMessage() {} func (*A) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{0} } type B struct { A `protobuf:"bytes,1,opt,name=A,embedded=A" json:"A"` G []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=G,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"G"` XXX_unrecognized []byte `json:"-"` } func (m *B) Reset() { *m = B{} } func (*B) ProtoMessage() {} func (*B) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{1} } type C struct { MySize *int64 `protobuf:"varint,1,opt,name=size" json:"size,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *C) Reset() { *m = C{} } func (*C) ProtoMessage() {} func (*C) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{2} } func (m *C) GetMySize() int64 { if m != nil && m.MySize != nil { return *m.MySize } return 0 } type U struct { A *A `protobuf:"bytes,1,opt,name=A" json:"A,omitempty"` B *B `protobuf:"bytes,2,opt,name=B" json:"B,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *U) Reset() { *m = U{} } func (*U) ProtoMessage() {} func (*U) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{3} } func (m *U) GetA() *A { if m != nil { return m.A } return nil } func (m *U) GetB() *B { if m != nil { return m.B } return nil } type E struct { XXX_extensions []byte `protobuf:"bytes,0,opt" json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *E) Reset() { *m = E{} } func (*E) ProtoMessage() {} func (*E) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{4} } var extRange_E = []proto.ExtensionRange{ {Start: 1, End: 536870911}, } func (*E) ExtensionRangeArray() []proto.ExtensionRange { return extRange_E } func (m *E) GetExtensions() *[]byte { if m.XXX_extensions == nil { m.XXX_extensions = make([]byte, 0) } return &m.XXX_extensions } type R struct { Recognized *uint32 `protobuf:"varint,1,opt,name=recognized" json:"recognized,omitempty"` } func (m *R) Reset() { *m = R{} } func (*R) ProtoMessage() {} func (*R) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{5} } func (m *R) GetRecognized() uint32 { if m != nil && m.Recognized != nil { return *m.Recognized } return 0 } type CastType struct { Int32 *int32 `protobuf:"varint,1,opt,name=Int32,casttype=int32" json:"Int32,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CastType) Reset() { *m = CastType{} } func (*CastType) ProtoMessage() {} func (*CastType) Descriptor() ([]byte, []int) { return fileDescriptorExample, []int{6} } func (m *CastType) GetInt32() int32 { if m != nil && m.Int32 != nil { return *m.Int32 } return 0 } func init() { proto.RegisterType((*A)(nil), "test.A") proto.RegisterType((*B)(nil), "test.B") proto.RegisterType((*C)(nil), "test.C") proto.RegisterType((*U)(nil), "test.U") proto.RegisterType((*E)(nil), "test.E") proto.RegisterType((*R)(nil), "test.R") proto.RegisterType((*CastType)(nil), "test.CastType") } func (this *B) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ExampleDescription() } func ExampleDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3926 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x7a, 0x59, 0x70, 0x1c, 0xd7, 0x75, 0x36, 0x7b, 0x16, 0x60, 0xe6, 0xcc, 0x60, 0xd0, 0xb8, 0x00, 0xc9, 0x21, 0x24, 0x01, 0xe4, 0x68, 0x03, 0x29, 0x19, 0xf4, 0x4f, 0x71, 0x53, 0xf3, 0xb7, 0x95, 0x99, 0xc1, 0x10, 0x1e, 0x06, 0x9b, 0x7b, 0x00, 0x8b, 0x72, 0x1e, 0xba, 0x1a, 0x3d, 0x17, 0x83, 0x26, 0x7b, 0xba, 0xdb, 0xdd, 0x3d, 0x24, 0xc1, 0xca, 0x03, 0x53, 0xca, 0xe6, 0x4a, 0x25, 0xce, 0x56, 0x15, 0x5b, 0x91, 0x15, 0xd9, 0x55, 0x89, 0x14, 0x3b, 0x9b, 0xe3, 0xc4, 0x71, 0xf2, 0x12, 0xbf, 0x38, 0xe1, 0x53, 0x4a, 0x7e, 0x4b, 0xa5, 0x52, 0x2c, 0x89, 0xa5, 0xaa, 0x6c, 0x4a, 0xa2, 0xc4, 0x7a, 0x48, 0x45, 0x2f, 0xa9, 0xbb, 0xf5, 0xf4, 0x2c, 0x40, 0x0f, 0x5c, 0x25, 0xf9, 0x09, 0xe8, 0x73, 0xcf, 0xf7, 0xf5, 0xb9, 0xe7, 0x9e, 0x7b, 0xce, 0xb9, 0xb7, 0x07, 0xbe, 0x79, 0x19, 0x4e, 0xb6, 0x1c, 0xa7, 0x65, 0xe1, 0xb3, 0xae, 0xe7, 0x04, 0xce, 0x76, 0x67, 0xe7, 0x6c, 0x13, 0xfb, 0x86, 0x67, 0xba, 0x81, 0xe3, 0x2d, 0x52, 0x19, 0x9a, 0x64, 0x1a, 0x8b, 0x42, 0xa3, 0xb4, 0x0a, 0x53, 0x57, 0x4d, 0x0b, 0x2f, 0x85, 0x8a, 0x0d, 0x1c, 0xa0, 0xcb, 0x90, 0xda, 0x31, 0x2d, 0x5c, 0x94, 0x4e, 0x26, 0x17, 0x72, 0xe7, 0x9e, 0x58, 0xec, 0x03, 0x2d, 0xf6, 0x22, 0x36, 0x88, 0x58, 0xa5, 0x88, 0xd2, 0xbb, 0x29, 0x98, 0x1e, 0x32, 0x8a, 0x10, 0xa4, 0x6c, 0xbd, 0x4d, 0x18, 0xa5, 0x85, 0xac, 0x4a, 0xff, 0x47, 0x45, 0x18, 0x77, 0x75, 0xe3, 0xa6, 0xde, 0xc2, 0xc5, 0x04, 0x15, 0x8b, 0x47, 0x34, 0x07, 0xd0, 0xc4, 0x2e, 0xb6, 0x9b, 0xd8, 0x36, 0xf6, 0x8a, 0xc9, 0x93, 0xc9, 0x85, 0xac, 0x1a, 0x91, 0xa0, 0x67, 0x60, 0xca, 0xed, 0x6c, 0x5b, 0xa6, 0xa1, 0x45, 0xd4, 0xe0, 0x64, 0x72, 0x21, 0xad, 0xca, 0x6c, 0x60, 0xa9, 0xab, 0xfc, 0x34, 0x4c, 0xde, 0xc6, 0xfa, 0xcd, 0xa8, 0x6a, 0x8e, 0xaa, 0x16, 0x88, 0x38, 0xa2, 0x58, 0x85, 0x7c, 0x1b, 0xfb, 0xbe, 0xde, 0xc2, 0x5a, 0xb0, 0xe7, 0xe2, 0x62, 0x8a, 0xce, 0xfe, 0xe4, 0xc0, 0xec, 0xfb, 0x67, 0x9e, 0xe3, 0xa8, 0xcd, 0x3d, 0x17, 0xa3, 0x32, 0x64, 0xb1, 0xdd, 0x69, 0x33, 0x86, 0xf4, 0x3e, 0xfe, 0xab, 0xd9, 0x9d, 0x76, 0x3f, 0x4b, 0x86, 0xc0, 0x38, 0xc5, 0xb8, 0x8f, 0xbd, 0x5b, 0xa6, 0x81, 0x8b, 0x63, 0x94, 0xe0, 0xe9, 0x01, 0x82, 0x06, 0x1b, 0xef, 0xe7, 0x10, 0x38, 0x54, 0x85, 0x2c, 0xbe, 0x13, 0x60, 0xdb, 0x37, 0x1d, 0xbb, 0x38, 0x4e, 0x49, 0x9e, 0x1c, 0xb2, 0x8a, 0xd8, 0x6a, 0xf6, 0x53, 0x74, 0x71, 0xe8, 0x22, 0x8c, 0x3b, 0x6e, 0x60, 0x3a, 0xb6, 0x5f, 0xcc, 0x9c, 0x94, 0x16, 0x72, 0xe7, 0x1e, 0x1d, 0x1a, 0x08, 0xeb, 0x4c, 0x47, 0x15, 0xca, 0xa8, 0x0e, 0xb2, 0xef, 0x74, 0x3c, 0x03, 0x6b, 0x86, 0xd3, 0xc4, 0x9a, 0x69, 0xef, 0x38, 0xc5, 0x2c, 0x25, 0x98, 0x1f, 0x9c, 0x08, 0x55, 0xac, 0x3a, 0x4d, 0x5c, 0xb7, 0x77, 0x1c, 0xb5, 0xe0, 0xf7, 0x3c, 0xa3, 0x63, 0x30, 0xe6, 0xef, 0xd9, 0x81, 0x7e, 0xa7, 0x98, 0xa7, 0x11, 0xc2, 0x9f, 0x4a, 0x7f, 0x39, 0x06, 0x93, 0xa3, 0x84, 0xd8, 0x15, 0x48, 0xef, 0x90, 0x59, 0x16, 0x13, 0x87, 0xf1, 0x01, 0xc3, 0xf4, 0x3a, 0x71, 0xec, 0x47, 0x74, 0x62, 0x19, 0x72, 0x36, 0xf6, 0x03, 0xdc, 0x64, 0x11, 0x91, 0x1c, 0x31, 0xa6, 0x80, 0x81, 0x06, 0x43, 0x2a, 0xf5, 0x23, 0x85, 0xd4, 0x75, 0x98, 0x0c, 0x4d, 0xd2, 0x3c, 0xdd, 0x6e, 0x89, 0xd8, 0x3c, 0x1b, 0x67, 0xc9, 0x62, 0x4d, 0xe0, 0x54, 0x02, 0x53, 0x0b, 0xb8, 0xe7, 0x19, 0x2d, 0x01, 0x38, 0x36, 0x76, 0x76, 0xb4, 0x26, 0x36, 0xac, 0x62, 0x66, 0x1f, 0x2f, 0xad, 0x13, 0x95, 0x01, 0x2f, 0x39, 0x4c, 0x6a, 0x58, 0xe8, 0xf9, 0x6e, 0xa8, 0x8d, 0xef, 0x13, 0x29, 0xab, 0x6c, 0x93, 0x0d, 0x44, 0xdb, 0x16, 0x14, 0x3c, 0x4c, 0xe2, 0x1e, 0x37, 0xf9, 0xcc, 0xb2, 0xd4, 0x88, 0xc5, 0xd8, 0x99, 0xa9, 0x1c, 0xc6, 0x26, 0x36, 0xe1, 0x45, 0x1f, 0xd1, 0xe3, 0x10, 0x0a, 0x34, 0x1a, 0x56, 0x40, 0xb3, 0x50, 0x5e, 0x08, 0xd7, 0xf4, 0x36, 0x9e, 0xbd, 0x0b, 0x85, 0x5e, 0xf7, 0xa0, 0x19, 0x48, 0xfb, 0x81, 0xee, 0x05, 0x34, 0x0a, 0xd3, 0x2a, 0x7b, 0x40, 0x32, 0x24, 0xb1, 0xdd, 0xa4, 0x59, 0x2e, 0xad, 0x92, 0x7f, 0xd1, 0x4f, 0x74, 0x27, 0x9c, 0xa4, 0x13, 0x7e, 0x6a, 0x70, 0x45, 0x7b, 0x98, 0xfb, 0xe7, 0x3d, 0x7b, 0x09, 0x26, 0x7a, 0x26, 0x30, 0xea, 0xab, 0x4b, 0x3f, 0x0d, 0x47, 0x87, 0x52, 0xa3, 0xeb, 0x30, 0xd3, 0xb1, 0x4d, 0x3b, 0xc0, 0x9e, 0xeb, 0x61, 0x12, 0xb1, 0xec, 0x55, 0xc5, 0x7f, 0x1a, 0xdf, 0x27, 0xe6, 0xb6, 0xa2, 0xda, 0x8c, 0x45, 0x9d, 0xee, 0x0c, 0x0a, 0xcf, 0x64, 0x33, 0xff, 0x3c, 0x2e, 0xdf, 0xbb, 0x77, 0xef, 0x5e, 0xa2, 0xf4, 0xe5, 0x31, 0x98, 0x19, 0xb6, 0x67, 0x86, 0x6e, 0xdf, 0x63, 0x30, 0x66, 0x77, 0xda, 0xdb, 0xd8, 0xa3, 0x4e, 0x4a, 0xab, 0xfc, 0x09, 0x95, 0x21, 0x6d, 0xe9, 0xdb, 0xd8, 0x2a, 0xa6, 0x4e, 0x4a, 0x0b, 0x85, 0x73, 0xcf, 0x8c, 0xb4, 0x2b, 0x17, 0x57, 0x08, 0x44, 0x65, 0x48, 0xf4, 0x69, 0x48, 0xf1, 0x14, 0x4d, 0x18, 0xce, 0x8c, 0xc6, 0x40, 0xf6, 0x92, 0x4a, 0x71, 0xe8, 0x11, 0xc8, 0x92, 0xbf, 0x2c, 0x36, 0xc6, 0xa8, 0xcd, 0x19, 0x22, 0x20, 0x71, 0x81, 0x66, 0x21, 0x43, 0xb7, 0x49, 0x13, 0x8b, 0xd2, 0x16, 0x3e, 0x93, 0xc0, 0x6a, 0xe2, 0x1d, 0xbd, 0x63, 0x05, 0xda, 0x2d, 0xdd, 0xea, 0x60, 0x1a, 0xf0, 0x59, 0x35, 0xcf, 0x85, 0x9f, 0x23, 0x32, 0x34, 0x0f, 0x39, 0xb6, 0xab, 0x4c, 0xbb, 0x89, 0xef, 0xd0, 0xec, 0x99, 0x56, 0xd9, 0x46, 0xab, 0x13, 0x09, 0x79, 0xfd, 0x0d, 0xdf, 0xb1, 0x45, 0x68, 0xd2, 0x57, 0x10, 0x01, 0x7d, 0xfd, 0xa5, 0xfe, 0xc4, 0xfd, 0xd8, 0xf0, 0xe9, 0xf5, 0xc7, 0x54, 0xe9, 0x3b, 0x09, 0x48, 0xd1, 0x7c, 0x31, 0x09, 0xb9, 0xcd, 0x97, 0x36, 0x6a, 0xda, 0xd2, 0xfa, 0x56, 0x65, 0xa5, 0x26, 0x4b, 0xa8, 0x00, 0x40, 0x05, 0x57, 0x57, 0xd6, 0xcb, 0x9b, 0x72, 0x22, 0x7c, 0xae, 0xaf, 0x6d, 0x5e, 0x3c, 0x2f, 0x27, 0x43, 0xc0, 0x16, 0x13, 0xa4, 0xa2, 0x0a, 0xcf, 0x9d, 0x93, 0xd3, 0x48, 0x86, 0x3c, 0x23, 0xa8, 0x5f, 0xaf, 0x2d, 0x5d, 0x3c, 0x2f, 0x8f, 0xf5, 0x4a, 0x9e, 0x3b, 0x27, 0x8f, 0xa3, 0x09, 0xc8, 0x52, 0x49, 0x65, 0x7d, 0x7d, 0x45, 0xce, 0x84, 0x9c, 0x8d, 0x4d, 0xb5, 0xbe, 0xb6, 0x2c, 0x67, 0x43, 0xce, 0x65, 0x75, 0x7d, 0x6b, 0x43, 0x86, 0x90, 0x61, 0xb5, 0xd6, 0x68, 0x94, 0x97, 0x6b, 0x72, 0x2e, 0xd4, 0xa8, 0xbc, 0xb4, 0x59, 0x6b, 0xc8, 0xf9, 0x1e, 0xb3, 0x9e, 0x3b, 0x27, 0x4f, 0x84, 0xaf, 0xa8, 0xad, 0x6d, 0xad, 0xca, 0x05, 0x34, 0x05, 0x13, 0xec, 0x15, 0xc2, 0x88, 0xc9, 0x3e, 0xd1, 0xc5, 0xf3, 0xb2, 0xdc, 0x35, 0x84, 0xb1, 0x4c, 0xf5, 0x08, 0x2e, 0x9e, 0x97, 0x51, 0xa9, 0x0a, 0x69, 0x1a, 0x5d, 0x08, 0x41, 0x61, 0xa5, 0x5c, 0xa9, 0xad, 0x68, 0xeb, 0x1b, 0x9b, 0xf5, 0xf5, 0xb5, 0xf2, 0x8a, 0x2c, 0x75, 0x65, 0x6a, 0xed, 0xb3, 0x5b, 0x75, 0xb5, 0xb6, 0x24, 0x27, 0xa2, 0xb2, 0x8d, 0x5a, 0x79, 0xb3, 0xb6, 0x24, 0x27, 0x4b, 0x06, 0xcc, 0x0c, 0xcb, 0x93, 0x43, 0x77, 0x46, 0x64, 0x89, 0x13, 0xfb, 0x2c, 0x31, 0xe5, 0x1a, 0x58, 0xe2, 0xaf, 0x4b, 0x30, 0x3d, 0xa4, 0x56, 0x0c, 0x7d, 0xc9, 0x0b, 0x90, 0x66, 0x21, 0xca, 0xaa, 0xe7, 0xe9, 0xa1, 0x45, 0x87, 0x06, 0xec, 0x40, 0x05, 0xa5, 0xb8, 0x68, 0x07, 0x91, 0xdc, 0xa7, 0x83, 0x20, 0x14, 0x03, 0x46, 0xbe, 0x2c, 0x41, 0x71, 0x3f, 0xee, 0x98, 0x44, 0x91, 0xe8, 0x49, 0x14, 0x57, 0xfa, 0x0d, 0x38, 0xb5, 0xff, 0x1c, 0x06, 0xac, 0x78, 0x43, 0x82, 0x63, 0xc3, 0x1b, 0xad, 0xa1, 0x36, 0x7c, 0x1a, 0xc6, 0xda, 0x38, 0xd8, 0x75, 0x44, 0xb3, 0xf1, 0xd4, 0x90, 0x12, 0x46, 0x86, 0xfb, 0x7d, 0xc5, 0x51, 0xd1, 0x1a, 0x98, 0xdc, 0xaf, 0x5b, 0x62, 0xd6, 0x0c, 0x58, 0xfa, 0xc5, 0x04, 0x1c, 0x1d, 0x4a, 0x3e, 0xd4, 0xd0, 0xc7, 0x00, 0x4c, 0xdb, 0xed, 0x04, 0xac, 0xa1, 0x60, 0xf9, 0x29, 0x4b, 0x25, 0x74, 0xef, 0x93, 0xdc, 0xd3, 0x09, 0xc2, 0xf1, 0x24, 0x1d, 0x07, 0x26, 0xa2, 0x0a, 0x97, 0xbb, 0x86, 0xa6, 0xa8, 0xa1, 0x73, 0xfb, 0xcc, 0x74, 0xa0, 0x56, 0x7f, 0x12, 0x64, 0xc3, 0x32, 0xb1, 0x1d, 0x68, 0x7e, 0xe0, 0x61, 0xbd, 0x6d, 0xda, 0x2d, 0x9a, 0x80, 0x33, 0x4a, 0x7a, 0x47, 0xb7, 0x7c, 0xac, 0x4e, 0xb2, 0xe1, 0x86, 0x18, 0x25, 0x08, 0x5a, 0xe3, 0xbc, 0x08, 0x62, 0xac, 0x07, 0xc1, 0x86, 0x43, 0x44, 0xe9, 0xdb, 0x19, 0xc8, 0x45, 0xda, 0x52, 0x74, 0x0a, 0xf2, 0x37, 0xf4, 0x5b, 0xba, 0x26, 0x8e, 0x1a, 0xcc, 0x13, 0x39, 0x22, 0xdb, 0xe0, 0xc7, 0x8d, 0x4f, 0xc2, 0x0c, 0x55, 0x71, 0x3a, 0x01, 0xf6, 0x34, 0xc3, 0xd2, 0x7d, 0x9f, 0x3a, 0x2d, 0x43, 0x55, 0x11, 0x19, 0x5b, 0x27, 0x43, 0x55, 0x31, 0x82, 0x2e, 0xc0, 0x34, 0x45, 0xb4, 0x3b, 0x56, 0x60, 0xba, 0x16, 0xd6, 0xc8, 0xe1, 0xc7, 0xa7, 0x89, 0x38, 0xb4, 0x6c, 0x8a, 0x68, 0xac, 0x72, 0x05, 0x62, 0x91, 0x8f, 0x96, 0xe0, 0x31, 0x0a, 0x6b, 0x61, 0x1b, 0x7b, 0x7a, 0x80, 0x35, 0xfc, 0x85, 0x8e, 0x6e, 0xf9, 0x9a, 0x6e, 0x37, 0xb5, 0x5d, 0xdd, 0xdf, 0x2d, 0xce, 0x10, 0x82, 0x4a, 0xa2, 0x28, 0xa9, 0x27, 0x88, 0xe2, 0x32, 0xd7, 0xab, 0x51, 0xb5, 0xb2, 0xdd, 0xfc, 0x8c, 0xee, 0xef, 0x22, 0x05, 0x8e, 0x51, 0x16, 0x3f, 0xf0, 0x4c, 0xbb, 0xa5, 0x19, 0xbb, 0xd8, 0xb8, 0xa9, 0x75, 0x82, 0x9d, 0xcb, 0xc5, 0x47, 0xa2, 0xef, 0xa7, 0x16, 0x36, 0xa8, 0x4e, 0x95, 0xa8, 0x6c, 0x05, 0x3b, 0x97, 0x51, 0x03, 0xf2, 0x64, 0x31, 0xda, 0xe6, 0x5d, 0xac, 0xed, 0x38, 0x1e, 0xad, 0x2c, 0x85, 0x21, 0x3b, 0x3b, 0xe2, 0xc1, 0xc5, 0x75, 0x0e, 0x58, 0x75, 0x9a, 0x58, 0x49, 0x37, 0x36, 0x6a, 0xb5, 0x25, 0x35, 0x27, 0x58, 0xae, 0x3a, 0x1e, 0x09, 0xa8, 0x96, 0x13, 0x3a, 0x38, 0xc7, 0x02, 0xaa, 0xe5, 0x08, 0xf7, 0x5e, 0x80, 0x69, 0xc3, 0x60, 0x73, 0x36, 0x0d, 0x8d, 0x1f, 0x51, 0xfc, 0xa2, 0xdc, 0xe3, 0x2c, 0xc3, 0x58, 0x66, 0x0a, 0x3c, 0xc6, 0x7d, 0xf4, 0x3c, 0x1c, 0xed, 0x3a, 0x2b, 0x0a, 0x9c, 0x1a, 0x98, 0x65, 0x3f, 0xf4, 0x02, 0x4c, 0xbb, 0x7b, 0x83, 0x40, 0xd4, 0xf3, 0x46, 0x77, 0xaf, 0x1f, 0x76, 0x09, 0x66, 0xdc, 0x5d, 0x77, 0x10, 0x37, 0x1d, 0xc5, 0x21, 0x77, 0xd7, 0xed, 0x07, 0x3e, 0x49, 0xcf, 0xab, 0x1e, 0x36, 0xf4, 0x00, 0x37, 0x8b, 0xc7, 0xa3, 0xea, 0x91, 0x01, 0x74, 0x16, 0x64, 0xc3, 0xd0, 0xb0, 0xad, 0x6f, 0x5b, 0x58, 0xd3, 0x3d, 0x6c, 0xeb, 0x7e, 0x71, 0x3e, 0xaa, 0x5c, 0x30, 0x8c, 0x1a, 0x1d, 0x2d, 0xd3, 0x41, 0x74, 0x06, 0xa6, 0x9c, 0xed, 0x1b, 0x06, 0x0b, 0x49, 0xcd, 0xf5, 0xf0, 0x8e, 0x79, 0xa7, 0xf8, 0x04, 0xf5, 0xef, 0x24, 0x19, 0xa0, 0x01, 0xb9, 0x41, 0xc5, 0xe8, 0x34, 0xc8, 0x86, 0xbf, 0xab, 0x7b, 0x2e, 0xed, 0x09, 0x7c, 0x57, 0x37, 0x70, 0xf1, 0x49, 0xa6, 0xca, 0xe4, 0x6b, 0x42, 0x4c, 0xb6, 0x84, 0x7f, 0xdb, 0xdc, 0x09, 0x04, 0xe3, 0xd3, 0x6c, 0x4b, 0x50, 0x19, 0x67, 0x5b, 0x00, 0x99, 0xb8, 0xa2, 0xe7, 0xc5, 0x0b, 0x54, 0xad, 0xe0, 0xee, 0xba, 0xd1, 0xf7, 0x3e, 0x0e, 0x13, 0x44, 0xb3, 0xfb, 0xd2, 0xd3, 0xac, 0x9f, 0x71, 0x77, 0x23, 0x6f, 0xfc, 0xc8, 0x5a, 0xcb, 0x92, 0x02, 0xf9, 0x68, 0x7c, 0xa2, 0x2c, 0xb0, 0x08, 0x95, 0x25, 0x52, 0xeb, 0xab, 0xeb, 0x4b, 0xa4, 0x4a, 0x7f, 0xbe, 0x26, 0x27, 0x48, 0xb7, 0xb0, 0x52, 0xdf, 0xac, 0x69, 0xea, 0xd6, 0xda, 0x66, 0x7d, 0xb5, 0x26, 0x27, 0xa3, 0x6d, 0xe9, 0xf7, 0x13, 0x50, 0xe8, 0x3d, 0x61, 0xa0, 0xff, 0x0f, 0xc7, 0xc5, 0x75, 0x80, 0x8f, 0x03, 0xed, 0xb6, 0xe9, 0xd1, 0x2d, 0xd3, 0xd6, 0x59, 0x87, 0x1d, 0x2e, 0xda, 0x0c, 0xd7, 0x6a, 0xe0, 0xe0, 0x45, 0xd3, 0x23, 0x1b, 0xa2, 0xad, 0x07, 0x68, 0x05, 0xe6, 0x6d, 0x47, 0xf3, 0x03, 0xdd, 0x6e, 0xea, 0x5e, 0x53, 0xeb, 0x5e, 0xc4, 0x68, 0xba, 0x61, 0x60, 0xdf, 0x77, 0x58, 0xa9, 0x0a, 0x59, 0x1e, 0xb5, 0x9d, 0x06, 0x57, 0xee, 0xe6, 0xf0, 0x32, 0x57, 0xed, 0x0b, 0xb0, 0xe4, 0x7e, 0x01, 0xf6, 0x08, 0x64, 0xdb, 0xba, 0xab, 0x61, 0x3b, 0xf0, 0xf6, 0x68, 0x5f, 0x99, 0x51, 0x33, 0x6d, 0xdd, 0xad, 0x91, 0xe7, 0x8f, 0xa7, 0xbd, 0xff, 0xc7, 0x24, 0xe4, 0xa3, 0xbd, 0x25, 0x69, 0xd5, 0x0d, 0x5a, 0x47, 0x24, 0x9a, 0x69, 0x1e, 0x3f, 0xb0, 0x13, 0x5d, 0xac, 0x92, 0x02, 0xa3, 0x8c, 0xb1, 0x8e, 0x4f, 0x65, 0x48, 0x52, 0xdc, 0x49, 0x6e, 0xc1, 0xec, 0x14, 0x93, 0x51, 0xf9, 0x13, 0x5a, 0x86, 0xb1, 0x1b, 0x3e, 0xe5, 0x1e, 0xa3, 0xdc, 0x4f, 0x1c, 0xcc, 0x7d, 0xad, 0x41, 0xc9, 0xb3, 0xd7, 0x1a, 0xda, 0xda, 0xba, 0xba, 0x5a, 0x5e, 0x51, 0x39, 0x1c, 0x9d, 0x80, 0x94, 0xa5, 0xdf, 0xdd, 0xeb, 0x2d, 0x45, 0x54, 0x34, 0xaa, 0xe3, 0x4f, 0x40, 0xea, 0x36, 0xd6, 0x6f, 0xf6, 0x16, 0x00, 0x2a, 0xfa, 0x08, 0x43, 0xff, 0x2c, 0xa4, 0xa9, 0xbf, 0x10, 0x00, 0xf7, 0x98, 0x7c, 0x04, 0x65, 0x20, 0x55, 0x5d, 0x57, 0x49, 0xf8, 0xcb, 0x90, 0x67, 0x52, 0x6d, 0xa3, 0x5e, 0xab, 0xd6, 0xe4, 0x44, 0xe9, 0x02, 0x8c, 0x31, 0x27, 0x90, 0xad, 0x11, 0xba, 0x41, 0x3e, 0xc2, 0x1f, 0x39, 0x87, 0x24, 0x46, 0xb7, 0x56, 0x2b, 0x35, 0x55, 0x4e, 0x44, 0x97, 0xd7, 0x87, 0x7c, 0xb4, 0xad, 0xfc, 0x78, 0x62, 0xea, 0xaf, 0x24, 0xc8, 0x45, 0xda, 0x44, 0xd2, 0xa0, 0xe8, 0x96, 0xe5, 0xdc, 0xd6, 0x74, 0xcb, 0xd4, 0x7d, 0x1e, 0x14, 0x40, 0x45, 0x65, 0x22, 0x19, 0x75, 0xd1, 0x3e, 0x16, 0xe3, 0x5f, 0x93, 0x40, 0xee, 0x6f, 0x31, 0xfb, 0x0c, 0x94, 0x7e, 0xac, 0x06, 0xbe, 0x2a, 0x41, 0xa1, 0xb7, 0xaf, 0xec, 0x33, 0xef, 0xd4, 0x8f, 0xd5, 0xbc, 0xb7, 0x13, 0x30, 0xd1, 0xd3, 0x4d, 0x8e, 0x6a, 0xdd, 0x17, 0x60, 0xca, 0x6c, 0xe2, 0xb6, 0xeb, 0x04, 0xd8, 0x36, 0xf6, 0x34, 0x0b, 0xdf, 0xc2, 0x56, 0xb1, 0x44, 0x13, 0xc5, 0xd9, 0x83, 0xfb, 0xd5, 0xc5, 0x7a, 0x17, 0xb7, 0x42, 0x60, 0xca, 0x74, 0x7d, 0xa9, 0xb6, 0xba, 0xb1, 0xbe, 0x59, 0x5b, 0xab, 0xbe, 0xa4, 0x6d, 0xad, 0xfd, 0xe4, 0xda, 0xfa, 0x8b, 0x6b, 0xaa, 0x6c, 0xf6, 0xa9, 0x7d, 0x84, 0x5b, 0x7d, 0x03, 0xe4, 0x7e, 0xa3, 0xd0, 0x71, 0x18, 0x66, 0x96, 0x7c, 0x04, 0x4d, 0xc3, 0xe4, 0xda, 0xba, 0xd6, 0xa8, 0x2f, 0xd5, 0xb4, 0xda, 0xd5, 0xab, 0xb5, 0xea, 0x66, 0x83, 0x1d, 0xe0, 0x43, 0xed, 0xcd, 0xde, 0x4d, 0xfd, 0x4a, 0x12, 0xa6, 0x87, 0x58, 0x82, 0xca, 0xfc, 0xec, 0xc0, 0x8e, 0x33, 0x9f, 0x18, 0xc5, 0xfa, 0x45, 0x52, 0xf2, 0x37, 0x74, 0x2f, 0xe0, 0x47, 0x8d, 0xd3, 0x40, 0xbc, 0x64, 0x07, 0xe6, 0x8e, 0x89, 0x3d, 0x7e, 0xdf, 0xc1, 0x0e, 0x14, 0x93, 0x5d, 0x39, 0xbb, 0xf2, 0x78, 0x16, 0x90, 0xeb, 0xf8, 0x66, 0x60, 0xde, 0xc2, 0x9a, 0x69, 0x8b, 0xcb, 0x11, 0x72, 0xc0, 0x48, 0xa9, 0xb2, 0x18, 0xa9, 0xdb, 0x41, 0xa8, 0x6d, 0xe3, 0x96, 0xde, 0xa7, 0x4d, 0x12, 0x78, 0x52, 0x95, 0xc5, 0x48, 0xa8, 0x7d, 0x0a, 0xf2, 0x4d, 0xa7, 0x43, 0xba, 0x2e, 0xa6, 0x47, 0xea, 0x85, 0xa4, 0xe6, 0x98, 0x2c, 0x54, 0xe1, 0xfd, 0x74, 0xf7, 0x56, 0x26, 0xaf, 0xe6, 0x98, 0x8c, 0xa9, 0x3c, 0x0d, 0x93, 0x7a, 0xab, 0xe5, 0x11, 0x72, 0x41, 0xc4, 0x4e, 0x08, 0x85, 0x50, 0x4c, 0x15, 0x67, 0xaf, 0x41, 0x46, 0xf8, 0x81, 0x94, 0x64, 0xe2, 0x09, 0xcd, 0x65, 0x37, 0x73, 0x89, 0x85, 0xac, 0x9a, 0xb1, 0xc5, 0xe0, 0x29, 0xc8, 0x9b, 0xbe, 0xd6, 0xbd, 0x64, 0x4e, 0x9c, 0x4c, 0x2c, 0x64, 0xd4, 0x9c, 0xe9, 0x87, 0x17, 0x74, 0xa5, 0x37, 0x12, 0x50, 0xe8, 0xbd, 0x24, 0x47, 0x4b, 0x90, 0xb1, 0x1c, 0x43, 0xa7, 0xa1, 0xc5, 0xbe, 0xd0, 0x2c, 0xc4, 0xdc, 0xab, 0x2f, 0xae, 0x70, 0x7d, 0x35, 0x44, 0xce, 0xfe, 0x9d, 0x04, 0x19, 0x21, 0x46, 0xc7, 0x20, 0xe5, 0xea, 0xc1, 0x2e, 0xa5, 0x4b, 0x57, 0x12, 0xb2, 0xa4, 0xd2, 0x67, 0x22, 0xf7, 0x5d, 0xdd, 0xa6, 0x21, 0xc0, 0xe5, 0xe4, 0x99, 0xac, 0xab, 0x85, 0xf5, 0x26, 0x3d, 0x7e, 0x38, 0xed, 0x36, 0xb6, 0x03, 0x5f, 0xac, 0x2b, 0x97, 0x57, 0xb9, 0x18, 0x3d, 0x03, 0x53, 0x81, 0xa7, 0x9b, 0x56, 0x8f, 0x6e, 0x8a, 0xea, 0xca, 0x62, 0x20, 0x54, 0x56, 0xe0, 0x84, 0xe0, 0x6d, 0xe2, 0x40, 0x37, 0x76, 0x71, 0xb3, 0x0b, 0x1a, 0xa3, 0x37, 0xb0, 0xc7, 0xb9, 0xc2, 0x12, 0x1f, 0x17, 0xd8, 0xd2, 0x0f, 0x24, 0x98, 0x12, 0x07, 0xa6, 0x66, 0xe8, 0xac, 0x55, 0x00, 0xdd, 0xb6, 0x9d, 0x20, 0xea, 0xae, 0xc1, 0x50, 0x1e, 0xc0, 0x2d, 0x96, 0x43, 0x90, 0x1a, 0x21, 0x98, 0x6d, 0x03, 0x74, 0x47, 0xf6, 0x75, 0xdb, 0x3c, 0xe4, 0xf8, 0x17, 0x10, 0xfa, 0x19, 0x8d, 0x1d, 0xb1, 0x81, 0x89, 0xc8, 0xc9, 0x0a, 0xcd, 0x40, 0x7a, 0x1b, 0xb7, 0x4c, 0x9b, 0xdf, 0x6b, 0xb2, 0x07, 0x71, 0x57, 0x9b, 0x0a, 0xef, 0x6a, 0x2b, 0xd7, 0x61, 0xda, 0x70, 0xda, 0xfd, 0xe6, 0x56, 0xe4, 0xbe, 0x63, 0xbe, 0xff, 0x19, 0xe9, 0xf3, 0xd0, 0x6d, 0x31, 0xbf, 0x9e, 0x48, 0x2e, 0x6f, 0x54, 0xbe, 0x91, 0x98, 0x5d, 0x66, 0xb8, 0x0d, 0x31, 0x4d, 0x15, 0xef, 0x58, 0xd8, 0x20, 0xa6, 0xc3, 0x0f, 0x9f, 0x82, 0x4f, 0xb4, 0xcc, 0x60, 0xb7, 0xb3, 0xbd, 0x68, 0x38, 0xed, 0xb3, 0x2d, 0xa7, 0xe5, 0x74, 0x3f, 0x1b, 0x92, 0x27, 0xfa, 0x40, 0xff, 0xe3, 0x9f, 0x0e, 0xb3, 0xa1, 0x74, 0x36, 0xf6, 0x3b, 0xa3, 0xb2, 0x06, 0xd3, 0x5c, 0x59, 0xa3, 0xdf, 0x2e, 0xd8, 0x11, 0x02, 0x1d, 0x78, 0xff, 0x53, 0xfc, 0xd6, 0xbb, 0xb4, 0x56, 0xab, 0x53, 0x1c, 0x4a, 0xc6, 0xd8, 0x29, 0x43, 0x51, 0xe1, 0x68, 0x0f, 0x1f, 0xdb, 0x97, 0xd8, 0x8b, 0x61, 0xfc, 0x3e, 0x67, 0x9c, 0x8e, 0x30, 0x36, 0x38, 0x54, 0xa9, 0xc2, 0xc4, 0x61, 0xb8, 0xfe, 0x86, 0x73, 0xe5, 0x71, 0x94, 0x64, 0x19, 0x26, 0x29, 0x89, 0xd1, 0xf1, 0x03, 0xa7, 0x4d, 0x93, 0xde, 0xc1, 0x34, 0x7f, 0xfb, 0x2e, 0xdb, 0x28, 0x05, 0x02, 0xab, 0x86, 0x28, 0x45, 0x01, 0xfa, 0xb9, 0xa6, 0x89, 0x0d, 0x2b, 0x86, 0xe1, 0x3e, 0x37, 0x24, 0xd4, 0x57, 0x3e, 0x07, 0x33, 0xe4, 0x7f, 0x9a, 0x93, 0xa2, 0x96, 0xc4, 0xdf, 0x76, 0x15, 0x7f, 0xf0, 0x32, 0xdb, 0x8b, 0xd3, 0x21, 0x41, 0xc4, 0xa6, 0xc8, 0x2a, 0xb6, 0x70, 0x10, 0x60, 0xcf, 0xd7, 0x74, 0x6b, 0x98, 0x79, 0x91, 0xeb, 0x82, 0xe2, 0x57, 0xde, 0xeb, 0x5d, 0xc5, 0x65, 0x86, 0x2c, 0x5b, 0x96, 0xb2, 0x05, 0xc7, 0x87, 0x44, 0xc5, 0x08, 0x9c, 0xaf, 0x70, 0xce, 0x99, 0x81, 0xc8, 0x20, 0xb4, 0x1b, 0x20, 0xe4, 0xe1, 0x5a, 0x8e, 0xc0, 0xf9, 0xdb, 0x9c, 0x13, 0x71, 0xac, 0x58, 0x52, 0xc2, 0x78, 0x0d, 0xa6, 0x6e, 0x61, 0x6f, 0xdb, 0xf1, 0xf9, 0x15, 0xcd, 0x08, 0x74, 0xaf, 0x72, 0xba, 0x49, 0x0e, 0xa4, 0x77, 0x36, 0x84, 0xeb, 0x79, 0xc8, 0xec, 0xe8, 0x06, 0x1e, 0x81, 0xe2, 0xab, 0x9c, 0x62, 0x9c, 0xe8, 0x13, 0x68, 0x19, 0xf2, 0x2d, 0x87, 0x97, 0xa5, 0x78, 0xf8, 0x6b, 0x1c, 0x9e, 0x13, 0x18, 0x4e, 0xe1, 0x3a, 0x6e, 0xc7, 0x22, 0x35, 0x2b, 0x9e, 0xe2, 0x77, 0x04, 0x85, 0xc0, 0x70, 0x8a, 0x43, 0xb8, 0xf5, 0x75, 0x41, 0xe1, 0x47, 0xfc, 0xf9, 0x02, 0xe4, 0x1c, 0xdb, 0xda, 0x73, 0xec, 0x51, 0x8c, 0xf8, 0x1a, 0x67, 0x00, 0x0e, 0x21, 0x04, 0x57, 0x20, 0x3b, 0xea, 0x42, 0xfc, 0xee, 0x7b, 0x62, 0x7b, 0x88, 0x15, 0x58, 0x86, 0x49, 0x91, 0xa0, 0x4c, 0xc7, 0x1e, 0x81, 0xe2, 0xf7, 0x38, 0x45, 0x21, 0x02, 0xe3, 0xd3, 0x08, 0xb0, 0x1f, 0xb4, 0xf0, 0x28, 0x24, 0x6f, 0x88, 0x69, 0x70, 0x08, 0x77, 0xe5, 0x36, 0xb6, 0x8d, 0xdd, 0xd1, 0x18, 0xde, 0x14, 0xae, 0x14, 0x18, 0x42, 0x51, 0x85, 0x89, 0xb6, 0xee, 0xf9, 0xbb, 0xba, 0x35, 0xd2, 0x72, 0xfc, 0x3e, 0xe7, 0xc8, 0x87, 0x20, 0xee, 0x91, 0x8e, 0x7d, 0x18, 0x9a, 0x6f, 0x08, 0x8f, 0x44, 0x60, 0x7c, 0xeb, 0xf9, 0x01, 0xbd, 0xcf, 0x3a, 0x0c, 0xdb, 0x37, 0xc5, 0xd6, 0x63, 0xd8, 0xd5, 0x28, 0xe3, 0x15, 0xc8, 0xfa, 0xe6, 0xdd, 0x91, 0x68, 0xfe, 0x40, 0xac, 0x34, 0x05, 0x10, 0xf0, 0x4b, 0x70, 0x62, 0x68, 0x99, 0x18, 0x81, 0xec, 0x0f, 0x39, 0xd9, 0xb1, 0x21, 0xa5, 0x82, 0xa7, 0x84, 0xc3, 0x52, 0xfe, 0x91, 0x48, 0x09, 0xb8, 0x8f, 0x6b, 0x83, 0x1c, 0x14, 0x7c, 0x7d, 0xe7, 0x70, 0x5e, 0xfb, 0x63, 0xe1, 0x35, 0x86, 0xed, 0xf1, 0xda, 0x26, 0x1c, 0xe3, 0x8c, 0x87, 0x5b, 0xd7, 0x3f, 0x11, 0x89, 0x95, 0xa1, 0xb7, 0x7a, 0x57, 0xf7, 0xa7, 0x60, 0x36, 0x74, 0xa7, 0xe8, 0x48, 0x7d, 0xad, 0xad, 0xbb, 0x23, 0x30, 0x7f, 0x8b, 0x33, 0x8b, 0x8c, 0x1f, 0xb6, 0xb4, 0xfe, 0xaa, 0xee, 0x12, 0xf2, 0xeb, 0x50, 0x14, 0xe4, 0x1d, 0xdb, 0xc3, 0x86, 0xd3, 0xb2, 0xcd, 0xbb, 0xb8, 0x39, 0x02, 0xf5, 0x9f, 0xf6, 0x2d, 0xd5, 0x56, 0x04, 0x4e, 0x98, 0xeb, 0x20, 0x87, 0xbd, 0x8a, 0x66, 0xb6, 0x5d, 0xc7, 0x0b, 0x62, 0x18, 0xbf, 0x2d, 0x56, 0x2a, 0xc4, 0xd5, 0x29, 0x4c, 0xa9, 0x41, 0x81, 0x3e, 0x8e, 0x1a, 0x92, 0x7f, 0xc6, 0x89, 0x26, 0xba, 0x28, 0x9e, 0x38, 0x0c, 0xa7, 0xed, 0xea, 0xde, 0x28, 0xf9, 0xef, 0xcf, 0x45, 0xe2, 0xe0, 0x10, 0x9e, 0x38, 0x82, 0x3d, 0x17, 0x93, 0x6a, 0x3f, 0x02, 0xc3, 0x77, 0x44, 0xe2, 0x10, 0x18, 0x4e, 0x21, 0x1a, 0x86, 0x11, 0x28, 0xfe, 0x42, 0x50, 0x08, 0x0c, 0xa1, 0xf8, 0x6c, 0xb7, 0xd0, 0x7a, 0xb8, 0x65, 0xfa, 0x81, 0xc7, 0xfa, 0xe0, 0x83, 0xa9, 0xbe, 0xfb, 0x5e, 0x6f, 0x13, 0xa6, 0x46, 0xa0, 0xca, 0x35, 0x98, 0xec, 0x6b, 0x31, 0x50, 0xdc, 0x6f, 0x3f, 0x8a, 0x3f, 0xf3, 0x01, 0x4f, 0x46, 0xbd, 0x1d, 0x86, 0xb2, 0x42, 0xd6, 0xbd, 0xb7, 0x0f, 0x88, 0x27, 0x7b, 0xf9, 0x83, 0x70, 0xe9, 0x7b, 0xda, 0x00, 0xe5, 0x2a, 0x4c, 0xf4, 0xf4, 0x00, 0xf1, 0x54, 0x3f, 0xcb, 0xa9, 0xf2, 0xd1, 0x16, 0x40, 0xb9, 0x00, 0x29, 0x52, 0xcf, 0xe3, 0xe1, 0x3f, 0xc7, 0xe1, 0x54, 0x5d, 0xf9, 0x14, 0x64, 0x44, 0x1d, 0x8f, 0x87, 0xfe, 0x3c, 0x87, 0x86, 0x10, 0x02, 0x17, 0x35, 0x3c, 0x1e, 0xfe, 0x0b, 0x02, 0x2e, 0x20, 0x04, 0x3e, 0xba, 0x0b, 0xbf, 0xf7, 0x4b, 0x29, 0x9e, 0x87, 0x85, 0xef, 0xae, 0xc0, 0x38, 0x2f, 0xde, 0xf1, 0xe8, 0x2f, 0xf2, 0x97, 0x0b, 0x84, 0x72, 0x09, 0xd2, 0x23, 0x3a, 0xfc, 0x97, 0x39, 0x94, 0xe9, 0x2b, 0x55, 0xc8, 0x45, 0x0a, 0x76, 0x3c, 0xfc, 0x57, 0x38, 0x3c, 0x8a, 0x22, 0xa6, 0xf3, 0x82, 0x1d, 0x4f, 0xf0, 0x25, 0x61, 0x3a, 0x47, 0x10, 0xb7, 0x89, 0x5a, 0x1d, 0x8f, 0xfe, 0x55, 0xe1, 0x75, 0x01, 0x51, 0x5e, 0x80, 0x6c, 0x98, 0x7f, 0xe3, 0xf1, 0xbf, 0xc6, 0xf1, 0x5d, 0x0c, 0xf1, 0x40, 0x24, 0xff, 0xc7, 0x53, 0xfc, 0xba, 0xf0, 0x40, 0x04, 0x45, 0xb6, 0x51, 0x7f, 0x4d, 0x8f, 0x67, 0xfa, 0x0d, 0xb1, 0x8d, 0xfa, 0x4a, 0x3a, 0x59, 0x4d, 0x9a, 0x06, 0xe3, 0x29, 0x7e, 0x53, 0xac, 0x26, 0xd5, 0x27, 0x66, 0xf4, 0x17, 0xc9, 0x78, 0x8e, 0xdf, 0x12, 0x66, 0xf4, 0xd5, 0x48, 0x65, 0x03, 0xd0, 0x60, 0x81, 0x8c, 0xe7, 0xfb, 0x32, 0xe7, 0x9b, 0x1a, 0xa8, 0x8f, 0xca, 0x8b, 0x70, 0x6c, 0x78, 0x71, 0x8c, 0x67, 0xfd, 0xca, 0x07, 0x7d, 0xc7, 0x99, 0x68, 0x6d, 0x54, 0x36, 0xbb, 0x59, 0x36, 0x5a, 0x18, 0xe3, 0x69, 0x5f, 0xf9, 0xa0, 0x37, 0xd1, 0x46, 0xeb, 0xa2, 0x52, 0x06, 0xe8, 0xd6, 0xa4, 0x78, 0xae, 0x57, 0x39, 0x57, 0x04, 0x44, 0xb6, 0x06, 0x2f, 0x49, 0xf1, 0xf8, 0xaf, 0x8a, 0xad, 0xc1, 0x11, 0x64, 0x6b, 0x88, 0x6a, 0x14, 0x8f, 0x7e, 0x4d, 0x6c, 0x0d, 0x01, 0x51, 0xae, 0x40, 0xc6, 0xee, 0x58, 0x16, 0x89, 0x2d, 0x74, 0xf0, 0xcf, 0x99, 0x8a, 0xff, 0xf2, 0x21, 0x07, 0x0b, 0x80, 0x72, 0x01, 0xd2, 0xb8, 0xbd, 0x8d, 0x9b, 0x71, 0xc8, 0x7f, 0xfd, 0x50, 0xe4, 0x13, 0xa2, 0xad, 0xbc, 0x00, 0xc0, 0x0e, 0xd3, 0xf4, 0x2b, 0x51, 0x0c, 0xf6, 0xdf, 0x3e, 0xe4, 0xbf, 0x94, 0xe8, 0x42, 0xba, 0x04, 0xec, 0x77, 0x17, 0x07, 0x13, 0xbc, 0xd7, 0x4b, 0x40, 0x0f, 0xe0, 0xcf, 0xc3, 0xf8, 0x0d, 0xdf, 0xb1, 0x03, 0xbd, 0x15, 0x87, 0xfe, 0x77, 0x8e, 0x16, 0xfa, 0xc4, 0x61, 0x6d, 0xc7, 0xc3, 0x81, 0xde, 0xf2, 0xe3, 0xb0, 0xff, 0xc1, 0xb1, 0x21, 0x80, 0x80, 0x0d, 0xdd, 0x0f, 0x46, 0x99, 0xf7, 0x7f, 0x0a, 0xb0, 0x00, 0x10, 0xa3, 0xc9, 0xff, 0x37, 0xf1, 0x5e, 0x1c, 0xf6, 0x7d, 0x61, 0x34, 0xd7, 0x57, 0x3e, 0x05, 0x59, 0xf2, 0x2f, 0xfb, 0xf5, 0x50, 0x0c, 0xf8, 0xbf, 0x38, 0xb8, 0x8b, 0x20, 0x6f, 0xf6, 0x83, 0x66, 0x60, 0xc6, 0x3b, 0xfb, 0xbf, 0xf9, 0x4a, 0x0b, 0x7d, 0xa5, 0x0c, 0x39, 0x3f, 0x68, 0x36, 0x3b, 0xbc, 0xa3, 0x89, 0x81, 0xff, 0xf0, 0xc3, 0xf0, 0x90, 0x1b, 0x62, 0x2a, 0xa7, 0x86, 0x5f, 0xd6, 0xc1, 0xb2, 0xb3, 0xec, 0xb0, 0x6b, 0x3a, 0xf8, 0xeb, 0x14, 0x4c, 0xe0, 0x3b, 0x7a, 0xdb, 0x15, 0x0a, 0x28, 0x45, 0x4a, 0xc7, 0xec, 0xe1, 0xae, 0xe2, 0x4a, 0x5f, 0x92, 0x40, 0x2a, 0xa3, 0xa7, 0x20, 0xb7, 0xd4, 0x2d, 0x5c, 0xec, 0x87, 0x2d, 0x95, 0xd4, 0xfd, 0x07, 0xf3, 0x47, 0xd4, 0xe8, 0x00, 0x7a, 0x14, 0xc6, 0xd6, 0xba, 0x3f, 0x8e, 0x4a, 0x72, 0x15, 0x2e, 0x43, 0x0a, 0x24, 0xea, 0xec, 0x23, 0x59, 0xbe, 0x72, 0x86, 0x8c, 0xfc, 0xc3, 0x83, 0xf9, 0xd2, 0xbe, 0xe6, 0x10, 0x6b, 0x17, 0xb7, 0x3a, 0x66, 0x53, 0x4d, 0xd4, 0x9b, 0x4a, 0xe6, 0x17, 0x5f, 0x9f, 0x3f, 0xf2, 0xe6, 0xeb, 0xf3, 0x52, 0xc9, 0x06, 0xa9, 0x82, 0xe6, 0x41, 0x2a, 0x53, 0x33, 0x72, 0xe7, 0xc6, 0x17, 0xa9, 0x66, 0xb9, 0x92, 0x21, 0x94, 0x6f, 0x3d, 0x98, 0x97, 0x54, 0xa9, 0x8c, 0x2a, 0x20, 0x2d, 0xd3, 0xbb, 0xe4, 0x7c, 0xe5, 0x3c, 0x7f, 0xd5, 0xb3, 0x07, 0xbe, 0xea, 0x2c, 0xdb, 0x0b, 0x8b, 0x5b, 0xa6, 0x1d, 0xfc, 0xbf, 0x73, 0x97, 0x55, 0x69, 0x59, 0x49, 0xbd, 0x4f, 0xde, 0xf7, 0x38, 0x48, 0x55, 0x34, 0x07, 0x29, 0x92, 0x98, 0xe8, 0x2b, 0x93, 0x15, 0x78, 0xf8, 0x60, 0x7e, 0x6c, 0x75, 0xaf, 0x61, 0xde, 0xc5, 0x2a, 0x95, 0x97, 0x2e, 0x81, 0xb4, 0x85, 0x8e, 0x0e, 0x1a, 0x45, 0x4c, 0x39, 0x0a, 0x52, 0x85, 0xff, 0x74, 0x8e, 0x8b, 0x2b, 0xaa, 0x54, 0x51, 0x52, 0xf7, 0x09, 0xfb, 0x34, 0x48, 0xb5, 0x33, 0x99, 0x8c, 0xc4, 0x3e, 0x90, 0x28, 0xa9, 0xfb, 0x5f, 0x9b, 0x3f, 0x52, 0x3a, 0x0d, 0x92, 0x8a, 0xe6, 0x00, 0xba, 0x39, 0x95, 0xd2, 0x4e, 0xa8, 0x11, 0x89, 0x92, 0x7a, 0x8b, 0xa8, 0x3e, 0x03, 0x99, 0xaa, 0xee, 0x8b, 0x9f, 0x53, 0xa5, 0xeb, 0x76, 0xf0, 0xdc, 0x39, 0x6e, 0x65, 0xf6, 0x7f, 0x1f, 0xcc, 0xa7, 0x4d, 0x22, 0x50, 0x99, 0xbc, 0xf2, 0xec, 0xdf, 0xbf, 0x33, 0x77, 0xe4, 0xed, 0x77, 0xe6, 0xa4, 0xf7, 0xdf, 0x99, 0x93, 0xfe, 0xe7, 0x9d, 0x39, 0xe9, 0xde, 0xc3, 0x39, 0xe9, 0xcd, 0x87, 0x73, 0xd2, 0x77, 0x1f, 0xce, 0x49, 0xdf, 0x7b, 0x38, 0x27, 0xdd, 0x7f, 0x38, 0x27, 0xbd, 0xf5, 0x70, 0x4e, 0x7a, 0xfb, 0xe1, 0x9c, 0xf4, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9d, 0xf3, 0x72, 0x31, 0xe6, 0x31, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *A) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*A) if !ok { that2, ok := that.(A) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *A") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *A but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *A but is not nil && this == nil") } if this.Description != that1.Description { return fmt.Errorf("Description this(%v) Not Equal that(%v)", this.Description, that1.Description) } if this.Number != that1.Number { return fmt.Errorf("Number this(%v) Not Equal that(%v)", this.Number, that1.Number) } if !this.Id.Equal(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *A) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*A) if !ok { that2, ok := that.(A) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Description != that1.Description { return false } if this.Number != that1.Number { return false } if !this.Id.Equal(that1.Id) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *B) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*B) if !ok { that2, ok := that.(B) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *B") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *B but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *B but is not nil && this == nil") } if !this.A.Equal(&that1.A) { return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A) } if len(this.G) != len(that1.G) { return fmt.Errorf("G this(%v) Not Equal that(%v)", len(this.G), len(that1.G)) } for i := range this.G { if !this.G[i].Equal(that1.G[i]) { return fmt.Errorf("G this[%v](%v) Not Equal that[%v](%v)", i, this.G[i], i, that1.G[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *B) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*B) if !ok { that2, ok := that.(B) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.A.Equal(&that1.A) { return false } if len(this.G) != len(that1.G) { return false } for i := range this.G { if !this.G[i].Equal(that1.G[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *C) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*C) if !ok { that2, ok := that.(C) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *C") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *C but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *C but is not nil && this == nil") } if this.MySize != nil && that1.MySize != nil { if *this.MySize != *that1.MySize { return fmt.Errorf("MySize this(%v) Not Equal that(%v)", *this.MySize, *that1.MySize) } } else if this.MySize != nil { return fmt.Errorf("this.MySize == nil && that.MySize != nil") } else if that1.MySize != nil { return fmt.Errorf("MySize this(%v) Not Equal that(%v)", this.MySize, that1.MySize) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *C) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*C) if !ok { that2, ok := that.(C) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.MySize != nil && that1.MySize != nil { if *this.MySize != *that1.MySize { return false } } else if this.MySize != nil { return false } else if that1.MySize != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *U) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*U) if !ok { that2, ok := that.(U) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *U") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *U but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *U but is not nil && this == nil") } if !this.A.Equal(that1.A) { return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A) } if !this.B.Equal(that1.B) { return fmt.Errorf("B this(%v) Not Equal that(%v)", this.B, that1.B) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *U) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*U) if !ok { that2, ok := that.(U) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.A.Equal(that1.A) { return false } if !this.B.Equal(that1.B) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *E) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*E) if !ok { that2, ok := that.(E) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *E") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *E but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *E but is not nil && this == nil") } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return fmt.Errorf("XXX_extensions this(%v) Not Equal that(%v)", this.XXX_extensions, that1.XXX_extensions) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *E) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*E) if !ok { that2, ok := that.(E) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *R) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*R) if !ok { that2, ok := that.(R) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *R") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *R but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *R but is not nil && this == nil") } if this.Recognized != nil && that1.Recognized != nil { if *this.Recognized != *that1.Recognized { return fmt.Errorf("Recognized this(%v) Not Equal that(%v)", *this.Recognized, *that1.Recognized) } } else if this.Recognized != nil { return fmt.Errorf("this.Recognized == nil && that.Recognized != nil") } else if that1.Recognized != nil { return fmt.Errorf("Recognized this(%v) Not Equal that(%v)", this.Recognized, that1.Recognized) } return nil } func (this *R) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*R) if !ok { that2, ok := that.(R) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Recognized != nil && that1.Recognized != nil { if *this.Recognized != *that1.Recognized { return false } } else if this.Recognized != nil { return false } else if that1.Recognized != nil { return false } return true } func (this *CastType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CastType) if !ok { that2, ok := that.(CastType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CastType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CastType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CastType but is not nil && this == nil") } if this.Int32 != nil && that1.Int32 != nil { if *this.Int32 != *that1.Int32 { return fmt.Errorf("Int32 this(%v) Not Equal that(%v)", *this.Int32, *that1.Int32) } } else if this.Int32 != nil { return fmt.Errorf("this.Int32 == nil && that.Int32 != nil") } else if that1.Int32 != nil { return fmt.Errorf("Int32 this(%v) Not Equal that(%v)", this.Int32, that1.Int32) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CastType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CastType) if !ok { that2, ok := that.(CastType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int32 != nil && that1.Int32 != nil { if *this.Int32 != *that1.Int32 { return false } } else if this.Int32 != nil { return false } else if that1.Int32 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type AFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDescription() string GetNumber() int64 GetId() github_com_gogo_protobuf_test.Uuid } func (this *A) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *A) TestProto() github_com_gogo_protobuf_proto.Message { return NewAFromFace(this) } func (this *A) GetDescription() string { return this.Description } func (this *A) GetNumber() int64 { return this.Number } func (this *A) GetId() github_com_gogo_protobuf_test.Uuid { return this.Id } func NewAFromFace(that AFace) *A { this := &A{} this.Description = that.GetDescription() this.Number = that.GetNumber() this.Id = that.GetId() return this } func (this *A) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.A{") s = append(s, "Description: "+fmt.Sprintf("%#v", this.Description)+",\n") s = append(s, "Number: "+fmt.Sprintf("%#v", this.Number)+",\n") s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *B) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.B{") s = append(s, "A: "+strings.Replace(this.A.GoString(), `&`, ``, 1)+",\n") if this.G != nil { s = append(s, "G: "+fmt.Sprintf("%#v", this.G)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *C) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.C{") if this.MySize != nil { s = append(s, "MySize: "+valueToGoStringExample(this.MySize, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *U) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.U{") if this.A != nil { s = append(s, "A: "+fmt.Sprintf("%#v", this.A)+",\n") } if this.B != nil { s = append(s, "B: "+fmt.Sprintf("%#v", this.B)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *E) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&test.E{") if this.XXX_extensions != nil { s = append(s, "XXX_extensions: "+fmt.Sprintf("%#v", this.XXX_extensions)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *R) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.R{") if this.Recognized != nil { s = append(s, "Recognized: "+valueToGoStringExample(this.Recognized, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CastType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.CastType{") if this.Int32 != nil { s = append(s, "Int32: "+valueToGoStringExample(this.Int32, "int32")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringExample(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *A) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *A) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintExample(dAtA, i, uint64(len(m.Description))) i += copy(dAtA[i:], m.Description) dAtA[i] = 0x10 i++ i = encodeVarintExample(dAtA, i, uint64(m.Number)) dAtA[i] = 0x1a i++ i = encodeVarintExample(dAtA, i, uint64(m.Id.Size())) n1, err := m.Id.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *B) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *B) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintExample(dAtA, i, uint64(m.A.Size())) n2, err := m.A.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 if len(m.G) > 0 { for _, msg := range m.G { dAtA[i] = 0x12 i++ i = encodeVarintExample(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *C) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *C) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.MySize != nil { dAtA[i] = 0x8 i++ i = encodeVarintExample(dAtA, i, uint64(*m.MySize)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *U) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *U) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.A != nil { dAtA[i] = 0xa i++ i = encodeVarintExample(dAtA, i, uint64(m.A.Size())) n3, err := m.A.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 } if m.B != nil { dAtA[i] = 0x12 i++ i = encodeVarintExample(dAtA, i, uint64(m.B.Size())) n4, err := m.B.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n4 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *E) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *E) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.XXX_extensions != nil { i += copy(dAtA[i:], m.XXX_extensions) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *R) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *R) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Recognized != nil { dAtA[i] = 0x8 i++ i = encodeVarintExample(dAtA, i, uint64(*m.Recognized)) } return i, nil } func (m *CastType) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CastType) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Int32 != nil { dAtA[i] = 0x8 i++ i = encodeVarintExample(dAtA, i, uint64(*m.Int32)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintExample(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedA(r randyExample, easy bool) *A { this := &A{} this.Description = string(randStringExample(r)) this.Number = int64(r.Int63()) if r.Intn(2) == 0 { this.Number *= -1 } v1 := github_com_gogo_protobuf_test.NewPopulatedUuid(r) this.Id = *v1 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedExample(r, 4) } return this } func NewPopulatedB(r randyExample, easy bool) *B { this := &B{} v2 := NewPopulatedA(r, easy) this.A = *v2 if r.Intn(10) != 0 { v3 := r.Intn(10) this.G = make([]github_com_gogo_protobuf_test_custom.Uint128, v3) for i := 0; i < v3; i++ { v4 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.G[i] = *v4 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedExample(r, 3) } return this } func NewPopulatedC(r randyExample, easy bool) *C { this := &C{} if r.Intn(10) != 0 { v5 := int64(r.Int63()) if r.Intn(2) == 0 { v5 *= -1 } this.MySize = &v5 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedExample(r, 2) } return this } func NewPopulatedU(r randyExample, easy bool) *U { this := &U{} fieldNum := r.Intn(2) switch fieldNum { case 0: this.A = NewPopulatedA(r, easy) case 1: this.B = NewPopulatedB(r, easy) } return this } func NewPopulatedE(r randyExample, easy bool) *E { this := &E{} if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { fieldNumber := r.Intn(536870911) + 1 wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldExample(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } return this } func NewPopulatedR(r randyExample, easy bool) *R { this := &R{} if r.Intn(10) != 0 { v6 := uint32(r.Uint32()) this.Recognized = &v6 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedCastType(r randyExample, easy bool) *CastType { this := &CastType{} if r.Intn(10) != 0 { v7 := int32(r.Int63()) if r.Intn(2) == 0 { v7 *= -1 } this.Int32 = &v7 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedExample(r, 2) } return this } type randyExample interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneExample(r randyExample) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringExample(r randyExample) string { v8 := r.Intn(100) tmps := make([]rune, v8) for i := 0; i < v8; i++ { tmps[i] = randUTF8RuneExample(r) } return string(tmps) } func randUnrecognizedExample(r randyExample, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldExample(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldExample(dAtA []byte, r randyExample, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateExample(dAtA, uint64(key)) v9 := r.Int63() if r.Intn(2) == 0 { v9 *= -1 } dAtA = encodeVarintPopulateExample(dAtA, uint64(v9)) case 1: dAtA = encodeVarintPopulateExample(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateExample(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateExample(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateExample(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateExample(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *A) Size() (n int) { var l int _ = l l = len(m.Description) n += 1 + l + sovExample(uint64(l)) n += 1 + sovExample(uint64(m.Number)) l = m.Id.Size() n += 1 + l + sovExample(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *B) Size() (n int) { var l int _ = l l = m.A.Size() n += 1 + l + sovExample(uint64(l)) if len(m.G) > 0 { for _, e := range m.G { l = e.Size() n += 1 + l + sovExample(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *C) Size() (n int) { var l int _ = l if m.MySize != nil { n += 1 + sovExample(uint64(*m.MySize)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *U) Size() (n int) { var l int _ = l if m.A != nil { l = m.A.Size() n += 1 + l + sovExample(uint64(l)) } if m.B != nil { l = m.B.Size() n += 1 + l + sovExample(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *E) Size() (n int) { var l int _ = l if m.XXX_extensions != nil { n += len(m.XXX_extensions) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *R) Size() (n int) { var l int _ = l if m.Recognized != nil { n += 1 + sovExample(uint64(*m.Recognized)) } return n } func (m *CastType) Size() (n int) { var l int _ = l if m.Int32 != nil { n += 1 + sovExample(uint64(*m.Int32)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovExample(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozExample(x uint64) (n int) { return sovExample(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *A) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&A{`, `Description:` + fmt.Sprintf("%v", this.Description) + `,`, `Number:` + fmt.Sprintf("%v", this.Number) + `,`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *B) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&B{`, `A:` + strings.Replace(strings.Replace(this.A.String(), "A", "A", 1), `&`, ``, 1) + `,`, `G:` + fmt.Sprintf("%v", this.G) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *C) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&C{`, `MySize:` + valueToStringExample(this.MySize) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *U) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&U{`, `A:` + strings.Replace(fmt.Sprintf("%v", this.A), "A", "A", 1) + `,`, `B:` + strings.Replace(fmt.Sprintf("%v", this.B), "B", "B", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *E) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&E{`, `XXX_extensions:` + github_com_gogo_protobuf_proto.StringFromExtensionsBytes(this.XXX_extensions) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *R) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&R{`, `Recognized:` + valueToStringExample(this.Recognized) + `,`, `}`, }, "") return s } func (this *CastType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CastType{`, `Int32:` + valueToStringExample(this.Int32) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringExample(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (this *U) GetValue() interface{} { if this.A != nil { return this.A } if this.B != nil { return this.B } return nil } func (this *U) SetValue(value interface{}) bool { switch vt := value.(type) { case *A: this.A = vt case *B: this.B = vt default: return false } return true } func (m *A) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: A: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: A: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthExample } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Description = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Number", wireType) } m.Number = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Number |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthExample } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Id.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipExample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthExample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *B) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: B: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: B: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field A", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthExample } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.A.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field G", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthExample } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.G = append(m.G, v) if err := m.G[len(m.G)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipExample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthExample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *C) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: C: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: C: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field MySize", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.MySize = &v default: iNdEx = preIndex skippy, err := skipExample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthExample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *U) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: U: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: U: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field A", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthExample } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.A == nil { m.A = &A{} } if err := m.A.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthExample } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.B == nil { m.B = &B{} } if err := m.B.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipExample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthExample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *E) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: E: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: E: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: if (fieldNum >= 1) && (fieldNum < 536870912) { var sizeOfWire int for { sizeOfWire++ wire >>= 7 if wire == 0 { break } } iNdEx -= sizeOfWire skippy, err := skipExample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthExample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } github_com_gogo_protobuf_proto.AppendExtension(m, int32(fieldNum), dAtA[iNdEx:iNdEx+skippy]) iNdEx += skippy } else { iNdEx = preIndex skippy, err := skipExample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthExample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *R) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: R: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: R: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Recognized", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Recognized = &v default: iNdEx = preIndex skippy, err := skipExample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthExample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CastType) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CastType: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CastType: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int32", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Int32 = &v default: iNdEx = preIndex skippy, err := skipExample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthExample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipExample(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowExample } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowExample } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowExample } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthExample } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowExample } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipExample(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthExample = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowExample = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("example.proto", fileDescriptorExample) } var fileDescriptorExample = []byte{ // 425 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0x41, 0x6b, 0x13, 0x41, 0x14, 0xc7, 0xf3, 0x36, 0xdb, 0xba, 0x7d, 0x6d, 0x41, 0x46, 0x0a, 0x41, 0x64, 0x26, 0xac, 0x20, 0xb1, 0xd6, 0x0d, 0x46, 0x41, 0xd9, 0x5b, 0xa6, 0x4a, 0xc9, 0x41, 0x0f, 0xa3, 0xf9, 0x00, 0x4d, 0x32, 0xc6, 0x01, 0xb3, 0x13, 0xb2, 0xb3, 0x60, 0x73, 0xda, 0xa3, 0x37, 0xbf, 0x42, 0xbd, 0xf5, 0x23, 0x78, 0xf4, 0x98, 0x63, 0x8e, 0xe2, 0x61, 0x69, 0xe6, 0x13, 0xf4, 0x28, 0x9e, 0x64, 0xa6, 0x41, 0x02, 0x62, 0x6f, 0xfb, 0x7e, 0xef, 0xed, 0xff, 0xff, 0x63, 0x70, 0x5f, 0x7e, 0x3a, 0x9d, 0x4c, 0x3f, 0xca, 0x64, 0x3a, 0xd3, 0x46, 0x93, 0xd0, 0xc8, 0xdc, 0xdc, 0x7d, 0x3c, 0x56, 0xe6, 0x43, 0x31, 0x48, 0x86, 0x7a, 0xd2, 0x1e, 0xeb, 0xb1, 0x6e, 0xfb, 0xe5, 0xa0, 0x78, 0xef, 0x27, 0x3f, 0xf8, 0xaf, 0xeb, 0x9f, 0xe2, 0x2f, 0x80, 0xd0, 0x25, 0x0f, 0x70, 0xf7, 0xa5, 0xcc, 0x87, 0x33, 0x35, 0x35, 0x4a, 0x67, 0x0d, 0x68, 0x42, 0x6b, 0x87, 0x87, 0x8b, 0x8a, 0xd5, 0xc4, 0xe6, 0x82, 0xdc, 0xc3, 0xed, 0x37, 0xc5, 0x64, 0x20, 0x67, 0x8d, 0xa0, 0x09, 0xad, 0xfa, 0xfa, 0x64, 0xcd, 0x48, 0x8a, 0x41, 0x6f, 0xd4, 0xa8, 0x37, 0xa1, 0xb5, 0xc7, 0x0f, 0xdd, 0xe6, 0x67, 0xc5, 0xe2, 0xff, 0xea, 0x38, 0xdb, 0xa4, 0x5f, 0xa8, 0x91, 0x08, 0x7a, 0xa3, 0x34, 0xfa, 0x7c, 0xce, 0x6a, 0x17, 0xe7, 0x0c, 0xe2, 0x0c, 0x81, 0x13, 0x86, 0xd0, 0xf5, 0x1a, 0xbb, 0x9d, 0x5b, 0x89, 0xbf, 0xec, 0xf2, 0xc8, 0x45, 0x2e, 0x2b, 0x06, 0x02, 0xba, 0x84, 0x23, 0x9c, 0x34, 0x82, 0x66, 0xbd, 0xb5, 0xc7, 0x9f, 0xad, 0xab, 0x8e, 0x6e, 0xac, 0x6a, 0x0f, 0x8b, 0xdc, 0xe8, 0x49, 0xd2, 0x57, 0x99, 0x79, 0xd2, 0x79, 0x21, 0xe0, 0x24, 0x0d, 0xaf, 0x5c, 0xdf, 0x7d, 0x84, 0x63, 0x42, 0x31, 0xcc, 0xd5, 0x5c, 0xfa, 0xca, 0x3a, 0x47, 0x5b, 0xb1, 0xed, 0xd7, 0x67, 0x6f, 0xd5, 0x5c, 0x0a, 0xcf, 0xe3, 0xe7, 0x08, 0x7d, 0x72, 0xf0, 0xaf, 0x94, 0x53, 0x39, 0x40, 0xe0, 0xfe, 0x3d, 0xfe, 0x62, 0x2e, 0x80, 0xa7, 0xe1, 0xc2, 0xa5, 0xdf, 0x41, 0x78, 0x75, 0x18, 0x45, 0x70, 0xbb, 0x2c, 0xcb, 0x32, 0x48, 0xc3, 0xc5, 0x57, 0x56, 0x8b, 0x1f, 0x22, 0x08, 0x42, 0x11, 0x67, 0x72, 0xa8, 0xc7, 0x99, 0x9a, 0xcb, 0x91, 0x8f, 0xdd, 0x17, 0x1b, 0x24, 0x0d, 0x97, 0xee, 0xf4, 0x11, 0x46, 0xc7, 0xa7, 0xb9, 0x79, 0x77, 0x36, 0x95, 0x84, 0xe1, 0x56, 0x2f, 0x33, 0x4f, 0x3b, 0x6b, 0xcb, 0x9d, 0xdf, 0x15, 0xdb, 0x52, 0x0e, 0x88, 0x6b, 0xce, 0x8f, 0x7e, 0xac, 0x68, 0xed, 0x72, 0x45, 0xe1, 0x6a, 0x45, 0xe1, 0xd7, 0x8a, 0x42, 0x69, 0x29, 0x5c, 0x58, 0x0a, 0xdf, 0x2c, 0x85, 0xef, 0x96, 0xc2, 0xc2, 0x52, 0x58, 0x5a, 0x0a, 0x97, 0x96, 0xc2, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x71, 0x9d, 0xd3, 0x01, 0x3f, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/example/example.proto000066400000000000000000000057121317075173200225040ustar00rootroot00000000000000// 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 test; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.gostring_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.stringer_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.unmarshaler_all) = true; message A { option (gogoproto.face) = true; option (gogoproto.goproto_getters) = false; optional string Description = 1 [(gogoproto.nullable) = false]; optional int64 Number = 2 [(gogoproto.nullable) = false]; optional bytes Id = 3 [(gogoproto.customtype) = "github.com/gogo/protobuf/test.Uuid", (gogoproto.nullable) = false]; } message B { option (gogoproto.description) = true; optional A A = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; repeated bytes G = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } message C { optional int64 size = 1 [(gogoproto.customname) = "MySize"]; } message U { option (gogoproto.onlyone) = true; optional A A = 1; optional B B = 2; } message E { option (gogoproto.goproto_extensions_map) = false; extensions 1 to max; } message R { option (gogoproto.goproto_unrecognized) = false; optional uint32 recognized = 1; } message CastType { optional int64 Int32 = 1 [(gogoproto.casttype)="int32"]; } golang-gogoprotobuf-0.5/test/example/example_test.go000066400000000000000000000030161317075173200230000ustar00rootroot00000000000000// 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. package test import "testing" func TestGetterExists(t *testing.T) { _ = (&CastType{}).GetInt32() } golang-gogoprotobuf-0.5/test/example/examplepb_test.go000066400000000000000000001344571317075173200233400ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: example.proto /* Package test is a generated protocol buffer package. It is generated from these files: example.proto It has these top-level messages: A B C U E R CastType */ package test import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestAProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*A, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedA(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedA(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &A{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestBProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &B{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestBMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &B{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkBProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*B, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedB(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkBProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedB(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &B{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &C{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &C{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*C, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedC(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedC(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &C{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &U{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &U{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*U, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedU(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedU(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &U{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestEProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedE(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &E{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestEMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedE(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &E{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkEProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*E, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedE(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkEProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedE(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &E{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedR(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &R{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestRMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedR(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &R{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkRProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*R, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedR(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedR(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &R{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCastTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CastType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCastTypeMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastType(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CastType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCastTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CastType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCastType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCastTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCastType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CastType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &A{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestBJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &B{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &C{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &U{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestEJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedE(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &E{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedR(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &R{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCastTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CastType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &A{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &A{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &B{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &B{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &C{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &C{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &U{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &U{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestEProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedE(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &E{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestEProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedE(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &E{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedR(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &R{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedR(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &R{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CastType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCastTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CastType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestExampleDescription(t *testing.T) { ExampleDescription() } func TestAVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestBVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedB(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &B{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedC(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &C{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedU(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &U{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestEVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedE(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &E{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedR(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &R{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCastTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CastType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestBGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedB(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedC(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedU(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestEGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedE(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestRGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedR(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCastTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestASize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkASize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*A, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedA(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestBSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkBSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*B, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedB(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*C, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedC(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*U, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedU(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestESize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedE(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkESize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*E, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedE(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedR(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*R, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedR(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCastTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCastType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCastTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CastType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCastType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestBStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedB(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedC(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedU(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestEStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedE(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestRStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedR(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCastTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCastType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedU(popr, true) v := p.GetValue() msg := &U{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/extension_test.go000066400000000000000000000126301317075173200217300ustar00rootroot00000000000000// 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. package test import ( "github.com/gogo/protobuf/proto" "math" math_rand "math/rand" "testing" "time" ) //func SetRawExtension(base extendableProto, id int32, b []byte) { //func HasExtension(pb extendableProto, extension *ExtensionDesc) bool { //func ClearExtension(pb extendableProto, extension *ExtensionDesc) { //func GetExtension(pb extendableProto, extension *ExtensionDesc) (interface{}, error) { //func GetExtensions(pb Message, es []*ExtensionDesc) (extensions []interface{}, err error) { //func SetExtension(pb extendableProto, extension *ExtensionDesc, value interface{}) error { type extendable interface { proto.Message ExtensionRangeArray() []proto.ExtensionRange } func check(t *testing.T, m extendable, fieldA float64, ext *proto.ExtensionDesc) { if !proto.HasExtension(m, ext) { t.Fatalf("expected extension to be set") } fieldA2Interface, err := proto.GetExtension(m, ext) if err != nil { panic(err) } fieldA2 := fieldA2Interface.(*float64) if fieldA != *fieldA2 { t.Fatalf("Expected %f got %f", fieldA, *fieldA2) } fieldA3Interface, err := proto.GetUnsafeExtension(m, ext.Field) if err != nil { panic(err) } fieldA3 := fieldA3Interface.(*float64) if fieldA != *fieldA3 { t.Fatalf("Expected %f got %f", fieldA, *fieldA3) } proto.ClearExtension(m, ext) if proto.HasExtension(m, ext) { t.Fatalf("expected extension to be cleared") } } var fieldA float64 var fieldABytes []byte var extr = math_rand.New(math_rand.NewSource(time.Now().UnixNano())) func init() { fieldA = float64(1.1) fieldABits := math.Float64bits(fieldA) x := uint64(uint32(100)<<3 | uint32(proto.WireFixed64)) fieldABytes = encodeVarintPopulateThetest(nil, x) fieldABytes = append(fieldABytes, uint8(fieldABits)) fieldABytes = append(fieldABytes, uint8(fieldABits>>8)) fieldABytes = append(fieldABytes, uint8(fieldABits>>16)) fieldABytes = append(fieldABytes, uint8(fieldABits>>24)) fieldABytes = append(fieldABytes, uint8(fieldABits>>32)) fieldABytes = append(fieldABytes, uint8(fieldABits>>40)) fieldABytes = append(fieldABytes, uint8(fieldABits>>48)) fieldABytes = append(fieldABytes, uint8(fieldABits>>56)) } func TestExtensionsMyExtendable(t *testing.T) { m := NewPopulatedMyExtendable(extr, false) err := proto.SetExtension(m, E_FieldA, &fieldA) if err != nil { panic(err) } check(t, m, fieldA, E_FieldA) proto.SetRawExtension(m, 100, fieldABytes) check(t, m, fieldA, E_FieldA) } func TestExtensionsNoExtensionsMapSetExtension(t *testing.T) { m := NewPopulatedNoExtensionsMap(extr, false) err := proto.SetExtension(m, E_FieldA1, &fieldA) if err != nil { panic(err) } check(t, m, fieldA, E_FieldA1) } func TestExtensionsNoExtensionsMapSetRawExtension(t *testing.T) { m := NewPopulatedNoExtensionsMap(extr, false) proto.SetRawExtension(m, 100, fieldABytes) check(t, m, fieldA, E_FieldA1) } func TestUnsafeExtension(t *testing.T) { m := NewPopulatedMyExtendable(extr, false) err := proto.SetUnsafeExtension(m, E_FieldA.Field, &fieldA) if err != nil { panic(err) } check(t, m, fieldA, E_FieldA) } //See another version of this test in proto/extensions_test.go func TestGetExtensionStability(t *testing.T) { check := func(m *NoExtensionsMap) bool { ext1, err := proto.GetExtension(m, E_FieldB1) if err != nil { t.Fatalf("GetExtension() failed: %s", err) } ext2, err := proto.GetExtension(m, E_FieldB1) if err != nil { t.Fatalf("GetExtension() failed: %s", err) } return ext1.(*NinOptNative).Equal(ext2) } msg := &NoExtensionsMap{Field1: proto.Int64(2)} ext0 := &NinOptNative{Field1: proto.Float64(1)} if err := proto.SetExtension(msg, E_FieldB1, ext0); err != nil { t.Fatalf("Could not set ext1: %s", ext0) } if !check(msg) { t.Errorf("GetExtension() not stable before marshaling") } bb, err := proto.Marshal(msg) if err != nil { t.Fatalf("Marshal() failed: %s", err) } msg1 := &NoExtensionsMap{} err = proto.Unmarshal(bb, msg1) if err != nil { t.Fatalf("Unmarshal() failed: %s", err) } if !check(msg1) { t.Errorf("GetExtension() not stable after unmarshaling") } } golang-gogoprotobuf-0.5/test/filedotname/000077500000000000000000000000001317075173200206135ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/filedotname/Makefile000066400000000000000000000030411317075173200222510ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2016, 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=. --proto_path=../../../../../:../../protobuf/:. file.dot.proto golang-gogoprotobuf-0.5/test/filedotname/file.dot.pb.go000066400000000000000000000765061317075173200232640ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: file.dot.proto /* Package filedotname is a generated protocol buffer package. It is generated from these files: file.dot.proto It has these top-level messages: M */ package filedotname import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type M struct { A *string `protobuf:"bytes,1,opt,name=a" json:"a,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *M) Reset() { *m = M{} } func (*M) ProtoMessage() {} func (*M) Descriptor() ([]byte, []int) { return fileDescriptorFileDot, []int{0} } func init() { proto.RegisterType((*M)(nil), "filedotname.M") } func (this *M) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return FileDotDescription() } func FileDotDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3731 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0xe3, 0xd6, 0x75, 0x16, 0xf8, 0x23, 0x91, 0x87, 0x14, 0x05, 0x41, 0xf2, 0x2e, 0x57, 0x8e, 0xb9, 0xbb, 0xf2, 0x9f, 0x6c, 0x37, 0xda, 0xcc, 0xda, 0xbb, 0x5e, 0x63, 0x9b, 0xb8, 0x14, 0xc5, 0x55, 0xb8, 0x95, 0x44, 0x06, 0x94, 0xe2, 0x75, 0xfa, 0x80, 0x81, 0x80, 0x4b, 0x0a, 0xbb, 0x20, 0x80, 0x00, 0xe0, 0xae, 0xb5, 0xd3, 0x87, 0xed, 0xb8, 0x3f, 0x93, 0xe9, 0xf4, 0xbf, 0x33, 0x4d, 0x5c, 0xc7, 0x6d, 0x33, 0xd3, 0x3a, 0x4d, 0x9a, 0x36, 0x69, 0xda, 0x34, 0xed, 0x53, 0x5e, 0xd2, 0xfa, 0xa9, 0x93, 0xbc, 0xf5, 0xa1, 0x0f, 0x5e, 0xd5, 0x33, 0x75, 0x5b, 0xb7, 0x75, 0x1b, 0x3f, 0x64, 0xc6, 0x2f, 0x99, 0xfb, 0x07, 0x02, 0x24, 0x25, 0x50, 0x99, 0xb1, 0xfd, 0x24, 0xe1, 0xdc, 0xf3, 0x7d, 0x38, 0xf7, 0xdc, 0x73, 0xcf, 0x39, 0xf7, 0x82, 0xf0, 0xf5, 0x2b, 0x70, 0xae, 0xeb, 0x38, 0x5d, 0x0b, 0x5d, 0x70, 0x3d, 0x27, 0x70, 0xf6, 0xfa, 0x9d, 0x0b, 0x06, 0xf2, 0x75, 0xcf, 0x74, 0x03, 0xc7, 0x5b, 0x25, 0x32, 0x69, 0x8e, 0x6a, 0xac, 0x72, 0x8d, 0xe5, 0x2d, 0x98, 0xbf, 0x66, 0x5a, 0x68, 0x3d, 0x54, 0x6c, 0xa3, 0x40, 0xba, 0x02, 0x99, 0x8e, 0x69, 0xa1, 0xb2, 0x70, 0x2e, 0xbd, 0x52, 0xb8, 0xf8, 0xc8, 0xea, 0x10, 0x68, 0x35, 0x8e, 0x68, 0x61, 0xb1, 0x42, 0x10, 0xcb, 0x6f, 0x65, 0x60, 0x61, 0xcc, 0xa8, 0x24, 0x41, 0xc6, 0xd6, 0x7a, 0x98, 0x51, 0x58, 0xc9, 0x2b, 0xe4, 0x7f, 0xa9, 0x0c, 0x33, 0xae, 0xa6, 0xdf, 0xd2, 0xba, 0xa8, 0x9c, 0x22, 0x62, 0xfe, 0x28, 0x55, 0x00, 0x0c, 0xe4, 0x22, 0xdb, 0x40, 0xb6, 0x7e, 0x50, 0x4e, 0x9f, 0x4b, 0xaf, 0xe4, 0x95, 0x88, 0x44, 0x7a, 0x0a, 0xe6, 0xdd, 0xfe, 0x9e, 0x65, 0xea, 0x6a, 0x44, 0x0d, 0xce, 0xa5, 0x57, 0xb2, 0x8a, 0x48, 0x07, 0xd6, 0x07, 0xca, 0x8f, 0xc3, 0xdc, 0x1d, 0xa4, 0xdd, 0x8a, 0xaa, 0x16, 0x88, 0x6a, 0x09, 0x8b, 0x23, 0x8a, 0x35, 0x28, 0xf6, 0x90, 0xef, 0x6b, 0x5d, 0xa4, 0x06, 0x07, 0x2e, 0x2a, 0x67, 0xc8, 0xec, 0xcf, 0x8d, 0xcc, 0x7e, 0x78, 0xe6, 0x05, 0x86, 0xda, 0x39, 0x70, 0x91, 0x54, 0x85, 0x3c, 0xb2, 0xfb, 0x3d, 0xca, 0x90, 0x3d, 0xc2, 0x7f, 0x75, 0xbb, 0xdf, 0x1b, 0x66, 0xc9, 0x61, 0x18, 0xa3, 0x98, 0xf1, 0x91, 0x77, 0xdb, 0xd4, 0x51, 0x79, 0x9a, 0x10, 0x3c, 0x3e, 0x42, 0xd0, 0xa6, 0xe3, 0xc3, 0x1c, 0x1c, 0x27, 0xd5, 0x20, 0x8f, 0x5e, 0x0a, 0x90, 0xed, 0x9b, 0x8e, 0x5d, 0x9e, 0x21, 0x24, 0x8f, 0x8e, 0x59, 0x45, 0x64, 0x19, 0xc3, 0x14, 0x03, 0x9c, 0x74, 0x19, 0x66, 0x1c, 0x37, 0x30, 0x1d, 0xdb, 0x2f, 0xe7, 0xce, 0x09, 0x2b, 0x85, 0x8b, 0x1f, 0x1b, 0x1b, 0x08, 0x4d, 0xaa, 0xa3, 0x70, 0x65, 0xa9, 0x01, 0xa2, 0xef, 0xf4, 0x3d, 0x1d, 0xa9, 0xba, 0x63, 0x20, 0xd5, 0xb4, 0x3b, 0x4e, 0x39, 0x4f, 0x08, 0xce, 0x8e, 0x4e, 0x84, 0x28, 0xd6, 0x1c, 0x03, 0x35, 0xec, 0x8e, 0xa3, 0x94, 0xfc, 0xd8, 0xb3, 0x74, 0x0a, 0xa6, 0xfd, 0x03, 0x3b, 0xd0, 0x5e, 0x2a, 0x17, 0x49, 0x84, 0xb0, 0xa7, 0xe5, 0xbf, 0x9f, 0x86, 0xb9, 0x49, 0x42, 0xec, 0x2a, 0x64, 0x3b, 0x78, 0x96, 0xe5, 0xd4, 0x49, 0x7c, 0x40, 0x31, 0x71, 0x27, 0x4e, 0xff, 0x94, 0x4e, 0xac, 0x42, 0xc1, 0x46, 0x7e, 0x80, 0x0c, 0x1a, 0x11, 0xe9, 0x09, 0x63, 0x0a, 0x28, 0x68, 0x34, 0xa4, 0x32, 0x3f, 0x55, 0x48, 0xdd, 0x80, 0xb9, 0xd0, 0x24, 0xd5, 0xd3, 0xec, 0x2e, 0x8f, 0xcd, 0x0b, 0x49, 0x96, 0xac, 0xd6, 0x39, 0x4e, 0xc1, 0x30, 0xa5, 0x84, 0x62, 0xcf, 0xd2, 0x3a, 0x80, 0x63, 0x23, 0xa7, 0xa3, 0x1a, 0x48, 0xb7, 0xca, 0xb9, 0x23, 0xbc, 0xd4, 0xc4, 0x2a, 0x23, 0x5e, 0x72, 0xa8, 0x54, 0xb7, 0xa4, 0xe7, 0x06, 0xa1, 0x36, 0x73, 0x44, 0xa4, 0x6c, 0xd1, 0x4d, 0x36, 0x12, 0x6d, 0xbb, 0x50, 0xf2, 0x10, 0x8e, 0x7b, 0x64, 0xb0, 0x99, 0xe5, 0x89, 0x11, 0xab, 0x89, 0x33, 0x53, 0x18, 0x8c, 0x4e, 0x6c, 0xd6, 0x8b, 0x3e, 0x4a, 0x0f, 0x43, 0x28, 0x50, 0x49, 0x58, 0x01, 0xc9, 0x42, 0x45, 0x2e, 0xdc, 0xd6, 0x7a, 0x68, 0xe9, 0x2e, 0x94, 0xe2, 0xee, 0x91, 0x16, 0x21, 0xeb, 0x07, 0x9a, 0x17, 0x90, 0x28, 0xcc, 0x2a, 0xf4, 0x41, 0x12, 0x21, 0x8d, 0x6c, 0x83, 0x64, 0xb9, 0xac, 0x82, 0xff, 0x95, 0x7e, 0x6e, 0x30, 0xe1, 0x34, 0x99, 0xf0, 0x63, 0xa3, 0x2b, 0x1a, 0x63, 0x1e, 0x9e, 0xf7, 0xd2, 0xb3, 0x30, 0x1b, 0x9b, 0xc0, 0xa4, 0xaf, 0x5e, 0xfe, 0x45, 0x78, 0x60, 0x2c, 0xb5, 0x74, 0x03, 0x16, 0xfb, 0xb6, 0x69, 0x07, 0xc8, 0x73, 0x3d, 0x84, 0x23, 0x96, 0xbe, 0xaa, 0xfc, 0xef, 0x33, 0x47, 0xc4, 0xdc, 0x6e, 0x54, 0x9b, 0xb2, 0x28, 0x0b, 0xfd, 0x51, 0xe1, 0x93, 0xf9, 0xdc, 0xdb, 0x33, 0xe2, 0xbd, 0x7b, 0xf7, 0xee, 0xa5, 0x96, 0xbf, 0x38, 0x0d, 0x8b, 0xe3, 0xf6, 0xcc, 0xd8, 0xed, 0x7b, 0x0a, 0xa6, 0xed, 0x7e, 0x6f, 0x0f, 0x79, 0xc4, 0x49, 0x59, 0x85, 0x3d, 0x49, 0x55, 0xc8, 0x5a, 0xda, 0x1e, 0xb2, 0xca, 0x99, 0x73, 0xc2, 0x4a, 0xe9, 0xe2, 0x53, 0x13, 0xed, 0xca, 0xd5, 0x4d, 0x0c, 0x51, 0x28, 0x52, 0xfa, 0x14, 0x64, 0x58, 0x8a, 0xc6, 0x0c, 0x4f, 0x4e, 0xc6, 0x80, 0xf7, 0x92, 0x42, 0x70, 0xd2, 0x83, 0x90, 0xc7, 0x7f, 0x69, 0x6c, 0x4c, 0x13, 0x9b, 0x73, 0x58, 0x80, 0xe3, 0x42, 0x5a, 0x82, 0x1c, 0xd9, 0x26, 0x06, 0xe2, 0xa5, 0x2d, 0x7c, 0xc6, 0x81, 0x65, 0xa0, 0x8e, 0xd6, 0xb7, 0x02, 0xf5, 0xb6, 0x66, 0xf5, 0x11, 0x09, 0xf8, 0xbc, 0x52, 0x64, 0xc2, 0xcf, 0x62, 0x99, 0x74, 0x16, 0x0a, 0x74, 0x57, 0x99, 0xb6, 0x81, 0x5e, 0x22, 0xd9, 0x33, 0xab, 0xd0, 0x8d, 0xd6, 0xc0, 0x12, 0xfc, 0xfa, 0x9b, 0xbe, 0x63, 0xf3, 0xd0, 0x24, 0xaf, 0xc0, 0x02, 0xf2, 0xfa, 0x67, 0x87, 0x13, 0xf7, 0x43, 0xe3, 0xa7, 0x37, 0x1c, 0x53, 0xcb, 0xdf, 0x49, 0x41, 0x86, 0xe4, 0x8b, 0x39, 0x28, 0xec, 0xbc, 0xd8, 0xaa, 0xab, 0xeb, 0xcd, 0xdd, 0xb5, 0xcd, 0xba, 0x28, 0x48, 0x25, 0x00, 0x22, 0xb8, 0xb6, 0xd9, 0xac, 0xee, 0x88, 0xa9, 0xf0, 0xb9, 0xb1, 0xbd, 0x73, 0xf9, 0x19, 0x31, 0x1d, 0x02, 0x76, 0xa9, 0x20, 0x13, 0x55, 0x78, 0xfa, 0xa2, 0x98, 0x95, 0x44, 0x28, 0x52, 0x82, 0xc6, 0x8d, 0xfa, 0xfa, 0xe5, 0x67, 0xc4, 0xe9, 0xb8, 0xe4, 0xe9, 0x8b, 0xe2, 0x8c, 0x34, 0x0b, 0x79, 0x22, 0x59, 0x6b, 0x36, 0x37, 0xc5, 0x5c, 0xc8, 0xd9, 0xde, 0x51, 0x1a, 0xdb, 0x1b, 0x62, 0x3e, 0xe4, 0xdc, 0x50, 0x9a, 0xbb, 0x2d, 0x11, 0x42, 0x86, 0xad, 0x7a, 0xbb, 0x5d, 0xdd, 0xa8, 0x8b, 0x85, 0x50, 0x63, 0xed, 0xc5, 0x9d, 0x7a, 0x5b, 0x2c, 0xc6, 0xcc, 0x7a, 0xfa, 0xa2, 0x38, 0x1b, 0xbe, 0xa2, 0xbe, 0xbd, 0xbb, 0x25, 0x96, 0xa4, 0x79, 0x98, 0xa5, 0xaf, 0xe0, 0x46, 0xcc, 0x0d, 0x89, 0x2e, 0x3f, 0x23, 0x8a, 0x03, 0x43, 0x28, 0xcb, 0x7c, 0x4c, 0x70, 0xf9, 0x19, 0x51, 0x5a, 0xae, 0x41, 0x96, 0x44, 0x97, 0x24, 0x41, 0x69, 0xb3, 0xba, 0x56, 0xdf, 0x54, 0x9b, 0xad, 0x9d, 0x46, 0x73, 0xbb, 0xba, 0x29, 0x0a, 0x03, 0x99, 0x52, 0xff, 0xcc, 0x6e, 0x43, 0xa9, 0xaf, 0x8b, 0xa9, 0xa8, 0xac, 0x55, 0xaf, 0xee, 0xd4, 0xd7, 0xc5, 0xf4, 0xb2, 0x0e, 0x8b, 0xe3, 0xf2, 0xe4, 0xd8, 0x9d, 0x11, 0x59, 0xe2, 0xd4, 0x11, 0x4b, 0x4c, 0xb8, 0x46, 0x96, 0xf8, 0x2b, 0x02, 0x2c, 0x8c, 0xa9, 0x15, 0x63, 0x5f, 0xf2, 0x3c, 0x64, 0x69, 0x88, 0xd2, 0xea, 0xf9, 0xc4, 0xd8, 0xa2, 0x43, 0x02, 0x76, 0xa4, 0x82, 0x12, 0x5c, 0xb4, 0x83, 0x48, 0x1f, 0xd1, 0x41, 0x60, 0x8a, 0x11, 0x23, 0x5f, 0x16, 0xa0, 0x7c, 0x14, 0x77, 0x42, 0xa2, 0x48, 0xc5, 0x12, 0xc5, 0xd5, 0x61, 0x03, 0xce, 0x1f, 0x3d, 0x87, 0x11, 0x2b, 0x5e, 0x17, 0xe0, 0xd4, 0xf8, 0x46, 0x6b, 0xac, 0x0d, 0x9f, 0x82, 0xe9, 0x1e, 0x0a, 0xf6, 0x1d, 0xde, 0x6c, 0x3c, 0x36, 0xa6, 0x84, 0xe1, 0xe1, 0x61, 0x5f, 0x31, 0x54, 0xb4, 0x06, 0xa6, 0x8f, 0xea, 0x96, 0xa8, 0x35, 0x23, 0x96, 0x7e, 0x21, 0x05, 0x0f, 0x8c, 0x25, 0x1f, 0x6b, 0xe8, 0x43, 0x00, 0xa6, 0xed, 0xf6, 0x03, 0xda, 0x50, 0xd0, 0xfc, 0x94, 0x27, 0x12, 0xb2, 0xf7, 0x71, 0xee, 0xe9, 0x07, 0xe1, 0x78, 0x9a, 0x8c, 0x03, 0x15, 0x11, 0x85, 0x2b, 0x03, 0x43, 0x33, 0xc4, 0xd0, 0xca, 0x11, 0x33, 0x1d, 0xa9, 0xd5, 0x9f, 0x00, 0x51, 0xb7, 0x4c, 0x64, 0x07, 0xaa, 0x1f, 0x78, 0x48, 0xeb, 0x99, 0x76, 0x97, 0x24, 0xe0, 0x9c, 0x9c, 0xed, 0x68, 0x96, 0x8f, 0x94, 0x39, 0x3a, 0xdc, 0xe6, 0xa3, 0x18, 0x41, 0x6a, 0x9c, 0x17, 0x41, 0x4c, 0xc7, 0x10, 0x74, 0x38, 0x44, 0x2c, 0x7f, 0x3b, 0x07, 0x85, 0x48, 0x5b, 0x2a, 0x9d, 0x87, 0xe2, 0x4d, 0xed, 0xb6, 0xa6, 0xf2, 0xa3, 0x06, 0xf5, 0x44, 0x01, 0xcb, 0x5a, 0xec, 0xb8, 0xf1, 0x09, 0x58, 0x24, 0x2a, 0x4e, 0x3f, 0x40, 0x9e, 0xaa, 0x5b, 0x9a, 0xef, 0x13, 0xa7, 0xe5, 0x88, 0xaa, 0x84, 0xc7, 0x9a, 0x78, 0xa8, 0xc6, 0x47, 0xa4, 0x4b, 0xb0, 0x40, 0x10, 0xbd, 0xbe, 0x15, 0x98, 0xae, 0x85, 0x54, 0x7c, 0xf8, 0xf1, 0x49, 0x22, 0x0e, 0x2d, 0x9b, 0xc7, 0x1a, 0x5b, 0x4c, 0x01, 0x5b, 0xe4, 0x4b, 0xeb, 0xf0, 0x10, 0x81, 0x75, 0x91, 0x8d, 0x3c, 0x2d, 0x40, 0x2a, 0xfa, 0x7c, 0x5f, 0xb3, 0x7c, 0x55, 0xb3, 0x0d, 0x75, 0x5f, 0xf3, 0xf7, 0xcb, 0x8b, 0x98, 0x60, 0x2d, 0x55, 0x16, 0x94, 0x33, 0x58, 0x71, 0x83, 0xe9, 0xd5, 0x89, 0x5a, 0xd5, 0x36, 0x3e, 0xad, 0xf9, 0xfb, 0x92, 0x0c, 0xa7, 0x08, 0x8b, 0x1f, 0x78, 0xa6, 0xdd, 0x55, 0xf5, 0x7d, 0xa4, 0xdf, 0x52, 0xfb, 0x41, 0xe7, 0x4a, 0xf9, 0xc1, 0xe8, 0xfb, 0x89, 0x85, 0x6d, 0xa2, 0x53, 0xc3, 0x2a, 0xbb, 0x41, 0xe7, 0x8a, 0xd4, 0x86, 0x22, 0x5e, 0x8c, 0x9e, 0x79, 0x17, 0xa9, 0x1d, 0xc7, 0x23, 0x95, 0xa5, 0x34, 0x66, 0x67, 0x47, 0x3c, 0xb8, 0xda, 0x64, 0x80, 0x2d, 0xc7, 0x40, 0x72, 0xb6, 0xdd, 0xaa, 0xd7, 0xd7, 0x95, 0x02, 0x67, 0xb9, 0xe6, 0x78, 0x38, 0xa0, 0xba, 0x4e, 0xe8, 0xe0, 0x02, 0x0d, 0xa8, 0xae, 0xc3, 0xdd, 0x7b, 0x09, 0x16, 0x74, 0x9d, 0xce, 0xd9, 0xd4, 0x55, 0x76, 0x44, 0xf1, 0xcb, 0x62, 0xcc, 0x59, 0xba, 0xbe, 0x41, 0x15, 0x58, 0x8c, 0xfb, 0xd2, 0x73, 0xf0, 0xc0, 0xc0, 0x59, 0x51, 0xe0, 0xfc, 0xc8, 0x2c, 0x87, 0xa1, 0x97, 0x60, 0xc1, 0x3d, 0x18, 0x05, 0x4a, 0xb1, 0x37, 0xba, 0x07, 0xc3, 0xb0, 0x67, 0x61, 0xd1, 0xdd, 0x77, 0x47, 0x71, 0x0b, 0x51, 0x9c, 0xe4, 0xee, 0xbb, 0xc3, 0xc0, 0x47, 0xc9, 0x79, 0xd5, 0x43, 0xba, 0x16, 0x20, 0xa3, 0x7c, 0x3a, 0xaa, 0x1e, 0x19, 0x90, 0x2e, 0x80, 0xa8, 0xeb, 0x2a, 0xb2, 0xb5, 0x3d, 0x0b, 0xa9, 0x9a, 0x87, 0x6c, 0xcd, 0x2f, 0x9f, 0x8d, 0x2a, 0x97, 0x74, 0xbd, 0x4e, 0x46, 0xab, 0x64, 0x50, 0x7a, 0x12, 0xe6, 0x9d, 0xbd, 0x9b, 0x3a, 0x0d, 0x49, 0xd5, 0xf5, 0x50, 0xc7, 0x7c, 0xa9, 0xfc, 0x08, 0xf1, 0xef, 0x1c, 0x1e, 0x20, 0x01, 0xd9, 0x22, 0x62, 0xe9, 0x09, 0x10, 0x75, 0x7f, 0x5f, 0xf3, 0x5c, 0xd2, 0x13, 0xf8, 0xae, 0xa6, 0xa3, 0xf2, 0xa3, 0x54, 0x95, 0xca, 0xb7, 0xb9, 0x18, 0x6f, 0x09, 0xff, 0x8e, 0xd9, 0x09, 0x38, 0xe3, 0xe3, 0x74, 0x4b, 0x10, 0x19, 0x63, 0x5b, 0x01, 0x11, 0xbb, 0x22, 0xf6, 0xe2, 0x15, 0xa2, 0x56, 0x72, 0xf7, 0xdd, 0xe8, 0x7b, 0x1f, 0x86, 0x59, 0xac, 0x39, 0x78, 0xe9, 0x13, 0xb4, 0x9f, 0x71, 0xf7, 0x23, 0x6f, 0xfc, 0xc0, 0x5a, 0xcb, 0x65, 0x19, 0x8a, 0xd1, 0xf8, 0x94, 0xf2, 0x40, 0x23, 0x54, 0x14, 0x70, 0xad, 0xaf, 0x35, 0xd7, 0x71, 0x95, 0xfe, 0x5c, 0x5d, 0x4c, 0xe1, 0x6e, 0x61, 0xb3, 0xb1, 0x53, 0x57, 0x95, 0xdd, 0xed, 0x9d, 0xc6, 0x56, 0x5d, 0x4c, 0x47, 0xdb, 0xd2, 0xef, 0xa7, 0xa0, 0x14, 0x3f, 0x61, 0x48, 0x3f, 0x0b, 0xa7, 0xf9, 0x75, 0x80, 0x8f, 0x02, 0xf5, 0x8e, 0xe9, 0x91, 0x2d, 0xd3, 0xd3, 0x68, 0x87, 0x1d, 0x2e, 0xda, 0x22, 0xd3, 0x6a, 0xa3, 0xe0, 0x05, 0xd3, 0xc3, 0x1b, 0xa2, 0xa7, 0x05, 0xd2, 0x26, 0x9c, 0xb5, 0x1d, 0xd5, 0x0f, 0x34, 0xdb, 0xd0, 0x3c, 0x43, 0x1d, 0x5c, 0xc4, 0xa8, 0x9a, 0xae, 0x23, 0xdf, 0x77, 0x68, 0xa9, 0x0a, 0x59, 0x3e, 0x66, 0x3b, 0x6d, 0xa6, 0x3c, 0xc8, 0xe1, 0x55, 0xa6, 0x3a, 0x14, 0x60, 0xe9, 0xa3, 0x02, 0xec, 0x41, 0xc8, 0xf7, 0x34, 0x57, 0x45, 0x76, 0xe0, 0x1d, 0x90, 0xbe, 0x32, 0xa7, 0xe4, 0x7a, 0x9a, 0x5b, 0xc7, 0xcf, 0x1f, 0x4e, 0x7b, 0xff, 0xaf, 0x69, 0x28, 0x46, 0x7b, 0x4b, 0xdc, 0xaa, 0xeb, 0xa4, 0x8e, 0x08, 0x24, 0xd3, 0x3c, 0x7c, 0x6c, 0x27, 0xba, 0x5a, 0xc3, 0x05, 0x46, 0x9e, 0xa6, 0x1d, 0x9f, 0x42, 0x91, 0xb8, 0xb8, 0xe3, 0xdc, 0x82, 0xe8, 0x29, 0x26, 0xa7, 0xb0, 0x27, 0x69, 0x03, 0xa6, 0x6f, 0xfa, 0x84, 0x7b, 0x9a, 0x70, 0x3f, 0x72, 0x3c, 0xf7, 0xf5, 0x36, 0x21, 0xcf, 0x5f, 0x6f, 0xab, 0xdb, 0x4d, 0x65, 0xab, 0xba, 0xa9, 0x30, 0xb8, 0x74, 0x06, 0x32, 0x96, 0x76, 0xf7, 0x20, 0x5e, 0x8a, 0x88, 0x68, 0x52, 0xc7, 0x9f, 0x81, 0xcc, 0x1d, 0xa4, 0xdd, 0x8a, 0x17, 0x00, 0x22, 0xfa, 0x00, 0x43, 0xff, 0x02, 0x64, 0x89, 0xbf, 0x24, 0x00, 0xe6, 0x31, 0x71, 0x4a, 0xca, 0x41, 0xa6, 0xd6, 0x54, 0x70, 0xf8, 0x8b, 0x50, 0xa4, 0x52, 0xb5, 0xd5, 0xa8, 0xd7, 0xea, 0x62, 0x6a, 0xf9, 0x12, 0x4c, 0x53, 0x27, 0xe0, 0xad, 0x11, 0xba, 0x41, 0x9c, 0x62, 0x8f, 0x8c, 0x43, 0xe0, 0xa3, 0xbb, 0x5b, 0x6b, 0x75, 0x45, 0x4c, 0x45, 0x97, 0xd7, 0x87, 0x62, 0xb4, 0xad, 0xfc, 0x70, 0x62, 0xea, 0x1f, 0x04, 0x28, 0x44, 0xda, 0x44, 0xdc, 0xa0, 0x68, 0x96, 0xe5, 0xdc, 0x51, 0x35, 0xcb, 0xd4, 0x7c, 0x16, 0x14, 0x40, 0x44, 0x55, 0x2c, 0x99, 0x74, 0xd1, 0x3e, 0x14, 0xe3, 0x5f, 0x13, 0x40, 0x1c, 0x6e, 0x31, 0x87, 0x0c, 0x14, 0x3e, 0x52, 0x03, 0x5f, 0x15, 0xa0, 0x14, 0xef, 0x2b, 0x87, 0xcc, 0x3b, 0xff, 0x91, 0x9a, 0xf7, 0x66, 0x0a, 0x66, 0x63, 0xdd, 0xe4, 0xa4, 0xd6, 0x7d, 0x1e, 0xe6, 0x4d, 0x03, 0xf5, 0x5c, 0x27, 0x40, 0xb6, 0x7e, 0xa0, 0x5a, 0xe8, 0x36, 0xb2, 0xca, 0xcb, 0x24, 0x51, 0x5c, 0x38, 0xbe, 0x5f, 0x5d, 0x6d, 0x0c, 0x70, 0x9b, 0x18, 0x26, 0x2f, 0x34, 0xd6, 0xeb, 0x5b, 0xad, 0xe6, 0x4e, 0x7d, 0xbb, 0xf6, 0xa2, 0xba, 0xbb, 0xfd, 0xf3, 0xdb, 0xcd, 0x17, 0xb6, 0x15, 0xd1, 0x1c, 0x52, 0xfb, 0x00, 0xb7, 0x7a, 0x0b, 0xc4, 0x61, 0xa3, 0xa4, 0xd3, 0x30, 0xce, 0x2c, 0x71, 0x4a, 0x5a, 0x80, 0xb9, 0xed, 0xa6, 0xda, 0x6e, 0xac, 0xd7, 0xd5, 0xfa, 0xb5, 0x6b, 0xf5, 0xda, 0x4e, 0x9b, 0x1e, 0xe0, 0x43, 0xed, 0x9d, 0xf8, 0xa6, 0x7e, 0x25, 0x0d, 0x0b, 0x63, 0x2c, 0x91, 0xaa, 0xec, 0xec, 0x40, 0x8f, 0x33, 0x1f, 0x9f, 0xc4, 0xfa, 0x55, 0x5c, 0xf2, 0x5b, 0x9a, 0x17, 0xb0, 0xa3, 0xc6, 0x13, 0x80, 0xbd, 0x64, 0x07, 0x66, 0xc7, 0x44, 0x1e, 0xbb, 0xef, 0xa0, 0x07, 0x8a, 0xb9, 0x81, 0x9c, 0x5e, 0x79, 0xfc, 0x0c, 0x48, 0xae, 0xe3, 0x9b, 0x81, 0x79, 0x1b, 0xa9, 0xa6, 0xcd, 0x2f, 0x47, 0xf0, 0x01, 0x23, 0xa3, 0x88, 0x7c, 0xa4, 0x61, 0x07, 0xa1, 0xb6, 0x8d, 0xba, 0xda, 0x90, 0x36, 0x4e, 0xe0, 0x69, 0x45, 0xe4, 0x23, 0xa1, 0xf6, 0x79, 0x28, 0x1a, 0x4e, 0x1f, 0x77, 0x5d, 0x54, 0x0f, 0xd7, 0x0b, 0x41, 0x29, 0x50, 0x59, 0xa8, 0xc2, 0xfa, 0xe9, 0xc1, 0xad, 0x4c, 0x51, 0x29, 0x50, 0x19, 0x55, 0x79, 0x1c, 0xe6, 0xb4, 0x6e, 0xd7, 0xc3, 0xe4, 0x9c, 0x88, 0x9e, 0x10, 0x4a, 0xa1, 0x98, 0x28, 0x2e, 0x5d, 0x87, 0x1c, 0xf7, 0x03, 0x2e, 0xc9, 0xd8, 0x13, 0xaa, 0x4b, 0x6f, 0xe6, 0x52, 0x2b, 0x79, 0x25, 0x67, 0xf3, 0xc1, 0xf3, 0x50, 0x34, 0x7d, 0x75, 0x70, 0xc9, 0x9c, 0x3a, 0x97, 0x5a, 0xc9, 0x29, 0x05, 0xd3, 0x0f, 0x2f, 0xe8, 0x96, 0x5f, 0x4f, 0x41, 0x29, 0x7e, 0x49, 0x2e, 0xad, 0x43, 0xce, 0x72, 0x74, 0x8d, 0x84, 0x16, 0xfd, 0x42, 0xb3, 0x92, 0x70, 0xaf, 0xbe, 0xba, 0xc9, 0xf4, 0x95, 0x10, 0xb9, 0xf4, 0xcf, 0x02, 0xe4, 0xb8, 0x58, 0x3a, 0x05, 0x19, 0x57, 0x0b, 0xf6, 0x09, 0x5d, 0x76, 0x2d, 0x25, 0x0a, 0x0a, 0x79, 0xc6, 0x72, 0xdf, 0xd5, 0x6c, 0x12, 0x02, 0x4c, 0x8e, 0x9f, 0xf1, 0xba, 0x5a, 0x48, 0x33, 0xc8, 0xf1, 0xc3, 0xe9, 0xf5, 0x90, 0x1d, 0xf8, 0x7c, 0x5d, 0x99, 0xbc, 0xc6, 0xc4, 0xd2, 0x53, 0x30, 0x1f, 0x78, 0x9a, 0x69, 0xc5, 0x74, 0x33, 0x44, 0x57, 0xe4, 0x03, 0xa1, 0xb2, 0x0c, 0x67, 0x38, 0xaf, 0x81, 0x02, 0x4d, 0xdf, 0x47, 0xc6, 0x00, 0x34, 0x4d, 0x6e, 0x60, 0x4f, 0x33, 0x85, 0x75, 0x36, 0xce, 0xb1, 0xcb, 0x3f, 0x14, 0x60, 0x9e, 0x1f, 0x98, 0x8c, 0xd0, 0x59, 0x5b, 0x00, 0x9a, 0x6d, 0x3b, 0x41, 0xd4, 0x5d, 0xa3, 0xa1, 0x3c, 0x82, 0x5b, 0xad, 0x86, 0x20, 0x25, 0x42, 0xb0, 0xd4, 0x03, 0x18, 0x8c, 0x1c, 0xe9, 0xb6, 0xb3, 0x50, 0x60, 0x5f, 0x40, 0xc8, 0x67, 0x34, 0x7a, 0xc4, 0x06, 0x2a, 0xc2, 0x27, 0x2b, 0x69, 0x11, 0xb2, 0x7b, 0xa8, 0x6b, 0xda, 0xec, 0x5e, 0x93, 0x3e, 0xf0, 0xbb, 0xda, 0x4c, 0x78, 0x57, 0xbb, 0x76, 0x03, 0x16, 0x74, 0xa7, 0x37, 0x6c, 0xee, 0x9a, 0x38, 0x74, 0xcc, 0xf7, 0x3f, 0x2d, 0x7c, 0x0e, 0x06, 0x2d, 0xe6, 0x57, 0x52, 0xe9, 0x8d, 0xd6, 0xda, 0xd7, 0x52, 0x4b, 0x1b, 0x14, 0xd7, 0xe2, 0xd3, 0x54, 0x50, 0xc7, 0x42, 0x3a, 0x36, 0x1d, 0x7e, 0xf4, 0x18, 0x7c, 0xbc, 0x6b, 0x06, 0xfb, 0xfd, 0xbd, 0x55, 0xdd, 0xe9, 0x5d, 0xe8, 0x3a, 0x5d, 0x67, 0xf0, 0xd9, 0x10, 0x3f, 0x91, 0x07, 0xf2, 0x1f, 0xfb, 0x74, 0x98, 0x0f, 0xa5, 0x4b, 0x89, 0xdf, 0x19, 0xe5, 0x6d, 0x58, 0x60, 0xca, 0x2a, 0xf9, 0x76, 0x41, 0x8f, 0x10, 0xd2, 0xb1, 0xf7, 0x3f, 0xe5, 0x6f, 0xbd, 0x45, 0x6a, 0xb5, 0x32, 0xcf, 0xa0, 0x78, 0x8c, 0x9e, 0x32, 0x64, 0x05, 0x1e, 0x88, 0xf1, 0xd1, 0x7d, 0x89, 0xbc, 0x04, 0xc6, 0xef, 0x33, 0xc6, 0x85, 0x08, 0x63, 0x9b, 0x41, 0xe5, 0x1a, 0xcc, 0x9e, 0x84, 0xeb, 0x1f, 0x19, 0x57, 0x11, 0x45, 0x49, 0x36, 0x60, 0x8e, 0x90, 0xe8, 0x7d, 0x3f, 0x70, 0x7a, 0x24, 0xe9, 0x1d, 0x4f, 0xf3, 0x4f, 0x6f, 0xd1, 0x8d, 0x52, 0xc2, 0xb0, 0x5a, 0x88, 0x92, 0x65, 0x20, 0x9f, 0x6b, 0x0c, 0xa4, 0x5b, 0x09, 0x0c, 0x6f, 0x30, 0x43, 0x42, 0x7d, 0xf9, 0xb3, 0xb0, 0x88, 0xff, 0x27, 0x39, 0x29, 0x6a, 0x49, 0xf2, 0x6d, 0x57, 0xf9, 0x87, 0x2f, 0xd3, 0xbd, 0xb8, 0x10, 0x12, 0x44, 0x6c, 0x8a, 0xac, 0x62, 0x17, 0x05, 0x01, 0xf2, 0x7c, 0x55, 0xb3, 0xc6, 0x99, 0x17, 0xb9, 0x2e, 0x28, 0x7f, 0xe9, 0x9d, 0xf8, 0x2a, 0x6e, 0x50, 0x64, 0xd5, 0xb2, 0xe4, 0x5d, 0x38, 0x3d, 0x26, 0x2a, 0x26, 0xe0, 0x7c, 0x85, 0x71, 0x2e, 0x8e, 0x44, 0x06, 0xa6, 0x6d, 0x01, 0x97, 0x87, 0x6b, 0x39, 0x01, 0xe7, 0x1f, 0x32, 0x4e, 0x89, 0x61, 0xf9, 0x92, 0x62, 0xc6, 0xeb, 0x30, 0x7f, 0x1b, 0x79, 0x7b, 0x8e, 0xcf, 0xae, 0x68, 0x26, 0xa0, 0x7b, 0x95, 0xd1, 0xcd, 0x31, 0x20, 0xb9, 0xb3, 0xc1, 0x5c, 0xcf, 0x41, 0xae, 0xa3, 0xe9, 0x68, 0x02, 0x8a, 0x2f, 0x33, 0x8a, 0x19, 0xac, 0x8f, 0xa1, 0x55, 0x28, 0x76, 0x1d, 0x56, 0x96, 0x92, 0xe1, 0xaf, 0x31, 0x78, 0x81, 0x63, 0x18, 0x85, 0xeb, 0xb8, 0x7d, 0x0b, 0xd7, 0xac, 0x64, 0x8a, 0x3f, 0xe2, 0x14, 0x1c, 0xc3, 0x28, 0x4e, 0xe0, 0xd6, 0x3f, 0xe6, 0x14, 0x7e, 0xc4, 0x9f, 0xcf, 0x43, 0xc1, 0xb1, 0xad, 0x03, 0xc7, 0x9e, 0xc4, 0x88, 0x3f, 0x61, 0x0c, 0xc0, 0x20, 0x98, 0xe0, 0x2a, 0xe4, 0x27, 0x5d, 0x88, 0x3f, 0x7d, 0x87, 0x6f, 0x0f, 0xbe, 0x02, 0x1b, 0x30, 0xc7, 0x13, 0x94, 0xe9, 0xd8, 0x13, 0x50, 0xfc, 0x19, 0xa3, 0x28, 0x45, 0x60, 0x6c, 0x1a, 0x01, 0xf2, 0x83, 0x2e, 0x9a, 0x84, 0xe4, 0x75, 0x3e, 0x0d, 0x06, 0x61, 0xae, 0xdc, 0x43, 0xb6, 0xbe, 0x3f, 0x19, 0xc3, 0x57, 0xb9, 0x2b, 0x39, 0x06, 0x53, 0xd4, 0x60, 0xb6, 0xa7, 0x79, 0xfe, 0xbe, 0x66, 0x4d, 0xb4, 0x1c, 0x7f, 0xce, 0x38, 0x8a, 0x21, 0x88, 0x79, 0xa4, 0x6f, 0x9f, 0x84, 0xe6, 0x6b, 0xdc, 0x23, 0x11, 0x18, 0xdb, 0x7a, 0x7e, 0x40, 0xee, 0xb3, 0x4e, 0xc2, 0xf6, 0x75, 0xbe, 0xf5, 0x28, 0x76, 0x2b, 0xca, 0x78, 0x15, 0xf2, 0xbe, 0x79, 0x77, 0x22, 0x9a, 0xbf, 0xe0, 0x2b, 0x4d, 0x00, 0x18, 0xfc, 0x22, 0x9c, 0x19, 0x5b, 0x26, 0x26, 0x20, 0xfb, 0x06, 0x23, 0x3b, 0x35, 0xa6, 0x54, 0xb0, 0x94, 0x70, 0x52, 0xca, 0xbf, 0xe4, 0x29, 0x01, 0x0d, 0x71, 0xb5, 0xf0, 0x41, 0xc1, 0xd7, 0x3a, 0x27, 0xf3, 0xda, 0x5f, 0x71, 0xaf, 0x51, 0x6c, 0xcc, 0x6b, 0x3b, 0x70, 0x8a, 0x31, 0x9e, 0x6c, 0x5d, 0xbf, 0xc9, 0x13, 0x2b, 0x45, 0xef, 0xc6, 0x57, 0xf7, 0x17, 0x60, 0x29, 0x74, 0x27, 0xef, 0x48, 0x7d, 0xb5, 0xa7, 0xb9, 0x13, 0x30, 0x7f, 0x8b, 0x31, 0xf3, 0x8c, 0x1f, 0xb6, 0xb4, 0xfe, 0x96, 0xe6, 0x62, 0xf2, 0x1b, 0x50, 0xe6, 0xe4, 0x7d, 0xdb, 0x43, 0xba, 0xd3, 0xb5, 0xcd, 0xbb, 0xc8, 0x98, 0x80, 0xfa, 0xaf, 0x87, 0x96, 0x6a, 0x37, 0x02, 0xc7, 0xcc, 0x0d, 0x10, 0xc3, 0x5e, 0x45, 0x35, 0x7b, 0xae, 0xe3, 0x05, 0x09, 0x8c, 0xdf, 0xe6, 0x2b, 0x15, 0xe2, 0x1a, 0x04, 0x26, 0xd7, 0xa1, 0x44, 0x1e, 0x27, 0x0d, 0xc9, 0xbf, 0x61, 0x44, 0xb3, 0x03, 0x14, 0x4b, 0x1c, 0xba, 0xd3, 0x73, 0x35, 0x6f, 0x92, 0xfc, 0xf7, 0xb7, 0x3c, 0x71, 0x30, 0x08, 0x4b, 0x1c, 0xc1, 0x81, 0x8b, 0x70, 0xb5, 0x9f, 0x80, 0xe1, 0x3b, 0x3c, 0x71, 0x70, 0x0c, 0xa3, 0xe0, 0x0d, 0xc3, 0x04, 0x14, 0x7f, 0xc7, 0x29, 0x38, 0x06, 0x53, 0x7c, 0x66, 0x50, 0x68, 0x3d, 0xd4, 0x35, 0xfd, 0xc0, 0xa3, 0x7d, 0xf0, 0xf1, 0x54, 0xdf, 0x7d, 0x27, 0xde, 0x84, 0x29, 0x11, 0xa8, 0x7c, 0x1d, 0xe6, 0x86, 0x5a, 0x0c, 0x29, 0xe9, 0xb7, 0x1f, 0xe5, 0x5f, 0x7a, 0x8f, 0x25, 0xa3, 0x78, 0x87, 0x21, 0x6f, 0xe2, 0x75, 0x8f, 0xf7, 0x01, 0xc9, 0x64, 0x2f, 0xbf, 0x17, 0x2e, 0x7d, 0xac, 0x0d, 0x90, 0xaf, 0xc1, 0x6c, 0xac, 0x07, 0x48, 0xa6, 0xfa, 0x65, 0x46, 0x55, 0x8c, 0xb6, 0x00, 0xf2, 0x25, 0xc8, 0xe0, 0x7a, 0x9e, 0x0c, 0xff, 0x15, 0x06, 0x27, 0xea, 0xf2, 0x27, 0x21, 0xc7, 0xeb, 0x78, 0x32, 0xf4, 0x57, 0x19, 0x34, 0x84, 0x60, 0x38, 0xaf, 0xe1, 0xc9, 0xf0, 0x5f, 0xe3, 0x70, 0x0e, 0xc1, 0xf0, 0xc9, 0x5d, 0xf8, 0xbd, 0x5f, 0xcf, 0xb0, 0x3c, 0xcc, 0x7d, 0x77, 0x15, 0x66, 0x58, 0xf1, 0x4e, 0x46, 0x7f, 0x81, 0xbd, 0x9c, 0x23, 0xe4, 0x67, 0x21, 0x3b, 0xa1, 0xc3, 0x7f, 0x83, 0x41, 0xa9, 0xbe, 0x5c, 0x83, 0x42, 0xa4, 0x60, 0x27, 0xc3, 0x7f, 0x93, 0xc1, 0xa3, 0x28, 0x6c, 0x3a, 0x2b, 0xd8, 0xc9, 0x04, 0xbf, 0xc5, 0x4d, 0x67, 0x08, 0xec, 0x36, 0x5e, 0xab, 0x93, 0xd1, 0xbf, 0xcd, 0xbd, 0xce, 0x21, 0xf2, 0xf3, 0x90, 0x0f, 0xf3, 0x6f, 0x32, 0xfe, 0x77, 0x18, 0x7e, 0x80, 0xc1, 0x1e, 0x88, 0xe4, 0xff, 0x64, 0x8a, 0xdf, 0xe5, 0x1e, 0x88, 0xa0, 0xf0, 0x36, 0x1a, 0xae, 0xe9, 0xc9, 0x4c, 0xbf, 0xc7, 0xb7, 0xd1, 0x50, 0x49, 0xc7, 0xab, 0x49, 0xd2, 0x60, 0x32, 0xc5, 0xef, 0xf3, 0xd5, 0x24, 0xfa, 0xd8, 0x8c, 0xe1, 0x22, 0x99, 0xcc, 0xf1, 0x07, 0xdc, 0x8c, 0xa1, 0x1a, 0x29, 0xb7, 0x40, 0x1a, 0x2d, 0x90, 0xc9, 0x7c, 0x5f, 0x64, 0x7c, 0xf3, 0x23, 0xf5, 0x51, 0x7e, 0x01, 0x4e, 0x8d, 0x2f, 0x8e, 0xc9, 0xac, 0x5f, 0x7a, 0x6f, 0xe8, 0x38, 0x13, 0xad, 0x8d, 0xf2, 0xce, 0x20, 0xcb, 0x46, 0x0b, 0x63, 0x32, 0xed, 0x2b, 0xef, 0xc5, 0x13, 0x6d, 0xb4, 0x2e, 0xca, 0x55, 0x80, 0x41, 0x4d, 0x4a, 0xe6, 0x7a, 0x95, 0x71, 0x45, 0x40, 0x78, 0x6b, 0xb0, 0x92, 0x94, 0x8c, 0xff, 0x32, 0xdf, 0x1a, 0x0c, 0x81, 0xb7, 0x06, 0xaf, 0x46, 0xc9, 0xe8, 0xd7, 0xf8, 0xd6, 0xe0, 0x10, 0xf9, 0x2a, 0xe4, 0xec, 0xbe, 0x65, 0xe1, 0xd8, 0x92, 0x8e, 0xff, 0x39, 0x53, 0xf9, 0x3f, 0xde, 0x67, 0x60, 0x0e, 0x90, 0x2f, 0x41, 0x16, 0xf5, 0xf6, 0x90, 0x91, 0x84, 0xfc, 0xcf, 0xf7, 0x79, 0x3e, 0xc1, 0xda, 0xf2, 0xf3, 0x00, 0xf4, 0x30, 0x4d, 0xbe, 0x12, 0x25, 0x60, 0xff, 0xeb, 0x7d, 0xf6, 0x4b, 0x89, 0x01, 0x64, 0x40, 0x40, 0x7f, 0x77, 0x71, 0x3c, 0xc1, 0x3b, 0x71, 0x02, 0x72, 0x00, 0x7f, 0x0e, 0x66, 0x6e, 0xfa, 0x8e, 0x1d, 0x68, 0xdd, 0x24, 0xf4, 0x7f, 0x33, 0x34, 0xd7, 0xc7, 0x0e, 0xeb, 0x39, 0x1e, 0x0a, 0xb4, 0xae, 0x9f, 0x84, 0xfd, 0x1f, 0x86, 0x0d, 0x01, 0x18, 0xac, 0x6b, 0x7e, 0x30, 0xc9, 0xbc, 0xff, 0x97, 0x83, 0x39, 0x00, 0x1b, 0x8d, 0xff, 0xbf, 0x85, 0x0e, 0x92, 0xb0, 0xef, 0x72, 0xa3, 0x99, 0xbe, 0xfc, 0x49, 0xc8, 0xe3, 0x7f, 0xe9, 0xaf, 0x87, 0x12, 0xc0, 0xff, 0xc7, 0xc0, 0x03, 0x04, 0x7e, 0xb3, 0x1f, 0x18, 0x81, 0x99, 0xec, 0xec, 0xff, 0x67, 0x2b, 0xcd, 0xf5, 0xe5, 0x2a, 0x14, 0xfc, 0xc0, 0x30, 0xfa, 0xac, 0xa3, 0x49, 0x80, 0xff, 0xe8, 0xfd, 0xf0, 0x90, 0x1b, 0x62, 0xd6, 0xce, 0x8f, 0xbf, 0xac, 0x83, 0x0d, 0x67, 0xc3, 0xa1, 0xd7, 0x74, 0xf0, 0x0d, 0x01, 0x4a, 0x1d, 0xd3, 0x42, 0xab, 0x86, 0x13, 0xb0, 0x6b, 0xb5, 0x02, 0x7e, 0x36, 0x9c, 0x00, 0xaf, 0xf7, 0xd2, 0xc9, 0xae, 0xe4, 0x96, 0xe7, 0x41, 0xd8, 0x92, 0x8a, 0x20, 0x68, 0xec, 0x57, 0x2d, 0x82, 0xb6, 0xb6, 0xf9, 0xc6, 0xfd, 0xca, 0xd4, 0x0f, 0xee, 0x57, 0xa6, 0xfe, 0xe5, 0x7e, 0x65, 0xea, 0xcd, 0xfb, 0x15, 0xe1, 0xed, 0xfb, 0x15, 0xe1, 0xdd, 0xfb, 0x15, 0xe1, 0xc7, 0xf7, 0x2b, 0xc2, 0xbd, 0xc3, 0x8a, 0xf0, 0xd5, 0xc3, 0x8a, 0xf0, 0xcd, 0xc3, 0x8a, 0xf0, 0xdd, 0xc3, 0x8a, 0xf0, 0xbd, 0xc3, 0x8a, 0xf0, 0xc6, 0x61, 0x65, 0xea, 0x07, 0x87, 0x95, 0xa9, 0x37, 0x0f, 0x2b, 0xc2, 0xdb, 0x87, 0x95, 0xa9, 0x77, 0x0f, 0x2b, 0xc2, 0x8f, 0x0f, 0x2b, 0x53, 0xf7, 0xfe, 0xad, 0x32, 0xf5, 0x93, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa7, 0x5f, 0x7b, 0x1a, 0x54, 0x30, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *M) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*M) if !ok { that2, ok := that.(M) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *M") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *M but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *M but is not nil && this == nil") } if this.A != nil && that1.A != nil { if *this.A != *that1.A { return fmt.Errorf("A this(%v) Not Equal that(%v)", *this.A, *that1.A) } } else if this.A != nil { return fmt.Errorf("this.A == nil && that.A != nil") } else if that1.A != nil { return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *M) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*M) if !ok { that2, ok := that.(M) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.A != nil && that1.A != nil { if *this.A != *that1.A { return false } } else if this.A != nil { return false } else if that1.A != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type MFace interface { Proto() github_com_gogo_protobuf_proto.Message GetA() *string } func (this *M) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *M) TestProto() github_com_gogo_protobuf_proto.Message { return NewMFromFace(this) } func (this *M) GetA() *string { return this.A } func NewMFromFace(that MFace) *M { this := &M{} this.A = that.GetA() return this } func (this *M) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&filedotname.M{") if this.A != nil { s = append(s, "A: "+valueToGoStringFileDot(this.A, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringFileDot(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedM(r randyFileDot, easy bool) *M { this := &M{} if r.Intn(10) != 0 { v1 := string(randStringFileDot(r)) this.A = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedFileDot(r, 2) } return this } type randyFileDot interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneFileDot(r randyFileDot) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringFileDot(r randyFileDot) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneFileDot(r) } return string(tmps) } func randUnrecognizedFileDot(r randyFileDot, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldFileDot(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldFileDot(dAtA []byte, r randyFileDot, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateFileDot(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateFileDot(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateFileDot(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateFileDot(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateFileDot(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateFileDot(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateFileDot(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *M) Size() (n int) { var l int _ = l if m.A != nil { l = len(*m.A) n += 1 + l + sovFileDot(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovFileDot(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozFileDot(x uint64) (n int) { return sovFileDot(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *M) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&M{`, `A:` + valueToStringFileDot(this.A) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringFileDot(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("file.dot.proto", fileDescriptorFileDot) } var fileDescriptorFileDot = []byte{ // 179 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x24, 0xcb, 0xaf, 0x6e, 0xc2, 0x50, 0x1c, 0xc5, 0xf1, 0xdf, 0x91, 0xeb, 0x96, 0x25, 0xab, 0x5a, 0x26, 0x4e, 0x96, 0xa9, 0x99, 0xb5, 0xef, 0x30, 0x0d, 0x86, 0x37, 0x68, 0xe9, 0x1f, 0x9a, 0x50, 0x2e, 0x21, 0xb7, 0xbe, 0x8f, 0x83, 0x44, 0x22, 0x91, 0x95, 0x95, 0xc8, 0xde, 0x1f, 0xa6, 0xb2, 0xb2, 0x92, 0x70, 0x71, 0xe7, 0x93, 0x9c, 0x6f, 0xf0, 0x5e, 0x54, 0xdb, 0x3c, 0xca, 0x8c, 0x8d, 0xf6, 0x07, 0x63, 0x4d, 0xf8, 0xfa, 0x70, 0x66, 0xec, 0x2e, 0xa9, 0xf3, 0xaf, 0xbf, 0xb2, 0xb2, 0x9b, 0x26, 0x8d, 0xd6, 0xa6, 0x8e, 0x4b, 0x53, 0x9a, 0xd8, 0x7f, 0xd2, 0xa6, 0xf0, 0xf2, 0xf0, 0xeb, 0xd9, 0xfe, 0x7c, 0x04, 0x58, 0x86, 0x6f, 0x01, 0x92, 0x4f, 0x7c, 0xe3, 0xf7, 0x65, 0x85, 0xe4, 0x7f, 0xd1, 0x39, 0x4a, 0xef, 0x28, 0x57, 0x47, 0x19, 0x1c, 0x31, 0x3a, 0x62, 0x72, 0xc4, 0xec, 0x88, 0x56, 0x89, 0xa3, 0x12, 0x27, 0x25, 0xce, 0x4a, 0x5c, 0x94, 0xe8, 0x94, 0xd2, 0x2b, 0x65, 0x50, 0x62, 0x54, 0xca, 0xa4, 0xc4, 0xac, 0x94, 0xf6, 0x46, 0xb9, 0x07, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x59, 0x32, 0x8a, 0xad, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/filedotname/file.dot.proto000066400000000000000000000045661317075173200234170ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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 filedotname; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message M { optional string a = 1; } golang-gogoprotobuf-0.5/test/filedotname/file.dotpb_test.go000066400000000000000000000153671317075173200242430ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: file.dot.proto /* Package filedotname is a generated protocol buffer package. It is generated from these files: file.dot.proto It has these top-level messages: M */ package filedotname import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &M{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*M, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedM(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedM(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &M{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &M{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &M{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &M{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFileDotDescription(t *testing.T) { FileDotDescription() } func TestMVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedM(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &M{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedM(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestMGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedM(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedM(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*M, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedM(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedM(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/fuzztests/000077500000000000000000000000001317075173200204055ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/fuzztests/Makefile000066400000000000000000000030461317075173200220500ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2015, 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-gogofast protoc --proto_path=../../../../../:../../protobuf/:. --gogofast_out=. fuzz.proto golang-gogoprotobuf-0.5/test/fuzztests/fuzz.pb.go000066400000000000000000002000501317075173200223270ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: fuzz.proto /* Package fuzztests is a generated protocol buffer package. It is generated from these files: fuzz.proto It has these top-level messages: Nil NinRepPackedNative NinOptNative NinOptStruct */ package fuzztests import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import strings "strings" import reflect "reflect" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Nil struct { XXX_unrecognized []byte `json:"-"` } func (m *Nil) Reset() { *m = Nil{} } func (m *Nil) String() string { return proto.CompactTextString(m) } func (*Nil) ProtoMessage() {} func (*Nil) Descriptor() ([]byte, []int) { return fileDescriptorFuzz, []int{0} } type NinRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepPackedNative) Reset() { *m = NinRepPackedNative{} } func (m *NinRepPackedNative) String() string { return proto.CompactTextString(m) } func (*NinRepPackedNative) ProtoMessage() {} func (*NinRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorFuzz, []int{1} } func (m *NinRepPackedNative) GetField1() []float64 { if m != nil { return m.Field1 } return nil } func (m *NinRepPackedNative) GetField2() []float32 { if m != nil { return m.Field2 } return nil } func (m *NinRepPackedNative) GetField3() []int32 { if m != nil { return m.Field3 } return nil } func (m *NinRepPackedNative) GetField4() []int64 { if m != nil { return m.Field4 } return nil } func (m *NinRepPackedNative) GetField5() []uint32 { if m != nil { return m.Field5 } return nil } func (m *NinRepPackedNative) GetField6() []uint64 { if m != nil { return m.Field6 } return nil } func (m *NinRepPackedNative) GetField7() []int32 { if m != nil { return m.Field7 } return nil } func (m *NinRepPackedNative) GetField8() []int64 { if m != nil { return m.Field8 } return nil } func (m *NinRepPackedNative) GetField9() []uint32 { if m != nil { return m.Field9 } return nil } func (m *NinRepPackedNative) GetField10() []int32 { if m != nil { return m.Field10 } return nil } func (m *NinRepPackedNative) GetField11() []uint64 { if m != nil { return m.Field11 } return nil } func (m *NinRepPackedNative) GetField12() []int64 { if m != nil { return m.Field12 } return nil } func (m *NinRepPackedNative) GetField13() []bool { if m != nil { return m.Field13 } return nil } type NinOptNative struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNative) Reset() { *m = NinOptNative{} } func (m *NinOptNative) String() string { return proto.CompactTextString(m) } func (*NinOptNative) ProtoMessage() {} func (*NinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorFuzz, []int{2} } func (m *NinOptNative) GetField1() float64 { if m != nil && m.Field1 != nil { return *m.Field1 } return 0 } func (m *NinOptNative) GetField2() float32 { if m != nil && m.Field2 != nil { return *m.Field2 } return 0 } func (m *NinOptNative) GetField3() int32 { if m != nil && m.Field3 != nil { return *m.Field3 } return 0 } func (m *NinOptNative) GetField4() int64 { if m != nil && m.Field4 != nil { return *m.Field4 } return 0 } func (m *NinOptNative) GetField5() uint32 { if m != nil && m.Field5 != nil { return *m.Field5 } return 0 } func (m *NinOptNative) GetField6() uint64 { if m != nil && m.Field6 != nil { return *m.Field6 } return 0 } func (m *NinOptNative) GetField7() int32 { if m != nil && m.Field7 != nil { return *m.Field7 } return 0 } func (m *NinOptNative) GetField8() int64 { if m != nil && m.Field8 != nil { return *m.Field8 } return 0 } func (m *NinOptNative) GetField9() uint32 { if m != nil && m.Field9 != nil { return *m.Field9 } return 0 } func (m *NinOptNative) GetField10() int32 { if m != nil && m.Field10 != nil { return *m.Field10 } return 0 } func (m *NinOptNative) GetField11() uint64 { if m != nil && m.Field11 != nil { return *m.Field11 } return 0 } func (m *NinOptNative) GetField12() int64 { if m != nil && m.Field12 != nil { return *m.Field12 } return 0 } func (m *NinOptNative) GetField13() bool { if m != nil && m.Field13 != nil { return *m.Field13 } return false } func (m *NinOptNative) GetField14() string { if m != nil && m.Field14 != nil { return *m.Field14 } return "" } func (m *NinOptNative) GetField15() []byte { if m != nil { return m.Field15 } return nil } type NinOptStruct struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NinOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *NinOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptStruct) Reset() { *m = NinOptStruct{} } func (m *NinOptStruct) String() string { return proto.CompactTextString(m) } func (*NinOptStruct) ProtoMessage() {} func (*NinOptStruct) Descriptor() ([]byte, []int) { return fileDescriptorFuzz, []int{3} } func (m *NinOptStruct) GetField1() float64 { if m != nil && m.Field1 != nil { return *m.Field1 } return 0 } func (m *NinOptStruct) GetField2() float32 { if m != nil && m.Field2 != nil { return *m.Field2 } return 0 } func (m *NinOptStruct) GetField3() *NinOptNative { if m != nil { return m.Field3 } return nil } func (m *NinOptStruct) GetField4() *NinOptNative { if m != nil { return m.Field4 } return nil } func (m *NinOptStruct) GetField6() uint64 { if m != nil && m.Field6 != nil { return *m.Field6 } return 0 } func (m *NinOptStruct) GetField7() int32 { if m != nil && m.Field7 != nil { return *m.Field7 } return 0 } func (m *NinOptStruct) GetField8() *NinOptNative { if m != nil { return m.Field8 } return nil } func (m *NinOptStruct) GetField13() bool { if m != nil && m.Field13 != nil { return *m.Field13 } return false } func (m *NinOptStruct) GetField14() string { if m != nil && m.Field14 != nil { return *m.Field14 } return "" } func (m *NinOptStruct) GetField15() []byte { if m != nil { return m.Field15 } return nil } func init() { proto.RegisterType((*Nil)(nil), "fuzztests.Nil") proto.RegisterType((*NinRepPackedNative)(nil), "fuzztests.NinRepPackedNative") proto.RegisterType((*NinOptNative)(nil), "fuzztests.NinOptNative") proto.RegisterType((*NinOptStruct)(nil), "fuzztests.NinOptStruct") } func (this *Nil) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&fuzztests.Nil{") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepPackedNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 17) s = append(s, "&fuzztests.NinRepPackedNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&fuzztests.NinOptNative{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringFuzz(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringFuzz(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringFuzz(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringFuzz(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringFuzz(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringFuzz(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringFuzz(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+valueToGoStringFuzz(this.Field8, "int64")+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+valueToGoStringFuzz(this.Field9, "uint32")+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+valueToGoStringFuzz(this.Field10, "int32")+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+valueToGoStringFuzz(this.Field11, "uint64")+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+valueToGoStringFuzz(this.Field12, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringFuzz(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringFuzz(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringFuzz(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&fuzztests.NinOptStruct{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringFuzz(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringFuzz(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringFuzz(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringFuzz(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringFuzz(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringFuzz(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringFuzz(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringFuzz(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Nil) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Nil) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinRepPackedNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinRepPackedNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field1) > 0 { dAtA[i] = 0xa i++ i = encodeVarintFuzz(dAtA, i, uint64(len(m.Field1)*8)) for _, num := range m.Field1 { f1 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f1)) i += 8 } } if len(m.Field2) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintFuzz(dAtA, i, uint64(len(m.Field2)*4)) for _, num := range m.Field2 { f2 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f2)) i += 4 } } if len(m.Field3) > 0 { dAtA4 := make([]byte, len(m.Field3)*10) var j3 int for _, num1 := range m.Field3 { num := uint64(num1) for num >= 1<<7 { dAtA4[j3] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j3++ } dAtA4[j3] = uint8(num) j3++ } dAtA[i] = 0x1a i++ i = encodeVarintFuzz(dAtA, i, uint64(j3)) i += copy(dAtA[i:], dAtA4[:j3]) } if len(m.Field4) > 0 { dAtA6 := make([]byte, len(m.Field4)*10) var j5 int for _, num1 := range m.Field4 { num := uint64(num1) for num >= 1<<7 { dAtA6[j5] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j5++ } dAtA6[j5] = uint8(num) j5++ } dAtA[i] = 0x22 i++ i = encodeVarintFuzz(dAtA, i, uint64(j5)) i += copy(dAtA[i:], dAtA6[:j5]) } if len(m.Field5) > 0 { dAtA8 := make([]byte, len(m.Field5)*10) var j7 int for _, num := range m.Field5 { for num >= 1<<7 { dAtA8[j7] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j7++ } dAtA8[j7] = uint8(num) j7++ } dAtA[i] = 0x2a i++ i = encodeVarintFuzz(dAtA, i, uint64(j7)) i += copy(dAtA[i:], dAtA8[:j7]) } if len(m.Field6) > 0 { dAtA10 := make([]byte, len(m.Field6)*10) var j9 int for _, num := range m.Field6 { for num >= 1<<7 { dAtA10[j9] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j9++ } dAtA10[j9] = uint8(num) j9++ } dAtA[i] = 0x32 i++ i = encodeVarintFuzz(dAtA, i, uint64(j9)) i += copy(dAtA[i:], dAtA10[:j9]) } if len(m.Field7) > 0 { dAtA11 := make([]byte, len(m.Field7)*5) var j12 int for _, num := range m.Field7 { x13 := (uint32(num) << 1) ^ uint32((num >> 31)) for x13 >= 1<<7 { dAtA11[j12] = uint8(uint64(x13)&0x7f | 0x80) j12++ x13 >>= 7 } dAtA11[j12] = uint8(x13) j12++ } dAtA[i] = 0x3a i++ i = encodeVarintFuzz(dAtA, i, uint64(j12)) i += copy(dAtA[i:], dAtA11[:j12]) } if len(m.Field8) > 0 { var j14 int dAtA16 := make([]byte, len(m.Field8)*10) for _, num := range m.Field8 { x15 := (uint64(num) << 1) ^ uint64((num >> 63)) for x15 >= 1<<7 { dAtA16[j14] = uint8(uint64(x15)&0x7f | 0x80) j14++ x15 >>= 7 } dAtA16[j14] = uint8(x15) j14++ } dAtA[i] = 0x42 i++ i = encodeVarintFuzz(dAtA, i, uint64(j14)) i += copy(dAtA[i:], dAtA16[:j14]) } if len(m.Field9) > 0 { dAtA[i] = 0x4a i++ i = encodeVarintFuzz(dAtA, i, uint64(len(m.Field9)*4)) for _, num := range m.Field9 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field10) > 0 { dAtA[i] = 0x52 i++ i = encodeVarintFuzz(dAtA, i, uint64(len(m.Field10)*4)) for _, num := range m.Field10 { encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(num)) i += 4 } } if len(m.Field11) > 0 { dAtA[i] = 0x5a i++ i = encodeVarintFuzz(dAtA, i, uint64(len(m.Field11)*8)) for _, num := range m.Field11 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field12) > 0 { dAtA[i] = 0x62 i++ i = encodeVarintFuzz(dAtA, i, uint64(len(m.Field12)*8)) for _, num := range m.Field12 { encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(num)) i += 8 } } if len(m.Field13) > 0 { dAtA[i] = 0x6a i++ i = encodeVarintFuzz(dAtA, i, uint64(len(m.Field13))) for _, b := range m.Field13 { if b { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintFuzz(dAtA, i, uint64(*m.Field3)) } if m.Field4 != nil { dAtA[i] = 0x20 i++ i = encodeVarintFuzz(dAtA, i, uint64(*m.Field4)) } if m.Field5 != nil { dAtA[i] = 0x28 i++ i = encodeVarintFuzz(dAtA, i, uint64(*m.Field5)) } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintFuzz(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintFuzz(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field8 != nil { dAtA[i] = 0x40 i++ i = encodeVarintFuzz(dAtA, i, uint64((uint64(*m.Field8)<<1)^uint64((*m.Field8>>63)))) } if m.Field9 != nil { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field9)) i += 4 } if m.Field10 != nil { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field10)) i += 4 } if m.Field11 != nil { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field11)) i += 8 } if m.Field12 != nil { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field12)) i += 8 } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintFuzz(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintFuzz(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptStruct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptStruct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 != nil { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 != nil { dAtA[i] = 0x1a i++ i = encodeVarintFuzz(dAtA, i, uint64(m.Field3.Size())) n17, err := m.Field3.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n17 } if m.Field4 != nil { dAtA[i] = 0x22 i++ i = encodeVarintFuzz(dAtA, i, uint64(m.Field4.Size())) n18, err := m.Field4.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n18 } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintFuzz(dAtA, i, uint64(*m.Field6)) } if m.Field7 != nil { dAtA[i] = 0x38 i++ i = encodeVarintFuzz(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field8 != nil { dAtA[i] = 0x42 i++ i = encodeVarintFuzz(dAtA, i, uint64(m.Field8.Size())) n19, err := m.Field8.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n19 } if m.Field13 != nil { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 != nil { dAtA[i] = 0x72 i++ i = encodeVarintFuzz(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintFuzz(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintFuzz(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *Nil) Size() (n int) { var l int _ = l if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepPackedNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 1 + sovFuzz(uint64(len(m.Field1)*8)) + len(m.Field1)*8 } if len(m.Field2) > 0 { n += 1 + sovFuzz(uint64(len(m.Field2)*4)) + len(m.Field2)*4 } if len(m.Field3) > 0 { l = 0 for _, e := range m.Field3 { l += sovFuzz(uint64(e)) } n += 1 + sovFuzz(uint64(l)) + l } if len(m.Field4) > 0 { l = 0 for _, e := range m.Field4 { l += sovFuzz(uint64(e)) } n += 1 + sovFuzz(uint64(l)) + l } if len(m.Field5) > 0 { l = 0 for _, e := range m.Field5 { l += sovFuzz(uint64(e)) } n += 1 + sovFuzz(uint64(l)) + l } if len(m.Field6) > 0 { l = 0 for _, e := range m.Field6 { l += sovFuzz(uint64(e)) } n += 1 + sovFuzz(uint64(l)) + l } if len(m.Field7) > 0 { l = 0 for _, e := range m.Field7 { l += sozFuzz(uint64(e)) } n += 1 + sovFuzz(uint64(l)) + l } if len(m.Field8) > 0 { l = 0 for _, e := range m.Field8 { l += sozFuzz(uint64(e)) } n += 1 + sovFuzz(uint64(l)) + l } if len(m.Field9) > 0 { n += 1 + sovFuzz(uint64(len(m.Field9)*4)) + len(m.Field9)*4 } if len(m.Field10) > 0 { n += 1 + sovFuzz(uint64(len(m.Field10)*4)) + len(m.Field10)*4 } if len(m.Field11) > 0 { n += 1 + sovFuzz(uint64(len(m.Field11)*8)) + len(m.Field11)*8 } if len(m.Field12) > 0 { n += 1 + sovFuzz(uint64(len(m.Field12)*8)) + len(m.Field12)*8 } if len(m.Field13) > 0 { n += 1 + sovFuzz(uint64(len(m.Field13))) + len(m.Field13)*1 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNative) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovFuzz(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovFuzz(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovFuzz(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovFuzz(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozFuzz(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozFuzz(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovFuzz(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovFuzz(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptStruct) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovFuzz(uint64(l)) } if m.Field4 != nil { l = m.Field4.Size() n += 1 + l + sovFuzz(uint64(l)) } if m.Field6 != nil { n += 1 + sovFuzz(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozFuzz(uint64(*m.Field7)) } if m.Field8 != nil { l = m.Field8.Size() n += 1 + l + sovFuzz(uint64(l)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovFuzz(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovFuzz(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovFuzz(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozFuzz(x uint64) (n int) { return sovFuzz(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Nil) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Nil: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Nil: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipFuzz(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthFuzz } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepPackedNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepPackedNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepPackedNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } default: iNdEx = preIndex skippy, err := skipFuzz(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthFuzz } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = &v case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = &v case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) v2 := int64(v) m.Field8 = &v2 case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = &v case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = &v case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = &v case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = &v case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipFuzz(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthFuzz } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptStruct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptStruct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptStruct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field3 == nil { m.Field3 = &NinOptNative{} } if err := m.Field3.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field4 == nil { m.Field4 = &NinOptNative{} } if err := m.Field4.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Field8 == nil { m.Field8 = &NinOptNative{} } if err := m.Field8.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFuzz } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthFuzz } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipFuzz(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthFuzz } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipFuzz(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowFuzz } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowFuzz } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowFuzz } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthFuzz } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowFuzz } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipFuzz(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthFuzz = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowFuzz = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("fuzz.proto", fileDescriptorFuzz) } var fileDescriptorFuzz = []byte{ // 445 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0xd3, 0xbf, 0x6e, 0x1a, 0x41, 0x10, 0xc7, 0x71, 0xcd, 0x0d, 0x7f, 0xd7, 0x10, 0xf0, 0x15, 0x9b, 0x91, 0x15, 0xa1, 0x15, 0xd5, 0x34, 0xe1, 0xc2, 0x71, 0xd8, 0xb8, 0x75, 0x91, 0x92, 0x44, 0xce, 0x13, 0xd8, 0xf8, 0x4c, 0x4e, 0x71, 0x7c, 0xc8, 0x5e, 0x52, 0xb8, 0x4c, 0x95, 0x47, 0x4b, 0x97, 0x3c, 0x42, 0xc2, 0x13, 0xe4, 0x11, 0xa2, 0x9c, 0xcd, 0xec, 0x50, 0x59, 0x48, 0xe9, 0xee, 0xf6, 0xc3, 0x0a, 0xf1, 0xfd, 0x09, 0x63, 0xae, 0xd7, 0x0f, 0x0f, 0xa3, 0xd5, 0x5d, 0xe9, 0xcb, 0xb8, 0xfd, 0xef, 0xd9, 0xe7, 0xf7, 0xfe, 0xfe, 0xe8, 0xf5, 0xb2, 0xf0, 0x1f, 0xd7, 0x97, 0xa3, 0x45, 0xf9, 0x39, 0x59, 0x96, 0xcb, 0x32, 0xa9, 0x3e, 0x71, 0xb9, 0xbe, 0xae, 0xde, 0xaa, 0x97, 0xea, 0xe9, 0xf1, 0xe6, 0xb0, 0x6e, 0x70, 0x5e, 0xdc, 0x0c, 0xbf, 0xa1, 0x89, 0xe7, 0xc5, 0xed, 0x79, 0xbe, 0x7a, 0x7f, 0xb1, 0xf8, 0x94, 0x5f, 0xcd, 0x2f, 0x7c, 0xf1, 0x25, 0x8f, 0x8f, 0x4c, 0xe3, 0x6d, 0x91, 0xdf, 0x5c, 0x8d, 0x09, 0x1c, 0x32, 0x9c, 0x45, 0x7d, 0x38, 0x7f, 0x3a, 0x11, 0x4b, 0x29, 0x72, 0xc8, 0x91, 0xb2, 0x54, 0x6c, 0x42, 0xe8, 0x90, 0xeb, 0xca, 0x26, 0x62, 0x19, 0xd5, 0x1c, 0x32, 0x2a, 0xcb, 0xc4, 0xa6, 0x54, 0x77, 0xc8, 0x5d, 0x65, 0x53, 0xb1, 0x63, 0x6a, 0x38, 0xe4, 0x9a, 0xb2, 0x63, 0xb1, 0x13, 0x6a, 0x3a, 0xe4, 0x43, 0x65, 0x27, 0x62, 0x33, 0x6a, 0x39, 0xe4, 0x58, 0xd9, 0x4c, 0xec, 0x94, 0xda, 0x0e, 0xb9, 0xa9, 0xec, 0x34, 0x7e, 0x65, 0x9a, 0x8f, 0xbf, 0xf4, 0x0d, 0x19, 0x87, 0xdc, 0xab, 0x70, 0x7b, 0x14, 0x74, 0x4c, 0x07, 0x0e, 0xb9, 0xa1, 0x75, 0x1c, 0x34, 0xa5, 0x8e, 0x43, 0xee, 0x6b, 0x4d, 0x83, 0x4e, 0xa8, 0xeb, 0x90, 0x5b, 0x5a, 0x27, 0xc3, 0xaf, 0x68, 0x3a, 0xf3, 0xe2, 0xf6, 0xdd, 0xca, 0x3f, 0x8d, 0x60, 0xd5, 0x08, 0xc0, 0x61, 0x00, 0xab, 0x06, 0x00, 0x8e, 0x24, 0xbe, 0x55, 0xf1, 0x81, 0xeb, 0x12, 0xde, 0xaa, 0xf0, 0xc0, 0x28, 0xd1, 0xad, 0x8a, 0x0e, 0xdc, 0x95, 0xe0, 0x56, 0x05, 0x07, 0xae, 0x49, 0x6c, 0xab, 0x62, 0x03, 0x1f, 0x4a, 0x68, 0xab, 0x42, 0x03, 0xc7, 0x12, 0xd9, 0xaa, 0xc8, 0xc0, 0x4d, 0x09, 0x4c, 0x3a, 0x30, 0x70, 0x2f, 0xc4, 0x25, 0x1d, 0x17, 0xb8, 0x11, 0xc2, 0x92, 0x0e, 0x0b, 0xdc, 0x0f, 0x51, 0x49, 0x47, 0x05, 0x6e, 0x49, 0xd0, 0x20, 0x19, 0xbd, 0x70, 0xc0, 0xed, 0xad, 0x64, 0x41, 0xa6, 0xd4, 0x73, 0xc0, 0x9d, 0xad, 0x4c, 0x87, 0x3f, 0xa2, 0xed, 0x08, 0x1f, 0xfc, 0xdd, 0x7a, 0xe1, 0xf7, 0x1e, 0x21, 0xd9, 0x19, 0xe1, 0x20, 0x7d, 0x39, 0x92, 0xbf, 0xe8, 0x48, 0xaf, 0x2b, 0xeb, 0x24, 0x3b, 0xeb, 0x3c, 0x7b, 0x21, 0xdb, 0x7b, 0x9e, 0x64, 0x67, 0x9e, 0x67, 0xbf, 0x60, 0xf6, 0x7f, 0x8b, 0x9e, 0xf5, 0xff, 0xfc, 0x1e, 0xc0, 0xf7, 0xcd, 0x00, 0x7e, 0x6e, 0x06, 0xf0, 0x6b, 0x33, 0x80, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc0, 0x67, 0xe2, 0xa2, 0xc1, 0x04, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/fuzztests/fuzz.proto000066400000000000000000000060041317075173200224700ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 fuzztests; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.gostring_all) = true; message Nil { } message NinRepPackedNative { repeated double Field1 = 1 [packed = true]; repeated float Field2 = 2 [packed = true]; repeated int32 Field3 = 3 [packed = true]; repeated int64 Field4 = 4 [packed = true]; repeated uint32 Field5 = 5 [packed = true]; repeated uint64 Field6 = 6 [packed = true]; repeated sint32 Field7 = 7 [packed = true]; repeated sint64 Field8 = 8 [packed = true]; repeated fixed32 Field9 = 9 [packed = true]; repeated sfixed32 Field10 = 10 [packed = true]; repeated fixed64 Field11 = 11 [packed = true]; repeated sfixed64 Field12 = 12 [packed = true]; repeated bool Field13 = 13 [packed = true]; } message NinOptNative { optional double Field1 = 1; optional float Field2 = 2; optional int32 Field3 = 3; optional int64 Field4 = 4; optional uint32 Field5 = 5; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional sint64 Field8 = 8; optional fixed32 Field9 = 9; optional sfixed32 Field10 = 10; optional fixed64 Field11 = 11; optional sfixed64 Field12 = 12; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NinOptStruct { optional double Field1 = 1; optional float Field2 = 2; optional NinOptNative Field3 = 3; optional NinOptNative Field4 = 4; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional NinOptNative Field8 = 8; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } golang-gogoprotobuf-0.5/test/fuzztests/fuzz_test.go000066400000000000000000000261771317075173200230060ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package fuzztests import ( "github.com/gogo/protobuf/proto" "testing" ) func TestFuzzUnrecognized(t *testing.T) { msg := &Nil{} input := []byte{0x8, 0xaf, 0x81, 0xc9, 0xb3, 0x97, 0xd1, 0xb5, 0xc2, 0x4f, 0x1a, 0x4a, 0x52, 0x48, 0x4e, 0x44, 0x65, 0x51, 0x4b, 0x46, 0x44, 0x33, 0x5a, 0x44, 0x72, 0x38, 0x58, 0x4c, 0x58, 0x70, 0x59, 0x45, 0x71, 0x45, 0x4f, 0x6d, 0x45, 0x4d, 0x54, 0x59, 0x4c, 0x6b, 0x55, 0x7a, 0x6f, 0x6b, 0x5a, 0x69, 0x56, 0x64, 0x46, 0x45, 0x56, 0x4d, 0x70, 0x6a, 0x39, 0x7a, 0x4b, 0x43, 0x4d, 0x6d, 0x76, 0x63, 0x46, 0x4f, 0x31, 0x4a, 0x5a, 0x6b, 0x66, 0x4a, 0x75, 0x51, 0x38, 0x54, 0x54, 0x30, 0x53, 0x61, 0x36, 0x6e, 0x4f, 0x6b, 0x35, 0x54, 0x95, 0x0, 0x0, 0x0, 0x0, 0x12, 0x38, 0x52, 0x36, 0x66, 0x76, 0x41, 0x74, 0x73, 0x7a, 0x39, 0x43, 0x6a, 0x4f, 0x64, 0x59, 0x77, 0x33, 0x30, 0x36, 0x58, 0x75, 0x65, 0x46, 0x4b, 0x46, 0x55, 0x56, 0x71, 0x6d, 0x49, 0x73, 0x4a, 0x4b, 0x78, 0x76, 0x41, 0x65, 0x42, 0x61, 0x5a, 0x30, 0x41, 0x37, 0x45, 0x76, 0x72, 0x31, 0x30, 0x4e, 0x78, 0x6d, 0x33, 0x63, 0x65, 0x66, 0x6b, 0x30} if err := proto.Unmarshal(input, msg); err == nil { t.Fatal("expected error") } } func DisabledTestFuzzPackedIsNotIdempotent(t *testing.T) { msg := &NinRepPackedNative{} //original := []byte{0x9, 0xa3, 0xae, 0xab, 0xd2, 0xbe, 0x1c, 0xed, 0xbf, 0x15, 0x22, 0x1, 0x6e, 0x3f, 0x22, 0x81, 0x1, 0x9, 0x21, 0x84, 0x36, 0x21, 0x6a, 0xff, 0xd3, 0x3f, 0x15, 0x15, 0x71, 0x4b, 0xbd, 0x52, 0x70, 0x49, 0x6e, 0x48, 0x54, 0x6a, 0x61, 0x37, 0x63, 0x78, 0x47, 0x58, 0x31, 0x7a, 0x43, 0x4d, 0x7a, 0x48, 0x58, 0x56, 0xcb, 0x9c, 0x34, 0xdf, 0xc6, 0x3c, 0xa4, 0x33, 0xac, 0xba, 0xa7, 0xeb, 0x4, 0xa8, 0x8a, 0x48, 0x75, 0x67, 0x71, 0x31, 0x4a, 0x5b, 0xe1, 0xcf, 0x21, 0x88, 0xd3, 0xec, 0xac, 0x13, 0x28, 0xec, 0xa9, 0x51, 0xc8, 0xe9, 0x5e, 0xca, 0xbe, 0xea, 0x9c, 0x0, 0x6b, 0x44, 0x63, 0xc4, 0x32, 0xaa, 0x36, 0x4e, 0xfc, 0xbd, 0x7, 0xef, 0x5e, 0x47, 0x2, 0xfc, 0xd8, 0x83, 0x85, 0x9c, 0xca, 0x7c, 0xd2, 0xdb, 0xf5, 0x5d, 0xcc, 0x5a, 0x72, 0x1f, 0x66, 0x55, 0x74, 0x46, 0x47, 0x73, 0x75, 0x54, 0x30, 0x39, 0x53, 0x34, 0x4c, 0x61, 0x78, 0x59, 0x31, 0x51, 0x44, 0x30, 0x53, 0x51, 0x71, 0x44, 0x65, 0x6f, 0x53, 0x30, 0x44, 0x6a, 0x58, 0x7a, 0x1b, 0x65, 0x62, 0x9c, 0x95, 0xc5, 0x41, 0xcb, 0x48, 0xa, 0x47, 0xf6, 0xd8, 0xd2, 0xd5, 0x8d, 0x6, 0x69, 0x8f, 0xbe, 0x7c, 0xf3, 0xe9, 0x79, 0x3c, 0xca, 0x6, 0x5b} input := []byte{0x9, 0xa3, 0xae, 0xab, 0xd2, 0xbe, 0x1c, 0xed, 0xbf, 0x15, 0x22, 0x1, 0x6e, 0x3f, 0x22, 0x81, 0x1, 0x9, 0x21, 0x84, 0x36, 0x21, 0x6a, 0xff, 0xd3, 0x3f, 0x15, 0x15, 0x71, 0x4b, 0xbd, 0x52, 0x70, 0x49, 0x6e, 0x48, 0x54, 0x6a, 0x61, 0x37, 0x63, 0x78, 0x47, 0x58, 0x31, 0x7a, 0x43, 0x4d, 0x7a, 0x48, 0x58, 0x56, 0xcb, 0x9c, 0x34, 0xdf, 0xc6, 0x3c, 0xa4, 0x33, 0xac, 0xba, 0xa7, 0xeb, 0x4, 0xa8, 0x8a, 0x48, 0x75, 0x67, 0x71, 0x31, 0x4a, 0x5b, 0xe1, 0xcf, 0x21, 0x88, 0xd3, 0xec, 0xac, 0x13, 0x28, 0xec, 0xa9, 0x51, 0xc8, 0xe9, 0x5e, 0xca, 0xbe, 0xea, 0x9c, 0x0, 0x6b, 0x44, 0x63, 0xc4, 0x32, 0xaa, 0x36, 0x4e, 0xfc, 0xbd, 0x7, 0xef, 0x5e, 0x47, 0x2, 0xfc, 0xd8, 0x83, 0x85, 0x9c, 0xca, 0x7c, 0xd2, 0xdb, 0xf5, 0x5d, 0xcc, 0x5a, 0x72, 0x1f, 0x66, 0x55, 0x74, 0x46, 0x47, 0x73, 0x75, 0x54, 0x30, 0x39, 0x53, 0x34, 0x4c, 0x61, 0x78, 0x59, 0x31, 0x51, 0x44, 0x30, 0x53, 0x51} if err := proto.Unmarshal(input, msg); err == nil { t.Fatal("expected error") } } func DisabledTestFuzzFieldOrder(t *testing.T) { msg := &NinOptStruct{} input := []byte{0x52, 0x57, 0x52, 0x6a, 0x33, 0x56, 0x43, 0x76, 0x32, 0x54, 0x49, 0x4a, 0x55, 0x66, 0x39, 0x52, 0x32, 0x32, 0x73, 0x69, 0x4f, 0x67, 0x66, 0x79, 0x4b, 0x79, 0x5a, 0x55, 0x42, 0x53, 0x38, 0x68, 0x6c, 0x46, 0x79, 0x6b, 0x54, 0x43, 0x63, 0x66, 0x30, 0x6a, 0x33, 0x35, 0x33, 0x7a, 0x41, 0x66, 0x68, 0x57, 0x61, 0x78, 0x51, 0x37, 0x76, 0x52, 0x78, 0x34, 0x56, 0x43, 0x54, 0x31, 0x73, 0x6a, 0x77, 0x63, 0x45, 0x62, 0x62, 0x67, 0x34, 0x6f, 0x64, 0x35, 0x6c, 0x41, 0x45, 0x50, 0x64, 0x6f, 0x46, 0x38, 0x41, 0x4b, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30} if err := proto.Unmarshal(input, msg); err != nil { t.Fatal(err) } } func TestFuzzSint64Overflow(t *testing.T) { msg := &NinOptNative{} //original := []byte{0x9, 0x65, 0xb4, 0xfd, 0xbc, 0x5, 0xc7, 0xee, 0x3f, 0x15, 0x48, 0xec, 0x67, 0x3f, 0x18, 0xca, 0xa4, 0xe0, 0xa9, 0x5, 0x20, 0x8e, 0xb7, 0x9f, 0xf5, 0xcf, 0xe9, 0xea, 0xad, 0xfd, 0x1, 0x28, 0xc9, 0xf1, 0xbc, 0x88, 0xc, 0x30, 0xeb, 0x99, 0xbd, 0xa8, 0xe, 0x38, 0xc0, 0xd4, 0xb7, 0xba, 0x7, 0x40, 0xc8, 0xe4, 0xf6, 0xe2, 0xb8, 0xdd, 0xa7, 0xf2, 0x82, 0xba, 0x16, 0x9d, 0x59, 0xf9, 0x31, 0xe0, 0x99, 0x0, 0x0, 0x0, 0x0, 0x61, 0x59, 0x5b, 0xb5, 0x57, 0x56, 0x93, 0x70, 0xde, 0x68, 0x0, 0x72, 0x40, 0x64, 0x5a, 0x5a, 0x61, 0x57, 0x78, 0x68, 0x53, 0x65, 0x66, 0x67, 0x38, 0x38, 0x61, 0x48, 0x44, 0x32, 0x6c, 0x36, 0x50, 0x31, 0x4d, 0x43, 0x39, 0x31, 0x6d, 0x37, 0x34, 0x32, 0x48, 0x6b, 0x4d, 0x70, 0x31, 0x45, 0x73, 0x48, 0x71, 0x4a, 0x69, 0x37, 0x56, 0x53, 0x44, 0x6b, 0x48, 0x45, 0x50, 0x4b, 0x7a, 0x52, 0x49, 0x4c, 0x50, 0x69, 0x44, 0x72, 0x42, 0x56, 0x50, 0x78, 0x62, 0x56, 0x55, 0x7a, 0x5b, 0xb3, 0x6c, 0x59, 0x4c, 0xf1, 0x31, 0xeb, 0xb6, 0x25, 0x1a, 0x26, 0x67, 0x66, 0x97, 0x79, 0xb8, 0x37, 0x8, 0xe1, 0x32, 0x45, 0x6e, 0x6, 0x90, 0x4f, 0xde, 0x26, 0x7a, 0xc6, 0x29, 0x65, 0x4a, 0x69, 0xa7, 0x21, 0xfb, 0x42, 0xda, 0x43, 0x89, 0x27, 0x70, 0x71, 0xde, 0x66, 0xa4, 0x75, 0x2b, 0x5c, 0x96, 0x9f, 0x25, 0x3b, 0xc1, 0x64, 0x14, 0x4, 0x60, 0x8c, 0x58, 0x7e, 0xa1, 0x59, 0x7b, 0x47, 0x18, 0xc, 0x5b, 0x18, 0x63, 0x9, 0xb4, 0xc9, 0x7, 0xf9, 0xae, 0x33, 0xae, 0x2, 0x4a, 0x8b, 0x34, 0x92, 0x40, 0xb, 0xd7, 0x80, 0x60, 0xdb, 0x44, 0x5} input := []byte{0x40, 0xc8, 0xe4, 0xf6, 0xe2, 0xb8, 0xdd, 0xa7, 0xf2, 0x82, 0xba, 0x16} if err := proto.Unmarshal(input, msg); err != nil { return } } func DisabledTestFuzzOverrideField(t *testing.T) { msg := &NinOptNative{} //original := []byte{0x9, 0x73, 0x78, 0x5a, 0xf2, 0xb4, 0x66, 0xe8, 0x3f, 0x15, 0x71, 0xdc, 0x4, 0x3f, 0x18, 0xe5, 0x8e, 0xab, 0xdb, 0x3, 0x20, 0xbe, 0xed, 0xe6, 0xc0, 0xb9, 0xb8, 0xa7, 0xb5, 0x12, 0x28, 0xcb, 0x8c, 0x91, 0xef, 0xc, 0x30, 0x9a, 0xc1, 0xc3, 0xc0, 0xf, 0x38, 0xe8, 0x9b, 0xf0, 0xca, 0x5, 0x40, 0xd2, 0xd7, 0xdd, 0xa3, 0xea, 0xab, 0xec, 0xc2, 0xaa, 0x1, 0x4d, 0xc9, 0x15, 0x0, 0xea, 0x55, 0x72, 0x3e, 0x92, 0xa8, 0x59, 0x3e, 0x87, 0x7d, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x61, 0xca, 0xe7, 0xdb, 0x57, 0xa1, 0xb6, 0x41, 0xf4, 0x72, 0x3e, 0x63, 0x36, 0x43, 0x73, 0x32, 0x68, 0x64, 0x75, 0x75, 0x70, 0x4f, 0x39, 0x67, 0x77, 0x42, 0x6a, 0x78, 0x63, 0x57, 0x64, 0x77, 0x6b, 0x74, 0x44, 0x4d, 0x79, 0x36, 0x30, 0x68, 0x38, 0x53, 0x31, 0x79, 0x33, 0x38, 0x4b, 0x7a, 0x76, 0x36, 0x48, 0x4a, 0x35, 0x37, 0x59, 0x48, 0x6c, 0x74, 0x72, 0x61, 0x33, 0x4c, 0x74, 0x45, 0x4a, 0x51, 0x68, 0x71, 0x31, 0x70, 0x50, 0x70, 0x6a, 0x4d, 0x15, 0x51, 0xce, 0xea, 0x82, 0x1, 0x23, 0xed, 0x7a, 0x3, 0x78, 0xee, 0x56, 0x46, 0xd0, 0xe1, 0x17, 0x18, 0x30, 0x9d, 0x2f, 0xac, 0x1c, 0xa, 0x30, 0xa9, 0x8d, 0x10, 0xed, 0xb5, 0x44, 0x36, 0x5e, 0x84, 0x73, 0x5d, 0x38, 0x51, 0x2b, 0x6e, 0xc6, 0xb5} input := []byte{0x4d, 0xc9, 0x15, 0x0, 0xea, 0x72, 0x3e, 0x63, 0x36, 0x43, 0x73, 0x32, 0x68, 0x64, 0x75, 0x75, 0x70, 0x4f, 0x39, 0x67, 0x77, 0x42, 0x6a, 0x78, 0x63, 0x57, 0x64, 0x77, 0x6b, 0x74, 0x44, 0x4d, 0x79, 0x36, 0x30, 0x68, 0x38, 0x53, 0x31, 0x79, 0x33, 0x38, 0x4b, 0x7a, 0x76, 0x36, 0x48, 0x4a, 0x35, 0x37, 0x59, 0x48, 0x6c, 0x74, 0x72, 0x61, 0x33, 0x4c, 0x74, 0x45, 0x4a, 0x51, 0x68, 0x71, 0x31, 0x70, 0x50, 0x70, 0x6a, 0x4d, 0x15, 0x51, 0xce, 0xea} if err := proto.Unmarshal(input, msg); err != nil { panic(err) } output, err := proto.Marshal(msg) if err != nil { t.Fatal(err) } if len(input) != len(output) { t.Logf("%#v", msg) msg2 := &NinOptNative{} if err := proto.Unmarshal(output, msg2); err == nil { t.Logf("%#v", msg2) } t.Errorf("expected %#v got %#v", input, output) } } //Generated code is correct, non generated returns an incorrect error func DisabledTestFuzzBadWireType(t *testing.T) { msg := &NinRepPackedNative{} //input := []byte("j\x160\xfc0000\xf6\xfa000\xc1\xaf\xf5000\xcf" + "00\xb90z\r0\x850\xd30000'0000") input := []byte{0x6a, 0x16, 0x30, 0xfc, 0x30, 0x30, 0x30, 0x30, 0xf6, 0xfa, 0x30, 0x30, 0x30, 0xc1, 0xaf, 0xf5, 0x30, 0x30, 0x30, 0xcf, 0x30, 0x30, 0xb9, 0x30, 0x7a, 0xd, 0x30, 0x85, 0x30, 0xd3, 0x30, 0x30, 0x30, 0x30, 0x27, 0x30, 0x30, 0x30, 0x30} if err := proto.Unmarshal(input, msg); err == nil { t.Fatalf("expected bad wiretype for Field4 error got %#v", msg) } else { t.Log(err) } } func TestFuzzIntegerOverflow(t *testing.T) { msg := &Nil{} //input := []byte("\x1500000\x8b\x9b\xa3\xa8\xb6\xe1\xe1\xfe\u061c0") input := []byte{0x15, 0x30, 0x30, 0x30, 0x30, 0x30, 0x8b, 0x9b, 0xa3, 0xa8, 0xb6, 0xe1, 0xe1, 0xfe, 0xd8, 0x9c, 0x30} if err := proto.Unmarshal(input, msg); err == nil { t.Fatalf("expected integer overflow error %#v", msg) } else { t.Log(err) } } //Generated code is correct, non generated returns an incorrect error func DisabledTestFuzzUnexpectedEOF(t *testing.T) { msg := &NinRepPackedNative{} //input := []byte("j\x16000000000000000000" + "00\xb90") input := []byte{0x6a, 0x16, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0xb9, 0x30} if err := proto.Unmarshal(input, msg); err == nil { t.Fatalf("expected unexpected eof error got %#v", msg) } else { t.Log(err) } } //Generated code is correct, non generated returns an incorrect error func DisabledTestFuzzCantSkipWireType(t *testing.T) { msg := &NinRepPackedNative{} //input := []byte("j\x160\xfc0000\xf6\xfa000\xc1\xaf\xf5000\xcf" + "00\xb90z\r0\x850\xd3000\xa80\xa7000") input := []byte{0x6a, 0x16, 0x30, 0xfc, 0x30, 0x30, 0x30, 0x30, 0xf6, 0xfa, 0x30, 0x30, 0x30, 0xc1, 0xaf, 0xf5, 0x30, 0x30, 0x30, 0xcf, 0x30, 0x30, 0xb9, 0x30, 0x7a, 0xd, 0x30, 0x85, 0x30, 0xd3, 0x30, 0x30, 0x30, 0xa8, 0x30, 0xa7, 0x30, 0x30, 0x30} if err := proto.Unmarshal(input, msg); err == nil { t.Fatalf("expected cant skip wiretype error got %#v", msg) } else { t.Log(err) } } golang-gogoprotobuf-0.5/test/group/000077500000000000000000000000001317075173200174605ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/group/Makefile000066400000000000000000000027531317075173200211270ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. group.proto) golang-gogoprotobuf-0.5/test/group/group.pb.go000066400000000000000000001244311317075173200215500ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: group.proto /* Package group is a generated protocol buffer package. It is generated from these files: group.proto It has these top-level messages: Groups1 Groups2 */ package group import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Groups1 struct { G []*Groups1_G `protobuf:"group,1,rep,name=G,json=g" json:"g,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Groups1) Reset() { *m = Groups1{} } func (*Groups1) ProtoMessage() {} func (*Groups1) Descriptor() ([]byte, []int) { return fileDescriptorGroup, []int{0} } type Groups1_G struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float64 `protobuf:"fixed64,2,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Groups1_G) Reset() { *m = Groups1_G{} } func (*Groups1_G) ProtoMessage() {} func (*Groups1_G) Descriptor() ([]byte, []int) { return fileDescriptorGroup, []int{0, 0} } type Groups2 struct { G *Groups2_G `protobuf:"group,1,opt,name=G,json=g" json:"g,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Groups2) Reset() { *m = Groups2{} } func (*Groups2) ProtoMessage() {} func (*Groups2) Descriptor() ([]byte, []int) { return fileDescriptorGroup, []int{1} } type Groups2_G struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` Field2 []float64 `protobuf:"fixed64,2,rep,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Groups2_G) Reset() { *m = Groups2_G{} } func (*Groups2_G) ProtoMessage() {} func (*Groups2_G) Descriptor() ([]byte, []int) { return fileDescriptorGroup, []int{1, 0} } func init() { proto.RegisterType((*Groups1)(nil), "group.Groups1") proto.RegisterType((*Groups1_G)(nil), "group.Groups1.G") proto.RegisterType((*Groups2)(nil), "group.Groups2") proto.RegisterType((*Groups2_G)(nil), "group.Groups2.G") } func (this *Groups1) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return GroupDescription() } func (this *Groups1_G) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return GroupDescription() } func (this *Groups2) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return GroupDescription() } func (this *Groups2_G) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return GroupDescription() } func GroupDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3752 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0xe6, 0xe2, 0x87, 0x04, 0x0e, 0x40, 0x70, 0x79, 0x49, 0x53, 0x10, 0x1d, 0x53, 0x12, 0xfd, 0x47, 0xdb, 0x0d, 0x95, 0xd0, 0x92, 0x2c, 0x43, 0x4d, 0x5c, 0x10, 0x84, 0x10, 0xa8, 0x24, 0x81, 0x2c, 0xc8, 0x58, 0x4e, 0x67, 0xba, 0xb3, 0x5c, 0x5c, 0x80, 0x2b, 0x2d, 0x76, 0x37, 0xbb, 0x0b, 0xc9, 0xd4, 0xf4, 0x41, 0x1d, 0xf7, 0x67, 0x32, 0x9d, 0xfe, 0x77, 0xa6, 0x89, 0xeb, 0xb8, 0x6d, 0x66, 0x5a, 0xa7, 0x49, 0x7f, 0x92, 0xa6, 0x4d, 0x93, 0x3e, 0xf5, 0x25, 0xad, 0x9f, 0x3a, 0xc9, 0x5b, 0x1f, 0xfa, 0x60, 0x69, 0x3c, 0xd3, 0x3f, 0xb7, 0x4d, 0x1b, 0x3f, 0x74, 0x46, 0x2f, 0x9d, 0xfb, 0xb7, 0xd8, 0x05, 0x40, 0x2d, 0x98, 0x19, 0x3b, 0x4f, 0xc4, 0x9e, 0x7b, 0xbe, 0x6f, 0xcf, 0x3d, 0xf7, 0xdc, 0x73, 0xce, 0xbd, 0x4b, 0xf8, 0xda, 0x65, 0x38, 0xdb, 0xb5, 0xed, 0xae, 0x89, 0xcf, 0x3b, 0xae, 0xed, 0xdb, 0x07, 0xfd, 0xce, 0xf9, 0x36, 0xf6, 0x74, 0xd7, 0x70, 0x7c, 0xdb, 0x5d, 0xa7, 0x32, 0x34, 0xc7, 0x34, 0xd6, 0x85, 0xc6, 0xea, 0x0e, 0xcc, 0x5f, 0x35, 0x4c, 0xbc, 0x15, 0x28, 0xb6, 0xb0, 0x8f, 0x2e, 0x43, 0xaa, 0x63, 0x98, 0xb8, 0x28, 0x9d, 0x4d, 0xae, 0xe5, 0x36, 0x9e, 0x58, 0x1f, 0x02, 0xad, 0x47, 0x11, 0x4d, 0x22, 0x56, 0x28, 0x62, 0xf5, 0xdd, 0x14, 0x2c, 0x8c, 0x19, 0x45, 0x08, 0x52, 0x96, 0xd6, 0x23, 0x8c, 0xd2, 0x5a, 0x56, 0xa1, 0xbf, 0x51, 0x11, 0x66, 0x1c, 0x4d, 0xbf, 0xa9, 0x75, 0x71, 0x31, 0x41, 0xc5, 0xe2, 0x11, 0xad, 0x00, 0xb4, 0xb1, 0x83, 0xad, 0x36, 0xb6, 0xf4, 0xa3, 0x62, 0xf2, 0x6c, 0x72, 0x2d, 0xab, 0x84, 0x24, 0xe8, 0x39, 0x98, 0x77, 0xfa, 0x07, 0xa6, 0xa1, 0xab, 0x21, 0x35, 0x38, 0x9b, 0x5c, 0x4b, 0x2b, 0x32, 0x1b, 0xd8, 0x1a, 0x28, 0x3f, 0x0d, 0x73, 0xb7, 0xb1, 0x76, 0x33, 0xac, 0x9a, 0xa3, 0xaa, 0x05, 0x22, 0x0e, 0x29, 0x56, 0x20, 0xdf, 0xc3, 0x9e, 0xa7, 0x75, 0xb1, 0xea, 0x1f, 0x39, 0xb8, 0x98, 0xa2, 0xb3, 0x3f, 0x3b, 0x32, 0xfb, 0xe1, 0x99, 0xe7, 0x38, 0x6a, 0xef, 0xc8, 0xc1, 0xa8, 0x0c, 0x59, 0x6c, 0xf5, 0x7b, 0x8c, 0x21, 0x7d, 0x8c, 0xff, 0xaa, 0x56, 0xbf, 0x37, 0xcc, 0x92, 0x21, 0x30, 0x4e, 0x31, 0xe3, 0x61, 0xf7, 0x96, 0xa1, 0xe3, 0xe2, 0x34, 0x25, 0x78, 0x7a, 0x84, 0xa0, 0xc5, 0xc6, 0x87, 0x39, 0x04, 0x0e, 0x55, 0x20, 0x8b, 0x5f, 0xf5, 0xb1, 0xe5, 0x19, 0xb6, 0x55, 0x9c, 0xa1, 0x24, 0x4f, 0x8e, 0x59, 0x45, 0x6c, 0xb6, 0x87, 0x29, 0x06, 0x38, 0x74, 0x09, 0x66, 0x6c, 0xc7, 0x37, 0x6c, 0xcb, 0x2b, 0x66, 0xce, 0x4a, 0x6b, 0xb9, 0x8d, 0x8f, 0x8c, 0x0d, 0x84, 0x06, 0xd3, 0x51, 0x84, 0x32, 0xaa, 0x83, 0xec, 0xd9, 0x7d, 0x57, 0xc7, 0xaa, 0x6e, 0xb7, 0xb1, 0x6a, 0x58, 0x1d, 0xbb, 0x98, 0xa5, 0x04, 0x67, 0x46, 0x27, 0x42, 0x15, 0x2b, 0x76, 0x1b, 0xd7, 0xad, 0x8e, 0xad, 0x14, 0xbc, 0xc8, 0x33, 0x5a, 0x82, 0x69, 0xef, 0xc8, 0xf2, 0xb5, 0x57, 0x8b, 0x79, 0x1a, 0x21, 0xfc, 0x69, 0xf5, 0x3b, 0xd3, 0x30, 0x37, 0x49, 0x88, 0x5d, 0x81, 0x74, 0x87, 0xcc, 0xb2, 0x98, 0x38, 0x89, 0x0f, 0x18, 0x26, 0xea, 0xc4, 0xe9, 0x1f, 0xd1, 0x89, 0x65, 0xc8, 0x59, 0xd8, 0xf3, 0x71, 0x9b, 0x45, 0x44, 0x72, 0xc2, 0x98, 0x02, 0x06, 0x1a, 0x0d, 0xa9, 0xd4, 0x8f, 0x14, 0x52, 0xd7, 0x61, 0x2e, 0x30, 0x49, 0x75, 0x35, 0xab, 0x2b, 0x62, 0xf3, 0x7c, 0x9c, 0x25, 0xeb, 0x55, 0x81, 0x53, 0x08, 0x4c, 0x29, 0xe0, 0xc8, 0x33, 0xda, 0x02, 0xb0, 0x2d, 0x6c, 0x77, 0xd4, 0x36, 0xd6, 0xcd, 0x62, 0xe6, 0x18, 0x2f, 0x35, 0x88, 0xca, 0x88, 0x97, 0x6c, 0x26, 0xd5, 0x4d, 0xf4, 0xe2, 0x20, 0xd4, 0x66, 0x8e, 0x89, 0x94, 0x1d, 0xb6, 0xc9, 0x46, 0xa2, 0x6d, 0x1f, 0x0a, 0x2e, 0x26, 0x71, 0x8f, 0xdb, 0x7c, 0x66, 0x59, 0x6a, 0xc4, 0x7a, 0xec, 0xcc, 0x14, 0x0e, 0x63, 0x13, 0x9b, 0x75, 0xc3, 0x8f, 0xe8, 0x71, 0x08, 0x04, 0x2a, 0x0d, 0x2b, 0xa0, 0x59, 0x28, 0x2f, 0x84, 0xbb, 0x5a, 0x0f, 0x2f, 0xdf, 0x81, 0x42, 0xd4, 0x3d, 0x68, 0x11, 0xd2, 0x9e, 0xaf, 0xb9, 0x3e, 0x8d, 0xc2, 0xb4, 0xc2, 0x1e, 0x90, 0x0c, 0x49, 0x6c, 0xb5, 0x69, 0x96, 0x4b, 0x2b, 0xe4, 0x27, 0xfa, 0xa9, 0xc1, 0x84, 0x93, 0x74, 0xc2, 0x4f, 0x8d, 0xae, 0x68, 0x84, 0x79, 0x78, 0xde, 0xcb, 0x2f, 0xc0, 0x6c, 0x64, 0x02, 0x93, 0xbe, 0x7a, 0xf5, 0xe7, 0xe0, 0x91, 0xb1, 0xd4, 0xe8, 0x3a, 0x2c, 0xf6, 0x2d, 0xc3, 0xf2, 0xb1, 0xeb, 0xb8, 0x98, 0x44, 0x2c, 0x7b, 0x55, 0xf1, 0x5f, 0x66, 0x8e, 0x89, 0xb9, 0xfd, 0xb0, 0x36, 0x63, 0x51, 0x16, 0xfa, 0xa3, 0xc2, 0x67, 0xb3, 0x99, 0x7f, 0x9d, 0x91, 0xef, 0xde, 0xbd, 0x7b, 0x37, 0xb1, 0xfa, 0x85, 0x69, 0x58, 0x1c, 0xb7, 0x67, 0xc6, 0x6e, 0xdf, 0x25, 0x98, 0xb6, 0xfa, 0xbd, 0x03, 0xec, 0x52, 0x27, 0xa5, 0x15, 0xfe, 0x84, 0xca, 0x90, 0x36, 0xb5, 0x03, 0x6c, 0x16, 0x53, 0x67, 0xa5, 0xb5, 0xc2, 0xc6, 0x73, 0x13, 0xed, 0xca, 0xf5, 0x6d, 0x02, 0x51, 0x18, 0x12, 0x7d, 0x12, 0x52, 0x3c, 0x45, 0x13, 0x86, 0x67, 0x27, 0x63, 0x20, 0x7b, 0x49, 0xa1, 0x38, 0xf4, 0x28, 0x64, 0xc9, 0x5f, 0x16, 0x1b, 0xd3, 0xd4, 0xe6, 0x0c, 0x11, 0x90, 0xb8, 0x40, 0xcb, 0x90, 0xa1, 0xdb, 0xa4, 0x8d, 0x45, 0x69, 0x0b, 0x9e, 0x49, 0x60, 0xb5, 0x71, 0x47, 0xeb, 0x9b, 0xbe, 0x7a, 0x4b, 0x33, 0xfb, 0x98, 0x06, 0x7c, 0x56, 0xc9, 0x73, 0xe1, 0x67, 0x88, 0x0c, 0x9d, 0x81, 0x1c, 0xdb, 0x55, 0x86, 0xd5, 0xc6, 0xaf, 0xd2, 0xec, 0x99, 0x56, 0xd8, 0x46, 0xab, 0x13, 0x09, 0x79, 0xfd, 0x0d, 0xcf, 0xb6, 0x44, 0x68, 0xd2, 0x57, 0x10, 0x01, 0x7d, 0xfd, 0x0b, 0xc3, 0x89, 0xfb, 0xb1, 0xf1, 0xd3, 0x1b, 0x8e, 0xa9, 0xd5, 0x6f, 0x25, 0x20, 0x45, 0xf3, 0xc5, 0x1c, 0xe4, 0xf6, 0x5e, 0x69, 0x56, 0xd5, 0xad, 0xc6, 0xfe, 0xe6, 0x76, 0x55, 0x96, 0x50, 0x01, 0x80, 0x0a, 0xae, 0x6e, 0x37, 0xca, 0x7b, 0x72, 0x22, 0x78, 0xae, 0xef, 0xee, 0x5d, 0xba, 0x20, 0x27, 0x03, 0xc0, 0x3e, 0x13, 0xa4, 0xc2, 0x0a, 0xcf, 0x6f, 0xc8, 0x69, 0x24, 0x43, 0x9e, 0x11, 0xd4, 0xaf, 0x57, 0xb7, 0x2e, 0x5d, 0x90, 0xa7, 0xa3, 0x92, 0xe7, 0x37, 0xe4, 0x19, 0x34, 0x0b, 0x59, 0x2a, 0xd9, 0x6c, 0x34, 0xb6, 0xe5, 0x4c, 0xc0, 0xd9, 0xda, 0x53, 0xea, 0xbb, 0x35, 0x39, 0x1b, 0x70, 0xd6, 0x94, 0xc6, 0x7e, 0x53, 0x86, 0x80, 0x61, 0xa7, 0xda, 0x6a, 0x95, 0x6b, 0x55, 0x39, 0x17, 0x68, 0x6c, 0xbe, 0xb2, 0x57, 0x6d, 0xc9, 0xf9, 0x88, 0x59, 0xcf, 0x6f, 0xc8, 0xb3, 0xc1, 0x2b, 0xaa, 0xbb, 0xfb, 0x3b, 0x72, 0x01, 0xcd, 0xc3, 0x2c, 0x7b, 0x85, 0x30, 0x62, 0x6e, 0x48, 0x74, 0xe9, 0x82, 0x2c, 0x0f, 0x0c, 0x61, 0x2c, 0xf3, 0x11, 0xc1, 0xa5, 0x0b, 0x32, 0x5a, 0xad, 0x40, 0x9a, 0x46, 0x17, 0x42, 0x50, 0xd8, 0x2e, 0x6f, 0x56, 0xb7, 0xd5, 0x46, 0x73, 0xaf, 0xde, 0xd8, 0x2d, 0x6f, 0xcb, 0xd2, 0x40, 0xa6, 0x54, 0x3f, 0xbd, 0x5f, 0x57, 0xaa, 0x5b, 0x72, 0x22, 0x2c, 0x6b, 0x56, 0xcb, 0x7b, 0xd5, 0x2d, 0x39, 0xb9, 0xaa, 0xc3, 0xe2, 0xb8, 0x3c, 0x39, 0x76, 0x67, 0x84, 0x96, 0x38, 0x71, 0xcc, 0x12, 0x53, 0xae, 0x91, 0x25, 0xfe, 0xb2, 0x04, 0x0b, 0x63, 0x6a, 0xc5, 0xd8, 0x97, 0xbc, 0x04, 0x69, 0x16, 0xa2, 0xac, 0x7a, 0x3e, 0x33, 0xb6, 0xe8, 0xd0, 0x80, 0x1d, 0xa9, 0xa0, 0x14, 0x17, 0xee, 0x20, 0x92, 0xc7, 0x74, 0x10, 0x84, 0x62, 0xc4, 0xc8, 0xd7, 0x24, 0x28, 0x1e, 0xc7, 0x1d, 0x93, 0x28, 0x12, 0x91, 0x44, 0x71, 0x65, 0xd8, 0x80, 0x73, 0xc7, 0xcf, 0x61, 0xc4, 0x8a, 0xb7, 0x24, 0x58, 0x1a, 0xdf, 0x68, 0x8d, 0xb5, 0xe1, 0x93, 0x30, 0xdd, 0xc3, 0xfe, 0xa1, 0x2d, 0x9a, 0x8d, 0xa7, 0xc6, 0x94, 0x30, 0x32, 0x3c, 0xec, 0x2b, 0x8e, 0x0a, 0xd7, 0xc0, 0xe4, 0x71, 0xdd, 0x12, 0xb3, 0x66, 0xc4, 0xd2, 0xcf, 0x27, 0xe0, 0x91, 0xb1, 0xe4, 0x63, 0x0d, 0x7d, 0x0c, 0xc0, 0xb0, 0x9c, 0xbe, 0xcf, 0x1a, 0x0a, 0x96, 0x9f, 0xb2, 0x54, 0x42, 0xf7, 0x3e, 0xc9, 0x3d, 0x7d, 0x3f, 0x18, 0x4f, 0xd2, 0x71, 0x60, 0x22, 0xaa, 0x70, 0x79, 0x60, 0x68, 0x8a, 0x1a, 0xba, 0x72, 0xcc, 0x4c, 0x47, 0x6a, 0xf5, 0xc7, 0x40, 0xd6, 0x4d, 0x03, 0x5b, 0xbe, 0xea, 0xf9, 0x2e, 0xd6, 0x7a, 0x86, 0xd5, 0xa5, 0x09, 0x38, 0x53, 0x4a, 0x77, 0x34, 0xd3, 0xc3, 0xca, 0x1c, 0x1b, 0x6e, 0x89, 0x51, 0x82, 0xa0, 0x35, 0xce, 0x0d, 0x21, 0xa6, 0x23, 0x08, 0x36, 0x1c, 0x20, 0x56, 0xbf, 0x99, 0x81, 0x5c, 0xa8, 0x2d, 0x45, 0xe7, 0x20, 0x7f, 0x43, 0xbb, 0xa5, 0xa9, 0xe2, 0xa8, 0xc1, 0x3c, 0x91, 0x23, 0xb2, 0x26, 0x3f, 0x6e, 0x7c, 0x0c, 0x16, 0xa9, 0x8a, 0xdd, 0xf7, 0xb1, 0xab, 0xea, 0xa6, 0xe6, 0x79, 0xd4, 0x69, 0x19, 0xaa, 0x8a, 0xc8, 0x58, 0x83, 0x0c, 0x55, 0xc4, 0x08, 0xba, 0x08, 0x0b, 0x14, 0xd1, 0xeb, 0x9b, 0xbe, 0xe1, 0x98, 0x58, 0x25, 0x87, 0x1f, 0x8f, 0x26, 0xe2, 0xc0, 0xb2, 0x79, 0xa2, 0xb1, 0xc3, 0x15, 0x88, 0x45, 0x1e, 0xda, 0x82, 0xc7, 0x28, 0xac, 0x8b, 0x2d, 0xec, 0x6a, 0x3e, 0x56, 0xf1, 0xe7, 0xfa, 0x9a, 0xe9, 0xa9, 0x9a, 0xd5, 0x56, 0x0f, 0x35, 0xef, 0xb0, 0xb8, 0x48, 0x08, 0x36, 0x13, 0x45, 0x49, 0x39, 0x4d, 0x14, 0x6b, 0x5c, 0xaf, 0x4a, 0xd5, 0xca, 0x56, 0xfb, 0x53, 0x9a, 0x77, 0x88, 0x4a, 0xb0, 0x44, 0x59, 0x3c, 0xdf, 0x35, 0xac, 0xae, 0xaa, 0x1f, 0x62, 0xfd, 0xa6, 0xda, 0xf7, 0x3b, 0x97, 0x8b, 0x8f, 0x86, 0xdf, 0x4f, 0x2d, 0x6c, 0x51, 0x9d, 0x0a, 0x51, 0xd9, 0xf7, 0x3b, 0x97, 0x51, 0x0b, 0xf2, 0x64, 0x31, 0x7a, 0xc6, 0x1d, 0xac, 0x76, 0x6c, 0x97, 0x56, 0x96, 0xc2, 0x98, 0x9d, 0x1d, 0xf2, 0xe0, 0x7a, 0x83, 0x03, 0x76, 0xec, 0x36, 0x2e, 0xa5, 0x5b, 0xcd, 0x6a, 0x75, 0x4b, 0xc9, 0x09, 0x96, 0xab, 0xb6, 0x4b, 0x02, 0xaa, 0x6b, 0x07, 0x0e, 0xce, 0xb1, 0x80, 0xea, 0xda, 0xc2, 0xbd, 0x17, 0x61, 0x41, 0xd7, 0xd9, 0x9c, 0x0d, 0x5d, 0xe5, 0x47, 0x14, 0xaf, 0x28, 0x47, 0x9c, 0xa5, 0xeb, 0x35, 0xa6, 0xc0, 0x63, 0xdc, 0x43, 0x2f, 0xc2, 0x23, 0x03, 0x67, 0x85, 0x81, 0xf3, 0x23, 0xb3, 0x1c, 0x86, 0x5e, 0x84, 0x05, 0xe7, 0x68, 0x14, 0x88, 0x22, 0x6f, 0x74, 0x8e, 0x86, 0x61, 0x2f, 0xc0, 0xa2, 0x73, 0xe8, 0x8c, 0xe2, 0x16, 0xc2, 0x38, 0xe4, 0x1c, 0x3a, 0xc3, 0xc0, 0x27, 0xe9, 0x79, 0xd5, 0xc5, 0xba, 0xe6, 0xe3, 0x76, 0xf1, 0x54, 0x58, 0x3d, 0x34, 0x80, 0xce, 0x83, 0xac, 0xeb, 0x2a, 0xb6, 0xb4, 0x03, 0x13, 0xab, 0x9a, 0x8b, 0x2d, 0xcd, 0x2b, 0x9e, 0x09, 0x2b, 0x17, 0x74, 0xbd, 0x4a, 0x47, 0xcb, 0x74, 0x10, 0x3d, 0x0b, 0xf3, 0xf6, 0xc1, 0x0d, 0x9d, 0x85, 0xa4, 0xea, 0xb8, 0xb8, 0x63, 0xbc, 0x5a, 0x7c, 0x82, 0xfa, 0x77, 0x8e, 0x0c, 0xd0, 0x80, 0x6c, 0x52, 0x31, 0x7a, 0x06, 0x64, 0xdd, 0x3b, 0xd4, 0x5c, 0x87, 0xf6, 0x04, 0x9e, 0xa3, 0xe9, 0xb8, 0xf8, 0x24, 0x53, 0x65, 0xf2, 0x5d, 0x21, 0x26, 0x5b, 0xc2, 0xbb, 0x6d, 0x74, 0x7c, 0xc1, 0xf8, 0x34, 0xdb, 0x12, 0x54, 0xc6, 0xd9, 0xd6, 0x40, 0x26, 0xae, 0x88, 0xbc, 0x78, 0x8d, 0xaa, 0x15, 0x9c, 0x43, 0x27, 0xfc, 0xde, 0xc7, 0x61, 0x96, 0x68, 0x0e, 0x5e, 0xfa, 0x0c, 0xeb, 0x67, 0x9c, 0xc3, 0xd0, 0x1b, 0x3f, 0xb0, 0xd6, 0x72, 0xb5, 0x04, 0xf9, 0x70, 0x7c, 0xa2, 0x2c, 0xb0, 0x08, 0x95, 0x25, 0x52, 0xeb, 0x2b, 0x8d, 0x2d, 0x52, 0xa5, 0x3f, 0x5b, 0x95, 0x13, 0xa4, 0x5b, 0xd8, 0xae, 0xef, 0x55, 0x55, 0x65, 0x7f, 0x77, 0xaf, 0xbe, 0x53, 0x95, 0x93, 0xe1, 0xb6, 0xf4, 0xbb, 0x09, 0x28, 0x44, 0x4f, 0x18, 0xe8, 0x27, 0xe1, 0x94, 0xb8, 0x0e, 0xf0, 0xb0, 0xaf, 0xde, 0x36, 0x5c, 0xba, 0x65, 0x7a, 0x1a, 0xeb, 0xb0, 0x83, 0x45, 0x5b, 0xe4, 0x5a, 0x2d, 0xec, 0xbf, 0x6c, 0xb8, 0x64, 0x43, 0xf4, 0x34, 0x1f, 0x6d, 0xc3, 0x19, 0xcb, 0x56, 0x3d, 0x5f, 0xb3, 0xda, 0x9a, 0xdb, 0x56, 0x07, 0x17, 0x31, 0xaa, 0xa6, 0xeb, 0xd8, 0xf3, 0x6c, 0x56, 0xaa, 0x02, 0x96, 0x8f, 0x58, 0x76, 0x8b, 0x2b, 0x0f, 0x72, 0x78, 0x99, 0xab, 0x0e, 0x05, 0x58, 0xf2, 0xb8, 0x00, 0x7b, 0x14, 0xb2, 0x3d, 0xcd, 0x51, 0xb1, 0xe5, 0xbb, 0x47, 0xb4, 0xaf, 0xcc, 0x28, 0x99, 0x9e, 0xe6, 0x54, 0xc9, 0xf3, 0x87, 0xd3, 0xde, 0xff, 0x73, 0x12, 0xf2, 0xe1, 0xde, 0x92, 0xb4, 0xea, 0x3a, 0xad, 0x23, 0x12, 0xcd, 0x34, 0x8f, 0x3f, 0xb4, 0x13, 0x5d, 0xaf, 0x90, 0x02, 0x53, 0x9a, 0x66, 0x1d, 0x9f, 0xc2, 0x90, 0xa4, 0xb8, 0x93, 0xdc, 0x82, 0xd9, 0x29, 0x26, 0xa3, 0xf0, 0x27, 0x54, 0x83, 0xe9, 0x1b, 0x1e, 0xe5, 0x9e, 0xa6, 0xdc, 0x4f, 0x3c, 0x9c, 0xfb, 0x5a, 0x8b, 0x92, 0x67, 0xaf, 0xb5, 0xd4, 0xdd, 0x86, 0xb2, 0x53, 0xde, 0x56, 0x38, 0x1c, 0x9d, 0x86, 0x94, 0xa9, 0xdd, 0x39, 0x8a, 0x96, 0x22, 0x2a, 0x9a, 0xd4, 0xf1, 0xa7, 0x21, 0x75, 0x1b, 0x6b, 0x37, 0xa3, 0x05, 0x80, 0x8a, 0x3e, 0xc0, 0xd0, 0x3f, 0x0f, 0x69, 0xea, 0x2f, 0x04, 0xc0, 0x3d, 0x26, 0x4f, 0xa1, 0x0c, 0xa4, 0x2a, 0x0d, 0x85, 0x84, 0xbf, 0x0c, 0x79, 0x26, 0x55, 0x9b, 0xf5, 0x6a, 0xa5, 0x2a, 0x27, 0x56, 0x2f, 0xc2, 0x34, 0x73, 0x02, 0xd9, 0x1a, 0x81, 0x1b, 0xe4, 0x29, 0xfe, 0xc8, 0x39, 0x24, 0x31, 0xba, 0xbf, 0xb3, 0x59, 0x55, 0xe4, 0x44, 0x78, 0x79, 0x3d, 0xc8, 0x87, 0xdb, 0xca, 0x0f, 0x27, 0xa6, 0xfe, 0x56, 0x82, 0x5c, 0xa8, 0x4d, 0x24, 0x0d, 0x8a, 0x66, 0x9a, 0xf6, 0x6d, 0x55, 0x33, 0x0d, 0xcd, 0xe3, 0x41, 0x01, 0x54, 0x54, 0x26, 0x92, 0x49, 0x17, 0xed, 0x43, 0x31, 0xfe, 0x4d, 0x09, 0xe4, 0xe1, 0x16, 0x73, 0xc8, 0x40, 0xe9, 0xc7, 0x6a, 0xe0, 0x1b, 0x12, 0x14, 0xa2, 0x7d, 0xe5, 0x90, 0x79, 0xe7, 0x7e, 0xac, 0xe6, 0xbd, 0x93, 0x80, 0xd9, 0x48, 0x37, 0x39, 0xa9, 0x75, 0x9f, 0x83, 0x79, 0xa3, 0x8d, 0x7b, 0x8e, 0xed, 0x63, 0x4b, 0x3f, 0x52, 0x4d, 0x7c, 0x0b, 0x9b, 0xc5, 0x55, 0x9a, 0x28, 0xce, 0x3f, 0xbc, 0x5f, 0x5d, 0xaf, 0x0f, 0x70, 0xdb, 0x04, 0x56, 0x5a, 0xa8, 0x6f, 0x55, 0x77, 0x9a, 0x8d, 0xbd, 0xea, 0x6e, 0xe5, 0x15, 0x75, 0x7f, 0xf7, 0xa7, 0x77, 0x1b, 0x2f, 0xef, 0x2a, 0xb2, 0x31, 0xa4, 0xf6, 0x01, 0x6e, 0xf5, 0x26, 0xc8, 0xc3, 0x46, 0xa1, 0x53, 0x30, 0xce, 0x2c, 0x79, 0x0a, 0x2d, 0xc0, 0xdc, 0x6e, 0x43, 0x6d, 0xd5, 0xb7, 0xaa, 0x6a, 0xf5, 0xea, 0xd5, 0x6a, 0x65, 0xaf, 0xc5, 0x0e, 0xf0, 0x81, 0xf6, 0x5e, 0x74, 0x53, 0xbf, 0x9e, 0x84, 0x85, 0x31, 0x96, 0xa0, 0x32, 0x3f, 0x3b, 0xb0, 0xe3, 0xcc, 0x47, 0x27, 0xb1, 0x7e, 0x9d, 0x94, 0xfc, 0xa6, 0xe6, 0xfa, 0xfc, 0xa8, 0xf1, 0x0c, 0x10, 0x2f, 0x59, 0xbe, 0xd1, 0x31, 0xb0, 0xcb, 0xef, 0x3b, 0xd8, 0x81, 0x62, 0x6e, 0x20, 0x67, 0x57, 0x1e, 0x3f, 0x01, 0xc8, 0xb1, 0x3d, 0xc3, 0x37, 0x6e, 0x61, 0xd5, 0xb0, 0xc4, 0xe5, 0x08, 0x39, 0x60, 0xa4, 0x14, 0x59, 0x8c, 0xd4, 0x2d, 0x3f, 0xd0, 0xb6, 0x70, 0x57, 0x1b, 0xd2, 0x26, 0x09, 0x3c, 0xa9, 0xc8, 0x62, 0x24, 0xd0, 0x3e, 0x07, 0xf9, 0xb6, 0xdd, 0x27, 0x5d, 0x17, 0xd3, 0x23, 0xf5, 0x42, 0x52, 0x72, 0x4c, 0x16, 0xa8, 0xf0, 0x7e, 0x7a, 0x70, 0x2b, 0x93, 0x57, 0x72, 0x4c, 0xc6, 0x54, 0x9e, 0x86, 0x39, 0xad, 0xdb, 0x75, 0x09, 0xb9, 0x20, 0x62, 0x27, 0x84, 0x42, 0x20, 0xa6, 0x8a, 0xcb, 0xd7, 0x20, 0x23, 0xfc, 0x40, 0x4a, 0x32, 0xf1, 0x84, 0xea, 0xb0, 0x9b, 0xb9, 0xc4, 0x5a, 0x56, 0xc9, 0x58, 0x62, 0xf0, 0x1c, 0xe4, 0x0d, 0x4f, 0x1d, 0x5c, 0x32, 0x27, 0xce, 0x26, 0xd6, 0x32, 0x4a, 0xce, 0xf0, 0x82, 0x0b, 0xba, 0xd5, 0xb7, 0x12, 0x50, 0x88, 0x5e, 0x92, 0xa3, 0x2d, 0xc8, 0x98, 0xb6, 0xae, 0xd1, 0xd0, 0x62, 0x5f, 0x68, 0xd6, 0x62, 0xee, 0xd5, 0xd7, 0xb7, 0xb9, 0xbe, 0x12, 0x20, 0x97, 0xff, 0x51, 0x82, 0x8c, 0x10, 0xa3, 0x25, 0x48, 0x39, 0x9a, 0x7f, 0x48, 0xe9, 0xd2, 0x9b, 0x09, 0x59, 0x52, 0xe8, 0x33, 0x91, 0x7b, 0x8e, 0x66, 0xd1, 0x10, 0xe0, 0x72, 0xf2, 0x4c, 0xd6, 0xd5, 0xc4, 0x5a, 0x9b, 0x1e, 0x3f, 0xec, 0x5e, 0x0f, 0x5b, 0xbe, 0x27, 0xd6, 0x95, 0xcb, 0x2b, 0x5c, 0x8c, 0x9e, 0x83, 0x79, 0xdf, 0xd5, 0x0c, 0x33, 0xa2, 0x9b, 0xa2, 0xba, 0xb2, 0x18, 0x08, 0x94, 0x4b, 0x70, 0x5a, 0xf0, 0xb6, 0xb1, 0xaf, 0xe9, 0x87, 0xb8, 0x3d, 0x00, 0x4d, 0xd3, 0x1b, 0xd8, 0x53, 0x5c, 0x61, 0x8b, 0x8f, 0x0b, 0xec, 0xea, 0xf7, 0x25, 0x98, 0x17, 0x07, 0xa6, 0x76, 0xe0, 0xac, 0x1d, 0x00, 0xcd, 0xb2, 0x6c, 0x3f, 0xec, 0xae, 0xd1, 0x50, 0x1e, 0xc1, 0xad, 0x97, 0x03, 0x90, 0x12, 0x22, 0x58, 0xee, 0x01, 0x0c, 0x46, 0x8e, 0x75, 0xdb, 0x19, 0xc8, 0xf1, 0x2f, 0x20, 0xf4, 0x33, 0x1a, 0x3b, 0x62, 0x03, 0x13, 0x91, 0x93, 0x15, 0x5a, 0x84, 0xf4, 0x01, 0xee, 0x1a, 0x16, 0xbf, 0xd7, 0x64, 0x0f, 0xe2, 0xae, 0x36, 0x15, 0xdc, 0xd5, 0x6e, 0x5e, 0x87, 0x05, 0xdd, 0xee, 0x0d, 0x9b, 0xbb, 0x29, 0x0f, 0x1d, 0xf3, 0xbd, 0x4f, 0x49, 0x9f, 0x85, 0x41, 0x8b, 0xf9, 0xe5, 0x44, 0xb2, 0xd6, 0xdc, 0xfc, 0x6a, 0x62, 0xb9, 0xc6, 0x70, 0x4d, 0x31, 0x4d, 0x05, 0x77, 0x4c, 0xac, 0x13, 0xd3, 0xe1, 0x87, 0x4f, 0xc1, 0x47, 0xbb, 0x86, 0x7f, 0xd8, 0x3f, 0x58, 0xd7, 0xed, 0xde, 0xf9, 0xae, 0xdd, 0xb5, 0x07, 0x9f, 0x0d, 0xc9, 0x13, 0x7d, 0xa0, 0xbf, 0xf8, 0xa7, 0xc3, 0x6c, 0x20, 0x5d, 0x8e, 0xfd, 0xce, 0x58, 0xda, 0x85, 0x05, 0xae, 0xac, 0xd2, 0x6f, 0x17, 0xec, 0x08, 0x81, 0x1e, 0x7a, 0xff, 0x53, 0xfc, 0xc6, 0xbb, 0xb4, 0x56, 0x2b, 0xf3, 0x1c, 0x4a, 0xc6, 0xd8, 0x29, 0xa3, 0xa4, 0xc0, 0x23, 0x11, 0x3e, 0xb6, 0x2f, 0xb1, 0x1b, 0xc3, 0xf8, 0x5d, 0xce, 0xb8, 0x10, 0x62, 0x6c, 0x71, 0x68, 0xa9, 0x02, 0xb3, 0x27, 0xe1, 0xfa, 0x7b, 0xce, 0x95, 0xc7, 0x61, 0x92, 0x1a, 0xcc, 0x51, 0x12, 0xbd, 0xef, 0xf9, 0x76, 0x8f, 0x26, 0xbd, 0x87, 0xd3, 0xfc, 0xc3, 0xbb, 0x6c, 0xa3, 0x14, 0x08, 0xac, 0x12, 0xa0, 0x4a, 0x25, 0xa0, 0x9f, 0x6b, 0xda, 0x58, 0x37, 0x63, 0x18, 0xde, 0xe6, 0x86, 0x04, 0xfa, 0xa5, 0xcf, 0xc0, 0x22, 0xf9, 0x4d, 0x73, 0x52, 0xd8, 0x92, 0xf8, 0xdb, 0xae, 0xe2, 0xf7, 0x5f, 0x63, 0x7b, 0x71, 0x21, 0x20, 0x08, 0xd9, 0x14, 0x5a, 0xc5, 0x2e, 0xf6, 0x7d, 0xec, 0x7a, 0xaa, 0x66, 0x8e, 0x33, 0x2f, 0x74, 0x5d, 0x50, 0xfc, 0xe2, 0x7b, 0xd1, 0x55, 0xac, 0x31, 0x64, 0xd9, 0x34, 0x4b, 0xfb, 0x70, 0x6a, 0x4c, 0x54, 0x4c, 0xc0, 0xf9, 0x3a, 0xe7, 0x5c, 0x1c, 0x89, 0x0c, 0x42, 0xdb, 0x04, 0x21, 0x0f, 0xd6, 0x72, 0x02, 0xce, 0xdf, 0xe3, 0x9c, 0x88, 0x63, 0xc5, 0x92, 0x12, 0xc6, 0x6b, 0x30, 0x7f, 0x0b, 0xbb, 0x07, 0xb6, 0xc7, 0xaf, 0x68, 0x26, 0xa0, 0x7b, 0x83, 0xd3, 0xcd, 0x71, 0x20, 0xbd, 0xb3, 0x21, 0x5c, 0x2f, 0x42, 0xa6, 0xa3, 0xe9, 0x78, 0x02, 0x8a, 0x2f, 0x71, 0x8a, 0x19, 0xa2, 0x4f, 0xa0, 0x65, 0xc8, 0x77, 0x6d, 0x5e, 0x96, 0xe2, 0xe1, 0x6f, 0x72, 0x78, 0x4e, 0x60, 0x38, 0x85, 0x63, 0x3b, 0x7d, 0x93, 0xd4, 0xac, 0x78, 0x8a, 0xdf, 0x17, 0x14, 0x02, 0xc3, 0x29, 0x4e, 0xe0, 0xd6, 0x3f, 0x10, 0x14, 0x5e, 0xc8, 0x9f, 0x2f, 0x41, 0xce, 0xb6, 0xcc, 0x23, 0xdb, 0x9a, 0xc4, 0x88, 0x3f, 0xe4, 0x0c, 0xc0, 0x21, 0x84, 0xe0, 0x0a, 0x64, 0x27, 0x5d, 0x88, 0x3f, 0x7a, 0x4f, 0x6c, 0x0f, 0xb1, 0x02, 0x35, 0x98, 0x13, 0x09, 0xca, 0xb0, 0xad, 0x09, 0x28, 0xfe, 0x98, 0x53, 0x14, 0x42, 0x30, 0x3e, 0x0d, 0x1f, 0x7b, 0x7e, 0x17, 0x4f, 0x42, 0xf2, 0x96, 0x98, 0x06, 0x87, 0x70, 0x57, 0x1e, 0x60, 0x4b, 0x3f, 0x9c, 0x8c, 0xe1, 0x2b, 0xc2, 0x95, 0x02, 0x43, 0x28, 0x2a, 0x30, 0xdb, 0xd3, 0x5c, 0xef, 0x50, 0x33, 0x27, 0x5a, 0x8e, 0x3f, 0xe1, 0x1c, 0xf9, 0x00, 0xc4, 0x3d, 0xd2, 0xb7, 0x4e, 0x42, 0xf3, 0x55, 0xe1, 0x91, 0x10, 0x8c, 0x6f, 0x3d, 0xcf, 0xa7, 0xf7, 0x59, 0x27, 0x61, 0xfb, 0x9a, 0xd8, 0x7a, 0x0c, 0xbb, 0x13, 0x66, 0xbc, 0x02, 0x59, 0xcf, 0xb8, 0x33, 0x11, 0xcd, 0x9f, 0x8a, 0x95, 0xa6, 0x00, 0x02, 0x7e, 0x05, 0x4e, 0x8f, 0x2d, 0x13, 0x13, 0x90, 0xfd, 0x19, 0x27, 0x5b, 0x1a, 0x53, 0x2a, 0x78, 0x4a, 0x38, 0x29, 0xe5, 0x9f, 0x8b, 0x94, 0x80, 0x87, 0xb8, 0x9a, 0xe4, 0xa0, 0xe0, 0x69, 0x9d, 0x93, 0x79, 0xed, 0x2f, 0x84, 0xd7, 0x18, 0x36, 0xe2, 0xb5, 0x3d, 0x58, 0xe2, 0x8c, 0x27, 0x5b, 0xd7, 0xaf, 0x8b, 0xc4, 0xca, 0xd0, 0xfb, 0xd1, 0xd5, 0xfd, 0x19, 0x58, 0x0e, 0xdc, 0x29, 0x3a, 0x52, 0x4f, 0xed, 0x69, 0xce, 0x04, 0xcc, 0xdf, 0xe0, 0xcc, 0x22, 0xe3, 0x07, 0x2d, 0xad, 0xb7, 0xa3, 0x39, 0x84, 0xfc, 0x3a, 0x14, 0x05, 0x79, 0xdf, 0x72, 0xb1, 0x6e, 0x77, 0x2d, 0xe3, 0x0e, 0x6e, 0x4f, 0x40, 0xfd, 0x97, 0x43, 0x4b, 0xb5, 0x1f, 0x82, 0x13, 0xe6, 0x3a, 0xc8, 0x41, 0xaf, 0xa2, 0x1a, 0x3d, 0xc7, 0x76, 0xfd, 0x18, 0xc6, 0x6f, 0x8a, 0x95, 0x0a, 0x70, 0x75, 0x0a, 0x2b, 0x55, 0xa1, 0x40, 0x1f, 0x27, 0x0d, 0xc9, 0xbf, 0xe2, 0x44, 0xb3, 0x03, 0x14, 0x4f, 0x1c, 0xba, 0xdd, 0x73, 0x34, 0x77, 0x92, 0xfc, 0xf7, 0xd7, 0x22, 0x71, 0x70, 0x08, 0x4f, 0x1c, 0xfe, 0x91, 0x83, 0x49, 0xb5, 0x9f, 0x80, 0xe1, 0x5b, 0x22, 0x71, 0x08, 0x0c, 0xa7, 0x10, 0x0d, 0xc3, 0x04, 0x14, 0x7f, 0x23, 0x28, 0x04, 0x86, 0x50, 0x7c, 0x7a, 0x50, 0x68, 0x5d, 0xdc, 0x35, 0x3c, 0xdf, 0x65, 0x7d, 0xf0, 0xc3, 0xa9, 0xbe, 0xfd, 0x5e, 0xb4, 0x09, 0x53, 0x42, 0xd0, 0xd2, 0x35, 0x98, 0x1b, 0x6a, 0x31, 0x50, 0xdc, 0xff, 0x7e, 0x14, 0x7f, 0xfe, 0x7d, 0x9e, 0x8c, 0xa2, 0x1d, 0x46, 0x69, 0x9b, 0xac, 0x7b, 0xb4, 0x0f, 0x88, 0x27, 0x7b, 0xed, 0xfd, 0x60, 0xe9, 0x23, 0x6d, 0x40, 0xe9, 0x2a, 0xcc, 0x46, 0x7a, 0x80, 0x78, 0xaa, 0x5f, 0xe0, 0x54, 0xf9, 0x70, 0x0b, 0x50, 0xba, 0x08, 0x29, 0x52, 0xcf, 0xe3, 0xe1, 0xbf, 0xc8, 0xe1, 0x54, 0xbd, 0xf4, 0x09, 0xc8, 0x88, 0x3a, 0x1e, 0x0f, 0xfd, 0x25, 0x0e, 0x0d, 0x20, 0x04, 0x2e, 0x6a, 0x78, 0x3c, 0xfc, 0x97, 0x05, 0x5c, 0x40, 0x08, 0x7c, 0x72, 0x17, 0xfe, 0xdd, 0xaf, 0xa4, 0x78, 0x1e, 0x16, 0xbe, 0xbb, 0x02, 0x33, 0xbc, 0x78, 0xc7, 0xa3, 0x3f, 0xcf, 0x5f, 0x2e, 0x10, 0xa5, 0x17, 0x20, 0x3d, 0xa1, 0xc3, 0x7f, 0x95, 0x43, 0x99, 0x7e, 0xa9, 0x02, 0xb9, 0x50, 0xc1, 0x8e, 0x87, 0xff, 0x1a, 0x87, 0x87, 0x51, 0xc4, 0x74, 0x5e, 0xb0, 0xe3, 0x09, 0x7e, 0x5d, 0x98, 0xce, 0x11, 0xc4, 0x6d, 0xa2, 0x56, 0xc7, 0xa3, 0x7f, 0x43, 0x78, 0x5d, 0x40, 0x4a, 0x2f, 0x41, 0x36, 0xc8, 0xbf, 0xf1, 0xf8, 0xdf, 0xe4, 0xf8, 0x01, 0x86, 0x78, 0x20, 0x94, 0xff, 0xe3, 0x29, 0x7e, 0x4b, 0x78, 0x20, 0x84, 0x22, 0xdb, 0x68, 0xb8, 0xa6, 0xc7, 0x33, 0xfd, 0xb6, 0xd8, 0x46, 0x43, 0x25, 0x9d, 0xac, 0x26, 0x4d, 0x83, 0xf1, 0x14, 0xbf, 0x23, 0x56, 0x93, 0xea, 0x13, 0x33, 0x86, 0x8b, 0x64, 0x3c, 0xc7, 0xef, 0x0a, 0x33, 0x86, 0x6a, 0x64, 0xa9, 0x09, 0x68, 0xb4, 0x40, 0xc6, 0xf3, 0x7d, 0x81, 0xf3, 0xcd, 0x8f, 0xd4, 0xc7, 0xd2, 0xcb, 0xb0, 0x34, 0xbe, 0x38, 0xc6, 0xb3, 0x7e, 0xf1, 0xfd, 0xa1, 0xe3, 0x4c, 0xb8, 0x36, 0x96, 0xf6, 0x06, 0x59, 0x36, 0x5c, 0x18, 0xe3, 0x69, 0x5f, 0x7f, 0x3f, 0x9a, 0x68, 0xc3, 0x75, 0xb1, 0x54, 0x06, 0x18, 0xd4, 0xa4, 0x78, 0xae, 0x37, 0x38, 0x57, 0x08, 0x44, 0xb6, 0x06, 0x2f, 0x49, 0xf1, 0xf8, 0x2f, 0x89, 0xad, 0xc1, 0x11, 0x64, 0x6b, 0x88, 0x6a, 0x14, 0x8f, 0x7e, 0x53, 0x6c, 0x0d, 0x01, 0x29, 0x5d, 0x81, 0x8c, 0xd5, 0x37, 0x4d, 0x12, 0x5b, 0xe8, 0xe1, 0xff, 0xce, 0x54, 0xfc, 0xb7, 0x07, 0x1c, 0x2c, 0x00, 0xa5, 0x8b, 0x90, 0xc6, 0xbd, 0x03, 0xdc, 0x8e, 0x43, 0xfe, 0xfb, 0x03, 0x91, 0x4f, 0x88, 0x76, 0xe9, 0x25, 0x00, 0x76, 0x98, 0xa6, 0x5f, 0x89, 0x62, 0xb0, 0xff, 0xf1, 0x80, 0xff, 0xa7, 0xc4, 0x00, 0x32, 0x20, 0x60, 0xff, 0x77, 0xf1, 0x70, 0x82, 0xf7, 0xa2, 0x04, 0xf4, 0x00, 0xfe, 0x22, 0xcc, 0xdc, 0xf0, 0x6c, 0xcb, 0xd7, 0xba, 0x71, 0xe8, 0xff, 0xe4, 0x68, 0xa1, 0x4f, 0x1c, 0xd6, 0xb3, 0x5d, 0xec, 0x6b, 0x5d, 0x2f, 0x0e, 0xfb, 0x5f, 0x1c, 0x1b, 0x00, 0x08, 0x58, 0xd7, 0x3c, 0x7f, 0x92, 0x79, 0xff, 0xb7, 0x00, 0x0b, 0x00, 0x31, 0x9a, 0xfc, 0xbe, 0x89, 0x8f, 0xe2, 0xb0, 0x3f, 0x10, 0x46, 0x73, 0xfd, 0xd2, 0x27, 0x20, 0x4b, 0x7e, 0xb2, 0xff, 0x1e, 0x8a, 0x01, 0xff, 0x0f, 0x07, 0x0f, 0x10, 0xe4, 0xcd, 0x9e, 0xdf, 0xf6, 0x8d, 0x78, 0x67, 0xff, 0x2f, 0x5f, 0x69, 0xa1, 0x5f, 0x2a, 0x43, 0xce, 0xf3, 0xdb, 0xed, 0x3e, 0xef, 0x68, 0x62, 0xe0, 0x3f, 0x7c, 0x10, 0x1c, 0x72, 0x03, 0xcc, 0xe6, 0xb9, 0xf1, 0x97, 0x75, 0x50, 0xb3, 0x6b, 0x36, 0xbb, 0xa6, 0x83, 0xef, 0x24, 0x20, 0xd7, 0x75, 0xed, 0xbe, 0xc3, 0xef, 0xd4, 0xd2, 0xf4, 0x61, 0xf9, 0x64, 0x37, 0x71, 0xab, 0x3f, 0x0b, 0x33, 0x35, 0x82, 0xf3, 0x3e, 0x8e, 0x56, 0x40, 0xea, 0xd2, 0xeb, 0x47, 0xd8, 0x90, 0xd7, 0x19, 0x33, 0x1f, 0x5a, 0xaf, 0x29, 0x52, 0x77, 0xf9, 0x79, 0x90, 0x6a, 0x68, 0x09, 0xa6, 0xa9, 0xf5, 0x1f, 0xa7, 0x9f, 0x9a, 0x92, 0x0a, 0x7f, 0x0a, 0xe4, 0x1b, 0xf4, 0x86, 0x52, 0xe2, 0xf2, 0x8d, 0x01, 0xff, 0x86, 0xe0, 0x97, 0x46, 0xf8, 0x37, 0x4e, 0xc8, 0x9f, 0x1c, 0xf0, 0x6f, 0x5e, 0x78, 0xfb, 0xde, 0xca, 0xd4, 0xf7, 0xee, 0xad, 0x4c, 0xfd, 0xd3, 0xbd, 0x95, 0xa9, 0x77, 0xee, 0xad, 0x48, 0x3f, 0xb8, 0xb7, 0x22, 0xfd, 0xdf, 0xbd, 0x15, 0xe9, 0xee, 0xfd, 0x15, 0xe9, 0x2b, 0xf7, 0x57, 0xa4, 0xaf, 0xdf, 0x5f, 0x91, 0xbe, 0x7d, 0x7f, 0x45, 0x7a, 0xfb, 0xfe, 0xca, 0xd4, 0xf7, 0xee, 0xaf, 0x4c, 0xbd, 0x73, 0x7f, 0x65, 0xea, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x1a, 0x37, 0x26, 0x62, 0xe0, 0x30, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Groups1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Groups1) if !ok { that2, ok := that.(Groups1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Groups1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Groups1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Groups1 but is not nil && this == nil") } if len(this.G) != len(that1.G) { return fmt.Errorf("G this(%v) Not Equal that(%v)", len(this.G), len(that1.G)) } for i := range this.G { if !this.G[i].Equal(that1.G[i]) { return fmt.Errorf("G this[%v](%v) Not Equal that[%v](%v)", i, this.G[i], i, that1.G[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Groups1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Groups1) if !ok { that2, ok := that.(Groups1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.G) != len(that1.G) { return false } for i := range this.G { if !this.G[i].Equal(that1.G[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Groups1_G) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Groups1_G) if !ok { that2, ok := that.(Groups1_G) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Groups1_G") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Groups1_G but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Groups1_G but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Groups1_G) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Groups1_G) if !ok { that2, ok := that.(Groups1_G) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Groups2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Groups2) if !ok { that2, ok := that.(Groups2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Groups2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Groups2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Groups2 but is not nil && this == nil") } if !this.G.Equal(that1.G) { return fmt.Errorf("G this(%v) Not Equal that(%v)", this.G, that1.G) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Groups2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Groups2) if !ok { that2, ok := that.(Groups2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.G.Equal(that1.G) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Groups2_G) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Groups2_G) if !ok { that2, ok := that.(Groups2_G) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Groups2_G") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Groups2_G but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Groups2_G but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Groups2_G) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Groups2_G) if !ok { that2, ok := that.(Groups2_G) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Groups1) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&group.Groups1{") if this.G != nil { s = append(s, "G: "+fmt.Sprintf("%#v", this.G)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Groups1_G) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&group.Groups1_G{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringGroup(this.Field1, "int64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringGroup(this.Field2, "float64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Groups2) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&group.Groups2{") if this.G != nil { s = append(s, "G: "+fmt.Sprintf("%#v", this.G)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Groups2_G) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&group.Groups2_G{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringGroup(this.Field1, "int64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringGroup(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedGroups1(r randyGroup, easy bool) *Groups1 { this := &Groups1{} if r.Intn(10) != 0 { v1 := r.Intn(5) this.G = make([]*Groups1_G, v1) for i := 0; i < v1; i++ { this.G[i] = NewPopulatedGroups1_G(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedGroup(r, 2) } return this } func NewPopulatedGroups1_G(r randyGroup, easy bool) *Groups1_G { this := &Groups1_G{} if r.Intn(10) != 0 { v2 := int64(r.Int63()) if r.Intn(2) == 0 { v2 *= -1 } this.Field1 = &v2 } if r.Intn(10) != 0 { v3 := float64(r.Float64()) if r.Intn(2) == 0 { v3 *= -1 } this.Field2 = &v3 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedGroup(r, 3) } return this } func NewPopulatedGroups2(r randyGroup, easy bool) *Groups2 { this := &Groups2{} if r.Intn(10) != 0 { this.G = NewPopulatedGroups2_G(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedGroup(r, 2) } return this } func NewPopulatedGroups2_G(r randyGroup, easy bool) *Groups2_G { this := &Groups2_G{} if r.Intn(10) != 0 { v4 := int64(r.Int63()) if r.Intn(2) == 0 { v4 *= -1 } this.Field1 = &v4 } if r.Intn(10) != 0 { v5 := r.Intn(10) this.Field2 = make([]float64, v5) for i := 0; i < v5; i++ { this.Field2[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedGroup(r, 3) } return this } type randyGroup interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneGroup(r randyGroup) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringGroup(r randyGroup) string { v6 := r.Intn(100) tmps := make([]rune, v6) for i := 0; i < v6; i++ { tmps[i] = randUTF8RuneGroup(r) } return string(tmps) } func randUnrecognizedGroup(r randyGroup, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldGroup(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldGroup(dAtA []byte, r randyGroup, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateGroup(dAtA, uint64(key)) v7 := r.Int63() if r.Intn(2) == 0 { v7 *= -1 } dAtA = encodeVarintPopulateGroup(dAtA, uint64(v7)) case 1: dAtA = encodeVarintPopulateGroup(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateGroup(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateGroup(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateGroup(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateGroup(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (this *Groups1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Groups1{`, `G:` + strings.Replace(fmt.Sprintf("%v", this.G), "Groups1_G", "Groups1_G", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Groups1_G) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Groups1_G{`, `Field1:` + valueToStringGroup(this.Field1) + `,`, `Field2:` + valueToStringGroup(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Groups2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Groups2{`, `G:` + strings.Replace(fmt.Sprintf("%v", this.G), "Groups2_G", "Groups2_G", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Groups2_G) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Groups2_G{`, `Field1:` + valueToStringGroup(this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringGroup(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("group.proto", fileDescriptorGroup) } var fileDescriptorGroup = []byte{ // 211 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4e, 0x2f, 0xca, 0x2f, 0x2d, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x05, 0x73, 0xa4, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0xb2, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0x74, 0x29, 0xc5, 0x71, 0xb1, 0xbb, 0x83, 0xf4, 0x15, 0x1b, 0x0a, 0xc9, 0x71, 0x31, 0xa6, 0x4b, 0x30, 0x2a, 0x30, 0x6b, 0x70, 0x19, 0x09, 0xe8, 0x41, 0x4c, 0x86, 0x4a, 0xe9, 0xb9, 0x07, 0x31, 0xa6, 0x4b, 0x19, 0x73, 0x31, 0xba, 0x0b, 0x89, 0x71, 0xb1, 0xb9, 0x65, 0xa6, 0xe6, 0xa4, 0x18, 0x4a, 0x30, 0x2a, 0x30, 0x6a, 0x30, 0x07, 0x41, 0x79, 0x70, 0x71, 0x23, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x46, 0xa8, 0xb8, 0x11, 0xc2, 0x7c, 0x23, 0x98, 0xf9, 0x8c, 0x18, 0xe6, 0x1b, 0x91, 0x68, 0x3e, 0x33, 0xc2, 0x7c, 0x27, 0x93, 0x13, 0x0f, 0xe5, 0x18, 0x2e, 0x3c, 0x94, 0x63, 0xb8, 0xf1, 0x50, 0x8e, 0xe1, 0xc1, 0x43, 0x39, 0xc6, 0x0f, 0x0f, 0xe5, 0x18, 0x7f, 0x3c, 0x94, 0x63, 0x6c, 0x78, 0x24, 0xc7, 0xb8, 0xe2, 0x91, 0x1c, 0xe3, 0x86, 0x47, 0x72, 0x8c, 0x3b, 0x1e, 0xc9, 0x31, 0x9e, 0x78, 0x24, 0xc7, 0x70, 0xe1, 0x91, 0x1c, 0xc3, 0x83, 0x47, 0x72, 0x0c, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3c, 0xd8, 0xef, 0x2c, 0x39, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/group/group.proto000066400000000000000000000044301317075173200217020ustar00rootroot00000000000000// 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 group; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = false; message Groups1 { repeated group G = 1 { optional int64 Field1 = 1; optional double Field2 = 2; } } message Groups2 { optional group G = 1 { optional int64 Field1 = 1; repeated double Field2 = 2; } } golang-gogoprotobuf-0.5/test/group/grouppb_test.go000066400000000000000000000405201317075173200225250ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: group.proto /* Package group is a generated protocol buffer package. It is generated from these files: group.proto It has these top-level messages: Groups1 Groups2 */ package group import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestGroups1Proto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups1(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Groups1{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestGroups1_GProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups1_G(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Groups1_G{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestGroups2Proto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups2(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Groups2{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestGroups2_GProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups2_G(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Groups2_G{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestGroups1JSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups1(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Groups1{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestGroups1_GJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups1_G(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Groups1_G{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestGroups2JSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups2(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Groups2{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestGroups2_GJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups2_G(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Groups2_G{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestGroups1ProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups1(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Groups1{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestGroups1ProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups1(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Groups1{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestGroups1_GProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups1_G(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Groups1_G{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestGroups1_GProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups1_G(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Groups1_G{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestGroups2ProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups2(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Groups2{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestGroups2ProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups2(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Groups2{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestGroups2_GProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups2_G(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Groups2_G{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestGroups2_GProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedGroups2_G(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Groups2_G{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestGroupDescription(t *testing.T) { GroupDescription() } func TestGroups1VerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups1(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Groups1{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestGroups1_GVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups1_G(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Groups1_G{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestGroups2VerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups2(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Groups2{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestGroups2_GVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups2_G(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Groups2_G{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestGroups1GoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups1(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestGroups1_GGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups1_G(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestGroups2GoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups2(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestGroups2_GGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups2_G(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestGroups1Stringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups1(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestGroups1_GStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups1_G(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestGroups2Stringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups2(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestGroups2_GStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedGroups2_G(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/importdedup/000077500000000000000000000000001317075173200206605ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/importdedup/Makefile000066400000000000000000000031071317075173200223210ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. proto.proto) (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. subpkg/subproto.proto) golang-gogoprotobuf-0.5/test/importdedup/importdedup_test.go000066400000000000000000000027761317075173200246160ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package importdedup import testing "testing" func TestImportDedup(t *testing.T) { } golang-gogoprotobuf-0.5/test/importdedup/proto.pb.go000066400000000000000000000061351317075173200227570ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto.proto /* Package importdedup is a generated protocol buffer package. It is generated from these files: proto.proto It has these top-level messages: Object */ package importdedup import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import subpkg "github.com/gogo/protobuf/test/importdedup/subpkg" import github_com_gogo_protobuf_test_importdedup_subpkg "github.com/gogo/protobuf/test/importdedup/subpkg" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Object struct { CustomField *github_com_gogo_protobuf_test_importdedup_subpkg.CustomType `protobuf:"bytes,1,opt,name=CustomField,customtype=github.com/gogo/protobuf/test/importdedup/subpkg.CustomType" json:"CustomField,omitempty"` SubObject *subpkg.SubObject `protobuf:"bytes,2,opt,name=SubObject" json:"SubObject,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Object) Reset() { *m = Object{} } func (m *Object) String() string { return proto.CompactTextString(m) } func (*Object) ProtoMessage() {} func (*Object) Descriptor() ([]byte, []int) { return fileDescriptorProto, []int{0} } func (m *Object) GetSubObject() *subpkg.SubObject { if m != nil { return m.SubObject } return nil } func init() { proto.RegisterType((*Object)(nil), "importdedup.Object") } func init() { proto.RegisterFile("proto.proto", fileDescriptorProto) } var fileDescriptorProto = []byte{ // 175 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2e, 0x28, 0xca, 0x2f, 0xc9, 0xd7, 0x03, 0x93, 0x42, 0xdc, 0x99, 0xb9, 0x05, 0xf9, 0x45, 0x25, 0x29, 0xa9, 0x29, 0xa5, 0x05, 0x52, 0xba, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xe9, 0xf9, 0xe9, 0xf9, 0xfa, 0x60, 0x35, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0xf4, 0x4a, 0xd9, 0xe3, 0x54, 0x5e, 0x92, 0x5a, 0x5c, 0xa2, 0x8f, 0x64, 0xb2, 0x7e, 0x71, 0x69, 0x52, 0x41, 0x76, 0x3a, 0x98, 0x42, 0x58, 0xae, 0x34, 0x87, 0x91, 0x8b, 0xcd, 0x3f, 0x29, 0x2b, 0x35, 0xb9, 0x44, 0x28, 0x91, 0x8b, 0xdb, 0xb9, 0xb4, 0xb8, 0x24, 0x3f, 0xd7, 0x2d, 0x33, 0x35, 0x27, 0x45, 0x82, 0x51, 0x81, 0x51, 0x83, 0xc7, 0xc9, 0xfe, 0xd6, 0x3d, 0x79, 0x6b, 0x52, 0x2d, 0xd1, 0x83, 0x98, 0x13, 0x52, 0x59, 0x90, 0x1a, 0x84, 0x6c, 0xa6, 0x90, 0x3e, 0x17, 0x67, 0x70, 0x69, 0x12, 0xc4, 0x3e, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x41, 0x3d, 0xa8, 0x1e, 0xb8, 0x44, 0x10, 0x42, 0x0d, 0x20, 0x00, 0x00, 0xff, 0xff, 0x21, 0x11, 0x7d, 0xc2, 0x29, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/importdedup/proto.proto000066400000000000000000000034231317075173200231120ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 importdedup; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/importdedup/subpkg/subproto.proto"; message Object { optional bytes CustomField = 1 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/importdedup/subpkg.CustomType"]; optional subpkg.SubObject SubObject = 2; } golang-gogoprotobuf-0.5/test/importdedup/subpkg/000077500000000000000000000000001317075173200221535ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/importdedup/subpkg/customtype.go000066400000000000000000000027211317075173200247200ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package subpkg type CustomType struct{} golang-gogoprotobuf-0.5/test/importdedup/subpkg/subproto.pb.go000066400000000000000000000037041317075173200247630ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: subpkg/subproto.proto /* Package subpkg is a generated protocol buffer package. It is generated from these files: subpkg/subproto.proto It has these top-level messages: SubObject */ package subpkg import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type SubObject struct { XXX_unrecognized []byte `json:"-"` } func (m *SubObject) Reset() { *m = SubObject{} } func (m *SubObject) String() string { return proto.CompactTextString(m) } func (*SubObject) ProtoMessage() {} func (*SubObject) Descriptor() ([]byte, []int) { return fileDescriptorSubproto, []int{0} } func init() { proto.RegisterType((*SubObject)(nil), "subpkg.SubObject") } func init() { proto.RegisterFile("subpkg/subproto.proto", fileDescriptorSubproto) } var fileDescriptorSubproto = []byte{ // 88 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2d, 0x2e, 0x4d, 0x2a, 0xc8, 0x4e, 0xd7, 0x07, 0x51, 0x45, 0xf9, 0x25, 0xf9, 0x7a, 0x60, 0x52, 0x88, 0x0d, 0x22, 0x2c, 0xa5, 0x9b, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x9f, 0x9e, 0x9f, 0x9e, 0xaf, 0x0f, 0x96, 0x4e, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0xa2, 0x4d, 0x89, 0x9b, 0x8b, 0x33, 0xb8, 0x34, 0xc9, 0x3f, 0x29, 0x2b, 0x35, 0xb9, 0x04, 0x10, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x38, 0xf3, 0x28, 0x5b, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/importdedup/subpkg/subproto.proto000066400000000000000000000030341317075173200251150ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 subpkg; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message SubObject { } golang-gogoprotobuf-0.5/test/indeximport-issue72/000077500000000000000000000000001317075173200221655ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/indeximport-issue72/Makefile000066400000000000000000000031251317075173200236260ustar00rootroot00000000000000# 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: (cd index && protoc --proto_path=../../../../../../:../../../protobuf/:. --gogo_out=. index.proto) (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. indeximport.proto) golang-gogoprotobuf-0.5/test/indeximport-issue72/index/000077500000000000000000000000001317075173200232745ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/indeximport-issue72/index/index.pb.go000066400000000000000000000265731317075173200253470ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: index.proto /* Package index is a generated protocol buffer package. It is generated from these files: index.proto It has these top-level messages: IndexQuery */ package index import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type IndexQuery struct { Key *string `protobuf:"bytes,1,opt,name=Key" json:"Key,omitempty"` Value *string `protobuf:"bytes,2,opt,name=Value" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *IndexQuery) Reset() { *m = IndexQuery{} } func (m *IndexQuery) String() string { return proto.CompactTextString(m) } func (*IndexQuery) ProtoMessage() {} func (*IndexQuery) Descriptor() ([]byte, []int) { return fileDescriptorIndex, []int{0} } func (m *IndexQuery) GetKey() string { if m != nil && m.Key != nil { return *m.Key } return "" } func (m *IndexQuery) GetValue() string { if m != nil && m.Value != nil { return *m.Value } return "" } func init() { proto.RegisterType((*IndexQuery)(nil), "index.IndexQuery") } func (this *IndexQuery) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*IndexQuery) if !ok { that2, ok := that.(IndexQuery) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Key != nil && that1.Key != nil { if *this.Key != *that1.Key { return false } } else if this.Key != nil { return false } else if that1.Key != nil { return false } if this.Value != nil && that1.Value != nil { if *this.Value != *that1.Value { return false } } else if this.Value != nil { return false } else if that1.Value != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (m *IndexQuery) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *IndexQuery) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Key != nil { dAtA[i] = 0xa i++ i = encodeVarintIndex(dAtA, i, uint64(len(*m.Key))) i += copy(dAtA[i:], *m.Key) } if m.Value != nil { dAtA[i] = 0x12 i++ i = encodeVarintIndex(dAtA, i, uint64(len(*m.Value))) i += copy(dAtA[i:], *m.Value) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintIndex(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedIndexQuery(r randyIndex, easy bool) *IndexQuery { this := &IndexQuery{} if r.Intn(10) != 0 { v1 := string(randStringIndex(r)) this.Key = &v1 } if r.Intn(10) != 0 { v2 := string(randStringIndex(r)) this.Value = &v2 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedIndex(r, 3) } return this } type randyIndex interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneIndex(r randyIndex) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringIndex(r randyIndex) string { v3 := r.Intn(100) tmps := make([]rune, v3) for i := 0; i < v3; i++ { tmps[i] = randUTF8RuneIndex(r) } return string(tmps) } func randUnrecognizedIndex(r randyIndex, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldIndex(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldIndex(dAtA []byte, r randyIndex, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateIndex(dAtA, uint64(key)) v4 := r.Int63() if r.Intn(2) == 0 { v4 *= -1 } dAtA = encodeVarintPopulateIndex(dAtA, uint64(v4)) case 1: dAtA = encodeVarintPopulateIndex(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateIndex(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateIndex(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateIndex(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateIndex(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *IndexQuery) Size() (n int) { var l int _ = l if m.Key != nil { l = len(*m.Key) n += 1 + l + sovIndex(uint64(l)) } if m.Value != nil { l = len(*m.Value) n += 1 + l + sovIndex(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovIndex(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozIndex(x uint64) (n int) { return sovIndex(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *IndexQuery) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIndex } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: IndexQuery: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: IndexQuery: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIndex } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthIndex } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Key = &s iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIndex } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthIndex } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Value = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipIndex(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIndex } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipIndex(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIndex } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIndex } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIndex } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthIndex } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIndex } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipIndex(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthIndex = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowIndex = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("index.proto", fileDescriptorIndex) } var fileDescriptorIndex = []byte{ // 141 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xce, 0xcc, 0x4b, 0x49, 0xad, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x05, 0x73, 0xa4, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0xb2, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0x74, 0x29, 0x99, 0x70, 0x71, 0x79, 0x82, 0xf4, 0x05, 0x96, 0xa6, 0x16, 0x55, 0x0a, 0x09, 0x70, 0x31, 0x7b, 0xa7, 0x56, 0x4a, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0x81, 0x98, 0x42, 0x22, 0x5c, 0xac, 0x61, 0x89, 0x39, 0xa5, 0xa9, 0x12, 0x4c, 0x60, 0x31, 0x08, 0xc7, 0x49, 0xe2, 0xc7, 0x43, 0x39, 0xc6, 0x15, 0x8f, 0xe4, 0x18, 0x77, 0x3c, 0x92, 0x63, 0x3c, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x7a, 0x3d, 0x8f, 0x44, 0x93, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/indeximport-issue72/index/index.proto000066400000000000000000000035001317075173200254660ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 index; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.testgen_all) = true; message IndexQuery { optional string Key = 1; optional string Value = 2; } golang-gogoprotobuf-0.5/test/indeximport-issue72/index/indexpb_test.go000066400000000000000000000107611317075173200263200ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: index.proto /* Package index is a generated protocol buffer package. It is generated from these files: index.proto It has these top-level messages: IndexQuery */ package index import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestIndexQueryProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQuery(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &IndexQuery{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestIndexQueryMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQuery(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &IndexQuery{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestIndexQueryJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQuery(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &IndexQuery{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestIndexQueryProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQuery(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &IndexQuery{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestIndexQueryProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQuery(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &IndexQuery{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestIndexQuerySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQuery(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/indeximport-issue72/indeximport.pb.go000066400000000000000000000256471317075173200254740ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: indeximport.proto /* Package indeximport is a generated protocol buffer package. It is generated from these files: indeximport.proto It has these top-level messages: IndexQueries */ package indeximport import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import index "github.com/gogo/protobuf/test/indeximport-issue72/index" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type IndexQueries struct { Queries []*index.IndexQuery `protobuf:"bytes,1,rep,name=Queries" json:"Queries,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *IndexQueries) Reset() { *m = IndexQueries{} } func (m *IndexQueries) String() string { return proto.CompactTextString(m) } func (*IndexQueries) ProtoMessage() {} func (*IndexQueries) Descriptor() ([]byte, []int) { return fileDescriptorIndeximport, []int{0} } func (m *IndexQueries) GetQueries() []*index.IndexQuery { if m != nil { return m.Queries } return nil } func init() { proto.RegisterType((*IndexQueries)(nil), "indeximport.IndexQueries") } func (this *IndexQueries) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*IndexQueries) if !ok { that2, ok := that.(IndexQueries) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Queries) != len(that1.Queries) { return false } for i := range this.Queries { if !this.Queries[i].Equal(that1.Queries[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (m *IndexQueries) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *IndexQueries) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Queries) > 0 { for _, msg := range m.Queries { dAtA[i] = 0xa i++ i = encodeVarintIndeximport(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintIndeximport(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedIndexQueries(r randyIndeximport, easy bool) *IndexQueries { this := &IndexQueries{} if r.Intn(10) != 0 { v1 := r.Intn(5) this.Queries = make([]*index.IndexQuery, v1) for i := 0; i < v1; i++ { this.Queries[i] = index.NewPopulatedIndexQuery(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedIndeximport(r, 2) } return this } type randyIndeximport interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneIndeximport(r randyIndeximport) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringIndeximport(r randyIndeximport) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneIndeximport(r) } return string(tmps) } func randUnrecognizedIndeximport(r randyIndeximport, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldIndeximport(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldIndeximport(dAtA []byte, r randyIndeximport, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateIndeximport(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateIndeximport(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateIndeximport(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateIndeximport(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateIndeximport(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateIndeximport(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateIndeximport(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *IndexQueries) Size() (n int) { var l int _ = l if len(m.Queries) > 0 { for _, e := range m.Queries { l = e.Size() n += 1 + l + sovIndeximport(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovIndeximport(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozIndeximport(x uint64) (n int) { return sovIndeximport(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *IndexQueries) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIndeximport } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: IndexQueries: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: IndexQueries: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Queries", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIndeximport } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthIndeximport } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Queries = append(m.Queries, &index.IndexQuery{}) if err := m.Queries[len(m.Queries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipIndeximport(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIndeximport } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipIndeximport(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIndeximport } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIndeximport } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIndeximport } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthIndeximport } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIndeximport } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipIndeximport(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthIndeximport = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowIndeximport = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("indeximport.proto", fileDescriptorIndeximport) } var fileDescriptorIndeximport = []byte{ // 168 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcc, 0xcc, 0x4b, 0x49, 0xad, 0xc8, 0xcc, 0x2d, 0xc8, 0x2f, 0x2a, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x46, 0x12, 0x92, 0x72, 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0xab, 0x49, 0x2a, 0x4d, 0xd3, 0x2f, 0x49, 0x2d, 0x2e, 0xd1, 0x47, 0x52, 0xaa, 0x9b, 0x59, 0x5c, 0x5c, 0x9a, 0x6a, 0x6e, 0x04, 0x11, 0x83, 0x90, 0x10, 0x13, 0xa5, 0x74, 0x71, 0x1a, 0x02, 0xe2, 0x81, 0x39, 0x60, 0x16, 0x44, 0xb9, 0x92, 0x35, 0x17, 0x8f, 0x27, 0x48, 0x77, 0x60, 0x69, 0x6a, 0x51, 0x66, 0x6a, 0xb1, 0x90, 0x36, 0x17, 0x3b, 0x94, 0x29, 0xc1, 0xa8, 0xc0, 0xac, 0xc1, 0x6d, 0x24, 0xa8, 0x07, 0x31, 0x1d, 0xae, 0xaa, 0x32, 0x08, 0xa6, 0xc2, 0x49, 0xe2, 0xc7, 0x43, 0x39, 0xc6, 0x15, 0x8f, 0xe4, 0x18, 0x77, 0x3c, 0x92, 0x63, 0x3c, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd4, 0x50, 0x15, 0x6f, 0xeb, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/indeximport-issue72/indeximport.proto000066400000000000000000000036111317075173200256150ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 indeximport; import "github.com/gogo/protobuf/test/indeximport-issue72/index/index.proto"; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.testgen_all) = true; message IndexQueries { repeated index.IndexQuery Queries = 1; } golang-gogoprotobuf-0.5/test/indeximport-issue72/indeximportpb_test.go000066400000000000000000000111601317075173200264360ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: indeximport.proto /* Package indeximport is a generated protocol buffer package. It is generated from these files: indeximport.proto It has these top-level messages: IndexQueries */ package indeximport import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/test/indeximport-issue72/index" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestIndexQueriesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQueries(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &IndexQueries{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestIndexQueriesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQueries(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &IndexQueries{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestIndexQueriesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQueries(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &IndexQueries{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestIndexQueriesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQueries(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &IndexQueries{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestIndexQueriesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQueries(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &IndexQueries{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestIndexQueriesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIndexQueries(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/int64support/000077500000000000000000000000001317075173200207255ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/int64support/Makefile000066400000000000000000000027501317075173200223710ustar00rootroot00000000000000# 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: (protoc -I=. -I=../../../../../ -I=../../protobuf/ --gogo_out=. object.proto) golang-gogoprotobuf-0.5/test/int64support/object.pb.go000066400000000000000000000274321317075173200231320ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: object.proto /* Package int64support is a generated protocol buffer package. It is generated from these files: object.proto It has these top-level messages: Object */ package int64support import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Object struct { OptionalNumber *int64 `protobuf:"varint,1,opt,name=optional_number,json=optionalNumber" json:"optional_number,omitempty"` } func (m *Object) Reset() { *m = Object{} } func (*Object) ProtoMessage() {} func (*Object) Descriptor() ([]byte, []int) { return fileDescriptorObject, []int{0} } func (m *Object) GetOptionalNumber() int64 { if m != nil && m.OptionalNumber != nil { return *m.OptionalNumber } return 0 } func init() { proto.RegisterType((*Object)(nil), "int64support.Object") } func (this *Object) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Object) if !ok { that2, ok := that.(Object) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Object") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Object but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Object but is not nil && this == nil") } if this.OptionalNumber != nil && that1.OptionalNumber != nil { if *this.OptionalNumber != *that1.OptionalNumber { return fmt.Errorf("OptionalNumber this(%v) Not Equal that(%v)", *this.OptionalNumber, *that1.OptionalNumber) } } else if this.OptionalNumber != nil { return fmt.Errorf("this.OptionalNumber == nil && that.OptionalNumber != nil") } else if that1.OptionalNumber != nil { return fmt.Errorf("OptionalNumber this(%v) Not Equal that(%v)", this.OptionalNumber, that1.OptionalNumber) } return nil } func (this *Object) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Object) if !ok { that2, ok := that.(Object) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.OptionalNumber != nil && that1.OptionalNumber != nil { if *this.OptionalNumber != *that1.OptionalNumber { return false } } else if this.OptionalNumber != nil { return false } else if that1.OptionalNumber != nil { return false } return true } func (this *Object) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&int64support.Object{") if this.OptionalNumber != nil { s = append(s, "OptionalNumber: "+valueToGoStringObject(this.OptionalNumber, "int64")+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringObject(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Object) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Object) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.OptionalNumber != nil { dAtA[i] = 0x8 i++ i = encodeVarintObject(dAtA, i, uint64(*m.OptionalNumber)) } return i, nil } func encodeVarintObject(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedObject(r randyObject, easy bool) *Object { this := &Object{} if r.Intn(10) != 0 { v1 := int64(r.Int63()) if r.Intn(2) == 0 { v1 *= -1 } this.OptionalNumber = &v1 } if !easy && r.Intn(10) != 0 { } return this } type randyObject interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneObject(r randyObject) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringObject(r randyObject) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneObject(r) } return string(tmps) } func randUnrecognizedObject(r randyObject, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldObject(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldObject(dAtA []byte, r randyObject, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateObject(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateObject(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateObject(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateObject(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateObject(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateObject(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateObject(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Object) Size() (n int) { var l int _ = l if m.OptionalNumber != nil { n += 1 + sovObject(uint64(*m.OptionalNumber)) } return n } func sovObject(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozObject(x uint64) (n int) { return sovObject(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Object) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Object{`, `OptionalNumber:` + valueToStringObject(this.OptionalNumber) + `,`, `}`, }, "") return s } func valueToStringObject(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Object) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowObject } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Object: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Object: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field OptionalNumber", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowObject } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.OptionalNumber = &v default: iNdEx = preIndex skippy, err := skipObject(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthObject } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipObject(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowObject } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowObject } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowObject } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthObject } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowObject } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipObject(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthObject = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowObject = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("object.proto", fileDescriptorObject) } var fileDescriptorObject = []byte{ // 190 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xc9, 0x4f, 0xca, 0x4a, 0x4d, 0x2e, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0xc9, 0xcc, 0x2b, 0x31, 0x33, 0x29, 0x2e, 0x2d, 0x28, 0xc8, 0x2f, 0x2a, 0x91, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0x2b, 0x4a, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0xa2, 0x59, 0xc9, 0x90, 0x8b, 0xcd, 0x1f, 0x6c, 0x98, 0x90, 0x3a, 0x17, 0x7f, 0x7e, 0x41, 0x49, 0x66, 0x7e, 0x5e, 0x62, 0x4e, 0x7c, 0x5e, 0x69, 0x6e, 0x52, 0x6a, 0x91, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x73, 0x10, 0x1f, 0x4c, 0xd8, 0x0f, 0x2c, 0xea, 0xe4, 0x75, 0xe1, 0xa1, 0x1c, 0xc3, 0x8d, 0x87, 0x72, 0x0c, 0x0f, 0x1e, 0xca, 0x31, 0x7e, 0x78, 0x28, 0xc7, 0xf8, 0xe3, 0xa1, 0x1c, 0x63, 0xc3, 0x23, 0x39, 0xc6, 0x15, 0x8f, 0xe4, 0x18, 0x77, 0x3c, 0x92, 0x63, 0x3c, 0xf0, 0x48, 0x8e, 0xf1, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x7c, 0xf1, 0x48, 0x8e, 0xe1, 0xc3, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0xa2, 0x50, 0x5c, 0x0b, 0x08, 0x00, 0x00, 0xff, 0xff, 0x73, 0x60, 0x3c, 0xd6, 0xca, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/int64support/object.proto000066400000000000000000000014761317075173200232700ustar00rootroot00000000000000package int64support; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option go_package = "int64support"; option (gogoproto.benchgen_all) = true; option (gogoproto.enum_stringer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_unrecognized_all) = false; option (gogoproto.gostring_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.verbose_equal_all) = true; message Object { optional int64 optional_number = 1; } golang-gogoprotobuf-0.5/test/int64support/object_js.go000066400000000000000000000030411317075173200232140ustar00rootroot00000000000000package int64support import ( "bytes" "encoding/json" "fmt" "strconv" ) var ( _ = json.Marshaler(new(Object)) _ = json.Unmarshaler(new(Object)) ) func (o *Object) MarshalJSON() ([]byte, error) { if o.OptionalNumber == nil { return ([]byte)("{}"), nil } return ([]byte)(fmt.Sprintf("{\"optional_number\": %d}", *o.OptionalNumber)), nil } func (o *Object) UnmarshalJSON(b []byte) error { var ( trim = func(v []byte) []byte { return bytes.Trim(v, " \n\r\t") } strip = func(v []byte, first, last byte) ([]byte, error) { x := len(v) if x < 2 || v[0] != first || v[x-1] != last { return nil, fmt.Errorf("failed to strip %q and %q from byte sequence", first, last) } return v[1 : x-1], nil } ) b, err := strip(trim(b), '{', '}') if err != nil { return err } // poor man parser: assume the only commas appear between JSON key-value pairs, // and that object hierarchy is flat for xf, f := range bytes.Split(b, ([]byte)(",")) { parts := bytes.SplitN(f, ([]byte)(":"), 2) if x := len(parts); x != 2 { if xf == 0 && (x == 0 || (x == 1 && len(trim(parts[0])) == 0)) { return nil // empty object } return fmt.Errorf("failed to parse field-value seperator char ':'") } fieldName, err := strip(trim(parts[0]), '"', '"') if err != nil { return err } if string(fieldName) != "optional_number" { continue // ignore unknown field } fieldValue := trim(parts[1]) v, err := strconv.ParseInt(string(fieldValue), 10, 64) if err != nil { return err } o.OptionalNumber = &v break } return nil } golang-gogoprotobuf-0.5/test/int64support/object_js_test.go000066400000000000000000000017051317075173200242600ustar00rootroot00000000000000package int64support import ( "encoding/json" "testing" ) func TestMarshaler(t *testing.T) { n := int64(1) b, err := json.Marshal(&Object{&n}) if err != nil { t.Fatal(err) } const expected = "{\"optional_number\":1}" if string(b) != expected { t.Fatalf("expected '%s' instead of '%s'", expected, string(b)) } b, err = json.Marshal(new(Object)) if err != nil { t.Fatal(err) } const expected2 = "{}" if string(b) != expected2 { t.Fatalf("expected '%s' instead of '%s'", expected2, string(b)) } } func TestUnmarshaler(t *testing.T) { o := new(Object) err := json.Unmarshal(([]byte)("{\"optional_number\": 1}"), o) if err != nil { t.Fatal(err) } if n := o.GetOptionalNumber(); n != 1 { t.Fatalf("expected 1 instead of %d", n) } o = new(Object) err = json.Unmarshal(([]byte)("{}"), o) if err != nil { t.Fatal(err) } if o.OptionalNumber != nil { t.Fatalf("expected nil OptionalNumber instead of %d", *o.OptionalNumber) } } golang-gogoprotobuf-0.5/test/int64support/objectpb_test.go000066400000000000000000000165561317075173200241200ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: object.proto /* Package int64support is a generated protocol buffer package. It is generated from these files: object.proto It has these top-level messages: Object */ package int64support import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestObjectProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Object{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestObjectMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Object{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkObjectProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Object, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedObject(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkObjectProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedObject(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Object{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Object{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Object{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Object{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestObjectVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedObject(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Object{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestObjectGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedObject(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestObjectSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkObjectSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Object, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedObject(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestObjectStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedObject(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/issue260/000077500000000000000000000000001317075173200177045ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue260/Makefile000066400000000000000000000003621317075173200213450ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types:. --proto_path=../../../../../:../../protobuf/:. issue260.proto golang-gogoprotobuf-0.5/test/issue260/README.md000066400000000000000000000005071317075173200211650ustar00rootroot00000000000000# The Bug If in a message the following options are set: * `typedecl` `false` * `go_getters` `false` * `marshaller` `true` And one of the fields is using the `stdtime` and `nullable` `false` extension (to use `time.Time` instead of the protobuf type), then an import to the _time_ package is added even if it is not needed. golang-gogoprotobuf-0.5/test/issue260/issue260.pb.go000066400000000000000000000556171317075173200222310ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: issue260.proto /* Package issue260 is a generated protocol buffer package. It is generated from these files: issue260.proto It has these top-level messages: Dropped DroppedWithoutGetters Kept */ package issue260 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" import time "time" import github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf var _ = time.Kitchen // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package func (m *Dropped) Reset() { *m = Dropped{} } func (m *Dropped) String() string { return proto.CompactTextString(m) } func (*Dropped) ProtoMessage() {} func (*Dropped) Descriptor() ([]byte, []int) { return fileDescriptorIssue260, []int{0} } func (m *Dropped) GetName() string { if m != nil { return m.Name } return "" } func (m *Dropped) GetAge() int32 { if m != nil { return m.Age } return 0 } func (m *DroppedWithoutGetters) Reset() { *m = DroppedWithoutGetters{} } func (m *DroppedWithoutGetters) String() string { return proto.CompactTextString(m) } func (*DroppedWithoutGetters) ProtoMessage() {} func (*DroppedWithoutGetters) Descriptor() ([]byte, []int) { return fileDescriptorIssue260, []int{1} } type Kept struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Age int32 `protobuf:"varint,2,opt,name=age,proto3" json:"age,omitempty"` } func (m *Kept) Reset() { *m = Kept{} } func (m *Kept) String() string { return proto.CompactTextString(m) } func (*Kept) ProtoMessage() {} func (*Kept) Descriptor() ([]byte, []int) { return fileDescriptorIssue260, []int{2} } func (m *Kept) GetName() string { if m != nil { return m.Name } return "" } func (m *Kept) GetAge() int32 { if m != nil { return m.Age } return 0 } func init() { proto.RegisterType((*Dropped)(nil), "issue260.Dropped") proto.RegisterType((*DroppedWithoutGetters)(nil), "issue260.DroppedWithoutGetters") proto.RegisterType((*Kept)(nil), "issue260.Kept") } func (this *Dropped) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Dropped) if !ok { that2, ok := that.(Dropped) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Dropped") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Dropped but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Dropped but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Age != that1.Age { return fmt.Errorf("Age this(%v) Not Equal that(%v)", this.Age, that1.Age) } return nil } func (this *Dropped) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Dropped) if !ok { that2, ok := that.(Dropped) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Age != that1.Age { return false } return true } func (this *DroppedWithoutGetters) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DroppedWithoutGetters) if !ok { that2, ok := that.(DroppedWithoutGetters) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DroppedWithoutGetters") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DroppedWithoutGetters but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DroppedWithoutGetters but is not nil && this == nil") } if this.Height != that1.Height { return fmt.Errorf("Height this(%v) Not Equal that(%v)", this.Height, that1.Height) } if this.Width != that1.Width { return fmt.Errorf("Width this(%v) Not Equal that(%v)", this.Width, that1.Width) } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *DroppedWithoutGetters) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DroppedWithoutGetters) if !ok { that2, ok := that.(DroppedWithoutGetters) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Height != that1.Height { return false } if this.Width != that1.Width { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } return true } func (this *Kept) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Kept) if !ok { that2, ok := that.(Kept) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Kept") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Kept but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Kept but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Age != that1.Age { return fmt.Errorf("Age this(%v) Not Equal that(%v)", this.Age, that1.Age) } return nil } func (this *Kept) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Kept) if !ok { that2, ok := that.(Kept) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Age != that1.Age { return false } return true } func (m *Dropped) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Dropped) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Name) > 0 { dAtA[i] = 0xa i++ i = encodeVarintIssue260(dAtA, i, uint64(len(m.Name))) i += copy(dAtA[i:], m.Name) } if m.Age != 0 { dAtA[i] = 0x10 i++ i = encodeVarintIssue260(dAtA, i, uint64(m.Age)) } return i, nil } func (m *DroppedWithoutGetters) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *DroppedWithoutGetters) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Height != 0 { dAtA[i] = 0x8 i++ i = encodeVarintIssue260(dAtA, i, uint64(m.Height)) } if m.Width != 0 { dAtA[i] = 0x10 i++ i = encodeVarintIssue260(dAtA, i, uint64(m.Width)) } dAtA[i] = 0x1a i++ i = encodeVarintIssue260(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp))) n1, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Timestamp, dAtA[i:]) if err != nil { return 0, err } i += n1 return i, nil } func (m *Kept) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Kept) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Name) > 0 { dAtA[i] = 0xa i++ i = encodeVarintIssue260(dAtA, i, uint64(len(m.Name))) i += copy(dAtA[i:], m.Name) } if m.Age != 0 { dAtA[i] = 0x10 i++ i = encodeVarintIssue260(dAtA, i, uint64(m.Age)) } return i, nil } func encodeVarintIssue260(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedDropped(r randyIssue260, easy bool) *Dropped { this := &Dropped{} this.Name = string(randStringIssue260(r)) this.Age = int32(r.Int31()) if r.Intn(2) == 0 { this.Age *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedDroppedWithoutGetters(r randyIssue260, easy bool) *DroppedWithoutGetters { this := &DroppedWithoutGetters{} this.Height = int64(r.Int63()) if r.Intn(2) == 0 { this.Height *= -1 } this.Width = int64(r.Int63()) if r.Intn(2) == 0 { this.Width *= -1 } v1 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamp = *v1 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedKept(r randyIssue260, easy bool) *Kept { this := &Kept{} this.Name = string(randStringIssue260(r)) this.Age = int32(r.Int31()) if r.Intn(2) == 0 { this.Age *= -1 } if !easy && r.Intn(10) != 0 { } return this } type randyIssue260 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneIssue260(r randyIssue260) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringIssue260(r randyIssue260) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneIssue260(r) } return string(tmps) } func randUnrecognizedIssue260(r randyIssue260, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldIssue260(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldIssue260(dAtA []byte, r randyIssue260, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateIssue260(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateIssue260(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateIssue260(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateIssue260(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateIssue260(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateIssue260(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateIssue260(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Dropped) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovIssue260(uint64(l)) } if m.Age != 0 { n += 1 + sovIssue260(uint64(m.Age)) } return n } func (m *DroppedWithoutGetters) Size() (n int) { var l int _ = l if m.Height != 0 { n += 1 + sovIssue260(uint64(m.Height)) } if m.Width != 0 { n += 1 + sovIssue260(uint64(m.Width)) } l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp) n += 1 + l + sovIssue260(uint64(l)) return n } func (m *Kept) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovIssue260(uint64(l)) } if m.Age != 0 { n += 1 + sovIssue260(uint64(m.Age)) } return n } func sovIssue260(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozIssue260(x uint64) (n int) { return sovIssue260(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Dropped) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Dropped: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Dropped: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthIssue260 } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Age", wireType) } m.Age = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Age |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipIssue260(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIssue260 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *DroppedWithoutGetters) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: DroppedWithoutGetters: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: DroppedWithoutGetters: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Height", wireType) } m.Height = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Height |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Width", wireType) } m.Width = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Width |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthIssue260 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.Timestamp, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipIssue260(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIssue260 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Kept) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Kept: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Kept: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthIssue260 } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Age", wireType) } m.Age = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue260 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Age |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipIssue260(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIssue260 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipIssue260(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue260 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue260 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue260 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthIssue260 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue260 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipIssue260(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthIssue260 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowIssue260 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("issue260.proto", fileDescriptorIssue260) } var fileDescriptorIssue260 = []byte{ // 302 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x8f, 0x31, 0x4b, 0xc3, 0x40, 0x18, 0x86, 0xf3, 0x99, 0xb6, 0xb6, 0x27, 0x88, 0x1c, 0x2a, 0x25, 0xc3, 0x25, 0x74, 0xca, 0xa0, 0xa9, 0x54, 0x74, 0xe8, 0x18, 0x04, 0x07, 0xb7, 0x20, 0x38, 0x27, 0xf6, 0xbc, 0x1c, 0x18, 0x2f, 0x24, 0x5f, 0x70, 0x75, 0x74, 0x14, 0xfc, 0x03, 0xba, 0xf9, 0x13, 0x1c, 0x1d, 0x3b, 0xfa, 0x0b, 0xb4, 0x3d, 0xff, 0x80, 0x63, 0x47, 0xf1, 0xd2, 0xd8, 0xd5, 0xed, 0x7d, 0xe0, 0x7d, 0x3f, 0x9e, 0x8f, 0x6c, 0xca, 0xb2, 0xac, 0xf8, 0xe8, 0xf8, 0x20, 0xc8, 0x0b, 0x85, 0x8a, 0x76, 0x1b, 0x76, 0xf6, 0x85, 0xc4, 0xb4, 0x4a, 0x82, 0x4b, 0x95, 0x0d, 0x85, 0x12, 0x6a, 0x68, 0x0a, 0x49, 0x75, 0x65, 0xc8, 0x80, 0x49, 0xf5, 0xd0, 0x71, 0x85, 0x52, 0xe2, 0x9a, 0xaf, 0x5a, 0x28, 0x33, 0x5e, 0x62, 0x9c, 0xe5, 0x75, 0x61, 0x70, 0x44, 0xd6, 0x4f, 0x0a, 0x95, 0xe7, 0x7c, 0x42, 0x29, 0x69, 0xdd, 0xc4, 0x19, 0xef, 0x83, 0x07, 0x7e, 0x2f, 0x32, 0x99, 0x6e, 0x11, 0x3b, 0x16, 0xbc, 0xbf, 0xe6, 0x81, 0xdf, 0x8e, 0x7e, 0xe3, 0xb8, 0xf5, 0xfd, 0xec, 0x5a, 0x83, 0x47, 0x20, 0x3b, 0xcb, 0xdd, 0x85, 0xc4, 0x54, 0x55, 0x78, 0xca, 0x11, 0x79, 0x51, 0xd2, 0x5d, 0xd2, 0x49, 0xb9, 0x14, 0x29, 0x9a, 0x3b, 0x76, 0xb4, 0x24, 0xba, 0x4d, 0xda, 0xb7, 0x72, 0x82, 0xa9, 0xb9, 0x65, 0x47, 0x35, 0xd0, 0x90, 0xf4, 0xfe, 0x8c, 0xfa, 0xb6, 0x07, 0xfe, 0xc6, 0xc8, 0x09, 0x6a, 0xe7, 0xa0, 0x71, 0x0e, 0xce, 0x9b, 0x46, 0xd8, 0x9d, 0x7e, 0xb8, 0xd6, 0xc3, 0xa7, 0x0b, 0xd1, 0x6a, 0x36, 0xee, 0xde, 0x3f, 0xb9, 0x96, 0xb1, 0xda, 0x23, 0xad, 0x33, 0x9e, 0xe3, 0xff, 0x3e, 0x09, 0xfd, 0xd9, 0x9c, 0xc1, 0x62, 0xce, 0xe0, 0x45, 0x33, 0x78, 0xd5, 0x0c, 0xde, 0x34, 0x83, 0xa9, 0x66, 0xf0, 0xae, 0x19, 0xcc, 0x34, 0x83, 0x85, 0x66, 0xd6, 0xdd, 0x17, 0xb3, 0x92, 0x8e, 0x51, 0x39, 0xfc, 0x09, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x67, 0x75, 0x8b, 0x97, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue260/issue260.proto000066400000000000000000000017371317075173200223610ustar00rootroot00000000000000syntax = "proto3"; package issue260; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Dropped { option (gogoproto.typedecl) = false; string name = 1; int32 age = 2; } message DroppedWithoutGetters { option (gogoproto.typedecl) = false; option (gogoproto.goproto_getters) = false; int64 height = 1; int64 width = 2; google.protobuf.Timestamp timestamp = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; } message Kept { string name = 1; int32 age = 2; } golang-gogoprotobuf-0.5/test/issue260/issue260pb_test.go000066400000000000000000000462471317075173200232110ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: issue260.proto /* Package issue260 is a generated protocol buffer package. It is generated from these files: issue260.proto It has these top-level messages: Dropped DroppedWithoutGetters Kept */ package issue260 import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestDroppedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Dropped{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDroppedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Dropped{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDroppedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Dropped, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDropped(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDroppedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDropped(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Dropped{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDroppedWithoutGettersProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDroppedWithoutGettersMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDroppedWithoutGettersProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DroppedWithoutGetters, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDroppedWithoutGetters(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDroppedWithoutGettersProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDroppedWithoutGetters(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DroppedWithoutGetters{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestKeptProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Kept{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestKeptMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Kept{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkKeptProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Kept, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedKept(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkKeptProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedKept(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Kept{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDroppedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Dropped{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDroppedWithoutGettersJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DroppedWithoutGetters{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestKeptJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Kept{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDroppedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Dropped{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Dropped{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedWithoutGettersProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedWithoutGettersProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKeptProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Kept{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKeptProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Kept{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDropped(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Dropped{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDroppedWithoutGettersVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDroppedWithoutGetters(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestKeptVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKept(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Kept{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDroppedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDroppedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Dropped, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDropped(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDroppedWithoutGettersSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDroppedWithoutGettersSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DroppedWithoutGetters, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDroppedWithoutGetters(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestKeptSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkKeptSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Kept, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedKept(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/issue260/models.go000066400000000000000000000016701317075173200215220ustar00rootroot00000000000000package issue260 import ( "encoding/json" "time" "github.com/gogo/protobuf/jsonpb" ) type Dropped struct { Name string Age int32 } func (d *Dropped) UnmarshalJSONPB(u *jsonpb.Unmarshaler, b []byte) error { return json.Unmarshal(b, d) } func (d *Dropped) MarshalJSONPB(*jsonpb.Marshaler) ([]byte, error) { return json.Marshal(d) } func (d *Dropped) Drop() bool { return true } type DroppedWithoutGetters struct { Width int64 Height int64 Timestamp time.Time `protobuf:"bytes,3,opt,name=timestamp,stdtime" json:"timestamp"` NullableTimestamp *time.Time `protobuf:"bytes,4,opt,name=nullable_timestamp,json=nullableTimestamp,stdtime" json:"nullable_timestamp,omitempty"` } func (d *DroppedWithoutGetters) UnmarshalJSONPB(u *jsonpb.Unmarshaler, b []byte) error { return json.Unmarshal(b, d) } func (d *DroppedWithoutGetters) MarshalJSONPB(*jsonpb.Marshaler) ([]byte, error) { return json.Marshal(d) } golang-gogoprotobuf-0.5/test/issue261/000077500000000000000000000000001317075173200177055ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue261/Makefile000066400000000000000000000004751317075173200213530ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-min-version go install github.com/gogo/protobuf/protoc-gen-gogoslick protoc-min-version --version="3.0.0" --gogoslick_out=\ Mgoogle/protobuf/duration.proto=github.com/gogo/protobuf/types,\ :. \ --proto_path=../../../../../:../../protobuf/:. issue261.proto golang-gogoprotobuf-0.5/test/issue261/issue261.pb.go000066400000000000000000000327461317075173200222310ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: issue261.proto /* Package issue261 is a generated protocol buffer package. It is generated from these files: issue261.proto It has these top-level messages: MapStdTypes */ package issue261 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" import time "time" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf var _ = time.Kitchen // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapStdTypes struct { NullableDuration map[int32]*time.Duration `protobuf:"bytes,3,rep,name=nullableDuration,stdduration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapStdTypes) Reset() { *m = MapStdTypes{} } func (*MapStdTypes) ProtoMessage() {} func (*MapStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorIssue261, []int{0} } func (m *MapStdTypes) GetNullableDuration() map[int32]*time.Duration { if m != nil { return m.NullableDuration } return nil } func init() { proto.RegisterType((*MapStdTypes)(nil), "issue261.MapStdTypes") } func (this *MapStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } return true } func (this *MapStdTypes) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&issue261.MapStdTypes{") keysForNullableDuration := make([]int32, 0, len(this.NullableDuration)) for k := range this.NullableDuration { keysForNullableDuration = append(keysForNullableDuration, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNullableDuration) mapStringForNullableDuration := "map[int32]*time.Duration{" for _, k := range keysForNullableDuration { mapStringForNullableDuration += fmt.Sprintf("%#v: %#v,", k, this.NullableDuration[k]) } mapStringForNullableDuration += "}" if this.NullableDuration != nil { s = append(s, "NullableDuration: "+mapStringForNullableDuration+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringIssue261(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *MapStdTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MapStdTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NullableDuration) > 0 { for k := range m.NullableDuration { dAtA[i] = 0x1a i++ v := m.NullableDuration[k] msgSize := 0 if v != nil { msgSize = github_com_gogo_protobuf_types.SizeOfStdDuration(*v) msgSize += 1 + sovIssue261(uint64(msgSize)) } mapSize := 1 + sovIssue261(uint64(k)) + msgSize i = encodeVarintIssue261(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintIssue261(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintIssue261(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*v))) n1, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*v, dAtA[i:]) if err != nil { return 0, err } i += n1 } } } return i, nil } func encodeVarintIssue261(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *MapStdTypes) Size() (n int) { var l int _ = l if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*v) l += 1 + sovIssue261(uint64(l)) } mapEntrySize := 1 + sovIssue261(uint64(k)) + l n += mapEntrySize + 1 + sovIssue261(uint64(mapEntrySize)) } } return n } func sovIssue261(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozIssue261(x uint64) (n int) { return sovIssue261(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *MapStdTypes) String() string { if this == nil { return "nil" } keysForNullableDuration := make([]int32, 0, len(this.NullableDuration)) for k := range this.NullableDuration { keysForNullableDuration = append(keysForNullableDuration, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNullableDuration) mapStringForNullableDuration := "map[int32]*time.Duration{" for _, k := range keysForNullableDuration { mapStringForNullableDuration += fmt.Sprintf("%v: %v,", k, this.NullableDuration[k]) } mapStringForNullableDuration += "}" s := strings.Join([]string{`&MapStdTypes{`, `NullableDuration:` + mapStringForNullableDuration + `,`, `}`, }, "") return s } func valueToStringIssue261(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *MapStdTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue261 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MapStdTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MapStdTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDuration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue261 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthIssue261 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableDuration == nil { m.NullableDuration = make(map[int32]*time.Duration) } var mapkey int32 mapvalue := new(time.Duration) for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue261 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue261 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue261 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthIssue261 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthIssue261 } if postmsgIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(mapvalue, dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipIssue261(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIssue261 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableDuration[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipIssue261(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIssue261 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipIssue261(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue261 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue261 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue261 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthIssue261 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue261 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipIssue261(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthIssue261 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowIssue261 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("issue261.proto", fileDescriptorIssue261) } var fileDescriptorIssue261 = []byte{ // 266 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xcb, 0x2c, 0x2e, 0x2e, 0x4d, 0x35, 0x32, 0x33, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x80, 0xf1, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0x0a, 0x92, 0x4a, 0xd3, 0xc0, 0x3c, 0x30, 0x07, 0xcc, 0x82, 0x68, 0x94, 0x92, 0x4b, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0x45, 0xa8, 0x4a, 0x29, 0x2d, 0x4a, 0x2c, 0xc9, 0xcc, 0xcf, 0x83, 0xc8, 0x2b, 0x9d, 0x61, 0xe4, 0xe2, 0xf6, 0x4d, 0x2c, 0x08, 0x2e, 0x49, 0x09, 0xa9, 0x2c, 0x48, 0x2d, 0x16, 0x8a, 0xe5, 0x12, 0xc8, 0x2b, 0xcd, 0xc9, 0x49, 0x4c, 0xca, 0x49, 0x75, 0x81, 0xaa, 0x94, 0x60, 0x56, 0x60, 0xd6, 0xe0, 0x36, 0xd2, 0xd6, 0x83, 0xbb, 0x09, 0x49, 0x83, 0x9e, 0x1f, 0x9a, 0x6a, 0xd7, 0xbc, 0x92, 0xa2, 0x4a, 0x27, 0x96, 0x19, 0xf7, 0xe5, 0x19, 0x83, 0x30, 0x8c, 0x92, 0x8a, 0xe3, 0x12, 0xc5, 0xaa, 0x41, 0x48, 0x80, 0x8b, 0x39, 0x3b, 0xb5, 0x52, 0x82, 0x51, 0x81, 0x51, 0x83, 0x35, 0x08, 0xc4, 0x14, 0xd2, 0xe7, 0x62, 0x2d, 0x4b, 0xcc, 0x29, 0x4d, 0x95, 0x60, 0x52, 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd4, 0x83, 0xf8, 0x44, 0x0f, 0xe6, 0x13, 0x3d, 0x98, 0x01, 0x41, 0x10, 0x75, 0x56, 0x4c, 0x16, 0x8c, 0x4e, 0x3a, 0x17, 0x1e, 0xca, 0x31, 0xdc, 0x78, 0x28, 0xc7, 0xf0, 0xe1, 0xa1, 0x1c, 0x63, 0xc3, 0x23, 0x39, 0xc6, 0x15, 0x8f, 0xe4, 0x18, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x17, 0x8f, 0xe4, 0x18, 0x3e, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0x21, 0x89, 0x0d, 0x6c, 0x96, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xf1, 0xf2, 0x28, 0x08, 0x6e, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue261/issue261.proto000066400000000000000000000003761317075173200223610ustar00rootroot00000000000000syntax = "proto3"; package issue261; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; message MapStdTypes { map nullableDuration = 3 [(gogoproto.stdduration) = true]; } golang-gogoprotobuf-0.5/test/issue262/000077500000000000000000000000001317075173200177065ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue262/Makefile000066400000000000000000000005301317075173200213440ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-min-version go install github.com/gogo/protobuf/protoc-gen-gogoslick protoc-min-version --version="3.0.0" --proto_path=.:$(GOPATH)/src/:$(GOPATH)/src/github.com/gogo/protobuf/protobuf/ \ --gogoslick_out=Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types:. timefail.proto golang-gogoprotobuf-0.5/test/issue262/timefail.pb.go000066400000000000000000000224551317075173200224370ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: timefail.proto /* Package timefail is a generated protocol buffer package. It is generated from these files: timefail.proto It has these top-level messages: TimeFail */ package timefail import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" import time "time" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf var _ = time.Kitchen // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type TimeFail struct { TimeTest *time.Time `protobuf:"bytes,1,opt,name=time_test,json=timeTest,stdtime" json:"time_test,omitempty"` } func (m *TimeFail) Reset() { *m = TimeFail{} } func (*TimeFail) ProtoMessage() {} func (*TimeFail) Descriptor() ([]byte, []int) { return fileDescriptorTimefail, []int{0} } func (m *TimeFail) GetTimeTest() *time.Time { if m != nil { return m.TimeTest } return nil } func init() { proto.RegisterType((*TimeFail)(nil), "timefail.TimeFail") } func (this *TimeFail) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TimeFail) if !ok { that2, ok := that.(TimeFail) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.TimeTest == nil { if this.TimeTest != nil { return false } } else if !this.TimeTest.Equal(*that1.TimeTest) { return false } return true } func (this *TimeFail) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&timefail.TimeFail{") s = append(s, "TimeTest: "+fmt.Sprintf("%#v", this.TimeTest)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringTimefail(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *TimeFail) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *TimeFail) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.TimeTest != nil { dAtA[i] = 0xa i++ i = encodeVarintTimefail(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.TimeTest))) n1, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.TimeTest, dAtA[i:]) if err != nil { return 0, err } i += n1 } return i, nil } func encodeVarintTimefail(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *TimeFail) Size() (n int) { var l int _ = l if m.TimeTest != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.TimeTest) n += 1 + l + sovTimefail(uint64(l)) } return n } func sovTimefail(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTimefail(x uint64) (n int) { return sovTimefail(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *TimeFail) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TimeFail{`, `TimeTest:` + strings.Replace(fmt.Sprintf("%v", this.TimeTest), "Timestamp", "google_protobuf1.Timestamp", 1) + `,`, `}`, }, "") return s } func valueToStringTimefail(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *TimeFail) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTimefail } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: TimeFail: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: TimeFail: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field TimeTest", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTimefail } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTimefail } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.TimeTest == nil { m.TimeTest = new(time.Time) } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.TimeTest, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTimefail(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTimefail } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipTimefail(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTimefail } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTimefail } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTimefail } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthTimefail } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTimefail } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipTimefail(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthTimefail = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTimefail = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("timefail.proto", fileDescriptorTimefail) } var fileDescriptorTimefail = []byte{ // 202 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2b, 0xc9, 0xcc, 0x4d, 0x4d, 0x4b, 0xcc, 0xcc, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x80, 0xf1, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0x0a, 0x92, 0x4a, 0xd3, 0xc0, 0x3c, 0x30, 0x07, 0xcc, 0x82, 0x68, 0x94, 0x92, 0x4f, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0x45, 0xa8, 0x02, 0x19, 0x54, 0x5c, 0x92, 0x98, 0x5b, 0x00, 0x51, 0xa0, 0xe4, 0xc9, 0xc5, 0x11, 0x92, 0x99, 0x9b, 0xea, 0x96, 0x98, 0x99, 0x23, 0x64, 0xcb, 0xc5, 0x09, 0x92, 0x8e, 0x2f, 0x49, 0x2d, 0x2e, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd2, 0x83, 0x18, 0xa0, 0x07, 0x33, 0x40, 0x2f, 0x04, 0x66, 0x80, 0x13, 0xcb, 0x84, 0xfb, 0xf2, 0x8c, 0x41, 0x60, 0xa7, 0x85, 0xa4, 0x16, 0x97, 0x38, 0xe9, 0x5c, 0x78, 0x28, 0xc7, 0x70, 0xe3, 0xa1, 0x1c, 0xc3, 0x87, 0x87, 0x72, 0x8c, 0x0d, 0x8f, 0xe4, 0x18, 0x57, 0x3c, 0x92, 0x63, 0x3c, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x5f, 0x3c, 0x92, 0x63, 0xf8, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x24, 0x36, 0xb0, 0x89, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc3, 0xd6, 0xbd, 0x67, 0xeb, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue262/timefail.proto000066400000000000000000000003501317075173200225630ustar00rootroot00000000000000syntax = "proto3"; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; package timefail; message TimeFail { google.protobuf.Timestamp time_test = 1 [(gogoproto.stdtime) = true]; }golang-gogoprotobuf-0.5/test/issue312/000077500000000000000000000000001317075173200177025ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue312/Makefile000066400000000000000000000002431317075173200213410ustar00rootroot00000000000000regenerate: protoc --proto_path=.:$(GOPATH)/src/:$(GOPATH)/src/github.com/gogo/protobuf/protobuf/ \ --gogo_out=. issue312.proto (cd events && make regenerate) golang-gogoprotobuf-0.5/test/issue312/events/000077500000000000000000000000001317075173200212065ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue312/events/Makefile000066400000000000000000000002661317075173200226520ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-gen-gogo protoc --proto_path=.:$(GOPATH)/src/:$(GOPATH)/src/github.com/gogo/protobuf/protobuf/ \ --gogo_out=. events.proto golang-gogoprotobuf-0.5/test/issue312/events/events.pb.go000066400000000000000000000143151317075173200234450ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: events.proto /* Package events is a generated protocol buffer package. It is generated from these files: events.proto It has these top-level messages: Subtype */ package events import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import issue312 "github.com/gogo/protobuf/test/issue312" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" import strings "strings" import reflect "reflect" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Subtype struct { State *issue312.TaskState `protobuf:"varint,4,opt,name=state,enum=issue312.TaskState" json:"state,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Subtype) Reset() { *m = Subtype{} } func (m *Subtype) String() string { return proto.CompactTextString(m) } func (*Subtype) ProtoMessage() {} func (*Subtype) Descriptor() ([]byte, []int) { return fileDescriptorEvents, []int{0} } func (m *Subtype) GetState() issue312.TaskState { if m != nil && m.State != nil { return *m.State } return issue312.TaskState_TASK_STAGING } func init() { proto.RegisterType((*Subtype)(nil), "issue312.events.Subtype") } func (this *Subtype) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Subtype) if !ok { that2, ok := that.(Subtype) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.State != nil && that1.State != nil { if *this.State != *that1.State { return false } } else if this.State != nil { return false } else if that1.State != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Subtype) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&events.Subtype{") if this.State != nil { s = append(s, "State: "+valueToGoStringEvents(this.State, "issue312.TaskState")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringEvents(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedSubtype(r randyEvents, easy bool) *Subtype { this := &Subtype{} if r.Intn(10) != 0 { v1 := issue312.TaskState([]int32{6, 0, 1}[r.Intn(3)]) this.State = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedEvents(r, 5) } return this } type randyEvents interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneEvents(r randyEvents) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringEvents(r randyEvents) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneEvents(r) } return string(tmps) } func randUnrecognizedEvents(r randyEvents, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldEvents(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldEvents(dAtA []byte, r randyEvents, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateEvents(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateEvents(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateEvents(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateEvents(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateEvents(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateEvents(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateEvents(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func init() { proto.RegisterFile("events.proto", fileDescriptorEvents) } var fileDescriptorEvents = []byte{ // 162 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x49, 0x2d, 0x4b, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0xcf, 0x2c, 0x2e, 0x2e, 0x4d, 0x35, 0x36, 0x34, 0xd2, 0x83, 0x08, 0x4b, 0x99, 0xa6, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xa7, 0xe7, 0xa7, 0xe7, 0xeb, 0x83, 0xd5, 0x25, 0x95, 0xa6, 0xe9, 0x97, 0xa4, 0x16, 0x97, 0xe8, 0xc3, 0x94, 0xc3, 0x19, 0x10, 0x73, 0xa4, 0x74, 0x71, 0x6a, 0x03, 0xf1, 0xc0, 0x1c, 0x30, 0x0b, 0xa2, 0x5c, 0xc9, 0x84, 0x8b, 0x3d, 0xb8, 0x34, 0xa9, 0xa4, 0xb2, 0x20, 0x55, 0x48, 0x93, 0x8b, 0xb5, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0x82, 0x45, 0x81, 0x51, 0x83, 0xcf, 0x48, 0x58, 0x0f, 0x6e, 0x72, 0x48, 0x62, 0x71, 0x76, 0x30, 0x48, 0x2a, 0x08, 0xa2, 0xc2, 0x49, 0xe2, 0xc3, 0x43, 0x39, 0xc6, 0x1f, 0x0f, 0xe5, 0x18, 0x57, 0x3c, 0x92, 0x63, 0xdc, 0xf1, 0x48, 0x8e, 0x31, 0x8a, 0x0d, 0xe2, 0x6a, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x99, 0x76, 0xdc, 0x82, 0xd5, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue312/events/events.proto000066400000000000000000000006401317075173200235770ustar00rootroot00000000000000syntax = "proto2"; package issue312.events; import "github.com/gogo/protobuf/test/issue312/issue312.proto"; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option go_package = "events"; option (gogoproto.gostring_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.testgen_all) = true; message Subtype { optional issue312.TaskState state = 4; } golang-gogoprotobuf-0.5/test/issue312/events/eventspb_test.go000066400000000000000000000070151317075173200244250ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: events.proto /* Package events is a generated protocol buffer package. It is generated from these files: events.proto It has these top-level messages: Subtype */ package events import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/test/issue312" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSubtypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubtype(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subtype{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSubtypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubtype(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subtype{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubtypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubtype(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Subtype{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubtypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubtype(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Subtype{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubtypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubtype(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/issue312/issue312.pb.go000066400000000000000000000053561317075173200222200ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: issue312.proto /* Package issue312 is a generated protocol buffer package. It is generated from these files: issue312.proto It has these top-level messages: */ package issue312 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type TaskState int32 const ( TaskState_TASK_STAGING TaskState = 6 TaskState_TASK_STARTING TaskState = 0 TaskState_TASK_RUNNING TaskState = 1 ) var TaskState_name = map[int32]string{ 6: "TASK_STAGING", 0: "TASK_STARTING", 1: "TASK_RUNNING", } var TaskState_value = map[string]int32{ "TASK_STAGING": 6, "TASK_STARTING": 0, "TASK_RUNNING": 1, } func (x TaskState) Enum() *TaskState { p := new(TaskState) *p = x return p } func (x TaskState) String() string { return proto.EnumName(TaskState_name, int32(x)) } func (x *TaskState) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(TaskState_value, data, "TaskState") if err != nil { return err } *x = TaskState(value) return nil } func (TaskState) EnumDescriptor() ([]byte, []int) { return fileDescriptorIssue312, []int{0} } func init() { proto.RegisterEnum("issue312.TaskState", TaskState_name, TaskState_value) } func init() { proto.RegisterFile("issue312.proto", fileDescriptorIssue312) } var fileDescriptorIssue312 = []byte{ // 147 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xcb, 0x2c, 0x2e, 0x2e, 0x4d, 0x35, 0x36, 0x34, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x80, 0xf1, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0x0a, 0x92, 0x4a, 0xd3, 0xc0, 0x3c, 0x30, 0x07, 0xcc, 0x82, 0x68, 0xd4, 0x72, 0xe2, 0xe2, 0x0c, 0x49, 0x2c, 0xce, 0x0e, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0x12, 0xe0, 0xe2, 0x09, 0x71, 0x0c, 0xf6, 0x8e, 0x0f, 0x0e, 0x71, 0x74, 0xf7, 0xf4, 0x73, 0x17, 0x60, 0x13, 0x12, 0xe4, 0xe2, 0x85, 0x89, 0x04, 0x85, 0x80, 0x84, 0x18, 0xe0, 0x8a, 0x82, 0x42, 0xfd, 0xfc, 0x40, 0x22, 0x8c, 0x4e, 0x52, 0x1f, 0x1e, 0xca, 0x31, 0xfe, 0x78, 0x28, 0xc7, 0xb8, 0xe2, 0x91, 0x1c, 0xe3, 0x8e, 0x47, 0x72, 0x8c, 0x51, 0x70, 0xe7, 0x00, 0x02, 0x00, 0x00, 0xff, 0xff, 0xaf, 0xdd, 0xde, 0x2a, 0xa9, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue312/issue312.proto000066400000000000000000000005551317075173200223520ustar00rootroot00000000000000syntax = "proto2"; package issue312; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option go_package = "issue312"; option (gogoproto.gostring_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.testgen_all) = true; enum TaskState { TASK_STAGING = 6; TASK_STARTING = 0; TASK_RUNNING = 1; } golang-gogoprotobuf-0.5/test/issue322/000077500000000000000000000000001317075173200177035ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue322/Makefile000066400000000000000000000004111317075173200213370ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-gen-gogofast protoc-min-version --version="3.0.0" --gogofast_out=Mgoogle/protobuf/descriptor.proto=github.com/gogo/protobuf/protoc-gen-gogo/descriptor:. --proto_path=../../../../../:../../protobuf/:. *.proto golang-gogoprotobuf-0.5/test/issue322/issue322.pb.go000066400000000000000000000330301317075173200222100ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: issue322.proto /* Package test is a generated protocol buffer package. It is generated from these files: issue322.proto It has these top-level messages: OneofTest */ package test import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type OneofTest struct { // Types that are valid to be assigned to Union: // *OneofTest_I Union isOneofTest_Union `protobuf_oneof:"union"` XXX_unrecognized []byte `json:"-"` } func (m *OneofTest) Reset() { *m = OneofTest{} } func (m *OneofTest) String() string { return proto.CompactTextString(m) } func (*OneofTest) ProtoMessage() {} func (*OneofTest) Descriptor() ([]byte, []int) { return fileDescriptorIssue322, []int{0} } const Default_OneofTest_I int32 = 4 type isOneofTest_Union interface { isOneofTest_Union() Equal(interface{}) bool MarshalTo([]byte) (int, error) Size() int } type OneofTest_I struct { I int32 `protobuf:"varint,1,opt,name=i,oneof,def=4"` } func (*OneofTest_I) isOneofTest_Union() {} func (m *OneofTest) GetUnion() isOneofTest_Union { if m != nil { return m.Union } return nil } func (m *OneofTest) GetI() int32 { if x, ok := m.GetUnion().(*OneofTest_I); ok { return x.I } return Default_OneofTest_I } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofTest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofTest_OneofMarshaler, _OneofTest_OneofUnmarshaler, _OneofTest_OneofSizer, []interface{}{ (*OneofTest_I)(nil), } } func _OneofTest_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofTest) // union switch x := m.Union.(type) { case *OneofTest_I: _ = b.EncodeVarint(1<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.I)) case nil: default: return fmt.Errorf("OneofTest.Union has unexpected type %T", x) } return nil } func _OneofTest_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofTest) switch tag { case 1: // union.i if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Union = &OneofTest_I{int32(x)} return true, err default: return false, nil } } func _OneofTest_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofTest) // union switch x := m.Union.(type) { case *OneofTest_I: n += proto.SizeVarint(1<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.I)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*OneofTest)(nil), "test.OneofTest") } func (this *OneofTest) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofTest) if !ok { that2, ok := that.(OneofTest) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Union == nil { if this.Union != nil { return false } } else if this.Union == nil { return false } else if !this.Union.Equal(that1.Union) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OneofTest_I) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofTest_I) if !ok { that2, ok := that.(OneofTest_I) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.I != that1.I { return false } return true } func (this *OneofTest) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.OneofTest{") if this.Union != nil { s = append(s, "Union: "+fmt.Sprintf("%#v", this.Union)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OneofTest_I) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&test.OneofTest_I{` + `I:` + fmt.Sprintf("%#v", this.I) + `}`}, ", ") return s } func valueToGoStringIssue322(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *OneofTest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OneofTest) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Union != nil { nn1, err := m.Union.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn1 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *OneofTest_I) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x8 i++ i = encodeVarintIssue322(dAtA, i, uint64(m.I)) return i, nil } func encodeVarintIssue322(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedOneofTest(r randyIssue322, easy bool) *OneofTest { this := &OneofTest{} oneofNumber_Union := []int32{1}[r.Intn(1)] switch oneofNumber_Union { case 1: this.Union = NewPopulatedOneofTest_I(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedIssue322(r, 2) } return this } func NewPopulatedOneofTest_I(r randyIssue322, easy bool) *OneofTest_I { this := &OneofTest_I{} this.I = int32(r.Int31()) if r.Intn(2) == 0 { this.I *= -1 } return this } type randyIssue322 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneIssue322(r randyIssue322) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringIssue322(r randyIssue322) string { v1 := r.Intn(100) tmps := make([]rune, v1) for i := 0; i < v1; i++ { tmps[i] = randUTF8RuneIssue322(r) } return string(tmps) } func randUnrecognizedIssue322(r randyIssue322, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldIssue322(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldIssue322(dAtA []byte, r randyIssue322, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateIssue322(dAtA, uint64(key)) v2 := r.Int63() if r.Intn(2) == 0 { v2 *= -1 } dAtA = encodeVarintPopulateIssue322(dAtA, uint64(v2)) case 1: dAtA = encodeVarintPopulateIssue322(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateIssue322(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateIssue322(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateIssue322(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateIssue322(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *OneofTest) Size() (n int) { var l int _ = l if m.Union != nil { n += m.Union.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OneofTest_I) Size() (n int) { var l int _ = l n += 1 + sovIssue322(uint64(m.I)) return n } func sovIssue322(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozIssue322(x uint64) (n int) { return sovIssue322(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *OneofTest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue322 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OneofTest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OneofTest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field I", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue322 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Union = &OneofTest_I{v} default: iNdEx = preIndex skippy, err := skipIssue322(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIssue322 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipIssue322(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue322 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue322 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue322 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthIssue322 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue322 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipIssue322(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthIssue322 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowIssue322 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("issue322.proto", fileDescriptorIssue322) } var fileDescriptorIssue322 = []byte{ // 149 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xcb, 0x2c, 0x2e, 0x2e, 0x4d, 0x35, 0x36, 0x32, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x29, 0x49, 0x2d, 0x2e, 0x91, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0x4b, 0x26, 0x95, 0xa6, 0x81, 0x79, 0x60, 0x0e, 0x98, 0x05, 0xd1, 0xa4, 0xa4, 0xce, 0xc5, 0xe9, 0x9f, 0x97, 0x9a, 0x9f, 0x16, 0x92, 0x5a, 0x5c, 0x22, 0x24, 0xc8, 0xc5, 0x98, 0x29, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x6a, 0xc5, 0x68, 0xe2, 0xc1, 0x10, 0xc4, 0x98, 0xe9, 0xc4, 0xce, 0xc5, 0x5a, 0x9a, 0x97, 0x99, 0x9f, 0xe7, 0x24, 0xf3, 0xe1, 0xa1, 0x1c, 0xe3, 0x8f, 0x87, 0x72, 0x8c, 0x2b, 0x1e, 0xc9, 0x31, 0xee, 0x78, 0x24, 0xc7, 0x78, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x02, 0x02, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x64, 0xd7, 0x6a, 0x8c, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue322/issue322.proto000066400000000000000000000005101317075173200223430ustar00rootroot00000000000000syntax = "proto2"; package test; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.gostring_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.testgen_all) = true; message OneofTest { oneof union { int32 i = 1 [default = 4]; } }golang-gogoprotobuf-0.5/test/issue322/issue322pb_test.go000066400000000000000000000115201317075173200231710ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: issue322.proto /* Package test is a generated protocol buffer package. It is generated from these files: issue322.proto It has these top-level messages: OneofTest */ package test import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestOneofTestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofTest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOneofTestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofTest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofTestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofTest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofTest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofTestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofTest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofTestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofTest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofTestGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofTest(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOneofTestSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofTest(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/issue330/000077500000000000000000000000001317075173200177025ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue330/Makefile000066400000000000000000000004011317075173200213350ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=Mgoogle/protobuf/descriptor.proto=github.com/gogo/protobuf/protoc-gen-gogo/descriptor:. --proto_path=../../../../../:../../protobuf/:. *.proto golang-gogoprotobuf-0.5/test/issue330/issue330.pb.go000066400000000000000000000224751317075173200222210ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: issue330.proto /* Package issue330 is a generated protocol buffer package. It is generated from these files: issue330.proto It has these top-level messages: Object */ package issue330 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Object struct { Type TypeIdentifier `protobuf:"varint,1,opt,name=type,proto3,casttype=TypeIdentifier" json:"type,omitempty"` } func (m *Object) Reset() { *m = Object{} } func (m *Object) String() string { return proto.CompactTextString(m) } func (*Object) ProtoMessage() {} func (*Object) Descriptor() ([]byte, []int) { return fileDescriptorIssue330, []int{0} } func (m *Object) GetType() TypeIdentifier { if m != nil { return m.Type } return 0 } func init() { proto.RegisterType((*Object)(nil), "issue330.Object") } func (this *Object) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Object) if !ok { that2, ok := that.(Object) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Type != that1.Type { return false } return true } func (m *Object) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Object) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Type != 0 { dAtA[i] = 0x8 i++ i = encodeVarintIssue330(dAtA, i, uint64(m.Type)) } return i, nil } func encodeVarintIssue330(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedObject(r randyIssue330, easy bool) *Object { this := &Object{} this.Type = TypeIdentifier(r.Uint32()) if !easy && r.Intn(10) != 0 { } return this } type randyIssue330 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneIssue330(r randyIssue330) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringIssue330(r randyIssue330) string { v1 := r.Intn(100) tmps := make([]rune, v1) for i := 0; i < v1; i++ { tmps[i] = randUTF8RuneIssue330(r) } return string(tmps) } func randUnrecognizedIssue330(r randyIssue330, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldIssue330(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldIssue330(dAtA []byte, r randyIssue330, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateIssue330(dAtA, uint64(key)) v2 := r.Int63() if r.Intn(2) == 0 { v2 *= -1 } dAtA = encodeVarintPopulateIssue330(dAtA, uint64(v2)) case 1: dAtA = encodeVarintPopulateIssue330(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateIssue330(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateIssue330(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateIssue330(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateIssue330(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Object) Size() (n int) { var l int _ = l if m.Type != 0 { n += 1 + sovIssue330(uint64(m.Type)) } return n } func sovIssue330(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozIssue330(x uint64) (n int) { return sovIssue330(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Object) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue330 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Object: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Object: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) } m.Type = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue330 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Type |= (TypeIdentifier(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipIssue330(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIssue330 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipIssue330(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue330 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue330 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue330 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthIssue330 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue330 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipIssue330(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthIssue330 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowIssue330 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("issue330.proto", fileDescriptorIssue330) } var fileDescriptorIssue330 = []byte{ // 158 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xcb, 0x2c, 0x2e, 0x2e, 0x4d, 0x35, 0x36, 0x36, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x80, 0xf1, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0x0a, 0x92, 0x4a, 0xd3, 0xc0, 0x3c, 0x30, 0x07, 0xcc, 0x82, 0x68, 0x54, 0x32, 0xe0, 0x62, 0xf3, 0x4f, 0xca, 0x4a, 0x4d, 0x2e, 0x11, 0x52, 0xe3, 0x62, 0x29, 0xa9, 0x2c, 0x48, 0x95, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x75, 0x12, 0xfa, 0x75, 0x4f, 0x9e, 0x2f, 0xa4, 0xb2, 0x20, 0xd5, 0x33, 0x25, 0x35, 0xaf, 0x24, 0x33, 0x2d, 0x33, 0xb5, 0x28, 0x08, 0x2c, 0xef, 0x24, 0xf3, 0xe3, 0xa1, 0x1c, 0xe3, 0x8a, 0x47, 0x72, 0x8c, 0x3b, 0x1e, 0xc9, 0x31, 0x1e, 0x78, 0x24, 0xc7, 0x78, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x26, 0xb1, 0x81, 0x8d, 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8f, 0x41, 0xc2, 0x37, 0xa1, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue330/issue330.proto000066400000000000000000000007501317075173200223470ustar00rootroot00000000000000syntax = "proto3"; package issue330; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.benchgen_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.unmarshaler_all) = true; message Object { uint32 type = 1 [(gogoproto.casttype) = "TypeIdentifier"]; } golang-gogoprotobuf-0.5/test/issue330/issue330pb_test.go000066400000000000000000000133151317075173200231730ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: issue330.proto /* Package issue330 is a generated protocol buffer package. It is generated from these files: issue330.proto It has these top-level messages: Object */ package issue330 import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestObjectProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Object{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestObjectMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Object{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkObjectProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Object, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedObject(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkObjectProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedObject(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Object{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestObjectJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Object{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestObjectProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Object{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestObjectProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Object{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestObjectSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedObject(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkObjectSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Object, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedObject(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/issue330/type.go000066400000000000000000000003541317075173200212140ustar00rootroot00000000000000package issue330 type TypeIdentifier uint32 const ( UnknownType TypeIdentifier = 0 UserType TypeIdentifier = 20 ) func (t TypeIdentifier) String() string { switch t { case 20: return "User" default: return "Unknown" } } golang-gogoprotobuf-0.5/test/issue34/000077500000000000000000000000001317075173200176235ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue34/Makefile000066400000000000000000000027531317075173200212720ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. proto.proto) golang-gogoprotobuf-0.5/test/issue34/issue34_test.go000066400000000000000000000046231317075173200225150ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package issue34 import ( "bytes" "github.com/gogo/protobuf/proto" "testing" ) func TestZeroLengthOptionalBytes(t *testing.T) { roundtrip := func(f *Foo) *Foo { data, err := proto.Marshal(f) if err != nil { panic(err) } newF := &Foo{} err = proto.Unmarshal(data, newF) if err != nil { panic(err) } return newF } f := &Foo{} roundtrippedF := roundtrip(f) if roundtrippedF.Bar != nil { t.Fatalf("should be nil") } f.Bar = []byte{} roundtrippedF = roundtrip(f) if roundtrippedF.Bar == nil { t.Fatalf("should not be nil") } if len(roundtrippedF.Bar) != 0 { t.Fatalf("should be empty") } } func TestRepeatedOptional(t *testing.T) { repeated := &FooWithRepeated{Bar: [][]byte{[]byte("a"), []byte("b")}} data, err := proto.Marshal(repeated) if err != nil { panic(err) } optional := &Foo{} err = proto.Unmarshal(data, optional) if err != nil { panic(err) } if !bytes.Equal(optional.Bar, []byte("b")) { t.Fatalf("should return the last entry") } } golang-gogoprotobuf-0.5/test/issue34/proto.pb.go000066400000000000000000000205461317075173200217240ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto.proto /* Package issue34 is a generated protocol buffer package. It is generated from these files: proto.proto It has these top-level messages: Foo FooWithRepeated */ package issue34 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Foo struct { Bar []byte `protobuf:"bytes,1,opt,name=bar" json:"bar,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Foo) Reset() { *m = Foo{} } func (m *Foo) String() string { return proto.CompactTextString(m) } func (*Foo) ProtoMessage() {} func (*Foo) Descriptor() ([]byte, []int) { return fileDescriptorProto, []int{0} } func (m *Foo) GetBar() []byte { if m != nil { return m.Bar } return nil } type FooWithRepeated struct { Bar [][]byte `protobuf:"bytes,1,rep,name=bar" json:"bar,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *FooWithRepeated) Reset() { *m = FooWithRepeated{} } func (m *FooWithRepeated) String() string { return proto.CompactTextString(m) } func (*FooWithRepeated) ProtoMessage() {} func (*FooWithRepeated) Descriptor() ([]byte, []int) { return fileDescriptorProto, []int{1} } func (m *FooWithRepeated) GetBar() [][]byte { if m != nil { return m.Bar } return nil } func init() { proto.RegisterType((*Foo)(nil), "issue34.Foo") proto.RegisterType((*FooWithRepeated)(nil), "issue34.FooWithRepeated") } func (m *Foo) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Foo: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Foo: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Bar", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthProto } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Bar = append(m.Bar[:0], dAtA[iNdEx:postIndex]...) if m.Bar == nil { m.Bar = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipProto(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthProto } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *FooWithRepeated) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FooWithRepeated: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FooWithRepeated: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Bar", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthProto } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Bar = append(m.Bar, make([]byte, postIndex-iNdEx)) copy(m.Bar[len(m.Bar)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipProto(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthProto } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipProto(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthProto } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipProto(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthProto = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowProto = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("proto.proto", fileDescriptorProto) } var fileDescriptorProto = []byte{ // 126 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2e, 0x28, 0xca, 0x2f, 0xc9, 0xd7, 0x03, 0x93, 0x42, 0xec, 0x99, 0xc5, 0xc5, 0xa5, 0xa9, 0xc6, 0x26, 0x52, 0xba, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xe9, 0xf9, 0xe9, 0xf9, 0xfa, 0x60, 0xf9, 0xa4, 0xd2, 0x34, 0x30, 0x0f, 0xcc, 0x01, 0xb3, 0x20, 0xfa, 0x94, 0xc4, 0xb9, 0x98, 0xdd, 0xf2, 0xf3, 0x85, 0x04, 0xb8, 0x98, 0x93, 0x12, 0x8b, 0x24, 0x18, 0x15, 0x18, 0x35, 0x78, 0x82, 0x40, 0x4c, 0x25, 0x65, 0x2e, 0x7e, 0xb7, 0xfc, 0xfc, 0xf0, 0xcc, 0x92, 0x8c, 0xa0, 0xd4, 0x82, 0xd4, 0xc4, 0x92, 0xd4, 0x14, 0x84, 0x22, 0x66, 0xa8, 0x22, 0x27, 0x96, 0x0b, 0x8f, 0xe4, 0x18, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x00, 0xb2, 0x1b, 0xef, 0x89, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue34/proto.proto000066400000000000000000000032241317075173200220540ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 issue34; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.unmarshaler_all) = true; message Foo { optional bytes bar = 1; } message FooWithRepeated { repeated bytes bar = 1; } golang-gogoprotobuf-0.5/test/issue42order/000077500000000000000000000000001317075173200206565ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue42order/Makefile000066400000000000000000000027551317075173200223270ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. issue42.proto) golang-gogoprotobuf-0.5/test/issue42order/issue42.pb.go000066400000000000000000000333071317075173200231110ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: issue42.proto /* Package issue42 is a generated protocol buffer package. It is generated from these files: issue42.proto It has these top-level messages: UnorderedFields OrderedFields */ package issue42 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type UnorderedFields struct { A *int64 `protobuf:"varint,10,opt,name=A" json:"A,omitempty"` B *uint64 `protobuf:"fixed64,1,opt,name=B" json:"B,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UnorderedFields) Reset() { *m = UnorderedFields{} } func (m *UnorderedFields) String() string { return proto.CompactTextString(m) } func (*UnorderedFields) ProtoMessage() {} func (*UnorderedFields) Descriptor() ([]byte, []int) { return fileDescriptorIssue42, []int{0} } func (m *UnorderedFields) GetA() int64 { if m != nil && m.A != nil { return *m.A } return 0 } func (m *UnorderedFields) GetB() uint64 { if m != nil && m.B != nil { return *m.B } return 0 } type OrderedFields struct { B *uint64 `protobuf:"fixed64,1,opt,name=B" json:"B,omitempty"` A *int64 `protobuf:"varint,10,opt,name=A" json:"A,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OrderedFields) Reset() { *m = OrderedFields{} } func (m *OrderedFields) String() string { return proto.CompactTextString(m) } func (*OrderedFields) ProtoMessage() {} func (*OrderedFields) Descriptor() ([]byte, []int) { return fileDescriptorIssue42, []int{1} } func (m *OrderedFields) GetB() uint64 { if m != nil && m.B != nil { return *m.B } return 0 } func (m *OrderedFields) GetA() int64 { if m != nil && m.A != nil { return *m.A } return 0 } func init() { proto.RegisterType((*UnorderedFields)(nil), "issue42.UnorderedFields") proto.RegisterType((*OrderedFields)(nil), "issue42.OrderedFields") } func (m *UnorderedFields) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UnorderedFields) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.B != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.B)) i += 8 } if m.A != nil { dAtA[i] = 0x50 i++ i = encodeVarintIssue42(dAtA, i, uint64(*m.A)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *OrderedFields) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OrderedFields) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.B != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.B)) i += 8 } if m.A != nil { dAtA[i] = 0x50 i++ i = encodeVarintIssue42(dAtA, i, uint64(*m.A)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintIssue42(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedUnorderedFields(r randyIssue42, easy bool) *UnorderedFields { this := &UnorderedFields{} if r.Intn(10) != 0 { v1 := uint64(uint64(r.Uint32())) this.B = &v1 } if r.Intn(10) != 0 { v2 := int64(r.Int63()) if r.Intn(2) == 0 { v2 *= -1 } this.A = &v2 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedIssue42(r, 11) } return this } func NewPopulatedOrderedFields(r randyIssue42, easy bool) *OrderedFields { this := &OrderedFields{} if r.Intn(10) != 0 { v3 := uint64(uint64(r.Uint32())) this.B = &v3 } if r.Intn(10) != 0 { v4 := int64(r.Int63()) if r.Intn(2) == 0 { v4 *= -1 } this.A = &v4 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedIssue42(r, 11) } return this } type randyIssue42 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneIssue42(r randyIssue42) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringIssue42(r randyIssue42) string { v5 := r.Intn(100) tmps := make([]rune, v5) for i := 0; i < v5; i++ { tmps[i] = randUTF8RuneIssue42(r) } return string(tmps) } func randUnrecognizedIssue42(r randyIssue42, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldIssue42(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldIssue42(dAtA []byte, r randyIssue42, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateIssue42(dAtA, uint64(key)) v6 := r.Int63() if r.Intn(2) == 0 { v6 *= -1 } dAtA = encodeVarintPopulateIssue42(dAtA, uint64(v6)) case 1: dAtA = encodeVarintPopulateIssue42(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateIssue42(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateIssue42(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateIssue42(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateIssue42(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *UnorderedFields) Size() (n int) { var l int _ = l if m.B != nil { n += 9 } if m.A != nil { n += 1 + sovIssue42(uint64(*m.A)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OrderedFields) Size() (n int) { var l int _ = l if m.B != nil { n += 9 } if m.A != nil { n += 1 + sovIssue42(uint64(*m.A)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovIssue42(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozIssue42(x uint64) (n int) { return sovIssue42(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *UnorderedFields) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue42 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: UnorderedFields: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: UnorderedFields: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.B = &v case 10: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field A", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue42 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.A = &v default: iNdEx = preIndex skippy, err := skipIssue42(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIssue42 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OrderedFields) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue42 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OrderedFields: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OrderedFields: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.B = &v case 10: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field A", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowIssue42 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.A = &v default: iNdEx = preIndex skippy, err := skipIssue42(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthIssue42 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipIssue42(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue42 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue42 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue42 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthIssue42 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowIssue42 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipIssue42(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthIssue42 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowIssue42 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("issue42.proto", fileDescriptorIssue42) } var fileDescriptorIssue42 = []byte{ // 144 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xcd, 0x2c, 0x2e, 0x2e, 0x4d, 0x35, 0x31, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x87, 0x72, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0xf2, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0xf4, 0x29, 0xe9, 0x72, 0xf1, 0x87, 0xe6, 0xe5, 0x17, 0xa5, 0xa4, 0x16, 0xa5, 0xa6, 0xb8, 0x65, 0xa6, 0xe6, 0xa4, 0x14, 0x0b, 0xf1, 0x70, 0x31, 0x3a, 0x49, 0x30, 0x2a, 0x30, 0x6a, 0xb0, 0x05, 0x31, 0x3a, 0x81, 0x78, 0x8e, 0x12, 0x5c, 0x0a, 0x8c, 0x1a, 0xcc, 0x41, 0x8c, 0x8e, 0x4a, 0xda, 0x5c, 0xbc, 0xfe, 0xc4, 0x2a, 0x76, 0x12, 0xf8, 0xf1, 0x50, 0x8e, 0xf1, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x04, 0x04, 0x00, 0x00, 0xff, 0xff, 0x94, 0xa9, 0xfd, 0x9c, 0xb5, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue42order/issue42.proto000066400000000000000000000035021317075173200232410ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 issue42; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.sizer_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.populate_all) = true; message UnorderedFields { optional int64 A = 10; optional fixed64 B = 1; } message OrderedFields { optional fixed64 B = 1; optional int64 A = 10; } golang-gogoprotobuf-0.5/test/issue42order/order_test.go000066400000000000000000000040641317075173200233630ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package issue42 import ( "bytes" "github.com/gogo/protobuf/proto" math_rand "math/rand" "testing" time "time" ) func TestIssue42Order(t *testing.T) { unordered := NewPopulatedUnorderedFields(math_rand.New(math_rand.NewSource(time.Now().UnixNano())), false) udata, err := proto.Marshal(unordered) if err != nil { t.Fatal(err) } ordered := &OrderedFields{} if err = proto.Unmarshal(udata, ordered); err != nil { t.Fatal(err) } data, err := proto.Marshal(ordered) if err != nil { t.Fatal(err) } if !bytes.Equal(udata, data) { t.Fatalf("expected data to be marshaled in the same order, please sort fields before marshaling") } } golang-gogoprotobuf-0.5/test/issue8/000077500000000000000000000000001317075173200175445ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/issue8/Makefile000066400000000000000000000027531317075173200212130ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. proto.proto) golang-gogoprotobuf-0.5/test/issue8/proto.pb.go000066400000000000000000000211371317075173200216420ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto.proto /* Package proto is a generated protocol buffer package. It is generated from these files: proto.proto It has these top-level messages: Foo */ package proto import proto1 "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" import io "io" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto1.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto1.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Foo struct { Bar *uint64 `protobuf:"varint,1,req,name=bar" json:"bar,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Foo) Reset() { *m = Foo{} } func (m *Foo) String() string { return proto1.CompactTextString(m) } func (*Foo) ProtoMessage() {} func (*Foo) Descriptor() ([]byte, []int) { return fileDescriptorProto, []int{0} } func (m *Foo) GetBar() uint64 { if m != nil && m.Bar != nil { return *m.Bar } return 0 } func init() { proto1.RegisterType((*Foo)(nil), "proto.Foo") } func (this *Foo) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Foo) if !ok { that2, ok := that.(Foo) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Bar != nil && that1.Bar != nil { if *this.Bar != *that1.Bar { return false } } else if this.Bar != nil { return false } else if that1.Bar != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func NewPopulatedFoo(r randyProto, easy bool) *Foo { this := &Foo{} v1 := uint64(uint64(r.Uint32())) this.Bar = &v1 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedProto(r, 2) } return this } type randyProto interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneProto(r randyProto) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringProto(r randyProto) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneProto(r) } return string(tmps) } func randUnrecognizedProto(r randyProto, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldProto(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldProto(dAtA []byte, r randyProto, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateProto(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateProto(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateProto(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateProto(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateProto(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateProto(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateProto(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Foo) Unmarshal(dAtA []byte) error { var hasFields [1]uint64 l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Foo: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Foo: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Bar", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Bar = &v hasFields[0] |= uint64(0x00000001) default: iNdEx = preIndex skippy, err := skipProto(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthProto } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if hasFields[0]&uint64(0x00000001) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("bar") } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipProto(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthProto } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipProto(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthProto = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowProto = fmt.Errorf("proto: integer overflow") ) func init() { proto1.RegisterFile("proto.proto", fileDescriptorProto) } var fileDescriptorProto = []byte{ // 109 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2e, 0x28, 0xca, 0x2f, 0xc9, 0xd7, 0x03, 0x93, 0x42, 0xac, 0x60, 0x4a, 0x4a, 0x37, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0x3d, 0x3f, 0x3d, 0x5f, 0x1f, 0x2c, 0x9c, 0x54, 0x9a, 0x06, 0xe6, 0x81, 0x39, 0x60, 0x16, 0x44, 0x97, 0x92, 0x38, 0x17, 0xb3, 0x5b, 0x7e, 0xbe, 0x90, 0x00, 0x17, 0x73, 0x52, 0x62, 0x91, 0x04, 0xa3, 0x02, 0x93, 0x06, 0x4b, 0x10, 0x88, 0xe9, 0x24, 0xf0, 0xe3, 0xa1, 0x1c, 0xe3, 0x8a, 0x47, 0x72, 0x8c, 0x3b, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0x08, 0x08, 0x00, 0x00, 0xff, 0xff, 0x54, 0x06, 0x1b, 0x76, 0x6e, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/issue8/proto.proto000066400000000000000000000033201317075173200217720ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 proto; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.unmarshaler_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.equal_all) = true; message Foo { required uint64 bar = 1; } golang-gogoprotobuf-0.5/test/issue8/protopb_test.go000066400000000000000000000060731317075173200226250ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto.proto /* Package proto is a generated protocol buffer package. It is generated from these files: proto.proto It has these top-level messages: Foo */ package proto import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto1 "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto1.Marshal var _ = fmt.Errorf var _ = math.Inf func TestFooProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFoo(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Foo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFooJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFoo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Foo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFooProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFoo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Foo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFooProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFoo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Foo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/jsonpb-gogo/000077500000000000000000000000001317075173200205505ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/jsonpb-gogo/jsonpb_gogo_test.go000066400000000000000000000015111317075173200244420ustar00rootroot00000000000000package jsonpb_gogo import ( "testing" "github.com/gogo/protobuf/jsonpb" ) // customFieldMessage implements protobuf.Message but is not a normal generated message type. type customFieldMessage struct { someField string //this is not a proto field } func (m *customFieldMessage) Reset() { m.someField = "hello" } func (m *customFieldMessage) String() string { return m.someField } func (m *customFieldMessage) ProtoMessage() { } func TestUnmarshalWithJSONPBUnmarshaler(t *testing.T) { rawJson := `{}` marshaler := &jsonpb.Marshaler{} msg := &customFieldMessage{someField: "Ignore me"} str, err := marshaler.MarshalToString(msg) if err != nil { t.Errorf("an unexpected error occurred when marshaling message: %v", err) } if str != rawJson { t.Errorf("marshaled JSON was incorrect: got %s, wanted %s", str, rawJson) } } golang-gogoprotobuf-0.5/test/mapdefaults/000077500000000000000000000000001317075173200206315ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapdefaults/Makefile000066400000000000000000000033031317075173200222700ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2017, 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-combo go install github.com/gogo/protobuf/protoc-gen-gogofast protoc-gen-combo --version="3.0.0" --proto_path=../../../../../:../../protobuf/:. --gogo_out=. map.proto find combos -type d -not -name combos -exec cp map_test.go.in {}/map_test.go \; golang-gogoprotobuf-0.5/test/mapdefaults/combos/000077500000000000000000000000001317075173200221135ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapdefaults/combos/both/000077500000000000000000000000001317075173200230475ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapdefaults/combos/both/map.pb.go000066400000000000000000001472441317075173200245670ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/map.proto /* Package mapdefaults is a generated protocol buffer package. It is generated from these files: combos/both/map.proto It has these top-level messages: MapTest FakeMap FakeMapEntry */ package mapdefaults import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapTest struct { StrStr map[string]string `protobuf:"bytes,1,rep,name=str_str,json=strStr" json:"str_str,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MapTest) Reset() { *m = MapTest{} } func (*MapTest) ProtoMessage() {} func (*MapTest) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{0} } type FakeMap struct { Entries []*FakeMapEntry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"` } func (m *FakeMap) Reset() { *m = FakeMap{} } func (*FakeMap) ProtoMessage() {} func (*FakeMap) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{1} } type FakeMapEntry struct { Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` Other string `protobuf:"bytes,3,opt,name=other,proto3" json:"other,omitempty"` } func (m *FakeMapEntry) Reset() { *m = FakeMapEntry{} } func (*FakeMapEntry) ProtoMessage() {} func (*FakeMapEntry) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{2} } func init() { proto.RegisterType((*MapTest)(nil), "mapdefaults.MapTest") proto.RegisterType((*FakeMap)(nil), "mapdefaults.FakeMap") proto.RegisterType((*FakeMapEntry)(nil), "mapdefaults.FakeMapEntry") } func (this *MapTest) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func (this *FakeMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func (this *FakeMapEntry) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func MapDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3834 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0xe6, 0xe2, 0x87, 0x04, 0x0e, 0x40, 0x70, 0xb9, 0xa4, 0x24, 0x88, 0x89, 0x21, 0x0a, 0xfe, 0xa3, 0xed, 0x06, 0xcc, 0x48, 0x96, 0x2c, 0x41, 0x8d, 0x5d, 0x10, 0x84, 0x18, 0xa8, 0x24, 0x81, 0x2c, 0xc8, 0x58, 0x4e, 0x1f, 0x76, 0x96, 0x8b, 0x0b, 0x60, 0xa5, 0xc5, 0xee, 0x66, 0x77, 0x21, 0x99, 0x9a, 0xce, 0x54, 0x1d, 0xf7, 0x67, 0x32, 0x9d, 0xfe, 0x77, 0xa6, 0x89, 0xeb, 0xb8, 0x6d, 0x66, 0x5a, 0xa7, 0x49, 0x7f, 0x9c, 0xa6, 0x4d, 0xd3, 0x3e, 0xf5, 0x25, 0xad, 0x9f, 0x3a, 0xc9, 0x5b, 0x1f, 0xfa, 0x60, 0xb1, 0x9e, 0x69, 0xda, 0xba, 0xad, 0xdb, 0xf8, 0x21, 0x33, 0x7e, 0xe9, 0xdc, 0xbf, 0xc5, 0x2e, 0x00, 0x6a, 0xc1, 0xcc, 0xd8, 0x79, 0x22, 0xef, 0xb9, 0xe7, 0xfb, 0xee, 0xb9, 0xe7, 0x9e, 0x7b, 0xcf, 0xb9, 0x17, 0x0b, 0x5f, 0xbf, 0x02, 0xab, 0x5d, 0xcb, 0xea, 0x1a, 0x68, 0xdd, 0x76, 0x2c, 0xcf, 0x3a, 0x18, 0x74, 0xd6, 0xdb, 0xc8, 0xd5, 0x1c, 0xdd, 0xf6, 0x2c, 0xa7, 0x44, 0x64, 0xd2, 0x02, 0xd5, 0x28, 0x71, 0x8d, 0xe2, 0x0e, 0x2c, 0x5e, 0xd7, 0x0d, 0xb4, 0xe9, 0x2b, 0xb6, 0x90, 0x27, 0x5d, 0x81, 0x44, 0x47, 0x37, 0x50, 0x5e, 0x58, 0x8d, 0xaf, 0x65, 0x2e, 0x3c, 0x56, 0x1a, 0x01, 0x95, 0xc2, 0x88, 0x26, 0x16, 0xcb, 0x04, 0x51, 0x7c, 0x27, 0x01, 0x4b, 0x13, 0x7a, 0x25, 0x09, 0x12, 0xa6, 0xda, 0xc7, 0x8c, 0xc2, 0x5a, 0x5a, 0x26, 0xff, 0x4b, 0x79, 0x98, 0xb3, 0x55, 0xed, 0xb6, 0xda, 0x45, 0xf9, 0x18, 0x11, 0xf3, 0xa6, 0x54, 0x00, 0x68, 0x23, 0x1b, 0x99, 0x6d, 0x64, 0x6a, 0x87, 0xf9, 0xf8, 0x6a, 0x7c, 0x2d, 0x2d, 0x07, 0x24, 0xd2, 0x33, 0xb0, 0x68, 0x0f, 0x0e, 0x0c, 0x5d, 0x53, 0x02, 0x6a, 0xb0, 0x1a, 0x5f, 0x4b, 0xca, 0x22, 0xed, 0xd8, 0x1c, 0x2a, 0x3f, 0x09, 0x0b, 0x77, 0x91, 0x7a, 0x3b, 0xa8, 0x9a, 0x21, 0xaa, 0x39, 0x2c, 0x0e, 0x28, 0x56, 0x21, 0xdb, 0x47, 0xae, 0xab, 0x76, 0x91, 0xe2, 0x1d, 0xda, 0x28, 0x9f, 0x20, 0xb3, 0x5f, 0x1d, 0x9b, 0xfd, 0xe8, 0xcc, 0x33, 0x0c, 0xb5, 0x77, 0x68, 0x23, 0xa9, 0x02, 0x69, 0x64, 0x0e, 0xfa, 0x94, 0x21, 0x79, 0x8c, 0xff, 0x6a, 0xe6, 0xa0, 0x3f, 0xca, 0x92, 0xc2, 0x30, 0x46, 0x31, 0xe7, 0x22, 0xe7, 0x8e, 0xae, 0xa1, 0xfc, 0x2c, 0x21, 0x78, 0x72, 0x8c, 0xa0, 0x45, 0xfb, 0x47, 0x39, 0x38, 0x4e, 0xaa, 0x42, 0x1a, 0xbd, 0xec, 0x21, 0xd3, 0xd5, 0x2d, 0x33, 0x3f, 0x47, 0x48, 0x1e, 0x9f, 0xb0, 0x8a, 0xc8, 0x68, 0x8f, 0x52, 0x0c, 0x71, 0xd2, 0x65, 0x98, 0xb3, 0x6c, 0x4f, 0xb7, 0x4c, 0x37, 0x9f, 0x5a, 0x15, 0xd6, 0x32, 0x17, 0x3e, 0x3e, 0x31, 0x10, 0x1a, 0x54, 0x47, 0xe6, 0xca, 0x52, 0x1d, 0x44, 0xd7, 0x1a, 0x38, 0x1a, 0x52, 0x34, 0xab, 0x8d, 0x14, 0xdd, 0xec, 0x58, 0xf9, 0x34, 0x21, 0x38, 0x37, 0x3e, 0x11, 0xa2, 0x58, 0xb5, 0xda, 0xa8, 0x6e, 0x76, 0x2c, 0x39, 0xe7, 0x86, 0xda, 0xd2, 0x69, 0x98, 0x75, 0x0f, 0x4d, 0x4f, 0x7d, 0x39, 0x9f, 0x25, 0x11, 0xc2, 0x5a, 0xc5, 0xbf, 0x9d, 0x85, 0x85, 0x69, 0x42, 0xec, 0x1a, 0x24, 0x3b, 0x78, 0x96, 0xf9, 0xd8, 0x49, 0x7c, 0x40, 0x31, 0x61, 0x27, 0xce, 0xfe, 0x88, 0x4e, 0xac, 0x40, 0xc6, 0x44, 0xae, 0x87, 0xda, 0x34, 0x22, 0xe2, 0x53, 0xc6, 0x14, 0x50, 0xd0, 0x78, 0x48, 0x25, 0x7e, 0xa4, 0x90, 0xba, 0x09, 0x0b, 0xbe, 0x49, 0x8a, 0xa3, 0x9a, 0x5d, 0x1e, 0x9b, 0xeb, 0x51, 0x96, 0x94, 0x6a, 0x1c, 0x27, 0x63, 0x98, 0x9c, 0x43, 0xa1, 0xb6, 0xb4, 0x09, 0x60, 0x99, 0xc8, 0xea, 0x28, 0x6d, 0xa4, 0x19, 0xf9, 0xd4, 0x31, 0x5e, 0x6a, 0x60, 0x95, 0x31, 0x2f, 0x59, 0x54, 0xaa, 0x19, 0xd2, 0xd5, 0x61, 0xa8, 0xcd, 0x1d, 0x13, 0x29, 0x3b, 0x74, 0x93, 0x8d, 0x45, 0xdb, 0x3e, 0xe4, 0x1c, 0x84, 0xe3, 0x1e, 0xb5, 0xd9, 0xcc, 0xd2, 0xc4, 0x88, 0x52, 0xe4, 0xcc, 0x64, 0x06, 0xa3, 0x13, 0x9b, 0x77, 0x82, 0x4d, 0xe9, 0x51, 0xf0, 0x05, 0x0a, 0x09, 0x2b, 0x20, 0xa7, 0x50, 0x96, 0x0b, 0x77, 0xd5, 0x3e, 0x5a, 0xb9, 0x07, 0xb9, 0xb0, 0x7b, 0xa4, 0x65, 0x48, 0xba, 0x9e, 0xea, 0x78, 0x24, 0x0a, 0x93, 0x32, 0x6d, 0x48, 0x22, 0xc4, 0x91, 0xd9, 0x26, 0xa7, 0x5c, 0x52, 0xc6, 0xff, 0x4a, 0x3f, 0x35, 0x9c, 0x70, 0x9c, 0x4c, 0xf8, 0x89, 0xf1, 0x15, 0x0d, 0x31, 0x8f, 0xce, 0x7b, 0xe5, 0x39, 0x98, 0x0f, 0x4d, 0x60, 0xda, 0xa1, 0x8b, 0x3f, 0x0b, 0xa7, 0x26, 0x52, 0x4b, 0x37, 0x61, 0x79, 0x60, 0xea, 0xa6, 0x87, 0x1c, 0xdb, 0x41, 0x38, 0x62, 0xe9, 0x50, 0xf9, 0x7f, 0x9b, 0x3b, 0x26, 0xe6, 0xf6, 0x83, 0xda, 0x94, 0x45, 0x5e, 0x1a, 0x8c, 0x0b, 0x9f, 0x4e, 0xa7, 0xbe, 0x3f, 0x27, 0xde, 0xbf, 0x7f, 0xff, 0x7e, 0xac, 0xf8, 0xc5, 0x59, 0x58, 0x9e, 0xb4, 0x67, 0x26, 0x6e, 0xdf, 0xd3, 0x30, 0x6b, 0x0e, 0xfa, 0x07, 0xc8, 0x21, 0x4e, 0x4a, 0xca, 0xac, 0x25, 0x55, 0x20, 0x69, 0xa8, 0x07, 0xc8, 0xc8, 0x27, 0x56, 0x85, 0xb5, 0xdc, 0x85, 0x67, 0xa6, 0xda, 0x95, 0xa5, 0x6d, 0x0c, 0x91, 0x29, 0x52, 0x7a, 0x1e, 0x12, 0xec, 0x88, 0xc6, 0x0c, 0x4f, 0x4f, 0xc7, 0x80, 0xf7, 0x92, 0x4c, 0x70, 0xd2, 0xc7, 0x20, 0x8d, 0xff, 0xd2, 0xd8, 0x98, 0x25, 0x36, 0xa7, 0xb0, 0x00, 0xc7, 0x85, 0xb4, 0x02, 0x29, 0xb2, 0x4d, 0xda, 0x88, 0xa7, 0x36, 0xbf, 0x8d, 0x03, 0xab, 0x8d, 0x3a, 0xea, 0xc0, 0xf0, 0x94, 0x3b, 0xaa, 0x31, 0x40, 0x24, 0xe0, 0xd3, 0x72, 0x96, 0x09, 0x3f, 0x8b, 0x65, 0xd2, 0x39, 0xc8, 0xd0, 0x5d, 0xa5, 0x9b, 0x6d, 0xf4, 0x32, 0x39, 0x3d, 0x93, 0x32, 0xdd, 0x68, 0x75, 0x2c, 0xc1, 0xc3, 0xdf, 0x72, 0x2d, 0x93, 0x87, 0x26, 0x19, 0x02, 0x0b, 0xc8, 0xf0, 0xcf, 0x8d, 0x1e, 0xdc, 0x8f, 0x4c, 0x9e, 0xde, 0x68, 0x4c, 0x15, 0xbf, 0x15, 0x83, 0x04, 0x39, 0x2f, 0x16, 0x20, 0xb3, 0xf7, 0x52, 0xb3, 0xa6, 0x6c, 0x36, 0xf6, 0x37, 0xb6, 0x6b, 0xa2, 0x20, 0xe5, 0x00, 0x88, 0xe0, 0xfa, 0x76, 0xa3, 0xb2, 0x27, 0xc6, 0xfc, 0x76, 0x7d, 0x77, 0xef, 0xf2, 0xb3, 0x62, 0xdc, 0x07, 0xec, 0x53, 0x41, 0x22, 0xa8, 0x70, 0xf1, 0x82, 0x98, 0x94, 0x44, 0xc8, 0x52, 0x82, 0xfa, 0xcd, 0xda, 0xe6, 0xe5, 0x67, 0xc5, 0xd9, 0xb0, 0xe4, 0xe2, 0x05, 0x71, 0x4e, 0x9a, 0x87, 0x34, 0x91, 0x6c, 0x34, 0x1a, 0xdb, 0x62, 0xca, 0xe7, 0x6c, 0xed, 0xc9, 0xf5, 0xdd, 0x2d, 0x31, 0xed, 0x73, 0x6e, 0xc9, 0x8d, 0xfd, 0xa6, 0x08, 0x3e, 0xc3, 0x4e, 0xad, 0xd5, 0xaa, 0x6c, 0xd5, 0xc4, 0x8c, 0xaf, 0xb1, 0xf1, 0xd2, 0x5e, 0xad, 0x25, 0x66, 0x43, 0x66, 0x5d, 0xbc, 0x20, 0xce, 0xfb, 0x43, 0xd4, 0x76, 0xf7, 0x77, 0xc4, 0x9c, 0xb4, 0x08, 0xf3, 0x74, 0x08, 0x6e, 0xc4, 0xc2, 0x88, 0xe8, 0xf2, 0xb3, 0xa2, 0x38, 0x34, 0x84, 0xb2, 0x2c, 0x86, 0x04, 0x97, 0x9f, 0x15, 0xa5, 0x62, 0x15, 0x92, 0x24, 0xba, 0x24, 0x09, 0x72, 0xdb, 0x95, 0x8d, 0xda, 0xb6, 0xd2, 0x68, 0xee, 0xd5, 0x1b, 0xbb, 0x95, 0x6d, 0x51, 0x18, 0xca, 0xe4, 0xda, 0x67, 0xf6, 0xeb, 0x72, 0x6d, 0x53, 0x8c, 0x05, 0x65, 0xcd, 0x5a, 0x65, 0xaf, 0xb6, 0x29, 0xc6, 0x8b, 0x1a, 0x2c, 0x4f, 0x3a, 0x27, 0x27, 0xee, 0x8c, 0xc0, 0x12, 0xc7, 0x8e, 0x59, 0x62, 0xc2, 0x35, 0xb6, 0xc4, 0x5f, 0x11, 0x60, 0x69, 0x42, 0xae, 0x98, 0x38, 0xc8, 0x0b, 0x90, 0xa4, 0x21, 0x4a, 0xb3, 0xe7, 0x53, 0x13, 0x93, 0x0e, 0x09, 0xd8, 0xb1, 0x0c, 0x4a, 0x70, 0xc1, 0x0a, 0x22, 0x7e, 0x4c, 0x05, 0x81, 0x29, 0xc6, 0x8c, 0x7c, 0x45, 0x80, 0xfc, 0x71, 0xdc, 0x11, 0x07, 0x45, 0x2c, 0x74, 0x50, 0x5c, 0x1b, 0x35, 0xe0, 0xfc, 0xf1, 0x73, 0x18, 0xb3, 0xe2, 0x0d, 0x01, 0x4e, 0x4f, 0x2e, 0xb4, 0x26, 0xda, 0xf0, 0x3c, 0xcc, 0xf6, 0x91, 0xd7, 0xb3, 0x78, 0xb1, 0xf1, 0xc4, 0x84, 0x14, 0x86, 0xbb, 0x47, 0x7d, 0xc5, 0x50, 0xc1, 0x1c, 0x18, 0x3f, 0xae, 0x5a, 0xa2, 0xd6, 0x8c, 0x59, 0xfa, 0x85, 0x18, 0x9c, 0x9a, 0x48, 0x3e, 0xd1, 0xd0, 0x47, 0x00, 0x74, 0xd3, 0x1e, 0x78, 0xb4, 0xa0, 0xa0, 0xe7, 0x53, 0x9a, 0x48, 0xc8, 0xde, 0xc7, 0x67, 0xcf, 0xc0, 0xf3, 0xfb, 0xe3, 0xa4, 0x1f, 0xa8, 0x88, 0x28, 0x5c, 0x19, 0x1a, 0x9a, 0x20, 0x86, 0x16, 0x8e, 0x99, 0xe9, 0x58, 0xae, 0xfe, 0x24, 0x88, 0x9a, 0xa1, 0x23, 0xd3, 0x53, 0x5c, 0xcf, 0x41, 0x6a, 0x5f, 0x37, 0xbb, 0xe4, 0x00, 0x4e, 0x95, 0x93, 0x1d, 0xd5, 0x70, 0x91, 0xbc, 0x40, 0xbb, 0x5b, 0xbc, 0x17, 0x23, 0x48, 0x8e, 0x73, 0x02, 0x88, 0xd9, 0x10, 0x82, 0x76, 0xfb, 0x88, 0xe2, 0x37, 0x53, 0x90, 0x09, 0x94, 0xa5, 0xd2, 0x79, 0xc8, 0xde, 0x52, 0xef, 0xa8, 0x0a, 0xbf, 0x6a, 0x50, 0x4f, 0x64, 0xb0, 0xac, 0xc9, 0xae, 0x1b, 0x9f, 0x84, 0x65, 0xa2, 0x62, 0x0d, 0x3c, 0xe4, 0x28, 0x9a, 0xa1, 0xba, 0x2e, 0x71, 0x5a, 0x8a, 0xa8, 0x4a, 0xb8, 0xaf, 0x81, 0xbb, 0xaa, 0xbc, 0x47, 0xba, 0x04, 0x4b, 0x04, 0xd1, 0x1f, 0x18, 0x9e, 0x6e, 0x1b, 0x48, 0xc1, 0x97, 0x1f, 0x97, 0x1c, 0xc4, 0xbe, 0x65, 0x8b, 0x58, 0x63, 0x87, 0x29, 0x60, 0x8b, 0x5c, 0x69, 0x13, 0x1e, 0x21, 0xb0, 0x2e, 0x32, 0x91, 0xa3, 0x7a, 0x48, 0x41, 0x9f, 0x1f, 0xa8, 0x86, 0xab, 0xa8, 0x66, 0x5b, 0xe9, 0xa9, 0x6e, 0x2f, 0xbf, 0x8c, 0x09, 0x36, 0x62, 0x79, 0x41, 0x3e, 0x8b, 0x15, 0xb7, 0x98, 0x5e, 0x8d, 0xa8, 0x55, 0xcc, 0xf6, 0xa7, 0x55, 0xb7, 0x27, 0x95, 0xe1, 0x34, 0x61, 0x71, 0x3d, 0x47, 0x37, 0xbb, 0x8a, 0xd6, 0x43, 0xda, 0x6d, 0x65, 0xe0, 0x75, 0xae, 0xe4, 0x3f, 0x16, 0x1c, 0x9f, 0x58, 0xd8, 0x22, 0x3a, 0x55, 0xac, 0xb2, 0xef, 0x75, 0xae, 0x48, 0x2d, 0xc8, 0xe2, 0xc5, 0xe8, 0xeb, 0xf7, 0x90, 0xd2, 0xb1, 0x1c, 0x92, 0x59, 0x72, 0x13, 0x76, 0x76, 0xc0, 0x83, 0xa5, 0x06, 0x03, 0xec, 0x58, 0x6d, 0x54, 0x4e, 0xb6, 0x9a, 0xb5, 0xda, 0xa6, 0x9c, 0xe1, 0x2c, 0xd7, 0x2d, 0x07, 0x07, 0x54, 0xd7, 0xf2, 0x1d, 0x9c, 0xa1, 0x01, 0xd5, 0xb5, 0xb8, 0x7b, 0x2f, 0xc1, 0x92, 0xa6, 0xd1, 0x39, 0xeb, 0x9a, 0xc2, 0xae, 0x28, 0x6e, 0x5e, 0x0c, 0x39, 0x4b, 0xd3, 0xb6, 0xa8, 0x02, 0x8b, 0x71, 0x57, 0xba, 0x0a, 0xa7, 0x86, 0xce, 0x0a, 0x02, 0x17, 0xc7, 0x66, 0x39, 0x0a, 0xbd, 0x04, 0x4b, 0xf6, 0xe1, 0x38, 0x50, 0x0a, 0x8d, 0x68, 0x1f, 0x8e, 0xc2, 0x9e, 0x83, 0x65, 0xbb, 0x67, 0x8f, 0xe3, 0x96, 0x82, 0x38, 0xc9, 0xee, 0xd9, 0xa3, 0xc0, 0xc7, 0xc9, 0x7d, 0xd5, 0x41, 0x9a, 0xea, 0xa1, 0x76, 0xfe, 0x4c, 0x50, 0x3d, 0xd0, 0x21, 0xad, 0x83, 0xa8, 0x69, 0x0a, 0x32, 0xd5, 0x03, 0x03, 0x29, 0xaa, 0x83, 0x4c, 0xd5, 0xcd, 0x9f, 0x0b, 0x2a, 0xe7, 0x34, 0xad, 0x46, 0x7a, 0x2b, 0xa4, 0x53, 0x7a, 0x1a, 0x16, 0xad, 0x83, 0x5b, 0x1a, 0x0d, 0x49, 0xc5, 0x76, 0x50, 0x47, 0x7f, 0x39, 0xff, 0x18, 0xf1, 0xef, 0x02, 0xee, 0x20, 0x01, 0xd9, 0x24, 0x62, 0xe9, 0x29, 0x10, 0x35, 0xb7, 0xa7, 0x3a, 0x36, 0xa9, 0x09, 0x5c, 0x5b, 0xd5, 0x50, 0xfe, 0x71, 0xaa, 0x4a, 0xe5, 0xbb, 0x5c, 0x8c, 0xb7, 0x84, 0x7b, 0x57, 0xef, 0x78, 0x9c, 0xf1, 0x49, 0xba, 0x25, 0x88, 0x8c, 0xb1, 0xad, 0x81, 0x88, 0x5d, 0x11, 0x1a, 0x78, 0x8d, 0xa8, 0xe5, 0xec, 0x9e, 0x1d, 0x1c, 0xf7, 0x51, 0x98, 0xc7, 0x9a, 0xc3, 0x41, 0x9f, 0xa2, 0xf5, 0x8c, 0xdd, 0x0b, 0x8c, 0xf8, 0xa1, 0x95, 0x96, 0xc5, 0x32, 0x64, 0x83, 0xf1, 0x29, 0xa5, 0x81, 0x46, 0xa8, 0x28, 0xe0, 0x5c, 0x5f, 0x6d, 0x6c, 0xe2, 0x2c, 0xfd, 0xb9, 0x9a, 0x18, 0xc3, 0xd5, 0xc2, 0x76, 0x7d, 0xaf, 0xa6, 0xc8, 0xfb, 0xbb, 0x7b, 0xf5, 0x9d, 0x9a, 0x18, 0x0f, 0x96, 0xa5, 0xdf, 0x89, 0x41, 0x2e, 0x7c, 0xc3, 0x90, 0x7e, 0x12, 0xce, 0xf0, 0xe7, 0x00, 0x17, 0x79, 0xca, 0x5d, 0xdd, 0x21, 0x5b, 0xa6, 0xaf, 0xd2, 0x0a, 0xdb, 0x5f, 0xb4, 0x65, 0xa6, 0xd5, 0x42, 0xde, 0x8b, 0xba, 0x83, 0x37, 0x44, 0x5f, 0xf5, 0xa4, 0x6d, 0x38, 0x67, 0x5a, 0x8a, 0xeb, 0xa9, 0x66, 0x5b, 0x75, 0xda, 0xca, 0xf0, 0x21, 0x46, 0x51, 0x35, 0x0d, 0xb9, 0xae, 0x45, 0x53, 0x95, 0xcf, 0xf2, 0x71, 0xd3, 0x6a, 0x31, 0xe5, 0xe1, 0x19, 0x5e, 0x61, 0xaa, 0x23, 0x01, 0x16, 0x3f, 0x2e, 0xc0, 0x3e, 0x06, 0xe9, 0xbe, 0x6a, 0x2b, 0xc8, 0xf4, 0x9c, 0x43, 0x52, 0x57, 0xa6, 0xe4, 0x54, 0x5f, 0xb5, 0x6b, 0xb8, 0xfd, 0xd1, 0x94, 0xf7, 0xff, 0x12, 0x87, 0x6c, 0xb0, 0xb6, 0xc4, 0xa5, 0xba, 0x46, 0xf2, 0x88, 0x40, 0x4e, 0x9a, 0x47, 0x1f, 0x5a, 0x89, 0x96, 0xaa, 0x38, 0xc1, 0x94, 0x67, 0x69, 0xc5, 0x27, 0x53, 0x24, 0x4e, 0xee, 0xf8, 0x6c, 0x41, 0xf4, 0x16, 0x93, 0x92, 0x59, 0x4b, 0xda, 0x82, 0xd9, 0x5b, 0x2e, 0xe1, 0x9e, 0x25, 0xdc, 0x8f, 0x3d, 0x9c, 0xfb, 0x46, 0x8b, 0x90, 0xa7, 0x6f, 0xb4, 0x94, 0xdd, 0x86, 0xbc, 0x53, 0xd9, 0x96, 0x19, 0x5c, 0x3a, 0x0b, 0x09, 0x43, 0xbd, 0x77, 0x18, 0x4e, 0x45, 0x44, 0x34, 0xad, 0xe3, 0xcf, 0x42, 0xe2, 0x2e, 0x52, 0x6f, 0x87, 0x13, 0x00, 0x11, 0x7d, 0x88, 0xa1, 0xbf, 0x0e, 0x49, 0xe2, 0x2f, 0x09, 0x80, 0x79, 0x4c, 0x9c, 0x91, 0x52, 0x90, 0xa8, 0x36, 0x64, 0x1c, 0xfe, 0x22, 0x64, 0xa9, 0x54, 0x69, 0xd6, 0x6b, 0xd5, 0x9a, 0x18, 0x2b, 0x5e, 0x82, 0x59, 0xea, 0x04, 0xbc, 0x35, 0x7c, 0x37, 0x88, 0x33, 0xac, 0xc9, 0x38, 0x04, 0xde, 0xbb, 0xbf, 0xb3, 0x51, 0x93, 0xc5, 0x58, 0x70, 0x79, 0x5d, 0xc8, 0x06, 0xcb, 0xca, 0x8f, 0x26, 0xa6, 0xfe, 0x4e, 0x80, 0x4c, 0xa0, 0x4c, 0xc4, 0x05, 0x8a, 0x6a, 0x18, 0xd6, 0x5d, 0x45, 0x35, 0x74, 0xd5, 0x65, 0x41, 0x01, 0x44, 0x54, 0xc1, 0x92, 0x69, 0x17, 0xed, 0x23, 0x31, 0xfe, 0x75, 0x01, 0xc4, 0xd1, 0x12, 0x73, 0xc4, 0x40, 0xe1, 0xc7, 0x6a, 0xe0, 0x6b, 0x02, 0xe4, 0xc2, 0x75, 0xe5, 0x88, 0x79, 0xe7, 0x7f, 0xac, 0xe6, 0xbd, 0x1d, 0x83, 0xf9, 0x50, 0x35, 0x39, 0xad, 0x75, 0x9f, 0x87, 0x45, 0xbd, 0x8d, 0xfa, 0xb6, 0xe5, 0x21, 0x53, 0x3b, 0x54, 0x0c, 0x74, 0x07, 0x19, 0xf9, 0x22, 0x39, 0x28, 0xd6, 0x1f, 0x5e, 0xaf, 0x96, 0xea, 0x43, 0xdc, 0x36, 0x86, 0x95, 0x97, 0xea, 0x9b, 0xb5, 0x9d, 0x66, 0x63, 0xaf, 0xb6, 0x5b, 0x7d, 0x49, 0xd9, 0xdf, 0xfd, 0xe9, 0xdd, 0xc6, 0x8b, 0xbb, 0xb2, 0xa8, 0x8f, 0xa8, 0x7d, 0x88, 0x5b, 0xbd, 0x09, 0xe2, 0xa8, 0x51, 0xd2, 0x19, 0x98, 0x64, 0x96, 0x38, 0x23, 0x2d, 0xc1, 0xc2, 0x6e, 0x43, 0x69, 0xd5, 0x37, 0x6b, 0x4a, 0xed, 0xfa, 0xf5, 0x5a, 0x75, 0xaf, 0x45, 0x2f, 0xf0, 0xbe, 0xf6, 0x5e, 0x78, 0x53, 0xbf, 0x1a, 0x87, 0xa5, 0x09, 0x96, 0x48, 0x15, 0x76, 0x77, 0xa0, 0xd7, 0x99, 0x4f, 0x4c, 0x63, 0x7d, 0x09, 0xa7, 0xfc, 0xa6, 0xea, 0x78, 0xec, 0xaa, 0xf1, 0x14, 0x60, 0x2f, 0x99, 0x9e, 0xde, 0xd1, 0x91, 0xc3, 0xde, 0x3b, 0xe8, 0x85, 0x62, 0x61, 0x28, 0xa7, 0x4f, 0x1e, 0x3f, 0x01, 0x92, 0x6d, 0xb9, 0xba, 0xa7, 0xdf, 0x41, 0x8a, 0x6e, 0xf2, 0xc7, 0x11, 0x7c, 0xc1, 0x48, 0xc8, 0x22, 0xef, 0xa9, 0x9b, 0x9e, 0xaf, 0x6d, 0xa2, 0xae, 0x3a, 0xa2, 0x8d, 0x0f, 0xf0, 0xb8, 0x2c, 0xf2, 0x1e, 0x5f, 0xfb, 0x3c, 0x64, 0xdb, 0xd6, 0x00, 0x57, 0x5d, 0x54, 0x0f, 0xe7, 0x0b, 0x41, 0xce, 0x50, 0x99, 0xaf, 0xc2, 0xea, 0xe9, 0xe1, 0xab, 0x4c, 0x56, 0xce, 0x50, 0x19, 0x55, 0x79, 0x12, 0x16, 0xd4, 0x6e, 0xd7, 0xc1, 0xe4, 0x9c, 0x88, 0xde, 0x10, 0x72, 0xbe, 0x98, 0x28, 0xae, 0xdc, 0x80, 0x14, 0xf7, 0x03, 0x4e, 0xc9, 0xd8, 0x13, 0x8a, 0x4d, 0x5f, 0xe6, 0x62, 0x6b, 0x69, 0x39, 0x65, 0xf2, 0xce, 0xf3, 0x90, 0xd5, 0x5d, 0x65, 0xf8, 0xc8, 0x1c, 0x5b, 0x8d, 0xad, 0xa5, 0xe4, 0x8c, 0xee, 0xfa, 0x0f, 0x74, 0xc5, 0x37, 0x62, 0x90, 0x0b, 0x3f, 0x92, 0x4b, 0x9b, 0x90, 0x32, 0x2c, 0x4d, 0x25, 0xa1, 0x45, 0x7f, 0xa1, 0x59, 0x8b, 0x78, 0x57, 0x2f, 0x6d, 0x33, 0x7d, 0xd9, 0x47, 0xae, 0xfc, 0x93, 0x00, 0x29, 0x2e, 0x96, 0x4e, 0x43, 0xc2, 0x56, 0xbd, 0x1e, 0xa1, 0x4b, 0x6e, 0xc4, 0x44, 0x41, 0x26, 0x6d, 0x2c, 0x77, 0x6d, 0xd5, 0x24, 0x21, 0xc0, 0xe4, 0xb8, 0x8d, 0xd7, 0xd5, 0x40, 0x6a, 0x9b, 0x5c, 0x3f, 0xac, 0x7e, 0x1f, 0x99, 0x9e, 0xcb, 0xd7, 0x95, 0xc9, 0xab, 0x4c, 0x2c, 0x3d, 0x03, 0x8b, 0x9e, 0xa3, 0xea, 0x46, 0x48, 0x37, 0x41, 0x74, 0x45, 0xde, 0xe1, 0x2b, 0x97, 0xe1, 0x2c, 0xe7, 0x6d, 0x23, 0x4f, 0xd5, 0x7a, 0xa8, 0x3d, 0x04, 0xcd, 0x92, 0x17, 0xd8, 0x33, 0x4c, 0x61, 0x93, 0xf5, 0x73, 0x6c, 0xf1, 0x7b, 0x02, 0x2c, 0xf2, 0x0b, 0x53, 0xdb, 0x77, 0xd6, 0x0e, 0x80, 0x6a, 0x9a, 0x96, 0x17, 0x74, 0xd7, 0x78, 0x28, 0x8f, 0xe1, 0x4a, 0x15, 0x1f, 0x24, 0x07, 0x08, 0x56, 0xfa, 0x00, 0xc3, 0x9e, 0x63, 0xdd, 0x76, 0x0e, 0x32, 0xec, 0x17, 0x10, 0xf2, 0x33, 0x1a, 0xbd, 0x62, 0x03, 0x15, 0xe1, 0x9b, 0x95, 0xb4, 0x0c, 0xc9, 0x03, 0xd4, 0xd5, 0x4d, 0xf6, 0xae, 0x49, 0x1b, 0xfc, 0xad, 0x36, 0xe1, 0xbf, 0xd5, 0x6e, 0xdc, 0x84, 0x25, 0xcd, 0xea, 0x8f, 0x9a, 0xbb, 0x21, 0x8e, 0x5c, 0xf3, 0xdd, 0x4f, 0x0b, 0x9f, 0x83, 0x61, 0x89, 0xf9, 0x95, 0x58, 0x7c, 0xab, 0xb9, 0xf1, 0xb5, 0xd8, 0xca, 0x16, 0xc5, 0x35, 0xf9, 0x34, 0x65, 0xd4, 0x31, 0x90, 0x86, 0x4d, 0x87, 0x1f, 0x3c, 0x01, 0x9f, 0xe8, 0xea, 0x5e, 0x6f, 0x70, 0x50, 0xd2, 0xac, 0xfe, 0x7a, 0xd7, 0xea, 0x5a, 0xc3, 0x9f, 0x0d, 0x71, 0x8b, 0x34, 0xc8, 0x7f, 0xec, 0xa7, 0xc3, 0xb4, 0x2f, 0x5d, 0x89, 0xfc, 0x9d, 0xb1, 0xbc, 0x0b, 0x4b, 0x4c, 0x59, 0x21, 0xbf, 0x5d, 0xd0, 0x2b, 0x84, 0xf4, 0xd0, 0xf7, 0x9f, 0xfc, 0x37, 0xde, 0x21, 0xb9, 0x5a, 0x5e, 0x64, 0x50, 0xdc, 0x47, 0x6f, 0x19, 0x65, 0x19, 0x4e, 0x85, 0xf8, 0xe8, 0xbe, 0x44, 0x4e, 0x04, 0xe3, 0x77, 0x18, 0xe3, 0x52, 0x80, 0xb1, 0xc5, 0xa0, 0xe5, 0x2a, 0xcc, 0x9f, 0x84, 0xeb, 0x1f, 0x18, 0x57, 0x16, 0x05, 0x49, 0xb6, 0x60, 0x81, 0x90, 0x68, 0x03, 0xd7, 0xb3, 0xfa, 0xe4, 0xd0, 0x7b, 0x38, 0xcd, 0x3f, 0xbe, 0x43, 0x37, 0x4a, 0x0e, 0xc3, 0xaa, 0x3e, 0xaa, 0x5c, 0x06, 0xf2, 0x73, 0x4d, 0x1b, 0x69, 0x46, 0x04, 0xc3, 0x5b, 0xcc, 0x10, 0x5f, 0xbf, 0xfc, 0x59, 0x58, 0xc6, 0xff, 0x93, 0x33, 0x29, 0x68, 0x49, 0xf4, 0x6b, 0x57, 0xfe, 0x7b, 0xaf, 0xd0, 0xbd, 0xb8, 0xe4, 0x13, 0x04, 0x6c, 0x0a, 0xac, 0x62, 0x17, 0x79, 0x1e, 0x72, 0x5c, 0x45, 0x35, 0x26, 0x99, 0x17, 0x78, 0x2e, 0xc8, 0x7f, 0xe9, 0xdd, 0xf0, 0x2a, 0x6e, 0x51, 0x64, 0xc5, 0x30, 0xca, 0xfb, 0x70, 0x66, 0x42, 0x54, 0x4c, 0xc1, 0xf9, 0x2a, 0xe3, 0x5c, 0x1e, 0x8b, 0x0c, 0x4c, 0xdb, 0x04, 0x2e, 0xf7, 0xd7, 0x72, 0x0a, 0xce, 0xdf, 0x63, 0x9c, 0x12, 0xc3, 0xf2, 0x25, 0xc5, 0x8c, 0x37, 0x60, 0xf1, 0x0e, 0x72, 0x0e, 0x2c, 0x97, 0x3d, 0xd1, 0x4c, 0x41, 0xf7, 0x1a, 0xa3, 0x5b, 0x60, 0x40, 0xf2, 0x66, 0x83, 0xb9, 0xae, 0x42, 0xaa, 0xa3, 0x6a, 0x68, 0x0a, 0x8a, 0x2f, 0x33, 0x8a, 0x39, 0xac, 0x8f, 0xa1, 0x15, 0xc8, 0x76, 0x2d, 0x96, 0x96, 0xa2, 0xe1, 0xaf, 0x33, 0x78, 0x86, 0x63, 0x18, 0x85, 0x6d, 0xd9, 0x03, 0x03, 0xe7, 0xac, 0x68, 0x8a, 0xdf, 0xe7, 0x14, 0x1c, 0xc3, 0x28, 0x4e, 0xe0, 0xd6, 0x3f, 0xe0, 0x14, 0x6e, 0xc0, 0x9f, 0x2f, 0x40, 0xc6, 0x32, 0x8d, 0x43, 0xcb, 0x9c, 0xc6, 0x88, 0x3f, 0x64, 0x0c, 0xc0, 0x20, 0x98, 0xe0, 0x1a, 0xa4, 0xa7, 0x5d, 0x88, 0x3f, 0x7a, 0x97, 0x6f, 0x0f, 0xbe, 0x02, 0x5b, 0xb0, 0xc0, 0x0f, 0x28, 0xdd, 0x32, 0xa7, 0xa0, 0xf8, 0x63, 0x46, 0x91, 0x0b, 0xc0, 0xd8, 0x34, 0x3c, 0xe4, 0x7a, 0x5d, 0x34, 0x0d, 0xc9, 0x1b, 0x7c, 0x1a, 0x0c, 0xc2, 0x5c, 0x79, 0x80, 0x4c, 0xad, 0x37, 0x1d, 0xc3, 0x57, 0xb9, 0x2b, 0x39, 0x06, 0x53, 0x54, 0x61, 0xbe, 0xaf, 0x3a, 0x6e, 0x4f, 0x35, 0xa6, 0x5a, 0x8e, 0x3f, 0x61, 0x1c, 0x59, 0x1f, 0xc4, 0x3c, 0x32, 0x30, 0x4f, 0x42, 0xf3, 0x35, 0xee, 0x91, 0x00, 0x8c, 0x6d, 0x3d, 0xd7, 0x23, 0xef, 0x59, 0x27, 0x61, 0xfb, 0x3a, 0xdf, 0x7a, 0x14, 0xbb, 0x13, 0x64, 0xbc, 0x06, 0x69, 0x57, 0xbf, 0x37, 0x15, 0xcd, 0x9f, 0xf2, 0x95, 0x26, 0x00, 0x0c, 0x7e, 0x09, 0xce, 0x4e, 0x4c, 0x13, 0x53, 0x90, 0xfd, 0x19, 0x23, 0x3b, 0x3d, 0x21, 0x55, 0xb0, 0x23, 0xe1, 0xa4, 0x94, 0x7f, 0xce, 0x8f, 0x04, 0x34, 0xc2, 0xd5, 0xc4, 0x17, 0x05, 0x57, 0xed, 0x9c, 0xcc, 0x6b, 0x7f, 0xc1, 0xbd, 0x46, 0xb1, 0x21, 0xaf, 0xed, 0xc1, 0x69, 0xc6, 0x78, 0xb2, 0x75, 0x7d, 0x93, 0x1f, 0xac, 0x14, 0xbd, 0x1f, 0x5e, 0xdd, 0x9f, 0x81, 0x15, 0xdf, 0x9d, 0xbc, 0x22, 0x75, 0x95, 0xbe, 0x6a, 0x4f, 0xc1, 0xfc, 0x0d, 0xc6, 0xcc, 0x4f, 0x7c, 0xbf, 0xa4, 0x75, 0x77, 0x54, 0x1b, 0x93, 0xdf, 0x84, 0x3c, 0x27, 0x1f, 0x98, 0x0e, 0xd2, 0xac, 0xae, 0xa9, 0xdf, 0x43, 0xed, 0x29, 0xa8, 0xff, 0x72, 0x64, 0xa9, 0xf6, 0x03, 0x70, 0xcc, 0x5c, 0x07, 0xd1, 0xaf, 0x55, 0x14, 0xbd, 0x6f, 0x5b, 0x8e, 0x17, 0xc1, 0xf8, 0x4d, 0xbe, 0x52, 0x3e, 0xae, 0x4e, 0x60, 0xe5, 0x1a, 0xe4, 0x48, 0x73, 0xda, 0x90, 0xfc, 0x2b, 0x46, 0x34, 0x3f, 0x44, 0xb1, 0x83, 0x43, 0xb3, 0xfa, 0xb6, 0xea, 0x4c, 0x73, 0xfe, 0xfd, 0x35, 0x3f, 0x38, 0x18, 0x84, 0x1d, 0x1c, 0xde, 0xa1, 0x8d, 0x70, 0xb6, 0x9f, 0x82, 0xe1, 0x5b, 0xfc, 0xe0, 0xe0, 0x18, 0x46, 0xc1, 0x0b, 0x86, 0x29, 0x28, 0xfe, 0x86, 0x53, 0x70, 0x0c, 0xa6, 0xf8, 0xcc, 0x30, 0xd1, 0x3a, 0xa8, 0xab, 0xbb, 0x9e, 0x43, 0xeb, 0xe0, 0x87, 0x53, 0x7d, 0xfb, 0xdd, 0x70, 0x11, 0x26, 0x07, 0xa0, 0xe5, 0x1b, 0xb0, 0x30, 0x52, 0x62, 0x48, 0x51, 0xdf, 0x7e, 0xe4, 0x7f, 0xfe, 0x7d, 0x76, 0x18, 0x85, 0x2b, 0x8c, 0xf2, 0x36, 0x5e, 0xf7, 0x70, 0x1d, 0x10, 0x4d, 0xf6, 0xca, 0xfb, 0xfe, 0xd2, 0x87, 0xca, 0x80, 0xf2, 0x75, 0x98, 0x0f, 0xd5, 0x00, 0xd1, 0x54, 0xbf, 0xc0, 0xa8, 0xb2, 0xc1, 0x12, 0xa0, 0x7c, 0x09, 0x12, 0x38, 0x9f, 0x47, 0xc3, 0x7f, 0x91, 0xc1, 0x89, 0x7a, 0xf9, 0x53, 0x90, 0xe2, 0x79, 0x3c, 0x1a, 0xfa, 0x4b, 0x0c, 0xea, 0x43, 0x30, 0x9c, 0xe7, 0xf0, 0x68, 0xf8, 0x2f, 0x73, 0x38, 0x87, 0x60, 0xf8, 0xf4, 0x2e, 0xfc, 0xfb, 0x5f, 0x49, 0xb0, 0x73, 0x98, 0xfb, 0xee, 0x1a, 0xcc, 0xb1, 0xe4, 0x1d, 0x8d, 0xfe, 0x02, 0x1b, 0x9c, 0x23, 0xca, 0xcf, 0x41, 0x72, 0x4a, 0x87, 0xff, 0x2a, 0x83, 0x52, 0xfd, 0x72, 0x15, 0x32, 0x81, 0x84, 0x1d, 0x0d, 0xff, 0x35, 0x06, 0x0f, 0xa2, 0xb0, 0xe9, 0x2c, 0x61, 0x47, 0x13, 0xfc, 0x3a, 0x37, 0x9d, 0x21, 0xb0, 0xdb, 0x78, 0xae, 0x8e, 0x46, 0xff, 0x06, 0xf7, 0x3a, 0x87, 0x94, 0x5f, 0x80, 0xb4, 0x7f, 0xfe, 0x46, 0xe3, 0x7f, 0x93, 0xe1, 0x87, 0x18, 0xec, 0x81, 0xc0, 0xf9, 0x1f, 0x4d, 0xf1, 0x5b, 0xdc, 0x03, 0x01, 0x14, 0xde, 0x46, 0xa3, 0x39, 0x3d, 0x9a, 0xe9, 0xb7, 0xf9, 0x36, 0x1a, 0x49, 0xe9, 0x78, 0x35, 0xc9, 0x31, 0x18, 0x4d, 0xf1, 0x3b, 0x7c, 0x35, 0x89, 0x3e, 0x36, 0x63, 0x34, 0x49, 0x46, 0x73, 0xfc, 0x2e, 0x37, 0x63, 0x24, 0x47, 0x96, 0x9b, 0x20, 0x8d, 0x27, 0xc8, 0x68, 0xbe, 0x2f, 0x32, 0xbe, 0xc5, 0xb1, 0xfc, 0x58, 0x7e, 0x11, 0x4e, 0x4f, 0x4e, 0x8e, 0xd1, 0xac, 0x5f, 0x7a, 0x7f, 0xe4, 0x3a, 0x13, 0xcc, 0x8d, 0xe5, 0xbd, 0xe1, 0x29, 0x1b, 0x4c, 0x8c, 0xd1, 0xb4, 0xaf, 0xbe, 0x1f, 0x3e, 0x68, 0x83, 0x79, 0xb1, 0x5c, 0x01, 0x18, 0xe6, 0xa4, 0x68, 0xae, 0xd7, 0x18, 0x57, 0x00, 0x84, 0xb7, 0x06, 0x4b, 0x49, 0xd1, 0xf8, 0x2f, 0xf3, 0xad, 0xc1, 0x10, 0x78, 0x6b, 0xf0, 0x6c, 0x14, 0x8d, 0x7e, 0x9d, 0x6f, 0x0d, 0x0e, 0x29, 0x5f, 0x83, 0x94, 0x39, 0x30, 0x0c, 0x1c, 0x5b, 0xd2, 0xc3, 0x3f, 0x67, 0xca, 0xff, 0xfb, 0x07, 0x0c, 0xcc, 0x01, 0xe5, 0x4b, 0x90, 0x44, 0xfd, 0x03, 0xd4, 0x8e, 0x42, 0xfe, 0xc7, 0x07, 0xfc, 0x3c, 0xc1, 0xda, 0xe5, 0x17, 0x00, 0xe8, 0x65, 0x9a, 0xfc, 0x4a, 0x14, 0x81, 0xfd, 0xcf, 0x0f, 0xd8, 0x97, 0x12, 0x43, 0xc8, 0x90, 0x80, 0x7e, 0x77, 0xf1, 0x70, 0x82, 0x77, 0xc3, 0x04, 0xe4, 0x02, 0x7e, 0x15, 0xe6, 0x6e, 0xb9, 0x96, 0xe9, 0xa9, 0xdd, 0x28, 0xf4, 0x7f, 0x31, 0x34, 0xd7, 0xc7, 0x0e, 0xeb, 0x5b, 0x0e, 0xf2, 0xd4, 0xae, 0x1b, 0x85, 0xfd, 0x6f, 0x86, 0xf5, 0x01, 0x18, 0xac, 0xa9, 0xae, 0x37, 0xcd, 0xbc, 0xff, 0x87, 0x83, 0x39, 0x00, 0x1b, 0x8d, 0xff, 0xbf, 0x8d, 0x0e, 0xa3, 0xb0, 0xef, 0x71, 0xa3, 0x99, 0x7e, 0xf9, 0x53, 0x90, 0xc6, 0xff, 0xd2, 0xaf, 0x87, 0x22, 0xc0, 0xff, 0xcb, 0xc0, 0x43, 0x04, 0x1e, 0xd9, 0xf5, 0xda, 0x9e, 0x1e, 0xed, 0xec, 0xff, 0x63, 0x2b, 0xcd, 0xf5, 0xcb, 0x15, 0xc8, 0xb8, 0x5e, 0xbb, 0x3d, 0x60, 0x15, 0x4d, 0x04, 0xfc, 0x07, 0x1f, 0xf8, 0x97, 0x5c, 0x1f, 0xb3, 0x71, 0x7e, 0xf2, 0x63, 0x1d, 0x6c, 0x59, 0x5b, 0x16, 0x7d, 0xa6, 0x83, 0x37, 0xe3, 0x70, 0x4a, 0xb3, 0xfa, 0x07, 0x96, 0xbb, 0x7e, 0x60, 0x79, 0xbd, 0xf5, 0xbe, 0x6a, 0xb3, 0xd7, 0xb5, 0x4c, 0x5f, 0xb5, 0xd9, 0x27, 0x80, 0xee, 0xca, 0xc9, 0x5e, 0xe6, 0x8a, 0x3f, 0x07, 0x73, 0x3b, 0xaa, 0xbd, 0x87, 0x5c, 0x4f, 0x22, 0x1e, 0x20, 0x1f, 0xcb, 0xb0, 0xb7, 0xce, 0xd5, 0x52, 0x80, 0xb8, 0xc4, 0xd4, 0x4a, 0x2d, 0xcf, 0x69, 0x79, 0x0e, 0xf9, 0x5d, 0x58, 0x9e, 0x75, 0x49, 0x63, 0xe5, 0x2a, 0x64, 0x02, 0x62, 0x49, 0x84, 0xf8, 0x6d, 0x74, 0xc8, 0x3e, 0x97, 0xc1, 0xff, 0x4a, 0xcb, 0xc3, 0xcf, 0xc1, 0xb0, 0x8c, 0x36, 0xca, 0xb1, 0x2b, 0x42, 0xf1, 0x79, 0x98, 0xbb, 0xae, 0xde, 0x46, 0x3b, 0xaa, 0x2d, 0x5d, 0x84, 0x39, 0x64, 0x7a, 0x8e, 0x8e, 0x5c, 0x66, 0xc0, 0xd9, 0x90, 0x01, 0x4c, 0x8d, 0x8e, 0xcc, 0x35, 0x8b, 0xdb, 0x90, 0x0d, 0x76, 0x4c, 0x3b, 0x36, 0x96, 0x5a, 0x5e, 0x8f, 0x7d, 0x1e, 0x9a, 0x96, 0x69, 0x63, 0x63, 0xf3, 0xad, 0x07, 0x85, 0x99, 0xef, 0x3e, 0x28, 0xcc, 0xfc, 0xf3, 0x83, 0xc2, 0xcc, 0xdb, 0x0f, 0x0a, 0xc2, 0x7b, 0x0f, 0x0a, 0xc2, 0x0f, 0x1f, 0x14, 0x84, 0xfb, 0x47, 0x05, 0xe1, 0xab, 0x47, 0x05, 0xe1, 0xcd, 0xa3, 0x82, 0xf0, 0xed, 0xa3, 0x82, 0xf0, 0xd6, 0x51, 0x41, 0xf8, 0xee, 0x51, 0x41, 0x78, 0xfb, 0xa8, 0x20, 0x7c, 0xff, 0xa8, 0x30, 0xf3, 0xde, 0x51, 0x41, 0xf8, 0xe1, 0x51, 0x61, 0xe6, 0xfe, 0xbf, 0x16, 0x66, 0x0e, 0x66, 0x89, 0x6f, 0x2f, 0xfe, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x13, 0x16, 0x92, 0xfd, 0x57, 0x31, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *MapTest) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapTest) if !ok { that2, ok := that.(MapTest) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapTest") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapTest but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapTest but is not nil && this == nil") } if len(this.StrStr) != len(that1.StrStr) { return fmt.Errorf("StrStr this(%v) Not Equal that(%v)", len(this.StrStr), len(that1.StrStr)) } for i := range this.StrStr { if this.StrStr[i] != that1.StrStr[i] { return fmt.Errorf("StrStr this[%v](%v) Not Equal that[%v](%v)", i, this.StrStr[i], i, that1.StrStr[i]) } } return nil } func (this *MapTest) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapTest) if !ok { that2, ok := that.(MapTest) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StrStr) != len(that1.StrStr) { return false } for i := range this.StrStr { if this.StrStr[i] != that1.StrStr[i] { return false } } return true } func (this *FakeMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FakeMap) if !ok { that2, ok := that.(FakeMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FakeMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FakeMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FakeMap but is not nil && this == nil") } if len(this.Entries) != len(that1.Entries) { return fmt.Errorf("Entries this(%v) Not Equal that(%v)", len(this.Entries), len(that1.Entries)) } for i := range this.Entries { if !this.Entries[i].Equal(that1.Entries[i]) { return fmt.Errorf("Entries this[%v](%v) Not Equal that[%v](%v)", i, this.Entries[i], i, that1.Entries[i]) } } return nil } func (this *FakeMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FakeMap) if !ok { that2, ok := that.(FakeMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Entries) != len(that1.Entries) { return false } for i := range this.Entries { if !this.Entries[i].Equal(that1.Entries[i]) { return false } } return true } func (this *FakeMapEntry) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FakeMapEntry) if !ok { that2, ok := that.(FakeMapEntry) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FakeMapEntry") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FakeMapEntry but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FakeMapEntry but is not nil && this == nil") } if this.Key != that1.Key { return fmt.Errorf("Key this(%v) Not Equal that(%v)", this.Key, that1.Key) } if this.Value != that1.Value { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if this.Other != that1.Other { return fmt.Errorf("Other this(%v) Not Equal that(%v)", this.Other, that1.Other) } return nil } func (this *FakeMapEntry) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FakeMapEntry) if !ok { that2, ok := that.(FakeMapEntry) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Key != that1.Key { return false } if this.Value != that1.Value { return false } if this.Other != that1.Other { return false } return true } func (this *MapTest) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&mapdefaults.MapTest{") keysForStrStr := make([]string, 0, len(this.StrStr)) for k := range this.StrStr { keysForStrStr = append(keysForStrStr, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStrStr) mapStringForStrStr := "map[string]string{" for _, k := range keysForStrStr { mapStringForStrStr += fmt.Sprintf("%#v: %#v,", k, this.StrStr[k]) } mapStringForStrStr += "}" if this.StrStr != nil { s = append(s, "StrStr: "+mapStringForStrStr+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FakeMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&mapdefaults.FakeMap{") if this.Entries != nil { s = append(s, "Entries: "+fmt.Sprintf("%#v", this.Entries)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FakeMapEntry) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&mapdefaults.FakeMapEntry{") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "Other: "+fmt.Sprintf("%#v", this.Other)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringMap(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *MapTest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MapTest) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StrStr) > 0 { for k := range m.StrStr { dAtA[i] = 0xa i++ v := m.StrStr[k] mapSize := 1 + len(k) + sovMap(uint64(len(k))) + 1 + len(v) + sovMap(uint64(len(v))) i = encodeVarintMap(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMap(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMap(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } return i, nil } func (m *FakeMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FakeMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Entries) > 0 { for _, msg := range m.Entries { dAtA[i] = 0xa i++ i = encodeVarintMap(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } return i, nil } func (m *FakeMapEntry) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FakeMapEntry) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Key) > 0 { dAtA[i] = 0xa i++ i = encodeVarintMap(dAtA, i, uint64(len(m.Key))) i += copy(dAtA[i:], m.Key) } if len(m.Value) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintMap(dAtA, i, uint64(len(m.Value))) i += copy(dAtA[i:], m.Value) } if len(m.Other) > 0 { dAtA[i] = 0x1a i++ i = encodeVarintMap(dAtA, i, uint64(len(m.Other))) i += copy(dAtA[i:], m.Other) } return i, nil } func encodeVarintMap(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedMapTest(r randyMap, easy bool) *MapTest { this := &MapTest{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.StrStr = make(map[string]string) for i := 0; i < v1; i++ { this.StrStr[randStringMap(r)] = randStringMap(r) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFakeMap(r randyMap, easy bool) *FakeMap { this := &FakeMap{} if r.Intn(10) != 0 { v2 := r.Intn(5) this.Entries = make([]*FakeMapEntry, v2) for i := 0; i < v2; i++ { this.Entries[i] = NewPopulatedFakeMapEntry(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFakeMapEntry(r randyMap, easy bool) *FakeMapEntry { this := &FakeMapEntry{} this.Key = string(randStringMap(r)) this.Value = string(randStringMap(r)) this.Other = string(randStringMap(r)) if !easy && r.Intn(10) != 0 { } return this } type randyMap interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneMap(r randyMap) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringMap(r randyMap) string { v3 := r.Intn(100) tmps := make([]rune, v3) for i := 0; i < v3; i++ { tmps[i] = randUTF8RuneMap(r) } return string(tmps) } func randUnrecognizedMap(r randyMap, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldMap(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldMap(dAtA []byte, r randyMap, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) v4 := r.Int63() if r.Intn(2) == 0 { v4 *= -1 } dAtA = encodeVarintPopulateMap(dAtA, uint64(v4)) case 1: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateMap(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateMap(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *MapTest) Size() (n int) { var l int _ = l if len(m.StrStr) > 0 { for k, v := range m.StrStr { _ = k _ = v mapEntrySize := 1 + len(k) + sovMap(uint64(len(k))) + 1 + len(v) + sovMap(uint64(len(v))) n += mapEntrySize + 1 + sovMap(uint64(mapEntrySize)) } } return n } func (m *FakeMap) Size() (n int) { var l int _ = l if len(m.Entries) > 0 { for _, e := range m.Entries { l = e.Size() n += 1 + l + sovMap(uint64(l)) } } return n } func (m *FakeMapEntry) Size() (n int) { var l int _ = l l = len(m.Key) if l > 0 { n += 1 + l + sovMap(uint64(l)) } l = len(m.Value) if l > 0 { n += 1 + l + sovMap(uint64(l)) } l = len(m.Other) if l > 0 { n += 1 + l + sovMap(uint64(l)) } return n } func sovMap(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozMap(x uint64) (n int) { return sovMap(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *MapTest) String() string { if this == nil { return "nil" } keysForStrStr := make([]string, 0, len(this.StrStr)) for k := range this.StrStr { keysForStrStr = append(keysForStrStr, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStrStr) mapStringForStrStr := "map[string]string{" for _, k := range keysForStrStr { mapStringForStrStr += fmt.Sprintf("%v: %v,", k, this.StrStr[k]) } mapStringForStrStr += "}" s := strings.Join([]string{`&MapTest{`, `StrStr:` + mapStringForStrStr + `,`, `}`, }, "") return s } func (this *FakeMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FakeMap{`, `Entries:` + strings.Replace(fmt.Sprintf("%v", this.Entries), "FakeMapEntry", "FakeMapEntry", 1) + `,`, `}`, }, "") return s } func (this *FakeMapEntry) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FakeMapEntry{`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `Other:` + fmt.Sprintf("%v", this.Other) + `,`, `}`, }, "") return s } func valueToStringMap(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *MapTest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MapTest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MapTest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StrStr", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StrStr == nil { m.StrStr = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMap } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthMap } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipMap(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMap } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StrStr[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMap(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMap } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *FakeMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FakeMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FakeMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Entries", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Entries = append(m.Entries, &FakeMapEntry{}) if err := m.Entries[len(m.Entries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMap(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMap } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *FakeMapEntry) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FakeMapEntry: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FakeMapEntry: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Key = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Value = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Other", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Other = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMap(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMap } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipMap(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthMap } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipMap(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthMap = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowMap = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/both/map.proto", fileDescriptorMap) } var fileDescriptorMap = []byte{ // 310 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0xbf, 0x4f, 0xc2, 0x40, 0x14, 0xc7, 0xfb, 0x20, 0xd2, 0x78, 0x38, 0x98, 0x46, 0x93, 0xca, 0xf0, 0x42, 0x98, 0x58, 0x6c, 0x13, 0x59, 0xc4, 0xc1, 0xc1, 0xa8, 0x93, 0x2c, 0xe0, 0x6e, 0xae, 0x78, 0xfc, 0x08, 0x94, 0x6b, 0xee, 0x5e, 0x4d, 0x98, 0xe4, 0xcf, 0x71, 0x74, 0xf4, 0x4f, 0x60, 0x64, 0x74, 0xa4, 0xe7, 0xe2, 0xc8, 0xc8, 0x68, 0xb8, 0x62, 0x52, 0x37, 0xb7, 0xf7, 0xf9, 0xde, 0xe7, 0xee, 0x7d, 0x73, 0xec, 0xb4, 0x2f, 0xe3, 0x48, 0xea, 0x30, 0x92, 0x34, 0x0a, 0x63, 0x9e, 0x04, 0x89, 0x92, 0x24, 0xbd, 0x6a, 0xcc, 0x93, 0x67, 0x31, 0xe0, 0xe9, 0x94, 0x74, 0xed, 0x7c, 0x38, 0xa6, 0x51, 0x1a, 0x05, 0x7d, 0x19, 0x87, 0x43, 0x39, 0x94, 0xa1, 0x75, 0xa2, 0x74, 0x60, 0xc9, 0x82, 0x9d, 0xf2, 0xbb, 0x8d, 0x57, 0xe6, 0x76, 0x78, 0xf2, 0x28, 0x34, 0x79, 0x6d, 0xe6, 0x6a, 0x52, 0x4f, 0x9a, 0x94, 0x0f, 0xf5, 0x72, 0xb3, 0x7a, 0x51, 0x0f, 0x0a, 0x0f, 0x07, 0x7b, 0x2d, 0xe8, 0x91, 0xea, 0x91, 0xba, 0x9b, 0x91, 0x9a, 0x77, 0x2b, 0xda, 0x42, 0xad, 0xcd, 0xaa, 0x85, 0xd8, 0x3b, 0x66, 0xe5, 0x89, 0x98, 0xfb, 0x50, 0x87, 0xe6, 0x61, 0x77, 0x37, 0x7a, 0x27, 0xec, 0xe0, 0x85, 0x4f, 0x53, 0xe1, 0x97, 0x6c, 0x96, 0xc3, 0x55, 0xe9, 0x12, 0x1a, 0xd7, 0xcc, 0xbd, 0xe7, 0x13, 0xd1, 0xe1, 0x89, 0xd7, 0x62, 0xae, 0x98, 0x91, 0x1a, 0x0b, 0xbd, 0x2f, 0x70, 0xf6, 0xa7, 0xc0, 0x5e, 0xcb, 0x37, 0xff, 0x9a, 0x8d, 0x07, 0x76, 0x54, 0x3c, 0xf8, 0xef, 0xee, 0x5d, 0x2a, 0x69, 0x24, 0x94, 0x5f, 0xce, 0x53, 0x0b, 0x37, 0xb7, 0xcb, 0x0c, 0x9d, 0x55, 0x86, 0xce, 0x67, 0x86, 0xce, 0x3a, 0x43, 0xd8, 0x64, 0x08, 0xdb, 0x0c, 0x61, 0x61, 0x10, 0xde, 0x0c, 0xc2, 0xbb, 0x41, 0xf8, 0x30, 0x08, 0x4b, 0x83, 0xb0, 0x32, 0x08, 0x6b, 0x83, 0xf0, 0x6d, 0xd0, 0xd9, 0x18, 0x84, 0xad, 0x41, 0x67, 0xf1, 0x85, 0x4e, 0x54, 0xb1, 0x7f, 0xdb, 0xfa, 0x09, 0x00, 0x00, 0xff, 0xff, 0x11, 0xc9, 0x76, 0xfa, 0xb0, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/mapdefaults/combos/both/map.proto000066400000000000000000000047211317075173200247150ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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 = "proto3"; package mapdefaults; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message MapTest { map str_str = 1; } message FakeMap { repeated FakeMapEntry entries = 1; } message FakeMapEntry { string key = 1; string value = 2; string other = 3; } golang-gogoprotobuf-0.5/test/mapdefaults/combos/both/map_test.go000066400000000000000000000101021317075173200252040ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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. package mapdefaults import ( "testing" "github.com/gogo/protobuf/proto" ) func TestUnmarshalImplicitDefaultKeyValue1(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "foo", Value: "", }, { Key: "", Value: "bar", }, { Key: "as", Value: "df", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 3 { t.Fatal("StrStr map should have 3 key/value pairs") } val, ok := strStr["foo"] if !ok { t.Fatal("\"foo\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"foo\": %s", val) } val, ok = strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "bar" { t.Fatalf("Unexpected value for \"\": %s", val) } val, ok = strStr["as"] if !ok { t.Fatal("\"as\" not found in StrStr map.") } if val != "df" { t.Fatalf("Unexpected value for \"as\": %s", val) } } func TestUnmarshalImplicitDefaultKeyValue2(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "", Value: "", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } // Sanity check if string(serializedMsg) != "\n\x00" { t.Fatal("Serialized bytes mismatched") } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"\": %s", val) } } func TestUnmarshalIgnoreUnknownField(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "key", Value: "value", Other: "other", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := &MapTest{} err = proto.Unmarshal(serializedMsg, msg) if err != nil { var pb proto.Message = msg _, ok := pb.(proto.Unmarshaler) if !ok { // non-codegen implementation returns error when extra tags are // present. return } t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr["key"] if !ok { t.Fatal("\"key\" not found in StrStr map.") } if val != "value" { t.Fatalf("Unexpected value for \"value\": %s", val) } } golang-gogoprotobuf-0.5/test/mapdefaults/combos/both/mappb_test.go000066400000000000000000000416421317075173200255430ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/map.proto /* Package mapdefaults is a generated protocol buffer package. It is generated from these files: combos/both/map.proto It has these top-level messages: MapTest FakeMap FakeMapEntry */ package mapdefaults import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMapTestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMapTestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFakeMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFakeMapEntryMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapTestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFakeMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFakeMapEntryJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapTestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapTestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapDescription(t *testing.T) { MapDescription() } func TestMapTestVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFakeMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFakeMapEntryVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapTestGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFakeMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFakeMapEntryGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMapTestSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestFakeMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestFakeMapEntrySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestMapTestStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFakeMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFakeMapEntryStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/mapdefaults/combos/marshaler/000077500000000000000000000000001317075173200240715ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapdefaults/combos/marshaler/map.pb.go000066400000000000000000001225041317075173200256010ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/map.proto /* Package mapdefaults is a generated protocol buffer package. It is generated from these files: combos/marshaler/map.proto It has these top-level messages: MapTest FakeMap FakeMapEntry */ package mapdefaults import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapTest struct { StrStr map[string]string `protobuf:"bytes,1,rep,name=str_str,json=strStr" json:"str_str,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MapTest) Reset() { *m = MapTest{} } func (*MapTest) ProtoMessage() {} func (*MapTest) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{0} } type FakeMap struct { Entries []*FakeMapEntry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"` } func (m *FakeMap) Reset() { *m = FakeMap{} } func (*FakeMap) ProtoMessage() {} func (*FakeMap) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{1} } type FakeMapEntry struct { Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` Other string `protobuf:"bytes,3,opt,name=other,proto3" json:"other,omitempty"` } func (m *FakeMapEntry) Reset() { *m = FakeMapEntry{} } func (*FakeMapEntry) ProtoMessage() {} func (*FakeMapEntry) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{2} } func init() { proto.RegisterType((*MapTest)(nil), "mapdefaults.MapTest") proto.RegisterType((*FakeMap)(nil), "mapdefaults.FakeMap") proto.RegisterType((*FakeMapEntry)(nil), "mapdefaults.FakeMapEntry") } func (this *MapTest) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func (this *FakeMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func (this *FakeMapEntry) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func MapDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3832 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0x26, 0xfe, 0x48, 0xe0, 0x00, 0x04, 0x97, 0x97, 0xb4, 0x04, 0xd1, 0x31, 0x44, 0xd1, 0x7f, 0xb4, 0xdd, 0x80, 0x19, 0xc9, 0x92, 0x25, 0xa8, 0xb1, 0x0b, 0x82, 0x10, 0x03, 0x95, 0x24, 0x90, 0x05, 0x19, 0xcb, 0xe9, 0xc3, 0xce, 0x72, 0x71, 0x01, 0xae, 0xb4, 0xd8, 0xdd, 0xec, 0x2e, 0x24, 0x53, 0xd3, 0x99, 0xaa, 0xe3, 0xfe, 0x4c, 0xa6, 0xd3, 0xff, 0xce, 0x34, 0x71, 0x1d, 0xb7, 0xcd, 0x4c, 0xeb, 0x34, 0xe9, 0x4f, 0xd2, 0x34, 0x69, 0xda, 0xa7, 0xbe, 0xa4, 0xf5, 0x53, 0x27, 0x79, 0xeb, 0x43, 0x1f, 0x2c, 0xd6, 0x33, 0x4d, 0x5b, 0xb7, 0x75, 0x1b, 0x3f, 0x64, 0xc6, 0x2f, 0x99, 0xfb, 0xb7, 0xd8, 0x05, 0x40, 0x2d, 0x98, 0x19, 0xdb, 0x4f, 0xe4, 0x9e, 0x7b, 0xbe, 0x6f, 0xcf, 0x3d, 0xf7, 0xdc, 0x73, 0xce, 0xbd, 0x58, 0xf8, 0xda, 0x65, 0x58, 0xee, 0x5a, 0x56, 0xd7, 0xc0, 0x6b, 0xb6, 0x63, 0x79, 0xd6, 0x7e, 0xbf, 0xb3, 0xd6, 0xc6, 0xae, 0xe6, 0xe8, 0xb6, 0x67, 0x39, 0x25, 0x2a, 0x43, 0x73, 0x4c, 0xa3, 0x24, 0x34, 0x56, 0xb6, 0x61, 0xfe, 0x9a, 0x6e, 0xe0, 0x0d, 0x5f, 0xb1, 0x85, 0x3d, 0x74, 0x19, 0x92, 0x1d, 0xdd, 0xc0, 0x85, 0xd8, 0x72, 0x62, 0x35, 0x7b, 0xfe, 0xb1, 0xd2, 0x10, 0xa8, 0x14, 0x46, 0x34, 0x89, 0x58, 0xa6, 0x88, 0x95, 0xb7, 0x93, 0xb0, 0x30, 0x66, 0x14, 0x21, 0x48, 0x9a, 0x6a, 0x8f, 0x30, 0xc6, 0x56, 0x33, 0x32, 0xfd, 0x1f, 0x15, 0x60, 0xc6, 0x56, 0xb5, 0x5b, 0x6a, 0x17, 0x17, 0xe2, 0x54, 0x2c, 0x1e, 0x51, 0x11, 0xa0, 0x8d, 0x6d, 0x6c, 0xb6, 0xb1, 0xa9, 0x1d, 0x16, 0x12, 0xcb, 0x89, 0xd5, 0x8c, 0x1c, 0x90, 0xa0, 0x67, 0x60, 0xde, 0xee, 0xef, 0x1b, 0xba, 0xa6, 0x04, 0xd4, 0x60, 0x39, 0xb1, 0x9a, 0x92, 0x25, 0x36, 0xb0, 0x31, 0x50, 0x7e, 0x12, 0xe6, 0xee, 0x60, 0xf5, 0x56, 0x50, 0x35, 0x4b, 0x55, 0xf3, 0x44, 0x1c, 0x50, 0xac, 0x42, 0xae, 0x87, 0x5d, 0x57, 0xed, 0x62, 0xc5, 0x3b, 0xb4, 0x71, 0x21, 0x49, 0x67, 0xbf, 0x3c, 0x32, 0xfb, 0xe1, 0x99, 0x67, 0x39, 0x6a, 0xf7, 0xd0, 0xc6, 0xa8, 0x02, 0x19, 0x6c, 0xf6, 0x7b, 0x8c, 0x21, 0x75, 0x8c, 0xff, 0x6a, 0x66, 0xbf, 0x37, 0xcc, 0x92, 0x26, 0x30, 0x4e, 0x31, 0xe3, 0x62, 0xe7, 0xb6, 0xae, 0xe1, 0xc2, 0x34, 0x25, 0x78, 0x72, 0x84, 0xa0, 0xc5, 0xc6, 0x87, 0x39, 0x04, 0x0e, 0x55, 0x21, 0x83, 0x5f, 0xf6, 0xb0, 0xe9, 0xea, 0x96, 0x59, 0x98, 0xa1, 0x24, 0x8f, 0x8f, 0x59, 0x45, 0x6c, 0xb4, 0x87, 0x29, 0x06, 0x38, 0x74, 0x09, 0x66, 0x2c, 0xdb, 0xd3, 0x2d, 0xd3, 0x2d, 0xa4, 0x97, 0x63, 0xab, 0xd9, 0xf3, 0x1f, 0x1b, 0x1b, 0x08, 0x0d, 0xa6, 0x23, 0x0b, 0x65, 0x54, 0x07, 0xc9, 0xb5, 0xfa, 0x8e, 0x86, 0x15, 0xcd, 0x6a, 0x63, 0x45, 0x37, 0x3b, 0x56, 0x21, 0x43, 0x09, 0xce, 0x8e, 0x4e, 0x84, 0x2a, 0x56, 0xad, 0x36, 0xae, 0x9b, 0x1d, 0x4b, 0xce, 0xbb, 0xa1, 0x67, 0x74, 0x0a, 0xa6, 0xdd, 0x43, 0xd3, 0x53, 0x5f, 0x2e, 0xe4, 0x68, 0x84, 0xf0, 0xa7, 0x95, 0xbf, 0x9b, 0x86, 0xb9, 0x49, 0x42, 0xec, 0x2a, 0xa4, 0x3a, 0x64, 0x96, 0x85, 0xf8, 0x49, 0x7c, 0xc0, 0x30, 0x61, 0x27, 0x4e, 0xff, 0x84, 0x4e, 0xac, 0x40, 0xd6, 0xc4, 0xae, 0x87, 0xdb, 0x2c, 0x22, 0x12, 0x13, 0xc6, 0x14, 0x30, 0xd0, 0x68, 0x48, 0x25, 0x7f, 0xa2, 0x90, 0xba, 0x01, 0x73, 0xbe, 0x49, 0x8a, 0xa3, 0x9a, 0x5d, 0x11, 0x9b, 0x6b, 0x51, 0x96, 0x94, 0x6a, 0x02, 0x27, 0x13, 0x98, 0x9c, 0xc7, 0xa1, 0x67, 0xb4, 0x01, 0x60, 0x99, 0xd8, 0xea, 0x28, 0x6d, 0xac, 0x19, 0x85, 0xf4, 0x31, 0x5e, 0x6a, 0x10, 0x95, 0x11, 0x2f, 0x59, 0x4c, 0xaa, 0x19, 0xe8, 0xca, 0x20, 0xd4, 0x66, 0x8e, 0x89, 0x94, 0x6d, 0xb6, 0xc9, 0x46, 0xa2, 0x6d, 0x0f, 0xf2, 0x0e, 0x26, 0x71, 0x8f, 0xdb, 0x7c, 0x66, 0x19, 0x6a, 0x44, 0x29, 0x72, 0x66, 0x32, 0x87, 0xb1, 0x89, 0xcd, 0x3a, 0xc1, 0x47, 0xf4, 0x28, 0xf8, 0x02, 0x85, 0x86, 0x15, 0xd0, 0x2c, 0x94, 0x13, 0xc2, 0x1d, 0xb5, 0x87, 0x97, 0xee, 0x42, 0x3e, 0xec, 0x1e, 0xb4, 0x08, 0x29, 0xd7, 0x53, 0x1d, 0x8f, 0x46, 0x61, 0x4a, 0x66, 0x0f, 0x48, 0x82, 0x04, 0x36, 0xdb, 0x34, 0xcb, 0xa5, 0x64, 0xf2, 0x2f, 0xfa, 0x99, 0xc1, 0x84, 0x13, 0x74, 0xc2, 0x4f, 0x8c, 0xae, 0x68, 0x88, 0x79, 0x78, 0xde, 0x4b, 0xcf, 0xc1, 0x6c, 0x68, 0x02, 0x93, 0xbe, 0x7a, 0xe5, 0xe7, 0xe1, 0xa1, 0xb1, 0xd4, 0xe8, 0x06, 0x2c, 0xf6, 0x4d, 0xdd, 0xf4, 0xb0, 0x63, 0x3b, 0x98, 0x44, 0x2c, 0x7b, 0x55, 0xe1, 0xdf, 0x67, 0x8e, 0x89, 0xb9, 0xbd, 0xa0, 0x36, 0x63, 0x91, 0x17, 0xfa, 0xa3, 0xc2, 0xa7, 0x33, 0xe9, 0x1f, 0xcc, 0x48, 0xf7, 0xee, 0xdd, 0xbb, 0x17, 0x5f, 0xf9, 0xc2, 0x34, 0x2c, 0x8e, 0xdb, 0x33, 0x63, 0xb7, 0xef, 0x29, 0x98, 0x36, 0xfb, 0xbd, 0x7d, 0xec, 0x50, 0x27, 0xa5, 0x64, 0xfe, 0x84, 0x2a, 0x90, 0x32, 0xd4, 0x7d, 0x6c, 0x14, 0x92, 0xcb, 0xb1, 0xd5, 0xfc, 0xf9, 0x67, 0x26, 0xda, 0x95, 0xa5, 0x2d, 0x02, 0x91, 0x19, 0x12, 0x3d, 0x0f, 0x49, 0x9e, 0xa2, 0x09, 0xc3, 0xd3, 0x93, 0x31, 0x90, 0xbd, 0x24, 0x53, 0x1c, 0x7a, 0x18, 0x32, 0xe4, 0x2f, 0x8b, 0x8d, 0x69, 0x6a, 0x73, 0x9a, 0x08, 0x48, 0x5c, 0xa0, 0x25, 0x48, 0xd3, 0x6d, 0xd2, 0xc6, 0xa2, 0xb4, 0xf9, 0xcf, 0x24, 0xb0, 0xda, 0xb8, 0xa3, 0xf6, 0x0d, 0x4f, 0xb9, 0xad, 0x1a, 0x7d, 0x4c, 0x03, 0x3e, 0x23, 0xe7, 0xb8, 0xf0, 0x33, 0x44, 0x86, 0xce, 0x42, 0x96, 0xed, 0x2a, 0xdd, 0x6c, 0xe3, 0x97, 0x69, 0xf6, 0x4c, 0xc9, 0x6c, 0xa3, 0xd5, 0x89, 0x84, 0xbc, 0xfe, 0xa6, 0x6b, 0x99, 0x22, 0x34, 0xe9, 0x2b, 0x88, 0x80, 0xbe, 0xfe, 0xb9, 0xe1, 0xc4, 0xfd, 0xc8, 0xf8, 0xe9, 0x0d, 0xc7, 0xd4, 0xca, 0xb7, 0xe3, 0x90, 0xa4, 0xf9, 0x62, 0x0e, 0xb2, 0xbb, 0x2f, 0x35, 0x6b, 0xca, 0x46, 0x63, 0x6f, 0x7d, 0xab, 0x26, 0xc5, 0x50, 0x1e, 0x80, 0x0a, 0xae, 0x6d, 0x35, 0x2a, 0xbb, 0x52, 0xdc, 0x7f, 0xae, 0xef, 0xec, 0x5e, 0x7a, 0x56, 0x4a, 0xf8, 0x80, 0x3d, 0x26, 0x48, 0x06, 0x15, 0x2e, 0x9c, 0x97, 0x52, 0x48, 0x82, 0x1c, 0x23, 0xa8, 0xdf, 0xa8, 0x6d, 0x5c, 0x7a, 0x56, 0x9a, 0x0e, 0x4b, 0x2e, 0x9c, 0x97, 0x66, 0xd0, 0x2c, 0x64, 0xa8, 0x64, 0xbd, 0xd1, 0xd8, 0x92, 0xd2, 0x3e, 0x67, 0x6b, 0x57, 0xae, 0xef, 0x6c, 0x4a, 0x19, 0x9f, 0x73, 0x53, 0x6e, 0xec, 0x35, 0x25, 0xf0, 0x19, 0xb6, 0x6b, 0xad, 0x56, 0x65, 0xb3, 0x26, 0x65, 0x7d, 0x8d, 0xf5, 0x97, 0x76, 0x6b, 0x2d, 0x29, 0x17, 0x32, 0xeb, 0xc2, 0x79, 0x69, 0xd6, 0x7f, 0x45, 0x6d, 0x67, 0x6f, 0x5b, 0xca, 0xa3, 0x79, 0x98, 0x65, 0xaf, 0x10, 0x46, 0xcc, 0x0d, 0x89, 0x2e, 0x3d, 0x2b, 0x49, 0x03, 0x43, 0x18, 0xcb, 0x7c, 0x48, 0x70, 0xe9, 0x59, 0x09, 0xad, 0x54, 0x21, 0x45, 0xa3, 0x0b, 0x21, 0xc8, 0x6f, 0x55, 0xd6, 0x6b, 0x5b, 0x4a, 0xa3, 0xb9, 0x5b, 0x6f, 0xec, 0x54, 0xb6, 0xa4, 0xd8, 0x40, 0x26, 0xd7, 0x3e, 0xbd, 0x57, 0x97, 0x6b, 0x1b, 0x52, 0x3c, 0x28, 0x6b, 0xd6, 0x2a, 0xbb, 0xb5, 0x0d, 0x29, 0xb1, 0xa2, 0xc1, 0xe2, 0xb8, 0x3c, 0x39, 0x76, 0x67, 0x04, 0x96, 0x38, 0x7e, 0xcc, 0x12, 0x53, 0xae, 0x91, 0x25, 0xfe, 0x72, 0x0c, 0x16, 0xc6, 0xd4, 0x8a, 0xb1, 0x2f, 0x79, 0x01, 0x52, 0x2c, 0x44, 0x59, 0xf5, 0x7c, 0x6a, 0x6c, 0xd1, 0xa1, 0x01, 0x3b, 0x52, 0x41, 0x29, 0x2e, 0xd8, 0x41, 0x24, 0x8e, 0xe9, 0x20, 0x08, 0xc5, 0x88, 0x91, 0xaf, 0xc4, 0xa0, 0x70, 0x1c, 0x77, 0x44, 0xa2, 0x88, 0x87, 0x12, 0xc5, 0xd5, 0x61, 0x03, 0xce, 0x1d, 0x3f, 0x87, 0x11, 0x2b, 0xde, 0x88, 0xc1, 0xa9, 0xf1, 0x8d, 0xd6, 0x58, 0x1b, 0x9e, 0x87, 0xe9, 0x1e, 0xf6, 0x0e, 0x2c, 0xd1, 0x6c, 0x3c, 0x31, 0xa6, 0x84, 0x91, 0xe1, 0x61, 0x5f, 0x71, 0x54, 0xb0, 0x06, 0x26, 0x8e, 0xeb, 0x96, 0x98, 0x35, 0x23, 0x96, 0x7e, 0x3e, 0x0e, 0x0f, 0x8d, 0x25, 0x1f, 0x6b, 0xe8, 0x23, 0x00, 0xba, 0x69, 0xf7, 0x3d, 0xd6, 0x50, 0xb0, 0xfc, 0x94, 0xa1, 0x12, 0xba, 0xf7, 0x49, 0xee, 0xe9, 0x7b, 0xfe, 0x78, 0x82, 0x8e, 0x03, 0x13, 0x51, 0x85, 0xcb, 0x03, 0x43, 0x93, 0xd4, 0xd0, 0xe2, 0x31, 0x33, 0x1d, 0xa9, 0xd5, 0x9f, 0x00, 0x49, 0x33, 0x74, 0x6c, 0x7a, 0x8a, 0xeb, 0x39, 0x58, 0xed, 0xe9, 0x66, 0x97, 0x26, 0xe0, 0x74, 0x39, 0xd5, 0x51, 0x0d, 0x17, 0xcb, 0x73, 0x6c, 0xb8, 0x25, 0x46, 0x09, 0x82, 0xd6, 0x38, 0x27, 0x80, 0x98, 0x0e, 0x21, 0xd8, 0xb0, 0x8f, 0x58, 0xf9, 0x66, 0x1a, 0xb2, 0x81, 0xb6, 0x14, 0x9d, 0x83, 0xdc, 0x4d, 0xf5, 0xb6, 0xaa, 0x88, 0xa3, 0x06, 0xf3, 0x44, 0x96, 0xc8, 0x9a, 0xfc, 0xb8, 0xf1, 0x09, 0x58, 0xa4, 0x2a, 0x56, 0xdf, 0xc3, 0x8e, 0xa2, 0x19, 0xaa, 0xeb, 0x52, 0xa7, 0xa5, 0xa9, 0x2a, 0x22, 0x63, 0x0d, 0x32, 0x54, 0x15, 0x23, 0xe8, 0x22, 0x2c, 0x50, 0x44, 0xaf, 0x6f, 0x78, 0xba, 0x6d, 0x60, 0x85, 0x1c, 0x7e, 0x5c, 0x9a, 0x88, 0x7d, 0xcb, 0xe6, 0x89, 0xc6, 0x36, 0x57, 0x20, 0x16, 0xb9, 0x68, 0x03, 0x1e, 0xa1, 0xb0, 0x2e, 0x36, 0xb1, 0xa3, 0x7a, 0x58, 0xc1, 0x9f, 0xeb, 0xab, 0x86, 0xab, 0xa8, 0x66, 0x5b, 0x39, 0x50, 0xdd, 0x83, 0xc2, 0x22, 0x21, 0x58, 0x8f, 0x17, 0x62, 0xf2, 0x19, 0xa2, 0xb8, 0xc9, 0xf5, 0x6a, 0x54, 0xad, 0x62, 0xb6, 0x3f, 0xa5, 0xba, 0x07, 0xa8, 0x0c, 0xa7, 0x28, 0x8b, 0xeb, 0x39, 0xba, 0xd9, 0x55, 0xb4, 0x03, 0xac, 0xdd, 0x52, 0xfa, 0x5e, 0xe7, 0x72, 0xe1, 0xe1, 0xe0, 0xfb, 0xa9, 0x85, 0x2d, 0xaa, 0x53, 0x25, 0x2a, 0x7b, 0x5e, 0xe7, 0x32, 0x6a, 0x41, 0x8e, 0x2c, 0x46, 0x4f, 0xbf, 0x8b, 0x95, 0x8e, 0xe5, 0xd0, 0xca, 0x92, 0x1f, 0xb3, 0xb3, 0x03, 0x1e, 0x2c, 0x35, 0x38, 0x60, 0xdb, 0x6a, 0xe3, 0x72, 0xaa, 0xd5, 0xac, 0xd5, 0x36, 0xe4, 0xac, 0x60, 0xb9, 0x66, 0x39, 0x24, 0xa0, 0xba, 0x96, 0xef, 0xe0, 0x2c, 0x0b, 0xa8, 0xae, 0x25, 0xdc, 0x7b, 0x11, 0x16, 0x34, 0x8d, 0xcd, 0x59, 0xd7, 0x14, 0x7e, 0x44, 0x71, 0x0b, 0x52, 0xc8, 0x59, 0x9a, 0xb6, 0xc9, 0x14, 0x78, 0x8c, 0xbb, 0xe8, 0x0a, 0x3c, 0x34, 0x70, 0x56, 0x10, 0x38, 0x3f, 0x32, 0xcb, 0x61, 0xe8, 0x45, 0x58, 0xb0, 0x0f, 0x47, 0x81, 0x28, 0xf4, 0x46, 0xfb, 0x70, 0x18, 0xf6, 0x1c, 0x2c, 0xda, 0x07, 0xf6, 0x28, 0x6e, 0x21, 0x88, 0x43, 0xf6, 0x81, 0x3d, 0x0c, 0x7c, 0x9c, 0x9e, 0x57, 0x1d, 0xac, 0xa9, 0x1e, 0x6e, 0x17, 0x4e, 0x07, 0xd5, 0x03, 0x03, 0x68, 0x0d, 0x24, 0x4d, 0x53, 0xb0, 0xa9, 0xee, 0x1b, 0x58, 0x51, 0x1d, 0x6c, 0xaa, 0x6e, 0xe1, 0x6c, 0x50, 0x39, 0xaf, 0x69, 0x35, 0x3a, 0x5a, 0xa1, 0x83, 0xe8, 0x69, 0x98, 0xb7, 0xf6, 0x6f, 0x6a, 0x2c, 0x24, 0x15, 0xdb, 0xc1, 0x1d, 0xfd, 0xe5, 0xc2, 0x63, 0xd4, 0xbf, 0x73, 0x64, 0x80, 0x06, 0x64, 0x93, 0x8a, 0xd1, 0x53, 0x20, 0x69, 0xee, 0x81, 0xea, 0xd8, 0xb4, 0x27, 0x70, 0x6d, 0x55, 0xc3, 0x85, 0xc7, 0x99, 0x2a, 0x93, 0xef, 0x08, 0x31, 0xd9, 0x12, 0xee, 0x1d, 0xbd, 0xe3, 0x09, 0xc6, 0x27, 0xd9, 0x96, 0xa0, 0x32, 0xce, 0xb6, 0x0a, 0x12, 0x71, 0x45, 0xe8, 0xc5, 0xab, 0x54, 0x2d, 0x6f, 0x1f, 0xd8, 0xc1, 0xf7, 0x3e, 0x0a, 0xb3, 0x44, 0x73, 0xf0, 0xd2, 0xa7, 0x58, 0x3f, 0x63, 0x1f, 0x04, 0xde, 0xf8, 0x81, 0xb5, 0x96, 0x2b, 0x65, 0xc8, 0x05, 0xe3, 0x13, 0x65, 0x80, 0x45, 0xa8, 0x14, 0x23, 0xb5, 0xbe, 0xda, 0xd8, 0x20, 0x55, 0xfa, 0xb3, 0x35, 0x29, 0x4e, 0xba, 0x85, 0xad, 0xfa, 0x6e, 0x4d, 0x91, 0xf7, 0x76, 0x76, 0xeb, 0xdb, 0x35, 0x29, 0x11, 0x6c, 0x4b, 0xbf, 0x1b, 0x87, 0x7c, 0xf8, 0x84, 0x81, 0x7e, 0x1a, 0x4e, 0x8b, 0xeb, 0x00, 0x17, 0x7b, 0xca, 0x1d, 0xdd, 0xa1, 0x5b, 0xa6, 0xa7, 0xb2, 0x0e, 0xdb, 0x5f, 0xb4, 0x45, 0xae, 0xd5, 0xc2, 0xde, 0x8b, 0xba, 0x43, 0x36, 0x44, 0x4f, 0xf5, 0xd0, 0x16, 0x9c, 0x35, 0x2d, 0xc5, 0xf5, 0x54, 0xb3, 0xad, 0x3a, 0x6d, 0x65, 0x70, 0x11, 0xa3, 0xa8, 0x9a, 0x86, 0x5d, 0xd7, 0x62, 0xa5, 0xca, 0x67, 0xf9, 0x98, 0x69, 0xb5, 0xb8, 0xf2, 0x20, 0x87, 0x57, 0xb8, 0xea, 0x50, 0x80, 0x25, 0x8e, 0x0b, 0xb0, 0x87, 0x21, 0xd3, 0x53, 0x6d, 0x05, 0x9b, 0x9e, 0x73, 0x48, 0xfb, 0xca, 0xb4, 0x9c, 0xee, 0xa9, 0x76, 0x8d, 0x3c, 0x7f, 0x38, 0xed, 0xfd, 0xbf, 0x26, 0x20, 0x17, 0xec, 0x2d, 0x49, 0xab, 0xae, 0xd1, 0x3a, 0x12, 0xa3, 0x99, 0xe6, 0xd1, 0x07, 0x76, 0xa2, 0xa5, 0x2a, 0x29, 0x30, 0xe5, 0x69, 0xd6, 0xf1, 0xc9, 0x0c, 0x49, 0x8a, 0x3b, 0xc9, 0x2d, 0x98, 0x9d, 0x62, 0xd2, 0x32, 0x7f, 0x42, 0x9b, 0x30, 0x7d, 0xd3, 0xa5, 0xdc, 0xd3, 0x94, 0xfb, 0xb1, 0x07, 0x73, 0x5f, 0x6f, 0x51, 0xf2, 0xcc, 0xf5, 0x96, 0xb2, 0xd3, 0x90, 0xb7, 0x2b, 0x5b, 0x32, 0x87, 0xa3, 0x33, 0x90, 0x34, 0xd4, 0xbb, 0x87, 0xe1, 0x52, 0x44, 0x45, 0x93, 0x3a, 0xfe, 0x0c, 0x24, 0xef, 0x60, 0xf5, 0x56, 0xb8, 0x00, 0x50, 0xd1, 0x07, 0x18, 0xfa, 0x6b, 0x90, 0xa2, 0xfe, 0x42, 0x00, 0xdc, 0x63, 0xd2, 0x14, 0x4a, 0x43, 0xb2, 0xda, 0x90, 0x49, 0xf8, 0x4b, 0x90, 0x63, 0x52, 0xa5, 0x59, 0xaf, 0x55, 0x6b, 0x52, 0x7c, 0xe5, 0x22, 0x4c, 0x33, 0x27, 0x90, 0xad, 0xe1, 0xbb, 0x41, 0x9a, 0xe2, 0x8f, 0x9c, 0x23, 0x26, 0x46, 0xf7, 0xb6, 0xd7, 0x6b, 0xb2, 0x14, 0x0f, 0x2e, 0xaf, 0x0b, 0xb9, 0x60, 0x5b, 0xf9, 0xe1, 0xc4, 0xd4, 0xdf, 0xc7, 0x20, 0x1b, 0x68, 0x13, 0x49, 0x83, 0xa2, 0x1a, 0x86, 0x75, 0x47, 0x51, 0x0d, 0x5d, 0x75, 0x79, 0x50, 0x00, 0x15, 0x55, 0x88, 0x64, 0xd2, 0x45, 0xfb, 0x50, 0x8c, 0x7f, 0x3d, 0x06, 0xd2, 0x70, 0x8b, 0x39, 0x64, 0x60, 0xec, 0x23, 0x35, 0xf0, 0xb5, 0x18, 0xe4, 0xc3, 0x7d, 0xe5, 0x90, 0x79, 0xe7, 0x3e, 0x52, 0xf3, 0xde, 0x8a, 0xc3, 0x6c, 0xa8, 0x9b, 0x9c, 0xd4, 0xba, 0xcf, 0xc1, 0xbc, 0xde, 0xc6, 0x3d, 0xdb, 0xf2, 0xb0, 0xa9, 0x1d, 0x2a, 0x06, 0xbe, 0x8d, 0x8d, 0xc2, 0x0a, 0x4d, 0x14, 0x6b, 0x0f, 0xee, 0x57, 0x4b, 0xf5, 0x01, 0x6e, 0x8b, 0xc0, 0xca, 0x0b, 0xf5, 0x8d, 0xda, 0x76, 0xb3, 0xb1, 0x5b, 0xdb, 0xa9, 0xbe, 0xa4, 0xec, 0xed, 0xfc, 0xec, 0x4e, 0xe3, 0xc5, 0x1d, 0x59, 0xd2, 0x87, 0xd4, 0x3e, 0xc0, 0xad, 0xde, 0x04, 0x69, 0xd8, 0x28, 0x74, 0x1a, 0xc6, 0x99, 0x25, 0x4d, 0xa1, 0x05, 0x98, 0xdb, 0x69, 0x28, 0xad, 0xfa, 0x46, 0x4d, 0xa9, 0x5d, 0xbb, 0x56, 0xab, 0xee, 0xb6, 0xd8, 0x01, 0xde, 0xd7, 0xde, 0x0d, 0x6f, 0xea, 0x57, 0x13, 0xb0, 0x30, 0xc6, 0x12, 0x54, 0xe1, 0x67, 0x07, 0x76, 0x9c, 0xf9, 0xf8, 0x24, 0xd6, 0x97, 0x48, 0xc9, 0x6f, 0xaa, 0x8e, 0xc7, 0x8f, 0x1a, 0x4f, 0x01, 0xf1, 0x92, 0xe9, 0xe9, 0x1d, 0x1d, 0x3b, 0xfc, 0xbe, 0x83, 0x1d, 0x28, 0xe6, 0x06, 0x72, 0x76, 0xe5, 0xf1, 0x53, 0x80, 0x6c, 0xcb, 0xd5, 0x3d, 0xfd, 0x36, 0x56, 0x74, 0x53, 0x5c, 0x8e, 0x90, 0x03, 0x46, 0x52, 0x96, 0xc4, 0x48, 0xdd, 0xf4, 0x7c, 0x6d, 0x13, 0x77, 0xd5, 0x21, 0x6d, 0x92, 0xc0, 0x13, 0xb2, 0x24, 0x46, 0x7c, 0xed, 0x73, 0x90, 0x6b, 0x5b, 0x7d, 0xd2, 0x75, 0x31, 0x3d, 0x52, 0x2f, 0x62, 0x72, 0x96, 0xc9, 0x7c, 0x15, 0xde, 0x4f, 0x0f, 0x6e, 0x65, 0x72, 0x72, 0x96, 0xc9, 0x98, 0xca, 0x93, 0x30, 0xa7, 0x76, 0xbb, 0x0e, 0x21, 0x17, 0x44, 0xec, 0x84, 0x90, 0xf7, 0xc5, 0x54, 0x71, 0xe9, 0x3a, 0xa4, 0x85, 0x1f, 0x48, 0x49, 0x26, 0x9e, 0x50, 0x6c, 0x76, 0x33, 0x17, 0x5f, 0xcd, 0xc8, 0x69, 0x53, 0x0c, 0x9e, 0x83, 0x9c, 0xee, 0x2a, 0x83, 0x4b, 0xe6, 0xf8, 0x72, 0x7c, 0x35, 0x2d, 0x67, 0x75, 0xd7, 0xbf, 0xa0, 0x5b, 0x79, 0x23, 0x0e, 0xf9, 0xf0, 0x25, 0x39, 0xda, 0x80, 0xb4, 0x61, 0x69, 0x2a, 0x0d, 0x2d, 0xf6, 0x0b, 0xcd, 0x6a, 0xc4, 0xbd, 0x7a, 0x69, 0x8b, 0xeb, 0xcb, 0x3e, 0x72, 0xe9, 0x9f, 0x63, 0x90, 0x16, 0x62, 0x74, 0x0a, 0x92, 0xb6, 0xea, 0x1d, 0x50, 0xba, 0xd4, 0x7a, 0x5c, 0x8a, 0xc9, 0xf4, 0x99, 0xc8, 0x5d, 0x5b, 0x35, 0x69, 0x08, 0x70, 0x39, 0x79, 0x26, 0xeb, 0x6a, 0x60, 0xb5, 0x4d, 0x8f, 0x1f, 0x56, 0xaf, 0x87, 0x4d, 0xcf, 0x15, 0xeb, 0xca, 0xe5, 0x55, 0x2e, 0x46, 0xcf, 0xc0, 0xbc, 0xe7, 0xa8, 0xba, 0x11, 0xd2, 0x4d, 0x52, 0x5d, 0x49, 0x0c, 0xf8, 0xca, 0x65, 0x38, 0x23, 0x78, 0xdb, 0xd8, 0x53, 0xb5, 0x03, 0xdc, 0x1e, 0x80, 0xa6, 0xe9, 0x0d, 0xec, 0x69, 0xae, 0xb0, 0xc1, 0xc7, 0x05, 0x76, 0xe5, 0xfb, 0x31, 0x98, 0x17, 0x07, 0xa6, 0xb6, 0xef, 0xac, 0x6d, 0x00, 0xd5, 0x34, 0x2d, 0x2f, 0xe8, 0xae, 0xd1, 0x50, 0x1e, 0xc1, 0x95, 0x2a, 0x3e, 0x48, 0x0e, 0x10, 0x2c, 0xf5, 0x00, 0x06, 0x23, 0xc7, 0xba, 0xed, 0x2c, 0x64, 0xf9, 0x2f, 0x20, 0xf4, 0x67, 0x34, 0x76, 0xc4, 0x06, 0x26, 0x22, 0x27, 0x2b, 0xb4, 0x08, 0xa9, 0x7d, 0xdc, 0xd5, 0x4d, 0x7e, 0xaf, 0xc9, 0x1e, 0xc4, 0x5d, 0x6d, 0xd2, 0xbf, 0xab, 0x5d, 0xbf, 0x01, 0x0b, 0x9a, 0xd5, 0x1b, 0x36, 0x77, 0x5d, 0x1a, 0x3a, 0xe6, 0xbb, 0x9f, 0x8a, 0x7d, 0x16, 0x06, 0x2d, 0xe6, 0x97, 0xe3, 0x89, 0xcd, 0xe6, 0xfa, 0x57, 0xe3, 0x4b, 0x9b, 0x0c, 0xd7, 0x14, 0xd3, 0x94, 0x71, 0xc7, 0xc0, 0x1a, 0x31, 0x1d, 0x7e, 0xf8, 0x04, 0x7c, 0xbc, 0xab, 0x7b, 0x07, 0xfd, 0xfd, 0x92, 0x66, 0xf5, 0xd6, 0xba, 0x56, 0xd7, 0x1a, 0xfc, 0x6c, 0x48, 0x9e, 0xe8, 0x03, 0xfd, 0x8f, 0xff, 0x74, 0x98, 0xf1, 0xa5, 0x4b, 0x91, 0xbf, 0x33, 0x96, 0x77, 0x60, 0x81, 0x2b, 0x2b, 0xf4, 0xb7, 0x0b, 0x76, 0x84, 0x40, 0x0f, 0xbc, 0xff, 0x29, 0x7c, 0xe3, 0x6d, 0x5a, 0xab, 0xe5, 0x79, 0x0e, 0x25, 0x63, 0xec, 0x94, 0x51, 0x96, 0xe1, 0xa1, 0x10, 0x1f, 0xdb, 0x97, 0xd8, 0x89, 0x60, 0xfc, 0x2e, 0x67, 0x5c, 0x08, 0x30, 0xb6, 0x38, 0xb4, 0x5c, 0x85, 0xd9, 0x93, 0x70, 0xfd, 0x23, 0xe7, 0xca, 0xe1, 0x20, 0xc9, 0x26, 0xcc, 0x51, 0x12, 0xad, 0xef, 0x7a, 0x56, 0x8f, 0x26, 0xbd, 0x07, 0xd3, 0xfc, 0xd3, 0xdb, 0x6c, 0xa3, 0xe4, 0x09, 0xac, 0xea, 0xa3, 0xca, 0x65, 0xa0, 0x3f, 0xd7, 0xb4, 0xb1, 0x66, 0x44, 0x30, 0xbc, 0xc9, 0x0d, 0xf1, 0xf5, 0xcb, 0x9f, 0x81, 0x45, 0xf2, 0x3f, 0xcd, 0x49, 0x41, 0x4b, 0xa2, 0x6f, 0xbb, 0x0a, 0xdf, 0x7f, 0x85, 0xed, 0xc5, 0x05, 0x9f, 0x20, 0x60, 0x53, 0x60, 0x15, 0xbb, 0xd8, 0xf3, 0xb0, 0xe3, 0x2a, 0xaa, 0x31, 0xce, 0xbc, 0xc0, 0x75, 0x41, 0xe1, 0x8b, 0xef, 0x84, 0x57, 0x71, 0x93, 0x21, 0x2b, 0x86, 0x51, 0xde, 0x83, 0xd3, 0x63, 0xa2, 0x62, 0x02, 0xce, 0x57, 0x39, 0xe7, 0xe2, 0x48, 0x64, 0x10, 0xda, 0x26, 0x08, 0xb9, 0xbf, 0x96, 0x13, 0x70, 0xfe, 0x01, 0xe7, 0x44, 0x1c, 0x2b, 0x96, 0x94, 0x30, 0x5e, 0x87, 0xf9, 0xdb, 0xd8, 0xd9, 0xb7, 0x5c, 0x7e, 0x45, 0x33, 0x01, 0xdd, 0x6b, 0x9c, 0x6e, 0x8e, 0x03, 0xe9, 0x9d, 0x0d, 0xe1, 0xba, 0x02, 0xe9, 0x8e, 0xaa, 0xe1, 0x09, 0x28, 0xbe, 0xc4, 0x29, 0x66, 0x88, 0x3e, 0x81, 0x56, 0x20, 0xd7, 0xb5, 0x78, 0x59, 0x8a, 0x86, 0xbf, 0xce, 0xe1, 0x59, 0x81, 0xe1, 0x14, 0xb6, 0x65, 0xf7, 0x0d, 0x52, 0xb3, 0xa2, 0x29, 0xfe, 0x50, 0x50, 0x08, 0x0c, 0xa7, 0x38, 0x81, 0x5b, 0xff, 0x48, 0x50, 0xb8, 0x01, 0x7f, 0xbe, 0x00, 0x59, 0xcb, 0x34, 0x0e, 0x2d, 0x73, 0x12, 0x23, 0xfe, 0x98, 0x33, 0x00, 0x87, 0x10, 0x82, 0xab, 0x90, 0x99, 0x74, 0x21, 0xfe, 0xe4, 0x1d, 0xb1, 0x3d, 0xc4, 0x0a, 0x6c, 0xc2, 0x9c, 0x48, 0x50, 0xba, 0x65, 0x4e, 0x40, 0xf1, 0xa7, 0x9c, 0x22, 0x1f, 0x80, 0xf1, 0x69, 0x78, 0xd8, 0xf5, 0xba, 0x78, 0x12, 0x92, 0x37, 0xc4, 0x34, 0x38, 0x84, 0xbb, 0x72, 0x1f, 0x9b, 0xda, 0xc1, 0x64, 0x0c, 0x5f, 0x11, 0xae, 0x14, 0x18, 0x42, 0x51, 0x85, 0xd9, 0x9e, 0xea, 0xb8, 0x07, 0xaa, 0x31, 0xd1, 0x72, 0xfc, 0x19, 0xe7, 0xc8, 0xf9, 0x20, 0xee, 0x91, 0xbe, 0x79, 0x12, 0x9a, 0xaf, 0x0a, 0x8f, 0x04, 0x60, 0x7c, 0xeb, 0xb9, 0x1e, 0xbd, 0xcf, 0x3a, 0x09, 0xdb, 0xd7, 0xc4, 0xd6, 0x63, 0xd8, 0xed, 0x20, 0xe3, 0x55, 0xc8, 0xb8, 0xfa, 0xdd, 0x89, 0x68, 0xfe, 0x5c, 0xac, 0x34, 0x05, 0x10, 0xf0, 0x4b, 0x70, 0x66, 0x6c, 0x99, 0x98, 0x80, 0xec, 0x2f, 0x38, 0xd9, 0xa9, 0x31, 0xa5, 0x82, 0xa7, 0x84, 0x93, 0x52, 0xfe, 0xa5, 0x48, 0x09, 0x78, 0x88, 0xab, 0x49, 0x0e, 0x0a, 0xae, 0xda, 0x39, 0x99, 0xd7, 0xfe, 0x4a, 0x78, 0x8d, 0x61, 0x43, 0x5e, 0xdb, 0x85, 0x53, 0x9c, 0xf1, 0x64, 0xeb, 0xfa, 0x75, 0x91, 0x58, 0x19, 0x7a, 0x2f, 0xbc, 0xba, 0x3f, 0x07, 0x4b, 0xbe, 0x3b, 0x45, 0x47, 0xea, 0x2a, 0x3d, 0xd5, 0x9e, 0x80, 0xf9, 0x1b, 0x9c, 0x59, 0x64, 0x7c, 0xbf, 0xa5, 0x75, 0xb7, 0x55, 0x9b, 0x90, 0xdf, 0x80, 0x82, 0x20, 0xef, 0x9b, 0x0e, 0xd6, 0xac, 0xae, 0xa9, 0xdf, 0xc5, 0xed, 0x09, 0xa8, 0xff, 0x7a, 0x68, 0xa9, 0xf6, 0x02, 0x70, 0xc2, 0x5c, 0x07, 0xc9, 0xef, 0x55, 0x14, 0xbd, 0x67, 0x5b, 0x8e, 0x17, 0xc1, 0xf8, 0x4d, 0xb1, 0x52, 0x3e, 0xae, 0x4e, 0x61, 0xe5, 0x1a, 0xe4, 0xe9, 0xe3, 0xa4, 0x21, 0xf9, 0x37, 0x9c, 0x68, 0x76, 0x80, 0xe2, 0x89, 0x43, 0xb3, 0x7a, 0xb6, 0xea, 0x4c, 0x92, 0xff, 0xbe, 0x25, 0x12, 0x07, 0x87, 0xf0, 0xc4, 0xe1, 0x1d, 0xda, 0x98, 0x54, 0xfb, 0x09, 0x18, 0xbe, 0x2d, 0x12, 0x87, 0xc0, 0x70, 0x0a, 0xd1, 0x30, 0x4c, 0x40, 0xf1, 0xb7, 0x82, 0x42, 0x60, 0x08, 0xc5, 0xa7, 0x07, 0x85, 0xd6, 0xc1, 0x5d, 0xdd, 0xf5, 0x1c, 0xd6, 0x07, 0x3f, 0x98, 0xea, 0x3b, 0xef, 0x84, 0x9b, 0x30, 0x39, 0x00, 0x2d, 0x5f, 0x87, 0xb9, 0xa1, 0x16, 0x03, 0x45, 0x7d, 0xfb, 0x51, 0xf8, 0xc5, 0xf7, 0x78, 0x32, 0x0a, 0x77, 0x18, 0xe5, 0x2d, 0xb2, 0xee, 0xe1, 0x3e, 0x20, 0x9a, 0xec, 0x95, 0xf7, 0xfc, 0xa5, 0x0f, 0xb5, 0x01, 0xe5, 0x6b, 0x30, 0x1b, 0xea, 0x01, 0xa2, 0xa9, 0x7e, 0x89, 0x53, 0xe5, 0x82, 0x2d, 0x40, 0xf9, 0x22, 0x24, 0x49, 0x3d, 0x8f, 0x86, 0xff, 0x32, 0x87, 0x53, 0xf5, 0xf2, 0x27, 0x21, 0x2d, 0xea, 0x78, 0x34, 0xf4, 0x57, 0x38, 0xd4, 0x87, 0x10, 0xb8, 0xa8, 0xe1, 0xd1, 0xf0, 0x5f, 0x15, 0x70, 0x01, 0x21, 0xf0, 0xc9, 0x5d, 0xf8, 0x0f, 0xbf, 0x96, 0xe4, 0x79, 0x58, 0xf8, 0xee, 0x2a, 0xcc, 0xf0, 0xe2, 0x1d, 0x8d, 0xfe, 0x3c, 0x7f, 0xb9, 0x40, 0x94, 0x9f, 0x83, 0xd4, 0x84, 0x0e, 0xff, 0x75, 0x0e, 0x65, 0xfa, 0xe5, 0x2a, 0x64, 0x03, 0x05, 0x3b, 0x1a, 0xfe, 0x1b, 0x1c, 0x1e, 0x44, 0x11, 0xd3, 0x79, 0xc1, 0x8e, 0x26, 0xf8, 0x4d, 0x61, 0x3a, 0x47, 0x10, 0xb7, 0x89, 0x5a, 0x1d, 0x8d, 0xfe, 0x2d, 0xe1, 0x75, 0x01, 0x29, 0xbf, 0x00, 0x19, 0x3f, 0xff, 0x46, 0xe3, 0x7f, 0x9b, 0xe3, 0x07, 0x18, 0xe2, 0x81, 0x40, 0xfe, 0x8f, 0xa6, 0xf8, 0x1d, 0xe1, 0x81, 0x00, 0x8a, 0x6c, 0xa3, 0xe1, 0x9a, 0x1e, 0xcd, 0xf4, 0xbb, 0x62, 0x1b, 0x0d, 0x95, 0x74, 0xb2, 0x9a, 0x34, 0x0d, 0x46, 0x53, 0xfc, 0x9e, 0x58, 0x4d, 0xaa, 0x4f, 0xcc, 0x18, 0x2e, 0x92, 0xd1, 0x1c, 0xbf, 0x2f, 0xcc, 0x18, 0xaa, 0x91, 0xe5, 0x26, 0xa0, 0xd1, 0x02, 0x19, 0xcd, 0xf7, 0x05, 0xce, 0x37, 0x3f, 0x52, 0x1f, 0xcb, 0x2f, 0xc2, 0xa9, 0xf1, 0xc5, 0x31, 0x9a, 0xf5, 0x8b, 0xef, 0x0d, 0x1d, 0x67, 0x82, 0xb5, 0xb1, 0xbc, 0x3b, 0xc8, 0xb2, 0xc1, 0xc2, 0x18, 0x4d, 0xfb, 0xea, 0x7b, 0xe1, 0x44, 0x1b, 0xac, 0x8b, 0xe5, 0x0a, 0xc0, 0xa0, 0x26, 0x45, 0x73, 0xbd, 0xc6, 0xb9, 0x02, 0x20, 0xb2, 0x35, 0x78, 0x49, 0x8a, 0xc6, 0x7f, 0x49, 0x6c, 0x0d, 0x8e, 0x20, 0x5b, 0x43, 0x54, 0xa3, 0x68, 0xf4, 0xeb, 0x62, 0x6b, 0x08, 0x48, 0xf9, 0x2a, 0xa4, 0xcd, 0xbe, 0x61, 0x90, 0xd8, 0x42, 0x0f, 0xfe, 0x9c, 0xa9, 0xf0, 0x1f, 0xef, 0x73, 0xb0, 0x00, 0x94, 0x2f, 0x42, 0x0a, 0xf7, 0xf6, 0x71, 0x3b, 0x0a, 0xf9, 0x9f, 0xef, 0x8b, 0x7c, 0x42, 0xb4, 0xcb, 0x2f, 0x00, 0xb0, 0xc3, 0x34, 0xfd, 0x95, 0x28, 0x02, 0xfb, 0x5f, 0xef, 0xf3, 0x2f, 0x25, 0x06, 0x90, 0x01, 0x01, 0xfb, 0xee, 0xe2, 0xc1, 0x04, 0xef, 0x84, 0x09, 0xe8, 0x01, 0xfc, 0x0a, 0xcc, 0xdc, 0x74, 0x2d, 0xd3, 0x53, 0xbb, 0x51, 0xe8, 0xff, 0xe6, 0x68, 0xa1, 0x4f, 0x1c, 0xd6, 0xb3, 0x1c, 0xec, 0xa9, 0x5d, 0x37, 0x0a, 0xfb, 0x3f, 0x1c, 0xeb, 0x03, 0x08, 0x58, 0x53, 0x5d, 0x6f, 0x92, 0x79, 0xff, 0xaf, 0x00, 0x0b, 0x00, 0x31, 0x9a, 0xfc, 0x7f, 0x0b, 0x1f, 0x46, 0x61, 0xdf, 0x15, 0x46, 0x73, 0xfd, 0xf2, 0x27, 0x21, 0x43, 0xfe, 0x65, 0x5f, 0x0f, 0x45, 0x80, 0xff, 0x8f, 0x83, 0x07, 0x08, 0xf2, 0x66, 0xd7, 0x6b, 0x7b, 0x7a, 0xb4, 0xb3, 0xff, 0x9f, 0xaf, 0xb4, 0xd0, 0x2f, 0x57, 0x20, 0xeb, 0x7a, 0xed, 0x76, 0x9f, 0x77, 0x34, 0x11, 0xf0, 0x1f, 0xbe, 0xef, 0x1f, 0x72, 0x7d, 0xcc, 0xfa, 0xb9, 0xf1, 0x97, 0x75, 0xb0, 0x69, 0x6d, 0x5a, 0xec, 0x9a, 0x0e, 0xbe, 0x95, 0x80, 0x25, 0xcd, 0xea, 0xed, 0x5b, 0xee, 0x9a, 0x9f, 0x48, 0xd6, 0x7a, 0xaa, 0xcd, 0xaf, 0xd8, 0xb2, 0x3d, 0xd5, 0xe6, 0xdf, 0x01, 0xba, 0x4b, 0x27, 0xbb, 0x9e, 0x5b, 0xf9, 0x05, 0x98, 0xd9, 0x56, 0xed, 0x5d, 0xec, 0x7a, 0x88, 0xba, 0x81, 0x7e, 0x31, 0xc3, 0x2f, 0x3c, 0x97, 0x4b, 0x01, 0xe2, 0x12, 0x57, 0x2b, 0xb5, 0x3c, 0xa7, 0xe5, 0x39, 0xf4, 0xc7, 0x61, 0x79, 0xda, 0xa5, 0x0f, 0x4b, 0x57, 0x20, 0x1b, 0x10, 0x23, 0x09, 0x12, 0xb7, 0xf0, 0x21, 0xff, 0x66, 0x86, 0xfc, 0x8b, 0x16, 0x07, 0xdf, 0x84, 0x11, 0x19, 0x7b, 0x28, 0xc7, 0x2f, 0xc7, 0x56, 0x9e, 0x87, 0x99, 0x6b, 0xea, 0x2d, 0xbc, 0xad, 0xda, 0xe8, 0x02, 0xcc, 0x60, 0xd3, 0x73, 0x74, 0xec, 0x72, 0x03, 0xce, 0x84, 0x0c, 0xe0, 0x6a, 0xec, 0xcd, 0x42, 0x73, 0x65, 0x0b, 0x72, 0xc1, 0x81, 0x49, 0xdf, 0x4d, 0xa4, 0x96, 0x77, 0xc0, 0xbf, 0x11, 0xcd, 0xc8, 0xec, 0x61, 0x7d, 0xe3, 0xcd, 0xfb, 0xc5, 0xa9, 0xef, 0xdd, 0x2f, 0x4e, 0xfd, 0xcb, 0xfd, 0xe2, 0xd4, 0x5b, 0xf7, 0x8b, 0xb1, 0x77, 0xef, 0x17, 0x63, 0x3f, 0xba, 0x5f, 0x8c, 0xdd, 0x3b, 0x2a, 0xc6, 0xbe, 0x72, 0x54, 0x8c, 0x7d, 0xfd, 0xa8, 0x18, 0xfb, 0xce, 0x51, 0x31, 0xf6, 0xe6, 0x51, 0x31, 0xf6, 0xbd, 0xa3, 0xe2, 0xd4, 0x5b, 0x47, 0xc5, 0xd8, 0x0f, 0x8e, 0x8a, 0x53, 0xef, 0x1e, 0x15, 0x63, 0x3f, 0x3a, 0x2a, 0x4e, 0xdd, 0xfb, 0xb7, 0xe2, 0xd4, 0xfe, 0x34, 0xf5, 0xed, 0x85, 0x1f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x28, 0xd2, 0x39, 0x9d, 0x5c, 0x31, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *MapTest) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapTest) if !ok { that2, ok := that.(MapTest) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapTest") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapTest but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapTest but is not nil && this == nil") } if len(this.StrStr) != len(that1.StrStr) { return fmt.Errorf("StrStr this(%v) Not Equal that(%v)", len(this.StrStr), len(that1.StrStr)) } for i := range this.StrStr { if this.StrStr[i] != that1.StrStr[i] { return fmt.Errorf("StrStr this[%v](%v) Not Equal that[%v](%v)", i, this.StrStr[i], i, that1.StrStr[i]) } } return nil } func (this *MapTest) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapTest) if !ok { that2, ok := that.(MapTest) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StrStr) != len(that1.StrStr) { return false } for i := range this.StrStr { if this.StrStr[i] != that1.StrStr[i] { return false } } return true } func (this *FakeMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FakeMap) if !ok { that2, ok := that.(FakeMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FakeMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FakeMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FakeMap but is not nil && this == nil") } if len(this.Entries) != len(that1.Entries) { return fmt.Errorf("Entries this(%v) Not Equal that(%v)", len(this.Entries), len(that1.Entries)) } for i := range this.Entries { if !this.Entries[i].Equal(that1.Entries[i]) { return fmt.Errorf("Entries this[%v](%v) Not Equal that[%v](%v)", i, this.Entries[i], i, that1.Entries[i]) } } return nil } func (this *FakeMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FakeMap) if !ok { that2, ok := that.(FakeMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Entries) != len(that1.Entries) { return false } for i := range this.Entries { if !this.Entries[i].Equal(that1.Entries[i]) { return false } } return true } func (this *FakeMapEntry) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FakeMapEntry) if !ok { that2, ok := that.(FakeMapEntry) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FakeMapEntry") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FakeMapEntry but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FakeMapEntry but is not nil && this == nil") } if this.Key != that1.Key { return fmt.Errorf("Key this(%v) Not Equal that(%v)", this.Key, that1.Key) } if this.Value != that1.Value { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if this.Other != that1.Other { return fmt.Errorf("Other this(%v) Not Equal that(%v)", this.Other, that1.Other) } return nil } func (this *FakeMapEntry) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FakeMapEntry) if !ok { that2, ok := that.(FakeMapEntry) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Key != that1.Key { return false } if this.Value != that1.Value { return false } if this.Other != that1.Other { return false } return true } func (this *MapTest) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&mapdefaults.MapTest{") keysForStrStr := make([]string, 0, len(this.StrStr)) for k := range this.StrStr { keysForStrStr = append(keysForStrStr, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStrStr) mapStringForStrStr := "map[string]string{" for _, k := range keysForStrStr { mapStringForStrStr += fmt.Sprintf("%#v: %#v,", k, this.StrStr[k]) } mapStringForStrStr += "}" if this.StrStr != nil { s = append(s, "StrStr: "+mapStringForStrStr+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FakeMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&mapdefaults.FakeMap{") if this.Entries != nil { s = append(s, "Entries: "+fmt.Sprintf("%#v", this.Entries)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FakeMapEntry) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&mapdefaults.FakeMapEntry{") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "Other: "+fmt.Sprintf("%#v", this.Other)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringMap(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *MapTest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MapTest) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StrStr) > 0 { for k := range m.StrStr { dAtA[i] = 0xa i++ v := m.StrStr[k] mapSize := 1 + len(k) + sovMap(uint64(len(k))) + 1 + len(v) + sovMap(uint64(len(v))) i = encodeVarintMap(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMap(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMap(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } return i, nil } func (m *FakeMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FakeMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Entries) > 0 { for _, msg := range m.Entries { dAtA[i] = 0xa i++ i = encodeVarintMap(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } return i, nil } func (m *FakeMapEntry) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FakeMapEntry) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Key) > 0 { dAtA[i] = 0xa i++ i = encodeVarintMap(dAtA, i, uint64(len(m.Key))) i += copy(dAtA[i:], m.Key) } if len(m.Value) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintMap(dAtA, i, uint64(len(m.Value))) i += copy(dAtA[i:], m.Value) } if len(m.Other) > 0 { dAtA[i] = 0x1a i++ i = encodeVarintMap(dAtA, i, uint64(len(m.Other))) i += copy(dAtA[i:], m.Other) } return i, nil } func encodeVarintMap(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedMapTest(r randyMap, easy bool) *MapTest { this := &MapTest{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.StrStr = make(map[string]string) for i := 0; i < v1; i++ { this.StrStr[randStringMap(r)] = randStringMap(r) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFakeMap(r randyMap, easy bool) *FakeMap { this := &FakeMap{} if r.Intn(10) != 0 { v2 := r.Intn(5) this.Entries = make([]*FakeMapEntry, v2) for i := 0; i < v2; i++ { this.Entries[i] = NewPopulatedFakeMapEntry(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFakeMapEntry(r randyMap, easy bool) *FakeMapEntry { this := &FakeMapEntry{} this.Key = string(randStringMap(r)) this.Value = string(randStringMap(r)) this.Other = string(randStringMap(r)) if !easy && r.Intn(10) != 0 { } return this } type randyMap interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneMap(r randyMap) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringMap(r randyMap) string { v3 := r.Intn(100) tmps := make([]rune, v3) for i := 0; i < v3; i++ { tmps[i] = randUTF8RuneMap(r) } return string(tmps) } func randUnrecognizedMap(r randyMap, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldMap(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldMap(dAtA []byte, r randyMap, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) v4 := r.Int63() if r.Intn(2) == 0 { v4 *= -1 } dAtA = encodeVarintPopulateMap(dAtA, uint64(v4)) case 1: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateMap(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateMap(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *MapTest) Size() (n int) { var l int _ = l if len(m.StrStr) > 0 { for k, v := range m.StrStr { _ = k _ = v mapEntrySize := 1 + len(k) + sovMap(uint64(len(k))) + 1 + len(v) + sovMap(uint64(len(v))) n += mapEntrySize + 1 + sovMap(uint64(mapEntrySize)) } } return n } func (m *FakeMap) Size() (n int) { var l int _ = l if len(m.Entries) > 0 { for _, e := range m.Entries { l = e.Size() n += 1 + l + sovMap(uint64(l)) } } return n } func (m *FakeMapEntry) Size() (n int) { var l int _ = l l = len(m.Key) if l > 0 { n += 1 + l + sovMap(uint64(l)) } l = len(m.Value) if l > 0 { n += 1 + l + sovMap(uint64(l)) } l = len(m.Other) if l > 0 { n += 1 + l + sovMap(uint64(l)) } return n } func sovMap(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozMap(x uint64) (n int) { return sovMap(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *MapTest) String() string { if this == nil { return "nil" } keysForStrStr := make([]string, 0, len(this.StrStr)) for k := range this.StrStr { keysForStrStr = append(keysForStrStr, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStrStr) mapStringForStrStr := "map[string]string{" for _, k := range keysForStrStr { mapStringForStrStr += fmt.Sprintf("%v: %v,", k, this.StrStr[k]) } mapStringForStrStr += "}" s := strings.Join([]string{`&MapTest{`, `StrStr:` + mapStringForStrStr + `,`, `}`, }, "") return s } func (this *FakeMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FakeMap{`, `Entries:` + strings.Replace(fmt.Sprintf("%v", this.Entries), "FakeMapEntry", "FakeMapEntry", 1) + `,`, `}`, }, "") return s } func (this *FakeMapEntry) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FakeMapEntry{`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `Other:` + fmt.Sprintf("%v", this.Other) + `,`, `}`, }, "") return s } func valueToStringMap(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/marshaler/map.proto", fileDescriptorMap) } var fileDescriptorMap = []byte{ // 315 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0x3f, 0x4f, 0x3a, 0x31, 0x18, 0xc7, 0xfb, 0x40, 0x7e, 0x5c, 0x7e, 0xc5, 0xc1, 0x5c, 0x1c, 0x4e, 0x86, 0x27, 0x84, 0x89, 0xc5, 0xbb, 0x44, 0x16, 0x71, 0x70, 0x30, 0xea, 0x24, 0x0b, 0xb8, 0x9b, 0x1e, 0x96, 0x3f, 0x81, 0xa3, 0x97, 0xb6, 0x67, 0xc2, 0x24, 0x2f, 0xc7, 0xd1, 0xd1, 0x97, 0xc0, 0xc8, 0xe8, 0x48, 0xeb, 0xe2, 0xc8, 0xc8, 0x68, 0xe8, 0x9d, 0xc9, 0xb9, 0xb9, 0x3d, 0x9f, 0x6f, 0x3f, 0xed, 0xf3, 0x4d, 0x69, 0x63, 0x28, 0x92, 0x58, 0xa8, 0x28, 0x61, 0x52, 0x4d, 0xd8, 0x9c, 0xcb, 0x28, 0x61, 0x69, 0x98, 0x4a, 0xa1, 0x85, 0x5f, 0x4f, 0x58, 0xfa, 0xc4, 0x47, 0x2c, 0x9b, 0x6b, 0xd5, 0x38, 0x1b, 0x4f, 0xf5, 0x24, 0x8b, 0xc3, 0xa1, 0x48, 0xa2, 0xb1, 0x18, 0x8b, 0xc8, 0x39, 0x71, 0x36, 0x72, 0xe4, 0xc0, 0x4d, 0xf9, 0xdd, 0xd6, 0x0b, 0xf5, 0x7a, 0x2c, 0x7d, 0xe0, 0x4a, 0xfb, 0x5d, 0xea, 0x29, 0x2d, 0x1f, 0x95, 0x96, 0x01, 0x34, 0xab, 0xed, 0xfa, 0x79, 0x33, 0x2c, 0x3d, 0x1c, 0x16, 0x5a, 0x38, 0xd0, 0x72, 0xa0, 0xe5, 0xed, 0x42, 0xcb, 0x65, 0xbf, 0xa6, 0x1c, 0x34, 0xba, 0xb4, 0x5e, 0x8a, 0xfd, 0x63, 0x5a, 0x9d, 0xf1, 0x65, 0x00, 0x4d, 0x68, 0xff, 0xef, 0x1f, 0x46, 0xff, 0x84, 0xfe, 0x7b, 0x66, 0xf3, 0x8c, 0x07, 0x15, 0x97, 0xe5, 0x70, 0x59, 0xb9, 0x80, 0xd6, 0x15, 0xf5, 0xee, 0xd8, 0x8c, 0xf7, 0x58, 0xea, 0x77, 0xa8, 0xc7, 0x17, 0x5a, 0x4e, 0xb9, 0x2a, 0x0a, 0x9c, 0xfe, 0x2a, 0x50, 0x68, 0xf9, 0xe6, 0x1f, 0xb3, 0x75, 0x4f, 0x8f, 0xca, 0x07, 0x7f, 0xdd, 0x7d, 0x48, 0x85, 0x9e, 0x70, 0x19, 0x54, 0xf3, 0xd4, 0xc1, 0xf5, 0xcd, 0xda, 0x20, 0xd9, 0x18, 0x24, 0x1f, 0x06, 0xc9, 0xd6, 0x20, 0xec, 0x0c, 0xc2, 0xde, 0x20, 0xac, 0x2c, 0xc2, 0xab, 0x45, 0x78, 0xb3, 0x08, 0xef, 0x16, 0x61, 0x6d, 0x11, 0x36, 0x16, 0xc9, 0xd6, 0x22, 0x7c, 0x59, 0x24, 0x3b, 0x8b, 0xb0, 0xb7, 0x48, 0x56, 0x9f, 0x48, 0xe2, 0x9a, 0xfb, 0xdb, 0xce, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xde, 0x50, 0x18, 0x62, 0xb5, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/mapdefaults/combos/marshaler/map.proto000066400000000000000000000047221317075173200257400ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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 = "proto3"; package mapdefaults; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message MapTest { map str_str = 1; } message FakeMap { repeated FakeMapEntry entries = 1; } message FakeMapEntry { string key = 1; string value = 2; string other = 3; } golang-gogoprotobuf-0.5/test/mapdefaults/combos/marshaler/map_test.go000066400000000000000000000101021317075173200262260ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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. package mapdefaults import ( "testing" "github.com/gogo/protobuf/proto" ) func TestUnmarshalImplicitDefaultKeyValue1(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "foo", Value: "", }, { Key: "", Value: "bar", }, { Key: "as", Value: "df", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 3 { t.Fatal("StrStr map should have 3 key/value pairs") } val, ok := strStr["foo"] if !ok { t.Fatal("\"foo\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"foo\": %s", val) } val, ok = strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "bar" { t.Fatalf("Unexpected value for \"\": %s", val) } val, ok = strStr["as"] if !ok { t.Fatal("\"as\" not found in StrStr map.") } if val != "df" { t.Fatalf("Unexpected value for \"as\": %s", val) } } func TestUnmarshalImplicitDefaultKeyValue2(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "", Value: "", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } // Sanity check if string(serializedMsg) != "\n\x00" { t.Fatal("Serialized bytes mismatched") } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"\": %s", val) } } func TestUnmarshalIgnoreUnknownField(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "key", Value: "value", Other: "other", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := &MapTest{} err = proto.Unmarshal(serializedMsg, msg) if err != nil { var pb proto.Message = msg _, ok := pb.(proto.Unmarshaler) if !ok { // non-codegen implementation returns error when extra tags are // present. return } t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr["key"] if !ok { t.Fatal("\"key\" not found in StrStr map.") } if val != "value" { t.Fatalf("Unexpected value for \"value\": %s", val) } } golang-gogoprotobuf-0.5/test/mapdefaults/combos/marshaler/mappb_test.go000066400000000000000000000416541317075173200265700ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/map.proto /* Package mapdefaults is a generated protocol buffer package. It is generated from these files: combos/marshaler/map.proto It has these top-level messages: MapTest FakeMap FakeMapEntry */ package mapdefaults import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMapTestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMapTestMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFakeMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFakeMapEntryMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapTestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFakeMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFakeMapEntryJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapTestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapTestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapDescription(t *testing.T) { MapDescription() } func TestMapTestVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFakeMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFakeMapEntryVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapTestGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFakeMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFakeMapEntryGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMapTestSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestFakeMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestFakeMapEntrySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestMapTestStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFakeMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFakeMapEntryStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/mapdefaults/combos/neither/000077500000000000000000000000001317075173200235515ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapdefaults/combos/neither/map.pb.go000066400000000000000000001163051317075173200252630ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/map.proto /* Package mapdefaults is a generated protocol buffer package. It is generated from these files: combos/neither/map.proto It has these top-level messages: MapTest FakeMap FakeMapEntry */ package mapdefaults import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapTest struct { StrStr map[string]string `protobuf:"bytes,1,rep,name=str_str,json=strStr" json:"str_str,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MapTest) Reset() { *m = MapTest{} } func (*MapTest) ProtoMessage() {} func (*MapTest) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{0} } type FakeMap struct { Entries []*FakeMapEntry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"` } func (m *FakeMap) Reset() { *m = FakeMap{} } func (*FakeMap) ProtoMessage() {} func (*FakeMap) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{1} } type FakeMapEntry struct { Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` Other string `protobuf:"bytes,3,opt,name=other,proto3" json:"other,omitempty"` } func (m *FakeMapEntry) Reset() { *m = FakeMapEntry{} } func (*FakeMapEntry) ProtoMessage() {} func (*FakeMapEntry) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{2} } func init() { proto.RegisterType((*MapTest)(nil), "mapdefaults.MapTest") proto.RegisterType((*FakeMap)(nil), "mapdefaults.FakeMap") proto.RegisterType((*FakeMapEntry)(nil), "mapdefaults.FakeMapEntry") } func (this *MapTest) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func (this *FakeMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func (this *FakeMapEntry) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func MapDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3833 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0x26, 0xfe, 0x48, 0xe0, 0x00, 0x04, 0x97, 0x97, 0xb4, 0x04, 0xd1, 0x31, 0x44, 0xd1, 0x7f, 0xb4, 0xdd, 0x80, 0x19, 0xc9, 0x92, 0x25, 0xa8, 0xb1, 0x0b, 0x82, 0x10, 0x03, 0x95, 0x24, 0x90, 0x05, 0x19, 0xcb, 0xe9, 0xc3, 0xce, 0x72, 0x71, 0x01, 0xae, 0xb4, 0xd8, 0xdd, 0xec, 0x2e, 0x24, 0x53, 0xd3, 0x99, 0xaa, 0xe3, 0xfe, 0x4c, 0xa6, 0xd3, 0xff, 0xce, 0x34, 0x71, 0x1d, 0xb7, 0xcd, 0x4c, 0xeb, 0x34, 0xe9, 0x4f, 0x52, 0xb7, 0x69, 0xda, 0xa7, 0xbe, 0xa4, 0xf5, 0x53, 0x27, 0x79, 0xeb, 0x43, 0x1f, 0x2c, 0xd6, 0x33, 0x4d, 0x5b, 0xb7, 0x75, 0x1b, 0x3f, 0x64, 0xc6, 0x2f, 0x9d, 0xfb, 0xb7, 0xd8, 0x05, 0x40, 0x2d, 0x98, 0x19, 0xdb, 0x4f, 0xe4, 0x3d, 0xf7, 0x7c, 0xdf, 0x3d, 0xf7, 0xdc, 0x73, 0xef, 0x39, 0xf7, 0x2e, 0xe0, 0x1b, 0x97, 0x61, 0xb9, 0x6b, 0x59, 0x5d, 0x03, 0xaf, 0xd9, 0x8e, 0xe5, 0x59, 0xfb, 0xfd, 0xce, 0x5a, 0x1b, 0xbb, 0x9a, 0xa3, 0xdb, 0x9e, 0xe5, 0x94, 0xa8, 0x0c, 0xcd, 0x31, 0x8d, 0x92, 0xd0, 0x58, 0xd9, 0x86, 0xf9, 0x6b, 0xba, 0x81, 0x37, 0x7c, 0xc5, 0x16, 0xf6, 0xd0, 0x65, 0x48, 0x76, 0x74, 0x03, 0x17, 0x62, 0xcb, 0x89, 0xd5, 0xec, 0xf9, 0xc7, 0x4a, 0x43, 0xa0, 0x52, 0x18, 0xd1, 0x24, 0x62, 0x99, 0x22, 0x56, 0xde, 0x49, 0xc2, 0xc2, 0x98, 0x5e, 0x84, 0x20, 0x69, 0xaa, 0x3d, 0xc2, 0x18, 0x5b, 0xcd, 0xc8, 0xf4, 0x7f, 0x54, 0x80, 0x19, 0x5b, 0xd5, 0x6e, 0xa9, 0x5d, 0x5c, 0x88, 0x53, 0xb1, 0x68, 0xa2, 0x22, 0x40, 0x1b, 0xdb, 0xd8, 0x6c, 0x63, 0x53, 0x3b, 0x2c, 0x24, 0x96, 0x13, 0xab, 0x19, 0x39, 0x20, 0x41, 0xcf, 0xc0, 0xbc, 0xdd, 0xdf, 0x37, 0x74, 0x4d, 0x09, 0xa8, 0xc1, 0x72, 0x62, 0x35, 0x25, 0x4b, 0xac, 0x63, 0x63, 0xa0, 0xfc, 0x24, 0xcc, 0xdd, 0xc1, 0xea, 0xad, 0xa0, 0x6a, 0x96, 0xaa, 0xe6, 0x89, 0x38, 0xa0, 0x58, 0x85, 0x5c, 0x0f, 0xbb, 0xae, 0xda, 0xc5, 0x8a, 0x77, 0x68, 0xe3, 0x42, 0x92, 0xce, 0x7e, 0x79, 0x64, 0xf6, 0xc3, 0x33, 0xcf, 0x72, 0xd4, 0xee, 0xa1, 0x8d, 0x51, 0x05, 0x32, 0xd8, 0xec, 0xf7, 0x18, 0x43, 0xea, 0x18, 0xff, 0xd5, 0xcc, 0x7e, 0x6f, 0x98, 0x25, 0x4d, 0x60, 0x9c, 0x62, 0xc6, 0xc5, 0xce, 0x6d, 0x5d, 0xc3, 0x85, 0x69, 0x4a, 0xf0, 0xe4, 0x08, 0x41, 0x8b, 0xf5, 0x0f, 0x73, 0x08, 0x1c, 0xaa, 0x42, 0x06, 0xbf, 0xec, 0x61, 0xd3, 0xd5, 0x2d, 0xb3, 0x30, 0x43, 0x49, 0x1e, 0x1f, 0xb3, 0x8a, 0xd8, 0x68, 0x0f, 0x53, 0x0c, 0x70, 0xe8, 0x12, 0xcc, 0x58, 0xb6, 0xa7, 0x5b, 0xa6, 0x5b, 0x48, 0x2f, 0xc7, 0x56, 0xb3, 0xe7, 0x3f, 0x31, 0x36, 0x10, 0x1a, 0x4c, 0x47, 0x16, 0xca, 0xa8, 0x0e, 0x92, 0x6b, 0xf5, 0x1d, 0x0d, 0x2b, 0x9a, 0xd5, 0xc6, 0x8a, 0x6e, 0x76, 0xac, 0x42, 0x86, 0x12, 0x9c, 0x1d, 0x9d, 0x08, 0x55, 0xac, 0x5a, 0x6d, 0x5c, 0x37, 0x3b, 0x96, 0x9c, 0x77, 0x43, 0x6d, 0x74, 0x0a, 0xa6, 0xdd, 0x43, 0xd3, 0x53, 0x5f, 0x2e, 0xe4, 0x68, 0x84, 0xf0, 0xd6, 0xca, 0xdf, 0x4e, 0xc3, 0xdc, 0x24, 0x21, 0x76, 0x15, 0x52, 0x1d, 0x32, 0xcb, 0x42, 0xfc, 0x24, 0x3e, 0x60, 0x98, 0xb0, 0x13, 0xa7, 0x7f, 0x4c, 0x27, 0x56, 0x20, 0x6b, 0x62, 0xd7, 0xc3, 0x6d, 0x16, 0x11, 0x89, 0x09, 0x63, 0x0a, 0x18, 0x68, 0x34, 0xa4, 0x92, 0x3f, 0x56, 0x48, 0xdd, 0x80, 0x39, 0xdf, 0x24, 0xc5, 0x51, 0xcd, 0xae, 0x88, 0xcd, 0xb5, 0x28, 0x4b, 0x4a, 0x35, 0x81, 0x93, 0x09, 0x4c, 0xce, 0xe3, 0x50, 0x1b, 0x6d, 0x00, 0x58, 0x26, 0xb6, 0x3a, 0x4a, 0x1b, 0x6b, 0x46, 0x21, 0x7d, 0x8c, 0x97, 0x1a, 0x44, 0x65, 0xc4, 0x4b, 0x16, 0x93, 0x6a, 0x06, 0xba, 0x32, 0x08, 0xb5, 0x99, 0x63, 0x22, 0x65, 0x9b, 0x6d, 0xb2, 0x91, 0x68, 0xdb, 0x83, 0xbc, 0x83, 0x49, 0xdc, 0xe3, 0x36, 0x9f, 0x59, 0x86, 0x1a, 0x51, 0x8a, 0x9c, 0x99, 0xcc, 0x61, 0x6c, 0x62, 0xb3, 0x4e, 0xb0, 0x89, 0x1e, 0x05, 0x5f, 0xa0, 0xd0, 0xb0, 0x02, 0x7a, 0x0a, 0xe5, 0x84, 0x70, 0x47, 0xed, 0xe1, 0xa5, 0xbb, 0x90, 0x0f, 0xbb, 0x07, 0x2d, 0x42, 0xca, 0xf5, 0x54, 0xc7, 0xa3, 0x51, 0x98, 0x92, 0x59, 0x03, 0x49, 0x90, 0xc0, 0x66, 0x9b, 0x9e, 0x72, 0x29, 0x99, 0xfc, 0x8b, 0x7e, 0x6a, 0x30, 0xe1, 0x04, 0x9d, 0xf0, 0x13, 0xa3, 0x2b, 0x1a, 0x62, 0x1e, 0x9e, 0xf7, 0xd2, 0x73, 0x30, 0x1b, 0x9a, 0xc0, 0xa4, 0x43, 0xaf, 0xfc, 0x2c, 0x3c, 0x34, 0x96, 0x1a, 0xdd, 0x80, 0xc5, 0xbe, 0xa9, 0x9b, 0x1e, 0x76, 0x6c, 0x07, 0x93, 0x88, 0x65, 0x43, 0x15, 0xfe, 0x6d, 0xe6, 0x98, 0x98, 0xdb, 0x0b, 0x6a, 0x33, 0x16, 0x79, 0xa1, 0x3f, 0x2a, 0x7c, 0x3a, 0x93, 0xfe, 0xc1, 0x8c, 0x74, 0xef, 0xde, 0xbd, 0x7b, 0xf1, 0x95, 0x2f, 0x4d, 0xc3, 0xe2, 0xb8, 0x3d, 0x33, 0x76, 0xfb, 0x9e, 0x82, 0x69, 0xb3, 0xdf, 0xdb, 0xc7, 0x0e, 0x75, 0x52, 0x4a, 0xe6, 0x2d, 0x54, 0x81, 0x94, 0xa1, 0xee, 0x63, 0xa3, 0x90, 0x5c, 0x8e, 0xad, 0xe6, 0xcf, 0x3f, 0x33, 0xd1, 0xae, 0x2c, 0x6d, 0x11, 0x88, 0xcc, 0x90, 0xe8, 0x79, 0x48, 0xf2, 0x23, 0x9a, 0x30, 0x3c, 0x3d, 0x19, 0x03, 0xd9, 0x4b, 0x32, 0xc5, 0xa1, 0x87, 0x21, 0x43, 0xfe, 0xb2, 0xd8, 0x98, 0xa6, 0x36, 0xa7, 0x89, 0x80, 0xc4, 0x05, 0x5a, 0x82, 0x34, 0xdd, 0x26, 0x6d, 0x2c, 0x52, 0x9b, 0xdf, 0x26, 0x81, 0xd5, 0xc6, 0x1d, 0xb5, 0x6f, 0x78, 0xca, 0x6d, 0xd5, 0xe8, 0x63, 0x1a, 0xf0, 0x19, 0x39, 0xc7, 0x85, 0x9f, 0x23, 0x32, 0x74, 0x16, 0xb2, 0x6c, 0x57, 0xe9, 0x66, 0x1b, 0xbf, 0x4c, 0x4f, 0xcf, 0x94, 0xcc, 0x36, 0x5a, 0x9d, 0x48, 0xc8, 0xf0, 0x37, 0x5d, 0xcb, 0x14, 0xa1, 0x49, 0x87, 0x20, 0x02, 0x3a, 0xfc, 0x73, 0xc3, 0x07, 0xf7, 0x23, 0xe3, 0xa7, 0x37, 0x1c, 0x53, 0x2b, 0xdf, 0x8e, 0x43, 0x92, 0x9e, 0x17, 0x73, 0x90, 0xdd, 0x7d, 0xa9, 0x59, 0x53, 0x36, 0x1a, 0x7b, 0xeb, 0x5b, 0x35, 0x29, 0x86, 0xf2, 0x00, 0x54, 0x70, 0x6d, 0xab, 0x51, 0xd9, 0x95, 0xe2, 0x7e, 0xbb, 0xbe, 0xb3, 0x7b, 0xe9, 0x59, 0x29, 0xe1, 0x03, 0xf6, 0x98, 0x20, 0x19, 0x54, 0xb8, 0x70, 0x5e, 0x4a, 0x21, 0x09, 0x72, 0x8c, 0xa0, 0x7e, 0xa3, 0xb6, 0x71, 0xe9, 0x59, 0x69, 0x3a, 0x2c, 0xb9, 0x70, 0x5e, 0x9a, 0x41, 0xb3, 0x90, 0xa1, 0x92, 0xf5, 0x46, 0x63, 0x4b, 0x4a, 0xfb, 0x9c, 0xad, 0x5d, 0xb9, 0xbe, 0xb3, 0x29, 0x65, 0x7c, 0xce, 0x4d, 0xb9, 0xb1, 0xd7, 0x94, 0xc0, 0x67, 0xd8, 0xae, 0xb5, 0x5a, 0x95, 0xcd, 0x9a, 0x94, 0xf5, 0x35, 0xd6, 0x5f, 0xda, 0xad, 0xb5, 0xa4, 0x5c, 0xc8, 0xac, 0x0b, 0xe7, 0xa5, 0x59, 0x7f, 0x88, 0xda, 0xce, 0xde, 0xb6, 0x94, 0x47, 0xf3, 0x30, 0xcb, 0x86, 0x10, 0x46, 0xcc, 0x0d, 0x89, 0x2e, 0x3d, 0x2b, 0x49, 0x03, 0x43, 0x18, 0xcb, 0x7c, 0x48, 0x70, 0xe9, 0x59, 0x09, 0xad, 0x54, 0x21, 0x45, 0xa3, 0x0b, 0x21, 0xc8, 0x6f, 0x55, 0xd6, 0x6b, 0x5b, 0x4a, 0xa3, 0xb9, 0x5b, 0x6f, 0xec, 0x54, 0xb6, 0xa4, 0xd8, 0x40, 0x26, 0xd7, 0x3e, 0xbb, 0x57, 0x97, 0x6b, 0x1b, 0x52, 0x3c, 0x28, 0x6b, 0xd6, 0x2a, 0xbb, 0xb5, 0x0d, 0x29, 0xb1, 0xa2, 0xc1, 0xe2, 0xb8, 0x73, 0x72, 0xec, 0xce, 0x08, 0x2c, 0x71, 0xfc, 0x98, 0x25, 0xa6, 0x5c, 0x23, 0x4b, 0xfc, 0xd5, 0x18, 0x2c, 0x8c, 0xc9, 0x15, 0x63, 0x07, 0x79, 0x01, 0x52, 0x2c, 0x44, 0x59, 0xf6, 0x7c, 0x6a, 0x6c, 0xd2, 0xa1, 0x01, 0x3b, 0x92, 0x41, 0x29, 0x2e, 0x58, 0x41, 0x24, 0x8e, 0xa9, 0x20, 0x08, 0xc5, 0x88, 0x91, 0xaf, 0xc4, 0xa0, 0x70, 0x1c, 0x77, 0xc4, 0x41, 0x11, 0x0f, 0x1d, 0x14, 0x57, 0x87, 0x0d, 0x38, 0x77, 0xfc, 0x1c, 0x46, 0xac, 0x78, 0x23, 0x06, 0xa7, 0xc6, 0x17, 0x5a, 0x63, 0x6d, 0x78, 0x1e, 0xa6, 0x7b, 0xd8, 0x3b, 0xb0, 0x44, 0xb1, 0xf1, 0xc4, 0x98, 0x14, 0x46, 0xba, 0x87, 0x7d, 0xc5, 0x51, 0xc1, 0x1c, 0x98, 0x38, 0xae, 0x5a, 0x62, 0xd6, 0x8c, 0x58, 0xfa, 0xc5, 0x38, 0x3c, 0x34, 0x96, 0x7c, 0xac, 0xa1, 0x8f, 0x00, 0xe8, 0xa6, 0xdd, 0xf7, 0x58, 0x41, 0xc1, 0xce, 0xa7, 0x0c, 0x95, 0xd0, 0xbd, 0x4f, 0xce, 0x9e, 0xbe, 0xe7, 0xf7, 0x27, 0x68, 0x3f, 0x30, 0x11, 0x55, 0xb8, 0x3c, 0x30, 0x34, 0x49, 0x0d, 0x2d, 0x1e, 0x33, 0xd3, 0x91, 0x5c, 0xfd, 0x29, 0x90, 0x34, 0x43, 0xc7, 0xa6, 0xa7, 0xb8, 0x9e, 0x83, 0xd5, 0x9e, 0x6e, 0x76, 0xe9, 0x01, 0x9c, 0x2e, 0xa7, 0x3a, 0xaa, 0xe1, 0x62, 0x79, 0x8e, 0x75, 0xb7, 0x44, 0x2f, 0x41, 0xd0, 0x1c, 0xe7, 0x04, 0x10, 0xd3, 0x21, 0x04, 0xeb, 0xf6, 0x11, 0x2b, 0x6f, 0xa6, 0x21, 0x1b, 0x28, 0x4b, 0xd1, 0x39, 0xc8, 0xdd, 0x54, 0x6f, 0xab, 0x8a, 0xb8, 0x6a, 0x30, 0x4f, 0x64, 0x89, 0xac, 0xc9, 0xaf, 0x1b, 0x9f, 0x82, 0x45, 0xaa, 0x62, 0xf5, 0x3d, 0xec, 0x28, 0x9a, 0xa1, 0xba, 0x2e, 0x75, 0x5a, 0x9a, 0xaa, 0x22, 0xd2, 0xd7, 0x20, 0x5d, 0x55, 0xd1, 0x83, 0x2e, 0xc2, 0x02, 0x45, 0xf4, 0xfa, 0x86, 0xa7, 0xdb, 0x06, 0x56, 0xc8, 0xe5, 0xc7, 0xa5, 0x07, 0xb1, 0x6f, 0xd9, 0x3c, 0xd1, 0xd8, 0xe6, 0x0a, 0xc4, 0x22, 0x17, 0x6d, 0xc0, 0x23, 0x14, 0xd6, 0xc5, 0x26, 0x76, 0x54, 0x0f, 0x2b, 0xf8, 0x0b, 0x7d, 0xd5, 0x70, 0x15, 0xd5, 0x6c, 0x2b, 0x07, 0xaa, 0x7b, 0x50, 0x58, 0x24, 0x04, 0xeb, 0xf1, 0x42, 0x4c, 0x3e, 0x43, 0x14, 0x37, 0xb9, 0x5e, 0x8d, 0xaa, 0x55, 0xcc, 0xf6, 0x67, 0x54, 0xf7, 0x00, 0x95, 0xe1, 0x14, 0x65, 0x71, 0x3d, 0x47, 0x37, 0xbb, 0x8a, 0x76, 0x80, 0xb5, 0x5b, 0x4a, 0xdf, 0xeb, 0x5c, 0x2e, 0x3c, 0x1c, 0x1c, 0x9f, 0x5a, 0xd8, 0xa2, 0x3a, 0x55, 0xa2, 0xb2, 0xe7, 0x75, 0x2e, 0xa3, 0x16, 0xe4, 0xc8, 0x62, 0xf4, 0xf4, 0xbb, 0x58, 0xe9, 0x58, 0x0e, 0xcd, 0x2c, 0xf9, 0x31, 0x3b, 0x3b, 0xe0, 0xc1, 0x52, 0x83, 0x03, 0xb6, 0xad, 0x36, 0x2e, 0xa7, 0x5a, 0xcd, 0x5a, 0x6d, 0x43, 0xce, 0x0a, 0x96, 0x6b, 0x96, 0x43, 0x02, 0xaa, 0x6b, 0xf9, 0x0e, 0xce, 0xb2, 0x80, 0xea, 0x5a, 0xc2, 0xbd, 0x17, 0x61, 0x41, 0xd3, 0xd8, 0x9c, 0x75, 0x4d, 0xe1, 0x57, 0x14, 0xb7, 0x20, 0x85, 0x9c, 0xa5, 0x69, 0x9b, 0x4c, 0x81, 0xc7, 0xb8, 0x8b, 0xae, 0xc0, 0x43, 0x03, 0x67, 0x05, 0x81, 0xf3, 0x23, 0xb3, 0x1c, 0x86, 0x5e, 0x84, 0x05, 0xfb, 0x70, 0x14, 0x88, 0x42, 0x23, 0xda, 0x87, 0xc3, 0xb0, 0xe7, 0x60, 0xd1, 0x3e, 0xb0, 0x47, 0x71, 0x0b, 0x41, 0x1c, 0xb2, 0x0f, 0xec, 0x61, 0xe0, 0xe3, 0xf4, 0xbe, 0xea, 0x60, 0x4d, 0xf5, 0x70, 0xbb, 0x70, 0x3a, 0xa8, 0x1e, 0xe8, 0x40, 0x6b, 0x20, 0x69, 0x9a, 0x82, 0x4d, 0x75, 0xdf, 0xc0, 0x8a, 0xea, 0x60, 0x53, 0x75, 0x0b, 0x67, 0x83, 0xca, 0x79, 0x4d, 0xab, 0xd1, 0xde, 0x0a, 0xed, 0x44, 0x4f, 0xc3, 0xbc, 0xb5, 0x7f, 0x53, 0x63, 0x21, 0xa9, 0xd8, 0x0e, 0xee, 0xe8, 0x2f, 0x17, 0x1e, 0xa3, 0xfe, 0x9d, 0x23, 0x1d, 0x34, 0x20, 0x9b, 0x54, 0x8c, 0x9e, 0x02, 0x49, 0x73, 0x0f, 0x54, 0xc7, 0xa6, 0x35, 0x81, 0x6b, 0xab, 0x1a, 0x2e, 0x3c, 0xce, 0x54, 0x99, 0x7c, 0x47, 0x88, 0xc9, 0x96, 0x70, 0xef, 0xe8, 0x1d, 0x4f, 0x30, 0x3e, 0xc9, 0xb6, 0x04, 0x95, 0x71, 0xb6, 0x55, 0x90, 0x88, 0x2b, 0x42, 0x03, 0xaf, 0x52, 0xb5, 0xbc, 0x7d, 0x60, 0x07, 0xc7, 0x7d, 0x14, 0x66, 0x89, 0xe6, 0x60, 0xd0, 0xa7, 0x58, 0x3d, 0x63, 0x1f, 0x04, 0x46, 0xfc, 0xd0, 0x4a, 0xcb, 0x95, 0x32, 0xe4, 0x82, 0xf1, 0x89, 0x32, 0xc0, 0x22, 0x54, 0x8a, 0x91, 0x5c, 0x5f, 0x6d, 0x6c, 0x90, 0x2c, 0xfd, 0xf9, 0x9a, 0x14, 0x27, 0xd5, 0xc2, 0x56, 0x7d, 0xb7, 0xa6, 0xc8, 0x7b, 0x3b, 0xbb, 0xf5, 0xed, 0x9a, 0x94, 0x08, 0x96, 0xa5, 0xdf, 0x8d, 0x43, 0x3e, 0x7c, 0xc3, 0x40, 0x3f, 0x09, 0xa7, 0xc5, 0x73, 0x80, 0x8b, 0x3d, 0xe5, 0x8e, 0xee, 0xd0, 0x2d, 0xd3, 0x53, 0x59, 0x85, 0xed, 0x2f, 0xda, 0x22, 0xd7, 0x6a, 0x61, 0xef, 0x45, 0xdd, 0x21, 0x1b, 0xa2, 0xa7, 0x7a, 0x68, 0x0b, 0xce, 0x9a, 0x96, 0xe2, 0x7a, 0xaa, 0xd9, 0x56, 0x9d, 0xb6, 0x32, 0x78, 0x88, 0x51, 0x54, 0x4d, 0xc3, 0xae, 0x6b, 0xb1, 0x54, 0xe5, 0xb3, 0x7c, 0xc2, 0xb4, 0x5a, 0x5c, 0x79, 0x70, 0x86, 0x57, 0xb8, 0xea, 0x50, 0x80, 0x25, 0x8e, 0x0b, 0xb0, 0x87, 0x21, 0xd3, 0x53, 0x6d, 0x05, 0x9b, 0x9e, 0x73, 0x48, 0xeb, 0xca, 0xb4, 0x9c, 0xee, 0xa9, 0x76, 0x8d, 0xb4, 0x3f, 0x9a, 0xf2, 0xfe, 0x5f, 0x12, 0x90, 0x0b, 0xd6, 0x96, 0xa4, 0x54, 0xd7, 0x68, 0x1e, 0x89, 0xd1, 0x93, 0xe6, 0xd1, 0x07, 0x56, 0xa2, 0xa5, 0x2a, 0x49, 0x30, 0xe5, 0x69, 0x56, 0xf1, 0xc9, 0x0c, 0x49, 0x92, 0x3b, 0x39, 0x5b, 0x30, 0xbb, 0xc5, 0xa4, 0x65, 0xde, 0x42, 0x9b, 0x30, 0x7d, 0xd3, 0xa5, 0xdc, 0xd3, 0x94, 0xfb, 0xb1, 0x07, 0x73, 0x5f, 0x6f, 0x51, 0xf2, 0xcc, 0xf5, 0x96, 0xb2, 0xd3, 0x90, 0xb7, 0x2b, 0x5b, 0x32, 0x87, 0xa3, 0x33, 0x90, 0x34, 0xd4, 0xbb, 0x87, 0xe1, 0x54, 0x44, 0x45, 0x93, 0x3a, 0xfe, 0x0c, 0x24, 0xef, 0x60, 0xf5, 0x56, 0x38, 0x01, 0x50, 0xd1, 0x87, 0x18, 0xfa, 0x6b, 0x90, 0xa2, 0xfe, 0x42, 0x00, 0xdc, 0x63, 0xd2, 0x14, 0x4a, 0x43, 0xb2, 0xda, 0x90, 0x49, 0xf8, 0x4b, 0x90, 0x63, 0x52, 0xa5, 0x59, 0xaf, 0x55, 0x6b, 0x52, 0x7c, 0xe5, 0x22, 0x4c, 0x33, 0x27, 0x90, 0xad, 0xe1, 0xbb, 0x41, 0x9a, 0xe2, 0x4d, 0xce, 0x11, 0x13, 0xbd, 0x7b, 0xdb, 0xeb, 0x35, 0x59, 0x8a, 0x07, 0x97, 0xd7, 0x85, 0x5c, 0xb0, 0xac, 0xfc, 0x68, 0x62, 0xea, 0xef, 0x62, 0x90, 0x0d, 0x94, 0x89, 0xa4, 0x40, 0x51, 0x0d, 0xc3, 0xba, 0xa3, 0xa8, 0x86, 0xae, 0xba, 0x3c, 0x28, 0x80, 0x8a, 0x2a, 0x44, 0x32, 0xe9, 0xa2, 0x7d, 0x24, 0xc6, 0xbf, 0x1e, 0x03, 0x69, 0xb8, 0xc4, 0x1c, 0x32, 0x30, 0xf6, 0xb1, 0x1a, 0xf8, 0x5a, 0x0c, 0xf2, 0xe1, 0xba, 0x72, 0xc8, 0xbc, 0x73, 0x1f, 0xab, 0x79, 0x6f, 0xc7, 0x61, 0x36, 0x54, 0x4d, 0x4e, 0x6a, 0xdd, 0x17, 0x60, 0x5e, 0x6f, 0xe3, 0x9e, 0x6d, 0x79, 0xd8, 0xd4, 0x0e, 0x15, 0x03, 0xdf, 0xc6, 0x46, 0x61, 0x85, 0x1e, 0x14, 0x6b, 0x0f, 0xae, 0x57, 0x4b, 0xf5, 0x01, 0x6e, 0x8b, 0xc0, 0xca, 0x0b, 0xf5, 0x8d, 0xda, 0x76, 0xb3, 0xb1, 0x5b, 0xdb, 0xa9, 0xbe, 0xa4, 0xec, 0xed, 0xfc, 0xf4, 0x4e, 0xe3, 0xc5, 0x1d, 0x59, 0xd2, 0x87, 0xd4, 0x3e, 0xc4, 0xad, 0xde, 0x04, 0x69, 0xd8, 0x28, 0x74, 0x1a, 0xc6, 0x99, 0x25, 0x4d, 0xa1, 0x05, 0x98, 0xdb, 0x69, 0x28, 0xad, 0xfa, 0x46, 0x4d, 0xa9, 0x5d, 0xbb, 0x56, 0xab, 0xee, 0xb6, 0xd8, 0x05, 0xde, 0xd7, 0xde, 0x0d, 0x6f, 0xea, 0x57, 0x13, 0xb0, 0x30, 0xc6, 0x12, 0x54, 0xe1, 0x77, 0x07, 0x76, 0x9d, 0xf9, 0xe4, 0x24, 0xd6, 0x97, 0x48, 0xca, 0x6f, 0xaa, 0x8e, 0xc7, 0xaf, 0x1a, 0x4f, 0x01, 0xf1, 0x92, 0xe9, 0xe9, 0x1d, 0x1d, 0x3b, 0xfc, 0xbd, 0x83, 0x5d, 0x28, 0xe6, 0x06, 0x72, 0xf6, 0xe4, 0xf1, 0x13, 0x80, 0x6c, 0xcb, 0xd5, 0x3d, 0xfd, 0x36, 0x56, 0x74, 0x53, 0x3c, 0x8e, 0x90, 0x0b, 0x46, 0x52, 0x96, 0x44, 0x4f, 0xdd, 0xf4, 0x7c, 0x6d, 0x13, 0x77, 0xd5, 0x21, 0x6d, 0x72, 0x80, 0x27, 0x64, 0x49, 0xf4, 0xf8, 0xda, 0xe7, 0x20, 0xd7, 0xb6, 0xfa, 0xa4, 0xea, 0x62, 0x7a, 0x24, 0x5f, 0xc4, 0xe4, 0x2c, 0x93, 0xf9, 0x2a, 0xbc, 0x9e, 0x1e, 0xbc, 0xca, 0xe4, 0xe4, 0x2c, 0x93, 0x31, 0x95, 0x27, 0x61, 0x4e, 0xed, 0x76, 0x1d, 0x42, 0x2e, 0x88, 0xd8, 0x0d, 0x21, 0xef, 0x8b, 0xa9, 0xe2, 0xd2, 0x75, 0x48, 0x0b, 0x3f, 0x90, 0x94, 0x4c, 0x3c, 0xa1, 0xd8, 0xec, 0x65, 0x2e, 0xbe, 0x9a, 0x91, 0xd3, 0xa6, 0xe8, 0x3c, 0x07, 0x39, 0xdd, 0x55, 0x06, 0x8f, 0xcc, 0xf1, 0xe5, 0xf8, 0x6a, 0x5a, 0xce, 0xea, 0xae, 0xff, 0x40, 0xb7, 0xf2, 0x46, 0x1c, 0xf2, 0xe1, 0x47, 0x72, 0xb4, 0x01, 0x69, 0xc3, 0xd2, 0x54, 0x1a, 0x5a, 0xec, 0x0b, 0xcd, 0x6a, 0xc4, 0xbb, 0x7a, 0x69, 0x8b, 0xeb, 0xcb, 0x3e, 0x72, 0xe9, 0x9f, 0x62, 0x90, 0x16, 0x62, 0x74, 0x0a, 0x92, 0xb6, 0xea, 0x1d, 0x50, 0xba, 0xd4, 0x7a, 0x5c, 0x8a, 0xc9, 0xb4, 0x4d, 0xe4, 0xae, 0xad, 0x9a, 0x34, 0x04, 0xb8, 0x9c, 0xb4, 0xc9, 0xba, 0x1a, 0x58, 0x6d, 0xd3, 0xeb, 0x87, 0xd5, 0xeb, 0x61, 0xd3, 0x73, 0xc5, 0xba, 0x72, 0x79, 0x95, 0x8b, 0xd1, 0x33, 0x30, 0xef, 0x39, 0xaa, 0x6e, 0x84, 0x74, 0x93, 0x54, 0x57, 0x12, 0x1d, 0xbe, 0x72, 0x19, 0xce, 0x08, 0xde, 0x36, 0xf6, 0x54, 0xed, 0x00, 0xb7, 0x07, 0xa0, 0x69, 0xfa, 0x02, 0x7b, 0x9a, 0x2b, 0x6c, 0xf0, 0x7e, 0x81, 0x5d, 0xf9, 0x7e, 0x0c, 0xe6, 0xc5, 0x85, 0xa9, 0xed, 0x3b, 0x6b, 0x1b, 0x40, 0x35, 0x4d, 0xcb, 0x0b, 0xba, 0x6b, 0x34, 0x94, 0x47, 0x70, 0xa5, 0x8a, 0x0f, 0x92, 0x03, 0x04, 0x4b, 0x3d, 0x80, 0x41, 0xcf, 0xb1, 0x6e, 0x3b, 0x0b, 0x59, 0xfe, 0x05, 0x84, 0x7e, 0x46, 0x63, 0x57, 0x6c, 0x60, 0x22, 0x72, 0xb3, 0x42, 0x8b, 0x90, 0xda, 0xc7, 0x5d, 0xdd, 0xe4, 0xef, 0x9a, 0xac, 0x21, 0xde, 0x6a, 0x93, 0xfe, 0x5b, 0xed, 0xfa, 0x0d, 0x58, 0xd0, 0xac, 0xde, 0xb0, 0xb9, 0xeb, 0xd2, 0xd0, 0x35, 0xdf, 0xfd, 0x4c, 0xec, 0xf3, 0x30, 0x28, 0x31, 0xbf, 0x1a, 0x4f, 0x6c, 0x36, 0xd7, 0xbf, 0x1e, 0x5f, 0xda, 0x64, 0xb8, 0xa6, 0x98, 0xa6, 0x8c, 0x3b, 0x06, 0xd6, 0x88, 0xe9, 0xf0, 0xc3, 0x27, 0xe0, 0x93, 0x5d, 0xdd, 0x3b, 0xe8, 0xef, 0x97, 0x34, 0xab, 0xb7, 0xd6, 0xb5, 0xba, 0xd6, 0xe0, 0xb3, 0x21, 0x69, 0xd1, 0x06, 0xfd, 0x8f, 0x7f, 0x3a, 0xcc, 0xf8, 0xd2, 0xa5, 0xc8, 0xef, 0x8c, 0xe5, 0x1d, 0x58, 0xe0, 0xca, 0x0a, 0xfd, 0x76, 0xc1, 0xae, 0x10, 0xe8, 0x81, 0xef, 0x3f, 0x85, 0x6f, 0xbd, 0x43, 0x73, 0xb5, 0x3c, 0xcf, 0xa1, 0xa4, 0x8f, 0xdd, 0x32, 0xca, 0x32, 0x3c, 0x14, 0xe2, 0x63, 0xfb, 0x12, 0x3b, 0x11, 0x8c, 0xdf, 0xe5, 0x8c, 0x0b, 0x01, 0xc6, 0x16, 0x87, 0x96, 0xab, 0x30, 0x7b, 0x12, 0xae, 0x7f, 0xe0, 0x5c, 0x39, 0x1c, 0x24, 0xd9, 0x84, 0x39, 0x4a, 0xa2, 0xf5, 0x5d, 0xcf, 0xea, 0xd1, 0x43, 0xef, 0xc1, 0x34, 0xff, 0xf8, 0x0e, 0xdb, 0x28, 0x79, 0x02, 0xab, 0xfa, 0xa8, 0x72, 0x19, 0xe8, 0xe7, 0x9a, 0x36, 0xd6, 0x8c, 0x08, 0x86, 0xb7, 0xb8, 0x21, 0xbe, 0x7e, 0xf9, 0x73, 0xb0, 0x48, 0xfe, 0xa7, 0x67, 0x52, 0xd0, 0x92, 0xe8, 0xd7, 0xae, 0xc2, 0xf7, 0x5f, 0x61, 0x7b, 0x71, 0xc1, 0x27, 0x08, 0xd8, 0x14, 0x58, 0xc5, 0x2e, 0xf6, 0x3c, 0xec, 0xb8, 0x8a, 0x6a, 0x8c, 0x33, 0x2f, 0xf0, 0x5c, 0x50, 0xf8, 0xf2, 0xbb, 0xe1, 0x55, 0xdc, 0x64, 0xc8, 0x8a, 0x61, 0x94, 0xf7, 0xe0, 0xf4, 0x98, 0xa8, 0x98, 0x80, 0xf3, 0x55, 0xce, 0xb9, 0x38, 0x12, 0x19, 0x84, 0xb6, 0x09, 0x42, 0xee, 0xaf, 0xe5, 0x04, 0x9c, 0xbf, 0xc7, 0x39, 0x11, 0xc7, 0x8a, 0x25, 0x25, 0x8c, 0xd7, 0x61, 0xfe, 0x36, 0x76, 0xf6, 0x2d, 0x97, 0x3f, 0xd1, 0x4c, 0x40, 0xf7, 0x1a, 0xa7, 0x9b, 0xe3, 0x40, 0xfa, 0x66, 0x43, 0xb8, 0xae, 0x40, 0xba, 0xa3, 0x6a, 0x78, 0x02, 0x8a, 0xaf, 0x70, 0x8a, 0x19, 0xa2, 0x4f, 0xa0, 0x15, 0xc8, 0x75, 0x2d, 0x9e, 0x96, 0xa2, 0xe1, 0xaf, 0x73, 0x78, 0x56, 0x60, 0x38, 0x85, 0x6d, 0xd9, 0x7d, 0x83, 0xe4, 0xac, 0x68, 0x8a, 0xdf, 0x17, 0x14, 0x02, 0xc3, 0x29, 0x4e, 0xe0, 0xd6, 0x3f, 0x10, 0x14, 0x6e, 0xc0, 0x9f, 0x2f, 0x40, 0xd6, 0x32, 0x8d, 0x43, 0xcb, 0x9c, 0xc4, 0x88, 0x3f, 0xe4, 0x0c, 0xc0, 0x21, 0x84, 0xe0, 0x2a, 0x64, 0x26, 0x5d, 0x88, 0x3f, 0x7a, 0x57, 0x6c, 0x0f, 0xb1, 0x02, 0x9b, 0x30, 0x27, 0x0e, 0x28, 0xdd, 0x32, 0x27, 0xa0, 0xf8, 0x63, 0x4e, 0x91, 0x0f, 0xc0, 0xf8, 0x34, 0x3c, 0xec, 0x7a, 0x5d, 0x3c, 0x09, 0xc9, 0x1b, 0x62, 0x1a, 0x1c, 0xc2, 0x5d, 0xb9, 0x8f, 0x4d, 0xed, 0x60, 0x32, 0x86, 0xaf, 0x09, 0x57, 0x0a, 0x0c, 0xa1, 0xa8, 0xc2, 0x6c, 0x4f, 0x75, 0xdc, 0x03, 0xd5, 0x98, 0x68, 0x39, 0xfe, 0x84, 0x73, 0xe4, 0x7c, 0x10, 0xf7, 0x48, 0xdf, 0x3c, 0x09, 0xcd, 0xd7, 0x85, 0x47, 0x02, 0x30, 0xbe, 0xf5, 0x5c, 0x8f, 0xbe, 0x67, 0x9d, 0x84, 0xed, 0x1b, 0x62, 0xeb, 0x31, 0xec, 0x76, 0x90, 0xf1, 0x2a, 0x64, 0x5c, 0xfd, 0xee, 0x44, 0x34, 0x7f, 0x2a, 0x56, 0x9a, 0x02, 0x08, 0xf8, 0x25, 0x38, 0x33, 0x36, 0x4d, 0x4c, 0x40, 0xf6, 0x67, 0x9c, 0xec, 0xd4, 0x98, 0x54, 0xc1, 0x8f, 0x84, 0x93, 0x52, 0xfe, 0xb9, 0x38, 0x12, 0xf0, 0x10, 0x57, 0x93, 0x5c, 0x14, 0x5c, 0xb5, 0x73, 0x32, 0xaf, 0xfd, 0x85, 0xf0, 0x1a, 0xc3, 0x86, 0xbc, 0xb6, 0x0b, 0xa7, 0x38, 0xe3, 0xc9, 0xd6, 0xf5, 0x9b, 0xe2, 0x60, 0x65, 0xe8, 0xbd, 0xf0, 0xea, 0xfe, 0x0c, 0x2c, 0xf9, 0xee, 0x14, 0x15, 0xa9, 0xab, 0xf4, 0x54, 0x7b, 0x02, 0xe6, 0x6f, 0x71, 0x66, 0x71, 0xe2, 0xfb, 0x25, 0xad, 0xbb, 0xad, 0xda, 0x84, 0xfc, 0x06, 0x14, 0x04, 0x79, 0xdf, 0x74, 0xb0, 0x66, 0x75, 0x4d, 0xfd, 0x2e, 0x6e, 0x4f, 0x40, 0xfd, 0x97, 0x43, 0x4b, 0xb5, 0x17, 0x80, 0x13, 0xe6, 0x3a, 0x48, 0x7e, 0xad, 0xa2, 0xe8, 0x3d, 0xdb, 0x72, 0xbc, 0x08, 0xc6, 0x37, 0xc5, 0x4a, 0xf9, 0xb8, 0x3a, 0x85, 0x95, 0x6b, 0x90, 0xa7, 0xcd, 0x49, 0x43, 0xf2, 0xaf, 0x38, 0xd1, 0xec, 0x00, 0xc5, 0x0f, 0x0e, 0xcd, 0xea, 0xd9, 0xaa, 0x33, 0xc9, 0xf9, 0xf7, 0xd7, 0xe2, 0xe0, 0xe0, 0x10, 0x7e, 0x70, 0x78, 0x87, 0x36, 0x26, 0xd9, 0x7e, 0x02, 0x86, 0x6f, 0x8b, 0x83, 0x43, 0x60, 0x38, 0x85, 0x28, 0x18, 0x26, 0xa0, 0xf8, 0x1b, 0x41, 0x21, 0x30, 0x84, 0xe2, 0xb3, 0x83, 0x44, 0xeb, 0xe0, 0xae, 0xee, 0x7a, 0x0e, 0xab, 0x83, 0x1f, 0x4c, 0xf5, 0x9d, 0x77, 0xc3, 0x45, 0x98, 0x1c, 0x80, 0x96, 0xaf, 0xc3, 0xdc, 0x50, 0x89, 0x81, 0xa2, 0x7e, 0xfb, 0x51, 0xf8, 0xf9, 0xf7, 0xf9, 0x61, 0x14, 0xae, 0x30, 0xca, 0x5b, 0x64, 0xdd, 0xc3, 0x75, 0x40, 0x34, 0xd9, 0x2b, 0xef, 0xfb, 0x4b, 0x1f, 0x2a, 0x03, 0xca, 0xd7, 0x60, 0x36, 0x54, 0x03, 0x44, 0x53, 0xfd, 0x02, 0xa7, 0xca, 0x05, 0x4b, 0x80, 0xf2, 0x45, 0x48, 0x92, 0x7c, 0x1e, 0x0d, 0xff, 0x45, 0x0e, 0xa7, 0xea, 0xe5, 0x4f, 0x43, 0x5a, 0xe4, 0xf1, 0x68, 0xe8, 0x2f, 0x71, 0xa8, 0x0f, 0x21, 0x70, 0x91, 0xc3, 0xa3, 0xe1, 0xbf, 0x2c, 0xe0, 0x02, 0x42, 0xe0, 0x93, 0xbb, 0xf0, 0xef, 0x7f, 0x25, 0xc9, 0xcf, 0x61, 0xe1, 0xbb, 0xab, 0x30, 0xc3, 0x93, 0x77, 0x34, 0xfa, 0x8b, 0x7c, 0x70, 0x81, 0x28, 0x3f, 0x07, 0xa9, 0x09, 0x1d, 0xfe, 0xab, 0x1c, 0xca, 0xf4, 0xcb, 0x55, 0xc8, 0x06, 0x12, 0x76, 0x34, 0xfc, 0xd7, 0x38, 0x3c, 0x88, 0x22, 0xa6, 0xf3, 0x84, 0x1d, 0x4d, 0xf0, 0xeb, 0xc2, 0x74, 0x8e, 0x20, 0x6e, 0x13, 0xb9, 0x3a, 0x1a, 0xfd, 0x1b, 0xc2, 0xeb, 0x02, 0x52, 0x7e, 0x01, 0x32, 0xfe, 0xf9, 0x1b, 0x8d, 0xff, 0x4d, 0x8e, 0x1f, 0x60, 0x88, 0x07, 0x02, 0xe7, 0x7f, 0x34, 0xc5, 0x6f, 0x09, 0x0f, 0x04, 0x50, 0x64, 0x1b, 0x0d, 0xe7, 0xf4, 0x68, 0xa6, 0xdf, 0x16, 0xdb, 0x68, 0x28, 0xa5, 0x93, 0xd5, 0xa4, 0xc7, 0x60, 0x34, 0xc5, 0xef, 0x88, 0xd5, 0xa4, 0xfa, 0xc4, 0x8c, 0xe1, 0x24, 0x19, 0xcd, 0xf1, 0xbb, 0xc2, 0x8c, 0xa1, 0x1c, 0x59, 0x6e, 0x02, 0x1a, 0x4d, 0x90, 0xd1, 0x7c, 0x5f, 0xe2, 0x7c, 0xf3, 0x23, 0xf9, 0xb1, 0xfc, 0x22, 0x9c, 0x1a, 0x9f, 0x1c, 0xa3, 0x59, 0xbf, 0xfc, 0xfe, 0xd0, 0x75, 0x26, 0x98, 0x1b, 0xcb, 0xbb, 0x83, 0x53, 0x36, 0x98, 0x18, 0xa3, 0x69, 0x5f, 0x7d, 0x3f, 0x7c, 0xd0, 0x06, 0xf3, 0x62, 0xb9, 0x02, 0x30, 0xc8, 0x49, 0xd1, 0x5c, 0xaf, 0x71, 0xae, 0x00, 0x88, 0x6c, 0x0d, 0x9e, 0x92, 0xa2, 0xf1, 0x5f, 0x11, 0x5b, 0x83, 0x23, 0xc8, 0xd6, 0x10, 0xd9, 0x28, 0x1a, 0xfd, 0xba, 0xd8, 0x1a, 0x02, 0x52, 0xbe, 0x0a, 0x69, 0xb3, 0x6f, 0x18, 0x24, 0xb6, 0xd0, 0x83, 0x7f, 0xce, 0x54, 0xf8, 0xf7, 0x0f, 0x38, 0x58, 0x00, 0xca, 0x17, 0x21, 0x85, 0x7b, 0xfb, 0xb8, 0x1d, 0x85, 0xfc, 0x8f, 0x0f, 0xc4, 0x79, 0x42, 0xb4, 0xcb, 0x2f, 0x00, 0xb0, 0xcb, 0x34, 0xfd, 0x4a, 0x14, 0x81, 0xfd, 0xcf, 0x0f, 0xf8, 0x2f, 0x25, 0x06, 0x90, 0x01, 0x01, 0xfb, 0xdd, 0xc5, 0x83, 0x09, 0xde, 0x0d, 0x13, 0xd0, 0x0b, 0xf8, 0x15, 0x98, 0xb9, 0xe9, 0x5a, 0xa6, 0xa7, 0x76, 0xa3, 0xd0, 0xff, 0xc5, 0xd1, 0x42, 0x9f, 0x38, 0xac, 0x67, 0x39, 0xd8, 0x53, 0xbb, 0x6e, 0x14, 0xf6, 0xbf, 0x39, 0xd6, 0x07, 0x10, 0xb0, 0xa6, 0xba, 0xde, 0x24, 0xf3, 0xfe, 0x1f, 0x01, 0x16, 0x00, 0x62, 0x34, 0xf9, 0xff, 0x16, 0x3e, 0x8c, 0xc2, 0xbe, 0x27, 0x8c, 0xe6, 0xfa, 0xe5, 0x4f, 0x43, 0x86, 0xfc, 0xcb, 0x7e, 0x3d, 0x14, 0x01, 0xfe, 0x5f, 0x0e, 0x1e, 0x20, 0xc8, 0xc8, 0xae, 0xd7, 0xf6, 0xf4, 0x68, 0x67, 0xff, 0x1f, 0x5f, 0x69, 0xa1, 0x5f, 0xae, 0x40, 0xd6, 0xf5, 0xda, 0xed, 0x3e, 0xaf, 0x68, 0x22, 0xe0, 0x3f, 0xfc, 0xc0, 0xbf, 0xe4, 0xfa, 0x98, 0xf5, 0x73, 0xe3, 0x1f, 0xeb, 0x60, 0xd3, 0xda, 0xb4, 0xd8, 0x33, 0x1d, 0xbc, 0x99, 0x80, 0x82, 0x66, 0xf5, 0xf6, 0x2d, 0x77, 0xcd, 0xc4, 0xba, 0x77, 0x80, 0x9d, 0xb5, 0x9e, 0x6a, 0xf3, 0x07, 0xb6, 0x6c, 0x4f, 0xb5, 0xf9, 0xaf, 0x00, 0xdd, 0xa5, 0x93, 0x3d, 0xce, 0xad, 0xfc, 0x1c, 0xcc, 0x6c, 0xab, 0xf6, 0x2e, 0x76, 0x3d, 0x44, 0x9d, 0x40, 0x7f, 0x2f, 0xc3, 0x9f, 0x3b, 0x97, 0x4b, 0x01, 0xe2, 0x12, 0x57, 0x2b, 0xb5, 0x3c, 0xa7, 0xe5, 0x39, 0xf4, 0xd3, 0xb0, 0x3c, 0xed, 0xd2, 0xc6, 0xd2, 0x15, 0xc8, 0x06, 0xc4, 0x48, 0x82, 0xc4, 0x2d, 0x7c, 0xc8, 0x7f, 0x31, 0x43, 0xfe, 0x45, 0x8b, 0x83, 0x5f, 0x84, 0x11, 0x19, 0x6b, 0x94, 0xe3, 0x97, 0x63, 0x2b, 0xcf, 0xc3, 0xcc, 0x35, 0xf5, 0x16, 0xde, 0x56, 0x6d, 0x74, 0x01, 0x66, 0xb0, 0xe9, 0x39, 0x3a, 0x76, 0xb9, 0x01, 0x67, 0x42, 0x06, 0x70, 0x35, 0x36, 0xb2, 0xd0, 0x5c, 0xd9, 0x82, 0x5c, 0xb0, 0x63, 0xd2, 0xb1, 0x89, 0xd4, 0x22, 0x7e, 0xe4, 0xcf, 0xcf, 0xac, 0xb1, 0xbe, 0xf1, 0xd6, 0xfd, 0xe2, 0xd4, 0xf7, 0xee, 0x17, 0xa7, 0xfe, 0xf9, 0x7e, 0x71, 0xea, 0xed, 0xfb, 0xc5, 0xd8, 0x7b, 0xf7, 0x8b, 0xb1, 0x1f, 0xdd, 0x2f, 0xc6, 0xee, 0x1d, 0x15, 0x63, 0x5f, 0x3b, 0x2a, 0xc6, 0xbe, 0x79, 0x54, 0x8c, 0x7d, 0xe7, 0xa8, 0x18, 0x7b, 0xeb, 0xa8, 0x38, 0xf5, 0xbd, 0xa3, 0xe2, 0xd4, 0xdb, 0x47, 0xc5, 0xd8, 0x0f, 0x8e, 0x8a, 0x53, 0xef, 0x1d, 0x15, 0x63, 0x3f, 0x3a, 0x2a, 0x4e, 0xdd, 0xfb, 0xd7, 0xe2, 0xd4, 0xfe, 0x34, 0xf5, 0xed, 0x85, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x19, 0xcc, 0xa8, 0x90, 0x5a, 0x31, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *MapTest) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapTest) if !ok { that2, ok := that.(MapTest) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapTest") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapTest but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapTest but is not nil && this == nil") } if len(this.StrStr) != len(that1.StrStr) { return fmt.Errorf("StrStr this(%v) Not Equal that(%v)", len(this.StrStr), len(that1.StrStr)) } for i := range this.StrStr { if this.StrStr[i] != that1.StrStr[i] { return fmt.Errorf("StrStr this[%v](%v) Not Equal that[%v](%v)", i, this.StrStr[i], i, that1.StrStr[i]) } } return nil } func (this *MapTest) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapTest) if !ok { that2, ok := that.(MapTest) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StrStr) != len(that1.StrStr) { return false } for i := range this.StrStr { if this.StrStr[i] != that1.StrStr[i] { return false } } return true } func (this *FakeMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FakeMap) if !ok { that2, ok := that.(FakeMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FakeMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FakeMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FakeMap but is not nil && this == nil") } if len(this.Entries) != len(that1.Entries) { return fmt.Errorf("Entries this(%v) Not Equal that(%v)", len(this.Entries), len(that1.Entries)) } for i := range this.Entries { if !this.Entries[i].Equal(that1.Entries[i]) { return fmt.Errorf("Entries this[%v](%v) Not Equal that[%v](%v)", i, this.Entries[i], i, that1.Entries[i]) } } return nil } func (this *FakeMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FakeMap) if !ok { that2, ok := that.(FakeMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Entries) != len(that1.Entries) { return false } for i := range this.Entries { if !this.Entries[i].Equal(that1.Entries[i]) { return false } } return true } func (this *FakeMapEntry) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FakeMapEntry) if !ok { that2, ok := that.(FakeMapEntry) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FakeMapEntry") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FakeMapEntry but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FakeMapEntry but is not nil && this == nil") } if this.Key != that1.Key { return fmt.Errorf("Key this(%v) Not Equal that(%v)", this.Key, that1.Key) } if this.Value != that1.Value { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if this.Other != that1.Other { return fmt.Errorf("Other this(%v) Not Equal that(%v)", this.Other, that1.Other) } return nil } func (this *FakeMapEntry) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FakeMapEntry) if !ok { that2, ok := that.(FakeMapEntry) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Key != that1.Key { return false } if this.Value != that1.Value { return false } if this.Other != that1.Other { return false } return true } func (this *MapTest) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&mapdefaults.MapTest{") keysForStrStr := make([]string, 0, len(this.StrStr)) for k := range this.StrStr { keysForStrStr = append(keysForStrStr, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStrStr) mapStringForStrStr := "map[string]string{" for _, k := range keysForStrStr { mapStringForStrStr += fmt.Sprintf("%#v: %#v,", k, this.StrStr[k]) } mapStringForStrStr += "}" if this.StrStr != nil { s = append(s, "StrStr: "+mapStringForStrStr+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FakeMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&mapdefaults.FakeMap{") if this.Entries != nil { s = append(s, "Entries: "+fmt.Sprintf("%#v", this.Entries)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FakeMapEntry) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&mapdefaults.FakeMapEntry{") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "Other: "+fmt.Sprintf("%#v", this.Other)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringMap(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedMapTest(r randyMap, easy bool) *MapTest { this := &MapTest{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.StrStr = make(map[string]string) for i := 0; i < v1; i++ { this.StrStr[randStringMap(r)] = randStringMap(r) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFakeMap(r randyMap, easy bool) *FakeMap { this := &FakeMap{} if r.Intn(10) != 0 { v2 := r.Intn(5) this.Entries = make([]*FakeMapEntry, v2) for i := 0; i < v2; i++ { this.Entries[i] = NewPopulatedFakeMapEntry(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFakeMapEntry(r randyMap, easy bool) *FakeMapEntry { this := &FakeMapEntry{} this.Key = string(randStringMap(r)) this.Value = string(randStringMap(r)) this.Other = string(randStringMap(r)) if !easy && r.Intn(10) != 0 { } return this } type randyMap interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneMap(r randyMap) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringMap(r randyMap) string { v3 := r.Intn(100) tmps := make([]rune, v3) for i := 0; i < v3; i++ { tmps[i] = randUTF8RuneMap(r) } return string(tmps) } func randUnrecognizedMap(r randyMap, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldMap(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldMap(dAtA []byte, r randyMap, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) v4 := r.Int63() if r.Intn(2) == 0 { v4 *= -1 } dAtA = encodeVarintPopulateMap(dAtA, uint64(v4)) case 1: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateMap(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateMap(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *MapTest) Size() (n int) { var l int _ = l if len(m.StrStr) > 0 { for k, v := range m.StrStr { _ = k _ = v mapEntrySize := 1 + len(k) + sovMap(uint64(len(k))) + 1 + len(v) + sovMap(uint64(len(v))) n += mapEntrySize + 1 + sovMap(uint64(mapEntrySize)) } } return n } func (m *FakeMap) Size() (n int) { var l int _ = l if len(m.Entries) > 0 { for _, e := range m.Entries { l = e.Size() n += 1 + l + sovMap(uint64(l)) } } return n } func (m *FakeMapEntry) Size() (n int) { var l int _ = l l = len(m.Key) if l > 0 { n += 1 + l + sovMap(uint64(l)) } l = len(m.Value) if l > 0 { n += 1 + l + sovMap(uint64(l)) } l = len(m.Other) if l > 0 { n += 1 + l + sovMap(uint64(l)) } return n } func sovMap(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozMap(x uint64) (n int) { return sovMap(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *MapTest) String() string { if this == nil { return "nil" } keysForStrStr := make([]string, 0, len(this.StrStr)) for k := range this.StrStr { keysForStrStr = append(keysForStrStr, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStrStr) mapStringForStrStr := "map[string]string{" for _, k := range keysForStrStr { mapStringForStrStr += fmt.Sprintf("%v: %v,", k, this.StrStr[k]) } mapStringForStrStr += "}" s := strings.Join([]string{`&MapTest{`, `StrStr:` + mapStringForStrStr + `,`, `}`, }, "") return s } func (this *FakeMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FakeMap{`, `Entries:` + strings.Replace(fmt.Sprintf("%v", this.Entries), "FakeMapEntry", "FakeMapEntry", 1) + `,`, `}`, }, "") return s } func (this *FakeMapEntry) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FakeMapEntry{`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `Other:` + fmt.Sprintf("%v", this.Other) + `,`, `}`, }, "") return s } func valueToStringMap(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/neither/map.proto", fileDescriptorMap) } var fileDescriptorMap = []byte{ // 313 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0x3f, 0x4f, 0x32, 0x41, 0x10, 0x87, 0x77, 0x20, 0x2f, 0x97, 0x77, 0xb1, 0x30, 0x17, 0x8b, 0x93, 0x62, 0x42, 0xa8, 0x68, 0xbc, 0x4b, 0xa4, 0x11, 0x0b, 0x0b, 0xa3, 0x56, 0xd2, 0x80, 0xbd, 0xd9, 0xc3, 0xe5, 0x4f, 0xe0, 0xd8, 0xcb, 0xee, 0x9e, 0x09, 0x95, 0x7c, 0x1c, 0x4b, 0x4b, 0x3f, 0x02, 0x25, 0xa5, 0x25, 0xbb, 0x36, 0x96, 0x94, 0x94, 0x86, 0xbd, 0x33, 0x39, 0x3b, 0xbb, 0x79, 0x7e, 0xfb, 0xec, 0xcc, 0x64, 0x68, 0x30, 0x14, 0x49, 0x2c, 0x54, 0xb4, 0xe0, 0x53, 0x3d, 0xe1, 0x32, 0x4a, 0x58, 0x1a, 0xa6, 0x52, 0x68, 0xe1, 0xd7, 0x13, 0x96, 0x3e, 0xf1, 0x11, 0xcb, 0xe6, 0x5a, 0x35, 0xce, 0xc6, 0x53, 0x3d, 0xc9, 0xe2, 0x70, 0x28, 0x92, 0x68, 0x2c, 0xc6, 0x22, 0x72, 0x4e, 0x9c, 0x8d, 0x1c, 0x39, 0x70, 0x55, 0xfe, 0xb7, 0xf5, 0x42, 0xbd, 0x1e, 0x4b, 0x1f, 0xb8, 0xd2, 0x7e, 0x97, 0x7a, 0x4a, 0xcb, 0x47, 0xa5, 0x65, 0x00, 0xcd, 0x6a, 0xbb, 0x7e, 0xde, 0x0c, 0x4b, 0x8d, 0xc3, 0x42, 0x0b, 0x07, 0x5a, 0x0e, 0xb4, 0xbc, 0x5d, 0x68, 0xb9, 0xec, 0xd7, 0x94, 0x83, 0x46, 0x97, 0xd6, 0x4b, 0xb1, 0x7f, 0x4c, 0xab, 0x33, 0xbe, 0x0c, 0xa0, 0x09, 0xed, 0xff, 0xfd, 0x43, 0xe9, 0x9f, 0xd0, 0x7f, 0xcf, 0x6c, 0x9e, 0xf1, 0xa0, 0xe2, 0xb2, 0x1c, 0x2e, 0x2b, 0x17, 0xd0, 0xba, 0xa2, 0xde, 0x1d, 0x9b, 0xf1, 0x1e, 0x4b, 0xfd, 0x0e, 0xf5, 0xf8, 0x42, 0xcb, 0x29, 0x57, 0xc5, 0x02, 0xa7, 0xbf, 0x16, 0x28, 0xb4, 0x7c, 0xf2, 0x8f, 0xd9, 0xba, 0xa7, 0x47, 0xe5, 0x87, 0xbf, 0xce, 0x3e, 0xa4, 0xe2, 0x70, 0xc7, 0xa0, 0x9a, 0xa7, 0x0e, 0xae, 0x6f, 0xd6, 0x06, 0xc9, 0xc6, 0x20, 0xf9, 0x30, 0x48, 0xb6, 0x06, 0x61, 0x67, 0x10, 0xf6, 0x06, 0x61, 0x65, 0x11, 0x5e, 0x2d, 0xc2, 0x9b, 0x45, 0x78, 0xb7, 0x08, 0x6b, 0x8b, 0x64, 0x63, 0x91, 0x6c, 0x2d, 0xc2, 0x97, 0x45, 0xb2, 0xb3, 0x08, 0x7b, 0x8b, 0x64, 0xf5, 0x89, 0x24, 0xae, 0xb9, 0xdb, 0x76, 0xbe, 0x03, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x34, 0x83, 0xd1, 0xb3, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/mapdefaults/combos/neither/map.proto000066400000000000000000000047231317075173200254210ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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 = "proto3"; package mapdefaults; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message MapTest { map str_str = 1; } message FakeMap { repeated FakeMapEntry entries = 1; } message FakeMapEntry { string key = 1; string value = 2; string other = 3; } golang-gogoprotobuf-0.5/test/mapdefaults/combos/neither/map_test.go000066400000000000000000000101021317075173200257060ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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. package mapdefaults import ( "testing" "github.com/gogo/protobuf/proto" ) func TestUnmarshalImplicitDefaultKeyValue1(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "foo", Value: "", }, { Key: "", Value: "bar", }, { Key: "as", Value: "df", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 3 { t.Fatal("StrStr map should have 3 key/value pairs") } val, ok := strStr["foo"] if !ok { t.Fatal("\"foo\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"foo\": %s", val) } val, ok = strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "bar" { t.Fatalf("Unexpected value for \"\": %s", val) } val, ok = strStr["as"] if !ok { t.Fatal("\"as\" not found in StrStr map.") } if val != "df" { t.Fatalf("Unexpected value for \"as\": %s", val) } } func TestUnmarshalImplicitDefaultKeyValue2(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "", Value: "", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } // Sanity check if string(serializedMsg) != "\n\x00" { t.Fatal("Serialized bytes mismatched") } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"\": %s", val) } } func TestUnmarshalIgnoreUnknownField(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "key", Value: "value", Other: "other", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := &MapTest{} err = proto.Unmarshal(serializedMsg, msg) if err != nil { var pb proto.Message = msg _, ok := pb.(proto.Unmarshaler) if !ok { // non-codegen implementation returns error when extra tags are // present. return } t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr["key"] if !ok { t.Fatal("\"key\" not found in StrStr map.") } if val != "value" { t.Fatalf("Unexpected value for \"value\": %s", val) } } golang-gogoprotobuf-0.5/test/mapdefaults/combos/neither/mappb_test.go000066400000000000000000000352311317075173200262420ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/map.proto /* Package mapdefaults is a generated protocol buffer package. It is generated from these files: combos/neither/map.proto It has these top-level messages: MapTest FakeMap FakeMapEntry */ package mapdefaults import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMapTestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFakeMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFakeMapEntryProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMapTestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFakeMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFakeMapEntryJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapTestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapTestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapDescription(t *testing.T) { MapDescription() } func TestMapTestVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFakeMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFakeMapEntryVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapTestGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFakeMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFakeMapEntryGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMapTestSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestFakeMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestFakeMapEntrySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestMapTestStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFakeMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFakeMapEntryStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/mapdefaults/combos/unmarshaler/000077500000000000000000000000001317075173200244345ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapdefaults/combos/unmarshaler/map.pb.go000066400000000000000000001431301317075173200261420ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/map.proto /* Package mapdefaults is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/map.proto It has these top-level messages: MapTest FakeMap FakeMapEntry */ package mapdefaults import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapTest struct { StrStr map[string]string `protobuf:"bytes,1,rep,name=str_str,json=strStr" json:"str_str,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MapTest) Reset() { *m = MapTest{} } func (*MapTest) ProtoMessage() {} func (*MapTest) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{0} } type FakeMap struct { Entries []*FakeMapEntry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"` } func (m *FakeMap) Reset() { *m = FakeMap{} } func (*FakeMap) ProtoMessage() {} func (*FakeMap) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{1} } type FakeMapEntry struct { Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` Other string `protobuf:"bytes,3,opt,name=other,proto3" json:"other,omitempty"` } func (m *FakeMapEntry) Reset() { *m = FakeMapEntry{} } func (*FakeMapEntry) ProtoMessage() {} func (*FakeMapEntry) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{2} } func init() { proto.RegisterType((*MapTest)(nil), "mapdefaults.MapTest") proto.RegisterType((*FakeMap)(nil), "mapdefaults.FakeMap") proto.RegisterType((*FakeMapEntry)(nil), "mapdefaults.FakeMapEntry") } func (this *MapTest) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func (this *FakeMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func (this *FakeMapEntry) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return MapDescription() } func MapDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3832 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0x26, 0xfe, 0x48, 0xe0, 0x00, 0x04, 0x97, 0x97, 0xb4, 0x04, 0xd1, 0x36, 0x44, 0xd1, 0x7f, 0xb4, 0xdd, 0x80, 0x19, 0xc9, 0x92, 0x25, 0xa8, 0xb1, 0x0b, 0x82, 0x10, 0x03, 0x95, 0x24, 0x90, 0x05, 0x19, 0xcb, 0xe9, 0xc3, 0xce, 0x72, 0x71, 0x01, 0xae, 0xb4, 0xd8, 0xdd, 0xec, 0x2e, 0x24, 0x53, 0xd3, 0x99, 0xaa, 0xe3, 0xfe, 0x4c, 0xa6, 0xd3, 0xff, 0xce, 0x34, 0x71, 0x1d, 0xb7, 0xcd, 0x4c, 0xeb, 0x34, 0xe9, 0x4f, 0xd2, 0xb4, 0x49, 0xda, 0xa7, 0xbe, 0xa4, 0xf5, 0x53, 0x27, 0x79, 0xeb, 0x43, 0x1f, 0x2c, 0xd6, 0x33, 0x4d, 0x5b, 0xb7, 0x75, 0x1b, 0x3f, 0x64, 0xc6, 0x2f, 0x99, 0xfb, 0xb7, 0xd8, 0x05, 0x40, 0x2d, 0x98, 0x19, 0x3b, 0x4f, 0xe4, 0x9e, 0x7b, 0xbe, 0x6f, 0xcf, 0x3d, 0xf7, 0xdc, 0x73, 0xce, 0xbd, 0x58, 0xf8, 0xea, 0x65, 0x58, 0xee, 0x5a, 0x56, 0xd7, 0xc0, 0x6b, 0xb6, 0x63, 0x79, 0xd6, 0x7e, 0xbf, 0xb3, 0xd6, 0xc6, 0xae, 0xe6, 0xe8, 0xb6, 0x67, 0x39, 0x25, 0x2a, 0x43, 0x73, 0x4c, 0xa3, 0x24, 0x34, 0x56, 0xb6, 0x61, 0xfe, 0x9a, 0x6e, 0xe0, 0x0d, 0x5f, 0xb1, 0x85, 0x3d, 0x74, 0x19, 0x92, 0x1d, 0xdd, 0xc0, 0x85, 0xd8, 0x72, 0x62, 0x35, 0x7b, 0xfe, 0xf1, 0xd2, 0x10, 0xa8, 0x14, 0x46, 0x34, 0x89, 0x58, 0xa6, 0x88, 0x95, 0x77, 0x92, 0xb0, 0x30, 0x66, 0x14, 0x21, 0x48, 0x9a, 0x6a, 0x8f, 0x30, 0xc6, 0x56, 0x33, 0x32, 0xfd, 0x1f, 0x15, 0x60, 0xc6, 0x56, 0xb5, 0x5b, 0x6a, 0x17, 0x17, 0xe2, 0x54, 0x2c, 0x1e, 0x51, 0x11, 0xa0, 0x8d, 0x6d, 0x6c, 0xb6, 0xb1, 0xa9, 0x1d, 0x16, 0x12, 0xcb, 0x89, 0xd5, 0x8c, 0x1c, 0x90, 0xa0, 0x67, 0x61, 0xde, 0xee, 0xef, 0x1b, 0xba, 0xa6, 0x04, 0xd4, 0x60, 0x39, 0xb1, 0x9a, 0x92, 0x25, 0x36, 0xb0, 0x31, 0x50, 0x7e, 0x0a, 0xe6, 0xee, 0x60, 0xf5, 0x56, 0x50, 0x35, 0x4b, 0x55, 0xf3, 0x44, 0x1c, 0x50, 0xac, 0x42, 0xae, 0x87, 0x5d, 0x57, 0xed, 0x62, 0xc5, 0x3b, 0xb4, 0x71, 0x21, 0x49, 0x67, 0xbf, 0x3c, 0x32, 0xfb, 0xe1, 0x99, 0x67, 0x39, 0x6a, 0xf7, 0xd0, 0xc6, 0xa8, 0x02, 0x19, 0x6c, 0xf6, 0x7b, 0x8c, 0x21, 0x75, 0x8c, 0xff, 0x6a, 0x66, 0xbf, 0x37, 0xcc, 0x92, 0x26, 0x30, 0x4e, 0x31, 0xe3, 0x62, 0xe7, 0xb6, 0xae, 0xe1, 0xc2, 0x34, 0x25, 0x78, 0x6a, 0x84, 0xa0, 0xc5, 0xc6, 0x87, 0x39, 0x04, 0x0e, 0x55, 0x21, 0x83, 0x5f, 0xf1, 0xb0, 0xe9, 0xea, 0x96, 0x59, 0x98, 0xa1, 0x24, 0x4f, 0x8c, 0x59, 0x45, 0x6c, 0xb4, 0x87, 0x29, 0x06, 0x38, 0x74, 0x09, 0x66, 0x2c, 0xdb, 0xd3, 0x2d, 0xd3, 0x2d, 0xa4, 0x97, 0x63, 0xab, 0xd9, 0xf3, 0x8f, 0x8c, 0x0d, 0x84, 0x06, 0xd3, 0x91, 0x85, 0x32, 0xaa, 0x83, 0xe4, 0x5a, 0x7d, 0x47, 0xc3, 0x8a, 0x66, 0xb5, 0xb1, 0xa2, 0x9b, 0x1d, 0xab, 0x90, 0xa1, 0x04, 0x67, 0x47, 0x27, 0x42, 0x15, 0xab, 0x56, 0x1b, 0xd7, 0xcd, 0x8e, 0x25, 0xe7, 0xdd, 0xd0, 0x33, 0x3a, 0x05, 0xd3, 0xee, 0xa1, 0xe9, 0xa9, 0xaf, 0x14, 0x72, 0x34, 0x42, 0xf8, 0xd3, 0xca, 0xdf, 0x4d, 0xc3, 0xdc, 0x24, 0x21, 0x76, 0x15, 0x52, 0x1d, 0x32, 0xcb, 0x42, 0xfc, 0x24, 0x3e, 0x60, 0x98, 0xb0, 0x13, 0xa7, 0x7f, 0x4c, 0x27, 0x56, 0x20, 0x6b, 0x62, 0xd7, 0xc3, 0x6d, 0x16, 0x11, 0x89, 0x09, 0x63, 0x0a, 0x18, 0x68, 0x34, 0xa4, 0x92, 0x3f, 0x56, 0x48, 0xdd, 0x80, 0x39, 0xdf, 0x24, 0xc5, 0x51, 0xcd, 0xae, 0x88, 0xcd, 0xb5, 0x28, 0x4b, 0x4a, 0x35, 0x81, 0x93, 0x09, 0x4c, 0xce, 0xe3, 0xd0, 0x33, 0xda, 0x00, 0xb0, 0x4c, 0x6c, 0x75, 0x94, 0x36, 0xd6, 0x8c, 0x42, 0xfa, 0x18, 0x2f, 0x35, 0x88, 0xca, 0x88, 0x97, 0x2c, 0x26, 0xd5, 0x0c, 0x74, 0x65, 0x10, 0x6a, 0x33, 0xc7, 0x44, 0xca, 0x36, 0xdb, 0x64, 0x23, 0xd1, 0xb6, 0x07, 0x79, 0x07, 0x93, 0xb8, 0xc7, 0x6d, 0x3e, 0xb3, 0x0c, 0x35, 0xa2, 0x14, 0x39, 0x33, 0x99, 0xc3, 0xd8, 0xc4, 0x66, 0x9d, 0xe0, 0x23, 0x7a, 0x0c, 0x7c, 0x81, 0x42, 0xc3, 0x0a, 0x68, 0x16, 0xca, 0x09, 0xe1, 0x8e, 0xda, 0xc3, 0x4b, 0x77, 0x21, 0x1f, 0x76, 0x0f, 0x5a, 0x84, 0x94, 0xeb, 0xa9, 0x8e, 0x47, 0xa3, 0x30, 0x25, 0xb3, 0x07, 0x24, 0x41, 0x02, 0x9b, 0x6d, 0x9a, 0xe5, 0x52, 0x32, 0xf9, 0x17, 0xfd, 0xcc, 0x60, 0xc2, 0x09, 0x3a, 0xe1, 0x27, 0x47, 0x57, 0x34, 0xc4, 0x3c, 0x3c, 0xef, 0xa5, 0xe7, 0x61, 0x36, 0x34, 0x81, 0x49, 0x5f, 0xbd, 0xf2, 0xf3, 0xf0, 0xd0, 0x58, 0x6a, 0x74, 0x03, 0x16, 0xfb, 0xa6, 0x6e, 0x7a, 0xd8, 0xb1, 0x1d, 0x4c, 0x22, 0x96, 0xbd, 0xaa, 0xf0, 0xef, 0x33, 0xc7, 0xc4, 0xdc, 0x5e, 0x50, 0x9b, 0xb1, 0xc8, 0x0b, 0xfd, 0x51, 0xe1, 0x33, 0x99, 0xf4, 0xf7, 0x67, 0xa4, 0x7b, 0xf7, 0xee, 0xdd, 0x8b, 0xaf, 0x7c, 0x7e, 0x1a, 0x16, 0xc7, 0xed, 0x99, 0xb1, 0xdb, 0xf7, 0x14, 0x4c, 0x9b, 0xfd, 0xde, 0x3e, 0x76, 0xa8, 0x93, 0x52, 0x32, 0x7f, 0x42, 0x15, 0x48, 0x19, 0xea, 0x3e, 0x36, 0x0a, 0xc9, 0xe5, 0xd8, 0x6a, 0xfe, 0xfc, 0xb3, 0x13, 0xed, 0xca, 0xd2, 0x16, 0x81, 0xc8, 0x0c, 0x89, 0x5e, 0x80, 0x24, 0x4f, 0xd1, 0x84, 0xe1, 0x99, 0xc9, 0x18, 0xc8, 0x5e, 0x92, 0x29, 0x0e, 0x3d, 0x0c, 0x19, 0xf2, 0x97, 0xc5, 0xc6, 0x34, 0xb5, 0x39, 0x4d, 0x04, 0x24, 0x2e, 0xd0, 0x12, 0xa4, 0xe9, 0x36, 0x69, 0x63, 0x51, 0xda, 0xfc, 0x67, 0x12, 0x58, 0x6d, 0xdc, 0x51, 0xfb, 0x86, 0xa7, 0xdc, 0x56, 0x8d, 0x3e, 0xa6, 0x01, 0x9f, 0x91, 0x73, 0x5c, 0xf8, 0x69, 0x22, 0x43, 0x67, 0x21, 0xcb, 0x76, 0x95, 0x6e, 0xb6, 0xf1, 0x2b, 0x34, 0x7b, 0xa6, 0x64, 0xb6, 0xd1, 0xea, 0x44, 0x42, 0x5e, 0x7f, 0xd3, 0xb5, 0x4c, 0x11, 0x9a, 0xf4, 0x15, 0x44, 0x40, 0x5f, 0xff, 0xfc, 0x70, 0xe2, 0x7e, 0x74, 0xfc, 0xf4, 0x86, 0x63, 0x6a, 0xe5, 0x9b, 0x71, 0x48, 0xd2, 0x7c, 0x31, 0x07, 0xd9, 0xdd, 0x97, 0x9b, 0x35, 0x65, 0xa3, 0xb1, 0xb7, 0xbe, 0x55, 0x93, 0x62, 0x28, 0x0f, 0x40, 0x05, 0xd7, 0xb6, 0x1a, 0x95, 0x5d, 0x29, 0xee, 0x3f, 0xd7, 0x77, 0x76, 0x2f, 0x3d, 0x27, 0x25, 0x7c, 0xc0, 0x1e, 0x13, 0x24, 0x83, 0x0a, 0x17, 0xce, 0x4b, 0x29, 0x24, 0x41, 0x8e, 0x11, 0xd4, 0x6f, 0xd4, 0x36, 0x2e, 0x3d, 0x27, 0x4d, 0x87, 0x25, 0x17, 0xce, 0x4b, 0x33, 0x68, 0x16, 0x32, 0x54, 0xb2, 0xde, 0x68, 0x6c, 0x49, 0x69, 0x9f, 0xb3, 0xb5, 0x2b, 0xd7, 0x77, 0x36, 0xa5, 0x8c, 0xcf, 0xb9, 0x29, 0x37, 0xf6, 0x9a, 0x12, 0xf8, 0x0c, 0xdb, 0xb5, 0x56, 0xab, 0xb2, 0x59, 0x93, 0xb2, 0xbe, 0xc6, 0xfa, 0xcb, 0xbb, 0xb5, 0x96, 0x94, 0x0b, 0x99, 0x75, 0xe1, 0xbc, 0x34, 0xeb, 0xbf, 0xa2, 0xb6, 0xb3, 0xb7, 0x2d, 0xe5, 0xd1, 0x3c, 0xcc, 0xb2, 0x57, 0x08, 0x23, 0xe6, 0x86, 0x44, 0x97, 0x9e, 0x93, 0xa4, 0x81, 0x21, 0x8c, 0x65, 0x3e, 0x24, 0xb8, 0xf4, 0x9c, 0x84, 0x56, 0xaa, 0x90, 0xa2, 0xd1, 0x85, 0x10, 0xe4, 0xb7, 0x2a, 0xeb, 0xb5, 0x2d, 0xa5, 0xd1, 0xdc, 0xad, 0x37, 0x76, 0x2a, 0x5b, 0x52, 0x6c, 0x20, 0x93, 0x6b, 0x9f, 0xda, 0xab, 0xcb, 0xb5, 0x0d, 0x29, 0x1e, 0x94, 0x35, 0x6b, 0x95, 0xdd, 0xda, 0x86, 0x94, 0x58, 0xd1, 0x60, 0x71, 0x5c, 0x9e, 0x1c, 0xbb, 0x33, 0x02, 0x4b, 0x1c, 0x3f, 0x66, 0x89, 0x29, 0xd7, 0xc8, 0x12, 0x7f, 0x29, 0x06, 0x0b, 0x63, 0x6a, 0xc5, 0xd8, 0x97, 0xbc, 0x08, 0x29, 0x16, 0xa2, 0xac, 0x7a, 0x3e, 0x3d, 0xb6, 0xe8, 0xd0, 0x80, 0x1d, 0xa9, 0xa0, 0x14, 0x17, 0xec, 0x20, 0x12, 0xc7, 0x74, 0x10, 0x84, 0x62, 0xc4, 0xc8, 0x57, 0x63, 0x50, 0x38, 0x8e, 0x3b, 0x22, 0x51, 0xc4, 0x43, 0x89, 0xe2, 0xea, 0xb0, 0x01, 0xe7, 0x8e, 0x9f, 0xc3, 0x88, 0x15, 0x6f, 0xc6, 0xe0, 0xd4, 0xf8, 0x46, 0x6b, 0xac, 0x0d, 0x2f, 0xc0, 0x74, 0x0f, 0x7b, 0x07, 0x96, 0x68, 0x36, 0x9e, 0x1c, 0x53, 0xc2, 0xc8, 0xf0, 0xb0, 0xaf, 0x38, 0x2a, 0x58, 0x03, 0x13, 0xc7, 0x75, 0x4b, 0xcc, 0x9a, 0x11, 0x4b, 0x3f, 0x17, 0x87, 0x87, 0xc6, 0x92, 0x8f, 0x35, 0xf4, 0x51, 0x00, 0xdd, 0xb4, 0xfb, 0x1e, 0x6b, 0x28, 0x58, 0x7e, 0xca, 0x50, 0x09, 0xdd, 0xfb, 0x24, 0xf7, 0xf4, 0x3d, 0x7f, 0x3c, 0x41, 0xc7, 0x81, 0x89, 0xa8, 0xc2, 0xe5, 0x81, 0xa1, 0x49, 0x6a, 0x68, 0xf1, 0x98, 0x99, 0x8e, 0xd4, 0xea, 0x8f, 0x83, 0xa4, 0x19, 0x3a, 0x36, 0x3d, 0xc5, 0xf5, 0x1c, 0xac, 0xf6, 0x74, 0xb3, 0x4b, 0x13, 0x70, 0xba, 0x9c, 0xea, 0xa8, 0x86, 0x8b, 0xe5, 0x39, 0x36, 0xdc, 0x12, 0xa3, 0x04, 0x41, 0x6b, 0x9c, 0x13, 0x40, 0x4c, 0x87, 0x10, 0x6c, 0xd8, 0x47, 0xac, 0x7c, 0x23, 0x0d, 0xd9, 0x40, 0x5b, 0x8a, 0xce, 0x41, 0xee, 0xa6, 0x7a, 0x5b, 0x55, 0xc4, 0x51, 0x83, 0x79, 0x22, 0x4b, 0x64, 0x4d, 0x7e, 0xdc, 0xf8, 0x38, 0x2c, 0x52, 0x15, 0xab, 0xef, 0x61, 0x47, 0xd1, 0x0c, 0xd5, 0x75, 0xa9, 0xd3, 0xd2, 0x54, 0x15, 0x91, 0xb1, 0x06, 0x19, 0xaa, 0x8a, 0x11, 0x74, 0x11, 0x16, 0x28, 0xa2, 0xd7, 0x37, 0x3c, 0xdd, 0x36, 0xb0, 0x42, 0x0e, 0x3f, 0x2e, 0x4d, 0xc4, 0xbe, 0x65, 0xf3, 0x44, 0x63, 0x9b, 0x2b, 0x10, 0x8b, 0x5c, 0xb4, 0x01, 0x8f, 0x52, 0x58, 0x17, 0x9b, 0xd8, 0x51, 0x3d, 0xac, 0xe0, 0xcf, 0xf6, 0x55, 0xc3, 0x55, 0x54, 0xb3, 0xad, 0x1c, 0xa8, 0xee, 0x41, 0x61, 0x91, 0x10, 0xac, 0xc7, 0x0b, 0x31, 0xf9, 0x0c, 0x51, 0xdc, 0xe4, 0x7a, 0x35, 0xaa, 0x56, 0x31, 0xdb, 0x9f, 0x54, 0xdd, 0x03, 0x54, 0x86, 0x53, 0x94, 0xc5, 0xf5, 0x1c, 0xdd, 0xec, 0x2a, 0xda, 0x01, 0xd6, 0x6e, 0x29, 0x7d, 0xaf, 0x73, 0xb9, 0xf0, 0x70, 0xf0, 0xfd, 0xd4, 0xc2, 0x16, 0xd5, 0xa9, 0x12, 0x95, 0x3d, 0xaf, 0x73, 0x19, 0xb5, 0x20, 0x47, 0x16, 0xa3, 0xa7, 0xdf, 0xc5, 0x4a, 0xc7, 0x72, 0x68, 0x65, 0xc9, 0x8f, 0xd9, 0xd9, 0x01, 0x0f, 0x96, 0x1a, 0x1c, 0xb0, 0x6d, 0xb5, 0x71, 0x39, 0xd5, 0x6a, 0xd6, 0x6a, 0x1b, 0x72, 0x56, 0xb0, 0x5c, 0xb3, 0x1c, 0x12, 0x50, 0x5d, 0xcb, 0x77, 0x70, 0x96, 0x05, 0x54, 0xd7, 0x12, 0xee, 0xbd, 0x08, 0x0b, 0x9a, 0xc6, 0xe6, 0xac, 0x6b, 0x0a, 0x3f, 0xa2, 0xb8, 0x05, 0x29, 0xe4, 0x2c, 0x4d, 0xdb, 0x64, 0x0a, 0x3c, 0xc6, 0x5d, 0x74, 0x05, 0x1e, 0x1a, 0x38, 0x2b, 0x08, 0x9c, 0x1f, 0x99, 0xe5, 0x30, 0xf4, 0x22, 0x2c, 0xd8, 0x87, 0xa3, 0x40, 0x14, 0x7a, 0xa3, 0x7d, 0x38, 0x0c, 0x7b, 0x1e, 0x16, 0xed, 0x03, 0x7b, 0x14, 0xb7, 0x10, 0xc4, 0x21, 0xfb, 0xc0, 0x1e, 0x06, 0x3e, 0x41, 0xcf, 0xab, 0x0e, 0xd6, 0x54, 0x0f, 0xb7, 0x0b, 0xa7, 0x83, 0xea, 0x81, 0x01, 0xb4, 0x06, 0x92, 0xa6, 0x29, 0xd8, 0x54, 0xf7, 0x0d, 0xac, 0xa8, 0x0e, 0x36, 0x55, 0xb7, 0x70, 0x36, 0xa8, 0x9c, 0xd7, 0xb4, 0x1a, 0x1d, 0xad, 0xd0, 0x41, 0xf4, 0x0c, 0xcc, 0x5b, 0xfb, 0x37, 0x35, 0x16, 0x92, 0x8a, 0xed, 0xe0, 0x8e, 0xfe, 0x4a, 0xe1, 0x71, 0xea, 0xdf, 0x39, 0x32, 0x40, 0x03, 0xb2, 0x49, 0xc5, 0xe8, 0x69, 0x90, 0x34, 0xf7, 0x40, 0x75, 0x6c, 0xda, 0x13, 0xb8, 0xb6, 0xaa, 0xe1, 0xc2, 0x13, 0x4c, 0x95, 0xc9, 0x77, 0x84, 0x98, 0x6c, 0x09, 0xf7, 0x8e, 0xde, 0xf1, 0x04, 0xe3, 0x53, 0x6c, 0x4b, 0x50, 0x19, 0x67, 0x5b, 0x05, 0x89, 0xb8, 0x22, 0xf4, 0xe2, 0x55, 0xaa, 0x96, 0xb7, 0x0f, 0xec, 0xe0, 0x7b, 0x1f, 0x83, 0x59, 0xa2, 0x39, 0x78, 0xe9, 0xd3, 0xac, 0x9f, 0xb1, 0x0f, 0x02, 0x6f, 0xfc, 0xd0, 0x5a, 0xcb, 0x95, 0x32, 0xe4, 0x82, 0xf1, 0x89, 0x32, 0xc0, 0x22, 0x54, 0x8a, 0x91, 0x5a, 0x5f, 0x6d, 0x6c, 0x90, 0x2a, 0xfd, 0x99, 0x9a, 0x14, 0x27, 0xdd, 0xc2, 0x56, 0x7d, 0xb7, 0xa6, 0xc8, 0x7b, 0x3b, 0xbb, 0xf5, 0xed, 0x9a, 0x94, 0x08, 0xb6, 0xa5, 0xdf, 0x89, 0x43, 0x3e, 0x7c, 0xc2, 0x40, 0x3f, 0x0d, 0xa7, 0xc5, 0x75, 0x80, 0x8b, 0x3d, 0xe5, 0x8e, 0xee, 0xd0, 0x2d, 0xd3, 0x53, 0x59, 0x87, 0xed, 0x2f, 0xda, 0x22, 0xd7, 0x6a, 0x61, 0xef, 0x25, 0xdd, 0x21, 0x1b, 0xa2, 0xa7, 0x7a, 0x68, 0x0b, 0xce, 0x9a, 0x96, 0xe2, 0x7a, 0xaa, 0xd9, 0x56, 0x9d, 0xb6, 0x32, 0xb8, 0x88, 0x51, 0x54, 0x4d, 0xc3, 0xae, 0x6b, 0xb1, 0x52, 0xe5, 0xb3, 0x3c, 0x62, 0x5a, 0x2d, 0xae, 0x3c, 0xc8, 0xe1, 0x15, 0xae, 0x3a, 0x14, 0x60, 0x89, 0xe3, 0x02, 0xec, 0x61, 0xc8, 0xf4, 0x54, 0x5b, 0xc1, 0xa6, 0xe7, 0x1c, 0xd2, 0xbe, 0x32, 0x2d, 0xa7, 0x7b, 0xaa, 0x5d, 0x23, 0xcf, 0x1f, 0x4d, 0x7b, 0xff, 0xaf, 0x09, 0xc8, 0x05, 0x7b, 0x4b, 0xd2, 0xaa, 0x6b, 0xb4, 0x8e, 0xc4, 0x68, 0xa6, 0x79, 0xec, 0x81, 0x9d, 0x68, 0xa9, 0x4a, 0x0a, 0x4c, 0x79, 0x9a, 0x75, 0x7c, 0x32, 0x43, 0x92, 0xe2, 0x4e, 0x72, 0x0b, 0x66, 0xa7, 0x98, 0xb4, 0xcc, 0x9f, 0xd0, 0x26, 0x4c, 0xdf, 0x74, 0x29, 0xf7, 0x34, 0xe5, 0x7e, 0xfc, 0xc1, 0xdc, 0xd7, 0x5b, 0x94, 0x3c, 0x73, 0xbd, 0xa5, 0xec, 0x34, 0xe4, 0xed, 0xca, 0x96, 0xcc, 0xe1, 0xe8, 0x0c, 0x24, 0x0d, 0xf5, 0xee, 0x61, 0xb8, 0x14, 0x51, 0xd1, 0xa4, 0x8e, 0x3f, 0x03, 0xc9, 0x3b, 0x58, 0xbd, 0x15, 0x2e, 0x00, 0x54, 0xf4, 0x21, 0x86, 0xfe, 0x1a, 0xa4, 0xa8, 0xbf, 0x10, 0x00, 0xf7, 0x98, 0x34, 0x85, 0xd2, 0x90, 0xac, 0x36, 0x64, 0x12, 0xfe, 0x12, 0xe4, 0x98, 0x54, 0x69, 0xd6, 0x6b, 0xd5, 0x9a, 0x14, 0x5f, 0xb9, 0x08, 0xd3, 0xcc, 0x09, 0x64, 0x6b, 0xf8, 0x6e, 0x90, 0xa6, 0xf8, 0x23, 0xe7, 0x88, 0x89, 0xd1, 0xbd, 0xed, 0xf5, 0x9a, 0x2c, 0xc5, 0x83, 0xcb, 0xeb, 0x42, 0x2e, 0xd8, 0x56, 0x7e, 0x34, 0x31, 0xf5, 0xf7, 0x31, 0xc8, 0x06, 0xda, 0x44, 0xd2, 0xa0, 0xa8, 0x86, 0x61, 0xdd, 0x51, 0x54, 0x43, 0x57, 0x5d, 0x1e, 0x14, 0x40, 0x45, 0x15, 0x22, 0x99, 0x74, 0xd1, 0x3e, 0x12, 0xe3, 0xdf, 0x88, 0x81, 0x34, 0xdc, 0x62, 0x0e, 0x19, 0x18, 0xfb, 0x89, 0x1a, 0xf8, 0x7a, 0x0c, 0xf2, 0xe1, 0xbe, 0x72, 0xc8, 0xbc, 0x73, 0x3f, 0x51, 0xf3, 0xde, 0x8e, 0xc3, 0x6c, 0xa8, 0x9b, 0x9c, 0xd4, 0xba, 0xcf, 0xc2, 0xbc, 0xde, 0xc6, 0x3d, 0xdb, 0xf2, 0xb0, 0xa9, 0x1d, 0x2a, 0x06, 0xbe, 0x8d, 0x8d, 0xc2, 0x0a, 0x4d, 0x14, 0x6b, 0x0f, 0xee, 0x57, 0x4b, 0xf5, 0x01, 0x6e, 0x8b, 0xc0, 0xca, 0x0b, 0xf5, 0x8d, 0xda, 0x76, 0xb3, 0xb1, 0x5b, 0xdb, 0xa9, 0xbe, 0xac, 0xec, 0xed, 0xfc, 0xec, 0x4e, 0xe3, 0xa5, 0x1d, 0x59, 0xd2, 0x87, 0xd4, 0x3e, 0xc4, 0xad, 0xde, 0x04, 0x69, 0xd8, 0x28, 0x74, 0x1a, 0xc6, 0x99, 0x25, 0x4d, 0xa1, 0x05, 0x98, 0xdb, 0x69, 0x28, 0xad, 0xfa, 0x46, 0x4d, 0xa9, 0x5d, 0xbb, 0x56, 0xab, 0xee, 0xb6, 0xd8, 0x01, 0xde, 0xd7, 0xde, 0x0d, 0x6f, 0xea, 0xd7, 0x12, 0xb0, 0x30, 0xc6, 0x12, 0x54, 0xe1, 0x67, 0x07, 0x76, 0x9c, 0xf9, 0xd8, 0x24, 0xd6, 0x97, 0x48, 0xc9, 0x6f, 0xaa, 0x8e, 0xc7, 0x8f, 0x1a, 0x4f, 0x03, 0xf1, 0x92, 0xe9, 0xe9, 0x1d, 0x1d, 0x3b, 0xfc, 0xbe, 0x83, 0x1d, 0x28, 0xe6, 0x06, 0x72, 0x76, 0xe5, 0xf1, 0x53, 0x80, 0x6c, 0xcb, 0xd5, 0x3d, 0xfd, 0x36, 0x56, 0x74, 0x53, 0x5c, 0x8e, 0x90, 0x03, 0x46, 0x52, 0x96, 0xc4, 0x48, 0xdd, 0xf4, 0x7c, 0x6d, 0x13, 0x77, 0xd5, 0x21, 0x6d, 0x92, 0xc0, 0x13, 0xb2, 0x24, 0x46, 0x7c, 0xed, 0x73, 0x90, 0x6b, 0x5b, 0x7d, 0xd2, 0x75, 0x31, 0x3d, 0x52, 0x2f, 0x62, 0x72, 0x96, 0xc9, 0x7c, 0x15, 0xde, 0x4f, 0x0f, 0x6e, 0x65, 0x72, 0x72, 0x96, 0xc9, 0x98, 0xca, 0x53, 0x30, 0xa7, 0x76, 0xbb, 0x0e, 0x21, 0x17, 0x44, 0xec, 0x84, 0x90, 0xf7, 0xc5, 0x54, 0x71, 0xe9, 0x3a, 0xa4, 0x85, 0x1f, 0x48, 0x49, 0x26, 0x9e, 0x50, 0x6c, 0x76, 0x33, 0x17, 0x5f, 0xcd, 0xc8, 0x69, 0x53, 0x0c, 0x9e, 0x83, 0x9c, 0xee, 0x2a, 0x83, 0x4b, 0xe6, 0xf8, 0x72, 0x7c, 0x35, 0x2d, 0x67, 0x75, 0xd7, 0xbf, 0xa0, 0x5b, 0x79, 0x33, 0x0e, 0xf9, 0xf0, 0x25, 0x39, 0xda, 0x80, 0xb4, 0x61, 0x69, 0x2a, 0x0d, 0x2d, 0xf6, 0x0b, 0xcd, 0x6a, 0xc4, 0xbd, 0x7a, 0x69, 0x8b, 0xeb, 0xcb, 0x3e, 0x72, 0xe9, 0x9f, 0x63, 0x90, 0x16, 0x62, 0x74, 0x0a, 0x92, 0xb6, 0xea, 0x1d, 0x50, 0xba, 0xd4, 0x7a, 0x5c, 0x8a, 0xc9, 0xf4, 0x99, 0xc8, 0x5d, 0x5b, 0x35, 0x69, 0x08, 0x70, 0x39, 0x79, 0x26, 0xeb, 0x6a, 0x60, 0xb5, 0x4d, 0x8f, 0x1f, 0x56, 0xaf, 0x87, 0x4d, 0xcf, 0x15, 0xeb, 0xca, 0xe5, 0x55, 0x2e, 0x46, 0xcf, 0xc2, 0xbc, 0xe7, 0xa8, 0xba, 0x11, 0xd2, 0x4d, 0x52, 0x5d, 0x49, 0x0c, 0xf8, 0xca, 0x65, 0x38, 0x23, 0x78, 0xdb, 0xd8, 0x53, 0xb5, 0x03, 0xdc, 0x1e, 0x80, 0xa6, 0xe9, 0x0d, 0xec, 0x69, 0xae, 0xb0, 0xc1, 0xc7, 0x05, 0x76, 0xe5, 0x7b, 0x31, 0x98, 0x17, 0x07, 0xa6, 0xb6, 0xef, 0xac, 0x6d, 0x00, 0xd5, 0x34, 0x2d, 0x2f, 0xe8, 0xae, 0xd1, 0x50, 0x1e, 0xc1, 0x95, 0x2a, 0x3e, 0x48, 0x0e, 0x10, 0x2c, 0xf5, 0x00, 0x06, 0x23, 0xc7, 0xba, 0xed, 0x2c, 0x64, 0xf9, 0x2f, 0x20, 0xf4, 0x67, 0x34, 0x76, 0xc4, 0x06, 0x26, 0x22, 0x27, 0x2b, 0xb4, 0x08, 0xa9, 0x7d, 0xdc, 0xd5, 0x4d, 0x7e, 0xaf, 0xc9, 0x1e, 0xc4, 0x5d, 0x6d, 0xd2, 0xbf, 0xab, 0x5d, 0xbf, 0x01, 0x0b, 0x9a, 0xd5, 0x1b, 0x36, 0x77, 0x5d, 0x1a, 0x3a, 0xe6, 0xbb, 0x9f, 0x8c, 0x7d, 0x06, 0x06, 0x2d, 0xe6, 0x97, 0xe2, 0x89, 0xcd, 0xe6, 0xfa, 0x57, 0xe2, 0x4b, 0x9b, 0x0c, 0xd7, 0x14, 0xd3, 0x94, 0x71, 0xc7, 0xc0, 0x1a, 0x31, 0x1d, 0x7e, 0xf0, 0x24, 0x7c, 0xac, 0xab, 0x7b, 0x07, 0xfd, 0xfd, 0x92, 0x66, 0xf5, 0xd6, 0xba, 0x56, 0xd7, 0x1a, 0xfc, 0x6c, 0x48, 0x9e, 0xe8, 0x03, 0xfd, 0x8f, 0xff, 0x74, 0x98, 0xf1, 0xa5, 0x4b, 0x91, 0xbf, 0x33, 0x96, 0x77, 0x60, 0x81, 0x2b, 0x2b, 0xf4, 0xb7, 0x0b, 0x76, 0x84, 0x40, 0x0f, 0xbc, 0xff, 0x29, 0x7c, 0xfd, 0x1d, 0x5a, 0xab, 0xe5, 0x79, 0x0e, 0x25, 0x63, 0xec, 0x94, 0x51, 0x96, 0xe1, 0xa1, 0x10, 0x1f, 0xdb, 0x97, 0xd8, 0x89, 0x60, 0xfc, 0x0e, 0x67, 0x5c, 0x08, 0x30, 0xb6, 0x38, 0xb4, 0x5c, 0x85, 0xd9, 0x93, 0x70, 0xfd, 0x23, 0xe7, 0xca, 0xe1, 0x20, 0xc9, 0x26, 0xcc, 0x51, 0x12, 0xad, 0xef, 0x7a, 0x56, 0x8f, 0x26, 0xbd, 0x07, 0xd3, 0xfc, 0xd3, 0x3b, 0x6c, 0xa3, 0xe4, 0x09, 0xac, 0xea, 0xa3, 0xca, 0x65, 0xa0, 0x3f, 0xd7, 0xb4, 0xb1, 0x66, 0x44, 0x30, 0xbc, 0xc5, 0x0d, 0xf1, 0xf5, 0xcb, 0x9f, 0x86, 0x45, 0xf2, 0x3f, 0xcd, 0x49, 0x41, 0x4b, 0xa2, 0x6f, 0xbb, 0x0a, 0xdf, 0x7b, 0x95, 0xed, 0xc5, 0x05, 0x9f, 0x20, 0x60, 0x53, 0x60, 0x15, 0xbb, 0xd8, 0xf3, 0xb0, 0xe3, 0x2a, 0xaa, 0x31, 0xce, 0xbc, 0xc0, 0x75, 0x41, 0xe1, 0x0b, 0xef, 0x86, 0x57, 0x71, 0x93, 0x21, 0x2b, 0x86, 0x51, 0xde, 0x83, 0xd3, 0x63, 0xa2, 0x62, 0x02, 0xce, 0xd7, 0x38, 0xe7, 0xe2, 0x48, 0x64, 0x10, 0xda, 0x26, 0x08, 0xb9, 0xbf, 0x96, 0x13, 0x70, 0xfe, 0x01, 0xe7, 0x44, 0x1c, 0x2b, 0x96, 0x94, 0x30, 0x5e, 0x87, 0xf9, 0xdb, 0xd8, 0xd9, 0xb7, 0x5c, 0x7e, 0x45, 0x33, 0x01, 0xdd, 0xeb, 0x9c, 0x6e, 0x8e, 0x03, 0xe9, 0x9d, 0x0d, 0xe1, 0xba, 0x02, 0xe9, 0x8e, 0xaa, 0xe1, 0x09, 0x28, 0xbe, 0xc8, 0x29, 0x66, 0x88, 0x3e, 0x81, 0x56, 0x20, 0xd7, 0xb5, 0x78, 0x59, 0x8a, 0x86, 0xbf, 0xc1, 0xe1, 0x59, 0x81, 0xe1, 0x14, 0xb6, 0x65, 0xf7, 0x0d, 0x52, 0xb3, 0xa2, 0x29, 0xfe, 0x50, 0x50, 0x08, 0x0c, 0xa7, 0x38, 0x81, 0x5b, 0xff, 0x48, 0x50, 0xb8, 0x01, 0x7f, 0xbe, 0x08, 0x59, 0xcb, 0x34, 0x0e, 0x2d, 0x73, 0x12, 0x23, 0xfe, 0x98, 0x33, 0x00, 0x87, 0x10, 0x82, 0xab, 0x90, 0x99, 0x74, 0x21, 0xfe, 0xe4, 0x5d, 0xb1, 0x3d, 0xc4, 0x0a, 0x6c, 0xc2, 0x9c, 0x48, 0x50, 0xba, 0x65, 0x4e, 0x40, 0xf1, 0xa7, 0x9c, 0x22, 0x1f, 0x80, 0xf1, 0x69, 0x78, 0xd8, 0xf5, 0xba, 0x78, 0x12, 0x92, 0x37, 0xc5, 0x34, 0x38, 0x84, 0xbb, 0x72, 0x1f, 0x9b, 0xda, 0xc1, 0x64, 0x0c, 0x5f, 0x16, 0xae, 0x14, 0x18, 0x42, 0x51, 0x85, 0xd9, 0x9e, 0xea, 0xb8, 0x07, 0xaa, 0x31, 0xd1, 0x72, 0xfc, 0x19, 0xe7, 0xc8, 0xf9, 0x20, 0xee, 0x91, 0xbe, 0x79, 0x12, 0x9a, 0xaf, 0x08, 0x8f, 0x04, 0x60, 0x7c, 0xeb, 0xb9, 0x1e, 0xbd, 0xcf, 0x3a, 0x09, 0xdb, 0x57, 0xc5, 0xd6, 0x63, 0xd8, 0xed, 0x20, 0xe3, 0x55, 0xc8, 0xb8, 0xfa, 0xdd, 0x89, 0x68, 0xfe, 0x5c, 0xac, 0x34, 0x05, 0x10, 0xf0, 0xcb, 0x70, 0x66, 0x6c, 0x99, 0x98, 0x80, 0xec, 0x2f, 0x38, 0xd9, 0xa9, 0x31, 0xa5, 0x82, 0xa7, 0x84, 0x93, 0x52, 0xfe, 0xa5, 0x48, 0x09, 0x78, 0x88, 0xab, 0x49, 0x0e, 0x0a, 0xae, 0xda, 0x39, 0x99, 0xd7, 0xfe, 0x4a, 0x78, 0x8d, 0x61, 0x43, 0x5e, 0xdb, 0x85, 0x53, 0x9c, 0xf1, 0x64, 0xeb, 0xfa, 0x35, 0x91, 0x58, 0x19, 0x7a, 0x2f, 0xbc, 0xba, 0x3f, 0x07, 0x4b, 0xbe, 0x3b, 0x45, 0x47, 0xea, 0x2a, 0x3d, 0xd5, 0x9e, 0x80, 0xf9, 0xeb, 0x9c, 0x59, 0x64, 0x7c, 0xbf, 0xa5, 0x75, 0xb7, 0x55, 0x9b, 0x90, 0xdf, 0x80, 0x82, 0x20, 0xef, 0x9b, 0x0e, 0xd6, 0xac, 0xae, 0xa9, 0xdf, 0xc5, 0xed, 0x09, 0xa8, 0xff, 0x7a, 0x68, 0xa9, 0xf6, 0x02, 0x70, 0xc2, 0x5c, 0x07, 0xc9, 0xef, 0x55, 0x14, 0xbd, 0x67, 0x5b, 0x8e, 0x17, 0xc1, 0xf8, 0x0d, 0xb1, 0x52, 0x3e, 0xae, 0x4e, 0x61, 0xe5, 0x1a, 0xe4, 0xe9, 0xe3, 0xa4, 0x21, 0xf9, 0x37, 0x9c, 0x68, 0x76, 0x80, 0xe2, 0x89, 0x43, 0xb3, 0x7a, 0xb6, 0xea, 0x4c, 0x92, 0xff, 0xfe, 0x56, 0x24, 0x0e, 0x0e, 0xe1, 0x89, 0xc3, 0x3b, 0xb4, 0x31, 0xa9, 0xf6, 0x13, 0x30, 0x7c, 0x53, 0x24, 0x0e, 0x81, 0xe1, 0x14, 0xa2, 0x61, 0x98, 0x80, 0xe2, 0x5b, 0x82, 0x42, 0x60, 0x08, 0xc5, 0xa7, 0x06, 0x85, 0xd6, 0xc1, 0x5d, 0xdd, 0xf5, 0x1c, 0xd6, 0x07, 0x3f, 0x98, 0xea, 0xdb, 0xef, 0x86, 0x9b, 0x30, 0x39, 0x00, 0x2d, 0x5f, 0x87, 0xb9, 0xa1, 0x16, 0x03, 0x45, 0x7d, 0xfb, 0x51, 0xf8, 0xc5, 0xf7, 0x79, 0x32, 0x0a, 0x77, 0x18, 0xe5, 0x2d, 0xb2, 0xee, 0xe1, 0x3e, 0x20, 0x9a, 0xec, 0xd5, 0xf7, 0xfd, 0xa5, 0x0f, 0xb5, 0x01, 0xe5, 0x6b, 0x30, 0x1b, 0xea, 0x01, 0xa2, 0xa9, 0x7e, 0x89, 0x53, 0xe5, 0x82, 0x2d, 0x40, 0xf9, 0x22, 0x24, 0x49, 0x3d, 0x8f, 0x86, 0xff, 0x32, 0x87, 0x53, 0xf5, 0xf2, 0x27, 0x20, 0x2d, 0xea, 0x78, 0x34, 0xf4, 0x57, 0x38, 0xd4, 0x87, 0x10, 0xb8, 0xa8, 0xe1, 0xd1, 0xf0, 0x5f, 0x15, 0x70, 0x01, 0x21, 0xf0, 0xc9, 0x5d, 0xf8, 0x0f, 0xbf, 0x96, 0xe4, 0x79, 0x58, 0xf8, 0xee, 0x2a, 0xcc, 0xf0, 0xe2, 0x1d, 0x8d, 0xfe, 0x1c, 0x7f, 0xb9, 0x40, 0x94, 0x9f, 0x87, 0xd4, 0x84, 0x0e, 0xff, 0x75, 0x0e, 0x65, 0xfa, 0xe5, 0x2a, 0x64, 0x03, 0x05, 0x3b, 0x1a, 0xfe, 0x1b, 0x1c, 0x1e, 0x44, 0x11, 0xd3, 0x79, 0xc1, 0x8e, 0x26, 0xf8, 0x4d, 0x61, 0x3a, 0x47, 0x10, 0xb7, 0x89, 0x5a, 0x1d, 0x8d, 0xfe, 0x2d, 0xe1, 0x75, 0x01, 0x29, 0xbf, 0x08, 0x19, 0x3f, 0xff, 0x46, 0xe3, 0x7f, 0x9b, 0xe3, 0x07, 0x18, 0xe2, 0x81, 0x40, 0xfe, 0x8f, 0xa6, 0xf8, 0x1d, 0xe1, 0x81, 0x00, 0x8a, 0x6c, 0xa3, 0xe1, 0x9a, 0x1e, 0xcd, 0xf4, 0xbb, 0x62, 0x1b, 0x0d, 0x95, 0x74, 0xb2, 0x9a, 0x34, 0x0d, 0x46, 0x53, 0xfc, 0x9e, 0x58, 0x4d, 0xaa, 0x4f, 0xcc, 0x18, 0x2e, 0x92, 0xd1, 0x1c, 0xbf, 0x2f, 0xcc, 0x18, 0xaa, 0x91, 0xe5, 0x26, 0xa0, 0xd1, 0x02, 0x19, 0xcd, 0xf7, 0x79, 0xce, 0x37, 0x3f, 0x52, 0x1f, 0xcb, 0x2f, 0xc1, 0xa9, 0xf1, 0xc5, 0x31, 0x9a, 0xf5, 0x0b, 0xef, 0x0f, 0x1d, 0x67, 0x82, 0xb5, 0xb1, 0xbc, 0x3b, 0xc8, 0xb2, 0xc1, 0xc2, 0x18, 0x4d, 0xfb, 0xda, 0xfb, 0xe1, 0x44, 0x1b, 0xac, 0x8b, 0xe5, 0x0a, 0xc0, 0xa0, 0x26, 0x45, 0x73, 0xbd, 0xce, 0xb9, 0x02, 0x20, 0xb2, 0x35, 0x78, 0x49, 0x8a, 0xc6, 0x7f, 0x51, 0x6c, 0x0d, 0x8e, 0x20, 0x5b, 0x43, 0x54, 0xa3, 0x68, 0xf4, 0x1b, 0x62, 0x6b, 0x08, 0x48, 0xf9, 0x2a, 0xa4, 0xcd, 0xbe, 0x61, 0x90, 0xd8, 0x42, 0x0f, 0xfe, 0x9c, 0xa9, 0xf0, 0x1f, 0x1f, 0x70, 0xb0, 0x00, 0x94, 0x2f, 0x42, 0x0a, 0xf7, 0xf6, 0x71, 0x3b, 0x0a, 0xf9, 0x9f, 0x1f, 0x88, 0x7c, 0x42, 0xb4, 0xcb, 0x2f, 0x02, 0xb0, 0xc3, 0x34, 0xfd, 0x95, 0x28, 0x02, 0xfb, 0x5f, 0x1f, 0xf0, 0x2f, 0x25, 0x06, 0x90, 0x01, 0x01, 0xfb, 0xee, 0xe2, 0xc1, 0x04, 0xef, 0x86, 0x09, 0xe8, 0x01, 0xfc, 0x0a, 0xcc, 0xdc, 0x74, 0x2d, 0xd3, 0x53, 0xbb, 0x51, 0xe8, 0xff, 0xe6, 0x68, 0xa1, 0x4f, 0x1c, 0xd6, 0xb3, 0x1c, 0xec, 0xa9, 0x5d, 0x37, 0x0a, 0xfb, 0x3f, 0x1c, 0xeb, 0x03, 0x08, 0x58, 0x53, 0x5d, 0x6f, 0x92, 0x79, 0xff, 0xaf, 0x00, 0x0b, 0x00, 0x31, 0x9a, 0xfc, 0x7f, 0x0b, 0x1f, 0x46, 0x61, 0xdf, 0x13, 0x46, 0x73, 0xfd, 0xf2, 0x27, 0x20, 0x43, 0xfe, 0x65, 0x5f, 0x0f, 0x45, 0x80, 0xff, 0x8f, 0x83, 0x07, 0x08, 0xf2, 0x66, 0xd7, 0x6b, 0x7b, 0x7a, 0xb4, 0xb3, 0xff, 0x9f, 0xaf, 0xb4, 0xd0, 0x2f, 0x57, 0x20, 0xeb, 0x7a, 0xed, 0x76, 0x9f, 0x77, 0x34, 0x11, 0xf0, 0x1f, 0x7c, 0xe0, 0x1f, 0x72, 0x7d, 0xcc, 0xfa, 0xb9, 0xf1, 0x97, 0x75, 0xb0, 0x69, 0x6d, 0x5a, 0xec, 0x9a, 0x0e, 0xbe, 0x95, 0x80, 0x47, 0x34, 0xab, 0xb7, 0x6f, 0xb9, 0x6b, 0x81, 0x34, 0xb4, 0xd6, 0x53, 0x6d, 0x7e, 0xc9, 0x96, 0xed, 0xa9, 0x36, 0xff, 0x12, 0xd0, 0x5d, 0x3a, 0xd9, 0x05, 0xdd, 0xca, 0x2f, 0xc0, 0xcc, 0xb6, 0x6a, 0xef, 0x62, 0xd7, 0x43, 0xd4, 0x11, 0xf4, 0x9b, 0x19, 0x7e, 0xe5, 0xb9, 0x5c, 0x0a, 0x10, 0x97, 0xb8, 0x5a, 0xa9, 0xe5, 0x39, 0x2d, 0xcf, 0xa1, 0x3f, 0x0f, 0xcb, 0xd3, 0x2e, 0x7d, 0x58, 0xba, 0x02, 0xd9, 0x80, 0x18, 0x49, 0x90, 0xb8, 0x85, 0x0f, 0xf9, 0x57, 0x33, 0xe4, 0x5f, 0xb4, 0x38, 0xf8, 0x2a, 0x8c, 0xc8, 0xd8, 0x43, 0x39, 0x7e, 0x39, 0xb6, 0xf2, 0x02, 0xcc, 0x5c, 0x53, 0x6f, 0xe1, 0x6d, 0xd5, 0x46, 0x17, 0x60, 0x06, 0x9b, 0x9e, 0xa3, 0x63, 0x97, 0x1b, 0x70, 0x26, 0x64, 0x00, 0x57, 0x63, 0x6f, 0x16, 0x9a, 0x2b, 0x5b, 0x90, 0x0b, 0x0e, 0x4c, 0xfa, 0x6e, 0x22, 0xb5, 0xbc, 0x03, 0xfe, 0x95, 0x68, 0x46, 0x66, 0x0f, 0xeb, 0x1b, 0x6f, 0xdd, 0x2f, 0x4e, 0x7d, 0xf7, 0x7e, 0x71, 0xea, 0x5f, 0xee, 0x17, 0xa7, 0xde, 0xbe, 0x5f, 0x8c, 0xbd, 0x77, 0xbf, 0x18, 0xfb, 0xe1, 0xfd, 0x62, 0xec, 0xde, 0x51, 0x31, 0xf6, 0xe5, 0xa3, 0x62, 0xec, 0x6b, 0x47, 0xc5, 0xd8, 0xb7, 0x8f, 0x8a, 0xb1, 0xb7, 0x8e, 0x8a, 0x53, 0xdf, 0x3d, 0x2a, 0xc6, 0xde, 0x3e, 0x2a, 0xc6, 0xbe, 0x7f, 0x54, 0x9c, 0x7a, 0xef, 0xa8, 0x18, 0xfb, 0xe1, 0x51, 0x71, 0xea, 0xde, 0xbf, 0x15, 0xa7, 0xf6, 0xa7, 0xa9, 0x6f, 0x2f, 0xfc, 0x28, 0x00, 0x00, 0xff, 0xff, 0x46, 0xc4, 0x01, 0x2c, 0x5e, 0x31, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *MapTest) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapTest) if !ok { that2, ok := that.(MapTest) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapTest") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapTest but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapTest but is not nil && this == nil") } if len(this.StrStr) != len(that1.StrStr) { return fmt.Errorf("StrStr this(%v) Not Equal that(%v)", len(this.StrStr), len(that1.StrStr)) } for i := range this.StrStr { if this.StrStr[i] != that1.StrStr[i] { return fmt.Errorf("StrStr this[%v](%v) Not Equal that[%v](%v)", i, this.StrStr[i], i, that1.StrStr[i]) } } return nil } func (this *MapTest) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapTest) if !ok { that2, ok := that.(MapTest) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StrStr) != len(that1.StrStr) { return false } for i := range this.StrStr { if this.StrStr[i] != that1.StrStr[i] { return false } } return true } func (this *FakeMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FakeMap) if !ok { that2, ok := that.(FakeMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FakeMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FakeMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FakeMap but is not nil && this == nil") } if len(this.Entries) != len(that1.Entries) { return fmt.Errorf("Entries this(%v) Not Equal that(%v)", len(this.Entries), len(that1.Entries)) } for i := range this.Entries { if !this.Entries[i].Equal(that1.Entries[i]) { return fmt.Errorf("Entries this[%v](%v) Not Equal that[%v](%v)", i, this.Entries[i], i, that1.Entries[i]) } } return nil } func (this *FakeMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FakeMap) if !ok { that2, ok := that.(FakeMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Entries) != len(that1.Entries) { return false } for i := range this.Entries { if !this.Entries[i].Equal(that1.Entries[i]) { return false } } return true } func (this *FakeMapEntry) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FakeMapEntry) if !ok { that2, ok := that.(FakeMapEntry) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FakeMapEntry") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FakeMapEntry but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FakeMapEntry but is not nil && this == nil") } if this.Key != that1.Key { return fmt.Errorf("Key this(%v) Not Equal that(%v)", this.Key, that1.Key) } if this.Value != that1.Value { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if this.Other != that1.Other { return fmt.Errorf("Other this(%v) Not Equal that(%v)", this.Other, that1.Other) } return nil } func (this *FakeMapEntry) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FakeMapEntry) if !ok { that2, ok := that.(FakeMapEntry) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Key != that1.Key { return false } if this.Value != that1.Value { return false } if this.Other != that1.Other { return false } return true } func (this *MapTest) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&mapdefaults.MapTest{") keysForStrStr := make([]string, 0, len(this.StrStr)) for k := range this.StrStr { keysForStrStr = append(keysForStrStr, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStrStr) mapStringForStrStr := "map[string]string{" for _, k := range keysForStrStr { mapStringForStrStr += fmt.Sprintf("%#v: %#v,", k, this.StrStr[k]) } mapStringForStrStr += "}" if this.StrStr != nil { s = append(s, "StrStr: "+mapStringForStrStr+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FakeMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&mapdefaults.FakeMap{") if this.Entries != nil { s = append(s, "Entries: "+fmt.Sprintf("%#v", this.Entries)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FakeMapEntry) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&mapdefaults.FakeMapEntry{") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "Other: "+fmt.Sprintf("%#v", this.Other)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringMap(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedMapTest(r randyMap, easy bool) *MapTest { this := &MapTest{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.StrStr = make(map[string]string) for i := 0; i < v1; i++ { this.StrStr[randStringMap(r)] = randStringMap(r) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFakeMap(r randyMap, easy bool) *FakeMap { this := &FakeMap{} if r.Intn(10) != 0 { v2 := r.Intn(5) this.Entries = make([]*FakeMapEntry, v2) for i := 0; i < v2; i++ { this.Entries[i] = NewPopulatedFakeMapEntry(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFakeMapEntry(r randyMap, easy bool) *FakeMapEntry { this := &FakeMapEntry{} this.Key = string(randStringMap(r)) this.Value = string(randStringMap(r)) this.Other = string(randStringMap(r)) if !easy && r.Intn(10) != 0 { } return this } type randyMap interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneMap(r randyMap) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringMap(r randyMap) string { v3 := r.Intn(100) tmps := make([]rune, v3) for i := 0; i < v3; i++ { tmps[i] = randUTF8RuneMap(r) } return string(tmps) } func randUnrecognizedMap(r randyMap, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldMap(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldMap(dAtA []byte, r randyMap, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) v4 := r.Int63() if r.Intn(2) == 0 { v4 *= -1 } dAtA = encodeVarintPopulateMap(dAtA, uint64(v4)) case 1: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateMap(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateMap(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateMap(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *MapTest) Size() (n int) { var l int _ = l if len(m.StrStr) > 0 { for k, v := range m.StrStr { _ = k _ = v mapEntrySize := 1 + len(k) + sovMap(uint64(len(k))) + 1 + len(v) + sovMap(uint64(len(v))) n += mapEntrySize + 1 + sovMap(uint64(mapEntrySize)) } } return n } func (m *FakeMap) Size() (n int) { var l int _ = l if len(m.Entries) > 0 { for _, e := range m.Entries { l = e.Size() n += 1 + l + sovMap(uint64(l)) } } return n } func (m *FakeMapEntry) Size() (n int) { var l int _ = l l = len(m.Key) if l > 0 { n += 1 + l + sovMap(uint64(l)) } l = len(m.Value) if l > 0 { n += 1 + l + sovMap(uint64(l)) } l = len(m.Other) if l > 0 { n += 1 + l + sovMap(uint64(l)) } return n } func sovMap(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozMap(x uint64) (n int) { return sovMap(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *MapTest) String() string { if this == nil { return "nil" } keysForStrStr := make([]string, 0, len(this.StrStr)) for k := range this.StrStr { keysForStrStr = append(keysForStrStr, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStrStr) mapStringForStrStr := "map[string]string{" for _, k := range keysForStrStr { mapStringForStrStr += fmt.Sprintf("%v: %v,", k, this.StrStr[k]) } mapStringForStrStr += "}" s := strings.Join([]string{`&MapTest{`, `StrStr:` + mapStringForStrStr + `,`, `}`, }, "") return s } func (this *FakeMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FakeMap{`, `Entries:` + strings.Replace(fmt.Sprintf("%v", this.Entries), "FakeMapEntry", "FakeMapEntry", 1) + `,`, `}`, }, "") return s } func (this *FakeMapEntry) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FakeMapEntry{`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `Other:` + fmt.Sprintf("%v", this.Other) + `,`, `}`, }, "") return s } func valueToStringMap(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *MapTest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MapTest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MapTest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StrStr", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StrStr == nil { m.StrStr = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMap } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthMap } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipMap(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMap } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StrStr[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMap(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMap } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *FakeMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FakeMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FakeMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Entries", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Entries = append(m.Entries, &FakeMapEntry{}) if err := m.Entries[len(m.Entries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMap(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMap } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *FakeMapEntry) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FakeMapEntry: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FakeMapEntry: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Key = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Value = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Other", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Other = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMap(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMap } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipMap(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthMap } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipMap(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthMap = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowMap = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/unmarshaler/map.proto", fileDescriptorMap) } var fileDescriptorMap = []byte{ // 315 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0xbf, 0x4f, 0x02, 0x31, 0x14, 0xc7, 0xfb, 0x20, 0x72, 0xb1, 0x38, 0x98, 0x8b, 0xc3, 0x49, 0xcc, 0x0b, 0x61, 0x62, 0xf1, 0x2e, 0x91, 0x45, 0x1c, 0x1c, 0x8c, 0x3a, 0xc9, 0x02, 0xee, 0xa6, 0x87, 0xe5, 0x47, 0xe0, 0xe8, 0xa5, 0xed, 0x99, 0x30, 0xc9, 0x9f, 0xe3, 0xe8, 0xe8, 0x9f, 0xc0, 0xc8, 0xe8, 0x48, 0xeb, 0xe2, 0xc8, 0xc8, 0x68, 0xe8, 0x61, 0x72, 0x6e, 0x6e, 0xef, 0xf3, 0xed, 0xa7, 0x7d, 0xdf, 0x94, 0x9e, 0xf5, 0x45, 0x12, 0x0b, 0x15, 0x65, 0xb3, 0x84, 0x49, 0x35, 0x62, 0x53, 0x2e, 0xa3, 0x84, 0xa5, 0x61, 0x2a, 0x85, 0x16, 0x7e, 0x35, 0x61, 0xe9, 0x33, 0x1f, 0xb0, 0x6c, 0xaa, 0x55, 0xed, 0x7c, 0x38, 0xd6, 0xa3, 0x2c, 0x0e, 0xfb, 0x22, 0x89, 0x86, 0x62, 0x28, 0x22, 0xe7, 0xc4, 0xd9, 0xc0, 0x91, 0x03, 0x37, 0xe5, 0x77, 0x1b, 0xaf, 0xd4, 0xeb, 0xb0, 0xf4, 0x91, 0x2b, 0xed, 0xb7, 0xa9, 0xa7, 0xb4, 0x7c, 0x52, 0x5a, 0x06, 0x50, 0x2f, 0x37, 0xab, 0x17, 0xf5, 0xb0, 0xf0, 0x70, 0xb8, 0xd7, 0xc2, 0x9e, 0x96, 0x3d, 0x2d, 0xef, 0x66, 0x5a, 0xce, 0xbb, 0x15, 0xe5, 0xa0, 0xd6, 0xa6, 0xd5, 0x42, 0xec, 0x1f, 0xd3, 0xf2, 0x84, 0xcf, 0x03, 0xa8, 0x43, 0xf3, 0xb0, 0xbb, 0x1b, 0xfd, 0x13, 0x7a, 0xf0, 0xc2, 0xa6, 0x19, 0x0f, 0x4a, 0x2e, 0xcb, 0xe1, 0xaa, 0x74, 0x09, 0x8d, 0x6b, 0xea, 0xdd, 0xb3, 0x09, 0xef, 0xb0, 0xd4, 0x6f, 0x51, 0x8f, 0xcf, 0xb4, 0x1c, 0x73, 0xb5, 0x2f, 0x70, 0xfa, 0xa7, 0xc0, 0x5e, 0xcb, 0x37, 0xff, 0x9a, 0x8d, 0x07, 0x7a, 0x54, 0x3c, 0xf8, 0xef, 0xee, 0x5d, 0x2a, 0xf4, 0x88, 0xcb, 0xa0, 0x9c, 0xa7, 0x0e, 0x6e, 0x6e, 0x97, 0x06, 0xc9, 0xca, 0x20, 0xf9, 0x34, 0x48, 0xd6, 0x06, 0x61, 0x63, 0x10, 0xb6, 0x06, 0x61, 0x61, 0x11, 0xde, 0x2c, 0xc2, 0xbb, 0x45, 0xf8, 0xb0, 0x08, 0x4b, 0x8b, 0x64, 0x65, 0x11, 0xd6, 0x16, 0xe1, 0xdb, 0x22, 0xd9, 0x58, 0x84, 0xad, 0x45, 0xb2, 0xf8, 0x42, 0x12, 0x57, 0xdc, 0xdf, 0xb6, 0x7e, 0x02, 0x00, 0x00, 0xff, 0xff, 0x44, 0xd1, 0x73, 0x81, 0xb7, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/mapdefaults/combos/unmarshaler/map.proto000066400000000000000000000047221317075173200263030ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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 = "proto3"; package mapdefaults; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message MapTest { map str_str = 1; } message FakeMap { repeated FakeMapEntry entries = 1; } message FakeMapEntry { string key = 1; string value = 2; string other = 3; } golang-gogoprotobuf-0.5/test/mapdefaults/combos/unmarshaler/map_test.go000066400000000000000000000101021317075173200265710ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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. package mapdefaults import ( "testing" "github.com/gogo/protobuf/proto" ) func TestUnmarshalImplicitDefaultKeyValue1(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "foo", Value: "", }, { Key: "", Value: "bar", }, { Key: "as", Value: "df", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 3 { t.Fatal("StrStr map should have 3 key/value pairs") } val, ok := strStr["foo"] if !ok { t.Fatal("\"foo\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"foo\": %s", val) } val, ok = strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "bar" { t.Fatalf("Unexpected value for \"\": %s", val) } val, ok = strStr["as"] if !ok { t.Fatal("\"as\" not found in StrStr map.") } if val != "df" { t.Fatalf("Unexpected value for \"as\": %s", val) } } func TestUnmarshalImplicitDefaultKeyValue2(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "", Value: "", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } // Sanity check if string(serializedMsg) != "\n\x00" { t.Fatal("Serialized bytes mismatched") } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"\": %s", val) } } func TestUnmarshalIgnoreUnknownField(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ { Key: "key", Value: "value", Other: "other", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := &MapTest{} err = proto.Unmarshal(serializedMsg, msg) if err != nil { var pb proto.Message = msg _, ok := pb.(proto.Unmarshaler) if !ok { // non-codegen implementation returns error when extra tags are // present. return } t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr["key"] if !ok { t.Fatal("\"key\" not found in StrStr map.") } if val != "value" { t.Fatalf("Unexpected value for \"value\": %s", val) } } golang-gogoprotobuf-0.5/test/mapdefaults/combos/unmarshaler/mappb_test.go000066400000000000000000000352411317075173200271260ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/map.proto /* Package mapdefaults is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/map.proto It has these top-level messages: MapTest FakeMap FakeMapEntry */ package mapdefaults import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMapTestProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFakeMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFakeMapEntryProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMapTestJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapTest{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFakeMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFakeMapEntryJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FakeMapEntry{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapTestProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapTestProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapTest{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFakeMapEntryProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapDescription(t *testing.T) { MapDescription() } func TestMapTestVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapTest{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFakeMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FakeMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFakeMapEntryVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FakeMapEntry{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapTestGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFakeMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFakeMapEntryGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMapTestSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapTest(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestFakeMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestFakeMapEntrySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFakeMapEntry(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestMapTestStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapTest(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFakeMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFakeMapEntryStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFakeMapEntry(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/mapdefaults/map.pb.go000066400000000000000000000235721317075173200223460ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: map.proto /* Package mapdefaults is a generated protocol buffer package. It is generated from these files: map.proto It has these top-level messages: MapTest */ package mapdefaults import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapTest struct { StrStr map[string]string `protobuf:"bytes,1,rep,name=str_str,json=strStr" json:"str_str,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MapTest) Reset() { *m = MapTest{} } func (m *MapTest) String() string { return proto.CompactTextString(m) } func (*MapTest) ProtoMessage() {} func (*MapTest) Descriptor() ([]byte, []int) { return fileDescriptorMap, []int{0} } func (m *MapTest) GetStrStr() map[string]string { if m != nil { return m.StrStr } return nil } func init() { proto.RegisterType((*MapTest)(nil), "mapdefaults.MapTest") } func (m *MapTest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MapTest) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StrStr) > 0 { for k := range m.StrStr { dAtA[i] = 0xa i++ v := m.StrStr[k] mapSize := 1 + len(k) + sovMap(uint64(len(k))) + 1 + len(v) + sovMap(uint64(len(v))) i = encodeVarintMap(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMap(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMap(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } return i, nil } func encodeFixed64Map(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) dAtA[offset+1] = uint8(v >> 8) dAtA[offset+2] = uint8(v >> 16) dAtA[offset+3] = uint8(v >> 24) dAtA[offset+4] = uint8(v >> 32) dAtA[offset+5] = uint8(v >> 40) dAtA[offset+6] = uint8(v >> 48) dAtA[offset+7] = uint8(v >> 56) return offset + 8 } func encodeFixed32Map(dAtA []byte, offset int, v uint32) int { dAtA[offset] = uint8(v) dAtA[offset+1] = uint8(v >> 8) dAtA[offset+2] = uint8(v >> 16) dAtA[offset+3] = uint8(v >> 24) return offset + 4 } func encodeVarintMap(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *MapTest) Size() (n int) { var l int _ = l if len(m.StrStr) > 0 { for k, v := range m.StrStr { _ = k _ = v mapEntrySize := 1 + len(k) + sovMap(uint64(len(k))) + 1 + len(v) + sovMap(uint64(len(v))) n += mapEntrySize + 1 + sovMap(uint64(mapEntrySize)) } } return n } func sovMap(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozMap(x uint64) (n int) { return sovMap(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *MapTest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MapTest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MapTest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StrStr", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMap } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StrStr == nil { m.StrStr = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMap } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMap } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthMap } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } } m.StrStr[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMap(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMap } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipMap(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthMap } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMap } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipMap(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthMap = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowMap = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("map.proto", fileDescriptorMap) } var fileDescriptorMap = []byte{ // 161 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xcc, 0x4d, 0x2c, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0xce, 0x4d, 0x2c, 0x48, 0x49, 0x4d, 0x4b, 0x2c, 0xcd, 0x29, 0x29, 0x56, 0xaa, 0xe7, 0x62, 0xf7, 0x4d, 0x2c, 0x08, 0x49, 0x2d, 0x2e, 0x11, 0xb2, 0xe4, 0x62, 0x2f, 0x2e, 0x29, 0x8a, 0x2f, 0x2e, 0x29, 0x92, 0x60, 0x54, 0x60, 0xd6, 0xe0, 0x36, 0x52, 0xd0, 0x43, 0x52, 0xa9, 0x07, 0x55, 0xa6, 0x17, 0x5c, 0x52, 0x14, 0x5c, 0x52, 0xe4, 0x9a, 0x57, 0x52, 0x54, 0x19, 0xc4, 0x56, 0x0c, 0xe6, 0x48, 0x59, 0x72, 0x71, 0x23, 0x09, 0x0b, 0x09, 0x70, 0x31, 0x67, 0xa7, 0x56, 0x4a, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0x81, 0x98, 0x42, 0x22, 0x5c, 0xac, 0x65, 0x89, 0x39, 0xa5, 0xa9, 0x12, 0x4c, 0x60, 0x31, 0x08, 0xc7, 0x8a, 0xc9, 0x82, 0xd1, 0x89, 0xe7, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x4c, 0x62, 0x03, 0x3b, 0xd1, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x38, 0xe5, 0x24, 0x74, 0xaf, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/mapdefaults/map.proto000066400000000000000000000047231317075173200225010ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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 = "proto3"; package mapdefaults; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message MapTest { map str_str = 1; } message FakeMap { repeated FakeMapEntry entries = 1; } message FakeMapEntry { string key = 1; string value = 2; string other = 3; } golang-gogoprotobuf-0.5/test/mapdefaults/map_test.go.in000066400000000000000000000102031317075173200233750ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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. package mapdefaults import ( "testing" "github.com/gogo/protobuf/proto" ) func TestUnmarshalImplicitDefaultKeyValue1(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ &FakeMapEntry{ Key: "foo", Value: "", }, &FakeMapEntry{ Key: "", Value: "bar", }, &FakeMapEntry{ Key: "as", Value: "df", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 3 { t.Fatal("StrStr map should have 3 key/value pairs") } val, ok := strStr["foo"] if !ok { t.Fatal("\"foo\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"foo\": %s", val) } val, ok = strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "bar" { t.Fatalf("Unexpected value for \"\": %s", val) } val, ok = strStr["as"] if !ok { t.Fatal("\"as\" not found in StrStr map.") } if val != "df" { t.Fatalf("Unexpected value for \"as\": %s", val) } } func TestUnmarshalImplicitDefaultKeyValue2(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ &FakeMapEntry{ Key: "", Value: "", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } // Sanity check if string(serializedMsg) != "\n\x00" { t.Fatal("Serialized bytes mismatched") } msg := MapTest{} err = proto.Unmarshal(serializedMsg, &msg) if err != nil { t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr[""] if !ok { t.Fatal("\"\" not found in StrStr map.") } if val != "" { t.Fatalf("Unexpected value for \"\": %s", val) } } func TestUnmarshalIgnoreUnknownField(t *testing.T) { fm := &FakeMap{ Entries: []*FakeMapEntry{ &FakeMapEntry{ Key: "key", Value: "value", Other: "other", }, }, } serializedMsg, err := proto.Marshal(fm) if err != nil { t.Fatalf("Failed to serialize msg: %s", err) } msg := &MapTest{} err = proto.Unmarshal(serializedMsg, msg) if err != nil { var pb proto.Message = msg _, ok := pb.(proto.Unmarshaler) if !ok { // non-codegen implementation returns error when extra tags are // present. return } t.Fatalf("Unexpected error: %s", err) } strStr := msg.StrStr if len(strStr) != 1 { t.Fatal("StrStr map should have 1 key/value pairs") } val, ok := strStr["key"] if !ok { t.Fatal("\"key\" not found in StrStr map.") } if val != "value" { t.Fatalf("Unexpected value for \"value\": %s", val) } } golang-gogoprotobuf-0.5/test/mapsproto2/000077500000000000000000000000001317075173200204325ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapsproto2/Makefile000066400000000000000000000034471317075173200221020ustar00rootroot00000000000000# 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-combo go install github.com/gogo/protobuf/protoc-gen-gogo cp header.proto mapsproto2.proto cat ../theproto3/maps.proto >> mapsproto2.proto find combos -type d -not -name combos -exec cp mapsproto2_test.go.in {}/mapsproto2_test.go \; protoc-gen-combo --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. mapsproto2.proto golang-gogoprotobuf-0.5/test/mapsproto2/combos/000077500000000000000000000000001317075173200217145ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapsproto2/combos/both/000077500000000000000000000000001317075173200226505ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapsproto2/combos/both/mapsproto2.pb.go000066400000000000000000010077471317075173200257250ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/mapsproto2.proto /* Package proto2_maps is a generated protocol buffer package. It is generated from these files: combos/both/mapsproto2.proto It has these top-level messages: FloatingPoint CustomMap AllMaps AllMapsOrdered */ package proto2_maps import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test "github.com/gogo/protobuf/test" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapEnum int32 const ( MA MapEnum = 0 MB MapEnum = 1 MC MapEnum = 2 ) var MapEnum_name = map[int32]string{ 0: "MA", 1: "MB", 2: "MC", } var MapEnum_value = map[string]int32{ "MA": 0, "MB": 1, "MC": 2, } func (x MapEnum) Enum() *MapEnum { p := new(MapEnum) *p = x return p } func (x MapEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(MapEnum_name, int32(x)) } func (x *MapEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MapEnum_value, data, "MapEnum") if err != nil { return err } *x = MapEnum(value) return nil } func (MapEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{0} } type FloatingPoint struct { F *float64 `protobuf:"fixed64,1,opt,name=f" json:"f,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *FloatingPoint) Reset() { *m = FloatingPoint{} } func (*FloatingPoint) ProtoMessage() {} func (*FloatingPoint) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{0} } type CustomMap struct { Nullable128S map[string]*github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,1,rep,name=Nullable128s,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Nullable128s,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` Uint128S map[string]github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Uint128s,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Uint128s" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` NullableIds map[string]*github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,3,rep,name=NullableIds,customtype=github.com/gogo/protobuf/test.Uuid" json:"NullableIds,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` Ids map[string]github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,4,rep,name=Ids,customtype=github.com/gogo/protobuf/test.Uuid" json:"Ids" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *CustomMap) Reset() { *m = CustomMap{} } func (*CustomMap) ProtoMessage() {} func (*CustomMap) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{1} } type AllMaps struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=proto2.maps.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *AllMaps) Reset() { *m = AllMaps{} } func (*AllMaps) ProtoMessage() {} func (*AllMaps) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{2} } type AllMapsOrdered struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=proto2.maps.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *AllMapsOrdered) Reset() { *m = AllMapsOrdered{} } func (*AllMapsOrdered) ProtoMessage() {} func (*AllMapsOrdered) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{3} } func init() { proto.RegisterType((*FloatingPoint)(nil), "proto2.maps.FloatingPoint") proto.RegisterType((*CustomMap)(nil), "proto2.maps.CustomMap") proto.RegisterType((*AllMaps)(nil), "proto2.maps.AllMaps") proto.RegisterType((*AllMapsOrdered)(nil), "proto2.maps.AllMapsOrdered") proto.RegisterEnum("proto2.maps.MapEnum", MapEnum_name, MapEnum_value) } func (this *FloatingPoint) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *CustomMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *AllMaps) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *AllMapsOrdered) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func Mapsproto2Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4653 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5b, 0x5d, 0x6c, 0x23, 0xd7, 0x75, 0xde, 0xe1, 0x8f, 0x44, 0x1e, 0x52, 0xd4, 0xe8, 0x4a, 0x5e, 0xd3, 0xb2, 0xad, 0xdd, 0x95, 0xff, 0xe4, 0xb5, 0x2d, 0xd9, 0xf2, 0xee, 0x7a, 0xcd, 0x8d, 0xed, 0x52, 0x12, 0x57, 0x2b, 0x5b, 0x7f, 0x19, 0x4a, 0xf6, 0xda, 0x85, 0x31, 0x1d, 0x0d, 0x2f, 0xa9, 0xf1, 0x92, 0x33, 0xf4, 0xcc, 0x70, 0x6d, 0x19, 0x45, 0xb1, 0x85, 0xfb, 0x83, 0xa0, 0xe8, 0x7f, 0x81, 0x3a, 0xae, 0xe3, 0x36, 0x01, 0x5a, 0xa7, 0x49, 0x7f, 0x92, 0xa6, 0x4d, 0xd3, 0x3e, 0xe5, 0x25, 0xad, 0x81, 0x02, 0x45, 0xf2, 0x16, 0x04, 0x81, 0xe1, 0x55, 0x0d, 0xd4, 0x6d, 0xdd, 0xd6, 0x4d, 0xfc, 0x10, 0xc0, 0x2f, 0xc5, 0xfd, 0x1b, 0xce, 0x0c, 0x87, 0x1c, 0xca, 0x80, 0x9d, 0x3c, 0xf8, 0x69, 0x35, 0x67, 0xce, 0xf7, 0xdd, 0x73, 0xcf, 0x3d, 0xf7, 0x9c, 0x73, 0xef, 0x70, 0xe1, 0xab, 0xe7, 0xe1, 0x64, 0xc3, 0xb2, 0x1a, 0x4d, 0xbc, 0xd0, 0xb6, 0x2d, 0xd7, 0xda, 0xeb, 0xd4, 0x17, 0x6a, 0xd8, 0xd1, 0x6d, 0xa3, 0xed, 0x5a, 0xf6, 0x3c, 0x95, 0xa1, 0x71, 0xa6, 0x31, 0x2f, 0x34, 0x66, 0x37, 0x60, 0xe2, 0xa2, 0xd1, 0xc4, 0x2b, 0x9e, 0x62, 0x15, 0xbb, 0xe8, 0x3c, 0xa4, 0xea, 0x46, 0x13, 0x17, 0xa5, 0x93, 0xc9, 0xb9, 0xdc, 0xe2, 0xed, 0xf3, 0x21, 0xd0, 0x7c, 0x10, 0xb1, 0x4d, 0xc4, 0x0a, 0x45, 0xcc, 0xbe, 0x93, 0x82, 0xc9, 0x88, 0xb7, 0x08, 0x41, 0xca, 0xd4, 0x5a, 0x84, 0x51, 0x9a, 0xcb, 0x2a, 0xf4, 0x6f, 0x54, 0x84, 0xd1, 0xb6, 0xa6, 0x5f, 0xd1, 0x1a, 0xb8, 0x98, 0xa0, 0x62, 0xf1, 0x88, 0x66, 0x00, 0x6a, 0xb8, 0x8d, 0xcd, 0x1a, 0x36, 0xf5, 0x83, 0x62, 0xf2, 0x64, 0x72, 0x2e, 0xab, 0xf8, 0x24, 0xe8, 0x1e, 0x98, 0x68, 0x77, 0xf6, 0x9a, 0x86, 0xae, 0xfa, 0xd4, 0xe0, 0x64, 0x72, 0x2e, 0xad, 0xc8, 0xec, 0xc5, 0x4a, 0x57, 0xf9, 0x2e, 0x18, 0x7f, 0x01, 0x6b, 0x57, 0xfc, 0xaa, 0x39, 0xaa, 0x5a, 0x20, 0x62, 0x9f, 0xe2, 0x32, 0xe4, 0x5b, 0xd8, 0x71, 0xb4, 0x06, 0x56, 0xdd, 0x83, 0x36, 0x2e, 0xa6, 0xe8, 0xec, 0x4f, 0xf6, 0xcc, 0x3e, 0x3c, 0xf3, 0x1c, 0x47, 0xed, 0x1c, 0xb4, 0x31, 0x2a, 0x43, 0x16, 0x9b, 0x9d, 0x16, 0x63, 0x48, 0xf7, 0xf1, 0x5f, 0xc5, 0xec, 0xb4, 0xc2, 0x2c, 0x19, 0x02, 0xe3, 0x14, 0xa3, 0x0e, 0xb6, 0xaf, 0x1a, 0x3a, 0x2e, 0x8e, 0x50, 0x82, 0xbb, 0x7a, 0x08, 0xaa, 0xec, 0x7d, 0x98, 0x43, 0xe0, 0xd0, 0x32, 0x64, 0xf1, 0x8b, 0x2e, 0x36, 0x1d, 0xc3, 0x32, 0x8b, 0xa3, 0x94, 0xe4, 0x8e, 0x88, 0x55, 0xc4, 0xcd, 0x5a, 0x98, 0xa2, 0x8b, 0x43, 0xe7, 0x60, 0xd4, 0x6a, 0xbb, 0x86, 0x65, 0x3a, 0xc5, 0xcc, 0x49, 0x69, 0x2e, 0xb7, 0x78, 0x4b, 0x64, 0x20, 0x6c, 0x31, 0x1d, 0x45, 0x28, 0xa3, 0x35, 0x90, 0x1d, 0xab, 0x63, 0xeb, 0x58, 0xd5, 0xad, 0x1a, 0x56, 0x0d, 0xb3, 0x6e, 0x15, 0xb3, 0x94, 0xe0, 0x44, 0xef, 0x44, 0xa8, 0xe2, 0xb2, 0x55, 0xc3, 0x6b, 0x66, 0xdd, 0x52, 0x0a, 0x4e, 0xe0, 0x19, 0x1d, 0x87, 0x11, 0xe7, 0xc0, 0x74, 0xb5, 0x17, 0x8b, 0x79, 0x1a, 0x21, 0xfc, 0x69, 0xf6, 0x1f, 0x46, 0x60, 0x7c, 0x98, 0x10, 0xbb, 0x00, 0xe9, 0x3a, 0x99, 0x65, 0x31, 0x71, 0x14, 0x1f, 0x30, 0x4c, 0xd0, 0x89, 0x23, 0x1f, 0xd1, 0x89, 0x65, 0xc8, 0x99, 0xd8, 0x71, 0x71, 0x8d, 0x45, 0x44, 0x72, 0xc8, 0x98, 0x02, 0x06, 0xea, 0x0d, 0xa9, 0xd4, 0x47, 0x0a, 0xa9, 0xcb, 0x30, 0xee, 0x99, 0xa4, 0xda, 0x9a, 0xd9, 0x10, 0xb1, 0xb9, 0x10, 0x67, 0xc9, 0x7c, 0x45, 0xe0, 0x14, 0x02, 0x53, 0x0a, 0x38, 0xf0, 0x8c, 0x56, 0x00, 0x2c, 0x13, 0x5b, 0x75, 0xb5, 0x86, 0xf5, 0x66, 0x31, 0xd3, 0xc7, 0x4b, 0x5b, 0x44, 0xa5, 0xc7, 0x4b, 0x16, 0x93, 0xea, 0x4d, 0xf4, 0x70, 0x37, 0xd4, 0x46, 0xfb, 0x44, 0xca, 0x06, 0xdb, 0x64, 0x3d, 0xd1, 0xb6, 0x0b, 0x05, 0x1b, 0x93, 0xb8, 0xc7, 0x35, 0x3e, 0xb3, 0x2c, 0x35, 0x62, 0x3e, 0x76, 0x66, 0x0a, 0x87, 0xb1, 0x89, 0x8d, 0xd9, 0xfe, 0x47, 0x74, 0x1b, 0x78, 0x02, 0x95, 0x86, 0x15, 0xd0, 0x2c, 0x94, 0x17, 0xc2, 0x4d, 0xad, 0x85, 0xa7, 0x5f, 0x82, 0x42, 0xd0, 0x3d, 0x68, 0x0a, 0xd2, 0x8e, 0xab, 0xd9, 0x2e, 0x8d, 0xc2, 0xb4, 0xc2, 0x1e, 0x90, 0x0c, 0x49, 0x6c, 0xd6, 0x68, 0x96, 0x4b, 0x2b, 0xe4, 0x4f, 0xf4, 0x73, 0xdd, 0x09, 0x27, 0xe9, 0x84, 0xef, 0xec, 0x5d, 0xd1, 0x00, 0x73, 0x78, 0xde, 0xd3, 0x0f, 0xc1, 0x58, 0x60, 0x02, 0xc3, 0x0e, 0x3d, 0xfb, 0x8b, 0x70, 0x43, 0x24, 0x35, 0xba, 0x0c, 0x53, 0x1d, 0xd3, 0x30, 0x5d, 0x6c, 0xb7, 0x6d, 0x4c, 0x22, 0x96, 0x0d, 0x55, 0xfc, 0xf7, 0xd1, 0x3e, 0x31, 0xb7, 0xeb, 0xd7, 0x66, 0x2c, 0xca, 0x64, 0xa7, 0x57, 0x78, 0x3a, 0x9b, 0x79, 0x77, 0x54, 0xbe, 0x76, 0xed, 0xda, 0xb5, 0xc4, 0xec, 0x2b, 0x23, 0x30, 0x15, 0xb5, 0x67, 0x22, 0xb7, 0xef, 0x71, 0x18, 0x31, 0x3b, 0xad, 0x3d, 0x6c, 0x53, 0x27, 0xa5, 0x15, 0xfe, 0x84, 0xca, 0x90, 0x6e, 0x6a, 0x7b, 0xb8, 0x59, 0x4c, 0x9d, 0x94, 0xe6, 0x0a, 0x8b, 0xf7, 0x0c, 0xb5, 0x2b, 0xe7, 0xd7, 0x09, 0x44, 0x61, 0x48, 0xf4, 0x28, 0xa4, 0x78, 0x8a, 0x26, 0x0c, 0xa7, 0x87, 0x63, 0x20, 0x7b, 0x49, 0xa1, 0x38, 0x74, 0x33, 0x64, 0xc9, 0xbf, 0x2c, 0x36, 0x46, 0xa8, 0xcd, 0x19, 0x22, 0x20, 0x71, 0x81, 0xa6, 0x21, 0x43, 0xb7, 0x49, 0x0d, 0x8b, 0xd2, 0xe6, 0x3d, 0x93, 0xc0, 0xaa, 0xe1, 0xba, 0xd6, 0x69, 0xba, 0xea, 0x55, 0xad, 0xd9, 0xc1, 0x34, 0xe0, 0xb3, 0x4a, 0x9e, 0x0b, 0x9f, 0x24, 0x32, 0x74, 0x02, 0x72, 0x6c, 0x57, 0x19, 0x66, 0x0d, 0xbf, 0x48, 0xb3, 0x67, 0x5a, 0x61, 0x1b, 0x6d, 0x8d, 0x48, 0xc8, 0xf0, 0xcf, 0x39, 0x96, 0x29, 0x42, 0x93, 0x0e, 0x41, 0x04, 0x74, 0xf8, 0x87, 0xc2, 0x89, 0xfb, 0xd6, 0xe8, 0xe9, 0x85, 0x63, 0x6a, 0xf6, 0x9b, 0x09, 0x48, 0xd1, 0x7c, 0x31, 0x0e, 0xb9, 0x9d, 0xa7, 0xb7, 0x2b, 0xea, 0xca, 0xd6, 0xee, 0xd2, 0x7a, 0x45, 0x96, 0x50, 0x01, 0x80, 0x0a, 0x2e, 0xae, 0x6f, 0x95, 0x77, 0xe4, 0x84, 0xf7, 0xbc, 0xb6, 0xb9, 0x73, 0xee, 0x8c, 0x9c, 0xf4, 0x00, 0xbb, 0x4c, 0x90, 0xf2, 0x2b, 0x3c, 0xb8, 0x28, 0xa7, 0x91, 0x0c, 0x79, 0x46, 0xb0, 0x76, 0xb9, 0xb2, 0x72, 0xee, 0x8c, 0x3c, 0x12, 0x94, 0x3c, 0xb8, 0x28, 0x8f, 0xa2, 0x31, 0xc8, 0x52, 0xc9, 0xd2, 0xd6, 0xd6, 0xba, 0x9c, 0xf1, 0x38, 0xab, 0x3b, 0xca, 0xda, 0xe6, 0xaa, 0x9c, 0xf5, 0x38, 0x57, 0x95, 0xad, 0xdd, 0x6d, 0x19, 0x3c, 0x86, 0x8d, 0x4a, 0xb5, 0x5a, 0x5e, 0xad, 0xc8, 0x39, 0x4f, 0x63, 0xe9, 0xe9, 0x9d, 0x4a, 0x55, 0xce, 0x07, 0xcc, 0x7a, 0x70, 0x51, 0x1e, 0xf3, 0x86, 0xa8, 0x6c, 0xee, 0x6e, 0xc8, 0x05, 0x34, 0x01, 0x63, 0x6c, 0x08, 0x61, 0xc4, 0x78, 0x48, 0x74, 0xee, 0x8c, 0x2c, 0x77, 0x0d, 0x61, 0x2c, 0x13, 0x01, 0xc1, 0xb9, 0x33, 0x32, 0x9a, 0x5d, 0x86, 0x34, 0x8d, 0x2e, 0x84, 0xa0, 0xb0, 0x5e, 0x5e, 0xaa, 0xac, 0xab, 0x5b, 0xdb, 0x3b, 0x6b, 0x5b, 0x9b, 0xe5, 0x75, 0x59, 0xea, 0xca, 0x94, 0xca, 0x67, 0x77, 0xd7, 0x94, 0xca, 0x8a, 0x9c, 0xf0, 0xcb, 0xb6, 0x2b, 0xe5, 0x9d, 0xca, 0x8a, 0x9c, 0x9c, 0xd5, 0x61, 0x2a, 0x2a, 0x4f, 0x46, 0xee, 0x0c, 0xdf, 0x12, 0x27, 0xfa, 0x2c, 0x31, 0xe5, 0xea, 0x59, 0xe2, 0x2f, 0x49, 0x30, 0x19, 0x51, 0x2b, 0x22, 0x07, 0x79, 0x0c, 0xd2, 0x2c, 0x44, 0x59, 0xf5, 0xbc, 0x3b, 0xb2, 0xe8, 0xd0, 0x80, 0xed, 0xa9, 0xa0, 0x14, 0xe7, 0xef, 0x20, 0x92, 0x7d, 0x3a, 0x08, 0x42, 0xd1, 0x63, 0xe4, 0xcb, 0x12, 0x14, 0xfb, 0x71, 0xc7, 0x24, 0x8a, 0x44, 0x20, 0x51, 0x5c, 0x08, 0x1b, 0x70, 0xaa, 0xff, 0x1c, 0x7a, 0xac, 0x78, 0x43, 0x82, 0xe3, 0xd1, 0x8d, 0x56, 0xa4, 0x0d, 0x8f, 0xc2, 0x48, 0x0b, 0xbb, 0xfb, 0x96, 0x68, 0x36, 0xee, 0x8c, 0x28, 0x61, 0xe4, 0x75, 0xd8, 0x57, 0x1c, 0xe5, 0xaf, 0x81, 0xc9, 0x7e, 0xdd, 0x12, 0xb3, 0xa6, 0xc7, 0xd2, 0xcf, 0x25, 0xe0, 0x86, 0x48, 0xf2, 0x48, 0x43, 0x6f, 0x05, 0x30, 0xcc, 0x76, 0xc7, 0x65, 0x0d, 0x05, 0xcb, 0x4f, 0x59, 0x2a, 0xa1, 0x7b, 0x9f, 0xe4, 0x9e, 0x8e, 0xeb, 0xbd, 0x4f, 0xd2, 0xf7, 0xc0, 0x44, 0x54, 0xe1, 0x7c, 0xd7, 0xd0, 0x14, 0x35, 0x74, 0xa6, 0xcf, 0x4c, 0x7b, 0x6a, 0xf5, 0xfd, 0x20, 0xeb, 0x4d, 0x03, 0x9b, 0xae, 0xea, 0xb8, 0x36, 0xd6, 0x5a, 0x86, 0xd9, 0xa0, 0x09, 0x38, 0x53, 0x4a, 0xd7, 0xb5, 0xa6, 0x83, 0x95, 0x71, 0xf6, 0xba, 0x2a, 0xde, 0x12, 0x04, 0xad, 0x71, 0xb6, 0x0f, 0x31, 0x12, 0x40, 0xb0, 0xd7, 0x1e, 0x62, 0xf6, 0x1b, 0x19, 0xc8, 0xf9, 0xda, 0x52, 0x74, 0x0a, 0xf2, 0xcf, 0x69, 0x57, 0x35, 0x55, 0x1c, 0x35, 0x98, 0x27, 0x72, 0x44, 0xb6, 0xcd, 0x8f, 0x1b, 0xf7, 0xc3, 0x14, 0x55, 0xb1, 0x3a, 0x2e, 0xb6, 0x55, 0xbd, 0xa9, 0x39, 0x0e, 0x75, 0x5a, 0x86, 0xaa, 0x22, 0xf2, 0x6e, 0x8b, 0xbc, 0x5a, 0x16, 0x6f, 0xd0, 0x59, 0x98, 0xa4, 0x88, 0x56, 0xa7, 0xe9, 0x1a, 0xed, 0x26, 0x56, 0xc9, 0xe1, 0xc7, 0xa1, 0x89, 0xd8, 0xb3, 0x6c, 0x82, 0x68, 0x6c, 0x70, 0x05, 0x62, 0x91, 0x83, 0x56, 0xe0, 0x56, 0x0a, 0x6b, 0x60, 0x13, 0xdb, 0x9a, 0x8b, 0x55, 0xfc, 0x7c, 0x47, 0x6b, 0x3a, 0xaa, 0x66, 0xd6, 0xd4, 0x7d, 0xcd, 0xd9, 0x2f, 0x4e, 0x11, 0x82, 0xa5, 0x44, 0x51, 0x52, 0x6e, 0x22, 0x8a, 0xab, 0x5c, 0xaf, 0x42, 0xd5, 0xca, 0x66, 0xed, 0x92, 0xe6, 0xec, 0xa3, 0x12, 0x1c, 0xa7, 0x2c, 0x8e, 0x6b, 0x1b, 0x66, 0x43, 0xd5, 0xf7, 0xb1, 0x7e, 0x45, 0xed, 0xb8, 0xf5, 0xf3, 0xc5, 0x9b, 0xfd, 0xe3, 0x53, 0x0b, 0xab, 0x54, 0x67, 0x99, 0xa8, 0xec, 0xba, 0xf5, 0xf3, 0xa8, 0x0a, 0x79, 0xb2, 0x18, 0x2d, 0xe3, 0x25, 0xac, 0xd6, 0x2d, 0x9b, 0x56, 0x96, 0x42, 0xc4, 0xce, 0xf6, 0x79, 0x70, 0x7e, 0x8b, 0x03, 0x36, 0xac, 0x1a, 0x2e, 0xa5, 0xab, 0xdb, 0x95, 0xca, 0x8a, 0x92, 0x13, 0x2c, 0x17, 0x2d, 0x9b, 0x04, 0x54, 0xc3, 0xf2, 0x1c, 0x9c, 0x63, 0x01, 0xd5, 0xb0, 0x84, 0x7b, 0xcf, 0xc2, 0xa4, 0xae, 0xb3, 0x39, 0x1b, 0xba, 0xca, 0x8f, 0x28, 0x4e, 0x51, 0x0e, 0x38, 0x4b, 0xd7, 0x57, 0x99, 0x02, 0x8f, 0x71, 0x07, 0x3d, 0x0c, 0x37, 0x74, 0x9d, 0xe5, 0x07, 0x4e, 0xf4, 0xcc, 0x32, 0x0c, 0x3d, 0x0b, 0x93, 0xed, 0x83, 0x5e, 0x20, 0x0a, 0x8c, 0xd8, 0x3e, 0x08, 0xc3, 0x1e, 0x82, 0xa9, 0xf6, 0x7e, 0xbb, 0x17, 0x37, 0xe9, 0xc7, 0xa1, 0xf6, 0x7e, 0x3b, 0x0c, 0xbc, 0x83, 0x9e, 0x57, 0x6d, 0xac, 0x6b, 0x2e, 0xae, 0x15, 0x6f, 0xf4, 0xab, 0xfb, 0x5e, 0xa0, 0x05, 0x90, 0x75, 0x5d, 0xc5, 0xa6, 0xb6, 0xd7, 0xc4, 0xaa, 0x66, 0x63, 0x53, 0x73, 0x8a, 0x27, 0xfc, 0xca, 0x05, 0x5d, 0xaf, 0xd0, 0xb7, 0x65, 0xfa, 0x12, 0x9d, 0x86, 0x09, 0x6b, 0xef, 0x39, 0x9d, 0x85, 0xa4, 0xda, 0xb6, 0x71, 0xdd, 0x78, 0xb1, 0x78, 0x3b, 0xf5, 0xef, 0x38, 0x79, 0x41, 0x03, 0x72, 0x9b, 0x8a, 0xd1, 0xdd, 0x20, 0xeb, 0xce, 0xbe, 0x66, 0xb7, 0x69, 0x4f, 0xe0, 0xb4, 0x35, 0x1d, 0x17, 0xef, 0x60, 0xaa, 0x4c, 0xbe, 0x29, 0xc4, 0x64, 0x4b, 0x38, 0x2f, 0x18, 0x75, 0x57, 0x30, 0xde, 0xc5, 0xb6, 0x04, 0x95, 0x71, 0xb6, 0x39, 0x90, 0x89, 0x2b, 0x02, 0x03, 0xcf, 0x51, 0xb5, 0x42, 0x7b, 0xbf, 0xed, 0x1f, 0xf7, 0x36, 0x18, 0x23, 0x9a, 0xdd, 0x41, 0xef, 0x66, 0xfd, 0x4c, 0x7b, 0xdf, 0x37, 0xe2, 0xc7, 0xd6, 0x5a, 0xce, 0x96, 0x20, 0xef, 0x8f, 0x4f, 0x94, 0x05, 0x16, 0xa1, 0xb2, 0x44, 0x6a, 0xfd, 0xf2, 0xd6, 0x0a, 0xa9, 0xd2, 0xcf, 0x54, 0xe4, 0x04, 0xe9, 0x16, 0xd6, 0xd7, 0x76, 0x2a, 0xaa, 0xb2, 0xbb, 0xb9, 0xb3, 0xb6, 0x51, 0x91, 0x93, 0xfe, 0xb6, 0xf4, 0x3b, 0x09, 0x28, 0x04, 0x4f, 0x18, 0xe8, 0x33, 0x70, 0xa3, 0xb8, 0x0e, 0x70, 0xb0, 0xab, 0xbe, 0x60, 0xd8, 0x74, 0xcb, 0xb4, 0x34, 0xd6, 0x61, 0x7b, 0x8b, 0x36, 0xc5, 0xb5, 0xaa, 0xd8, 0x7d, 0xca, 0xb0, 0xc9, 0x86, 0x68, 0x69, 0x2e, 0x5a, 0x87, 0x13, 0xa6, 0xa5, 0x3a, 0xae, 0x66, 0xd6, 0x34, 0xbb, 0xa6, 0x76, 0x2f, 0x62, 0x54, 0x4d, 0xd7, 0xb1, 0xe3, 0x58, 0xac, 0x54, 0x79, 0x2c, 0xb7, 0x98, 0x56, 0x95, 0x2b, 0x77, 0x73, 0x78, 0x99, 0xab, 0x86, 0x02, 0x2c, 0xd9, 0x2f, 0xc0, 0x6e, 0x86, 0x6c, 0x4b, 0x6b, 0xab, 0xd8, 0x74, 0xed, 0x03, 0xda, 0x57, 0x66, 0x94, 0x4c, 0x4b, 0x6b, 0x57, 0xc8, 0xf3, 0x27, 0xd3, 0xde, 0xff, 0x30, 0x09, 0x79, 0x7f, 0x6f, 0x49, 0x5a, 0x75, 0x9d, 0xd6, 0x11, 0x89, 0x66, 0x9a, 0xdb, 0x06, 0x76, 0xa2, 0xf3, 0xcb, 0xa4, 0xc0, 0x94, 0x46, 0x58, 0xc7, 0xa7, 0x30, 0x24, 0x29, 0xee, 0x24, 0xb7, 0x60, 0x76, 0x8a, 0xc9, 0x28, 0xfc, 0x09, 0xad, 0xc2, 0xc8, 0x73, 0x0e, 0xe5, 0x1e, 0xa1, 0xdc, 0xb7, 0x0f, 0xe6, 0x7e, 0xbc, 0x4a, 0xc9, 0xb3, 0x8f, 0x57, 0xd5, 0xcd, 0x2d, 0x65, 0xa3, 0xbc, 0xae, 0x70, 0x38, 0xba, 0x09, 0x52, 0x4d, 0xed, 0xa5, 0x83, 0x60, 0x29, 0xa2, 0xa2, 0x61, 0x1d, 0x7f, 0x13, 0xa4, 0x5e, 0xc0, 0xda, 0x95, 0x60, 0x01, 0xa0, 0xa2, 0x8f, 0x31, 0xf4, 0x17, 0x20, 0x4d, 0xfd, 0x85, 0x00, 0xb8, 0xc7, 0xe4, 0x63, 0x28, 0x03, 0xa9, 0xe5, 0x2d, 0x85, 0x84, 0xbf, 0x0c, 0x79, 0x26, 0x55, 0xb7, 0xd7, 0x2a, 0xcb, 0x15, 0x39, 0x31, 0x7b, 0x16, 0x46, 0x98, 0x13, 0xc8, 0xd6, 0xf0, 0xdc, 0x20, 0x1f, 0xe3, 0x8f, 0x9c, 0x43, 0x12, 0x6f, 0x77, 0x37, 0x96, 0x2a, 0x8a, 0x9c, 0xf0, 0x2f, 0xaf, 0x03, 0x79, 0x7f, 0x5b, 0xf9, 0xc9, 0xc4, 0xd4, 0x3f, 0x4a, 0x90, 0xf3, 0xb5, 0x89, 0xa4, 0x41, 0xd1, 0x9a, 0x4d, 0xeb, 0x05, 0x55, 0x6b, 0x1a, 0x9a, 0xc3, 0x83, 0x02, 0xa8, 0xa8, 0x4c, 0x24, 0xc3, 0x2e, 0xda, 0x27, 0x62, 0xfc, 0xeb, 0x12, 0xc8, 0xe1, 0x16, 0x33, 0x64, 0xa0, 0xf4, 0x53, 0x35, 0xf0, 0x35, 0x09, 0x0a, 0xc1, 0xbe, 0x32, 0x64, 0xde, 0xa9, 0x9f, 0xaa, 0x79, 0x6f, 0x27, 0x60, 0x2c, 0xd0, 0x4d, 0x0e, 0x6b, 0xdd, 0xf3, 0x30, 0x61, 0xd4, 0x70, 0xab, 0x6d, 0xb9, 0xd8, 0xd4, 0x0f, 0xd4, 0x26, 0xbe, 0x8a, 0x9b, 0xc5, 0x59, 0x9a, 0x28, 0x16, 0x06, 0xf7, 0xab, 0xf3, 0x6b, 0x5d, 0xdc, 0x3a, 0x81, 0x95, 0x26, 0xd7, 0x56, 0x2a, 0x1b, 0xdb, 0x5b, 0x3b, 0x95, 0xcd, 0xe5, 0xa7, 0xd5, 0xdd, 0xcd, 0x27, 0x36, 0xb7, 0x9e, 0xda, 0x54, 0x64, 0x23, 0xa4, 0xf6, 0x31, 0x6e, 0xf5, 0x6d, 0x90, 0xc3, 0x46, 0xa1, 0x1b, 0x21, 0xca, 0x2c, 0xf9, 0x18, 0x9a, 0x84, 0xf1, 0xcd, 0x2d, 0xb5, 0xba, 0xb6, 0x52, 0x51, 0x2b, 0x17, 0x2f, 0x56, 0x96, 0x77, 0xaa, 0xec, 0x00, 0xef, 0x69, 0xef, 0x04, 0x37, 0xf5, 0xab, 0x49, 0x98, 0x8c, 0xb0, 0x04, 0x95, 0xf9, 0xd9, 0x81, 0x1d, 0x67, 0xee, 0x1b, 0xc6, 0xfa, 0x79, 0x52, 0xf2, 0xb7, 0x35, 0xdb, 0xe5, 0x47, 0x8d, 0xbb, 0x81, 0x78, 0xc9, 0x74, 0x8d, 0xba, 0x81, 0x6d, 0x7e, 0xdf, 0xc1, 0x0e, 0x14, 0xe3, 0x5d, 0x39, 0xbb, 0xf2, 0xb8, 0x17, 0x50, 0xdb, 0x72, 0x0c, 0xd7, 0xb8, 0x8a, 0x55, 0xc3, 0x14, 0x97, 0x23, 0xe4, 0x80, 0x91, 0x52, 0x64, 0xf1, 0x66, 0xcd, 0x74, 0x3d, 0x6d, 0x13, 0x37, 0xb4, 0x90, 0x36, 0x49, 0xe0, 0x49, 0x45, 0x16, 0x6f, 0x3c, 0xed, 0x53, 0x90, 0xaf, 0x59, 0x1d, 0xd2, 0x75, 0x31, 0x3d, 0x52, 0x2f, 0x24, 0x25, 0xc7, 0x64, 0x9e, 0x0a, 0xef, 0xa7, 0xbb, 0xb7, 0x32, 0x79, 0x25, 0xc7, 0x64, 0x4c, 0xe5, 0x2e, 0x18, 0xd7, 0x1a, 0x0d, 0x9b, 0x90, 0x0b, 0x22, 0x76, 0x42, 0x28, 0x78, 0x62, 0xaa, 0x38, 0xfd, 0x38, 0x64, 0x84, 0x1f, 0x48, 0x49, 0x26, 0x9e, 0x50, 0xdb, 0xec, 0x66, 0x2e, 0x31, 0x97, 0x55, 0x32, 0xa6, 0x78, 0x79, 0x0a, 0xf2, 0x86, 0xa3, 0x76, 0x2f, 0x99, 0x13, 0x27, 0x13, 0x73, 0x19, 0x25, 0x67, 0x38, 0xde, 0x05, 0xdd, 0xec, 0x1b, 0x09, 0x28, 0x04, 0x2f, 0xc9, 0xd1, 0x0a, 0x64, 0x9a, 0x96, 0xae, 0xd1, 0xd0, 0x62, 0x5f, 0x68, 0xe6, 0x62, 0xee, 0xd5, 0xe7, 0xd7, 0xb9, 0xbe, 0xe2, 0x21, 0xa7, 0xff, 0x55, 0x82, 0x8c, 0x10, 0xa3, 0xe3, 0x90, 0x6a, 0x6b, 0xee, 0x3e, 0xa5, 0x4b, 0x2f, 0x25, 0x64, 0x49, 0xa1, 0xcf, 0x44, 0xee, 0xb4, 0x35, 0x93, 0x86, 0x00, 0x97, 0x93, 0x67, 0xb2, 0xae, 0x4d, 0xac, 0xd5, 0xe8, 0xf1, 0xc3, 0x6a, 0xb5, 0xb0, 0xe9, 0x3a, 0x62, 0x5d, 0xb9, 0x7c, 0x99, 0x8b, 0xd1, 0x3d, 0x30, 0xe1, 0xda, 0x9a, 0xd1, 0x0c, 0xe8, 0xa6, 0xa8, 0xae, 0x2c, 0x5e, 0x78, 0xca, 0x25, 0xb8, 0x49, 0xf0, 0xd6, 0xb0, 0xab, 0xe9, 0xfb, 0xb8, 0xd6, 0x05, 0x8d, 0xd0, 0x1b, 0xd8, 0x1b, 0xb9, 0xc2, 0x0a, 0x7f, 0x2f, 0xb0, 0xb3, 0xdf, 0x93, 0x60, 0x42, 0x1c, 0x98, 0x6a, 0x9e, 0xb3, 0x36, 0x00, 0x34, 0xd3, 0xb4, 0x5c, 0xbf, 0xbb, 0x7a, 0x43, 0xb9, 0x07, 0x37, 0x5f, 0xf6, 0x40, 0x8a, 0x8f, 0x60, 0xba, 0x05, 0xd0, 0x7d, 0xd3, 0xd7, 0x6d, 0x27, 0x20, 0xc7, 0xbf, 0x80, 0xd0, 0xcf, 0x68, 0xec, 0x88, 0x0d, 0x4c, 0x44, 0x4e, 0x56, 0x68, 0x0a, 0xd2, 0x7b, 0xb8, 0x61, 0x98, 0xfc, 0x5e, 0x93, 0x3d, 0x88, 0xbb, 0xda, 0x94, 0x77, 0x57, 0xbb, 0x74, 0x19, 0x26, 0x75, 0xab, 0x15, 0x36, 0x77, 0x49, 0x0e, 0x1d, 0xf3, 0x9d, 0x4b, 0xd2, 0x33, 0xd0, 0x6d, 0x31, 0xbf, 0x94, 0x48, 0xae, 0x6e, 0x2f, 0x7d, 0x25, 0x31, 0xbd, 0xca, 0x70, 0xdb, 0x62, 0x9a, 0x0a, 0xae, 0x37, 0xb1, 0x4e, 0x4c, 0x87, 0x1f, 0xdf, 0x09, 0xf7, 0x35, 0x0c, 0x77, 0xbf, 0xb3, 0x37, 0xaf, 0x5b, 0xad, 0x85, 0x86, 0xd5, 0xb0, 0xba, 0x9f, 0x0d, 0xc9, 0x13, 0x7d, 0xa0, 0x7f, 0xf1, 0x4f, 0x87, 0x59, 0x4f, 0x3a, 0x1d, 0xfb, 0x9d, 0xb1, 0xb4, 0x09, 0x93, 0x5c, 0x59, 0xa5, 0xdf, 0x2e, 0xd8, 0x11, 0x02, 0x0d, 0xbc, 0xff, 0x29, 0x7e, 0xfd, 0x1d, 0x5a, 0xab, 0x95, 0x09, 0x0e, 0x25, 0xef, 0xd8, 0x29, 0xa3, 0xa4, 0xc0, 0x0d, 0x01, 0x3e, 0xb6, 0x2f, 0xb1, 0x1d, 0xc3, 0xf8, 0x1d, 0xce, 0x38, 0xe9, 0x63, 0xac, 0x72, 0x68, 0x69, 0x19, 0xc6, 0x8e, 0xc2, 0xf5, 0x4f, 0x9c, 0x2b, 0x8f, 0xfd, 0x24, 0xab, 0x30, 0x4e, 0x49, 0xf4, 0x8e, 0xe3, 0x5a, 0x2d, 0x9a, 0xf4, 0x06, 0xd3, 0xfc, 0xf3, 0x3b, 0x6c, 0xa3, 0x14, 0x08, 0x6c, 0xd9, 0x43, 0x95, 0x4a, 0x40, 0x3f, 0xd7, 0xd4, 0xb0, 0xde, 0x8c, 0x61, 0x78, 0x93, 0x1b, 0xe2, 0xe9, 0x97, 0x9e, 0x84, 0x29, 0xf2, 0x37, 0xcd, 0x49, 0x7e, 0x4b, 0xe2, 0x6f, 0xbb, 0x8a, 0xdf, 0x7b, 0x99, 0xed, 0xc5, 0x49, 0x8f, 0xc0, 0x67, 0x93, 0x6f, 0x15, 0x1b, 0xd8, 0x75, 0xb1, 0xed, 0xa8, 0x5a, 0x33, 0xca, 0x3c, 0xdf, 0x75, 0x41, 0xf1, 0xf3, 0xef, 0x05, 0x57, 0x71, 0x95, 0x21, 0xcb, 0xcd, 0x66, 0x69, 0x17, 0x6e, 0x8c, 0x88, 0x8a, 0x21, 0x38, 0x5f, 0xe5, 0x9c, 0x53, 0x3d, 0x91, 0x41, 0x68, 0xb7, 0x41, 0xc8, 0xbd, 0xb5, 0x1c, 0x82, 0xf3, 0x8f, 0x38, 0x27, 0xe2, 0x58, 0xb1, 0xa4, 0x84, 0xf1, 0x71, 0x98, 0xb8, 0x8a, 0xed, 0x3d, 0xcb, 0xe1, 0x57, 0x34, 0x43, 0xd0, 0xbd, 0xc6, 0xe9, 0xc6, 0x39, 0x90, 0xde, 0xd9, 0x10, 0xae, 0x87, 0x21, 0x53, 0xd7, 0x74, 0x3c, 0x04, 0xc5, 0x17, 0x38, 0xc5, 0x28, 0xd1, 0x27, 0xd0, 0x32, 0xe4, 0x1b, 0x16, 0x2f, 0x4b, 0xf1, 0xf0, 0xd7, 0x39, 0x3c, 0x27, 0x30, 0x9c, 0xa2, 0x6d, 0xb5, 0x3b, 0x4d, 0x52, 0xb3, 0xe2, 0x29, 0xfe, 0x58, 0x50, 0x08, 0x0c, 0xa7, 0x38, 0x82, 0x5b, 0xff, 0x44, 0x50, 0x38, 0x3e, 0x7f, 0x3e, 0x06, 0x39, 0xcb, 0x6c, 0x1e, 0x58, 0xe6, 0x30, 0x46, 0x7c, 0x91, 0x33, 0x00, 0x87, 0x10, 0x82, 0x0b, 0x90, 0x1d, 0x76, 0x21, 0xfe, 0xf4, 0x3d, 0xb1, 0x3d, 0xc4, 0x0a, 0xac, 0xc2, 0xb8, 0x48, 0x50, 0x86, 0x65, 0x0e, 0x41, 0xf1, 0x67, 0x9c, 0xa2, 0xe0, 0x83, 0xf1, 0x69, 0xb8, 0xd8, 0x71, 0x1b, 0x78, 0x18, 0x92, 0x37, 0xc4, 0x34, 0x38, 0x84, 0xbb, 0x72, 0x0f, 0x9b, 0xfa, 0xfe, 0x70, 0x0c, 0x5f, 0x16, 0xae, 0x14, 0x18, 0x42, 0xb1, 0x0c, 0x63, 0x2d, 0xcd, 0x76, 0xf6, 0xb5, 0xe6, 0x50, 0xcb, 0xf1, 0xe7, 0x9c, 0x23, 0xef, 0x81, 0xb8, 0x47, 0x3a, 0xe6, 0x51, 0x68, 0xbe, 0x22, 0x3c, 0xe2, 0x83, 0xf1, 0xad, 0xe7, 0xb8, 0xf4, 0x3e, 0xeb, 0x28, 0x6c, 0x5f, 0x15, 0x5b, 0x8f, 0x61, 0x37, 0xfc, 0x8c, 0x17, 0x20, 0xeb, 0x18, 0x2f, 0x0d, 0x45, 0xf3, 0x17, 0x62, 0xa5, 0x29, 0x80, 0x80, 0x9f, 0x86, 0x9b, 0x22, 0xcb, 0xc4, 0x10, 0x64, 0x7f, 0xc9, 0xc9, 0x8e, 0x47, 0x94, 0x0a, 0x9e, 0x12, 0x8e, 0x4a, 0xf9, 0x57, 0x22, 0x25, 0xe0, 0x10, 0xd7, 0x36, 0x39, 0x28, 0x38, 0x5a, 0xfd, 0x68, 0x5e, 0xfb, 0x6b, 0xe1, 0x35, 0x86, 0x0d, 0x78, 0x6d, 0x07, 0x8e, 0x73, 0xc6, 0xa3, 0xad, 0xeb, 0xd7, 0x44, 0x62, 0x65, 0xe8, 0xdd, 0xe0, 0xea, 0xfe, 0x3c, 0x4c, 0x7b, 0xee, 0x14, 0x1d, 0xa9, 0xa3, 0xb6, 0xb4, 0xf6, 0x10, 0xcc, 0x5f, 0xe7, 0xcc, 0x22, 0xe3, 0x7b, 0x2d, 0xad, 0xb3, 0xa1, 0xb5, 0x09, 0xf9, 0x65, 0x28, 0x0a, 0xf2, 0x8e, 0x69, 0x63, 0xdd, 0x6a, 0x98, 0xc6, 0x4b, 0xb8, 0x36, 0x04, 0xf5, 0xdf, 0x84, 0x96, 0x6a, 0xd7, 0x07, 0x27, 0xcc, 0x6b, 0x20, 0x7b, 0xbd, 0x8a, 0x6a, 0xb4, 0xda, 0x96, 0xed, 0xc6, 0x30, 0x7e, 0x43, 0xac, 0x94, 0x87, 0x5b, 0xa3, 0xb0, 0x52, 0x05, 0x0a, 0xf4, 0x71, 0xd8, 0x90, 0xfc, 0x5b, 0x4e, 0x34, 0xd6, 0x45, 0xf1, 0xc4, 0xa1, 0x5b, 0xad, 0xb6, 0x66, 0x0f, 0x93, 0xff, 0xfe, 0x4e, 0x24, 0x0e, 0x0e, 0xe1, 0x89, 0xc3, 0x3d, 0x68, 0x63, 0x52, 0xed, 0x87, 0x60, 0xf8, 0xa6, 0x48, 0x1c, 0x02, 0xc3, 0x29, 0x44, 0xc3, 0x30, 0x04, 0xc5, 0xdf, 0x0b, 0x0a, 0x81, 0x21, 0x14, 0x9f, 0xed, 0x16, 0x5a, 0x1b, 0x37, 0x0c, 0xc7, 0xb5, 0x59, 0x1f, 0x3c, 0x98, 0xea, 0x5b, 0xef, 0x05, 0x9b, 0x30, 0xc5, 0x07, 0x2d, 0x3d, 0x0e, 0xe3, 0xa1, 0x16, 0x03, 0xc5, 0xfd, 0xf6, 0xa3, 0xf8, 0xcb, 0x1f, 0xf0, 0x64, 0x14, 0xec, 0x30, 0x4a, 0xeb, 0x64, 0xdd, 0x83, 0x7d, 0x40, 0x3c, 0xd9, 0xcb, 0x1f, 0x78, 0x4b, 0x1f, 0x68, 0x03, 0x4a, 0x17, 0x61, 0x2c, 0xd0, 0x03, 0xc4, 0x53, 0xfd, 0x0a, 0xa7, 0xca, 0xfb, 0x5b, 0x80, 0xd2, 0x59, 0x48, 0x91, 0x7a, 0x1e, 0x0f, 0xff, 0x55, 0x0e, 0xa7, 0xea, 0xa5, 0x47, 0x20, 0x23, 0xea, 0x78, 0x3c, 0xf4, 0xd7, 0x38, 0xd4, 0x83, 0x10, 0xb8, 0xa8, 0xe1, 0xf1, 0xf0, 0x5f, 0x17, 0x70, 0x01, 0x21, 0xf0, 0xe1, 0x5d, 0xf8, 0xed, 0xdf, 0x48, 0xf1, 0x3c, 0x2c, 0x7c, 0x77, 0x01, 0x46, 0x79, 0xf1, 0x8e, 0x47, 0x7f, 0x8e, 0x0f, 0x2e, 0x10, 0xa5, 0x87, 0x20, 0x3d, 0xa4, 0xc3, 0x7f, 0x93, 0x43, 0x99, 0x7e, 0x69, 0x19, 0x72, 0xbe, 0x82, 0x1d, 0x0f, 0xff, 0x2d, 0x0e, 0xf7, 0xa3, 0x88, 0xe9, 0xbc, 0x60, 0xc7, 0x13, 0xfc, 0xb6, 0x30, 0x9d, 0x23, 0x88, 0xdb, 0x44, 0xad, 0x8e, 0x47, 0xff, 0x8e, 0xf0, 0xba, 0x80, 0x94, 0x1e, 0x83, 0xac, 0x97, 0x7f, 0xe3, 0xf1, 0xbf, 0xcb, 0xf1, 0x5d, 0x0c, 0xf1, 0x80, 0x2f, 0xff, 0xc7, 0x53, 0xfc, 0x9e, 0xf0, 0x80, 0x0f, 0x45, 0xb6, 0x51, 0xb8, 0xa6, 0xc7, 0x33, 0xfd, 0xbe, 0xd8, 0x46, 0xa1, 0x92, 0x4e, 0x56, 0x93, 0xa6, 0xc1, 0x78, 0x8a, 0x3f, 0x10, 0xab, 0x49, 0xf5, 0x89, 0x19, 0xe1, 0x22, 0x19, 0xcf, 0xf1, 0x87, 0xc2, 0x8c, 0x50, 0x8d, 0x2c, 0x6d, 0x03, 0xea, 0x2d, 0x90, 0xf1, 0x7c, 0xaf, 0x70, 0xbe, 0x89, 0x9e, 0xfa, 0x58, 0x7a, 0x0a, 0x8e, 0x47, 0x17, 0xc7, 0x78, 0xd6, 0xcf, 0x7f, 0x10, 0x3a, 0xce, 0xf8, 0x6b, 0x63, 0x69, 0xa7, 0x9b, 0x65, 0xfd, 0x85, 0x31, 0x9e, 0xf6, 0xd5, 0x0f, 0x82, 0x89, 0xd6, 0x5f, 0x17, 0x4b, 0x65, 0x80, 0x6e, 0x4d, 0x8a, 0xe7, 0x7a, 0x8d, 0x73, 0xf9, 0x40, 0x64, 0x6b, 0xf0, 0x92, 0x14, 0x8f, 0xff, 0x82, 0xd8, 0x1a, 0x1c, 0x41, 0xb6, 0x86, 0xa8, 0x46, 0xf1, 0xe8, 0xd7, 0xc5, 0xd6, 0x10, 0x90, 0xd2, 0x05, 0xc8, 0x98, 0x9d, 0x66, 0x93, 0xc4, 0x16, 0x1a, 0xfc, 0x73, 0xa6, 0xe2, 0x7f, 0x7c, 0xc8, 0xc1, 0x02, 0x50, 0x3a, 0x0b, 0x69, 0xdc, 0xda, 0xc3, 0xb5, 0x38, 0xe4, 0x7f, 0x7e, 0x28, 0xf2, 0x09, 0xd1, 0x2e, 0x3d, 0x06, 0xc0, 0x0e, 0xd3, 0xf4, 0x2b, 0x51, 0x0c, 0xf6, 0xbf, 0x3e, 0xe4, 0xbf, 0x94, 0xe8, 0x42, 0xba, 0x04, 0xec, 0x77, 0x17, 0x83, 0x09, 0xde, 0x0b, 0x12, 0xd0, 0x03, 0xf8, 0xc3, 0x30, 0xfa, 0x9c, 0x63, 0x99, 0xae, 0xd6, 0x88, 0x43, 0xff, 0x37, 0x47, 0x0b, 0x7d, 0xe2, 0xb0, 0x96, 0x65, 0x63, 0x57, 0x6b, 0x38, 0x71, 0xd8, 0xff, 0xe1, 0x58, 0x0f, 0x40, 0xc0, 0xba, 0xe6, 0xb8, 0xc3, 0xcc, 0xfb, 0x7f, 0x05, 0x58, 0x00, 0x88, 0xd1, 0xe4, 0xef, 0x2b, 0xf8, 0x20, 0x0e, 0xfb, 0xbe, 0x30, 0x9a, 0xeb, 0x97, 0x1e, 0x81, 0x2c, 0xf9, 0x93, 0xfd, 0x7a, 0x28, 0x06, 0xfc, 0x7f, 0x1c, 0xdc, 0x45, 0x90, 0x91, 0x1d, 0xb7, 0xe6, 0x1a, 0xf1, 0xce, 0xfe, 0x11, 0x5f, 0x69, 0xa1, 0x5f, 0x2a, 0x43, 0xce, 0x71, 0x6b, 0xb5, 0x0e, 0xef, 0x68, 0x62, 0xe0, 0x3f, 0xfe, 0xd0, 0x3b, 0xe4, 0x7a, 0x98, 0xa5, 0x53, 0xd1, 0x97, 0x75, 0xb0, 0x6a, 0xad, 0x5a, 0xec, 0x9a, 0x0e, 0x7e, 0x74, 0x1f, 0xdc, 0xa2, 0x5b, 0xad, 0x3d, 0xcb, 0x59, 0xd8, 0xb3, 0xdc, 0xfd, 0x85, 0x96, 0xd6, 0x76, 0xa8, 0xe2, 0x22, 0xbf, 0x64, 0xcb, 0xf1, 0x27, 0xf2, 0x62, 0xfa, 0x68, 0x17, 0x74, 0xb3, 0xb7, 0xc2, 0xd8, 0xc5, 0xa6, 0xa5, 0xb9, 0x86, 0xd9, 0xd8, 0xb6, 0x0c, 0xd3, 0x45, 0x79, 0x90, 0xea, 0xf4, 0xeb, 0x92, 0xa4, 0x48, 0xf5, 0xd9, 0x7f, 0x49, 0x43, 0x96, 0xdd, 0xed, 0x6c, 0x68, 0x6d, 0xf4, 0x4b, 0x90, 0xdf, 0xe4, 0xdb, 0xe3, 0x81, 0xc5, 0xf3, 0x8e, 0x77, 0x91, 0xec, 0x1b, 0x7f, 0xde, 0xd3, 0x9e, 0xf7, 0xab, 0xd2, 0xaf, 0xc9, 0x4b, 0xf7, 0xff, 0xe0, 0xad, 0x13, 0xf7, 0xf6, 0xb5, 0x8f, 0xd4, 0xc3, 0x05, 0x16, 0xc7, 0xf3, 0xbb, 0x86, 0xe9, 0x3e, 0xb0, 0x78, 0x5e, 0x09, 0x8c, 0x87, 0xae, 0x42, 0x86, 0xbf, 0x70, 0xf8, 0x07, 0x86, 0xdb, 0xfb, 0x8c, 0x2d, 0xd4, 0xd8, 0xb8, 0x67, 0xde, 0x7c, 0xeb, 0xc4, 0xb1, 0x23, 0x8f, 0xed, 0x8d, 0x85, 0x9e, 0x87, 0x9c, 0xb0, 0x63, 0xad, 0xe6, 0xf0, 0xdf, 0x63, 0xdf, 0x15, 0x33, 0xed, 0xb5, 0x1a, 0x1f, 0xfd, 0xce, 0x1f, 0xbc, 0x75, 0x62, 0x76, 0xe0, 0xc8, 0xf3, 0xbb, 0x1d, 0xa3, 0xa6, 0xf8, 0xc7, 0x40, 0xcf, 0x42, 0x92, 0x0c, 0xc5, 0x7e, 0xb9, 0x7d, 0xa2, 0xcf, 0x50, 0xde, 0x10, 0xa7, 0xf9, 0x04, 0x87, 0x19, 0x86, 0xf0, 0x4e, 0x3f, 0x06, 0x13, 0x3d, 0xcb, 0x83, 0x64, 0x48, 0x5e, 0xc1, 0x07, 0xfc, 0xc7, 0x4e, 0xe4, 0x4f, 0x34, 0xd5, 0xfd, 0x31, 0x9f, 0x34, 0x97, 0xe7, 0xbf, 0xd0, 0x2b, 0x25, 0xce, 0x4b, 0xd3, 0x17, 0x60, 0x2c, 0xe0, 0xe3, 0x23, 0x81, 0x1f, 0x05, 0x39, 0xec, 0xa5, 0x23, 0xe1, 0xcf, 0x41, 0xe6, 0xa3, 0xe0, 0x66, 0xbf, 0x8f, 0x60, 0xb4, 0xdc, 0x6c, 0x6e, 0x68, 0x6d, 0x07, 0x3d, 0x0d, 0x13, 0xac, 0x6b, 0xdf, 0xb1, 0x56, 0xe8, 0x27, 0x9d, 0x0d, 0xad, 0xcd, 0x03, 0xfa, 0x9e, 0x80, 0xbb, 0x39, 0x60, 0xbe, 0x47, 0x9b, 0x8e, 0xaf, 0xf4, 0xb2, 0xa0, 0x27, 0x41, 0x16, 0x42, 0xba, 0xb7, 0x08, 0x33, 0x0b, 0xd7, 0xd3, 0x03, 0x99, 0x85, 0x32, 0x23, 0xee, 0xe1, 0x40, 0x8f, 0x42, 0x66, 0xcd, 0x74, 0x1f, 0x5c, 0x24, 0x7c, 0x2c, 0x06, 0x67, 0x23, 0xf9, 0x84, 0x12, 0xe3, 0xf1, 0x30, 0x1c, 0x7f, 0xee, 0x0c, 0xc1, 0xa7, 0x06, 0xe3, 0xa9, 0x52, 0x17, 0x4f, 0x1f, 0x51, 0x19, 0xb2, 0x64, 0xcd, 0x99, 0x01, 0xec, 0xbf, 0x02, 0xdc, 0x16, 0x49, 0xe0, 0x69, 0x31, 0x86, 0x2e, 0x4a, 0x50, 0x30, 0x1b, 0x46, 0x62, 0x28, 0x7c, 0x46, 0x74, 0x51, 0x84, 0xa2, 0xea, 0x59, 0x31, 0x3a, 0x80, 0xa2, 0x1a, 0xb2, 0xa2, 0xea, 0xb7, 0xa2, 0xea, 0x59, 0x91, 0x89, 0xa1, 0xf0, 0x5b, 0xe1, 0x3d, 0xa3, 0x15, 0x80, 0x8b, 0xc6, 0x8b, 0xb8, 0xc6, 0xcc, 0xc8, 0x46, 0x24, 0x23, 0xc1, 0xd1, 0x55, 0x63, 0x24, 0x3e, 0x1c, 0x5a, 0x85, 0x5c, 0xb5, 0xde, 0xa5, 0x01, 0xfe, 0x3f, 0x21, 0x22, 0x4d, 0xa9, 0x87, 0x78, 0xfc, 0x48, 0xcf, 0x1c, 0x36, 0xa5, 0x5c, 0x9c, 0x39, 0xbe, 0x39, 0xf9, 0x70, 0x5d, 0x73, 0x18, 0x4d, 0x3e, 0xd6, 0x1c, 0x1f, 0x8f, 0x1f, 0x89, 0x2e, 0xc0, 0xe8, 0x92, 0x65, 0x11, 0xcd, 0xe2, 0x18, 0x25, 0x39, 0x15, 0x49, 0xc2, 0x75, 0x18, 0x81, 0x40, 0xd0, 0xd5, 0xa1, 0xa1, 0x4f, 0xe0, 0x85, 0x41, 0xab, 0x23, 0xb4, 0xc4, 0xea, 0x88, 0x67, 0xff, 0x0e, 0x5c, 0x3a, 0x70, 0x31, 0xe9, 0x90, 0x8b, 0xe3, 0x43, 0xec, 0x40, 0xa1, 0x1c, 0xda, 0x81, 0x42, 0x8c, 0xaa, 0x30, 0x2e, 0x64, 0x15, 0xb3, 0x43, 0x72, 0x70, 0x51, 0xe6, 0x3f, 0x73, 0x1e, 0x44, 0xcb, 0x75, 0x19, 0x6b, 0x98, 0x01, 0x6d, 0x43, 0x41, 0x88, 0x36, 0x1c, 0x3a, 0xe9, 0x89, 0x88, 0xba, 0x1a, 0xe6, 0x64, 0xaa, 0x8c, 0x32, 0x84, 0x9f, 0x5e, 0x81, 0xe3, 0xd1, 0xd9, 0x2a, 0x2e, 0x5b, 0x4a, 0xfe, 0x2c, 0xbb, 0x0c, 0x37, 0x44, 0x66, 0xa6, 0x38, 0x92, 0x44, 0xa8, 0x4e, 0x04, 0xd2, 0x91, 0x1f, 0x9c, 0x8e, 0x00, 0xa7, 0x7b, 0xc1, 0xdd, 0x20, 0xf3, 0x83, 0x93, 0x11, 0xe0, 0xa4, 0x1f, 0xfc, 0x19, 0x28, 0x04, 0xf3, 0x90, 0x1f, 0x3d, 0x16, 0x81, 0x1e, 0x8b, 0x40, 0x47, 0x8f, 0x9d, 0x8a, 0x40, 0xa7, 0x42, 0xe8, 0x6a, 0xdf, 0xb1, 0x27, 0x22, 0xd0, 0x13, 0x11, 0xe8, 0xe8, 0xb1, 0x51, 0x04, 0x1a, 0xf9, 0xd1, 0x8f, 0xc0, 0x78, 0x28, 0xe5, 0xf8, 0xe1, 0xa3, 0x11, 0xf0, 0xd1, 0x50, 0x6d, 0x0e, 0xa7, 0x1a, 0x3f, 0x7e, 0x3c, 0x02, 0x3f, 0x1e, 0x35, 0x7c, 0xb4, 0xf5, 0x23, 0x11, 0xf0, 0x91, 0xc8, 0xe1, 0xa3, 0xf1, 0x72, 0x04, 0x5e, 0xf6, 0xe3, 0x4b, 0x90, 0xf7, 0x67, 0x15, 0x3f, 0x36, 0x13, 0x81, 0xcd, 0x84, 0xfd, 0x1e, 0x48, 0x29, 0x71, 0x91, 0x9e, 0xed, 0xb3, 0x5d, 0x02, 0x69, 0xe4, 0x48, 0x9d, 0xcd, 0x65, 0x98, 0x8a, 0x4a, 0x1a, 0x11, 0x1c, 0xa7, 0xfd, 0x1c, 0x85, 0xc5, 0xa9, 0x40, 0xb2, 0xa0, 0xb8, 0x4e, 0xcb, 0xcf, 0xfc, 0x2c, 0x4c, 0x46, 0xa4, 0x8e, 0x08, 0xe2, 0xfb, 0xfd, 0xc4, 0xb9, 0xc5, 0xe9, 0x00, 0x71, 0xe0, 0xac, 0xe0, 0x6f, 0xad, 0x7e, 0x38, 0x09, 0x05, 0x9e, 0xa2, 0xb6, 0xec, 0x1a, 0xb6, 0x71, 0x0d, 0xfd, 0x42, 0xff, 0x0e, 0x6b, 0x31, 0x2a, 0xb5, 0x71, 0xdc, 0x11, 0x1a, 0xad, 0x67, 0xfb, 0x36, 0x5a, 0x0f, 0x0c, 0x33, 0x40, 0x5c, 0xbf, 0x55, 0xe9, 0xe9, 0xb7, 0xee, 0x1e, 0x44, 0xdb, 0xaf, 0xed, 0xaa, 0xf4, 0xb4, 0x5d, 0x71, 0x34, 0x91, 0xdd, 0xd7, 0xa5, 0xde, 0xee, 0xeb, 0xf4, 0x20, 0x9e, 0xfe, 0x4d, 0xd8, 0xa5, 0xde, 0x26, 0x2c, 0x96, 0x29, 0xba, 0x17, 0xbb, 0xd4, 0xdb, 0x8b, 0x0d, 0x64, 0xea, 0xdf, 0x92, 0x5d, 0xea, 0x6d, 0xc9, 0x62, 0x99, 0xa2, 0x3b, 0xb3, 0x27, 0x22, 0x3a, 0xb3, 0x7b, 0x06, 0x51, 0x0d, 0x6a, 0xd0, 0x36, 0xa3, 0x1a, 0xb4, 0x7b, 0x07, 0x1a, 0x36, 0xb0, 0x4f, 0x7b, 0x22, 0xa2, 0x4f, 0x8b, 0x37, 0xae, 0x4f, 0xbb, 0xb6, 0x19, 0xd5, 0xae, 0x0d, 0x61, 0x5c, 0xbf, 0xae, 0x6d, 0x29, 0xdc, 0xb5, 0xcd, 0x0d, 0xe2, 0x8a, 0x6e, 0xde, 0x2e, 0xf5, 0x36, 0x6f, 0xa7, 0xe3, 0xf7, 0x62, 0x54, 0x0f, 0xf7, 0x6c, 0xdf, 0x1e, 0x6e, 0xa8, 0xcd, 0x1d, 0xd7, 0xca, 0x3d, 0xd3, 0xaf, 0x95, 0xbb, 0x7f, 0x18, 0xf6, 0xc1, 0x1d, 0xdd, 0x53, 0x7d, 0x3a, 0xba, 0x85, 0x61, 0xa8, 0x3f, 0x6d, 0xec, 0x3e, 0x6d, 0xec, 0x3e, 0x6d, 0xec, 0x3e, 0x6d, 0xec, 0x7e, 0x36, 0x1a, 0xbb, 0x52, 0xea, 0x95, 0x2f, 0x9e, 0x90, 0x4e, 0x9f, 0x82, 0x51, 0x3e, 0x34, 0x1a, 0x81, 0xc4, 0x46, 0x59, 0x3e, 0x46, 0xff, 0x5d, 0x92, 0x25, 0xfa, 0xef, 0xb2, 0x9c, 0x58, 0x5a, 0x7f, 0xf3, 0xfa, 0xcc, 0xb1, 0xef, 0x5e, 0x9f, 0x39, 0xf6, 0xfd, 0xeb, 0x33, 0xc7, 0xde, 0xbe, 0x3e, 0x23, 0xbd, 0x7b, 0x7d, 0x46, 0x7a, 0xff, 0xfa, 0x8c, 0xf4, 0x93, 0xeb, 0x33, 0xd2, 0xb5, 0xc3, 0x19, 0xe9, 0xcb, 0x87, 0x33, 0xd2, 0xd7, 0x0e, 0x67, 0xa4, 0x6f, 0x1d, 0xce, 0x48, 0xdf, 0x3e, 0x9c, 0x91, 0xde, 0x3c, 0x9c, 0x91, 0xbe, 0x7b, 0x38, 0x23, 0xbd, 0x7d, 0x38, 0x23, 0xbd, 0x7b, 0x38, 0x73, 0xec, 0xfd, 0xc3, 0x19, 0xe9, 0x27, 0x87, 0x33, 0xc7, 0xae, 0xfd, 0xdb, 0xcc, 0xb1, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xef, 0x64, 0xe0, 0x84, 0x99, 0x46, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x MapEnum) String() string { s, ok := MapEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *FloatingPoint) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FloatingPoint") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FloatingPoint but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FloatingPoint but is not nil && this == nil") } if this.F != nil && that1.F != nil { if *this.F != *that1.F { return fmt.Errorf("F this(%v) Not Equal that(%v)", *this.F, *that1.F) } } else if this.F != nil { return fmt.Errorf("this.F == nil && that.F != nil") } else if that1.F != nil { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *FloatingPoint) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.F != nil && that1.F != nil { if *this.F != *that1.F { return false } } else if this.F != nil { return false } else if that1.F != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomMap) if !ok { that2, ok := that.(CustomMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomMap but is not nil && this == nil") } if len(this.Nullable128S) != len(that1.Nullable128S) { return fmt.Errorf("Nullable128S this(%v) Not Equal that(%v)", len(this.Nullable128S), len(that1.Nullable128S)) } for i := range this.Nullable128S { if !this.Nullable128S[i].Equal(*that1.Nullable128S[i]) { //nullable return fmt.Errorf("Nullable128S this[%v](%v) Not Equal that[%v](%v)", i, this.Nullable128S[i], i, that1.Nullable128S[i]) } } if len(this.Uint128S) != len(that1.Uint128S) { return fmt.Errorf("Uint128S this(%v) Not Equal that(%v)", len(this.Uint128S), len(that1.Uint128S)) } for i := range this.Uint128S { if !this.Uint128S[i].Equal(that1.Uint128S[i]) { //not nullable return fmt.Errorf("Uint128S this[%v](%v) Not Equal that[%v](%v)", i, this.Uint128S[i], i, that1.Uint128S[i]) } } if len(this.NullableIds) != len(that1.NullableIds) { return fmt.Errorf("NullableIds this(%v) Not Equal that(%v)", len(this.NullableIds), len(that1.NullableIds)) } for i := range this.NullableIds { if !this.NullableIds[i].Equal(*that1.NullableIds[i]) { //nullable return fmt.Errorf("NullableIds this[%v](%v) Not Equal that[%v](%v)", i, this.NullableIds[i], i, that1.NullableIds[i]) } } if len(this.Ids) != len(that1.Ids) { return fmt.Errorf("Ids this(%v) Not Equal that(%v)", len(this.Ids), len(that1.Ids)) } for i := range this.Ids { if !this.Ids[i].Equal(that1.Ids[i]) { //not nullable return fmt.Errorf("Ids this[%v](%v) Not Equal that[%v](%v)", i, this.Ids[i], i, that1.Ids[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomMap) if !ok { that2, ok := that.(CustomMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Nullable128S) != len(that1.Nullable128S) { return false } for i := range this.Nullable128S { if !this.Nullable128S[i].Equal(*that1.Nullable128S[i]) { //nullable return false } } if len(this.Uint128S) != len(that1.Uint128S) { return false } for i := range this.Uint128S { if !this.Uint128S[i].Equal(that1.Uint128S[i]) { //not nullable return false } } if len(this.NullableIds) != len(that1.NullableIds) { return false } for i := range this.NullableIds { if !this.NullableIds[i].Equal(*that1.NullableIds[i]) { //nullable return false } } if len(this.Ids) != len(that1.Ids) { return false } for i := range this.Ids { if !this.Ids[i].Equal(that1.Ids[i]) { //not nullable return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllMaps) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMaps") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMaps but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMaps but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllMaps) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllMapsOrdered) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMapsOrdered") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMapsOrdered but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMapsOrdered but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllMapsOrdered) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type FloatingPointFace interface { Proto() github_com_gogo_protobuf_proto.Message GetF() *float64 } func (this *FloatingPoint) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *FloatingPoint) TestProto() github_com_gogo_protobuf_proto.Message { return NewFloatingPointFromFace(this) } func (this *FloatingPoint) GetF() *float64 { return this.F } func NewFloatingPointFromFace(that FloatingPointFace) *FloatingPoint { this := &FloatingPoint{} this.F = that.GetF() return this } type CustomMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNullable128S() map[string]*github_com_gogo_protobuf_test_custom.Uint128 GetUint128S() map[string]github_com_gogo_protobuf_test_custom.Uint128 GetNullableIds() map[string]*github_com_gogo_protobuf_test.Uuid GetIds() map[string]github_com_gogo_protobuf_test.Uuid } func (this *CustomMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomMapFromFace(this) } func (this *CustomMap) GetNullable128S() map[string]*github_com_gogo_protobuf_test_custom.Uint128 { return this.Nullable128S } func (this *CustomMap) GetUint128S() map[string]github_com_gogo_protobuf_test_custom.Uint128 { return this.Uint128S } func (this *CustomMap) GetNullableIds() map[string]*github_com_gogo_protobuf_test.Uuid { return this.NullableIds } func (this *CustomMap) GetIds() map[string]github_com_gogo_protobuf_test.Uuid { return this.Ids } func NewCustomMapFromFace(that CustomMapFace) *CustomMap { this := &CustomMap{} this.Nullable128S = that.GetNullable128S() this.Uint128S = that.GetUint128S() this.NullableIds = that.GetNullableIds() this.Ids = that.GetIds() return this } type AllMapsFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMaps) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMaps) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsFromFace(this) } func (this *AllMaps) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMaps) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMaps) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMaps) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMaps) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMaps) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMaps) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMaps) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMaps) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMaps) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMaps) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMaps) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMaps) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMaps) GetStringMap() map[string]string { return this.StringMap } func (this *AllMaps) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMaps) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMaps) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsFromFace(that AllMapsFace) *AllMaps { this := &AllMaps{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type AllMapsOrderedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMapsOrdered) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMapsOrdered) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsOrderedFromFace(this) } func (this *AllMapsOrdered) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMapsOrdered) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMapsOrdered) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMapsOrdered) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMapsOrdered) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMapsOrdered) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMapsOrdered) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMapsOrdered) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMapsOrdered) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMapsOrdered) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMapsOrdered) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMapsOrdered) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMapsOrdered) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMapsOrdered) GetStringMap() map[string]string { return this.StringMap } func (this *AllMapsOrdered) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMapsOrdered) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMapsOrdered) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsOrderedFromFace(that AllMapsOrderedFace) *AllMapsOrdered { this := &AllMapsOrdered{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } func (this *FloatingPoint) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&proto2_maps.FloatingPoint{") if this.F != nil { s = append(s, "F: "+valueToGoStringMapsproto2(this.F, "float64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&proto2_maps.CustomMap{") keysForNullable128S := make([]string, 0, len(this.Nullable128S)) for k := range this.Nullable128S { keysForNullable128S = append(keysForNullable128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullable128S) mapStringForNullable128S := "map[string]*github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForNullable128S { mapStringForNullable128S += fmt.Sprintf("%#v: %#v,", k, this.Nullable128S[k]) } mapStringForNullable128S += "}" if this.Nullable128S != nil { s = append(s, "Nullable128S: "+mapStringForNullable128S+",\n") } keysForUint128S := make([]string, 0, len(this.Uint128S)) for k := range this.Uint128S { keysForUint128S = append(keysForUint128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForUint128S) mapStringForUint128S := "map[string]github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForUint128S { mapStringForUint128S += fmt.Sprintf("%#v: %#v,", k, this.Uint128S[k]) } mapStringForUint128S += "}" if this.Uint128S != nil { s = append(s, "Uint128S: "+mapStringForUint128S+",\n") } keysForNullableIds := make([]string, 0, len(this.NullableIds)) for k := range this.NullableIds { keysForNullableIds = append(keysForNullableIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullableIds) mapStringForNullableIds := "map[string]*github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForNullableIds { mapStringForNullableIds += fmt.Sprintf("%#v: %#v,", k, this.NullableIds[k]) } mapStringForNullableIds += "}" if this.NullableIds != nil { s = append(s, "NullableIds: "+mapStringForNullableIds+",\n") } keysForIds := make([]string, 0, len(this.Ids)) for k := range this.Ids { keysForIds = append(keysForIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForIds) mapStringForIds := "map[string]github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForIds { mapStringForIds += fmt.Sprintf("%#v: %#v,", k, this.Ids[k]) } mapStringForIds += "}" if this.Ids != nil { s = append(s, "Ids: "+mapStringForIds+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMaps) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&proto2_maps.AllMaps{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMapsOrdered) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&proto2_maps.AllMapsOrdered{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringMapsproto2(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *FloatingPoint) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FloatingPoint) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.F != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.F)))) i += 8 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Nullable128S) > 0 { for k := range m.Nullable128S { dAtA[i] = 0xa i++ v := m.Nullable128S[k] cSize := 0 if v != nil { cSize = v.Size() cSize += 1 + sovMapsproto2(uint64(cSize)) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + cSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n1, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } } } if len(m.Uint128S) > 0 { for k := range m.Uint128S { dAtA[i] = 0x12 i++ v := m.Uint128S[k] cSize := 0 cSize = v.Size() cSize += 1 + sovMapsproto2(uint64(cSize)) mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + cSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n2, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } } if len(m.NullableIds) > 0 { for k := range m.NullableIds { dAtA[i] = 0x1a i++ v := m.NullableIds[k] cSize := 0 if v != nil { cSize = v.Size() cSize += 1 + sovMapsproto2(uint64(cSize)) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + cSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n3, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 } } } if len(m.Ids) > 0 { for k := range m.Ids { dAtA[i] = 0x22 i++ v := m.Ids[k] cSize := 0 cSize = v.Size() cSize += 1 + sovMapsproto2(uint64(cSize)) mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + cSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n4, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n4 } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AllMaps) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllMaps) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StringToDoubleMap) > 0 { for k := range m.StringToDoubleMap { dAtA[i] = 0xa i++ v := m.StringToDoubleMap[k] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } if len(m.StringToFloatMap) > 0 { for k := range m.StringToFloatMap { dAtA[i] = 0x12 i++ v := m.StringToFloatMap[k] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(v)))) i += 4 } } if len(m.Int32Map) > 0 { for k := range m.Int32Map { dAtA[i] = 0x1a i++ v := m.Int32Map[k] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Int64Map) > 0 { for k := range m.Int64Map { dAtA[i] = 0x22 i++ v := m.Int64Map[k] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Uint32Map) > 0 { for k := range m.Uint32Map { dAtA[i] = 0x2a i++ v := m.Uint32Map[k] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Uint64Map) > 0 { for k := range m.Uint64Map { dAtA[i] = 0x32 i++ v := m.Uint64Map[k] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Sint32Map) > 0 { for k := range m.Sint32Map { dAtA[i] = 0x3a i++ v := m.Sint32Map[k] mapSize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint32(k)<<1)^uint32((k>>31)))) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint32(v)<<1)^uint32((v>>31)))) } } if len(m.Sint64Map) > 0 { for k := range m.Sint64Map { dAtA[i] = 0x42 i++ v := m.Sint64Map[k] mapSize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint64(v)<<1)^uint64((v>>63)))) } } if len(m.Fixed32Map) > 0 { for k := range m.Fixed32Map { dAtA[i] = 0x4a i++ v := m.Fixed32Map[k] mapSize := 1 + 4 + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Sfixed32Map) > 0 { for k := range m.Sfixed32Map { dAtA[i] = 0x52 i++ v := m.Sfixed32Map[k] mapSize := 1 + 4 + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Fixed64Map) > 0 { for k := range m.Fixed64Map { dAtA[i] = 0x5a i++ v := m.Fixed64Map[k] mapSize := 1 + 8 + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.Sfixed64Map) > 0 { for k := range m.Sfixed64Map { dAtA[i] = 0x62 i++ v := m.Sfixed64Map[k] mapSize := 1 + 8 + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.BoolMap) > 0 { for k := range m.BoolMap { dAtA[i] = 0x6a i++ v := m.BoolMap[k] mapSize := 1 + 1 + 1 + 1 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x10 i++ if v { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.StringMap) > 0 { for k := range m.StringMap { dAtA[i] = 0x72 i++ v := m.StringMap[k] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.StringToBytesMap) > 0 { for k := range m.StringToBytesMap { dAtA[i] = 0x7a i++ v := m.StringToBytesMap[k] byteSize := 0 if v != nil { byteSize = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + byteSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } if len(m.StringToEnumMap) > 0 { for k := range m.StringToEnumMap { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ v := m.StringToEnumMap[k] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.StringToMsgMap) > 0 { for k := range m.StringToMsgMap { dAtA[i] = 0x8a i++ dAtA[i] = 0x1 i++ v := m.StringToMsgMap[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovMapsproto2(uint64(msgSize)) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + msgSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n5, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n5 } } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AllMapsOrdered) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllMapsOrdered) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StringToDoubleMap) > 0 { keysForStringToDoubleMap := make([]string, 0, len(m.StringToDoubleMap)) for k := range m.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) for _, k := range keysForStringToDoubleMap { dAtA[i] = 0xa i++ v := m.StringToDoubleMap[string(k)] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } if len(m.StringToFloatMap) > 0 { keysForStringToFloatMap := make([]string, 0, len(m.StringToFloatMap)) for k := range m.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) for _, k := range keysForStringToFloatMap { dAtA[i] = 0x12 i++ v := m.StringToFloatMap[string(k)] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(v)))) i += 4 } } if len(m.Int32Map) > 0 { keysForInt32Map := make([]int32, 0, len(m.Int32Map)) for k := range m.Int32Map { keysForInt32Map = append(keysForInt32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) for _, k := range keysForInt32Map { dAtA[i] = 0x1a i++ v := m.Int32Map[int32(k)] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Int64Map) > 0 { keysForInt64Map := make([]int64, 0, len(m.Int64Map)) for k := range m.Int64Map { keysForInt64Map = append(keysForInt64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) for _, k := range keysForInt64Map { dAtA[i] = 0x22 i++ v := m.Int64Map[int64(k)] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Uint32Map) > 0 { keysForUint32Map := make([]uint32, 0, len(m.Uint32Map)) for k := range m.Uint32Map { keysForUint32Map = append(keysForUint32Map, uint32(k)) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) for _, k := range keysForUint32Map { dAtA[i] = 0x2a i++ v := m.Uint32Map[uint32(k)] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Uint64Map) > 0 { keysForUint64Map := make([]uint64, 0, len(m.Uint64Map)) for k := range m.Uint64Map { keysForUint64Map = append(keysForUint64Map, uint64(k)) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) for _, k := range keysForUint64Map { dAtA[i] = 0x32 i++ v := m.Uint64Map[uint64(k)] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Sint32Map) > 0 { keysForSint32Map := make([]int32, 0, len(m.Sint32Map)) for k := range m.Sint32Map { keysForSint32Map = append(keysForSint32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) for _, k := range keysForSint32Map { dAtA[i] = 0x3a i++ v := m.Sint32Map[int32(k)] mapSize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint32(k)<<1)^uint32((k>>31)))) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint32(v)<<1)^uint32((v>>31)))) } } if len(m.Sint64Map) > 0 { keysForSint64Map := make([]int64, 0, len(m.Sint64Map)) for k := range m.Sint64Map { keysForSint64Map = append(keysForSint64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) for _, k := range keysForSint64Map { dAtA[i] = 0x42 i++ v := m.Sint64Map[int64(k)] mapSize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint64(v)<<1)^uint64((v>>63)))) } } if len(m.Fixed32Map) > 0 { keysForFixed32Map := make([]uint32, 0, len(m.Fixed32Map)) for k := range m.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, uint32(k)) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) for _, k := range keysForFixed32Map { dAtA[i] = 0x4a i++ v := m.Fixed32Map[uint32(k)] mapSize := 1 + 4 + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Sfixed32Map) > 0 { keysForSfixed32Map := make([]int32, 0, len(m.Sfixed32Map)) for k := range m.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) for _, k := range keysForSfixed32Map { dAtA[i] = 0x52 i++ v := m.Sfixed32Map[int32(k)] mapSize := 1 + 4 + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Fixed64Map) > 0 { keysForFixed64Map := make([]uint64, 0, len(m.Fixed64Map)) for k := range m.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, uint64(k)) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) for _, k := range keysForFixed64Map { dAtA[i] = 0x5a i++ v := m.Fixed64Map[uint64(k)] mapSize := 1 + 8 + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.Sfixed64Map) > 0 { keysForSfixed64Map := make([]int64, 0, len(m.Sfixed64Map)) for k := range m.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) for _, k := range keysForSfixed64Map { dAtA[i] = 0x62 i++ v := m.Sfixed64Map[int64(k)] mapSize := 1 + 8 + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.BoolMap) > 0 { keysForBoolMap := make([]bool, 0, len(m.BoolMap)) for k := range m.BoolMap { keysForBoolMap = append(keysForBoolMap, bool(k)) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) for _, k := range keysForBoolMap { dAtA[i] = 0x6a i++ v := m.BoolMap[bool(k)] mapSize := 1 + 1 + 1 + 1 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x10 i++ if v { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.StringMap) > 0 { keysForStringMap := make([]string, 0, len(m.StringMap)) for k := range m.StringMap { keysForStringMap = append(keysForStringMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) for _, k := range keysForStringMap { dAtA[i] = 0x72 i++ v := m.StringMap[string(k)] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.StringToBytesMap) > 0 { keysForStringToBytesMap := make([]string, 0, len(m.StringToBytesMap)) for k := range m.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) for _, k := range keysForStringToBytesMap { dAtA[i] = 0x7a i++ v := m.StringToBytesMap[string(k)] byteSize := 0 if v != nil { byteSize = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + byteSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } if len(m.StringToEnumMap) > 0 { keysForStringToEnumMap := make([]string, 0, len(m.StringToEnumMap)) for k := range m.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) for _, k := range keysForStringToEnumMap { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ v := m.StringToEnumMap[string(k)] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.StringToMsgMap) > 0 { keysForStringToMsgMap := make([]string, 0, len(m.StringToMsgMap)) for k := range m.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) for _, k := range keysForStringToMsgMap { dAtA[i] = 0x8a i++ dAtA[i] = 0x1 i++ v := m.StringToMsgMap[string(k)] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovMapsproto2(uint64(msgSize)) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + msgSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n6, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n6 } } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintMapsproto2(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedFloatingPoint(r randyMapsproto2, easy bool) *FloatingPoint { this := &FloatingPoint{} if r.Intn(10) != 0 { v1 := float64(r.Float64()) if r.Intn(2) == 0 { v1 *= -1 } this.F = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 2) } return this } func NewPopulatedCustomMap(r randyMapsproto2, easy bool) *CustomMap { this := &CustomMap{} if r.Intn(10) != 0 { v2 := r.Intn(10) this.Nullable128S = make(map[string]*github_com_gogo_protobuf_test_custom.Uint128) for i := 0; i < v2; i++ { this.Nullable128S[randStringMapsproto2(r)] = (*github_com_gogo_protobuf_test_custom.Uint128)(github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r)) } } if r.Intn(10) != 0 { v3 := r.Intn(10) this.Uint128S = make(map[string]github_com_gogo_protobuf_test_custom.Uint128) for i := 0; i < v3; i++ { this.Uint128S[randStringMapsproto2(r)] = (github_com_gogo_protobuf_test_custom.Uint128)(*github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r)) } } if r.Intn(10) != 0 { v4 := r.Intn(10) this.NullableIds = make(map[string]*github_com_gogo_protobuf_test.Uuid) for i := 0; i < v4; i++ { this.NullableIds[randStringMapsproto2(r)] = (*github_com_gogo_protobuf_test.Uuid)(github_com_gogo_protobuf_test.NewPopulatedUuid(r)) } } if r.Intn(10) != 0 { v5 := r.Intn(10) this.Ids = make(map[string]github_com_gogo_protobuf_test.Uuid) for i := 0; i < v5; i++ { this.Ids[randStringMapsproto2(r)] = (github_com_gogo_protobuf_test.Uuid)(*github_com_gogo_protobuf_test.NewPopulatedUuid(r)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 5) } return this } func NewPopulatedAllMaps(r randyMapsproto2, easy bool) *AllMaps { this := &AllMaps{} if r.Intn(10) != 0 { v6 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v6; i++ { v7 := randStringMapsproto2(r) this.StringToDoubleMap[v7] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v7] *= -1 } } } if r.Intn(10) != 0 { v8 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v8; i++ { v9 := randStringMapsproto2(r) this.StringToFloatMap[v9] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v9] *= -1 } } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v10; i++ { v11 := int32(r.Int31()) this.Int32Map[v11] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v11] *= -1 } } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v12; i++ { v13 := int64(r.Int63()) this.Int64Map[v13] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v13] *= -1 } } } if r.Intn(10) != 0 { v14 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v14; i++ { v15 := uint32(r.Uint32()) this.Uint32Map[v15] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v16 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v16; i++ { v17 := uint64(uint64(r.Uint32())) this.Uint64Map[v17] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v18; i++ { v19 := int32(r.Int31()) this.Sint32Map[v19] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v19] *= -1 } } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v20; i++ { v21 := int64(r.Int63()) this.Sint64Map[v21] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v21] *= -1 } } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v22; i++ { v23 := uint32(r.Uint32()) this.Fixed32Map[v23] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v24; i++ { v25 := int32(r.Int31()) this.Sfixed32Map[v25] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v25] *= -1 } } } if r.Intn(10) != 0 { v26 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v26; i++ { v27 := uint64(uint64(r.Uint32())) this.Fixed64Map[v27] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v28 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v28; i++ { v29 := int64(r.Int63()) this.Sfixed64Map[v29] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v29] *= -1 } } } if r.Intn(10) != 0 { v30 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v30; i++ { v31 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v31] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v32 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v32; i++ { this.StringMap[randStringMapsproto2(r)] = randStringMapsproto2(r) } } if r.Intn(10) != 0 { v33 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v33; i++ { v34 := r.Intn(100) v35 := randStringMapsproto2(r) this.StringToBytesMap[v35] = make([]byte, v34) for i := 0; i < v34; i++ { this.StringToBytesMap[v35][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v36; i++ { this.StringToEnumMap[randStringMapsproto2(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v37 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v37; i++ { this.StringToMsgMap[randStringMapsproto2(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 18) } return this } func NewPopulatedAllMapsOrdered(r randyMapsproto2, easy bool) *AllMapsOrdered { this := &AllMapsOrdered{} if r.Intn(10) != 0 { v38 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v38; i++ { v39 := randStringMapsproto2(r) this.StringToDoubleMap[v39] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v39] *= -1 } } } if r.Intn(10) != 0 { v40 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v40; i++ { v41 := randStringMapsproto2(r) this.StringToFloatMap[v41] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v41] *= -1 } } } if r.Intn(10) != 0 { v42 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v42; i++ { v43 := int32(r.Int31()) this.Int32Map[v43] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v43] *= -1 } } } if r.Intn(10) != 0 { v44 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v44; i++ { v45 := int64(r.Int63()) this.Int64Map[v45] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v45] *= -1 } } } if r.Intn(10) != 0 { v46 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v46; i++ { v47 := uint32(r.Uint32()) this.Uint32Map[v47] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v48 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v48; i++ { v49 := uint64(uint64(r.Uint32())) this.Uint64Map[v49] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v50 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v50; i++ { v51 := int32(r.Int31()) this.Sint32Map[v51] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v51] *= -1 } } } if r.Intn(10) != 0 { v52 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v52; i++ { v53 := int64(r.Int63()) this.Sint64Map[v53] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v53] *= -1 } } } if r.Intn(10) != 0 { v54 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v54; i++ { v55 := uint32(r.Uint32()) this.Fixed32Map[v55] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v56 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v56; i++ { v57 := int32(r.Int31()) this.Sfixed32Map[v57] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v57] *= -1 } } } if r.Intn(10) != 0 { v58 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v58; i++ { v59 := uint64(uint64(r.Uint32())) this.Fixed64Map[v59] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v60 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v60; i++ { v61 := int64(r.Int63()) this.Sfixed64Map[v61] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v61] *= -1 } } } if r.Intn(10) != 0 { v62 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v62; i++ { v63 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v63] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v64; i++ { this.StringMap[randStringMapsproto2(r)] = randStringMapsproto2(r) } } if r.Intn(10) != 0 { v65 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v65; i++ { v66 := r.Intn(100) v67 := randStringMapsproto2(r) this.StringToBytesMap[v67] = make([]byte, v66) for i := 0; i < v66; i++ { this.StringToBytesMap[v67][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v68; i++ { this.StringToEnumMap[randStringMapsproto2(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v69 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v69; i++ { this.StringToMsgMap[randStringMapsproto2(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 18) } return this } type randyMapsproto2 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneMapsproto2(r randyMapsproto2) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringMapsproto2(r randyMapsproto2) string { v70 := r.Intn(100) tmps := make([]rune, v70) for i := 0; i < v70; i++ { tmps[i] = randUTF8RuneMapsproto2(r) } return string(tmps) } func randUnrecognizedMapsproto2(r randyMapsproto2, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldMapsproto2(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldMapsproto2(dAtA []byte, r randyMapsproto2, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) v71 := r.Int63() if r.Intn(2) == 0 { v71 *= -1 } dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(v71)) case 1: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateMapsproto2(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *FloatingPoint) Size() (n int) { var l int _ = l if m.F != nil { n += 9 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomMap) Size() (n int) { var l int _ = l if len(m.Nullable128S) > 0 { for k, v := range m.Nullable128S { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint128S) > 0 { for k, v := range m.Uint128S { _ = k _ = v l = 0 l = v.Size() l += 1 + sovMapsproto2(uint64(l)) mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.NullableIds) > 0 { for k, v := range m.NullableIds { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Ids) > 0 { for k, v := range m.Ids { _ = k _ = v l = 0 l = v.Size() l += 1 + sovMapsproto2(uint64(l)) mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllMaps) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if v != nil { l = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllMapsOrdered) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if v != nil { l = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovMapsproto2(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozMapsproto2(x uint64) (n int) { return sovMapsproto2(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *FloatingPoint) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FloatingPoint{`, `F:` + valueToStringMapsproto2(this.F) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomMap) String() string { if this == nil { return "nil" } keysForNullable128S := make([]string, 0, len(this.Nullable128S)) for k := range this.Nullable128S { keysForNullable128S = append(keysForNullable128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullable128S) mapStringForNullable128S := "map[string]*github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForNullable128S { mapStringForNullable128S += fmt.Sprintf("%v: %v,", k, this.Nullable128S[k]) } mapStringForNullable128S += "}" keysForUint128S := make([]string, 0, len(this.Uint128S)) for k := range this.Uint128S { keysForUint128S = append(keysForUint128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForUint128S) mapStringForUint128S := "map[string]github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForUint128S { mapStringForUint128S += fmt.Sprintf("%v: %v,", k, this.Uint128S[k]) } mapStringForUint128S += "}" keysForNullableIds := make([]string, 0, len(this.NullableIds)) for k := range this.NullableIds { keysForNullableIds = append(keysForNullableIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullableIds) mapStringForNullableIds := "map[string]*github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForNullableIds { mapStringForNullableIds += fmt.Sprintf("%v: %v,", k, this.NullableIds[k]) } mapStringForNullableIds += "}" keysForIds := make([]string, 0, len(this.Ids)) for k := range this.Ids { keysForIds = append(keysForIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForIds) mapStringForIds := "map[string]github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForIds { mapStringForIds += fmt.Sprintf("%v: %v,", k, this.Ids[k]) } mapStringForIds += "}" s := strings.Join([]string{`&CustomMap{`, `Nullable128S:` + mapStringForNullable128S + `,`, `Uint128S:` + mapStringForUint128S + `,`, `NullableIds:` + mapStringForNullableIds + `,`, `Ids:` + mapStringForIds + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllMaps) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMaps{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllMapsOrdered) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMapsOrdered{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringMapsproto2(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *FloatingPoint) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FloatingPoint: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FloatingPoint: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field F", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.F = &v2 default: iNdEx = preIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Nullable128S", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Nullable128S == nil { m.Nullable128S = make(map[string]*github_com_gogo_protobuf_test_custom.Uint128) } var mapkey string var mapvalue1 github_com_gogo_protobuf_test_custom.Uint128 var mapvalue = &mapvalue1 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } if err := mapvalue.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil { return err } iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Nullable128S[mapkey] = ((*github_com_gogo_protobuf_test_custom.Uint128)(mapvalue)) iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint128S", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint128S == nil { m.Uint128S = make(map[string]github_com_gogo_protobuf_test_custom.Uint128) } var mapkey string var mapvalue1 github_com_gogo_protobuf_test_custom.Uint128 var mapvalue = &mapvalue1 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } if err := mapvalue.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil { return err } iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint128S[mapkey] = ((github_com_gogo_protobuf_test_custom.Uint128)(*mapvalue)) iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableIds", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableIds == nil { m.NullableIds = make(map[string]*github_com_gogo_protobuf_test.Uuid) } var mapkey string var mapvalue1 github_com_gogo_protobuf_test.Uuid var mapvalue = &mapvalue1 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } if err := mapvalue.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil { return err } iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableIds[mapkey] = ((*github_com_gogo_protobuf_test.Uuid)(mapvalue)) iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Ids", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Ids == nil { m.Ids = make(map[string]github_com_gogo_protobuf_test.Uuid) } var mapkey string var mapvalue1 github_com_gogo_protobuf_test.Uuid var mapvalue = &mapvalue1 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } if err := mapvalue.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil { return err } iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Ids[mapkey] = ((github_com_gogo_protobuf_test.Uuid)(*mapvalue)) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllMaps) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllMaps: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllMaps: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToDoubleMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToDoubleMap == nil { m.StringToDoubleMap = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToDoubleMap[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToFloatMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToFloatMap == nil { m.StringToFloatMap = make(map[string]float32) } var mapkey string var mapvalue float32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 mapvalue = math.Float32frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToFloatMap[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int32Map == nil { m.Int32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int32Map[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int64Map == nil { m.Int64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int64Map[mapkey] = mapvalue iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint32Map == nil { m.Uint32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint32Map[mapkey] = mapvalue iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint64Map == nil { m.Uint64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint64Map[mapkey] = mapvalue iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint32Map == nil { m.Sint32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = int32((uint32(mapkeytemp) >> 1) ^ uint32(((mapkeytemp&1)<<31)>>31)) mapkey = int32(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = int32((uint32(mapvaluetemp) >> 1) ^ uint32(((mapvaluetemp&1)<<31)>>31)) mapvalue = int32(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint32Map[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint64Map == nil { m.Sint64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = (mapvaluetemp >> 1) ^ uint64((int64(mapvaluetemp&1)<<63)>>63) mapvalue = int64(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint64Map[mapkey] = mapvalue iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed32Map == nil { m.Fixed32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed32Map[mapkey] = mapvalue iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed32Map == nil { m.Sfixed32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed32Map[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed64Map == nil { m.Fixed64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed64Map[mapkey] = mapvalue iNdEx = postIndex case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed64Map == nil { m.Sfixed64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed64Map[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BoolMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.BoolMap == nil { m.BoolMap = make(map[bool]bool) } var mapkey bool var mapvalue bool for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapvaluetemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapvalue = bool(mapvaluetemp != 0) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.BoolMap[mapkey] = mapvalue iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringMap == nil { m.StringMap = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringMap[mapkey] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToBytesMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToBytesMap == nil { m.StringToBytesMap = make(map[string][]byte) } var mapkey string mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToBytesMap[mapkey] = mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToEnumMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToEnumMap == nil { m.StringToEnumMap = make(map[string]MapEnum) } var mapkey string var mapvalue MapEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (MapEnum(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToEnumMap[mapkey] = mapvalue iNdEx = postIndex case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToMsgMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToMsgMap == nil { m.StringToMsgMap = make(map[string]*FloatingPoint) } var mapkey string var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthMapsproto2 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthMapsproto2 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToMsgMap[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllMapsOrdered) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllMapsOrdered: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllMapsOrdered: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToDoubleMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToDoubleMap == nil { m.StringToDoubleMap = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToDoubleMap[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToFloatMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToFloatMap == nil { m.StringToFloatMap = make(map[string]float32) } var mapkey string var mapvalue float32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 mapvalue = math.Float32frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToFloatMap[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int32Map == nil { m.Int32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int32Map[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int64Map == nil { m.Int64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int64Map[mapkey] = mapvalue iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint32Map == nil { m.Uint32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint32Map[mapkey] = mapvalue iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint64Map == nil { m.Uint64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint64Map[mapkey] = mapvalue iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint32Map == nil { m.Sint32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = int32((uint32(mapkeytemp) >> 1) ^ uint32(((mapkeytemp&1)<<31)>>31)) mapkey = int32(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = int32((uint32(mapvaluetemp) >> 1) ^ uint32(((mapvaluetemp&1)<<31)>>31)) mapvalue = int32(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint32Map[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint64Map == nil { m.Sint64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = (mapvaluetemp >> 1) ^ uint64((int64(mapvaluetemp&1)<<63)>>63) mapvalue = int64(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint64Map[mapkey] = mapvalue iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed32Map == nil { m.Fixed32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed32Map[mapkey] = mapvalue iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed32Map == nil { m.Sfixed32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed32Map[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed64Map == nil { m.Fixed64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed64Map[mapkey] = mapvalue iNdEx = postIndex case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed64Map == nil { m.Sfixed64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed64Map[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BoolMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.BoolMap == nil { m.BoolMap = make(map[bool]bool) } var mapkey bool var mapvalue bool for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapvaluetemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapvalue = bool(mapvaluetemp != 0) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.BoolMap[mapkey] = mapvalue iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringMap == nil { m.StringMap = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringMap[mapkey] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToBytesMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToBytesMap == nil { m.StringToBytesMap = make(map[string][]byte) } var mapkey string mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToBytesMap[mapkey] = mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToEnumMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToEnumMap == nil { m.StringToEnumMap = make(map[string]MapEnum) } var mapkey string var mapvalue MapEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (MapEnum(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToEnumMap[mapkey] = mapvalue iNdEx = postIndex case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToMsgMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToMsgMap == nil { m.StringToMsgMap = make(map[string]*FloatingPoint) } var mapkey string var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthMapsproto2 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthMapsproto2 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToMsgMap[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipMapsproto2(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMapsproto2 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMapsproto2 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMapsproto2 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthMapsproto2 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMapsproto2 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipMapsproto2(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthMapsproto2 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowMapsproto2 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/both/mapsproto2.proto", fileDescriptorMapsproto2) } var fileDescriptorMapsproto2 = []byte{ // 1143 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x97, 0xcb, 0x6f, 0x1a, 0x57, 0x14, 0xc6, 0xb9, 0x3c, 0x0c, 0x5c, 0xde, 0x37, 0x69, 0x85, 0x50, 0x7b, 0x71, 0xe8, 0x8b, 0x90, 0x14, 0x6c, 0x1a, 0x45, 0x96, 0xd3, 0xa6, 0x32, 0xb6, 0x53, 0xac, 0x14, 0x37, 0x82, 0xa6, 0x2f, 0xc9, 0x52, 0xc1, 0x3c, 0x82, 0x0a, 0x0c, 0x65, 0x86, 0xa8, 0xde, 0x54, 0xf9, 0x33, 0xba, 0xed, 0xae, 0xcb, 0x2e, 0xbb, 0xec, 0xd2, 0x52, 0x37, 0x59, 0x46, 0x51, 0x65, 0x85, 0xe9, 0x26, 0xcb, 0x2c, 0xb3, 0xac, 0xe6, 0xce, 0x83, 0x3b, 0x33, 0x67, 0x66, 0xa0, 0xab, 0x2e, 0xbc, 0xc2, 0x77, 0x38, 0xdf, 0xef, 0x3b, 0x33, 0x73, 0xef, 0xe1, 0x33, 0x7e, 0xeb, 0x54, 0x18, 0x77, 0x04, 0xb1, 0xd2, 0x11, 0xa4, 0x47, 0x95, 0x71, 0x7b, 0x2a, 0x4e, 0x67, 0x82, 0x24, 0x54, 0xcb, 0xec, 0x83, 0xc4, 0xb4, 0x95, 0xf2, 0x45, 0xee, 0xc3, 0xc1, 0x50, 0x7a, 0x34, 0xef, 0x94, 0x4f, 0x85, 0x71, 0x65, 0x20, 0x0c, 0x84, 0x0a, 0xfb, 0xb2, 0x33, 0xef, 0xb3, 0x15, 0x5b, 0xb0, 0xbf, 0x54, 0x6d, 0xe1, 0x6d, 0x9c, 0xb8, 0x37, 0x12, 0xda, 0xd2, 0x70, 0x32, 0x78, 0x20, 0x0c, 0x27, 0x12, 0x89, 0x63, 0xd4, 0xcf, 0xa2, 0x4d, 0x54, 0x44, 0x4d, 0xd4, 0x2f, 0xfc, 0x15, 0xc2, 0xd1, 0xfd, 0xb9, 0x28, 0x09, 0xe3, 0x46, 0x7b, 0x4a, 0x7e, 0xc6, 0xf1, 0xe3, 0xf9, 0x68, 0xd4, 0xee, 0x8c, 0x7a, 0xdb, 0xd5, 0x1d, 0x31, 0x8b, 0x36, 0x03, 0xc5, 0x58, 0xb5, 0x58, 0xe6, 0xfc, 0xcb, 0x46, 0x75, 0x99, 0x2f, 0x3d, 0x9c, 0x48, 0xb3, 0xb3, 0xda, 0xd6, 0xf3, 0x8b, 0xfc, 0x4d, 0xc7, 0xfe, 0xa4, 0x9e, 0x28, 0x55, 0x4e, 0x99, 0xbc, 0xfc, 0x70, 0x38, 0x91, 0xb6, 0xab, 0x3b, 0x4d, 0x93, 0x1f, 0x79, 0x8c, 0x23, 0xda, 0x17, 0x62, 0xd6, 0xcf, 0xbc, 0xdf, 0x75, 0xf0, 0xd6, 0xcb, 0x54, 0xdf, 0x5b, 0xe7, 0x17, 0x79, 0xdf, 0xda, 0xde, 0x86, 0x17, 0xf9, 0x11, 0xc7, 0xf4, 0x3e, 0x8e, 0xba, 0x62, 0x36, 0xc0, 0xac, 0x3f, 0xf0, 0xb8, 0xed, 0xa3, 0xae, 0xe6, 0xfe, 0xfe, 0xf3, 0x8b, 0x7c, 0xc1, 0xd5, 0xb9, 0xfc, 0x70, 0x3e, 0xec, 0x36, 0x79, 0x0f, 0x72, 0x82, 0x03, 0x8a, 0x55, 0x90, 0x59, 0xe5, 0x1d, 0xac, 0x0c, 0x8b, 0x92, 0x76, 0x83, 0xab, 0xd8, 0x28, 0xdc, 0xdc, 0xa7, 0x38, 0x63, 0x7b, 0x3d, 0x24, 0x8d, 0x03, 0x3f, 0xf4, 0xce, 0xd8, 0xcb, 0x8f, 0x36, 0x95, 0x3f, 0xc9, 0x55, 0x1c, 0x7a, 0xdc, 0x1e, 0xcd, 0x7b, 0x59, 0xff, 0x26, 0x2a, 0xc6, 0x9b, 0xea, 0x62, 0xd7, 0xbf, 0x83, 0x72, 0x77, 0x70, 0xc2, 0xf4, 0x8c, 0xd7, 0x12, 0xdf, 0xc5, 0x69, 0xeb, 0x53, 0x5a, 0x4b, 0x7f, 0x1b, 0x47, 0xfe, 0x8b, 0xae, 0xf0, 0x8c, 0xe0, 0xf0, 0xde, 0x68, 0xd4, 0x68, 0x4f, 0x45, 0xf2, 0x2d, 0xce, 0xb4, 0xa4, 0xd9, 0x70, 0x32, 0xf8, 0x52, 0x38, 0x10, 0xe6, 0x9d, 0x51, 0xaf, 0xd1, 0x9e, 0x6a, 0x1b, 0xfa, 0x86, 0xe9, 0x71, 0x6b, 0x82, 0xb2, 0xad, 0x9a, 0xf9, 0x37, 0xed, 0x14, 0xf2, 0x15, 0x4e, 0xeb, 0x17, 0xd9, 0xd9, 0x52, 0xc8, 0xea, 0x76, 0x2d, 0xb9, 0x92, 0xf5, 0x62, 0x15, 0x6c, 0x63, 0x90, 0xbb, 0x38, 0x72, 0x34, 0x91, 0x3e, 0xaa, 0x2a, 0x3c, 0x75, 0x0f, 0x16, 0x40, 0x9e, 0x5e, 0xa4, 0x72, 0x0c, 0x8d, 0xa6, 0xbf, 0x7d, 0x4b, 0xd1, 0x07, 0xdd, 0xf5, 0xac, 0x68, 0xa9, 0x67, 0x4b, 0xb2, 0x87, 0xa3, 0xca, 0x3b, 0x57, 0x1b, 0x08, 0x31, 0xc0, 0x3b, 0x20, 0xc0, 0xa8, 0x52, 0x09, 0x4b, 0x95, 0x8e, 0x50, 0x7b, 0xd8, 0xf0, 0x40, 0x70, 0x4d, 0x2c, 0x55, 0x0a, 0xa2, 0x65, 0x74, 0x11, 0x76, 0x41, 0xb4, 0x2c, 0x5d, 0xb4, 0xf8, 0x2e, 0x5a, 0x46, 0x17, 0x11, 0x0f, 0x04, 0xdf, 0x85, 0xb1, 0x26, 0x07, 0x18, 0xdf, 0x1b, 0xfe, 0xd4, 0xeb, 0xaa, 0x6d, 0x44, 0x81, 0x61, 0xa4, 0x33, 0x96, 0x65, 0x2a, 0x84, 0xd3, 0x91, 0xcf, 0x70, 0xac, 0xd5, 0x5f, 0x62, 0x30, 0xc3, 0xbc, 0x07, 0xb7, 0xd2, 0xb7, 0x70, 0x78, 0xa5, 0xd1, 0x8e, 0x7a, 0x4b, 0x31, 0xaf, 0x76, 0xb8, 0x7b, 0xe2, 0x74, 0xcb, 0x76, 0x54, 0x4c, 0xdc, 0xb3, 0x1d, 0x8e, 0xc3, 0x2b, 0xc9, 0x1d, 0x1c, 0xae, 0x09, 0x82, 0x52, 0x99, 0x4d, 0x30, 0xc8, 0x35, 0x10, 0xa2, 0xd5, 0xa8, 0x00, 0x5d, 0xc1, 0xde, 0x0e, 0xdb, 0xfa, 0x8a, 0x3c, 0xe9, 0xf6, 0x76, 0xf4, 0x2a, 0xfd, 0xed, 0xe8, 0x6b, 0xfe, 0x04, 0xd6, 0xce, 0xa4, 0x9e, 0xa8, 0x90, 0x52, 0x2b, 0x9c, 0x40, 0xbd, 0xd8, 0x72, 0x02, 0xf5, 0xcb, 0xa4, 0x85, 0x53, 0xfa, 0xb5, 0xc3, 0xc9, 0x5c, 0x99, 0xc1, 0xd9, 0x34, 0xc3, 0x5e, 0x77, 0xc5, 0x6a, 0xb5, 0x2a, 0xd5, 0x4a, 0x20, 0x0f, 0x70, 0x52, 0xbf, 0xd4, 0x10, 0xd9, 0x4d, 0x67, 0x80, 0xdf, 0x55, 0x2b, 0x53, 0x2d, 0x55, 0x91, 0x16, 0x7d, 0xee, 0x00, 0xbf, 0x09, 0x4f, 0x2b, 0xaf, 0x69, 0x89, 0xf8, 0x29, 0xbb, 0x8f, 0xdf, 0x00, 0x27, 0x93, 0x17, 0xc4, 0x6f, 0xf9, 0x9d, 0x30, 0x8d, 0x23, 0x5e, 0x1c, 0x02, 0xc4, 0x21, 0xbb, 0x78, 0xb9, 0xc9, 0x78, 0x71, 0x00, 0x10, 0x07, 0x78, 0xf1, 0xc7, 0x38, 0x69, 0x9e, 0x43, 0xbc, 0x3a, 0x01, 0xa8, 0x13, 0x80, 0x1a, 0xf6, 0x0e, 0x02, 0xea, 0xa0, 0x45, 0xdd, 0x72, 0xf4, 0xce, 0x00, 0xea, 0x0c, 0xa0, 0x86, 0xbd, 0x09, 0xa0, 0x26, 0xbc, 0xfa, 0x13, 0x9c, 0xb2, 0x8c, 0x1c, 0x5e, 0x1e, 0x06, 0xe4, 0x61, 0xcb, 0x6f, 0xb3, 0x75, 0xd4, 0xf0, 0xfa, 0x14, 0xa0, 0x4f, 0x41, 0xf6, 0x70, 0xf7, 0x1b, 0x80, 0x7c, 0x03, 0xb4, 0x87, 0xf5, 0x69, 0x40, 0x9f, 0xe6, 0xf5, 0xbb, 0x38, 0xce, 0x4f, 0x15, 0x5e, 0x1b, 0x01, 0xb4, 0x11, 0xeb, 0x73, 0x37, 0x8d, 0x14, 0xaf, 0x9d, 0x1e, 0x75, 0x38, 0x2e, 0xa6, 0x31, 0xb2, 0x56, 0xb2, 0xf9, 0x06, 0x5f, 0x85, 0x86, 0x06, 0xc0, 0x28, 0xf1, 0x8c, 0x64, 0xf5, 0xaa, 0x69, 0x58, 0x30, 0xdd, 0x7c, 0xcc, 0x93, 0x4f, 0xf0, 0x15, 0x60, 0x74, 0x00, 0xe0, 0x2d, 0x1e, 0x1c, 0xab, 0xe6, 0x4c, 0x60, 0xd3, 0xff, 0x0a, 0x7c, 0xb4, 0xfa, 0xfb, 0x0a, 0x4e, 0x6a, 0x23, 0xea, 0x8b, 0x59, 0xb7, 0x37, 0xeb, 0x75, 0xc9, 0xf7, 0xce, 0x09, 0xab, 0x0a, 0x8d, 0x36, 0x4d, 0xb7, 0x46, 0xd0, 0x3a, 0x71, 0x0c, 0x5a, 0xdb, 0xab, 0x18, 0x78, 0xe5, 0xad, 0x43, 0x5b, 0xde, 0xba, 0xee, 0x86, 0x75, 0x8a, 0x5d, 0x87, 0xb6, 0xd8, 0xe5, 0x85, 0x01, 0xd3, 0x57, 0xdd, 0x9e, 0xbe, 0x4a, 0x6e, 0x1c, 0xe7, 0x10, 0x56, 0xb7, 0x87, 0x30, 0x4f, 0x12, 0x9c, 0xc5, 0xea, 0xf6, 0x2c, 0xe6, 0x4a, 0x72, 0x8e, 0x64, 0x75, 0x7b, 0x24, 0xf3, 0x24, 0xc1, 0xc9, 0xec, 0x3e, 0x90, 0xcc, 0x6e, 0xb8, 0xa1, 0xdc, 0x02, 0xda, 0x31, 0x14, 0xd0, 0x6e, 0xba, 0x36, 0xe6, 0x9a, 0xd3, 0xee, 0x03, 0x39, 0xcd, 0xbb, 0x39, 0x87, 0xb8, 0x76, 0x0c, 0xc5, 0xb5, 0x15, 0x9a, 0x73, 0x4a, 0x6d, 0x35, 0x6b, 0x6a, 0x2b, 0xba, 0xb1, 0xe0, 0xf0, 0x56, 0xb7, 0x87, 0xb7, 0x92, 0xf7, 0x59, 0x84, 0x32, 0xdc, 0x89, 0x63, 0x86, 0x5b, 0xe9, 0x70, 0x7b, 0x45, 0xb9, 0xef, 0x9c, 0xa2, 0xdc, 0xd6, 0x2a, 0x74, 0xf7, 0x44, 0xf7, 0xb5, 0x43, 0xa2, 0xab, 0xac, 0x82, 0xbe, 0x0c, 0x76, 0x97, 0xc1, 0xee, 0x32, 0xd8, 0x5d, 0x06, 0xbb, 0xff, 0x47, 0xb0, 0xdb, 0x0d, 0xfe, 0xf2, 0x6b, 0x1e, 0x95, 0xae, 0xe1, 0xb0, 0x66, 0x4d, 0x36, 0xb0, 0xbf, 0xb1, 0x97, 0xf6, 0xb1, 0xcf, 0x5a, 0x1a, 0xb1, 0xcf, 0xfd, 0xb4, 0xbf, 0xf6, 0xf9, 0xf9, 0x82, 0xfa, 0x9e, 0x2e, 0xa8, 0xef, 0xd9, 0x82, 0xfa, 0x5e, 0x2c, 0x28, 0x7a, 0xb9, 0xa0, 0xe8, 0xd5, 0x82, 0xa2, 0xd7, 0x0b, 0x8a, 0x9e, 0xc8, 0x14, 0xfd, 0x26, 0x53, 0xf4, 0xbb, 0x4c, 0xd1, 0x1f, 0x32, 0x45, 0x7f, 0xca, 0x14, 0x9d, 0xcb, 0x14, 0x3d, 0x95, 0x29, 0x7a, 0x21, 0x53, 0xf4, 0x52, 0xa6, 0xbe, 0x57, 0x32, 0x45, 0xaf, 0x65, 0xea, 0x7b, 0xf2, 0x0f, 0xf5, 0xfd, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xfa, 0x87, 0xd5, 0x9e, 0xf2, 0x16, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/mapsproto2/combos/both/mapsproto2.proto000066400000000000000000000112711317075173200260450ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto2"; package proto2.maps; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message FloatingPoint { optional double f = 1; } message CustomMap { map Nullable128s = 1 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128"]; map Uint128s = 2 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable)=false]; map NullableIds = 3 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid"]; map Ids = 4 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid", (gogoproto.nullable)=false]; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } golang-gogoprotobuf-0.5/test/mapsproto2/combos/both/mapsproto2_test.go000066400000000000000000000065421317075173200263530ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package proto2_maps import ( "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": {}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } golang-gogoprotobuf-0.5/test/mapsproto2/combos/both/mapsproto2pb_test.go000066400000000000000000000712621317075173200266760ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/mapsproto2.proto /* Package proto2_maps is a generated protocol buffer package. It is generated from these files: combos/both/mapsproto2.proto It has these top-level messages: FloatingPoint CustomMap AllMaps AllMapsOrdered */ package proto2_maps import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestFloatingPointProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFloatingPointMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkFloatingPointProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkFloatingPointProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedFloatingPoint(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &FloatingPoint{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllMapsMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAllMapsProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMaps(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMaps{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllMapsOrderedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAllMapsOrderedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsOrderedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMapsOrdered(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMapsOrdered{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestFloatingPointJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsOrderedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFloatingPointProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapsproto2Description(t *testing.T) { Mapsproto2Description() } func TestFloatingPointVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsOrderedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFloatingPointFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsOrderedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestFloatingPointGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsOrderedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFloatingPointSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkFloatingPointSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsOrderedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestFloatingPointStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsOrderedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/mapsproto2/combos/marshaler/000077500000000000000000000000001317075173200236725ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapsproto2/combos/marshaler/mapsproto2.pb.go000066400000000000000000005127041317075173200267400ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/mapsproto2.proto /* Package proto2_maps is a generated protocol buffer package. It is generated from these files: combos/marshaler/mapsproto2.proto It has these top-level messages: FloatingPoint CustomMap AllMaps AllMapsOrdered */ package proto2_maps import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test "github.com/gogo/protobuf/test" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapEnum int32 const ( MA MapEnum = 0 MB MapEnum = 1 MC MapEnum = 2 ) var MapEnum_name = map[int32]string{ 0: "MA", 1: "MB", 2: "MC", } var MapEnum_value = map[string]int32{ "MA": 0, "MB": 1, "MC": 2, } func (x MapEnum) Enum() *MapEnum { p := new(MapEnum) *p = x return p } func (x MapEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(MapEnum_name, int32(x)) } func (x *MapEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MapEnum_value, data, "MapEnum") if err != nil { return err } *x = MapEnum(value) return nil } func (MapEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{0} } type FloatingPoint struct { F *float64 `protobuf:"fixed64,1,opt,name=f" json:"f,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *FloatingPoint) Reset() { *m = FloatingPoint{} } func (*FloatingPoint) ProtoMessage() {} func (*FloatingPoint) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{0} } type CustomMap struct { Nullable128S map[string]*github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,1,rep,name=Nullable128s,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Nullable128s,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` Uint128S map[string]github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Uint128s,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Uint128s" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` NullableIds map[string]*github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,3,rep,name=NullableIds,customtype=github.com/gogo/protobuf/test.Uuid" json:"NullableIds,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` Ids map[string]github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,4,rep,name=Ids,customtype=github.com/gogo/protobuf/test.Uuid" json:"Ids" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *CustomMap) Reset() { *m = CustomMap{} } func (*CustomMap) ProtoMessage() {} func (*CustomMap) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{1} } type AllMaps struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=proto2.maps.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *AllMaps) Reset() { *m = AllMaps{} } func (*AllMaps) ProtoMessage() {} func (*AllMaps) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{2} } type AllMapsOrdered struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=proto2.maps.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *AllMapsOrdered) Reset() { *m = AllMapsOrdered{} } func (*AllMapsOrdered) ProtoMessage() {} func (*AllMapsOrdered) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{3} } func init() { proto.RegisterType((*FloatingPoint)(nil), "proto2.maps.FloatingPoint") proto.RegisterType((*CustomMap)(nil), "proto2.maps.CustomMap") proto.RegisterType((*AllMaps)(nil), "proto2.maps.AllMaps") proto.RegisterType((*AllMapsOrdered)(nil), "proto2.maps.AllMapsOrdered") proto.RegisterEnum("proto2.maps.MapEnum", MapEnum_name, MapEnum_value) } func (this *FloatingPoint) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *CustomMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *AllMaps) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *AllMapsOrdered) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func Mapsproto2Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4655 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7b, 0x5d, 0x6c, 0x23, 0xd7, 0x75, 0xbf, 0x86, 0x1f, 0x12, 0x79, 0x48, 0x51, 0xa3, 0x2b, 0x79, 0x4d, 0x2b, 0xb1, 0x76, 0x57, 0x76, 0x6c, 0x79, 0x6d, 0x4b, 0xb6, 0xbc, 0xbb, 0x5e, 0x73, 0x63, 0xfb, 0x4f, 0x49, 0x5c, 0xad, 0x6c, 0x7d, 0x65, 0x28, 0xd9, 0x6b, 0xff, 0x61, 0x4c, 0x47, 0xc3, 0x4b, 0x6a, 0xbc, 0xe4, 0x0c, 0x3d, 0x33, 0x5c, 0x5b, 0x46, 0x51, 0x6c, 0xe1, 0x7e, 0x20, 0x28, 0xfa, 0x5d, 0xa0, 0x8e, 0xeb, 0xb8, 0x4d, 0x80, 0xd6, 0x69, 0xd2, 0x8f, 0xa4, 0x69, 0xd3, 0xb4, 0x4f, 0x79, 0x49, 0x6b, 0xa0, 0x40, 0x91, 0xbc, 0x05, 0x41, 0x60, 0x78, 0x55, 0x03, 0x75, 0x5b, 0xb7, 0x75, 0x1b, 0x03, 0x0d, 0xe0, 0x97, 0xe2, 0x7e, 0x0d, 0x67, 0x86, 0x43, 0x0e, 0x65, 0xc0, 0x4e, 0x1f, 0xfc, 0xb4, 0x9a, 0x33, 0xe7, 0xf7, 0xbb, 0xe7, 0x9e, 0x7b, 0xee, 0x39, 0xe7, 0xde, 0xe1, 0xc2, 0xd7, 0x2e, 0xc0, 0xa9, 0x86, 0x65, 0x35, 0x9a, 0x78, 0xb1, 0x6d, 0x5b, 0xae, 0xb5, 0xdf, 0xa9, 0x2f, 0xd6, 0xb0, 0xa3, 0xdb, 0x46, 0xdb, 0xb5, 0xec, 0x05, 0x2a, 0x43, 0x13, 0x4c, 0x63, 0x41, 0x68, 0xcc, 0x6d, 0xc2, 0xe4, 0x25, 0xa3, 0x89, 0x57, 0x3d, 0xc5, 0x2a, 0x76, 0xd1, 0x05, 0x48, 0xd5, 0x8d, 0x26, 0x2e, 0x4a, 0xa7, 0x92, 0xf3, 0xb9, 0xa5, 0xdb, 0x17, 0x42, 0xa0, 0x85, 0x20, 0x62, 0x87, 0x88, 0x15, 0x8a, 0x98, 0x7b, 0x3b, 0x05, 0x53, 0x11, 0x6f, 0x11, 0x82, 0x94, 0xa9, 0xb5, 0x08, 0xa3, 0x34, 0x9f, 0x55, 0xe8, 0xdf, 0xa8, 0x08, 0x63, 0x6d, 0x4d, 0xbf, 0xaa, 0x35, 0x70, 0x31, 0x41, 0xc5, 0xe2, 0x11, 0xcd, 0x02, 0xd4, 0x70, 0x1b, 0x9b, 0x35, 0x6c, 0xea, 0x87, 0xc5, 0xe4, 0xa9, 0xe4, 0x7c, 0x56, 0xf1, 0x49, 0xd0, 0xdd, 0x30, 0xd9, 0xee, 0xec, 0x37, 0x0d, 0x5d, 0xf5, 0xa9, 0xc1, 0xa9, 0xe4, 0x7c, 0x5a, 0x91, 0xd9, 0x8b, 0xd5, 0xae, 0xf2, 0x9d, 0x30, 0xf1, 0x3c, 0xd6, 0xae, 0xfa, 0x55, 0x73, 0x54, 0xb5, 0x40, 0xc4, 0x3e, 0xc5, 0x15, 0xc8, 0xb7, 0xb0, 0xe3, 0x68, 0x0d, 0xac, 0xba, 0x87, 0x6d, 0x5c, 0x4c, 0xd1, 0xd9, 0x9f, 0xea, 0x99, 0x7d, 0x78, 0xe6, 0x39, 0x8e, 0xda, 0x3d, 0x6c, 0x63, 0x54, 0x86, 0x2c, 0x36, 0x3b, 0x2d, 0xc6, 0x90, 0xee, 0xe3, 0xbf, 0x8a, 0xd9, 0x69, 0x85, 0x59, 0x32, 0x04, 0xc6, 0x29, 0xc6, 0x1c, 0x6c, 0x5f, 0x33, 0x74, 0x5c, 0x1c, 0xa5, 0x04, 0x77, 0xf6, 0x10, 0x54, 0xd9, 0xfb, 0x30, 0x87, 0xc0, 0xa1, 0x15, 0xc8, 0xe2, 0x17, 0x5c, 0x6c, 0x3a, 0x86, 0x65, 0x16, 0xc7, 0x28, 0xc9, 0x67, 0x22, 0x56, 0x11, 0x37, 0x6b, 0x61, 0x8a, 0x2e, 0x0e, 0x9d, 0x87, 0x31, 0xab, 0xed, 0x1a, 0x96, 0xe9, 0x14, 0x33, 0xa7, 0xa4, 0xf9, 0xdc, 0xd2, 0xa7, 0x23, 0x03, 0x61, 0x9b, 0xe9, 0x28, 0x42, 0x19, 0xad, 0x83, 0xec, 0x58, 0x1d, 0x5b, 0xc7, 0xaa, 0x6e, 0xd5, 0xb0, 0x6a, 0x98, 0x75, 0xab, 0x98, 0xa5, 0x04, 0x27, 0x7b, 0x27, 0x42, 0x15, 0x57, 0xac, 0x1a, 0x5e, 0x37, 0xeb, 0x96, 0x52, 0x70, 0x02, 0xcf, 0xe8, 0x04, 0x8c, 0x3a, 0x87, 0xa6, 0xab, 0xbd, 0x50, 0xcc, 0xd3, 0x08, 0xe1, 0x4f, 0x73, 0x7f, 0x33, 0x0a, 0x13, 0xc3, 0x84, 0xd8, 0x45, 0x48, 0xd7, 0xc9, 0x2c, 0x8b, 0x89, 0xe3, 0xf8, 0x80, 0x61, 0x82, 0x4e, 0x1c, 0xfd, 0x90, 0x4e, 0x2c, 0x43, 0xce, 0xc4, 0x8e, 0x8b, 0x6b, 0x2c, 0x22, 0x92, 0x43, 0xc6, 0x14, 0x30, 0x50, 0x6f, 0x48, 0xa5, 0x3e, 0x54, 0x48, 0x5d, 0x81, 0x09, 0xcf, 0x24, 0xd5, 0xd6, 0xcc, 0x86, 0x88, 0xcd, 0xc5, 0x38, 0x4b, 0x16, 0x2a, 0x02, 0xa7, 0x10, 0x98, 0x52, 0xc0, 0x81, 0x67, 0xb4, 0x0a, 0x60, 0x99, 0xd8, 0xaa, 0xab, 0x35, 0xac, 0x37, 0x8b, 0x99, 0x3e, 0x5e, 0xda, 0x26, 0x2a, 0x3d, 0x5e, 0xb2, 0x98, 0x54, 0x6f, 0xa2, 0x87, 0xba, 0xa1, 0x36, 0xd6, 0x27, 0x52, 0x36, 0xd9, 0x26, 0xeb, 0x89, 0xb6, 0x3d, 0x28, 0xd8, 0x98, 0xc4, 0x3d, 0xae, 0xf1, 0x99, 0x65, 0xa9, 0x11, 0x0b, 0xb1, 0x33, 0x53, 0x38, 0x8c, 0x4d, 0x6c, 0xdc, 0xf6, 0x3f, 0xa2, 0xdb, 0xc0, 0x13, 0xa8, 0x34, 0xac, 0x80, 0x66, 0xa1, 0xbc, 0x10, 0x6e, 0x69, 0x2d, 0x3c, 0xf3, 0x22, 0x14, 0x82, 0xee, 0x41, 0xd3, 0x90, 0x76, 0x5c, 0xcd, 0x76, 0x69, 0x14, 0xa6, 0x15, 0xf6, 0x80, 0x64, 0x48, 0x62, 0xb3, 0x46, 0xb3, 0x5c, 0x5a, 0x21, 0x7f, 0xa2, 0xff, 0xd7, 0x9d, 0x70, 0x92, 0x4e, 0xf8, 0x8e, 0xde, 0x15, 0x0d, 0x30, 0x87, 0xe7, 0x3d, 0xf3, 0x20, 0x8c, 0x07, 0x26, 0x30, 0xec, 0xd0, 0x73, 0x3f, 0x0b, 0x37, 0x45, 0x52, 0xa3, 0x2b, 0x30, 0xdd, 0x31, 0x0d, 0xd3, 0xc5, 0x76, 0xdb, 0xc6, 0x24, 0x62, 0xd9, 0x50, 0xc5, 0x7f, 0x1e, 0xeb, 0x13, 0x73, 0x7b, 0x7e, 0x6d, 0xc6, 0xa2, 0x4c, 0x75, 0x7a, 0x85, 0x67, 0xb2, 0x99, 0x77, 0xc6, 0xe4, 0xeb, 0xd7, 0xaf, 0x5f, 0x4f, 0xcc, 0xbd, 0x3c, 0x0a, 0xd3, 0x51, 0x7b, 0x26, 0x72, 0xfb, 0x9e, 0x80, 0x51, 0xb3, 0xd3, 0xda, 0xc7, 0x36, 0x75, 0x52, 0x5a, 0xe1, 0x4f, 0xa8, 0x0c, 0xe9, 0xa6, 0xb6, 0x8f, 0x9b, 0xc5, 0xd4, 0x29, 0x69, 0xbe, 0xb0, 0x74, 0xf7, 0x50, 0xbb, 0x72, 0x61, 0x83, 0x40, 0x14, 0x86, 0x44, 0x8f, 0x40, 0x8a, 0xa7, 0x68, 0xc2, 0x70, 0x66, 0x38, 0x06, 0xb2, 0x97, 0x14, 0x8a, 0x43, 0x9f, 0x82, 0x2c, 0xf9, 0x97, 0xc5, 0xc6, 0x28, 0xb5, 0x39, 0x43, 0x04, 0x24, 0x2e, 0xd0, 0x0c, 0x64, 0xe8, 0x36, 0xa9, 0x61, 0x51, 0xda, 0xbc, 0x67, 0x12, 0x58, 0x35, 0x5c, 0xd7, 0x3a, 0x4d, 0x57, 0xbd, 0xa6, 0x35, 0x3b, 0x98, 0x06, 0x7c, 0x56, 0xc9, 0x73, 0xe1, 0x13, 0x44, 0x86, 0x4e, 0x42, 0x8e, 0xed, 0x2a, 0xc3, 0xac, 0xe1, 0x17, 0x68, 0xf6, 0x4c, 0x2b, 0x6c, 0xa3, 0xad, 0x13, 0x09, 0x19, 0xfe, 0x59, 0xc7, 0x32, 0x45, 0x68, 0xd2, 0x21, 0x88, 0x80, 0x0e, 0xff, 0x60, 0x38, 0x71, 0xdf, 0x1a, 0x3d, 0xbd, 0x70, 0x4c, 0xcd, 0x7d, 0x2b, 0x01, 0x29, 0x9a, 0x2f, 0x26, 0x20, 0xb7, 0xfb, 0xd4, 0x4e, 0x45, 0x5d, 0xdd, 0xde, 0x5b, 0xde, 0xa8, 0xc8, 0x12, 0x2a, 0x00, 0x50, 0xc1, 0xa5, 0x8d, 0xed, 0xf2, 0xae, 0x9c, 0xf0, 0x9e, 0xd7, 0xb7, 0x76, 0xcf, 0x9f, 0x95, 0x93, 0x1e, 0x60, 0x8f, 0x09, 0x52, 0x7e, 0x85, 0x07, 0x96, 0xe4, 0x34, 0x92, 0x21, 0xcf, 0x08, 0xd6, 0xaf, 0x54, 0x56, 0xcf, 0x9f, 0x95, 0x47, 0x83, 0x92, 0x07, 0x96, 0xe4, 0x31, 0x34, 0x0e, 0x59, 0x2a, 0x59, 0xde, 0xde, 0xde, 0x90, 0x33, 0x1e, 0x67, 0x75, 0x57, 0x59, 0xdf, 0x5a, 0x93, 0xb3, 0x1e, 0xe7, 0x9a, 0xb2, 0xbd, 0xb7, 0x23, 0x83, 0xc7, 0xb0, 0x59, 0xa9, 0x56, 0xcb, 0x6b, 0x15, 0x39, 0xe7, 0x69, 0x2c, 0x3f, 0xb5, 0x5b, 0xa9, 0xca, 0xf9, 0x80, 0x59, 0x0f, 0x2c, 0xc9, 0xe3, 0xde, 0x10, 0x95, 0xad, 0xbd, 0x4d, 0xb9, 0x80, 0x26, 0x61, 0x9c, 0x0d, 0x21, 0x8c, 0x98, 0x08, 0x89, 0xce, 0x9f, 0x95, 0xe5, 0xae, 0x21, 0x8c, 0x65, 0x32, 0x20, 0x38, 0x7f, 0x56, 0x46, 0x73, 0x2b, 0x90, 0xa6, 0xd1, 0x85, 0x10, 0x14, 0x36, 0xca, 0xcb, 0x95, 0x0d, 0x75, 0x7b, 0x67, 0x77, 0x7d, 0x7b, 0xab, 0xbc, 0x21, 0x4b, 0x5d, 0x99, 0x52, 0xf9, 0xdc, 0xde, 0xba, 0x52, 0x59, 0x95, 0x13, 0x7e, 0xd9, 0x4e, 0xa5, 0xbc, 0x5b, 0x59, 0x95, 0x93, 0x73, 0x3a, 0x4c, 0x47, 0xe5, 0xc9, 0xc8, 0x9d, 0xe1, 0x5b, 0xe2, 0x44, 0x9f, 0x25, 0xa6, 0x5c, 0x3d, 0x4b, 0xfc, 0x65, 0x09, 0xa6, 0x22, 0x6a, 0x45, 0xe4, 0x20, 0x8f, 0x42, 0x9a, 0x85, 0x28, 0xab, 0x9e, 0x77, 0x45, 0x16, 0x1d, 0x1a, 0xb0, 0x3d, 0x15, 0x94, 0xe2, 0xfc, 0x1d, 0x44, 0xb2, 0x4f, 0x07, 0x41, 0x28, 0x7a, 0x8c, 0x7c, 0x49, 0x82, 0x62, 0x3f, 0xee, 0x98, 0x44, 0x91, 0x08, 0x24, 0x8a, 0x8b, 0x61, 0x03, 0x4e, 0xf7, 0x9f, 0x43, 0x8f, 0x15, 0xaf, 0x4b, 0x70, 0x22, 0xba, 0xd1, 0x8a, 0xb4, 0xe1, 0x11, 0x18, 0x6d, 0x61, 0xf7, 0xc0, 0x12, 0xcd, 0xc6, 0x1d, 0x11, 0x25, 0x8c, 0xbc, 0x0e, 0xfb, 0x8a, 0xa3, 0xfc, 0x35, 0x30, 0xd9, 0xaf, 0x5b, 0x62, 0xd6, 0xf4, 0x58, 0xfa, 0xf9, 0x04, 0xdc, 0x14, 0x49, 0x1e, 0x69, 0xe8, 0xad, 0x00, 0x86, 0xd9, 0xee, 0xb8, 0xac, 0xa1, 0x60, 0xf9, 0x29, 0x4b, 0x25, 0x74, 0xef, 0x93, 0xdc, 0xd3, 0x71, 0xbd, 0xf7, 0x49, 0xfa, 0x1e, 0x98, 0x88, 0x2a, 0x5c, 0xe8, 0x1a, 0x9a, 0xa2, 0x86, 0xce, 0xf6, 0x99, 0x69, 0x4f, 0xad, 0xbe, 0x0f, 0x64, 0xbd, 0x69, 0x60, 0xd3, 0x55, 0x1d, 0xd7, 0xc6, 0x5a, 0xcb, 0x30, 0x1b, 0x34, 0x01, 0x67, 0x4a, 0xe9, 0xba, 0xd6, 0x74, 0xb0, 0x32, 0xc1, 0x5e, 0x57, 0xc5, 0x5b, 0x82, 0xa0, 0x35, 0xce, 0xf6, 0x21, 0x46, 0x03, 0x08, 0xf6, 0xda, 0x43, 0xcc, 0x7d, 0x33, 0x03, 0x39, 0x5f, 0x5b, 0x8a, 0x4e, 0x43, 0xfe, 0x59, 0xed, 0x9a, 0xa6, 0x8a, 0xa3, 0x06, 0xf3, 0x44, 0x8e, 0xc8, 0x76, 0xf8, 0x71, 0xe3, 0x3e, 0x98, 0xa6, 0x2a, 0x56, 0xc7, 0xc5, 0xb6, 0xaa, 0x37, 0x35, 0xc7, 0xa1, 0x4e, 0xcb, 0x50, 0x55, 0x44, 0xde, 0x6d, 0x93, 0x57, 0x2b, 0xe2, 0x0d, 0x3a, 0x07, 0x53, 0x14, 0xd1, 0xea, 0x34, 0x5d, 0xa3, 0xdd, 0xc4, 0x2a, 0x39, 0xfc, 0x38, 0x34, 0x11, 0x7b, 0x96, 0x4d, 0x12, 0x8d, 0x4d, 0xae, 0x40, 0x2c, 0x72, 0xd0, 0x2a, 0xdc, 0x4a, 0x61, 0x0d, 0x6c, 0x62, 0x5b, 0x73, 0xb1, 0x8a, 0x9f, 0xeb, 0x68, 0x4d, 0x47, 0xd5, 0xcc, 0x9a, 0x7a, 0xa0, 0x39, 0x07, 0xc5, 0x69, 0x42, 0xb0, 0x9c, 0x28, 0x4a, 0xca, 0x2d, 0x44, 0x71, 0x8d, 0xeb, 0x55, 0xa8, 0x5a, 0xd9, 0xac, 0x5d, 0xd6, 0x9c, 0x03, 0x54, 0x82, 0x13, 0x94, 0xc5, 0x71, 0x6d, 0xc3, 0x6c, 0xa8, 0xfa, 0x01, 0xd6, 0xaf, 0xaa, 0x1d, 0xb7, 0x7e, 0xa1, 0xf8, 0x29, 0xff, 0xf8, 0xd4, 0xc2, 0x2a, 0xd5, 0x59, 0x21, 0x2a, 0x7b, 0x6e, 0xfd, 0x02, 0xaa, 0x42, 0x9e, 0x2c, 0x46, 0xcb, 0x78, 0x11, 0xab, 0x75, 0xcb, 0xa6, 0x95, 0xa5, 0x10, 0xb1, 0xb3, 0x7d, 0x1e, 0x5c, 0xd8, 0xe6, 0x80, 0x4d, 0xab, 0x86, 0x4b, 0xe9, 0xea, 0x4e, 0xa5, 0xb2, 0xaa, 0xe4, 0x04, 0xcb, 0x25, 0xcb, 0x26, 0x01, 0xd5, 0xb0, 0x3c, 0x07, 0xe7, 0x58, 0x40, 0x35, 0x2c, 0xe1, 0xde, 0x73, 0x30, 0xa5, 0xeb, 0x6c, 0xce, 0x86, 0xae, 0xf2, 0x23, 0x8a, 0x53, 0x94, 0x03, 0xce, 0xd2, 0xf5, 0x35, 0xa6, 0xc0, 0x63, 0xdc, 0x41, 0x0f, 0xc1, 0x4d, 0x5d, 0x67, 0xf9, 0x81, 0x93, 0x3d, 0xb3, 0x0c, 0x43, 0xcf, 0xc1, 0x54, 0xfb, 0xb0, 0x17, 0x88, 0x02, 0x23, 0xb6, 0x0f, 0xc3, 0xb0, 0x07, 0x61, 0xba, 0x7d, 0xd0, 0xee, 0xc5, 0x4d, 0xf9, 0x71, 0xa8, 0x7d, 0xd0, 0x0e, 0x03, 0x3f, 0x43, 0xcf, 0xab, 0x36, 0xd6, 0x35, 0x17, 0xd7, 0x8a, 0x37, 0xfb, 0xd5, 0x7d, 0x2f, 0xd0, 0x22, 0xc8, 0xba, 0xae, 0x62, 0x53, 0xdb, 0x6f, 0x62, 0x55, 0xb3, 0xb1, 0xa9, 0x39, 0xc5, 0x93, 0x7e, 0xe5, 0x82, 0xae, 0x57, 0xe8, 0xdb, 0x32, 0x7d, 0x89, 0xce, 0xc0, 0xa4, 0xb5, 0xff, 0xac, 0xce, 0x42, 0x52, 0x6d, 0xdb, 0xb8, 0x6e, 0xbc, 0x50, 0xbc, 0x9d, 0xfa, 0x77, 0x82, 0xbc, 0xa0, 0x01, 0xb9, 0x43, 0xc5, 0xe8, 0x2e, 0x90, 0x75, 0xe7, 0x40, 0xb3, 0xdb, 0xb4, 0x27, 0x70, 0xda, 0x9a, 0x8e, 0x8b, 0x9f, 0x61, 0xaa, 0x4c, 0xbe, 0x25, 0xc4, 0x64, 0x4b, 0x38, 0xcf, 0x1b, 0x75, 0x57, 0x30, 0xde, 0xc9, 0xb6, 0x04, 0x95, 0x71, 0xb6, 0x79, 0x90, 0x89, 0x2b, 0x02, 0x03, 0xcf, 0x53, 0xb5, 0x42, 0xfb, 0xa0, 0xed, 0x1f, 0xf7, 0x36, 0x18, 0x27, 0x9a, 0xdd, 0x41, 0xef, 0x62, 0xfd, 0x4c, 0xfb, 0xc0, 0x37, 0xe2, 0x47, 0xd6, 0x5a, 0xce, 0x95, 0x20, 0xef, 0x8f, 0x4f, 0x94, 0x05, 0x16, 0xa1, 0xb2, 0x44, 0x6a, 0xfd, 0xca, 0xf6, 0x2a, 0xa9, 0xd2, 0x4f, 0x57, 0xe4, 0x04, 0xe9, 0x16, 0x36, 0xd6, 0x77, 0x2b, 0xaa, 0xb2, 0xb7, 0xb5, 0xbb, 0xbe, 0x59, 0x91, 0x93, 0xfe, 0xb6, 0xf4, 0xbb, 0x09, 0x28, 0x04, 0x4f, 0x18, 0xe8, 0xb3, 0x70, 0xb3, 0xb8, 0x0e, 0x70, 0xb0, 0xab, 0x3e, 0x6f, 0xd8, 0x74, 0xcb, 0xb4, 0x34, 0xd6, 0x61, 0x7b, 0x8b, 0x36, 0xcd, 0xb5, 0xaa, 0xd8, 0x7d, 0xd2, 0xb0, 0xc9, 0x86, 0x68, 0x69, 0x2e, 0xda, 0x80, 0x93, 0xa6, 0xa5, 0x3a, 0xae, 0x66, 0xd6, 0x34, 0xbb, 0xa6, 0x76, 0x2f, 0x62, 0x54, 0x4d, 0xd7, 0xb1, 0xe3, 0x58, 0xac, 0x54, 0x79, 0x2c, 0x9f, 0x36, 0xad, 0x2a, 0x57, 0xee, 0xe6, 0xf0, 0x32, 0x57, 0x0d, 0x05, 0x58, 0xb2, 0x5f, 0x80, 0x7d, 0x0a, 0xb2, 0x2d, 0xad, 0xad, 0x62, 0xd3, 0xb5, 0x0f, 0x69, 0x5f, 0x99, 0x51, 0x32, 0x2d, 0xad, 0x5d, 0x21, 0xcf, 0x1f, 0x4f, 0x7b, 0xff, 0xa3, 0x24, 0xe4, 0xfd, 0xbd, 0x25, 0x69, 0xd5, 0x75, 0x5a, 0x47, 0x24, 0x9a, 0x69, 0x6e, 0x1b, 0xd8, 0x89, 0x2e, 0xac, 0x90, 0x02, 0x53, 0x1a, 0x65, 0x1d, 0x9f, 0xc2, 0x90, 0xa4, 0xb8, 0x93, 0xdc, 0x82, 0xd9, 0x29, 0x26, 0xa3, 0xf0, 0x27, 0xb4, 0x06, 0xa3, 0xcf, 0x3a, 0x94, 0x7b, 0x94, 0x72, 0xdf, 0x3e, 0x98, 0xfb, 0xb1, 0x2a, 0x25, 0xcf, 0x3e, 0x56, 0x55, 0xb7, 0xb6, 0x95, 0xcd, 0xf2, 0x86, 0xc2, 0xe1, 0xe8, 0x16, 0x48, 0x35, 0xb5, 0x17, 0x0f, 0x83, 0xa5, 0x88, 0x8a, 0x86, 0x75, 0xfc, 0x2d, 0x90, 0x7a, 0x1e, 0x6b, 0x57, 0x83, 0x05, 0x80, 0x8a, 0x3e, 0xc2, 0xd0, 0x5f, 0x84, 0x34, 0xf5, 0x17, 0x02, 0xe0, 0x1e, 0x93, 0x47, 0x50, 0x06, 0x52, 0x2b, 0xdb, 0x0a, 0x09, 0x7f, 0x19, 0xf2, 0x4c, 0xaa, 0xee, 0xac, 0x57, 0x56, 0x2a, 0x72, 0x62, 0xee, 0x1c, 0x8c, 0x32, 0x27, 0x90, 0xad, 0xe1, 0xb9, 0x41, 0x1e, 0xe1, 0x8f, 0x9c, 0x43, 0x12, 0x6f, 0xf7, 0x36, 0x97, 0x2b, 0x8a, 0x9c, 0xf0, 0x2f, 0xaf, 0x03, 0x79, 0x7f, 0x5b, 0xf9, 0xf1, 0xc4, 0xd4, 0xdf, 0x4a, 0x90, 0xf3, 0xb5, 0x89, 0xa4, 0x41, 0xd1, 0x9a, 0x4d, 0xeb, 0x79, 0x55, 0x6b, 0x1a, 0x9a, 0xc3, 0x83, 0x02, 0xa8, 0xa8, 0x4c, 0x24, 0xc3, 0x2e, 0xda, 0xc7, 0x62, 0xfc, 0x6b, 0x12, 0xc8, 0xe1, 0x16, 0x33, 0x64, 0xa0, 0xf4, 0x53, 0x35, 0xf0, 0x55, 0x09, 0x0a, 0xc1, 0xbe, 0x32, 0x64, 0xde, 0xe9, 0x9f, 0xaa, 0x79, 0x6f, 0x25, 0x60, 0x3c, 0xd0, 0x4d, 0x0e, 0x6b, 0xdd, 0x73, 0x30, 0x69, 0xd4, 0x70, 0xab, 0x6d, 0xb9, 0xd8, 0xd4, 0x0f, 0xd5, 0x26, 0xbe, 0x86, 0x9b, 0xc5, 0x39, 0x9a, 0x28, 0x16, 0x07, 0xf7, 0xab, 0x0b, 0xeb, 0x5d, 0xdc, 0x06, 0x81, 0x95, 0xa6, 0xd6, 0x57, 0x2b, 0x9b, 0x3b, 0xdb, 0xbb, 0x95, 0xad, 0x95, 0xa7, 0xd4, 0xbd, 0xad, 0xc7, 0xb7, 0xb6, 0x9f, 0xdc, 0x52, 0x64, 0x23, 0xa4, 0xf6, 0x11, 0x6e, 0xf5, 0x1d, 0x90, 0xc3, 0x46, 0xa1, 0x9b, 0x21, 0xca, 0x2c, 0x79, 0x04, 0x4d, 0xc1, 0xc4, 0xd6, 0xb6, 0x5a, 0x5d, 0x5f, 0xad, 0xa8, 0x95, 0x4b, 0x97, 0x2a, 0x2b, 0xbb, 0x55, 0x76, 0x80, 0xf7, 0xb4, 0x77, 0x83, 0x9b, 0xfa, 0x95, 0x24, 0x4c, 0x45, 0x58, 0x82, 0xca, 0xfc, 0xec, 0xc0, 0x8e, 0x33, 0xf7, 0x0e, 0x63, 0xfd, 0x02, 0x29, 0xf9, 0x3b, 0x9a, 0xed, 0xf2, 0xa3, 0xc6, 0x5d, 0x40, 0xbc, 0x64, 0xba, 0x46, 0xdd, 0xc0, 0x36, 0xbf, 0xef, 0x60, 0x07, 0x8a, 0x89, 0xae, 0x9c, 0x5d, 0x79, 0xdc, 0x03, 0xa8, 0x6d, 0x39, 0x86, 0x6b, 0x5c, 0xc3, 0xaa, 0x61, 0x8a, 0xcb, 0x11, 0x72, 0xc0, 0x48, 0x29, 0xb2, 0x78, 0xb3, 0x6e, 0xba, 0x9e, 0xb6, 0x89, 0x1b, 0x5a, 0x48, 0x9b, 0x24, 0xf0, 0xa4, 0x22, 0x8b, 0x37, 0x9e, 0xf6, 0x69, 0xc8, 0xd7, 0xac, 0x0e, 0xe9, 0xba, 0x98, 0x1e, 0xa9, 0x17, 0x92, 0x92, 0x63, 0x32, 0x4f, 0x85, 0xf7, 0xd3, 0xdd, 0x5b, 0x99, 0xbc, 0x92, 0x63, 0x32, 0xa6, 0x72, 0x27, 0x4c, 0x68, 0x8d, 0x86, 0x4d, 0xc8, 0x05, 0x11, 0x3b, 0x21, 0x14, 0x3c, 0x31, 0x55, 0x9c, 0x79, 0x0c, 0x32, 0xc2, 0x0f, 0xa4, 0x24, 0x13, 0x4f, 0xa8, 0x6d, 0x76, 0x33, 0x97, 0x98, 0xcf, 0x2a, 0x19, 0x53, 0xbc, 0x3c, 0x0d, 0x79, 0xc3, 0x51, 0xbb, 0x97, 0xcc, 0x89, 0x53, 0x89, 0xf9, 0x8c, 0x92, 0x33, 0x1c, 0xef, 0x82, 0x6e, 0xee, 0xf5, 0x04, 0x14, 0x82, 0x97, 0xe4, 0x68, 0x15, 0x32, 0x4d, 0x4b, 0xd7, 0x68, 0x68, 0xb1, 0x2f, 0x34, 0xf3, 0x31, 0xf7, 0xea, 0x0b, 0x1b, 0x5c, 0x5f, 0xf1, 0x90, 0x33, 0xff, 0x28, 0x41, 0x46, 0x88, 0xd1, 0x09, 0x48, 0xb5, 0x35, 0xf7, 0x80, 0xd2, 0xa5, 0x97, 0x13, 0xb2, 0xa4, 0xd0, 0x67, 0x22, 0x77, 0xda, 0x9a, 0x49, 0x43, 0x80, 0xcb, 0xc9, 0x33, 0x59, 0xd7, 0x26, 0xd6, 0x6a, 0xf4, 0xf8, 0x61, 0xb5, 0x5a, 0xd8, 0x74, 0x1d, 0xb1, 0xae, 0x5c, 0xbe, 0xc2, 0xc5, 0xe8, 0x6e, 0x98, 0x74, 0x6d, 0xcd, 0x68, 0x06, 0x74, 0x53, 0x54, 0x57, 0x16, 0x2f, 0x3c, 0xe5, 0x12, 0xdc, 0x22, 0x78, 0x6b, 0xd8, 0xd5, 0xf4, 0x03, 0x5c, 0xeb, 0x82, 0x46, 0xe9, 0x0d, 0xec, 0xcd, 0x5c, 0x61, 0x95, 0xbf, 0x17, 0xd8, 0xb9, 0xef, 0x4b, 0x30, 0x29, 0x0e, 0x4c, 0x35, 0xcf, 0x59, 0x9b, 0x00, 0x9a, 0x69, 0x5a, 0xae, 0xdf, 0x5d, 0xbd, 0xa1, 0xdc, 0x83, 0x5b, 0x28, 0x7b, 0x20, 0xc5, 0x47, 0x30, 0xd3, 0x02, 0xe8, 0xbe, 0xe9, 0xeb, 0xb6, 0x93, 0x90, 0xe3, 0x5f, 0x40, 0xe8, 0x67, 0x34, 0x76, 0xc4, 0x06, 0x26, 0x22, 0x27, 0x2b, 0x34, 0x0d, 0xe9, 0x7d, 0xdc, 0x30, 0x4c, 0x7e, 0xaf, 0xc9, 0x1e, 0xc4, 0x5d, 0x6d, 0xca, 0xbb, 0xab, 0x5d, 0xbe, 0x02, 0x53, 0xba, 0xd5, 0x0a, 0x9b, 0xbb, 0x2c, 0x87, 0x8e, 0xf9, 0xce, 0x65, 0xe9, 0x69, 0xe8, 0xb6, 0x98, 0x5f, 0x4e, 0x24, 0xd7, 0x76, 0x96, 0xbf, 0x9a, 0x98, 0x59, 0x63, 0xb8, 0x1d, 0x31, 0x4d, 0x05, 0xd7, 0x9b, 0x58, 0x27, 0xa6, 0xc3, 0x8f, 0xef, 0x80, 0x7b, 0x1b, 0x86, 0x7b, 0xd0, 0xd9, 0x5f, 0xd0, 0xad, 0xd6, 0x62, 0xc3, 0x6a, 0x58, 0xdd, 0xcf, 0x86, 0xe4, 0x89, 0x3e, 0xd0, 0xbf, 0xf8, 0xa7, 0xc3, 0xac, 0x27, 0x9d, 0x89, 0xfd, 0xce, 0x58, 0xda, 0x82, 0x29, 0xae, 0xac, 0xd2, 0x6f, 0x17, 0xec, 0x08, 0x81, 0x06, 0xde, 0xff, 0x14, 0xbf, 0xf1, 0x36, 0xad, 0xd5, 0xca, 0x24, 0x87, 0x92, 0x77, 0xec, 0x94, 0x51, 0x52, 0xe0, 0xa6, 0x00, 0x1f, 0xdb, 0x97, 0xd8, 0x8e, 0x61, 0xfc, 0x2e, 0x67, 0x9c, 0xf2, 0x31, 0x56, 0x39, 0xb4, 0xb4, 0x02, 0xe3, 0xc7, 0xe1, 0xfa, 0x3b, 0xce, 0x95, 0xc7, 0x7e, 0x92, 0x35, 0x98, 0xa0, 0x24, 0x7a, 0xc7, 0x71, 0xad, 0x16, 0x4d, 0x7a, 0x83, 0x69, 0xfe, 0xfe, 0x6d, 0xb6, 0x51, 0x0a, 0x04, 0xb6, 0xe2, 0xa1, 0x4a, 0x25, 0xa0, 0x9f, 0x6b, 0x6a, 0x58, 0x6f, 0xc6, 0x30, 0xbc, 0xc1, 0x0d, 0xf1, 0xf4, 0x4b, 0x4f, 0xc0, 0x34, 0xf9, 0x9b, 0xe6, 0x24, 0xbf, 0x25, 0xf1, 0xb7, 0x5d, 0xc5, 0xef, 0xbf, 0xc4, 0xf6, 0xe2, 0x94, 0x47, 0xe0, 0xb3, 0xc9, 0xb7, 0x8a, 0x0d, 0xec, 0xba, 0xd8, 0x76, 0x54, 0xad, 0x19, 0x65, 0x9e, 0xef, 0xba, 0xa0, 0xf8, 0x85, 0x77, 0x83, 0xab, 0xb8, 0xc6, 0x90, 0xe5, 0x66, 0xb3, 0xb4, 0x07, 0x37, 0x47, 0x44, 0xc5, 0x10, 0x9c, 0xaf, 0x70, 0xce, 0xe9, 0x9e, 0xc8, 0x20, 0xb4, 0x3b, 0x20, 0xe4, 0xde, 0x5a, 0x0e, 0xc1, 0xf9, 0x7b, 0x9c, 0x13, 0x71, 0xac, 0x58, 0x52, 0xc2, 0xf8, 0x18, 0x4c, 0x5e, 0xc3, 0xf6, 0xbe, 0xe5, 0xf0, 0x2b, 0x9a, 0x21, 0xe8, 0x5e, 0xe5, 0x74, 0x13, 0x1c, 0x48, 0xef, 0x6c, 0x08, 0xd7, 0x43, 0x90, 0xa9, 0x6b, 0x3a, 0x1e, 0x82, 0xe2, 0x8b, 0x9c, 0x62, 0x8c, 0xe8, 0x13, 0x68, 0x19, 0xf2, 0x0d, 0x8b, 0x97, 0xa5, 0x78, 0xf8, 0x6b, 0x1c, 0x9e, 0x13, 0x18, 0x4e, 0xd1, 0xb6, 0xda, 0x9d, 0x26, 0xa9, 0x59, 0xf1, 0x14, 0xbf, 0x2f, 0x28, 0x04, 0x86, 0x53, 0x1c, 0xc3, 0xad, 0x7f, 0x20, 0x28, 0x1c, 0x9f, 0x3f, 0x1f, 0x85, 0x9c, 0x65, 0x36, 0x0f, 0x2d, 0x73, 0x18, 0x23, 0xbe, 0xc4, 0x19, 0x80, 0x43, 0x08, 0xc1, 0x45, 0xc8, 0x0e, 0xbb, 0x10, 0x7f, 0xf8, 0xae, 0xd8, 0x1e, 0x62, 0x05, 0xd6, 0x60, 0x42, 0x24, 0x28, 0xc3, 0x32, 0x87, 0xa0, 0xf8, 0x23, 0x4e, 0x51, 0xf0, 0xc1, 0xf8, 0x34, 0x5c, 0xec, 0xb8, 0x0d, 0x3c, 0x0c, 0xc9, 0xeb, 0x62, 0x1a, 0x1c, 0xc2, 0x5d, 0xb9, 0x8f, 0x4d, 0xfd, 0x60, 0x38, 0x86, 0xaf, 0x08, 0x57, 0x0a, 0x0c, 0xa1, 0x58, 0x81, 0xf1, 0x96, 0x66, 0x3b, 0x07, 0x5a, 0x73, 0xa8, 0xe5, 0xf8, 0x63, 0xce, 0x91, 0xf7, 0x40, 0xdc, 0x23, 0x1d, 0xf3, 0x38, 0x34, 0x5f, 0x15, 0x1e, 0xf1, 0xc1, 0xf8, 0xd6, 0x73, 0x5c, 0x7a, 0x9f, 0x75, 0x1c, 0xb6, 0xaf, 0x89, 0xad, 0xc7, 0xb0, 0x9b, 0x7e, 0xc6, 0x8b, 0x90, 0x75, 0x8c, 0x17, 0x87, 0xa2, 0xf9, 0x13, 0xb1, 0xd2, 0x14, 0x40, 0xc0, 0x4f, 0xc1, 0x2d, 0x91, 0x65, 0x62, 0x08, 0xb2, 0x3f, 0xe5, 0x64, 0x27, 0x22, 0x4a, 0x05, 0x4f, 0x09, 0xc7, 0xa5, 0xfc, 0x33, 0x91, 0x12, 0x70, 0x88, 0x6b, 0x87, 0x1c, 0x14, 0x1c, 0xad, 0x7e, 0x3c, 0xaf, 0xfd, 0xb9, 0xf0, 0x1a, 0xc3, 0x06, 0xbc, 0xb6, 0x0b, 0x27, 0x38, 0xe3, 0xf1, 0xd6, 0xf5, 0xeb, 0x22, 0xb1, 0x32, 0xf4, 0x5e, 0x70, 0x75, 0xff, 0x3f, 0xcc, 0x78, 0xee, 0x14, 0x1d, 0xa9, 0xa3, 0xb6, 0xb4, 0xf6, 0x10, 0xcc, 0xdf, 0xe0, 0xcc, 0x22, 0xe3, 0x7b, 0x2d, 0xad, 0xb3, 0xa9, 0xb5, 0x09, 0xf9, 0x15, 0x28, 0x0a, 0xf2, 0x8e, 0x69, 0x63, 0xdd, 0x6a, 0x98, 0xc6, 0x8b, 0xb8, 0x36, 0x04, 0xf5, 0x5f, 0x84, 0x96, 0x6a, 0xcf, 0x07, 0x27, 0xcc, 0xeb, 0x20, 0x7b, 0xbd, 0x8a, 0x6a, 0xb4, 0xda, 0x96, 0xed, 0xc6, 0x30, 0x7e, 0x53, 0xac, 0x94, 0x87, 0x5b, 0xa7, 0xb0, 0x52, 0x05, 0x0a, 0xf4, 0x71, 0xd8, 0x90, 0xfc, 0x4b, 0x4e, 0x34, 0xde, 0x45, 0xf1, 0xc4, 0xa1, 0x5b, 0xad, 0xb6, 0x66, 0x0f, 0x93, 0xff, 0xfe, 0x4a, 0x24, 0x0e, 0x0e, 0xe1, 0x89, 0xc3, 0x3d, 0x6c, 0x63, 0x52, 0xed, 0x87, 0x60, 0xf8, 0x96, 0x48, 0x1c, 0x02, 0xc3, 0x29, 0x44, 0xc3, 0x30, 0x04, 0xc5, 0x5f, 0x0b, 0x0a, 0x81, 0x21, 0x14, 0x9f, 0xeb, 0x16, 0x5a, 0x1b, 0x37, 0x0c, 0xc7, 0xb5, 0x59, 0x1f, 0x3c, 0x98, 0xea, 0xdb, 0xef, 0x06, 0x9b, 0x30, 0xc5, 0x07, 0x2d, 0x3d, 0x06, 0x13, 0xa1, 0x16, 0x03, 0xc5, 0xfd, 0xf6, 0xa3, 0xf8, 0xf3, 0xef, 0xf3, 0x64, 0x14, 0xec, 0x30, 0x4a, 0x1b, 0x64, 0xdd, 0x83, 0x7d, 0x40, 0x3c, 0xd9, 0x4b, 0xef, 0x7b, 0x4b, 0x1f, 0x68, 0x03, 0x4a, 0x97, 0x60, 0x3c, 0xd0, 0x03, 0xc4, 0x53, 0xfd, 0x02, 0xa7, 0xca, 0xfb, 0x5b, 0x80, 0xd2, 0x39, 0x48, 0x91, 0x7a, 0x1e, 0x0f, 0xff, 0x45, 0x0e, 0xa7, 0xea, 0xa5, 0x87, 0x21, 0x23, 0xea, 0x78, 0x3c, 0xf4, 0x97, 0x38, 0xd4, 0x83, 0x10, 0xb8, 0xa8, 0xe1, 0xf1, 0xf0, 0x5f, 0x16, 0x70, 0x01, 0x21, 0xf0, 0xe1, 0x5d, 0xf8, 0x9d, 0x5f, 0x49, 0xf1, 0x3c, 0x2c, 0x7c, 0x77, 0x11, 0xc6, 0x78, 0xf1, 0x8e, 0x47, 0x7f, 0x9e, 0x0f, 0x2e, 0x10, 0xa5, 0x07, 0x21, 0x3d, 0xa4, 0xc3, 0x7f, 0x95, 0x43, 0x99, 0x7e, 0x69, 0x05, 0x72, 0xbe, 0x82, 0x1d, 0x0f, 0xff, 0x35, 0x0e, 0xf7, 0xa3, 0x88, 0xe9, 0xbc, 0x60, 0xc7, 0x13, 0xfc, 0xba, 0x30, 0x9d, 0x23, 0x88, 0xdb, 0x44, 0xad, 0x8e, 0x47, 0xff, 0x86, 0xf0, 0xba, 0x80, 0x94, 0x1e, 0x85, 0xac, 0x97, 0x7f, 0xe3, 0xf1, 0xbf, 0xc9, 0xf1, 0x5d, 0x0c, 0xf1, 0x80, 0x2f, 0xff, 0xc7, 0x53, 0xfc, 0x96, 0xf0, 0x80, 0x0f, 0x45, 0xb6, 0x51, 0xb8, 0xa6, 0xc7, 0x33, 0xfd, 0xb6, 0xd8, 0x46, 0xa1, 0x92, 0x4e, 0x56, 0x93, 0xa6, 0xc1, 0x78, 0x8a, 0xdf, 0x11, 0xab, 0x49, 0xf5, 0x89, 0x19, 0xe1, 0x22, 0x19, 0xcf, 0xf1, 0xbb, 0xc2, 0x8c, 0x50, 0x8d, 0x2c, 0xed, 0x00, 0xea, 0x2d, 0x90, 0xf1, 0x7c, 0x2f, 0x73, 0xbe, 0xc9, 0x9e, 0xfa, 0x58, 0x7a, 0x12, 0x4e, 0x44, 0x17, 0xc7, 0x78, 0xd6, 0x2f, 0xbc, 0x1f, 0x3a, 0xce, 0xf8, 0x6b, 0x63, 0x69, 0xb7, 0x9b, 0x65, 0xfd, 0x85, 0x31, 0x9e, 0xf6, 0x95, 0xf7, 0x83, 0x89, 0xd6, 0x5f, 0x17, 0x4b, 0x65, 0x80, 0x6e, 0x4d, 0x8a, 0xe7, 0x7a, 0x95, 0x73, 0xf9, 0x40, 0x64, 0x6b, 0xf0, 0x92, 0x14, 0x8f, 0xff, 0xa2, 0xd8, 0x1a, 0x1c, 0x41, 0xb6, 0x86, 0xa8, 0x46, 0xf1, 0xe8, 0xd7, 0xc4, 0xd6, 0x10, 0x90, 0xd2, 0x45, 0xc8, 0x98, 0x9d, 0x66, 0x93, 0xc4, 0x16, 0x1a, 0xfc, 0x73, 0xa6, 0xe2, 0xbf, 0x7c, 0xc0, 0xc1, 0x02, 0x50, 0x3a, 0x07, 0x69, 0xdc, 0xda, 0xc7, 0xb5, 0x38, 0xe4, 0xbf, 0x7e, 0x20, 0xf2, 0x09, 0xd1, 0x2e, 0x3d, 0x0a, 0xc0, 0x0e, 0xd3, 0xf4, 0x2b, 0x51, 0x0c, 0xf6, 0xdf, 0x3e, 0xe0, 0xbf, 0x94, 0xe8, 0x42, 0xba, 0x04, 0xec, 0x77, 0x17, 0x83, 0x09, 0xde, 0x0d, 0x12, 0xd0, 0x03, 0xf8, 0x43, 0x30, 0xf6, 0xac, 0x63, 0x99, 0xae, 0xd6, 0x88, 0x43, 0xff, 0x3b, 0x47, 0x0b, 0x7d, 0xe2, 0xb0, 0x96, 0x65, 0x63, 0x57, 0x6b, 0x38, 0x71, 0xd8, 0xff, 0xe0, 0x58, 0x0f, 0x40, 0xc0, 0xba, 0xe6, 0xb8, 0xc3, 0xcc, 0xfb, 0x3f, 0x05, 0x58, 0x00, 0x88, 0xd1, 0xe4, 0xef, 0xab, 0xf8, 0x30, 0x0e, 0xfb, 0x9e, 0x30, 0x9a, 0xeb, 0x97, 0x1e, 0x86, 0x2c, 0xf9, 0x93, 0xfd, 0x7a, 0x28, 0x06, 0xfc, 0x5f, 0x1c, 0xdc, 0x45, 0x90, 0x91, 0x1d, 0xb7, 0xe6, 0x1a, 0xf1, 0xce, 0xfe, 0x6f, 0xbe, 0xd2, 0x42, 0xbf, 0x54, 0x86, 0x9c, 0xe3, 0xd6, 0x6a, 0x1d, 0xde, 0xd1, 0xc4, 0xc0, 0x7f, 0xfc, 0x81, 0x77, 0xc8, 0xf5, 0x30, 0xcb, 0xa7, 0xa3, 0x2f, 0xeb, 0x60, 0xcd, 0x5a, 0xb3, 0xd8, 0x35, 0x1d, 0xfc, 0xcf, 0xbd, 0x70, 0x5a, 0xb7, 0x5a, 0xfb, 0x96, 0xb3, 0xe8, 0x25, 0x92, 0xc5, 0x96, 0xd6, 0x76, 0xa8, 0xf6, 0x12, 0xbf, 0x69, 0xcb, 0xf1, 0x27, 0xf2, 0x62, 0xe6, 0x78, 0xb7, 0x74, 0x73, 0xb7, 0xc2, 0xf8, 0xa5, 0xa6, 0xa5, 0xb9, 0x86, 0xd9, 0xd8, 0xb1, 0x0c, 0xd3, 0x45, 0x79, 0x90, 0xea, 0xf4, 0x13, 0x93, 0xa4, 0x48, 0xf5, 0xb9, 0x7f, 0x48, 0x43, 0x96, 0x5d, 0xf0, 0x6c, 0x6a, 0x6d, 0xf4, 0x73, 0x90, 0xdf, 0xe2, 0x7b, 0xe4, 0xfe, 0xa5, 0x0b, 0x8e, 0x77, 0x9b, 0xec, 0x1b, 0x7f, 0xc1, 0xd3, 0x5e, 0xf0, 0xab, 0xd2, 0x4f, 0xca, 0xcb, 0xf7, 0xfd, 0xf0, 0xcd, 0x93, 0xf7, 0xf4, 0xb5, 0x8f, 0x14, 0xc5, 0x45, 0x16, 0xcc, 0x0b, 0x7b, 0x86, 0xe9, 0xde, 0xbf, 0x74, 0x41, 0x09, 0x8c, 0x87, 0xae, 0x41, 0x86, 0xbf, 0x70, 0xf8, 0x57, 0x86, 0xdb, 0xfb, 0x8c, 0x2d, 0xd4, 0xd8, 0xb8, 0x67, 0xdf, 0x78, 0xf3, 0xe4, 0xc8, 0xb1, 0xc7, 0xf6, 0xc6, 0x42, 0xcf, 0x41, 0x4e, 0xd8, 0xb1, 0x5e, 0x73, 0xf8, 0x8f, 0xb2, 0xef, 0x8c, 0x99, 0xf6, 0x7a, 0x8d, 0x8f, 0x7e, 0xc7, 0x0f, 0xdf, 0x3c, 0x39, 0x37, 0x70, 0xe4, 0x85, 0xbd, 0x8e, 0x51, 0x53, 0xfc, 0x63, 0xa0, 0x67, 0x20, 0x49, 0x86, 0x62, 0x3f, 0xdf, 0x3e, 0xd9, 0x67, 0x28, 0x6f, 0x88, 0x33, 0x7c, 0x82, 0xc3, 0x0c, 0x43, 0x78, 0x67, 0x1e, 0x85, 0xc9, 0x9e, 0xe5, 0x41, 0x32, 0x24, 0xaf, 0xe2, 0x43, 0xfe, 0x8b, 0x27, 0xf2, 0x27, 0x9a, 0xee, 0xfe, 0xa2, 0x4f, 0x9a, 0xcf, 0xf3, 0x9f, 0xe9, 0x95, 0x12, 0x17, 0xa4, 0x99, 0x8b, 0x30, 0x1e, 0xf0, 0xf1, 0xb1, 0xc0, 0x8f, 0x80, 0x1c, 0xf6, 0xd2, 0xb1, 0xf0, 0xe7, 0x21, 0xf3, 0x61, 0x70, 0x73, 0x3f, 0x40, 0x30, 0x56, 0x6e, 0x36, 0x37, 0xb5, 0xb6, 0x83, 0x9e, 0x82, 0x49, 0xd6, 0xba, 0xef, 0x5a, 0xab, 0xf4, 0xbb, 0xce, 0xa6, 0xd6, 0xe6, 0x01, 0x7d, 0x77, 0xc0, 0xdd, 0x1c, 0xb0, 0xd0, 0xa3, 0x4d, 0xc7, 0x57, 0x7a, 0x59, 0xd0, 0x13, 0x20, 0x0b, 0x21, 0xdd, 0x5b, 0x84, 0x99, 0x85, 0xeb, 0x99, 0x81, 0xcc, 0x42, 0x99, 0x11, 0xf7, 0x70, 0xa0, 0x47, 0x20, 0xb3, 0x6e, 0xba, 0x0f, 0x2c, 0x11, 0x3e, 0x16, 0x83, 0x73, 0x91, 0x7c, 0x42, 0x89, 0xf1, 0x78, 0x18, 0x8e, 0x3f, 0x7f, 0x96, 0xe0, 0x53, 0x83, 0xf1, 0x54, 0xa9, 0x8b, 0xa7, 0x8f, 0xa8, 0x0c, 0x59, 0xb2, 0xe6, 0xcc, 0x00, 0xf6, 0xff, 0x01, 0x6e, 0x8b, 0x24, 0xf0, 0xb4, 0x18, 0x43, 0x17, 0x25, 0x28, 0x98, 0x0d, 0xa3, 0x31, 0x14, 0x3e, 0x23, 0xba, 0x28, 0x42, 0x51, 0xf5, 0xac, 0x18, 0x1b, 0x40, 0x51, 0x0d, 0x59, 0x51, 0xf5, 0x5b, 0x51, 0xf5, 0xac, 0xc8, 0xc4, 0x50, 0xf8, 0xad, 0xf0, 0x9e, 0xd1, 0x2a, 0xc0, 0x25, 0xe3, 0x05, 0x5c, 0x63, 0x66, 0x64, 0x23, 0x92, 0x91, 0xe0, 0xe8, 0xaa, 0x31, 0x12, 0x1f, 0x0e, 0xad, 0x41, 0xae, 0x5a, 0xef, 0xd2, 0x00, 0xff, 0xef, 0x10, 0x91, 0xa6, 0xd4, 0x43, 0x3c, 0x7e, 0xa4, 0x67, 0x0e, 0x9b, 0x52, 0x2e, 0xce, 0x1c, 0xdf, 0x9c, 0x7c, 0xb8, 0xae, 0x39, 0x8c, 0x26, 0x1f, 0x6b, 0x8e, 0x8f, 0xc7, 0x8f, 0x44, 0x17, 0x61, 0x6c, 0xd9, 0xb2, 0x88, 0x66, 0x71, 0x9c, 0x92, 0x9c, 0x8e, 0x24, 0xe1, 0x3a, 0x8c, 0x40, 0x20, 0xe8, 0xea, 0xd0, 0xd0, 0x27, 0xf0, 0xc2, 0xa0, 0xd5, 0x11, 0x5a, 0x62, 0x75, 0xc4, 0xb3, 0x7f, 0x07, 0x2e, 0x1f, 0xba, 0x98, 0xb4, 0xc9, 0xc5, 0x89, 0x21, 0x76, 0xa0, 0x50, 0x0e, 0xed, 0x40, 0x21, 0x46, 0x55, 0x98, 0x10, 0xb2, 0x8a, 0xd9, 0x21, 0x39, 0xb8, 0x28, 0xf3, 0xdf, 0x3a, 0x0f, 0xa2, 0xe5, 0xba, 0x8c, 0x35, 0xcc, 0x80, 0x76, 0xa0, 0x20, 0x44, 0x9b, 0x0e, 0x9d, 0xf4, 0x64, 0x44, 0x5d, 0x0d, 0x73, 0x32, 0x55, 0x46, 0x19, 0xc2, 0xcf, 0xac, 0xc2, 0x89, 0xe8, 0x6c, 0x15, 0x97, 0x2d, 0x25, 0x7f, 0x96, 0x5d, 0x81, 0x9b, 0x22, 0x33, 0x53, 0x1c, 0x49, 0x22, 0x54, 0x27, 0x02, 0xe9, 0xc8, 0x0f, 0x4e, 0x47, 0x80, 0xd3, 0xbd, 0xe0, 0x6e, 0x90, 0xf9, 0xc1, 0xc9, 0x08, 0x70, 0xd2, 0x0f, 0xfe, 0x2c, 0x14, 0x82, 0x79, 0xc8, 0x8f, 0x1e, 0x8f, 0x40, 0x8f, 0x47, 0xa0, 0xa3, 0xc7, 0x4e, 0x45, 0xa0, 0x53, 0x21, 0x74, 0xb5, 0xef, 0xd8, 0x93, 0x11, 0xe8, 0xc9, 0x08, 0x74, 0xf4, 0xd8, 0x28, 0x02, 0x8d, 0xfc, 0xe8, 0x87, 0x61, 0x22, 0x94, 0x72, 0xfc, 0xf0, 0xb1, 0x08, 0xf8, 0x58, 0xa8, 0x36, 0x87, 0x53, 0x8d, 0x1f, 0x3f, 0x11, 0x81, 0x9f, 0x88, 0x1a, 0x3e, 0xda, 0xfa, 0xd1, 0x08, 0xf8, 0x68, 0xe4, 0xf0, 0xd1, 0x78, 0x39, 0x02, 0x2f, 0xfb, 0xf1, 0x25, 0xc8, 0xfb, 0xb3, 0x8a, 0x1f, 0x9b, 0x89, 0xc0, 0x66, 0xc2, 0x7e, 0x0f, 0xa4, 0x94, 0xb8, 0x48, 0xcf, 0xf6, 0xd9, 0x2e, 0x81, 0x34, 0x72, 0xac, 0xce, 0xe6, 0x0a, 0x4c, 0x47, 0x25, 0x8d, 0x08, 0x8e, 0x33, 0x7e, 0x8e, 0xc2, 0xd2, 0x74, 0x20, 0x59, 0x50, 0x5c, 0xa7, 0xe5, 0x67, 0x7e, 0x06, 0xa6, 0x22, 0x52, 0x47, 0x04, 0xf1, 0x7d, 0x7e, 0xe2, 0xdc, 0xd2, 0x4c, 0x80, 0x38, 0x70, 0x56, 0xf0, 0xb7, 0x56, 0x3f, 0x9a, 0x82, 0x02, 0x4f, 0x51, 0xdb, 0x76, 0x0d, 0xdb, 0xb8, 0x86, 0x7e, 0xa6, 0x7f, 0x87, 0xb5, 0x14, 0x95, 0xda, 0x38, 0xee, 0x18, 0x8d, 0xd6, 0x33, 0x7d, 0x1b, 0xad, 0xfb, 0x87, 0x19, 0x20, 0xae, 0xdf, 0xaa, 0xf4, 0xf4, 0x5b, 0x77, 0x0d, 0xa2, 0xed, 0xd7, 0x76, 0x55, 0x7a, 0xda, 0xae, 0x38, 0x9a, 0xc8, 0xee, 0xeb, 0x72, 0x6f, 0xf7, 0x75, 0x66, 0x10, 0x4f, 0xff, 0x26, 0xec, 0x72, 0x6f, 0x13, 0x16, 0xcb, 0x14, 0xdd, 0x8b, 0x5d, 0xee, 0xed, 0xc5, 0x06, 0x32, 0xf5, 0x6f, 0xc9, 0x2e, 0xf7, 0xb6, 0x64, 0xb1, 0x4c, 0xd1, 0x9d, 0xd9, 0xe3, 0x11, 0x9d, 0xd9, 0xdd, 0x83, 0xa8, 0x06, 0x35, 0x68, 0x5b, 0x51, 0x0d, 0xda, 0x3d, 0x03, 0x0d, 0x1b, 0xd8, 0xa7, 0x3d, 0x1e, 0xd1, 0xa7, 0xc5, 0x1b, 0xd7, 0xa7, 0x5d, 0xdb, 0x8a, 0x6a, 0xd7, 0x86, 0x30, 0xae, 0x5f, 0xd7, 0xb6, 0x1c, 0xee, 0xda, 0xe6, 0x07, 0x71, 0x45, 0x37, 0x6f, 0x97, 0x7b, 0x9b, 0xb7, 0x33, 0xf1, 0x7b, 0x31, 0xaa, 0x87, 0x7b, 0xa6, 0x6f, 0x0f, 0x37, 0xd4, 0xe6, 0x8e, 0x6b, 0xe5, 0x9e, 0xee, 0xd7, 0xca, 0xdd, 0x37, 0x0c, 0xfb, 0xe0, 0x8e, 0xee, 0xc9, 0x3e, 0x1d, 0xdd, 0xe2, 0x30, 0xd4, 0x9f, 0x34, 0x76, 0x9f, 0x34, 0x76, 0x9f, 0x34, 0x76, 0x9f, 0x34, 0x76, 0xff, 0x37, 0x1a, 0xbb, 0x52, 0xea, 0xe5, 0x2f, 0x9d, 0x94, 0xce, 0x9c, 0x86, 0x31, 0x3e, 0x34, 0x1a, 0x85, 0xc4, 0x66, 0x59, 0x1e, 0xa1, 0xff, 0x2e, 0xcb, 0x12, 0xfd, 0x77, 0x45, 0x4e, 0x2c, 0x6f, 0xbc, 0x71, 0x63, 0x76, 0xe4, 0x7b, 0x37, 0x66, 0x47, 0x7e, 0x70, 0x63, 0x76, 0xe4, 0xad, 0x1b, 0xb3, 0xd2, 0x3b, 0x37, 0x66, 0xa5, 0xf7, 0x6e, 0xcc, 0x4a, 0x3f, 0xb9, 0x31, 0x2b, 0x5d, 0x3f, 0x9a, 0x95, 0xbe, 0x72, 0x34, 0x2b, 0x7d, 0xfd, 0x68, 0x56, 0xfa, 0xf6, 0xd1, 0xac, 0xf4, 0x9d, 0xa3, 0x59, 0xe9, 0x8d, 0xa3, 0x59, 0xe9, 0x7b, 0x47, 0xb3, 0x23, 0x6f, 0x1d, 0xcd, 0x4a, 0xef, 0x1c, 0xcd, 0x8e, 0xbc, 0x77, 0x34, 0x2b, 0xfd, 0xe4, 0x68, 0x76, 0xe4, 0xfa, 0x3f, 0xcd, 0x8e, 0xfc, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x30, 0xad, 0x3f, 0x2b, 0x9e, 0x46, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x MapEnum) String() string { s, ok := MapEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *FloatingPoint) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FloatingPoint") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FloatingPoint but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FloatingPoint but is not nil && this == nil") } if this.F != nil && that1.F != nil { if *this.F != *that1.F { return fmt.Errorf("F this(%v) Not Equal that(%v)", *this.F, *that1.F) } } else if this.F != nil { return fmt.Errorf("this.F == nil && that.F != nil") } else if that1.F != nil { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *FloatingPoint) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.F != nil && that1.F != nil { if *this.F != *that1.F { return false } } else if this.F != nil { return false } else if that1.F != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomMap) if !ok { that2, ok := that.(CustomMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomMap but is not nil && this == nil") } if len(this.Nullable128S) != len(that1.Nullable128S) { return fmt.Errorf("Nullable128S this(%v) Not Equal that(%v)", len(this.Nullable128S), len(that1.Nullable128S)) } for i := range this.Nullable128S { if !this.Nullable128S[i].Equal(*that1.Nullable128S[i]) { //nullable return fmt.Errorf("Nullable128S this[%v](%v) Not Equal that[%v](%v)", i, this.Nullable128S[i], i, that1.Nullable128S[i]) } } if len(this.Uint128S) != len(that1.Uint128S) { return fmt.Errorf("Uint128S this(%v) Not Equal that(%v)", len(this.Uint128S), len(that1.Uint128S)) } for i := range this.Uint128S { if !this.Uint128S[i].Equal(that1.Uint128S[i]) { //not nullable return fmt.Errorf("Uint128S this[%v](%v) Not Equal that[%v](%v)", i, this.Uint128S[i], i, that1.Uint128S[i]) } } if len(this.NullableIds) != len(that1.NullableIds) { return fmt.Errorf("NullableIds this(%v) Not Equal that(%v)", len(this.NullableIds), len(that1.NullableIds)) } for i := range this.NullableIds { if !this.NullableIds[i].Equal(*that1.NullableIds[i]) { //nullable return fmt.Errorf("NullableIds this[%v](%v) Not Equal that[%v](%v)", i, this.NullableIds[i], i, that1.NullableIds[i]) } } if len(this.Ids) != len(that1.Ids) { return fmt.Errorf("Ids this(%v) Not Equal that(%v)", len(this.Ids), len(that1.Ids)) } for i := range this.Ids { if !this.Ids[i].Equal(that1.Ids[i]) { //not nullable return fmt.Errorf("Ids this[%v](%v) Not Equal that[%v](%v)", i, this.Ids[i], i, that1.Ids[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomMap) if !ok { that2, ok := that.(CustomMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Nullable128S) != len(that1.Nullable128S) { return false } for i := range this.Nullable128S { if !this.Nullable128S[i].Equal(*that1.Nullable128S[i]) { //nullable return false } } if len(this.Uint128S) != len(that1.Uint128S) { return false } for i := range this.Uint128S { if !this.Uint128S[i].Equal(that1.Uint128S[i]) { //not nullable return false } } if len(this.NullableIds) != len(that1.NullableIds) { return false } for i := range this.NullableIds { if !this.NullableIds[i].Equal(*that1.NullableIds[i]) { //nullable return false } } if len(this.Ids) != len(that1.Ids) { return false } for i := range this.Ids { if !this.Ids[i].Equal(that1.Ids[i]) { //not nullable return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllMaps) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMaps") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMaps but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMaps but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllMaps) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllMapsOrdered) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMapsOrdered") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMapsOrdered but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMapsOrdered but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllMapsOrdered) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type FloatingPointFace interface { Proto() github_com_gogo_protobuf_proto.Message GetF() *float64 } func (this *FloatingPoint) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *FloatingPoint) TestProto() github_com_gogo_protobuf_proto.Message { return NewFloatingPointFromFace(this) } func (this *FloatingPoint) GetF() *float64 { return this.F } func NewFloatingPointFromFace(that FloatingPointFace) *FloatingPoint { this := &FloatingPoint{} this.F = that.GetF() return this } type CustomMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNullable128S() map[string]*github_com_gogo_protobuf_test_custom.Uint128 GetUint128S() map[string]github_com_gogo_protobuf_test_custom.Uint128 GetNullableIds() map[string]*github_com_gogo_protobuf_test.Uuid GetIds() map[string]github_com_gogo_protobuf_test.Uuid } func (this *CustomMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomMapFromFace(this) } func (this *CustomMap) GetNullable128S() map[string]*github_com_gogo_protobuf_test_custom.Uint128 { return this.Nullable128S } func (this *CustomMap) GetUint128S() map[string]github_com_gogo_protobuf_test_custom.Uint128 { return this.Uint128S } func (this *CustomMap) GetNullableIds() map[string]*github_com_gogo_protobuf_test.Uuid { return this.NullableIds } func (this *CustomMap) GetIds() map[string]github_com_gogo_protobuf_test.Uuid { return this.Ids } func NewCustomMapFromFace(that CustomMapFace) *CustomMap { this := &CustomMap{} this.Nullable128S = that.GetNullable128S() this.Uint128S = that.GetUint128S() this.NullableIds = that.GetNullableIds() this.Ids = that.GetIds() return this } type AllMapsFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMaps) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMaps) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsFromFace(this) } func (this *AllMaps) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMaps) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMaps) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMaps) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMaps) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMaps) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMaps) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMaps) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMaps) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMaps) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMaps) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMaps) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMaps) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMaps) GetStringMap() map[string]string { return this.StringMap } func (this *AllMaps) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMaps) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMaps) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsFromFace(that AllMapsFace) *AllMaps { this := &AllMaps{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type AllMapsOrderedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMapsOrdered) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMapsOrdered) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsOrderedFromFace(this) } func (this *AllMapsOrdered) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMapsOrdered) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMapsOrdered) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMapsOrdered) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMapsOrdered) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMapsOrdered) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMapsOrdered) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMapsOrdered) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMapsOrdered) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMapsOrdered) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMapsOrdered) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMapsOrdered) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMapsOrdered) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMapsOrdered) GetStringMap() map[string]string { return this.StringMap } func (this *AllMapsOrdered) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMapsOrdered) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMapsOrdered) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsOrderedFromFace(that AllMapsOrderedFace) *AllMapsOrdered { this := &AllMapsOrdered{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } func (this *FloatingPoint) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&proto2_maps.FloatingPoint{") if this.F != nil { s = append(s, "F: "+valueToGoStringMapsproto2(this.F, "float64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&proto2_maps.CustomMap{") keysForNullable128S := make([]string, 0, len(this.Nullable128S)) for k := range this.Nullable128S { keysForNullable128S = append(keysForNullable128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullable128S) mapStringForNullable128S := "map[string]*github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForNullable128S { mapStringForNullable128S += fmt.Sprintf("%#v: %#v,", k, this.Nullable128S[k]) } mapStringForNullable128S += "}" if this.Nullable128S != nil { s = append(s, "Nullable128S: "+mapStringForNullable128S+",\n") } keysForUint128S := make([]string, 0, len(this.Uint128S)) for k := range this.Uint128S { keysForUint128S = append(keysForUint128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForUint128S) mapStringForUint128S := "map[string]github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForUint128S { mapStringForUint128S += fmt.Sprintf("%#v: %#v,", k, this.Uint128S[k]) } mapStringForUint128S += "}" if this.Uint128S != nil { s = append(s, "Uint128S: "+mapStringForUint128S+",\n") } keysForNullableIds := make([]string, 0, len(this.NullableIds)) for k := range this.NullableIds { keysForNullableIds = append(keysForNullableIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullableIds) mapStringForNullableIds := "map[string]*github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForNullableIds { mapStringForNullableIds += fmt.Sprintf("%#v: %#v,", k, this.NullableIds[k]) } mapStringForNullableIds += "}" if this.NullableIds != nil { s = append(s, "NullableIds: "+mapStringForNullableIds+",\n") } keysForIds := make([]string, 0, len(this.Ids)) for k := range this.Ids { keysForIds = append(keysForIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForIds) mapStringForIds := "map[string]github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForIds { mapStringForIds += fmt.Sprintf("%#v: %#v,", k, this.Ids[k]) } mapStringForIds += "}" if this.Ids != nil { s = append(s, "Ids: "+mapStringForIds+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMaps) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&proto2_maps.AllMaps{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMapsOrdered) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&proto2_maps.AllMapsOrdered{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringMapsproto2(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *FloatingPoint) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FloatingPoint) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.F != nil { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.F)))) i += 8 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Nullable128S) > 0 { for k := range m.Nullable128S { dAtA[i] = 0xa i++ v := m.Nullable128S[k] cSize := 0 if v != nil { cSize = v.Size() cSize += 1 + sovMapsproto2(uint64(cSize)) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + cSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n1, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } } } if len(m.Uint128S) > 0 { for k := range m.Uint128S { dAtA[i] = 0x12 i++ v := m.Uint128S[k] cSize := 0 cSize = v.Size() cSize += 1 + sovMapsproto2(uint64(cSize)) mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + cSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n2, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } } if len(m.NullableIds) > 0 { for k := range m.NullableIds { dAtA[i] = 0x1a i++ v := m.NullableIds[k] cSize := 0 if v != nil { cSize = v.Size() cSize += 1 + sovMapsproto2(uint64(cSize)) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + cSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n3, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 } } } if len(m.Ids) > 0 { for k := range m.Ids { dAtA[i] = 0x22 i++ v := m.Ids[k] cSize := 0 cSize = v.Size() cSize += 1 + sovMapsproto2(uint64(cSize)) mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + cSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n4, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n4 } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AllMaps) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllMaps) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StringToDoubleMap) > 0 { for k := range m.StringToDoubleMap { dAtA[i] = 0xa i++ v := m.StringToDoubleMap[k] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } if len(m.StringToFloatMap) > 0 { for k := range m.StringToFloatMap { dAtA[i] = 0x12 i++ v := m.StringToFloatMap[k] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(v)))) i += 4 } } if len(m.Int32Map) > 0 { for k := range m.Int32Map { dAtA[i] = 0x1a i++ v := m.Int32Map[k] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Int64Map) > 0 { for k := range m.Int64Map { dAtA[i] = 0x22 i++ v := m.Int64Map[k] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Uint32Map) > 0 { for k := range m.Uint32Map { dAtA[i] = 0x2a i++ v := m.Uint32Map[k] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Uint64Map) > 0 { for k := range m.Uint64Map { dAtA[i] = 0x32 i++ v := m.Uint64Map[k] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Sint32Map) > 0 { for k := range m.Sint32Map { dAtA[i] = 0x3a i++ v := m.Sint32Map[k] mapSize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint32(k)<<1)^uint32((k>>31)))) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint32(v)<<1)^uint32((v>>31)))) } } if len(m.Sint64Map) > 0 { for k := range m.Sint64Map { dAtA[i] = 0x42 i++ v := m.Sint64Map[k] mapSize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint64(v)<<1)^uint64((v>>63)))) } } if len(m.Fixed32Map) > 0 { for k := range m.Fixed32Map { dAtA[i] = 0x4a i++ v := m.Fixed32Map[k] mapSize := 1 + 4 + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Sfixed32Map) > 0 { for k := range m.Sfixed32Map { dAtA[i] = 0x52 i++ v := m.Sfixed32Map[k] mapSize := 1 + 4 + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Fixed64Map) > 0 { for k := range m.Fixed64Map { dAtA[i] = 0x5a i++ v := m.Fixed64Map[k] mapSize := 1 + 8 + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.Sfixed64Map) > 0 { for k := range m.Sfixed64Map { dAtA[i] = 0x62 i++ v := m.Sfixed64Map[k] mapSize := 1 + 8 + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.BoolMap) > 0 { for k := range m.BoolMap { dAtA[i] = 0x6a i++ v := m.BoolMap[k] mapSize := 1 + 1 + 1 + 1 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x10 i++ if v { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.StringMap) > 0 { for k := range m.StringMap { dAtA[i] = 0x72 i++ v := m.StringMap[k] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.StringToBytesMap) > 0 { for k := range m.StringToBytesMap { dAtA[i] = 0x7a i++ v := m.StringToBytesMap[k] byteSize := 0 if v != nil { byteSize = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + byteSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } if len(m.StringToEnumMap) > 0 { for k := range m.StringToEnumMap { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ v := m.StringToEnumMap[k] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.StringToMsgMap) > 0 { for k := range m.StringToMsgMap { dAtA[i] = 0x8a i++ dAtA[i] = 0x1 i++ v := m.StringToMsgMap[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovMapsproto2(uint64(msgSize)) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + msgSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n5, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n5 } } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AllMapsOrdered) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllMapsOrdered) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StringToDoubleMap) > 0 { keysForStringToDoubleMap := make([]string, 0, len(m.StringToDoubleMap)) for k := range m.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) for _, k := range keysForStringToDoubleMap { dAtA[i] = 0xa i++ v := m.StringToDoubleMap[string(k)] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } if len(m.StringToFloatMap) > 0 { keysForStringToFloatMap := make([]string, 0, len(m.StringToFloatMap)) for k := range m.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) for _, k := range keysForStringToFloatMap { dAtA[i] = 0x12 i++ v := m.StringToFloatMap[string(k)] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(v)))) i += 4 } } if len(m.Int32Map) > 0 { keysForInt32Map := make([]int32, 0, len(m.Int32Map)) for k := range m.Int32Map { keysForInt32Map = append(keysForInt32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) for _, k := range keysForInt32Map { dAtA[i] = 0x1a i++ v := m.Int32Map[int32(k)] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Int64Map) > 0 { keysForInt64Map := make([]int64, 0, len(m.Int64Map)) for k := range m.Int64Map { keysForInt64Map = append(keysForInt64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) for _, k := range keysForInt64Map { dAtA[i] = 0x22 i++ v := m.Int64Map[int64(k)] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Uint32Map) > 0 { keysForUint32Map := make([]uint32, 0, len(m.Uint32Map)) for k := range m.Uint32Map { keysForUint32Map = append(keysForUint32Map, uint32(k)) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) for _, k := range keysForUint32Map { dAtA[i] = 0x2a i++ v := m.Uint32Map[uint32(k)] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Uint64Map) > 0 { keysForUint64Map := make([]uint64, 0, len(m.Uint64Map)) for k := range m.Uint64Map { keysForUint64Map = append(keysForUint64Map, uint64(k)) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) for _, k := range keysForUint64Map { dAtA[i] = 0x32 i++ v := m.Uint64Map[uint64(k)] mapSize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.Sint32Map) > 0 { keysForSint32Map := make([]int32, 0, len(m.Sint32Map)) for k := range m.Sint32Map { keysForSint32Map = append(keysForSint32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) for _, k := range keysForSint32Map { dAtA[i] = 0x3a i++ v := m.Sint32Map[int32(k)] mapSize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint32(k)<<1)^uint32((k>>31)))) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint32(v)<<1)^uint32((v>>31)))) } } if len(m.Sint64Map) > 0 { keysForSint64Map := make([]int64, 0, len(m.Sint64Map)) for k := range m.Sint64Map { keysForSint64Map = append(keysForSint64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) for _, k := range keysForSint64Map { dAtA[i] = 0x42 i++ v := m.Sint64Map[int64(k)] mapSize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64((uint64(v)<<1)^uint64((v>>63)))) } } if len(m.Fixed32Map) > 0 { keysForFixed32Map := make([]uint32, 0, len(m.Fixed32Map)) for k := range m.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, uint32(k)) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) for _, k := range keysForFixed32Map { dAtA[i] = 0x4a i++ v := m.Fixed32Map[uint32(k)] mapSize := 1 + 4 + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Sfixed32Map) > 0 { keysForSfixed32Map := make([]int32, 0, len(m.Sfixed32Map)) for k := range m.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) for _, k := range keysForSfixed32Map { dAtA[i] = 0x52 i++ v := m.Sfixed32Map[int32(k)] mapSize := 1 + 4 + 1 + 4 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Fixed64Map) > 0 { keysForFixed64Map := make([]uint64, 0, len(m.Fixed64Map)) for k := range m.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, uint64(k)) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) for _, k := range keysForFixed64Map { dAtA[i] = 0x5a i++ v := m.Fixed64Map[uint64(k)] mapSize := 1 + 8 + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.Sfixed64Map) > 0 { keysForSfixed64Map := make([]int64, 0, len(m.Sfixed64Map)) for k := range m.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) for _, k := range keysForSfixed64Map { dAtA[i] = 0x62 i++ v := m.Sfixed64Map[int64(k)] mapSize := 1 + 8 + 1 + 8 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.BoolMap) > 0 { keysForBoolMap := make([]bool, 0, len(m.BoolMap)) for k := range m.BoolMap { keysForBoolMap = append(keysForBoolMap, bool(k)) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) for _, k := range keysForBoolMap { dAtA[i] = 0x6a i++ v := m.BoolMap[bool(k)] mapSize := 1 + 1 + 1 + 1 i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x10 i++ if v { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.StringMap) > 0 { keysForStringMap := make([]string, 0, len(m.StringMap)) for k := range m.StringMap { keysForStringMap = append(keysForStringMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) for _, k := range keysForStringMap { dAtA[i] = 0x72 i++ v := m.StringMap[string(k)] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.StringToBytesMap) > 0 { keysForStringToBytesMap := make([]string, 0, len(m.StringToBytesMap)) for k := range m.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) for _, k := range keysForStringToBytesMap { dAtA[i] = 0x7a i++ v := m.StringToBytesMap[string(k)] byteSize := 0 if v != nil { byteSize = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + byteSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } if len(m.StringToEnumMap) > 0 { keysForStringToEnumMap := make([]string, 0, len(m.StringToEnumMap)) for k := range m.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) for _, k := range keysForStringToEnumMap { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ v := m.StringToEnumMap[string(k)] mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v)) } } if len(m.StringToMsgMap) > 0 { keysForStringToMsgMap := make([]string, 0, len(m.StringToMsgMap)) for k := range m.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) for _, k := range keysForStringToMsgMap { dAtA[i] = 0x8a i++ dAtA[i] = 0x1 i++ v := m.StringToMsgMap[string(k)] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovMapsproto2(uint64(msgSize)) } mapSize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + msgSize i = encodeVarintMapsproto2(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintMapsproto2(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintMapsproto2(dAtA, i, uint64(v.Size())) n6, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n6 } } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintMapsproto2(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedFloatingPoint(r randyMapsproto2, easy bool) *FloatingPoint { this := &FloatingPoint{} if r.Intn(10) != 0 { v1 := float64(r.Float64()) if r.Intn(2) == 0 { v1 *= -1 } this.F = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 2) } return this } func NewPopulatedCustomMap(r randyMapsproto2, easy bool) *CustomMap { this := &CustomMap{} if r.Intn(10) != 0 { v2 := r.Intn(10) this.Nullable128S = make(map[string]*github_com_gogo_protobuf_test_custom.Uint128) for i := 0; i < v2; i++ { this.Nullable128S[randStringMapsproto2(r)] = (*github_com_gogo_protobuf_test_custom.Uint128)(github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r)) } } if r.Intn(10) != 0 { v3 := r.Intn(10) this.Uint128S = make(map[string]github_com_gogo_protobuf_test_custom.Uint128) for i := 0; i < v3; i++ { this.Uint128S[randStringMapsproto2(r)] = (github_com_gogo_protobuf_test_custom.Uint128)(*github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r)) } } if r.Intn(10) != 0 { v4 := r.Intn(10) this.NullableIds = make(map[string]*github_com_gogo_protobuf_test.Uuid) for i := 0; i < v4; i++ { this.NullableIds[randStringMapsproto2(r)] = (*github_com_gogo_protobuf_test.Uuid)(github_com_gogo_protobuf_test.NewPopulatedUuid(r)) } } if r.Intn(10) != 0 { v5 := r.Intn(10) this.Ids = make(map[string]github_com_gogo_protobuf_test.Uuid) for i := 0; i < v5; i++ { this.Ids[randStringMapsproto2(r)] = (github_com_gogo_protobuf_test.Uuid)(*github_com_gogo_protobuf_test.NewPopulatedUuid(r)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 5) } return this } func NewPopulatedAllMaps(r randyMapsproto2, easy bool) *AllMaps { this := &AllMaps{} if r.Intn(10) != 0 { v6 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v6; i++ { v7 := randStringMapsproto2(r) this.StringToDoubleMap[v7] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v7] *= -1 } } } if r.Intn(10) != 0 { v8 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v8; i++ { v9 := randStringMapsproto2(r) this.StringToFloatMap[v9] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v9] *= -1 } } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v10; i++ { v11 := int32(r.Int31()) this.Int32Map[v11] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v11] *= -1 } } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v12; i++ { v13 := int64(r.Int63()) this.Int64Map[v13] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v13] *= -1 } } } if r.Intn(10) != 0 { v14 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v14; i++ { v15 := uint32(r.Uint32()) this.Uint32Map[v15] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v16 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v16; i++ { v17 := uint64(uint64(r.Uint32())) this.Uint64Map[v17] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v18; i++ { v19 := int32(r.Int31()) this.Sint32Map[v19] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v19] *= -1 } } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v20; i++ { v21 := int64(r.Int63()) this.Sint64Map[v21] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v21] *= -1 } } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v22; i++ { v23 := uint32(r.Uint32()) this.Fixed32Map[v23] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v24; i++ { v25 := int32(r.Int31()) this.Sfixed32Map[v25] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v25] *= -1 } } } if r.Intn(10) != 0 { v26 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v26; i++ { v27 := uint64(uint64(r.Uint32())) this.Fixed64Map[v27] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v28 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v28; i++ { v29 := int64(r.Int63()) this.Sfixed64Map[v29] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v29] *= -1 } } } if r.Intn(10) != 0 { v30 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v30; i++ { v31 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v31] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v32 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v32; i++ { this.StringMap[randStringMapsproto2(r)] = randStringMapsproto2(r) } } if r.Intn(10) != 0 { v33 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v33; i++ { v34 := r.Intn(100) v35 := randStringMapsproto2(r) this.StringToBytesMap[v35] = make([]byte, v34) for i := 0; i < v34; i++ { this.StringToBytesMap[v35][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v36; i++ { this.StringToEnumMap[randStringMapsproto2(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v37 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v37; i++ { this.StringToMsgMap[randStringMapsproto2(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 18) } return this } func NewPopulatedAllMapsOrdered(r randyMapsproto2, easy bool) *AllMapsOrdered { this := &AllMapsOrdered{} if r.Intn(10) != 0 { v38 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v38; i++ { v39 := randStringMapsproto2(r) this.StringToDoubleMap[v39] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v39] *= -1 } } } if r.Intn(10) != 0 { v40 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v40; i++ { v41 := randStringMapsproto2(r) this.StringToFloatMap[v41] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v41] *= -1 } } } if r.Intn(10) != 0 { v42 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v42; i++ { v43 := int32(r.Int31()) this.Int32Map[v43] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v43] *= -1 } } } if r.Intn(10) != 0 { v44 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v44; i++ { v45 := int64(r.Int63()) this.Int64Map[v45] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v45] *= -1 } } } if r.Intn(10) != 0 { v46 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v46; i++ { v47 := uint32(r.Uint32()) this.Uint32Map[v47] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v48 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v48; i++ { v49 := uint64(uint64(r.Uint32())) this.Uint64Map[v49] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v50 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v50; i++ { v51 := int32(r.Int31()) this.Sint32Map[v51] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v51] *= -1 } } } if r.Intn(10) != 0 { v52 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v52; i++ { v53 := int64(r.Int63()) this.Sint64Map[v53] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v53] *= -1 } } } if r.Intn(10) != 0 { v54 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v54; i++ { v55 := uint32(r.Uint32()) this.Fixed32Map[v55] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v56 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v56; i++ { v57 := int32(r.Int31()) this.Sfixed32Map[v57] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v57] *= -1 } } } if r.Intn(10) != 0 { v58 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v58; i++ { v59 := uint64(uint64(r.Uint32())) this.Fixed64Map[v59] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v60 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v60; i++ { v61 := int64(r.Int63()) this.Sfixed64Map[v61] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v61] *= -1 } } } if r.Intn(10) != 0 { v62 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v62; i++ { v63 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v63] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v64; i++ { this.StringMap[randStringMapsproto2(r)] = randStringMapsproto2(r) } } if r.Intn(10) != 0 { v65 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v65; i++ { v66 := r.Intn(100) v67 := randStringMapsproto2(r) this.StringToBytesMap[v67] = make([]byte, v66) for i := 0; i < v66; i++ { this.StringToBytesMap[v67][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v68; i++ { this.StringToEnumMap[randStringMapsproto2(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v69 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v69; i++ { this.StringToMsgMap[randStringMapsproto2(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 18) } return this } type randyMapsproto2 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneMapsproto2(r randyMapsproto2) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringMapsproto2(r randyMapsproto2) string { v70 := r.Intn(100) tmps := make([]rune, v70) for i := 0; i < v70; i++ { tmps[i] = randUTF8RuneMapsproto2(r) } return string(tmps) } func randUnrecognizedMapsproto2(r randyMapsproto2, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldMapsproto2(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldMapsproto2(dAtA []byte, r randyMapsproto2, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) v71 := r.Int63() if r.Intn(2) == 0 { v71 *= -1 } dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(v71)) case 1: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateMapsproto2(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *FloatingPoint) Size() (n int) { var l int _ = l if m.F != nil { n += 9 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomMap) Size() (n int) { var l int _ = l if len(m.Nullable128S) > 0 { for k, v := range m.Nullable128S { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint128S) > 0 { for k, v := range m.Uint128S { _ = k _ = v l = 0 l = v.Size() l += 1 + sovMapsproto2(uint64(l)) mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.NullableIds) > 0 { for k, v := range m.NullableIds { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Ids) > 0 { for k, v := range m.Ids { _ = k _ = v l = 0 l = v.Size() l += 1 + sovMapsproto2(uint64(l)) mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllMaps) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if v != nil { l = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllMapsOrdered) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if v != nil { l = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovMapsproto2(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozMapsproto2(x uint64) (n int) { return sovMapsproto2(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *FloatingPoint) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FloatingPoint{`, `F:` + valueToStringMapsproto2(this.F) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomMap) String() string { if this == nil { return "nil" } keysForNullable128S := make([]string, 0, len(this.Nullable128S)) for k := range this.Nullable128S { keysForNullable128S = append(keysForNullable128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullable128S) mapStringForNullable128S := "map[string]*github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForNullable128S { mapStringForNullable128S += fmt.Sprintf("%v: %v,", k, this.Nullable128S[k]) } mapStringForNullable128S += "}" keysForUint128S := make([]string, 0, len(this.Uint128S)) for k := range this.Uint128S { keysForUint128S = append(keysForUint128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForUint128S) mapStringForUint128S := "map[string]github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForUint128S { mapStringForUint128S += fmt.Sprintf("%v: %v,", k, this.Uint128S[k]) } mapStringForUint128S += "}" keysForNullableIds := make([]string, 0, len(this.NullableIds)) for k := range this.NullableIds { keysForNullableIds = append(keysForNullableIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullableIds) mapStringForNullableIds := "map[string]*github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForNullableIds { mapStringForNullableIds += fmt.Sprintf("%v: %v,", k, this.NullableIds[k]) } mapStringForNullableIds += "}" keysForIds := make([]string, 0, len(this.Ids)) for k := range this.Ids { keysForIds = append(keysForIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForIds) mapStringForIds := "map[string]github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForIds { mapStringForIds += fmt.Sprintf("%v: %v,", k, this.Ids[k]) } mapStringForIds += "}" s := strings.Join([]string{`&CustomMap{`, `Nullable128S:` + mapStringForNullable128S + `,`, `Uint128S:` + mapStringForUint128S + `,`, `NullableIds:` + mapStringForNullableIds + `,`, `Ids:` + mapStringForIds + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllMaps) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMaps{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllMapsOrdered) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMapsOrdered{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringMapsproto2(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/marshaler/mapsproto2.proto", fileDescriptorMapsproto2) } var fileDescriptorMapsproto2 = []byte{ // 1148 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x97, 0xcd, 0x6f, 0x1a, 0x47, 0x18, 0xc6, 0x19, 0x30, 0x06, 0x86, 0xef, 0x89, 0x5b, 0x21, 0xa4, 0x0e, 0x36, 0xfd, 0x22, 0x24, 0x05, 0x9b, 0x46, 0x91, 0xe5, 0xb4, 0xa9, 0x8c, 0xed, 0x14, 0x2b, 0xc5, 0x8d, 0xa0, 0xe9, 0x97, 0x64, 0xa9, 0x60, 0x16, 0x82, 0x0a, 0x2c, 0x65, 0x97, 0xa8, 0xbe, 0x54, 0xf9, 0x33, 0x7a, 0xed, 0xad, 0xc7, 0x1e, 0x7b, 0xec, 0xd1, 0x52, 0x2f, 0x39, 0x46, 0x51, 0x65, 0x85, 0xed, 0x25, 0xc7, 0x1c, 0x73, 0xac, 0x76, 0x76, 0x17, 0x66, 0x77, 0xdf, 0xdd, 0x85, 0x9e, 0x72, 0xf0, 0x09, 0xcf, 0xf2, 0x3e, 0xbf, 0xe7, 0xdd, 0xdd, 0x99, 0x97, 0xc7, 0x78, 0xeb, 0x4c, 0x1c, 0xb6, 0x45, 0xa9, 0x3c, 0x6c, 0x4d, 0xa4, 0x47, 0xad, 0x81, 0x30, 0x29, 0x0f, 0x5b, 0x63, 0x69, 0x3c, 0x11, 0x65, 0xb1, 0x52, 0x62, 0x1f, 0x24, 0xaa, 0xaf, 0xd4, 0x2f, 0xb2, 0x1f, 0xf5, 0xfa, 0xf2, 0xa3, 0x69, 0xbb, 0x74, 0x26, 0x0e, 0xcb, 0x3d, 0xb1, 0x27, 0x96, 0xd9, 0x97, 0xed, 0x69, 0x97, 0xad, 0xd8, 0x82, 0xfd, 0xa5, 0x69, 0xf3, 0xef, 0xe0, 0xf8, 0xbd, 0x81, 0xd8, 0x92, 0xfb, 0xa3, 0xde, 0x03, 0xb1, 0x3f, 0x92, 0x49, 0x0c, 0xa3, 0x6e, 0x06, 0x6d, 0xa2, 0x02, 0x6a, 0xa0, 0x6e, 0xfe, 0xef, 0x20, 0x8e, 0x1c, 0x4c, 0x25, 0x59, 0x1c, 0xd6, 0x5b, 0x63, 0xf2, 0x0b, 0x8e, 0x9d, 0x4c, 0x07, 0x83, 0x56, 0x7b, 0x20, 0xec, 0x54, 0x76, 0xa5, 0x0c, 0xda, 0x0c, 0x14, 0xa2, 0x95, 0x42, 0x89, 0xf3, 0x2f, 0xcd, 0xab, 0x4b, 0x7c, 0xe9, 0xd1, 0x48, 0x9e, 0x9c, 0x57, 0xb7, 0x9f, 0x5f, 0xe6, 0x6e, 0x3a, 0xf6, 0x27, 0x0b, 0x92, 0x5c, 0x3e, 0x63, 0xf2, 0xd2, 0xc3, 0xfe, 0x48, 0xde, 0xa9, 0xec, 0x36, 0x4c, 0x7e, 0xe4, 0x31, 0x0e, 0xeb, 0x5f, 0x48, 0x19, 0x3f, 0xf3, 0x7e, 0xcf, 0xc1, 0xdb, 0x28, 0xd3, 0x7c, 0x6f, 0x5d, 0x5c, 0xe6, 0x7c, 0x2b, 0x7b, 0xcf, 0xbd, 0xc8, 0x4f, 0x38, 0x6a, 0xf4, 0x71, 0xdc, 0x91, 0x32, 0x01, 0x66, 0xfd, 0xa1, 0xc7, 0x6d, 0x1f, 0x77, 0x74, 0xf7, 0x0f, 0x9e, 0x5f, 0xe6, 0xf2, 0xae, 0xce, 0xa5, 0x87, 0xd3, 0x7e, 0xa7, 0xc1, 0x7b, 0x90, 0x53, 0x1c, 0x50, 0xad, 0xd6, 0x98, 0x55, 0xce, 0xc1, 0x6a, 0x6e, 0x51, 0xd4, 0x6f, 0x70, 0x19, 0x1b, 0x95, 0x9b, 0xfd, 0x0c, 0xa7, 0x6d, 0xaf, 0x87, 0xa4, 0x70, 0xe0, 0x47, 0xe1, 0x9c, 0xbd, 0xfc, 0x48, 0x43, 0xfd, 0x93, 0x6c, 0xe0, 0xe0, 0xe3, 0xd6, 0x60, 0x2a, 0x64, 0xfc, 0x9b, 0xa8, 0x10, 0x6b, 0x68, 0x8b, 0x3d, 0xff, 0x2e, 0xca, 0xde, 0xc1, 0x71, 0xd3, 0x33, 0x5e, 0x49, 0x7c, 0x17, 0xa7, 0xac, 0x4f, 0x69, 0x25, 0xfd, 0x6d, 0x1c, 0xfe, 0x3f, 0xba, 0xfc, 0x33, 0x82, 0x43, 0xfb, 0x83, 0x41, 0xbd, 0x35, 0x96, 0xc8, 0x77, 0x38, 0xdd, 0x94, 0x27, 0xfd, 0x51, 0xef, 0x2b, 0xf1, 0x50, 0x9c, 0xb6, 0x07, 0x42, 0xbd, 0x35, 0xd6, 0x37, 0xf4, 0x0d, 0xd3, 0xe3, 0xd6, 0x05, 0x25, 0x5b, 0x35, 0xf3, 0x6f, 0xd8, 0x29, 0xe4, 0x6b, 0x9c, 0x32, 0x2e, 0xb2, 0xb3, 0xa5, 0x92, 0xb5, 0xed, 0x5a, 0x74, 0x25, 0x1b, 0xc5, 0x1a, 0xd8, 0xc6, 0x20, 0x77, 0x71, 0xf8, 0x78, 0x24, 0x7f, 0x5c, 0x51, 0x79, 0xda, 0x1e, 0xcc, 0x83, 0x3c, 0xa3, 0x48, 0xe3, 0xcc, 0x35, 0xba, 0xfe, 0xf6, 0x2d, 0x55, 0xbf, 0xe6, 0xae, 0x67, 0x45, 0x0b, 0x3d, 0x5b, 0x92, 0x7d, 0x1c, 0x51, 0xdf, 0xb9, 0xd6, 0x40, 0x90, 0x01, 0xde, 0x05, 0x01, 0xf3, 0x2a, 0x8d, 0xb0, 0x50, 0x19, 0x08, 0xad, 0x87, 0x75, 0x0f, 0x04, 0xd7, 0xc4, 0x42, 0xa5, 0x22, 0x9a, 0xf3, 0x2e, 0x42, 0x2e, 0x88, 0xa6, 0xa5, 0x8b, 0x26, 0xdf, 0x45, 0x73, 0xde, 0x45, 0xd8, 0x03, 0xc1, 0x77, 0x31, 0x5f, 0x93, 0x43, 0x8c, 0xef, 0xf5, 0x7f, 0x16, 0x3a, 0x5a, 0x1b, 0x11, 0x60, 0x18, 0x19, 0x8c, 0x45, 0x99, 0x06, 0xe1, 0x74, 0xe4, 0x73, 0x1c, 0x6d, 0x76, 0x17, 0x18, 0xcc, 0x30, 0xef, 0xc3, 0xad, 0x74, 0x2d, 0x1c, 0x5e, 0x39, 0x6f, 0x47, 0xbb, 0xa5, 0xa8, 0x57, 0x3b, 0xdc, 0x3d, 0x71, 0xba, 0x45, 0x3b, 0x1a, 0x26, 0xe6, 0xd9, 0x0e, 0xc7, 0xe1, 0x95, 0xe4, 0x0e, 0x0e, 0x55, 0x45, 0x51, 0xad, 0xcc, 0xc4, 0x19, 0x64, 0x0b, 0x84, 0xe8, 0x35, 0x1a, 0xc0, 0x50, 0xb0, 0xb7, 0xc3, 0xb6, 0xbe, 0x2a, 0x4f, 0xb8, 0xbd, 0x1d, 0xa3, 0xca, 0x78, 0x3b, 0xc6, 0x9a, 0x3f, 0x81, 0xd5, 0x73, 0x59, 0x90, 0x54, 0x52, 0x72, 0x89, 0x13, 0x68, 0x14, 0x5b, 0x4e, 0xa0, 0x71, 0x99, 0x34, 0x71, 0xd2, 0xb8, 0x76, 0x34, 0x9a, 0xaa, 0x33, 0x38, 0x93, 0x62, 0xd8, 0xeb, 0xae, 0x58, 0xbd, 0x56, 0xa3, 0x5a, 0x09, 0xe4, 0x01, 0x4e, 0x18, 0x97, 0xea, 0x12, 0xbb, 0xe9, 0x34, 0xf0, 0xbb, 0x6a, 0x65, 0x6a, 0xa5, 0x1a, 0xd2, 0xa2, 0xcf, 0x1e, 0xe2, 0xb7, 0xe1, 0x69, 0xe5, 0x35, 0x2d, 0x11, 0x3f, 0x65, 0x0f, 0xf0, 0x5b, 0xe0, 0x64, 0xf2, 0x82, 0xf8, 0x2d, 0xbf, 0x13, 0xa6, 0x71, 0xc4, 0x8b, 0x83, 0x80, 0x38, 0x68, 0x17, 0x2f, 0x36, 0x19, 0x2f, 0x0e, 0x00, 0xe2, 0x00, 0x2f, 0xfe, 0x04, 0x27, 0xcc, 0x73, 0x88, 0x57, 0xc7, 0x01, 0x75, 0x1c, 0x50, 0xc3, 0xde, 0x6b, 0x80, 0x7a, 0xcd, 0xa2, 0x6e, 0x3a, 0x7a, 0xa7, 0x01, 0x75, 0x1a, 0x50, 0xc3, 0xde, 0x04, 0x50, 0x13, 0x5e, 0xfd, 0x29, 0x4e, 0x5a, 0x46, 0x0e, 0x2f, 0x0f, 0x01, 0xf2, 0x90, 0xe5, 0xb7, 0xd9, 0x3a, 0x6a, 0x78, 0x7d, 0x12, 0xd0, 0x27, 0x21, 0x7b, 0xb8, 0xfb, 0x75, 0x40, 0xbe, 0x0e, 0xda, 0xc3, 0xfa, 0x14, 0xa0, 0x4f, 0xf1, 0xfa, 0x3d, 0x1c, 0xe3, 0xa7, 0x0a, 0xaf, 0x0d, 0x03, 0xda, 0xb0, 0xf5, 0xb9, 0x9b, 0x46, 0x8a, 0xd7, 0x4e, 0x8f, 0x38, 0x1c, 0x17, 0xd3, 0x18, 0x59, 0x29, 0xd9, 0x7c, 0x8b, 0x37, 0xa0, 0xa1, 0x01, 0x30, 0x8a, 0x3c, 0x23, 0x51, 0xd9, 0x30, 0x0d, 0x0b, 0xa6, 0x9b, 0x0e, 0x79, 0xf2, 0x29, 0xbe, 0x06, 0x8c, 0x0e, 0x00, 0xbc, 0xcd, 0x83, 0xa3, 0x95, 0xac, 0x09, 0x6c, 0xfa, 0x5f, 0x81, 0x8f, 0x56, 0xff, 0x5c, 0xc3, 0x09, 0x7d, 0x44, 0x7d, 0x39, 0xe9, 0x08, 0x13, 0xa1, 0x43, 0x7e, 0x70, 0x4e, 0x58, 0x15, 0x68, 0xb4, 0xe9, 0xba, 0x15, 0x82, 0xd6, 0xa9, 0x63, 0xd0, 0xda, 0x59, 0xc6, 0xc0, 0x2b, 0x6f, 0x1d, 0xd9, 0xf2, 0xd6, 0x75, 0x37, 0xac, 0x53, 0xec, 0x3a, 0xb2, 0xc5, 0x2e, 0x2f, 0x0c, 0x98, 0xbe, 0x6a, 0xf6, 0xf4, 0x55, 0x74, 0xe3, 0x38, 0x87, 0xb0, 0x9a, 0x3d, 0x84, 0x79, 0x92, 0xe0, 0x2c, 0x56, 0xb3, 0x67, 0x31, 0x57, 0x92, 0x73, 0x24, 0xab, 0xd9, 0x23, 0x99, 0x27, 0x09, 0x4e, 0x66, 0xf7, 0x81, 0x64, 0x76, 0xc3, 0x0d, 0xe5, 0x16, 0xd0, 0x4e, 0xa0, 0x80, 0x76, 0xd3, 0xb5, 0x31, 0xd7, 0x9c, 0x76, 0x1f, 0xc8, 0x69, 0xde, 0xcd, 0x39, 0xc4, 0xb5, 0x13, 0x28, 0xae, 0x2d, 0xd1, 0x9c, 0x53, 0x6a, 0xab, 0x5a, 0x53, 0x5b, 0xc1, 0x8d, 0x05, 0x87, 0xb7, 0x9a, 0x3d, 0xbc, 0x15, 0xbd, 0xcf, 0x22, 0x94, 0xe1, 0x4e, 0x1d, 0x33, 0xdc, 0x52, 0x87, 0xdb, 0x2b, 0xca, 0x7d, 0xef, 0x14, 0xe5, 0xb6, 0x97, 0xa1, 0xbb, 0x27, 0xba, 0x6f, 0x1c, 0x12, 0x5d, 0x79, 0x19, 0xf4, 0x55, 0xb0, 0xbb, 0x0a, 0x76, 0x57, 0xc1, 0xee, 0x2a, 0xd8, 0xbd, 0x19, 0xc1, 0x6e, 0x6f, 0xed, 0xd7, 0xdf, 0x72, 0xa8, 0xb8, 0x85, 0x43, 0xba, 0x35, 0x59, 0xc7, 0xfe, 0xfa, 0x7e, 0xca, 0xc7, 0x3e, 0xab, 0x29, 0xc4, 0x3e, 0x0f, 0x52, 0xfe, 0xea, 0x17, 0x17, 0x33, 0xea, 0x7b, 0x3a, 0xa3, 0xbe, 0x67, 0x33, 0xea, 0x7b, 0x31, 0xa3, 0xe8, 0xe5, 0x8c, 0xa2, 0x57, 0x33, 0x8a, 0x5e, 0xcf, 0x28, 0x7a, 0xa2, 0x50, 0xf4, 0xbb, 0x42, 0xd1, 0x1f, 0x0a, 0x45, 0x7f, 0x2a, 0x14, 0xfd, 0xa5, 0x50, 0x74, 0xa1, 0x50, 0xf4, 0x54, 0xa1, 0xbe, 0x17, 0x0a, 0x45, 0x2f, 0x15, 0xea, 0x7b, 0xa5, 0x50, 0xf4, 0x5a, 0xa1, 0xbe, 0x27, 0xff, 0x52, 0xdf, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xec, 0x4e, 0x18, 0x12, 0xf7, 0x16, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/mapsproto2/combos/marshaler/mapsproto2.proto000066400000000000000000000112721317075173200270700ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto2"; package proto2.maps; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message FloatingPoint { optional double f = 1; } message CustomMap { map Nullable128s = 1 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128"]; map Uint128s = 2 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable)=false]; map NullableIds = 3 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid"]; map Ids = 4 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid", (gogoproto.nullable)=false]; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } golang-gogoprotobuf-0.5/test/mapsproto2/combos/marshaler/mapsproto2_test.go000066400000000000000000000065421317075173200273750ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package proto2_maps import ( "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": {}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } golang-gogoprotobuf-0.5/test/mapsproto2/combos/marshaler/mapsproto2pb_test.go000066400000000000000000000712741317075173200277230ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/mapsproto2.proto /* Package proto2_maps is a generated protocol buffer package. It is generated from these files: combos/marshaler/mapsproto2.proto It has these top-level messages: FloatingPoint CustomMap AllMaps AllMapsOrdered */ package proto2_maps import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestFloatingPointProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFloatingPointMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkFloatingPointProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkFloatingPointProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedFloatingPoint(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &FloatingPoint{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkCustomMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllMapsMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAllMapsProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMaps(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMaps{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllMapsOrderedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAllMapsOrderedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsOrderedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMapsOrdered(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMapsOrdered{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestFloatingPointJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsOrderedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFloatingPointProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapsproto2Description(t *testing.T) { Mapsproto2Description() } func TestFloatingPointVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsOrderedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFloatingPointFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsOrderedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestFloatingPointGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsOrderedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFloatingPointSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkFloatingPointSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsOrderedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestFloatingPointStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsOrderedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/mapsproto2/combos/neither/000077500000000000000000000000001317075173200233525ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapsproto2/combos/neither/mapsproto2.pb.go000066400000000000000000004344251317075173200264230ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/mapsproto2.proto /* Package proto2_maps is a generated protocol buffer package. It is generated from these files: combos/neither/mapsproto2.proto It has these top-level messages: FloatingPoint CustomMap AllMaps AllMapsOrdered */ package proto2_maps import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test "github.com/gogo/protobuf/test" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapEnum int32 const ( MA MapEnum = 0 MB MapEnum = 1 MC MapEnum = 2 ) var MapEnum_name = map[int32]string{ 0: "MA", 1: "MB", 2: "MC", } var MapEnum_value = map[string]int32{ "MA": 0, "MB": 1, "MC": 2, } func (x MapEnum) Enum() *MapEnum { p := new(MapEnum) *p = x return p } func (x MapEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(MapEnum_name, int32(x)) } func (x *MapEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MapEnum_value, data, "MapEnum") if err != nil { return err } *x = MapEnum(value) return nil } func (MapEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{0} } type FloatingPoint struct { F *float64 `protobuf:"fixed64,1,opt,name=f" json:"f,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *FloatingPoint) Reset() { *m = FloatingPoint{} } func (*FloatingPoint) ProtoMessage() {} func (*FloatingPoint) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{0} } type CustomMap struct { Nullable128S map[string]*github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,1,rep,name=Nullable128s,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Nullable128s,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` Uint128S map[string]github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Uint128s,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Uint128s" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` NullableIds map[string]*github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,3,rep,name=NullableIds,customtype=github.com/gogo/protobuf/test.Uuid" json:"NullableIds,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` Ids map[string]github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,4,rep,name=Ids,customtype=github.com/gogo/protobuf/test.Uuid" json:"Ids" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *CustomMap) Reset() { *m = CustomMap{} } func (*CustomMap) ProtoMessage() {} func (*CustomMap) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{1} } type AllMaps struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=proto2.maps.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *AllMaps) Reset() { *m = AllMaps{} } func (*AllMaps) ProtoMessage() {} func (*AllMaps) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{2} } type AllMapsOrdered struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=proto2.maps.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *AllMapsOrdered) Reset() { *m = AllMapsOrdered{} } func (*AllMapsOrdered) ProtoMessage() {} func (*AllMapsOrdered) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{3} } func init() { proto.RegisterType((*FloatingPoint)(nil), "proto2.maps.FloatingPoint") proto.RegisterType((*CustomMap)(nil), "proto2.maps.CustomMap") proto.RegisterType((*AllMaps)(nil), "proto2.maps.AllMaps") proto.RegisterType((*AllMapsOrdered)(nil), "proto2.maps.AllMapsOrdered") proto.RegisterEnum("proto2.maps.MapEnum", MapEnum_name, MapEnum_value) } func (this *FloatingPoint) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *CustomMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *AllMaps) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *AllMapsOrdered) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func Mapsproto2Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4656 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7b, 0x6b, 0x6c, 0x23, 0xd7, 0x75, 0xbf, 0xf8, 0x92, 0xc8, 0x43, 0x8a, 0x1a, 0x5d, 0xc9, 0x6b, 0x5a, 0x8e, 0xa9, 0x5d, 0xf9, 0x25, 0xaf, 0x6d, 0xc9, 0x96, 0x77, 0xd7, 0x6b, 0x6e, 0x6c, 0xff, 0x29, 0x89, 0xab, 0x95, 0xad, 0x57, 0x86, 0x92, 0xbd, 0xf6, 0x1f, 0xc6, 0x74, 0x34, 0xbc, 0xa4, 0xc6, 0x4b, 0xce, 0xd0, 0x33, 0xc3, 0xb5, 0xb5, 0x28, 0x8a, 0x2d, 0xdc, 0x07, 0x82, 0xa2, 0xef, 0x02, 0x75, 0x5c, 0xc7, 0x6d, 0x02, 0xb4, 0x4e, 0x93, 0x3e, 0x92, 0xa6, 0x4d, 0xd3, 0x7e, 0xca, 0x97, 0xb4, 0x06, 0x0a, 0x14, 0xc9, 0xb7, 0x20, 0x08, 0x0c, 0xaf, 0x6a, 0xa0, 0x6e, 0xeb, 0xb6, 0x6e, 0xe3, 0x02, 0x01, 0xfc, 0xa5, 0xb8, 0xaf, 0xe1, 0xcc, 0x70, 0xc8, 0xa1, 0x0c, 0xd8, 0xe9, 0x07, 0x7f, 0x5a, 0xcd, 0x99, 0xf3, 0xfb, 0xdd, 0x73, 0xcf, 0x3d, 0xf7, 0x9c, 0x73, 0xef, 0x70, 0xe1, 0x6b, 0xe7, 0xe1, 0x64, 0xc3, 0x34, 0x1b, 0x4d, 0xbc, 0xd8, 0xb6, 0x4c, 0xc7, 0xdc, 0xef, 0xd4, 0x17, 0x6b, 0xd8, 0xd6, 0x2c, 0xbd, 0xed, 0x98, 0xd6, 0x02, 0x95, 0xa1, 0x09, 0xa6, 0xb1, 0x20, 0x34, 0xe6, 0x36, 0x61, 0xf2, 0xa2, 0xde, 0xc4, 0xab, 0xae, 0x62, 0x15, 0x3b, 0xe8, 0x3c, 0x24, 0xeb, 0x7a, 0x13, 0x17, 0x62, 0x27, 0x13, 0xf3, 0xd9, 0xa5, 0x3b, 0x16, 0x02, 0xa0, 0x05, 0x3f, 0x62, 0x87, 0x88, 0x65, 0x8a, 0x98, 0x7b, 0x27, 0x09, 0x53, 0x21, 0x6f, 0x11, 0x82, 0xa4, 0xa1, 0xb6, 0x08, 0x63, 0x6c, 0x3e, 0x23, 0xd3, 0xbf, 0x51, 0x01, 0xc6, 0xda, 0xaa, 0x76, 0x45, 0x6d, 0xe0, 0x42, 0x9c, 0x8a, 0xc5, 0x23, 0x2a, 0x02, 0xd4, 0x70, 0x1b, 0x1b, 0x35, 0x6c, 0x68, 0x87, 0x85, 0xc4, 0xc9, 0xc4, 0x7c, 0x46, 0xf6, 0x48, 0xd0, 0xbd, 0x30, 0xd9, 0xee, 0xec, 0x37, 0x75, 0x4d, 0xf1, 0xa8, 0xc1, 0xc9, 0xc4, 0x7c, 0x4a, 0x96, 0xd8, 0x8b, 0xd5, 0xae, 0xf2, 0xdd, 0x30, 0xf1, 0x22, 0x56, 0xaf, 0x78, 0x55, 0xb3, 0x54, 0x35, 0x4f, 0xc4, 0x1e, 0xc5, 0x15, 0xc8, 0xb5, 0xb0, 0x6d, 0xab, 0x0d, 0xac, 0x38, 0x87, 0x6d, 0x5c, 0x48, 0xd2, 0xd9, 0x9f, 0xec, 0x99, 0x7d, 0x70, 0xe6, 0x59, 0x8e, 0xda, 0x3d, 0x6c, 0x63, 0x54, 0x86, 0x0c, 0x36, 0x3a, 0x2d, 0xc6, 0x90, 0xea, 0xe3, 0xbf, 0x8a, 0xd1, 0x69, 0x05, 0x59, 0xd2, 0x04, 0xc6, 0x29, 0xc6, 0x6c, 0x6c, 0x5d, 0xd5, 0x35, 0x5c, 0x18, 0xa5, 0x04, 0x77, 0xf7, 0x10, 0x54, 0xd9, 0xfb, 0x20, 0x87, 0xc0, 0xa1, 0x15, 0xc8, 0xe0, 0x97, 0x1c, 0x6c, 0xd8, 0xba, 0x69, 0x14, 0xc6, 0x28, 0xc9, 0x9d, 0x21, 0xab, 0x88, 0x9b, 0xb5, 0x20, 0x45, 0x17, 0x87, 0xce, 0xc1, 0x98, 0xd9, 0x76, 0x74, 0xd3, 0xb0, 0x0b, 0xe9, 0x93, 0xb1, 0xf9, 0xec, 0xd2, 0x67, 0x42, 0x03, 0x61, 0x9b, 0xe9, 0xc8, 0x42, 0x19, 0xad, 0x83, 0x64, 0x9b, 0x1d, 0x4b, 0xc3, 0x8a, 0x66, 0xd6, 0xb0, 0xa2, 0x1b, 0x75, 0xb3, 0x90, 0xa1, 0x04, 0xb3, 0xbd, 0x13, 0xa1, 0x8a, 0x2b, 0x66, 0x0d, 0xaf, 0x1b, 0x75, 0x53, 0xce, 0xdb, 0xbe, 0x67, 0x74, 0x02, 0x46, 0xed, 0x43, 0xc3, 0x51, 0x5f, 0x2a, 0xe4, 0x68, 0x84, 0xf0, 0xa7, 0xb9, 0xbf, 0x19, 0x85, 0x89, 0x61, 0x42, 0xec, 0x02, 0xa4, 0xea, 0x64, 0x96, 0x85, 0xf8, 0x71, 0x7c, 0xc0, 0x30, 0x7e, 0x27, 0x8e, 0x7e, 0x44, 0x27, 0x96, 0x21, 0x6b, 0x60, 0xdb, 0xc1, 0x35, 0x16, 0x11, 0x89, 0x21, 0x63, 0x0a, 0x18, 0xa8, 0x37, 0xa4, 0x92, 0x1f, 0x29, 0xa4, 0x2e, 0xc3, 0x84, 0x6b, 0x92, 0x62, 0xa9, 0x46, 0x43, 0xc4, 0xe6, 0x62, 0x94, 0x25, 0x0b, 0x15, 0x81, 0x93, 0x09, 0x4c, 0xce, 0x63, 0xdf, 0x33, 0x5a, 0x05, 0x30, 0x0d, 0x6c, 0xd6, 0x95, 0x1a, 0xd6, 0x9a, 0x85, 0x74, 0x1f, 0x2f, 0x6d, 0x13, 0x95, 0x1e, 0x2f, 0x99, 0x4c, 0xaa, 0x35, 0xd1, 0x23, 0xdd, 0x50, 0x1b, 0xeb, 0x13, 0x29, 0x9b, 0x6c, 0x93, 0xf5, 0x44, 0xdb, 0x1e, 0xe4, 0x2d, 0x4c, 0xe2, 0x1e, 0xd7, 0xf8, 0xcc, 0x32, 0xd4, 0x88, 0x85, 0xc8, 0x99, 0xc9, 0x1c, 0xc6, 0x26, 0x36, 0x6e, 0x79, 0x1f, 0xd1, 0xed, 0xe0, 0x0a, 0x14, 0x1a, 0x56, 0x40, 0xb3, 0x50, 0x4e, 0x08, 0xb7, 0xd4, 0x16, 0x9e, 0xb9, 0x06, 0x79, 0xbf, 0x7b, 0xd0, 0x34, 0xa4, 0x6c, 0x47, 0xb5, 0x1c, 0x1a, 0x85, 0x29, 0x99, 0x3d, 0x20, 0x09, 0x12, 0xd8, 0xa8, 0xd1, 0x2c, 0x97, 0x92, 0xc9, 0x9f, 0xe8, 0xff, 0x75, 0x27, 0x9c, 0xa0, 0x13, 0xbe, 0xab, 0x77, 0x45, 0x7d, 0xcc, 0xc1, 0x79, 0xcf, 0x3c, 0x0c, 0xe3, 0xbe, 0x09, 0x0c, 0x3b, 0xf4, 0xdc, 0xcf, 0xc2, 0x4d, 0xa1, 0xd4, 0xe8, 0x32, 0x4c, 0x77, 0x0c, 0xdd, 0x70, 0xb0, 0xd5, 0xb6, 0x30, 0x89, 0x58, 0x36, 0x54, 0xe1, 0x9f, 0xc7, 0xfa, 0xc4, 0xdc, 0x9e, 0x57, 0x9b, 0xb1, 0xc8, 0x53, 0x9d, 0x5e, 0xe1, 0xe9, 0x4c, 0xfa, 0xdd, 0x31, 0xe9, 0xfa, 0xf5, 0xeb, 0xd7, 0xe3, 0x73, 0xaf, 0x8c, 0xc2, 0x74, 0xd8, 0x9e, 0x09, 0xdd, 0xbe, 0x27, 0x60, 0xd4, 0xe8, 0xb4, 0xf6, 0xb1, 0x45, 0x9d, 0x94, 0x92, 0xf9, 0x13, 0x2a, 0x43, 0xaa, 0xa9, 0xee, 0xe3, 0x66, 0x21, 0x79, 0x32, 0x36, 0x9f, 0x5f, 0xba, 0x77, 0xa8, 0x5d, 0xb9, 0xb0, 0x41, 0x20, 0x32, 0x43, 0xa2, 0xc7, 0x20, 0xc9, 0x53, 0x34, 0x61, 0x38, 0x3d, 0x1c, 0x03, 0xd9, 0x4b, 0x32, 0xc5, 0xa1, 0x5b, 0x21, 0x43, 0xfe, 0x65, 0xb1, 0x31, 0x4a, 0x6d, 0x4e, 0x13, 0x01, 0x89, 0x0b, 0x34, 0x03, 0x69, 0xba, 0x4d, 0x6a, 0x58, 0x94, 0x36, 0xf7, 0x99, 0x04, 0x56, 0x0d, 0xd7, 0xd5, 0x4e, 0xd3, 0x51, 0xae, 0xaa, 0xcd, 0x0e, 0xa6, 0x01, 0x9f, 0x91, 0x73, 0x5c, 0xf8, 0x14, 0x91, 0xa1, 0x59, 0xc8, 0xb2, 0x5d, 0xa5, 0x1b, 0x35, 0xfc, 0x12, 0xcd, 0x9e, 0x29, 0x99, 0x6d, 0xb4, 0x75, 0x22, 0x21, 0xc3, 0x3f, 0x6f, 0x9b, 0x86, 0x08, 0x4d, 0x3a, 0x04, 0x11, 0xd0, 0xe1, 0x1f, 0x0e, 0x26, 0xee, 0xdb, 0xc2, 0xa7, 0x17, 0x8c, 0xa9, 0xb9, 0x6f, 0xc5, 0x21, 0x49, 0xf3, 0xc5, 0x04, 0x64, 0x77, 0x9f, 0xd9, 0xa9, 0x28, 0xab, 0xdb, 0x7b, 0xcb, 0x1b, 0x15, 0x29, 0x86, 0xf2, 0x00, 0x54, 0x70, 0x71, 0x63, 0xbb, 0xbc, 0x2b, 0xc5, 0xdd, 0xe7, 0xf5, 0xad, 0xdd, 0x73, 0x67, 0xa4, 0x84, 0x0b, 0xd8, 0x63, 0x82, 0xa4, 0x57, 0xe1, 0xa1, 0x25, 0x29, 0x85, 0x24, 0xc8, 0x31, 0x82, 0xf5, 0xcb, 0x95, 0xd5, 0x73, 0x67, 0xa4, 0x51, 0xbf, 0xe4, 0xa1, 0x25, 0x69, 0x0c, 0x8d, 0x43, 0x86, 0x4a, 0x96, 0xb7, 0xb7, 0x37, 0xa4, 0xb4, 0xcb, 0x59, 0xdd, 0x95, 0xd7, 0xb7, 0xd6, 0xa4, 0x8c, 0xcb, 0xb9, 0x26, 0x6f, 0xef, 0xed, 0x48, 0xe0, 0x32, 0x6c, 0x56, 0xaa, 0xd5, 0xf2, 0x5a, 0x45, 0xca, 0xba, 0x1a, 0xcb, 0xcf, 0xec, 0x56, 0xaa, 0x52, 0xce, 0x67, 0xd6, 0x43, 0x4b, 0xd2, 0xb8, 0x3b, 0x44, 0x65, 0x6b, 0x6f, 0x53, 0xca, 0xa3, 0x49, 0x18, 0x67, 0x43, 0x08, 0x23, 0x26, 0x02, 0xa2, 0x73, 0x67, 0x24, 0xa9, 0x6b, 0x08, 0x63, 0x99, 0xf4, 0x09, 0xce, 0x9d, 0x91, 0xd0, 0xdc, 0x0a, 0xa4, 0x68, 0x74, 0x21, 0x04, 0xf9, 0x8d, 0xf2, 0x72, 0x65, 0x43, 0xd9, 0xde, 0xd9, 0x5d, 0xdf, 0xde, 0x2a, 0x6f, 0x48, 0xb1, 0xae, 0x4c, 0xae, 0x7c, 0x6e, 0x6f, 0x5d, 0xae, 0xac, 0x4a, 0x71, 0xaf, 0x6c, 0xa7, 0x52, 0xde, 0xad, 0xac, 0x4a, 0x89, 0x39, 0x0d, 0xa6, 0xc3, 0xf2, 0x64, 0xe8, 0xce, 0xf0, 0x2c, 0x71, 0xbc, 0xcf, 0x12, 0x53, 0xae, 0x9e, 0x25, 0xfe, 0x72, 0x0c, 0xa6, 0x42, 0x6a, 0x45, 0xe8, 0x20, 0x8f, 0x43, 0x8a, 0x85, 0x28, 0xab, 0x9e, 0xf7, 0x84, 0x16, 0x1d, 0x1a, 0xb0, 0x3d, 0x15, 0x94, 0xe2, 0xbc, 0x1d, 0x44, 0xa2, 0x4f, 0x07, 0x41, 0x28, 0x7a, 0x8c, 0x7c, 0x39, 0x06, 0x85, 0x7e, 0xdc, 0x11, 0x89, 0x22, 0xee, 0x4b, 0x14, 0x17, 0x82, 0x06, 0x9c, 0xea, 0x3f, 0x87, 0x1e, 0x2b, 0xde, 0x88, 0xc1, 0x89, 0xf0, 0x46, 0x2b, 0xd4, 0x86, 0xc7, 0x60, 0xb4, 0x85, 0x9d, 0x03, 0x53, 0x34, 0x1b, 0x77, 0x85, 0x94, 0x30, 0xf2, 0x3a, 0xe8, 0x2b, 0x8e, 0xf2, 0xd6, 0xc0, 0x44, 0xbf, 0x6e, 0x89, 0x59, 0xd3, 0x63, 0xe9, 0xe7, 0xe3, 0x70, 0x53, 0x28, 0x79, 0xa8, 0xa1, 0xb7, 0x01, 0xe8, 0x46, 0xbb, 0xe3, 0xb0, 0x86, 0x82, 0xe5, 0xa7, 0x0c, 0x95, 0xd0, 0xbd, 0x4f, 0x72, 0x4f, 0xc7, 0x71, 0xdf, 0x27, 0xe8, 0x7b, 0x60, 0x22, 0xaa, 0x70, 0xbe, 0x6b, 0x68, 0x92, 0x1a, 0x5a, 0xec, 0x33, 0xd3, 0x9e, 0x5a, 0xfd, 0x00, 0x48, 0x5a, 0x53, 0xc7, 0x86, 0xa3, 0xd8, 0x8e, 0x85, 0xd5, 0x96, 0x6e, 0x34, 0x68, 0x02, 0x4e, 0x97, 0x52, 0x75, 0xb5, 0x69, 0x63, 0x79, 0x82, 0xbd, 0xae, 0x8a, 0xb7, 0x04, 0x41, 0x6b, 0x9c, 0xe5, 0x41, 0x8c, 0xfa, 0x10, 0xec, 0xb5, 0x8b, 0x98, 0xfb, 0x66, 0x1a, 0xb2, 0x9e, 0xb6, 0x14, 0x9d, 0x82, 0xdc, 0xf3, 0xea, 0x55, 0x55, 0x11, 0x47, 0x0d, 0xe6, 0x89, 0x2c, 0x91, 0xed, 0xf0, 0xe3, 0xc6, 0x03, 0x30, 0x4d, 0x55, 0xcc, 0x8e, 0x83, 0x2d, 0x45, 0x6b, 0xaa, 0xb6, 0x4d, 0x9d, 0x96, 0xa6, 0xaa, 0x88, 0xbc, 0xdb, 0x26, 0xaf, 0x56, 0xc4, 0x1b, 0x74, 0x16, 0xa6, 0x28, 0xa2, 0xd5, 0x69, 0x3a, 0x7a, 0xbb, 0x89, 0x15, 0x72, 0xf8, 0xb1, 0x69, 0x22, 0x76, 0x2d, 0x9b, 0x24, 0x1a, 0x9b, 0x5c, 0x81, 0x58, 0x64, 0xa3, 0x55, 0xb8, 0x8d, 0xc2, 0x1a, 0xd8, 0xc0, 0x96, 0xea, 0x60, 0x05, 0xbf, 0xd0, 0x51, 0x9b, 0xb6, 0xa2, 0x1a, 0x35, 0xe5, 0x40, 0xb5, 0x0f, 0x0a, 0xd3, 0x84, 0x60, 0x39, 0x5e, 0x88, 0xc9, 0xb7, 0x10, 0xc5, 0x35, 0xae, 0x57, 0xa1, 0x6a, 0x65, 0xa3, 0x76, 0x49, 0xb5, 0x0f, 0x50, 0x09, 0x4e, 0x50, 0x16, 0xdb, 0xb1, 0x74, 0xa3, 0xa1, 0x68, 0x07, 0x58, 0xbb, 0xa2, 0x74, 0x9c, 0xfa, 0xf9, 0xc2, 0xad, 0xde, 0xf1, 0xa9, 0x85, 0x55, 0xaa, 0xb3, 0x42, 0x54, 0xf6, 0x9c, 0xfa, 0x79, 0x54, 0x85, 0x1c, 0x59, 0x8c, 0x96, 0x7e, 0x0d, 0x2b, 0x75, 0xd3, 0xa2, 0x95, 0x25, 0x1f, 0xb2, 0xb3, 0x3d, 0x1e, 0x5c, 0xd8, 0xe6, 0x80, 0x4d, 0xb3, 0x86, 0x4b, 0xa9, 0xea, 0x4e, 0xa5, 0xb2, 0x2a, 0x67, 0x05, 0xcb, 0x45, 0xd3, 0x22, 0x01, 0xd5, 0x30, 0x5d, 0x07, 0x67, 0x59, 0x40, 0x35, 0x4c, 0xe1, 0xde, 0xb3, 0x30, 0xa5, 0x69, 0x6c, 0xce, 0xba, 0xa6, 0xf0, 0x23, 0x8a, 0x5d, 0x90, 0x7c, 0xce, 0xd2, 0xb4, 0x35, 0xa6, 0xc0, 0x63, 0xdc, 0x46, 0x8f, 0xc0, 0x4d, 0x5d, 0x67, 0x79, 0x81, 0x93, 0x3d, 0xb3, 0x0c, 0x42, 0xcf, 0xc2, 0x54, 0xfb, 0xb0, 0x17, 0x88, 0x7c, 0x23, 0xb6, 0x0f, 0x83, 0xb0, 0x87, 0x61, 0xba, 0x7d, 0xd0, 0xee, 0xc5, 0x4d, 0x79, 0x71, 0xa8, 0x7d, 0xd0, 0x0e, 0x02, 0xef, 0xa4, 0xe7, 0x55, 0x0b, 0x6b, 0xaa, 0x83, 0x6b, 0x85, 0x9b, 0xbd, 0xea, 0x9e, 0x17, 0x68, 0x11, 0x24, 0x4d, 0x53, 0xb0, 0xa1, 0xee, 0x37, 0xb1, 0xa2, 0x5a, 0xd8, 0x50, 0xed, 0xc2, 0xac, 0x57, 0x39, 0xaf, 0x69, 0x15, 0xfa, 0xb6, 0x4c, 0x5f, 0xa2, 0xd3, 0x30, 0x69, 0xee, 0x3f, 0xaf, 0xb1, 0x90, 0x54, 0xda, 0x16, 0xae, 0xeb, 0x2f, 0x15, 0xee, 0xa0, 0xfe, 0x9d, 0x20, 0x2f, 0x68, 0x40, 0xee, 0x50, 0x31, 0xba, 0x07, 0x24, 0xcd, 0x3e, 0x50, 0xad, 0x36, 0xed, 0x09, 0xec, 0xb6, 0xaa, 0xe1, 0xc2, 0x9d, 0x4c, 0x95, 0xc9, 0xb7, 0x84, 0x98, 0x6c, 0x09, 0xfb, 0x45, 0xbd, 0xee, 0x08, 0xc6, 0xbb, 0xd9, 0x96, 0xa0, 0x32, 0xce, 0x36, 0x0f, 0x12, 0x71, 0x85, 0x6f, 0xe0, 0x79, 0xaa, 0x96, 0x6f, 0x1f, 0xb4, 0xbd, 0xe3, 0xde, 0x0e, 0xe3, 0x44, 0xb3, 0x3b, 0xe8, 0x3d, 0xac, 0x9f, 0x69, 0x1f, 0x78, 0x46, 0xfc, 0xd8, 0x5a, 0xcb, 0xb9, 0x12, 0xe4, 0xbc, 0xf1, 0x89, 0x32, 0xc0, 0x22, 0x54, 0x8a, 0x91, 0x5a, 0xbf, 0xb2, 0xbd, 0x4a, 0xaa, 0xf4, 0xb3, 0x15, 0x29, 0x4e, 0xba, 0x85, 0x8d, 0xf5, 0xdd, 0x8a, 0x22, 0xef, 0x6d, 0xed, 0xae, 0x6f, 0x56, 0xa4, 0x84, 0xb7, 0x2d, 0xfd, 0x6e, 0x1c, 0xf2, 0xfe, 0x13, 0x06, 0xfa, 0x2c, 0xdc, 0x2c, 0xae, 0x03, 0x6c, 0xec, 0x28, 0x2f, 0xea, 0x16, 0xdd, 0x32, 0x2d, 0x95, 0x75, 0xd8, 0xee, 0xa2, 0x4d, 0x73, 0xad, 0x2a, 0x76, 0x9e, 0xd6, 0x2d, 0xb2, 0x21, 0x5a, 0xaa, 0x83, 0x36, 0x60, 0xd6, 0x30, 0x15, 0xdb, 0x51, 0x8d, 0x9a, 0x6a, 0xd5, 0x94, 0xee, 0x45, 0x8c, 0xa2, 0x6a, 0x1a, 0xb6, 0x6d, 0x93, 0x95, 0x2a, 0x97, 0xe5, 0x33, 0x86, 0x59, 0xe5, 0xca, 0xdd, 0x1c, 0x5e, 0xe6, 0xaa, 0x81, 0x00, 0x4b, 0xf4, 0x0b, 0xb0, 0x5b, 0x21, 0xd3, 0x52, 0xdb, 0x0a, 0x36, 0x1c, 0xeb, 0x90, 0xf6, 0x95, 0x69, 0x39, 0xdd, 0x52, 0xdb, 0x15, 0xf2, 0xfc, 0xc9, 0xb4, 0xf7, 0x3f, 0x4a, 0x40, 0xce, 0xdb, 0x5b, 0x92, 0x56, 0x5d, 0xa3, 0x75, 0x24, 0x46, 0x33, 0xcd, 0xed, 0x03, 0x3b, 0xd1, 0x85, 0x15, 0x52, 0x60, 0x4a, 0xa3, 0xac, 0xe3, 0x93, 0x19, 0x92, 0x14, 0x77, 0x92, 0x5b, 0x30, 0x3b, 0xc5, 0xa4, 0x65, 0xfe, 0x84, 0xd6, 0x60, 0xf4, 0x79, 0x9b, 0x72, 0x8f, 0x52, 0xee, 0x3b, 0x06, 0x73, 0x3f, 0x51, 0xa5, 0xe4, 0x99, 0x27, 0xaa, 0xca, 0xd6, 0xb6, 0xbc, 0x59, 0xde, 0x90, 0x39, 0x1c, 0xdd, 0x02, 0xc9, 0xa6, 0x7a, 0xed, 0xd0, 0x5f, 0x8a, 0xa8, 0x68, 0x58, 0xc7, 0xdf, 0x02, 0xc9, 0x17, 0xb1, 0x7a, 0xc5, 0x5f, 0x00, 0xa8, 0xe8, 0x63, 0x0c, 0xfd, 0x45, 0x48, 0x51, 0x7f, 0x21, 0x00, 0xee, 0x31, 0x69, 0x04, 0xa5, 0x21, 0xb9, 0xb2, 0x2d, 0x93, 0xf0, 0x97, 0x20, 0xc7, 0xa4, 0xca, 0xce, 0x7a, 0x65, 0xa5, 0x22, 0xc5, 0xe7, 0xce, 0xc2, 0x28, 0x73, 0x02, 0xd9, 0x1a, 0xae, 0x1b, 0xa4, 0x11, 0xfe, 0xc8, 0x39, 0x62, 0xe2, 0xed, 0xde, 0xe6, 0x72, 0x45, 0x96, 0xe2, 0xde, 0xe5, 0xb5, 0x21, 0xe7, 0x6d, 0x2b, 0x3f, 0x99, 0x98, 0xfa, 0xdb, 0x18, 0x64, 0x3d, 0x6d, 0x22, 0x69, 0x50, 0xd4, 0x66, 0xd3, 0x7c, 0x51, 0x51, 0x9b, 0xba, 0x6a, 0xf3, 0xa0, 0x00, 0x2a, 0x2a, 0x13, 0xc9, 0xb0, 0x8b, 0xf6, 0x89, 0x18, 0xff, 0x7a, 0x0c, 0xa4, 0x60, 0x8b, 0x19, 0x30, 0x30, 0xf6, 0x53, 0x35, 0xf0, 0xb5, 0x18, 0xe4, 0xfd, 0x7d, 0x65, 0xc0, 0xbc, 0x53, 0x3f, 0x55, 0xf3, 0xde, 0x8e, 0xc3, 0xb8, 0xaf, 0x9b, 0x1c, 0xd6, 0xba, 0x17, 0x60, 0x52, 0xaf, 0xe1, 0x56, 0xdb, 0x74, 0xb0, 0xa1, 0x1d, 0x2a, 0x4d, 0x7c, 0x15, 0x37, 0x0b, 0x73, 0x34, 0x51, 0x2c, 0x0e, 0xee, 0x57, 0x17, 0xd6, 0xbb, 0xb8, 0x0d, 0x02, 0x2b, 0x4d, 0xad, 0xaf, 0x56, 0x36, 0x77, 0xb6, 0x77, 0x2b, 0x5b, 0x2b, 0xcf, 0x28, 0x7b, 0x5b, 0x4f, 0x6e, 0x6d, 0x3f, 0xbd, 0x25, 0x4b, 0x7a, 0x40, 0xed, 0x63, 0xdc, 0xea, 0x3b, 0x20, 0x05, 0x8d, 0x42, 0x37, 0x43, 0x98, 0x59, 0xd2, 0x08, 0x9a, 0x82, 0x89, 0xad, 0x6d, 0xa5, 0xba, 0xbe, 0x5a, 0x51, 0x2a, 0x17, 0x2f, 0x56, 0x56, 0x76, 0xab, 0xec, 0x00, 0xef, 0x6a, 0xef, 0xfa, 0x37, 0xf5, 0xab, 0x09, 0x98, 0x0a, 0xb1, 0x04, 0x95, 0xf9, 0xd9, 0x81, 0x1d, 0x67, 0xee, 0x1f, 0xc6, 0xfa, 0x05, 0x52, 0xf2, 0x77, 0x54, 0xcb, 0xe1, 0x47, 0x8d, 0x7b, 0x80, 0x78, 0xc9, 0x70, 0xf4, 0xba, 0x8e, 0x2d, 0x7e, 0xdf, 0xc1, 0x0e, 0x14, 0x13, 0x5d, 0x39, 0xbb, 0xf2, 0xb8, 0x0f, 0x50, 0xdb, 0xb4, 0x75, 0x47, 0xbf, 0x8a, 0x15, 0xdd, 0x10, 0x97, 0x23, 0xe4, 0x80, 0x91, 0x94, 0x25, 0xf1, 0x66, 0xdd, 0x70, 0x5c, 0x6d, 0x03, 0x37, 0xd4, 0x80, 0x36, 0x49, 0xe0, 0x09, 0x59, 0x12, 0x6f, 0x5c, 0xed, 0x53, 0x90, 0xab, 0x99, 0x1d, 0xd2, 0x75, 0x31, 0x3d, 0x52, 0x2f, 0x62, 0x72, 0x96, 0xc9, 0x5c, 0x15, 0xde, 0x4f, 0x77, 0x6f, 0x65, 0x72, 0x72, 0x96, 0xc9, 0x98, 0xca, 0xdd, 0x30, 0xa1, 0x36, 0x1a, 0x16, 0x21, 0x17, 0x44, 0xec, 0x84, 0x90, 0x77, 0xc5, 0x54, 0x71, 0xe6, 0x09, 0x48, 0x0b, 0x3f, 0x90, 0x92, 0x4c, 0x3c, 0xa1, 0xb4, 0xd9, 0xcd, 0x5c, 0x7c, 0x3e, 0x23, 0xa7, 0x0d, 0xf1, 0xf2, 0x14, 0xe4, 0x74, 0x5b, 0xe9, 0x5e, 0x32, 0xc7, 0x4f, 0xc6, 0xe7, 0xd3, 0x72, 0x56, 0xb7, 0xdd, 0x0b, 0xba, 0xb9, 0x37, 0xe2, 0x90, 0xf7, 0x5f, 0x92, 0xa3, 0x55, 0x48, 0x37, 0x4d, 0x4d, 0xa5, 0xa1, 0xc5, 0xbe, 0xd0, 0xcc, 0x47, 0xdc, 0xab, 0x2f, 0x6c, 0x70, 0x7d, 0xd9, 0x45, 0xce, 0xfc, 0x63, 0x0c, 0xd2, 0x42, 0x8c, 0x4e, 0x40, 0xb2, 0xad, 0x3a, 0x07, 0x94, 0x2e, 0xb5, 0x1c, 0x97, 0x62, 0x32, 0x7d, 0x26, 0x72, 0xbb, 0xad, 0x1a, 0x34, 0x04, 0xb8, 0x9c, 0x3c, 0x93, 0x75, 0x6d, 0x62, 0xb5, 0x46, 0x8f, 0x1f, 0x66, 0xab, 0x85, 0x0d, 0xc7, 0x16, 0xeb, 0xca, 0xe5, 0x2b, 0x5c, 0x8c, 0xee, 0x85, 0x49, 0xc7, 0x52, 0xf5, 0xa6, 0x4f, 0x37, 0x49, 0x75, 0x25, 0xf1, 0xc2, 0x55, 0x2e, 0xc1, 0x2d, 0x82, 0xb7, 0x86, 0x1d, 0x55, 0x3b, 0xc0, 0xb5, 0x2e, 0x68, 0x94, 0xde, 0xc0, 0xde, 0xcc, 0x15, 0x56, 0xf9, 0x7b, 0x81, 0x9d, 0xfb, 0x7e, 0x0c, 0x26, 0xc5, 0x81, 0xa9, 0xe6, 0x3a, 0x6b, 0x13, 0x40, 0x35, 0x0c, 0xd3, 0xf1, 0xba, 0xab, 0x37, 0x94, 0x7b, 0x70, 0x0b, 0x65, 0x17, 0x24, 0x7b, 0x08, 0x66, 0x5a, 0x00, 0xdd, 0x37, 0x7d, 0xdd, 0x36, 0x0b, 0x59, 0xfe, 0x05, 0x84, 0x7e, 0x46, 0x63, 0x47, 0x6c, 0x60, 0x22, 0x72, 0xb2, 0x42, 0xd3, 0x90, 0xda, 0xc7, 0x0d, 0xdd, 0xe0, 0xf7, 0x9a, 0xec, 0x41, 0xdc, 0xd5, 0x26, 0xdd, 0xbb, 0xda, 0xe5, 0xcb, 0x30, 0xa5, 0x99, 0xad, 0xa0, 0xb9, 0xcb, 0x52, 0xe0, 0x98, 0x6f, 0x5f, 0x8a, 0x3d, 0x0b, 0xdd, 0x16, 0xf3, 0xcb, 0xf1, 0xc4, 0xda, 0xce, 0xf2, 0x57, 0xe3, 0x33, 0x6b, 0x0c, 0xb7, 0x23, 0xa6, 0x29, 0xe3, 0x7a, 0x13, 0x6b, 0xc4, 0x74, 0xf8, 0xf1, 0x5d, 0x70, 0x7f, 0x43, 0x77, 0x0e, 0x3a, 0xfb, 0x0b, 0x9a, 0xd9, 0x5a, 0x6c, 0x98, 0x0d, 0xb3, 0xfb, 0xd9, 0x90, 0x3c, 0xd1, 0x07, 0xfa, 0x17, 0xff, 0x74, 0x98, 0x71, 0xa5, 0x33, 0x91, 0xdf, 0x19, 0x4b, 0x5b, 0x30, 0xc5, 0x95, 0x15, 0xfa, 0xed, 0x82, 0x1d, 0x21, 0xd0, 0xc0, 0xfb, 0x9f, 0xc2, 0x37, 0xde, 0xa1, 0xb5, 0x5a, 0x9e, 0xe4, 0x50, 0xf2, 0x8e, 0x9d, 0x32, 0x4a, 0x32, 0xdc, 0xe4, 0xe3, 0x63, 0xfb, 0x12, 0x5b, 0x11, 0x8c, 0xdf, 0xe5, 0x8c, 0x53, 0x1e, 0xc6, 0x2a, 0x87, 0x96, 0x56, 0x60, 0xfc, 0x38, 0x5c, 0x7f, 0xc7, 0xb9, 0x72, 0xd8, 0x4b, 0xb2, 0x06, 0x13, 0x94, 0x44, 0xeb, 0xd8, 0x8e, 0xd9, 0xa2, 0x49, 0x6f, 0x30, 0xcd, 0xdf, 0xbf, 0xc3, 0x36, 0x4a, 0x9e, 0xc0, 0x56, 0x5c, 0x54, 0xa9, 0x04, 0xf4, 0x73, 0x4d, 0x0d, 0x6b, 0xcd, 0x08, 0x86, 0x37, 0xb9, 0x21, 0xae, 0x7e, 0xe9, 0x29, 0x98, 0x26, 0x7f, 0xd3, 0x9c, 0xe4, 0xb5, 0x24, 0xfa, 0xb6, 0xab, 0xf0, 0xfd, 0x97, 0xd9, 0x5e, 0x9c, 0x72, 0x09, 0x3c, 0x36, 0x79, 0x56, 0xb1, 0x81, 0x1d, 0x07, 0x5b, 0xb6, 0xa2, 0x36, 0xc3, 0xcc, 0xf3, 0x5c, 0x17, 0x14, 0xbe, 0xf0, 0x9e, 0x7f, 0x15, 0xd7, 0x18, 0xb2, 0xdc, 0x6c, 0x96, 0xf6, 0xe0, 0xe6, 0x90, 0xa8, 0x18, 0x82, 0xf3, 0x55, 0xce, 0x39, 0xdd, 0x13, 0x19, 0x84, 0x76, 0x07, 0x84, 0xdc, 0x5d, 0xcb, 0x21, 0x38, 0x7f, 0x8f, 0x73, 0x22, 0x8e, 0x15, 0x4b, 0x4a, 0x18, 0x9f, 0x80, 0xc9, 0xab, 0xd8, 0xda, 0x37, 0x6d, 0x7e, 0x45, 0x33, 0x04, 0xdd, 0x6b, 0x9c, 0x6e, 0x82, 0x03, 0xe9, 0x9d, 0x0d, 0xe1, 0x7a, 0x04, 0xd2, 0x75, 0x55, 0xc3, 0x43, 0x50, 0x7c, 0x91, 0x53, 0x8c, 0x11, 0x7d, 0x02, 0x2d, 0x43, 0xae, 0x61, 0xf2, 0xb2, 0x14, 0x0d, 0x7f, 0x9d, 0xc3, 0xb3, 0x02, 0xc3, 0x29, 0xda, 0x66, 0xbb, 0xd3, 0x24, 0x35, 0x2b, 0x9a, 0xe2, 0xf7, 0x05, 0x85, 0xc0, 0x70, 0x8a, 0x63, 0xb8, 0xf5, 0x0f, 0x04, 0x85, 0xed, 0xf1, 0xe7, 0xe3, 0x90, 0x35, 0x8d, 0xe6, 0xa1, 0x69, 0x0c, 0x63, 0xc4, 0x97, 0x38, 0x03, 0x70, 0x08, 0x21, 0xb8, 0x00, 0x99, 0x61, 0x17, 0xe2, 0x0f, 0xdf, 0x13, 0xdb, 0x43, 0xac, 0xc0, 0x1a, 0x4c, 0x88, 0x04, 0xa5, 0x9b, 0xc6, 0x10, 0x14, 0x7f, 0xc4, 0x29, 0xf2, 0x1e, 0x18, 0x9f, 0x86, 0x83, 0x6d, 0xa7, 0x81, 0x87, 0x21, 0x79, 0x43, 0x4c, 0x83, 0x43, 0xb8, 0x2b, 0xf7, 0xb1, 0xa1, 0x1d, 0x0c, 0xc7, 0xf0, 0x15, 0xe1, 0x4a, 0x81, 0x21, 0x14, 0x2b, 0x30, 0xde, 0x52, 0x2d, 0xfb, 0x40, 0x6d, 0x0e, 0xb5, 0x1c, 0x7f, 0xcc, 0x39, 0x72, 0x2e, 0x88, 0x7b, 0xa4, 0x63, 0x1c, 0x87, 0xe6, 0xab, 0xc2, 0x23, 0x1e, 0x18, 0xdf, 0x7a, 0xb6, 0x43, 0xef, 0xb3, 0x8e, 0xc3, 0xf6, 0x35, 0xb1, 0xf5, 0x18, 0x76, 0xd3, 0xcb, 0x78, 0x01, 0x32, 0xb6, 0x7e, 0x6d, 0x28, 0x9a, 0x3f, 0x11, 0x2b, 0x4d, 0x01, 0x04, 0xfc, 0x0c, 0xdc, 0x12, 0x5a, 0x26, 0x86, 0x20, 0xfb, 0x53, 0x4e, 0x76, 0x22, 0xa4, 0x54, 0xf0, 0x94, 0x70, 0x5c, 0xca, 0x3f, 0x13, 0x29, 0x01, 0x07, 0xb8, 0x76, 0xc8, 0x41, 0xc1, 0x56, 0xeb, 0xc7, 0xf3, 0xda, 0x9f, 0x0b, 0xaf, 0x31, 0xac, 0xcf, 0x6b, 0xbb, 0x70, 0x82, 0x33, 0x1e, 0x6f, 0x5d, 0xbf, 0x2e, 0x12, 0x2b, 0x43, 0xef, 0xf9, 0x57, 0xf7, 0xff, 0xc3, 0x8c, 0xeb, 0x4e, 0xd1, 0x91, 0xda, 0x4a, 0x4b, 0x6d, 0x0f, 0xc1, 0xfc, 0x0d, 0xce, 0x2c, 0x32, 0xbe, 0xdb, 0xd2, 0xda, 0x9b, 0x6a, 0x9b, 0x90, 0x5f, 0x86, 0x82, 0x20, 0xef, 0x18, 0x16, 0xd6, 0xcc, 0x86, 0xa1, 0x5f, 0xc3, 0xb5, 0x21, 0xa8, 0xff, 0x22, 0xb0, 0x54, 0x7b, 0x1e, 0x38, 0x61, 0x5e, 0x07, 0xc9, 0xed, 0x55, 0x14, 0xbd, 0xd5, 0x36, 0x2d, 0x27, 0x82, 0xf1, 0x9b, 0x62, 0xa5, 0x5c, 0xdc, 0x3a, 0x85, 0x95, 0x2a, 0x90, 0xa7, 0x8f, 0xc3, 0x86, 0xe4, 0x5f, 0x72, 0xa2, 0xf1, 0x2e, 0x8a, 0x27, 0x0e, 0xcd, 0x6c, 0xb5, 0x55, 0x6b, 0x98, 0xfc, 0xf7, 0x57, 0x22, 0x71, 0x70, 0x08, 0x4f, 0x1c, 0xce, 0x61, 0x1b, 0x93, 0x6a, 0x3f, 0x04, 0xc3, 0xb7, 0x44, 0xe2, 0x10, 0x18, 0x4e, 0x21, 0x1a, 0x86, 0x21, 0x28, 0xfe, 0x5a, 0x50, 0x08, 0x0c, 0xa1, 0xf8, 0x5c, 0xb7, 0xd0, 0x5a, 0xb8, 0xa1, 0xdb, 0x8e, 0xc5, 0xfa, 0xe0, 0xc1, 0x54, 0xdf, 0x7e, 0xcf, 0xdf, 0x84, 0xc9, 0x1e, 0x68, 0xe9, 0x09, 0x98, 0x08, 0xb4, 0x18, 0x28, 0xea, 0xb7, 0x1f, 0x85, 0x9f, 0xff, 0x80, 0x27, 0x23, 0x7f, 0x87, 0x51, 0xda, 0x20, 0xeb, 0xee, 0xef, 0x03, 0xa2, 0xc9, 0x5e, 0xfe, 0xc0, 0x5d, 0x7a, 0x5f, 0x1b, 0x50, 0xba, 0x08, 0xe3, 0xbe, 0x1e, 0x20, 0x9a, 0xea, 0x17, 0x38, 0x55, 0xce, 0xdb, 0x02, 0x94, 0xce, 0x42, 0x92, 0xd4, 0xf3, 0x68, 0xf8, 0x2f, 0x72, 0x38, 0x55, 0x2f, 0x3d, 0x0a, 0x69, 0x51, 0xc7, 0xa3, 0xa1, 0xbf, 0xc4, 0xa1, 0x2e, 0x84, 0xc0, 0x45, 0x0d, 0x8f, 0x86, 0xff, 0xb2, 0x80, 0x0b, 0x08, 0x81, 0x0f, 0xef, 0xc2, 0xef, 0xfc, 0x4a, 0x92, 0xe7, 0x61, 0xe1, 0xbb, 0x0b, 0x30, 0xc6, 0x8b, 0x77, 0x34, 0xfa, 0xf3, 0x7c, 0x70, 0x81, 0x28, 0x3d, 0x0c, 0xa9, 0x21, 0x1d, 0xfe, 0xab, 0x1c, 0xca, 0xf4, 0x4b, 0x2b, 0x90, 0xf5, 0x14, 0xec, 0x68, 0xf8, 0xaf, 0x71, 0xb8, 0x17, 0x45, 0x4c, 0xe7, 0x05, 0x3b, 0x9a, 0xe0, 0xd7, 0x85, 0xe9, 0x1c, 0x41, 0xdc, 0x26, 0x6a, 0x75, 0x34, 0xfa, 0x37, 0x84, 0xd7, 0x05, 0xa4, 0xf4, 0x38, 0x64, 0xdc, 0xfc, 0x1b, 0x8d, 0xff, 0x4d, 0x8e, 0xef, 0x62, 0x88, 0x07, 0x3c, 0xf9, 0x3f, 0x9a, 0xe2, 0xb7, 0x84, 0x07, 0x3c, 0x28, 0xb2, 0x8d, 0x82, 0x35, 0x3d, 0x9a, 0xe9, 0xb7, 0xc5, 0x36, 0x0a, 0x94, 0x74, 0xb2, 0x9a, 0x34, 0x0d, 0x46, 0x53, 0xfc, 0x8e, 0x58, 0x4d, 0xaa, 0x4f, 0xcc, 0x08, 0x16, 0xc9, 0x68, 0x8e, 0xdf, 0x15, 0x66, 0x04, 0x6a, 0x64, 0x69, 0x07, 0x50, 0x6f, 0x81, 0x8c, 0xe6, 0x7b, 0x85, 0xf3, 0x4d, 0xf6, 0xd4, 0xc7, 0xd2, 0xd3, 0x70, 0x22, 0xbc, 0x38, 0x46, 0xb3, 0x7e, 0xe1, 0x83, 0xc0, 0x71, 0xc6, 0x5b, 0x1b, 0x4b, 0xbb, 0xdd, 0x2c, 0xeb, 0x2d, 0x8c, 0xd1, 0xb4, 0xaf, 0x7e, 0xe0, 0x4f, 0xb4, 0xde, 0xba, 0x58, 0x2a, 0x03, 0x74, 0x6b, 0x52, 0x34, 0xd7, 0x6b, 0x9c, 0xcb, 0x03, 0x22, 0x5b, 0x83, 0x97, 0xa4, 0x68, 0xfc, 0x17, 0xc5, 0xd6, 0xe0, 0x08, 0xb2, 0x35, 0x44, 0x35, 0x8a, 0x46, 0xbf, 0x2e, 0xb6, 0x86, 0x80, 0x94, 0x2e, 0x40, 0xda, 0xe8, 0x34, 0x9b, 0x24, 0xb6, 0xd0, 0xe0, 0x9f, 0x33, 0x15, 0xfe, 0xe5, 0x43, 0x0e, 0x16, 0x80, 0xd2, 0x59, 0x48, 0xe1, 0xd6, 0x3e, 0xae, 0x45, 0x21, 0xff, 0xf5, 0x43, 0x91, 0x4f, 0x88, 0x76, 0xe9, 0x71, 0x00, 0x76, 0x98, 0xa6, 0x5f, 0x89, 0x22, 0xb0, 0xff, 0xf6, 0x21, 0xff, 0xa5, 0x44, 0x17, 0xd2, 0x25, 0x60, 0xbf, 0xbb, 0x18, 0x4c, 0xf0, 0x9e, 0x9f, 0x80, 0x1e, 0xc0, 0x1f, 0x81, 0xb1, 0xe7, 0x6d, 0xd3, 0x70, 0xd4, 0x46, 0x14, 0xfa, 0xdf, 0x39, 0x5a, 0xe8, 0x13, 0x87, 0xb5, 0x4c, 0x0b, 0x3b, 0x6a, 0xc3, 0x8e, 0xc2, 0xfe, 0x07, 0xc7, 0xba, 0x00, 0x02, 0xd6, 0x54, 0xdb, 0x19, 0x66, 0xde, 0xff, 0x29, 0xc0, 0x02, 0x40, 0x8c, 0x26, 0x7f, 0x5f, 0xc1, 0x87, 0x51, 0xd8, 0xf7, 0x85, 0xd1, 0x5c, 0xbf, 0xf4, 0x28, 0x64, 0xc8, 0x9f, 0xec, 0xd7, 0x43, 0x11, 0xe0, 0xff, 0xe2, 0xe0, 0x2e, 0x82, 0x8c, 0x6c, 0x3b, 0x35, 0x47, 0x8f, 0x76, 0xf6, 0x7f, 0xf3, 0x95, 0x16, 0xfa, 0xa5, 0x32, 0x64, 0x6d, 0xa7, 0x56, 0xeb, 0xf0, 0x8e, 0x26, 0x02, 0xfe, 0xe3, 0x0f, 0xdd, 0x43, 0xae, 0x8b, 0x59, 0x3e, 0x15, 0x7e, 0x59, 0x07, 0x6b, 0xe6, 0x9a, 0xc9, 0xae, 0xe9, 0xe0, 0x7f, 0xee, 0x87, 0x59, 0xcd, 0x6c, 0xed, 0x9b, 0xf6, 0xa2, 0x81, 0x75, 0xe7, 0x00, 0x5b, 0x8b, 0x2d, 0xb5, 0x6d, 0x53, 0xdd, 0x25, 0x7e, 0xcf, 0x96, 0xe5, 0x4f, 0xe4, 0xc5, 0xcc, 0xf1, 0xee, 0xe8, 0xe6, 0x6e, 0x83, 0xf1, 0x8b, 0x4d, 0x53, 0x75, 0x74, 0xa3, 0xb1, 0x63, 0xea, 0x86, 0x83, 0x72, 0x10, 0xab, 0xd3, 0x0f, 0x4c, 0x31, 0x39, 0x56, 0x9f, 0xfb, 0x87, 0x14, 0x64, 0xd8, 0xf5, 0xce, 0xa6, 0xda, 0x46, 0x3f, 0x07, 0xb9, 0x2d, 0xbe, 0x43, 0x1e, 0x5c, 0x3a, 0x6f, 0xbb, 0x77, 0xc9, 0x9e, 0xf1, 0x17, 0x5c, 0xed, 0x05, 0xaf, 0x2a, 0xfd, 0xa0, 0xbc, 0xfc, 0xc0, 0x0f, 0xdf, 0x9a, 0xbd, 0xaf, 0xaf, 0x7d, 0xa4, 0x24, 0x2e, 0xb2, 0x50, 0x5e, 0xd8, 0xd3, 0x0d, 0xe7, 0xc1, 0xa5, 0xf3, 0xb2, 0x6f, 0x3c, 0x74, 0x15, 0xd2, 0xfc, 0x85, 0xcd, 0xbf, 0x31, 0xdc, 0xd1, 0x67, 0x6c, 0xa1, 0xc6, 0xc6, 0x3d, 0xf3, 0xe6, 0x5b, 0xb3, 0x23, 0xc7, 0x1e, 0xdb, 0x1d, 0x0b, 0xbd, 0x00, 0x59, 0x61, 0xc7, 0x7a, 0xcd, 0xe6, 0x3f, 0xc9, 0xbe, 0x3b, 0x62, 0xda, 0xeb, 0x35, 0x3e, 0xfa, 0x5d, 0x3f, 0x7c, 0x6b, 0x76, 0x6e, 0xe0, 0xc8, 0x0b, 0x7b, 0x1d, 0xbd, 0x26, 0x7b, 0xc7, 0x40, 0xcf, 0x41, 0x82, 0x0c, 0xc5, 0x7e, 0xbc, 0x3d, 0xdb, 0x67, 0x28, 0x77, 0x88, 0xd3, 0x7c, 0x82, 0xc3, 0x0c, 0x43, 0x78, 0x67, 0x1e, 0x87, 0xc9, 0x9e, 0xe5, 0x41, 0x12, 0x24, 0xae, 0xe0, 0x43, 0xfe, 0x7b, 0x27, 0xf2, 0x27, 0x9a, 0xee, 0xfe, 0x9e, 0x2f, 0x36, 0x9f, 0xe3, 0x3f, 0xd2, 0x2b, 0xc5, 0xcf, 0xc7, 0x66, 0x2e, 0xc0, 0xb8, 0xcf, 0xc7, 0xc7, 0x02, 0x3f, 0x06, 0x52, 0xd0, 0x4b, 0xc7, 0xc2, 0x9f, 0x83, 0xf4, 0x47, 0xc1, 0xcd, 0xfd, 0x00, 0xc1, 0x58, 0xb9, 0xd9, 0xdc, 0x54, 0xdb, 0x36, 0x7a, 0x06, 0x26, 0x59, 0xe3, 0xbe, 0x6b, 0xae, 0xd2, 0xaf, 0x3a, 0x9b, 0x6a, 0x9b, 0x07, 0xf4, 0xbd, 0x3e, 0x77, 0x73, 0xc0, 0x42, 0x8f, 0x36, 0x1d, 0x5f, 0xee, 0x65, 0x41, 0x4f, 0x81, 0x24, 0x84, 0x74, 0x6f, 0x11, 0x66, 0x16, 0xae, 0xa7, 0x07, 0x32, 0x0b, 0x65, 0x46, 0xdc, 0xc3, 0x81, 0x1e, 0x83, 0xf4, 0xba, 0xe1, 0x3c, 0xb4, 0x44, 0xf8, 0x58, 0x0c, 0xce, 0x85, 0xf2, 0x09, 0x25, 0xc6, 0xe3, 0x62, 0x38, 0xfe, 0xdc, 0x19, 0x82, 0x4f, 0x0e, 0xc6, 0x53, 0xa5, 0x2e, 0x9e, 0x3e, 0xa2, 0x32, 0x64, 0xc8, 0x9a, 0x33, 0x03, 0xd8, 0xff, 0x06, 0xb8, 0x3d, 0x94, 0xc0, 0xd5, 0x62, 0x0c, 0x5d, 0x94, 0xa0, 0x60, 0x36, 0x8c, 0x46, 0x50, 0x78, 0x8c, 0xe8, 0xa2, 0x08, 0x45, 0xd5, 0xb5, 0x62, 0x6c, 0x00, 0x45, 0x35, 0x60, 0x45, 0xd5, 0x6b, 0x45, 0xd5, 0xb5, 0x22, 0x1d, 0x41, 0xe1, 0xb5, 0xc2, 0x7d, 0x46, 0xab, 0x00, 0x17, 0xf5, 0x97, 0x70, 0x8d, 0x99, 0x91, 0x09, 0x49, 0x46, 0x82, 0xa3, 0xab, 0xc6, 0x48, 0x3c, 0x38, 0xb4, 0x06, 0xd9, 0x6a, 0xbd, 0x4b, 0x03, 0xfc, 0x3f, 0x43, 0x84, 0x9a, 0x52, 0x0f, 0xf0, 0x78, 0x91, 0xae, 0x39, 0x6c, 0x4a, 0xd9, 0x28, 0x73, 0x3c, 0x73, 0xf2, 0xe0, 0xba, 0xe6, 0x30, 0x9a, 0x5c, 0xa4, 0x39, 0x1e, 0x1e, 0x2f, 0x12, 0x5d, 0x80, 0xb1, 0x65, 0xd3, 0x24, 0x9a, 0x85, 0x71, 0x4a, 0x72, 0x2a, 0x94, 0x84, 0xeb, 0x30, 0x02, 0x81, 0xa0, 0xab, 0x43, 0x43, 0x9f, 0xc0, 0xf3, 0x83, 0x56, 0x47, 0x68, 0x89, 0xd5, 0x11, 0xcf, 0xde, 0x1d, 0xb8, 0x7c, 0xe8, 0x60, 0xd2, 0x24, 0x17, 0x26, 0x86, 0xd8, 0x81, 0x42, 0x39, 0xb0, 0x03, 0x85, 0x18, 0x55, 0x61, 0x42, 0xc8, 0x2a, 0x46, 0x87, 0xe4, 0xe0, 0x82, 0xc4, 0x7f, 0xe9, 0x3c, 0x88, 0x96, 0xeb, 0x32, 0xd6, 0x20, 0x03, 0xda, 0x81, 0xbc, 0x10, 0x6d, 0xda, 0x74, 0xd2, 0x93, 0x21, 0x75, 0x35, 0xc8, 0xc9, 0x54, 0x19, 0x65, 0x00, 0x3f, 0xb3, 0x0a, 0x27, 0xc2, 0xb3, 0x55, 0x54, 0xb6, 0x8c, 0x79, 0xb3, 0xec, 0x0a, 0xdc, 0x14, 0x9a, 0x99, 0xa2, 0x48, 0xe2, 0x81, 0x3a, 0xe1, 0x4b, 0x47, 0x5e, 0x70, 0x2a, 0x04, 0x9c, 0xea, 0x05, 0x77, 0x83, 0xcc, 0x0b, 0x4e, 0x84, 0x80, 0x13, 0x5e, 0xf0, 0x67, 0x21, 0xef, 0xcf, 0x43, 0x5e, 0xf4, 0x78, 0x08, 0x7a, 0x3c, 0x04, 0x1d, 0x3e, 0x76, 0x32, 0x04, 0x9d, 0x0c, 0xa0, 0xab, 0x7d, 0xc7, 0x9e, 0x0c, 0x41, 0x4f, 0x86, 0xa0, 0xc3, 0xc7, 0x46, 0x21, 0x68, 0xe4, 0x45, 0x3f, 0x0a, 0x13, 0x81, 0x94, 0xe3, 0x85, 0x8f, 0x85, 0xc0, 0xc7, 0x02, 0xb5, 0x39, 0x98, 0x6a, 0xbc, 0xf8, 0x89, 0x10, 0xfc, 0x44, 0xd8, 0xf0, 0xe1, 0xd6, 0x8f, 0x86, 0xc0, 0x47, 0x43, 0x87, 0x0f, 0xc7, 0x4b, 0x21, 0x78, 0xc9, 0x8b, 0x2f, 0x41, 0xce, 0x9b, 0x55, 0xbc, 0xd8, 0x74, 0x08, 0x36, 0x1d, 0xf4, 0xbb, 0x2f, 0xa5, 0x44, 0x45, 0x7a, 0xa6, 0xcf, 0x76, 0xf1, 0xa5, 0x91, 0x63, 0x75, 0x36, 0x97, 0x61, 0x3a, 0x2c, 0x69, 0x84, 0x70, 0x9c, 0xf6, 0x72, 0xe4, 0x97, 0xa6, 0x7d, 0xc9, 0x82, 0xe2, 0x3a, 0x2d, 0x2f, 0xf3, 0x73, 0x30, 0x15, 0x92, 0x3a, 0x42, 0x88, 0x1f, 0xf0, 0x12, 0x67, 0x97, 0x66, 0x7c, 0xc4, 0xbe, 0xb3, 0x82, 0xb7, 0xb5, 0xfa, 0xd1, 0x14, 0xe4, 0x79, 0x8a, 0xda, 0xb6, 0x6a, 0xd8, 0xc2, 0x35, 0xf4, 0x33, 0xfd, 0x3b, 0xac, 0xa5, 0xb0, 0xd4, 0xc6, 0x71, 0xc7, 0x68, 0xb4, 0x9e, 0xeb, 0xdb, 0x68, 0x3d, 0x38, 0xcc, 0x00, 0x51, 0xfd, 0x56, 0xa5, 0xa7, 0xdf, 0xba, 0x67, 0x10, 0x6d, 0xbf, 0xb6, 0xab, 0xd2, 0xd3, 0x76, 0x45, 0xd1, 0x84, 0x76, 0x5f, 0x97, 0x7a, 0xbb, 0xaf, 0xd3, 0x83, 0x78, 0xfa, 0x37, 0x61, 0x97, 0x7a, 0x9b, 0xb0, 0x48, 0xa6, 0xf0, 0x5e, 0xec, 0x52, 0x6f, 0x2f, 0x36, 0x90, 0xa9, 0x7f, 0x4b, 0x76, 0xa9, 0xb7, 0x25, 0x8b, 0x64, 0x0a, 0xef, 0xcc, 0x9e, 0x0c, 0xe9, 0xcc, 0xee, 0x1d, 0x44, 0x35, 0xa8, 0x41, 0xdb, 0x0a, 0x6b, 0xd0, 0xee, 0x1b, 0x68, 0xd8, 0xc0, 0x3e, 0xed, 0xc9, 0x90, 0x3e, 0x2d, 0xda, 0xb8, 0x3e, 0xed, 0xda, 0x56, 0x58, 0xbb, 0x36, 0x84, 0x71, 0xfd, 0xba, 0xb6, 0xe5, 0x60, 0xd7, 0x36, 0x3f, 0x88, 0x2b, 0xbc, 0x79, 0xbb, 0xd4, 0xdb, 0xbc, 0x9d, 0x8e, 0xde, 0x8b, 0x61, 0x3d, 0xdc, 0x73, 0x7d, 0x7b, 0xb8, 0xa1, 0x36, 0x77, 0x54, 0x2b, 0xf7, 0x6c, 0xbf, 0x56, 0xee, 0x81, 0x61, 0xd8, 0x07, 0x77, 0x74, 0x4f, 0xf7, 0xe9, 0xe8, 0x16, 0x87, 0xa1, 0xfe, 0xb4, 0xb1, 0xfb, 0xb4, 0xb1, 0xfb, 0xb4, 0xb1, 0xfb, 0xb4, 0xb1, 0xfb, 0xbf, 0xd1, 0xd8, 0x95, 0x92, 0xaf, 0x7c, 0x69, 0x36, 0x76, 0xfa, 0x14, 0x8c, 0xf1, 0xa1, 0xd1, 0x28, 0xc4, 0x37, 0xcb, 0xd2, 0x08, 0xfd, 0x77, 0x59, 0x8a, 0xd1, 0x7f, 0x57, 0xa4, 0xf8, 0xf2, 0xc6, 0x9b, 0x37, 0x8a, 0x23, 0xdf, 0xbb, 0x51, 0x1c, 0xf9, 0xc1, 0x8d, 0xe2, 0xc8, 0xdb, 0x37, 0x8a, 0xb1, 0x77, 0x6f, 0x14, 0x63, 0xef, 0xdf, 0x28, 0xc6, 0x7e, 0x72, 0xa3, 0x18, 0xbb, 0x7e, 0x54, 0x8c, 0x7d, 0xe5, 0xa8, 0x18, 0xfb, 0xfa, 0x51, 0x31, 0xf6, 0xed, 0xa3, 0x62, 0xec, 0x3b, 0x47, 0xc5, 0xd8, 0x9b, 0x47, 0xc5, 0x91, 0xef, 0x1d, 0x15, 0x47, 0xde, 0x3e, 0x2a, 0xc6, 0xde, 0x3d, 0x2a, 0x8e, 0xbc, 0x7f, 0x54, 0x8c, 0xfd, 0xe4, 0xa8, 0x38, 0x72, 0xfd, 0x9f, 0x8a, 0x23, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x13, 0x51, 0xaf, 0x9c, 0x46, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x MapEnum) String() string { s, ok := MapEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *FloatingPoint) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FloatingPoint") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FloatingPoint but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FloatingPoint but is not nil && this == nil") } if this.F != nil && that1.F != nil { if *this.F != *that1.F { return fmt.Errorf("F this(%v) Not Equal that(%v)", *this.F, *that1.F) } } else if this.F != nil { return fmt.Errorf("this.F == nil && that.F != nil") } else if that1.F != nil { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *FloatingPoint) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.F != nil && that1.F != nil { if *this.F != *that1.F { return false } } else if this.F != nil { return false } else if that1.F != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomMap) if !ok { that2, ok := that.(CustomMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomMap but is not nil && this == nil") } if len(this.Nullable128S) != len(that1.Nullable128S) { return fmt.Errorf("Nullable128S this(%v) Not Equal that(%v)", len(this.Nullable128S), len(that1.Nullable128S)) } for i := range this.Nullable128S { if !this.Nullable128S[i].Equal(*that1.Nullable128S[i]) { //nullable return fmt.Errorf("Nullable128S this[%v](%v) Not Equal that[%v](%v)", i, this.Nullable128S[i], i, that1.Nullable128S[i]) } } if len(this.Uint128S) != len(that1.Uint128S) { return fmt.Errorf("Uint128S this(%v) Not Equal that(%v)", len(this.Uint128S), len(that1.Uint128S)) } for i := range this.Uint128S { if !this.Uint128S[i].Equal(that1.Uint128S[i]) { //not nullable return fmt.Errorf("Uint128S this[%v](%v) Not Equal that[%v](%v)", i, this.Uint128S[i], i, that1.Uint128S[i]) } } if len(this.NullableIds) != len(that1.NullableIds) { return fmt.Errorf("NullableIds this(%v) Not Equal that(%v)", len(this.NullableIds), len(that1.NullableIds)) } for i := range this.NullableIds { if !this.NullableIds[i].Equal(*that1.NullableIds[i]) { //nullable return fmt.Errorf("NullableIds this[%v](%v) Not Equal that[%v](%v)", i, this.NullableIds[i], i, that1.NullableIds[i]) } } if len(this.Ids) != len(that1.Ids) { return fmt.Errorf("Ids this(%v) Not Equal that(%v)", len(this.Ids), len(that1.Ids)) } for i := range this.Ids { if !this.Ids[i].Equal(that1.Ids[i]) { //not nullable return fmt.Errorf("Ids this[%v](%v) Not Equal that[%v](%v)", i, this.Ids[i], i, that1.Ids[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomMap) if !ok { that2, ok := that.(CustomMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Nullable128S) != len(that1.Nullable128S) { return false } for i := range this.Nullable128S { if !this.Nullable128S[i].Equal(*that1.Nullable128S[i]) { //nullable return false } } if len(this.Uint128S) != len(that1.Uint128S) { return false } for i := range this.Uint128S { if !this.Uint128S[i].Equal(that1.Uint128S[i]) { //not nullable return false } } if len(this.NullableIds) != len(that1.NullableIds) { return false } for i := range this.NullableIds { if !this.NullableIds[i].Equal(*that1.NullableIds[i]) { //nullable return false } } if len(this.Ids) != len(that1.Ids) { return false } for i := range this.Ids { if !this.Ids[i].Equal(that1.Ids[i]) { //not nullable return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllMaps) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMaps") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMaps but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMaps but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllMaps) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllMapsOrdered) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMapsOrdered") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMapsOrdered but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMapsOrdered but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllMapsOrdered) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type FloatingPointFace interface { Proto() github_com_gogo_protobuf_proto.Message GetF() *float64 } func (this *FloatingPoint) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *FloatingPoint) TestProto() github_com_gogo_protobuf_proto.Message { return NewFloatingPointFromFace(this) } func (this *FloatingPoint) GetF() *float64 { return this.F } func NewFloatingPointFromFace(that FloatingPointFace) *FloatingPoint { this := &FloatingPoint{} this.F = that.GetF() return this } type CustomMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNullable128S() map[string]*github_com_gogo_protobuf_test_custom.Uint128 GetUint128S() map[string]github_com_gogo_protobuf_test_custom.Uint128 GetNullableIds() map[string]*github_com_gogo_protobuf_test.Uuid GetIds() map[string]github_com_gogo_protobuf_test.Uuid } func (this *CustomMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomMapFromFace(this) } func (this *CustomMap) GetNullable128S() map[string]*github_com_gogo_protobuf_test_custom.Uint128 { return this.Nullable128S } func (this *CustomMap) GetUint128S() map[string]github_com_gogo_protobuf_test_custom.Uint128 { return this.Uint128S } func (this *CustomMap) GetNullableIds() map[string]*github_com_gogo_protobuf_test.Uuid { return this.NullableIds } func (this *CustomMap) GetIds() map[string]github_com_gogo_protobuf_test.Uuid { return this.Ids } func NewCustomMapFromFace(that CustomMapFace) *CustomMap { this := &CustomMap{} this.Nullable128S = that.GetNullable128S() this.Uint128S = that.GetUint128S() this.NullableIds = that.GetNullableIds() this.Ids = that.GetIds() return this } type AllMapsFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMaps) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMaps) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsFromFace(this) } func (this *AllMaps) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMaps) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMaps) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMaps) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMaps) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMaps) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMaps) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMaps) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMaps) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMaps) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMaps) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMaps) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMaps) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMaps) GetStringMap() map[string]string { return this.StringMap } func (this *AllMaps) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMaps) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMaps) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsFromFace(that AllMapsFace) *AllMaps { this := &AllMaps{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type AllMapsOrderedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMapsOrdered) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMapsOrdered) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsOrderedFromFace(this) } func (this *AllMapsOrdered) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMapsOrdered) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMapsOrdered) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMapsOrdered) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMapsOrdered) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMapsOrdered) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMapsOrdered) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMapsOrdered) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMapsOrdered) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMapsOrdered) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMapsOrdered) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMapsOrdered) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMapsOrdered) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMapsOrdered) GetStringMap() map[string]string { return this.StringMap } func (this *AllMapsOrdered) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMapsOrdered) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMapsOrdered) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsOrderedFromFace(that AllMapsOrderedFace) *AllMapsOrdered { this := &AllMapsOrdered{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } func (this *FloatingPoint) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&proto2_maps.FloatingPoint{") if this.F != nil { s = append(s, "F: "+valueToGoStringMapsproto2(this.F, "float64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&proto2_maps.CustomMap{") keysForNullable128S := make([]string, 0, len(this.Nullable128S)) for k := range this.Nullable128S { keysForNullable128S = append(keysForNullable128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullable128S) mapStringForNullable128S := "map[string]*github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForNullable128S { mapStringForNullable128S += fmt.Sprintf("%#v: %#v,", k, this.Nullable128S[k]) } mapStringForNullable128S += "}" if this.Nullable128S != nil { s = append(s, "Nullable128S: "+mapStringForNullable128S+",\n") } keysForUint128S := make([]string, 0, len(this.Uint128S)) for k := range this.Uint128S { keysForUint128S = append(keysForUint128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForUint128S) mapStringForUint128S := "map[string]github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForUint128S { mapStringForUint128S += fmt.Sprintf("%#v: %#v,", k, this.Uint128S[k]) } mapStringForUint128S += "}" if this.Uint128S != nil { s = append(s, "Uint128S: "+mapStringForUint128S+",\n") } keysForNullableIds := make([]string, 0, len(this.NullableIds)) for k := range this.NullableIds { keysForNullableIds = append(keysForNullableIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullableIds) mapStringForNullableIds := "map[string]*github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForNullableIds { mapStringForNullableIds += fmt.Sprintf("%#v: %#v,", k, this.NullableIds[k]) } mapStringForNullableIds += "}" if this.NullableIds != nil { s = append(s, "NullableIds: "+mapStringForNullableIds+",\n") } keysForIds := make([]string, 0, len(this.Ids)) for k := range this.Ids { keysForIds = append(keysForIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForIds) mapStringForIds := "map[string]github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForIds { mapStringForIds += fmt.Sprintf("%#v: %#v,", k, this.Ids[k]) } mapStringForIds += "}" if this.Ids != nil { s = append(s, "Ids: "+mapStringForIds+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMaps) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&proto2_maps.AllMaps{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMapsOrdered) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&proto2_maps.AllMapsOrdered{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringMapsproto2(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedFloatingPoint(r randyMapsproto2, easy bool) *FloatingPoint { this := &FloatingPoint{} if r.Intn(10) != 0 { v1 := float64(r.Float64()) if r.Intn(2) == 0 { v1 *= -1 } this.F = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 2) } return this } func NewPopulatedCustomMap(r randyMapsproto2, easy bool) *CustomMap { this := &CustomMap{} if r.Intn(10) != 0 { v2 := r.Intn(10) this.Nullable128S = make(map[string]*github_com_gogo_protobuf_test_custom.Uint128) for i := 0; i < v2; i++ { this.Nullable128S[randStringMapsproto2(r)] = (*github_com_gogo_protobuf_test_custom.Uint128)(github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r)) } } if r.Intn(10) != 0 { v3 := r.Intn(10) this.Uint128S = make(map[string]github_com_gogo_protobuf_test_custom.Uint128) for i := 0; i < v3; i++ { this.Uint128S[randStringMapsproto2(r)] = (github_com_gogo_protobuf_test_custom.Uint128)(*github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r)) } } if r.Intn(10) != 0 { v4 := r.Intn(10) this.NullableIds = make(map[string]*github_com_gogo_protobuf_test.Uuid) for i := 0; i < v4; i++ { this.NullableIds[randStringMapsproto2(r)] = (*github_com_gogo_protobuf_test.Uuid)(github_com_gogo_protobuf_test.NewPopulatedUuid(r)) } } if r.Intn(10) != 0 { v5 := r.Intn(10) this.Ids = make(map[string]github_com_gogo_protobuf_test.Uuid) for i := 0; i < v5; i++ { this.Ids[randStringMapsproto2(r)] = (github_com_gogo_protobuf_test.Uuid)(*github_com_gogo_protobuf_test.NewPopulatedUuid(r)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 5) } return this } func NewPopulatedAllMaps(r randyMapsproto2, easy bool) *AllMaps { this := &AllMaps{} if r.Intn(10) != 0 { v6 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v6; i++ { v7 := randStringMapsproto2(r) this.StringToDoubleMap[v7] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v7] *= -1 } } } if r.Intn(10) != 0 { v8 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v8; i++ { v9 := randStringMapsproto2(r) this.StringToFloatMap[v9] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v9] *= -1 } } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v10; i++ { v11 := int32(r.Int31()) this.Int32Map[v11] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v11] *= -1 } } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v12; i++ { v13 := int64(r.Int63()) this.Int64Map[v13] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v13] *= -1 } } } if r.Intn(10) != 0 { v14 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v14; i++ { v15 := uint32(r.Uint32()) this.Uint32Map[v15] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v16 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v16; i++ { v17 := uint64(uint64(r.Uint32())) this.Uint64Map[v17] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v18; i++ { v19 := int32(r.Int31()) this.Sint32Map[v19] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v19] *= -1 } } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v20; i++ { v21 := int64(r.Int63()) this.Sint64Map[v21] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v21] *= -1 } } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v22; i++ { v23 := uint32(r.Uint32()) this.Fixed32Map[v23] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v24; i++ { v25 := int32(r.Int31()) this.Sfixed32Map[v25] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v25] *= -1 } } } if r.Intn(10) != 0 { v26 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v26; i++ { v27 := uint64(uint64(r.Uint32())) this.Fixed64Map[v27] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v28 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v28; i++ { v29 := int64(r.Int63()) this.Sfixed64Map[v29] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v29] *= -1 } } } if r.Intn(10) != 0 { v30 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v30; i++ { v31 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v31] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v32 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v32; i++ { this.StringMap[randStringMapsproto2(r)] = randStringMapsproto2(r) } } if r.Intn(10) != 0 { v33 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v33; i++ { v34 := r.Intn(100) v35 := randStringMapsproto2(r) this.StringToBytesMap[v35] = make([]byte, v34) for i := 0; i < v34; i++ { this.StringToBytesMap[v35][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v36; i++ { this.StringToEnumMap[randStringMapsproto2(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v37 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v37; i++ { this.StringToMsgMap[randStringMapsproto2(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 18) } return this } func NewPopulatedAllMapsOrdered(r randyMapsproto2, easy bool) *AllMapsOrdered { this := &AllMapsOrdered{} if r.Intn(10) != 0 { v38 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v38; i++ { v39 := randStringMapsproto2(r) this.StringToDoubleMap[v39] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v39] *= -1 } } } if r.Intn(10) != 0 { v40 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v40; i++ { v41 := randStringMapsproto2(r) this.StringToFloatMap[v41] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v41] *= -1 } } } if r.Intn(10) != 0 { v42 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v42; i++ { v43 := int32(r.Int31()) this.Int32Map[v43] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v43] *= -1 } } } if r.Intn(10) != 0 { v44 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v44; i++ { v45 := int64(r.Int63()) this.Int64Map[v45] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v45] *= -1 } } } if r.Intn(10) != 0 { v46 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v46; i++ { v47 := uint32(r.Uint32()) this.Uint32Map[v47] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v48 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v48; i++ { v49 := uint64(uint64(r.Uint32())) this.Uint64Map[v49] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v50 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v50; i++ { v51 := int32(r.Int31()) this.Sint32Map[v51] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v51] *= -1 } } } if r.Intn(10) != 0 { v52 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v52; i++ { v53 := int64(r.Int63()) this.Sint64Map[v53] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v53] *= -1 } } } if r.Intn(10) != 0 { v54 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v54; i++ { v55 := uint32(r.Uint32()) this.Fixed32Map[v55] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v56 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v56; i++ { v57 := int32(r.Int31()) this.Sfixed32Map[v57] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v57] *= -1 } } } if r.Intn(10) != 0 { v58 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v58; i++ { v59 := uint64(uint64(r.Uint32())) this.Fixed64Map[v59] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v60 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v60; i++ { v61 := int64(r.Int63()) this.Sfixed64Map[v61] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v61] *= -1 } } } if r.Intn(10) != 0 { v62 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v62; i++ { v63 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v63] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v64; i++ { this.StringMap[randStringMapsproto2(r)] = randStringMapsproto2(r) } } if r.Intn(10) != 0 { v65 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v65; i++ { v66 := r.Intn(100) v67 := randStringMapsproto2(r) this.StringToBytesMap[v67] = make([]byte, v66) for i := 0; i < v66; i++ { this.StringToBytesMap[v67][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v68; i++ { this.StringToEnumMap[randStringMapsproto2(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v69 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v69; i++ { this.StringToMsgMap[randStringMapsproto2(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 18) } return this } type randyMapsproto2 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneMapsproto2(r randyMapsproto2) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringMapsproto2(r randyMapsproto2) string { v70 := r.Intn(100) tmps := make([]rune, v70) for i := 0; i < v70; i++ { tmps[i] = randUTF8RuneMapsproto2(r) } return string(tmps) } func randUnrecognizedMapsproto2(r randyMapsproto2, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldMapsproto2(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldMapsproto2(dAtA []byte, r randyMapsproto2, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) v71 := r.Int63() if r.Intn(2) == 0 { v71 *= -1 } dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(v71)) case 1: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateMapsproto2(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *FloatingPoint) Size() (n int) { var l int _ = l if m.F != nil { n += 9 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomMap) Size() (n int) { var l int _ = l if len(m.Nullable128S) > 0 { for k, v := range m.Nullable128S { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint128S) > 0 { for k, v := range m.Uint128S { _ = k _ = v l = 0 l = v.Size() l += 1 + sovMapsproto2(uint64(l)) mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.NullableIds) > 0 { for k, v := range m.NullableIds { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Ids) > 0 { for k, v := range m.Ids { _ = k _ = v l = 0 l = v.Size() l += 1 + sovMapsproto2(uint64(l)) mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllMaps) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if v != nil { l = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllMapsOrdered) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if v != nil { l = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovMapsproto2(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozMapsproto2(x uint64) (n int) { return sovMapsproto2(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *FloatingPoint) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FloatingPoint{`, `F:` + valueToStringMapsproto2(this.F) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomMap) String() string { if this == nil { return "nil" } keysForNullable128S := make([]string, 0, len(this.Nullable128S)) for k := range this.Nullable128S { keysForNullable128S = append(keysForNullable128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullable128S) mapStringForNullable128S := "map[string]*github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForNullable128S { mapStringForNullable128S += fmt.Sprintf("%v: %v,", k, this.Nullable128S[k]) } mapStringForNullable128S += "}" keysForUint128S := make([]string, 0, len(this.Uint128S)) for k := range this.Uint128S { keysForUint128S = append(keysForUint128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForUint128S) mapStringForUint128S := "map[string]github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForUint128S { mapStringForUint128S += fmt.Sprintf("%v: %v,", k, this.Uint128S[k]) } mapStringForUint128S += "}" keysForNullableIds := make([]string, 0, len(this.NullableIds)) for k := range this.NullableIds { keysForNullableIds = append(keysForNullableIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullableIds) mapStringForNullableIds := "map[string]*github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForNullableIds { mapStringForNullableIds += fmt.Sprintf("%v: %v,", k, this.NullableIds[k]) } mapStringForNullableIds += "}" keysForIds := make([]string, 0, len(this.Ids)) for k := range this.Ids { keysForIds = append(keysForIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForIds) mapStringForIds := "map[string]github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForIds { mapStringForIds += fmt.Sprintf("%v: %v,", k, this.Ids[k]) } mapStringForIds += "}" s := strings.Join([]string{`&CustomMap{`, `Nullable128S:` + mapStringForNullable128S + `,`, `Uint128S:` + mapStringForUint128S + `,`, `NullableIds:` + mapStringForNullableIds + `,`, `Ids:` + mapStringForIds + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllMaps) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMaps{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllMapsOrdered) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMapsOrdered{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringMapsproto2(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/neither/mapsproto2.proto", fileDescriptorMapsproto2) } var fileDescriptorMapsproto2 = []byte{ // 1148 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x97, 0xcd, 0x6f, 0x1a, 0xc7, 0x1b, 0xc7, 0x77, 0xc0, 0x36, 0x30, 0xbc, 0x4f, 0xfc, 0xfb, 0x09, 0x21, 0x75, 0x70, 0xe8, 0x1b, 0x21, 0x29, 0xd8, 0x34, 0x8a, 0x2c, 0xa7, 0x4d, 0x65, 0x6c, 0xa7, 0x58, 0x29, 0x6e, 0x04, 0x4d, 0xdf, 0x24, 0x4b, 0x05, 0xb3, 0x10, 0x54, 0x60, 0x29, 0xbb, 0x44, 0xf5, 0xa5, 0xca, 0x9f, 0xd1, 0x6b, 0x6f, 0x3d, 0xf6, 0xd8, 0x63, 0x8f, 0x96, 0x7a, 0xc9, 0x31, 0x8a, 0x2a, 0x2b, 0x6c, 0x2f, 0x39, 0xe6, 0x98, 0x63, 0xb5, 0xb3, 0xbb, 0x30, 0xbb, 0xfb, 0xec, 0x2e, 0xf4, 0xd4, 0x83, 0x4f, 0x78, 0x96, 0xe7, 0xfb, 0xf9, 0x3e, 0xbb, 0x3b, 0xf3, 0xf0, 0x35, 0xce, 0x9d, 0x49, 0xc3, 0xb6, 0x24, 0x97, 0x47, 0x62, 0x5f, 0x79, 0x2c, 0x4e, 0xca, 0xc3, 0xd6, 0x58, 0x1e, 0x4f, 0x24, 0x45, 0xaa, 0x94, 0xd8, 0x07, 0x89, 0x1a, 0x2b, 0xed, 0x8b, 0xec, 0x07, 0xbd, 0xbe, 0xf2, 0x78, 0xda, 0x2e, 0x9d, 0x49, 0xc3, 0x72, 0x4f, 0xea, 0x49, 0x65, 0xf6, 0x65, 0x7b, 0xda, 0x65, 0x2b, 0xb6, 0x60, 0x7f, 0xe9, 0xda, 0xfc, 0x5b, 0x38, 0x7e, 0x7f, 0x20, 0xb5, 0x94, 0xfe, 0xa8, 0xf7, 0x50, 0xea, 0x8f, 0x14, 0x12, 0xc3, 0xa8, 0x9b, 0x41, 0x5b, 0xa8, 0x80, 0x1a, 0xa8, 0x9b, 0xff, 0x73, 0x1d, 0x47, 0x0e, 0xa6, 0xb2, 0x22, 0x0d, 0xeb, 0xad, 0x31, 0xf9, 0x09, 0xc7, 0x4e, 0xa6, 0x83, 0x41, 0xab, 0x3d, 0x10, 0x77, 0x2a, 0xbb, 0x72, 0x06, 0x6d, 0x05, 0x0b, 0xd1, 0x4a, 0xa1, 0xc4, 0xf9, 0x97, 0xe6, 0xd5, 0x25, 0xbe, 0xf4, 0x68, 0xa4, 0x4c, 0xce, 0xab, 0xdb, 0x2f, 0x2e, 0x73, 0xb7, 0x5c, 0xfb, 0x53, 0x44, 0x59, 0x29, 0x9f, 0x31, 0x79, 0xe9, 0x51, 0x7f, 0xa4, 0xec, 0x54, 0x76, 0x1b, 0x16, 0x3f, 0xf2, 0x04, 0x87, 0x8d, 0x2f, 0xe4, 0x4c, 0x80, 0x79, 0xbf, 0xe3, 0xe2, 0x6d, 0x96, 0xe9, 0xbe, 0xb7, 0x2f, 0x2e, 0x73, 0xc2, 0xca, 0xde, 0x73, 0x2f, 0xf2, 0x03, 0x8e, 0x9a, 0x7d, 0x1c, 0x77, 0xe4, 0x4c, 0x90, 0x59, 0xbf, 0xef, 0x73, 0xdb, 0xc7, 0x1d, 0xc3, 0xfd, 0xbd, 0x17, 0x97, 0xb9, 0xbc, 0xa7, 0x73, 0xe9, 0xd1, 0xb4, 0xdf, 0x69, 0xf0, 0x1e, 0xe4, 0x14, 0x07, 0x35, 0xab, 0x35, 0x66, 0x95, 0x73, 0xb1, 0x9a, 0x5b, 0x14, 0x8d, 0x1b, 0x5c, 0xc6, 0x46, 0xe3, 0x66, 0x3f, 0xc1, 0x69, 0xc7, 0xeb, 0x21, 0x29, 0x1c, 0xfc, 0x5e, 0x3c, 0x67, 0x2f, 0x3f, 0xd2, 0xd0, 0xfe, 0x24, 0x9b, 0x78, 0xfd, 0x49, 0x6b, 0x30, 0x15, 0x33, 0x81, 0x2d, 0x54, 0x88, 0x35, 0xf4, 0xc5, 0x5e, 0x60, 0x17, 0x65, 0xef, 0xe2, 0xb8, 0xe5, 0x19, 0xaf, 0x24, 0xbe, 0x87, 0x53, 0xf6, 0xa7, 0xb4, 0x92, 0xfe, 0x0e, 0x0e, 0xff, 0x1b, 0x5d, 0xfe, 0x39, 0xc1, 0xa1, 0xfd, 0xc1, 0xa0, 0xde, 0x1a, 0xcb, 0xe4, 0x1b, 0x9c, 0x6e, 0x2a, 0x93, 0xfe, 0xa8, 0xf7, 0x85, 0x74, 0x28, 0x4d, 0xdb, 0x03, 0xb1, 0xde, 0x1a, 0x1b, 0x1b, 0xfa, 0xa6, 0xe5, 0x71, 0x1b, 0x82, 0x92, 0xa3, 0x9a, 0xf9, 0x37, 0x9c, 0x14, 0xf2, 0x25, 0x4e, 0x99, 0x17, 0xd9, 0xd9, 0xd2, 0xc8, 0xfa, 0x76, 0x2d, 0x7a, 0x92, 0xcd, 0x62, 0x1d, 0xec, 0x60, 0x90, 0x7b, 0x38, 0x7c, 0x3c, 0x52, 0x3e, 0xac, 0x68, 0x3c, 0x7d, 0x0f, 0xe6, 0x41, 0x9e, 0x59, 0xa4, 0x73, 0xe6, 0x1a, 0x43, 0x7f, 0xe7, 0xb6, 0xa6, 0x5f, 0xf3, 0xd6, 0xb3, 0xa2, 0x85, 0x9e, 0x2d, 0xc9, 0x3e, 0x8e, 0x68, 0xef, 0x5c, 0x6f, 0x60, 0x9d, 0x01, 0xde, 0x06, 0x01, 0xf3, 0x2a, 0x9d, 0xb0, 0x50, 0x99, 0x08, 0xbd, 0x87, 0x0d, 0x1f, 0x04, 0xd7, 0xc4, 0x42, 0xa5, 0x21, 0x9a, 0xf3, 0x2e, 0x42, 0x1e, 0x88, 0xa6, 0xad, 0x8b, 0x26, 0xdf, 0x45, 0x73, 0xde, 0x45, 0xd8, 0x07, 0xc1, 0x77, 0x31, 0x5f, 0x93, 0x43, 0x8c, 0xef, 0xf7, 0x7f, 0x14, 0x3b, 0x7a, 0x1b, 0x11, 0x60, 0x18, 0x99, 0x8c, 0x45, 0x99, 0x0e, 0xe1, 0x74, 0xe4, 0x53, 0x1c, 0x6d, 0x76, 0x17, 0x18, 0xcc, 0x30, 0xef, 0xc2, 0xad, 0x74, 0x6d, 0x1c, 0x5e, 0x39, 0x6f, 0x47, 0xbf, 0xa5, 0xa8, 0x5f, 0x3b, 0xdc, 0x3d, 0x71, 0xba, 0x45, 0x3b, 0x3a, 0x26, 0xe6, 0xdb, 0x0e, 0xc7, 0xe1, 0x95, 0xe4, 0x2e, 0x0e, 0x55, 0x25, 0x49, 0xab, 0xcc, 0xc4, 0x19, 0xe4, 0x3a, 0x08, 0x31, 0x6a, 0x74, 0x80, 0xa9, 0x60, 0x6f, 0x87, 0x6d, 0x7d, 0x4d, 0x9e, 0xf0, 0x7a, 0x3b, 0x66, 0x95, 0xf9, 0x76, 0xcc, 0x35, 0x7f, 0x02, 0xab, 0xe7, 0x8a, 0x28, 0x6b, 0xa4, 0xe4, 0x12, 0x27, 0xd0, 0x2c, 0xb6, 0x9d, 0x40, 0xf3, 0x32, 0x69, 0xe2, 0xa4, 0x79, 0xed, 0x68, 0x34, 0xd5, 0x66, 0x70, 0x26, 0xc5, 0xb0, 0x37, 0x3c, 0xb1, 0x46, 0xad, 0x4e, 0xb5, 0x13, 0xc8, 0x43, 0x9c, 0x30, 0x2f, 0xd5, 0x65, 0x76, 0xd3, 0x69, 0xe0, 0x77, 0xd5, 0xce, 0xd4, 0x4b, 0x75, 0xa4, 0x4d, 0x9f, 0x3d, 0xc4, 0xff, 0x87, 0xa7, 0x95, 0xdf, 0xb4, 0x44, 0xfc, 0x94, 0x3d, 0xc0, 0xff, 0x03, 0x27, 0x93, 0x1f, 0x24, 0x60, 0xfb, 0x9d, 0xb0, 0x8c, 0x23, 0x5e, 0xbc, 0x0e, 0x88, 0xd7, 0x9d, 0xe2, 0xc5, 0x26, 0xe3, 0xc5, 0x41, 0x40, 0x1c, 0xe4, 0xc5, 0x1f, 0xe1, 0x84, 0x75, 0x0e, 0xf1, 0xea, 0x38, 0xa0, 0x8e, 0x03, 0x6a, 0xd8, 0x7b, 0x0d, 0x50, 0xaf, 0xd9, 0xd4, 0x4d, 0x57, 0xef, 0x34, 0xa0, 0x4e, 0x03, 0x6a, 0xd8, 0x9b, 0x00, 0x6a, 0xc2, 0xab, 0x3f, 0xc6, 0x49, 0xdb, 0xc8, 0xe1, 0xe5, 0x21, 0x40, 0x1e, 0xb2, 0xfd, 0x36, 0xdb, 0x47, 0x0d, 0xaf, 0x4f, 0x02, 0xfa, 0x24, 0x64, 0x0f, 0x77, 0xbf, 0x01, 0xc8, 0x37, 0x40, 0x7b, 0x58, 0x9f, 0x02, 0xf4, 0x29, 0x5e, 0xbf, 0x87, 0x63, 0xfc, 0x54, 0xe1, 0xb5, 0x61, 0x40, 0x1b, 0xb6, 0x3f, 0x77, 0xcb, 0x48, 0xf1, 0xdb, 0xe9, 0x11, 0x97, 0xe3, 0x62, 0x19, 0x23, 0x2b, 0x25, 0x9b, 0xaf, 0xf1, 0x26, 0x34, 0x34, 0x00, 0x46, 0x91, 0x67, 0x24, 0x2a, 0x9b, 0x96, 0x61, 0xc1, 0x74, 0xd3, 0x21, 0x4f, 0x3e, 0xc5, 0xd7, 0x80, 0xd1, 0x01, 0x80, 0xb7, 0x79, 0x70, 0xb4, 0x92, 0xb5, 0x80, 0x2d, 0xff, 0x2b, 0xf0, 0xd1, 0xea, 0xaf, 0x6b, 0x38, 0x61, 0x8c, 0xa8, 0xcf, 0x27, 0x1d, 0x71, 0x22, 0x76, 0xc8, 0x77, 0xee, 0x09, 0xab, 0x02, 0x8d, 0x36, 0x43, 0xb7, 0x42, 0xd0, 0x3a, 0x75, 0x0d, 0x5a, 0x3b, 0xcb, 0x18, 0xf8, 0xe5, 0xad, 0x23, 0x47, 0xde, 0xba, 0xe1, 0x85, 0x75, 0x8b, 0x5d, 0x47, 0x8e, 0xd8, 0xe5, 0x87, 0x01, 0xd3, 0x57, 0xcd, 0x99, 0xbe, 0x8a, 0x5e, 0x1c, 0xf7, 0x10, 0x56, 0x73, 0x86, 0x30, 0x5f, 0x12, 0x9c, 0xc5, 0x6a, 0xce, 0x2c, 0xe6, 0x49, 0x72, 0x8f, 0x64, 0x35, 0x67, 0x24, 0xf3, 0x25, 0xc1, 0xc9, 0xec, 0x01, 0x90, 0xcc, 0x6e, 0x7a, 0xa1, 0xbc, 0x02, 0xda, 0x09, 0x14, 0xd0, 0x6e, 0x79, 0x36, 0xe6, 0x99, 0xd3, 0x1e, 0x00, 0x39, 0xcd, 0xbf, 0x39, 0x97, 0xb8, 0x76, 0x02, 0xc5, 0xb5, 0x25, 0x9a, 0x73, 0x4b, 0x6d, 0x55, 0x7b, 0x6a, 0x2b, 0x78, 0xb1, 0xe0, 0xf0, 0x56, 0x73, 0x86, 0xb7, 0xa2, 0xff, 0x59, 0x84, 0x32, 0xdc, 0xa9, 0x6b, 0x86, 0x5b, 0xea, 0x70, 0xfb, 0x45, 0xb9, 0x6f, 0xdd, 0xa2, 0xdc, 0xf6, 0x32, 0x74, 0xef, 0x44, 0xf7, 0x95, 0x4b, 0xa2, 0x2b, 0x2f, 0x83, 0xbe, 0x0a, 0x76, 0x57, 0xc1, 0xee, 0x2a, 0xd8, 0x5d, 0x05, 0xbb, 0xff, 0x46, 0xb0, 0xdb, 0x5b, 0xfb, 0xf9, 0x97, 0x1c, 0x2a, 0x5e, 0xc7, 0x21, 0xc3, 0x9a, 0x6c, 0xe0, 0x40, 0x7d, 0x3f, 0x25, 0xb0, 0xcf, 0x6a, 0x0a, 0xb1, 0xcf, 0x83, 0x54, 0xa0, 0xfa, 0xd9, 0xc5, 0x8c, 0x0a, 0xcf, 0x66, 0x54, 0x78, 0x3e, 0xa3, 0xc2, 0xcb, 0x19, 0x45, 0xaf, 0x66, 0x14, 0xbd, 0x9e, 0x51, 0xf4, 0x66, 0x46, 0xd1, 0x53, 0x95, 0xa2, 0x5f, 0x55, 0x8a, 0x7e, 0x53, 0x29, 0xfa, 0x5d, 0xa5, 0xe8, 0x0f, 0x95, 0xa2, 0x0b, 0x95, 0x0a, 0xcf, 0x54, 0x2a, 0xbc, 0x54, 0x29, 0x7a, 0xa5, 0x52, 0xe1, 0xb5, 0x4a, 0xd1, 0x1b, 0x95, 0x0a, 0x4f, 0xff, 0xa6, 0xc2, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x2b, 0x76, 0x8f, 0xf5, 0x16, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/mapsproto2/combos/neither/mapsproto2.proto000066400000000000000000000112731317075173200265510ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto2"; package proto2.maps; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message FloatingPoint { optional double f = 1; } message CustomMap { map Nullable128s = 1 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128"]; map Uint128s = 2 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable)=false]; map NullableIds = 3 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid"]; map Ids = 4 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid", (gogoproto.nullable)=false]; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } golang-gogoprotobuf-0.5/test/mapsproto2/combos/neither/mapsproto2_test.go000066400000000000000000000065421317075173200270550ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package proto2_maps import ( "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": {}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } golang-gogoprotobuf-0.5/test/mapsproto2/combos/neither/mapsproto2pb_test.go000066400000000000000000000632131317075173200273750ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/mapsproto2.proto /* Package proto2_maps is a generated protocol buffer package. It is generated from these files: combos/neither/mapsproto2.proto It has these top-level messages: FloatingPoint CustomMap AllMaps AllMapsOrdered */ package proto2_maps import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestFloatingPointProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkFloatingPointProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkFloatingPointProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedFloatingPoint(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &FloatingPoint{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAllMapsProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMaps(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMaps{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAllMapsOrderedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsOrderedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMapsOrdered(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMapsOrdered{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestFloatingPointJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsOrderedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFloatingPointProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapsproto2Description(t *testing.T) { Mapsproto2Description() } func TestFloatingPointVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsOrderedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFloatingPointFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsOrderedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestFloatingPointGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsOrderedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFloatingPointSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkFloatingPointSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsOrderedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestFloatingPointStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsOrderedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/mapsproto2/combos/unmarshaler/000077500000000000000000000000001317075173200242355ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mapsproto2/combos/unmarshaler/mapsproto2.pb.go000066400000000000000000007316541317075173200273120ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/mapsproto2.proto /* Package proto2_maps is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/mapsproto2.proto It has these top-level messages: FloatingPoint CustomMap AllMaps AllMapsOrdered */ package proto2_maps import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test "github.com/gogo/protobuf/test" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import io "io" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapEnum int32 const ( MA MapEnum = 0 MB MapEnum = 1 MC MapEnum = 2 ) var MapEnum_name = map[int32]string{ 0: "MA", 1: "MB", 2: "MC", } var MapEnum_value = map[string]int32{ "MA": 0, "MB": 1, "MC": 2, } func (x MapEnum) Enum() *MapEnum { p := new(MapEnum) *p = x return p } func (x MapEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(MapEnum_name, int32(x)) } func (x *MapEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(MapEnum_value, data, "MapEnum") if err != nil { return err } *x = MapEnum(value) return nil } func (MapEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{0} } type FloatingPoint struct { F *float64 `protobuf:"fixed64,1,opt,name=f" json:"f,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *FloatingPoint) Reset() { *m = FloatingPoint{} } func (*FloatingPoint) ProtoMessage() {} func (*FloatingPoint) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{0} } type CustomMap struct { Nullable128S map[string]*github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,1,rep,name=Nullable128s,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Nullable128s,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` Uint128S map[string]github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Uint128s,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Uint128s" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` NullableIds map[string]*github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,3,rep,name=NullableIds,customtype=github.com/gogo/protobuf/test.Uuid" json:"NullableIds,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` Ids map[string]github_com_gogo_protobuf_test.Uuid `protobuf:"bytes,4,rep,name=Ids,customtype=github.com/gogo/protobuf/test.Uuid" json:"Ids" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *CustomMap) Reset() { *m = CustomMap{} } func (*CustomMap) ProtoMessage() {} func (*CustomMap) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{1} } type AllMaps struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=proto2.maps.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *AllMaps) Reset() { *m = AllMaps{} } func (*AllMaps) ProtoMessage() {} func (*AllMaps) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{2} } type AllMapsOrdered struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=proto2.maps.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` XXX_unrecognized []byte `json:"-"` } func (m *AllMapsOrdered) Reset() { *m = AllMapsOrdered{} } func (*AllMapsOrdered) ProtoMessage() {} func (*AllMapsOrdered) Descriptor() ([]byte, []int) { return fileDescriptorMapsproto2, []int{3} } func init() { proto.RegisterType((*FloatingPoint)(nil), "proto2.maps.FloatingPoint") proto.RegisterType((*CustomMap)(nil), "proto2.maps.CustomMap") proto.RegisterType((*AllMaps)(nil), "proto2.maps.AllMaps") proto.RegisterType((*AllMapsOrdered)(nil), "proto2.maps.AllMapsOrdered") proto.RegisterEnum("proto2.maps.MapEnum", MapEnum_name, MapEnum_value) } func (this *FloatingPoint) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *CustomMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *AllMaps) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func (this *AllMapsOrdered) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Mapsproto2Description() } func Mapsproto2Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4655 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7b, 0x5d, 0x6c, 0x23, 0xd7, 0x75, 0xbf, 0x86, 0x1f, 0x12, 0x79, 0x48, 0x51, 0xa3, 0x2b, 0x79, 0x4d, 0x2b, 0xb1, 0x76, 0x57, 0x76, 0x6c, 0x79, 0x6d, 0x4b, 0xb6, 0xbc, 0xbb, 0x5e, 0x73, 0x63, 0xfb, 0x4f, 0x49, 0x5c, 0xad, 0x6c, 0x7d, 0x65, 0x28, 0xd9, 0x6b, 0xff, 0x61, 0x4c, 0x47, 0xc3, 0x4b, 0x6a, 0xbc, 0xe4, 0x0c, 0x3d, 0x33, 0x5c, 0x5b, 0x46, 0x51, 0x6c, 0xe1, 0x7e, 0x20, 0x28, 0xfa, 0x5d, 0xa0, 0x8e, 0xeb, 0xb8, 0x4d, 0x80, 0xd6, 0x69, 0xd2, 0x8f, 0xa4, 0x69, 0xd3, 0xb4, 0x4f, 0x79, 0x49, 0x6b, 0xa0, 0x40, 0x91, 0xbc, 0x05, 0x41, 0x60, 0x78, 0x55, 0x03, 0x75, 0x5b, 0xb7, 0x75, 0x1b, 0x3f, 0xa4, 0xf0, 0x4b, 0x71, 0xbf, 0x86, 0x33, 0xc3, 0x21, 0x87, 0x32, 0x60, 0xa7, 0x0f, 0x7e, 0x5a, 0xcd, 0x99, 0xf3, 0xfb, 0xdd, 0x73, 0xcf, 0x3d, 0xf7, 0x9c, 0x73, 0xef, 0x70, 0xe1, 0x6b, 0x17, 0xe0, 0x54, 0xc3, 0xb2, 0x1a, 0x4d, 0xbc, 0xd8, 0xb6, 0x2d, 0xd7, 0xda, 0xef, 0xd4, 0x17, 0x6b, 0xd8, 0xd1, 0x6d, 0xa3, 0xed, 0x5a, 0xf6, 0x02, 0x95, 0xa1, 0x09, 0xa6, 0xb1, 0x20, 0x34, 0xe6, 0x36, 0x61, 0xf2, 0x92, 0xd1, 0xc4, 0xab, 0x9e, 0x62, 0x15, 0xbb, 0xe8, 0x02, 0xa4, 0xea, 0x46, 0x13, 0x17, 0xa5, 0x53, 0xc9, 0xf9, 0xdc, 0xd2, 0xed, 0x0b, 0x21, 0xd0, 0x42, 0x10, 0xb1, 0x43, 0xc4, 0x0a, 0x45, 0xcc, 0xbd, 0x9d, 0x82, 0xa9, 0x88, 0xb7, 0x08, 0x41, 0xca, 0xd4, 0x5a, 0x84, 0x51, 0x9a, 0xcf, 0x2a, 0xf4, 0x6f, 0x54, 0x84, 0xb1, 0xb6, 0xa6, 0x5f, 0xd5, 0x1a, 0xb8, 0x98, 0xa0, 0x62, 0xf1, 0x88, 0x66, 0x01, 0x6a, 0xb8, 0x8d, 0xcd, 0x1a, 0x36, 0xf5, 0xc3, 0x62, 0xf2, 0x54, 0x72, 0x3e, 0xab, 0xf8, 0x24, 0xe8, 0x6e, 0x98, 0x6c, 0x77, 0xf6, 0x9b, 0x86, 0xae, 0xfa, 0xd4, 0xe0, 0x54, 0x72, 0x3e, 0xad, 0xc8, 0xec, 0xc5, 0x6a, 0x57, 0xf9, 0x4e, 0x98, 0x78, 0x1e, 0x6b, 0x57, 0xfd, 0xaa, 0x39, 0xaa, 0x5a, 0x20, 0x62, 0x9f, 0xe2, 0x0a, 0xe4, 0x5b, 0xd8, 0x71, 0xb4, 0x06, 0x56, 0xdd, 0xc3, 0x36, 0x2e, 0xa6, 0xe8, 0xec, 0x4f, 0xf5, 0xcc, 0x3e, 0x3c, 0xf3, 0x1c, 0x47, 0xed, 0x1e, 0xb6, 0x31, 0x2a, 0x43, 0x16, 0x9b, 0x9d, 0x16, 0x63, 0x48, 0xf7, 0xf1, 0x5f, 0xc5, 0xec, 0xb4, 0xc2, 0x2c, 0x19, 0x02, 0xe3, 0x14, 0x63, 0x0e, 0xb6, 0xaf, 0x19, 0x3a, 0x2e, 0x8e, 0x52, 0x82, 0x3b, 0x7b, 0x08, 0xaa, 0xec, 0x7d, 0x98, 0x43, 0xe0, 0xd0, 0x0a, 0x64, 0xf1, 0x0b, 0x2e, 0x36, 0x1d, 0xc3, 0x32, 0x8b, 0x63, 0x94, 0xe4, 0x33, 0x11, 0xab, 0x88, 0x9b, 0xb5, 0x30, 0x45, 0x17, 0x87, 0xce, 0xc3, 0x98, 0xd5, 0x76, 0x0d, 0xcb, 0x74, 0x8a, 0x99, 0x53, 0xd2, 0x7c, 0x6e, 0xe9, 0xd3, 0x91, 0x81, 0xb0, 0xcd, 0x74, 0x14, 0xa1, 0x8c, 0xd6, 0x41, 0x76, 0xac, 0x8e, 0xad, 0x63, 0x55, 0xb7, 0x6a, 0x58, 0x35, 0xcc, 0xba, 0x55, 0xcc, 0x52, 0x82, 0x93, 0xbd, 0x13, 0xa1, 0x8a, 0x2b, 0x56, 0x0d, 0xaf, 0x9b, 0x75, 0x4b, 0x29, 0x38, 0x81, 0x67, 0x74, 0x02, 0x46, 0x9d, 0x43, 0xd3, 0xd5, 0x5e, 0x28, 0xe6, 0x69, 0x84, 0xf0, 0xa7, 0xb9, 0xbf, 0x19, 0x85, 0x89, 0x61, 0x42, 0xec, 0x22, 0xa4, 0xeb, 0x64, 0x96, 0xc5, 0xc4, 0x71, 0x7c, 0xc0, 0x30, 0x41, 0x27, 0x8e, 0x7e, 0x48, 0x27, 0x96, 0x21, 0x67, 0x62, 0xc7, 0xc5, 0x35, 0x16, 0x11, 0xc9, 0x21, 0x63, 0x0a, 0x18, 0xa8, 0x37, 0xa4, 0x52, 0x1f, 0x2a, 0xa4, 0xae, 0xc0, 0x84, 0x67, 0x92, 0x6a, 0x6b, 0x66, 0x43, 0xc4, 0xe6, 0x62, 0x9c, 0x25, 0x0b, 0x15, 0x81, 0x53, 0x08, 0x4c, 0x29, 0xe0, 0xc0, 0x33, 0x5a, 0x05, 0xb0, 0x4c, 0x6c, 0xd5, 0xd5, 0x1a, 0xd6, 0x9b, 0xc5, 0x4c, 0x1f, 0x2f, 0x6d, 0x13, 0x95, 0x1e, 0x2f, 0x59, 0x4c, 0xaa, 0x37, 0xd1, 0x43, 0xdd, 0x50, 0x1b, 0xeb, 0x13, 0x29, 0x9b, 0x6c, 0x93, 0xf5, 0x44, 0xdb, 0x1e, 0x14, 0x6c, 0x4c, 0xe2, 0x1e, 0xd7, 0xf8, 0xcc, 0xb2, 0xd4, 0x88, 0x85, 0xd8, 0x99, 0x29, 0x1c, 0xc6, 0x26, 0x36, 0x6e, 0xfb, 0x1f, 0xd1, 0x6d, 0xe0, 0x09, 0x54, 0x1a, 0x56, 0x40, 0xb3, 0x50, 0x5e, 0x08, 0xb7, 0xb4, 0x16, 0x9e, 0x79, 0x11, 0x0a, 0x41, 0xf7, 0xa0, 0x69, 0x48, 0x3b, 0xae, 0x66, 0xbb, 0x34, 0x0a, 0xd3, 0x0a, 0x7b, 0x40, 0x32, 0x24, 0xb1, 0x59, 0xa3, 0x59, 0x2e, 0xad, 0x90, 0x3f, 0xd1, 0xff, 0xeb, 0x4e, 0x38, 0x49, 0x27, 0x7c, 0x47, 0xef, 0x8a, 0x06, 0x98, 0xc3, 0xf3, 0x9e, 0x79, 0x10, 0xc6, 0x03, 0x13, 0x18, 0x76, 0xe8, 0xb9, 0x9f, 0x85, 0x9b, 0x22, 0xa9, 0xd1, 0x15, 0x98, 0xee, 0x98, 0x86, 0xe9, 0x62, 0xbb, 0x6d, 0x63, 0x12, 0xb1, 0x6c, 0xa8, 0xe2, 0x3f, 0x8f, 0xf5, 0x89, 0xb9, 0x3d, 0xbf, 0x36, 0x63, 0x51, 0xa6, 0x3a, 0xbd, 0xc2, 0x33, 0xd9, 0xcc, 0x3b, 0x63, 0xf2, 0xf5, 0xeb, 0xd7, 0xaf, 0x27, 0xe6, 0x5e, 0x1e, 0x85, 0xe9, 0xa8, 0x3d, 0x13, 0xb9, 0x7d, 0x4f, 0xc0, 0xa8, 0xd9, 0x69, 0xed, 0x63, 0x9b, 0x3a, 0x29, 0xad, 0xf0, 0x27, 0x54, 0x86, 0x74, 0x53, 0xdb, 0xc7, 0xcd, 0x62, 0xea, 0x94, 0x34, 0x5f, 0x58, 0xba, 0x7b, 0xa8, 0x5d, 0xb9, 0xb0, 0x41, 0x20, 0x0a, 0x43, 0xa2, 0x47, 0x20, 0xc5, 0x53, 0x34, 0x61, 0x38, 0x33, 0x1c, 0x03, 0xd9, 0x4b, 0x0a, 0xc5, 0xa1, 0x4f, 0x41, 0x96, 0xfc, 0xcb, 0x62, 0x63, 0x94, 0xda, 0x9c, 0x21, 0x02, 0x12, 0x17, 0x68, 0x06, 0x32, 0x74, 0x9b, 0xd4, 0xb0, 0x28, 0x6d, 0xde, 0x33, 0x09, 0xac, 0x1a, 0xae, 0x6b, 0x9d, 0xa6, 0xab, 0x5e, 0xd3, 0x9a, 0x1d, 0x4c, 0x03, 0x3e, 0xab, 0xe4, 0xb9, 0xf0, 0x09, 0x22, 0x43, 0x27, 0x21, 0xc7, 0x76, 0x95, 0x61, 0xd6, 0xf0, 0x0b, 0x34, 0x7b, 0xa6, 0x15, 0xb6, 0xd1, 0xd6, 0x89, 0x84, 0x0c, 0xff, 0xac, 0x63, 0x99, 0x22, 0x34, 0xe9, 0x10, 0x44, 0x40, 0x87, 0x7f, 0x30, 0x9c, 0xb8, 0x6f, 0x8d, 0x9e, 0x5e, 0x38, 0xa6, 0xe6, 0xbe, 0x95, 0x80, 0x14, 0xcd, 0x17, 0x13, 0x90, 0xdb, 0x7d, 0x6a, 0xa7, 0xa2, 0xae, 0x6e, 0xef, 0x2d, 0x6f, 0x54, 0x64, 0x09, 0x15, 0x00, 0xa8, 0xe0, 0xd2, 0xc6, 0x76, 0x79, 0x57, 0x4e, 0x78, 0xcf, 0xeb, 0x5b, 0xbb, 0xe7, 0xcf, 0xca, 0x49, 0x0f, 0xb0, 0xc7, 0x04, 0x29, 0xbf, 0xc2, 0x03, 0x4b, 0x72, 0x1a, 0xc9, 0x90, 0x67, 0x04, 0xeb, 0x57, 0x2a, 0xab, 0xe7, 0xcf, 0xca, 0xa3, 0x41, 0xc9, 0x03, 0x4b, 0xf2, 0x18, 0x1a, 0x87, 0x2c, 0x95, 0x2c, 0x6f, 0x6f, 0x6f, 0xc8, 0x19, 0x8f, 0xb3, 0xba, 0xab, 0xac, 0x6f, 0xad, 0xc9, 0x59, 0x8f, 0x73, 0x4d, 0xd9, 0xde, 0xdb, 0x91, 0xc1, 0x63, 0xd8, 0xac, 0x54, 0xab, 0xe5, 0xb5, 0x8a, 0x9c, 0xf3, 0x34, 0x96, 0x9f, 0xda, 0xad, 0x54, 0xe5, 0x7c, 0xc0, 0xac, 0x07, 0x96, 0xe4, 0x71, 0x6f, 0x88, 0xca, 0xd6, 0xde, 0xa6, 0x5c, 0x40, 0x93, 0x30, 0xce, 0x86, 0x10, 0x46, 0x4c, 0x84, 0x44, 0xe7, 0xcf, 0xca, 0x72, 0xd7, 0x10, 0xc6, 0x32, 0x19, 0x10, 0x9c, 0x3f, 0x2b, 0xa3, 0xb9, 0x15, 0x48, 0xd3, 0xe8, 0x42, 0x08, 0x0a, 0x1b, 0xe5, 0xe5, 0xca, 0x86, 0xba, 0xbd, 0xb3, 0xbb, 0xbe, 0xbd, 0x55, 0xde, 0x90, 0xa5, 0xae, 0x4c, 0xa9, 0x7c, 0x6e, 0x6f, 0x5d, 0xa9, 0xac, 0xca, 0x09, 0xbf, 0x6c, 0xa7, 0x52, 0xde, 0xad, 0xac, 0xca, 0xc9, 0x39, 0x1d, 0xa6, 0xa3, 0xf2, 0x64, 0xe4, 0xce, 0xf0, 0x2d, 0x71, 0xa2, 0xcf, 0x12, 0x53, 0xae, 0x9e, 0x25, 0xfe, 0xb2, 0x04, 0x53, 0x11, 0xb5, 0x22, 0x72, 0x90, 0x47, 0x21, 0xcd, 0x42, 0x94, 0x55, 0xcf, 0xbb, 0x22, 0x8b, 0x0e, 0x0d, 0xd8, 0x9e, 0x0a, 0x4a, 0x71, 0xfe, 0x0e, 0x22, 0xd9, 0xa7, 0x83, 0x20, 0x14, 0x3d, 0x46, 0xbe, 0x24, 0x41, 0xb1, 0x1f, 0x77, 0x4c, 0xa2, 0x48, 0x04, 0x12, 0xc5, 0xc5, 0xb0, 0x01, 0xa7, 0xfb, 0xcf, 0xa1, 0xc7, 0x8a, 0xd7, 0x25, 0x38, 0x11, 0xdd, 0x68, 0x45, 0xda, 0xf0, 0x08, 0x8c, 0xb6, 0xb0, 0x7b, 0x60, 0x89, 0x66, 0xe3, 0x8e, 0x88, 0x12, 0x46, 0x5e, 0x87, 0x7d, 0xc5, 0x51, 0xfe, 0x1a, 0x98, 0xec, 0xd7, 0x2d, 0x31, 0x6b, 0x7a, 0x2c, 0xfd, 0x7c, 0x02, 0x6e, 0x8a, 0x24, 0x8f, 0x34, 0xf4, 0x56, 0x00, 0xc3, 0x6c, 0x77, 0x5c, 0xd6, 0x50, 0xb0, 0xfc, 0x94, 0xa5, 0x12, 0xba, 0xf7, 0x49, 0xee, 0xe9, 0xb8, 0xde, 0xfb, 0x24, 0x7d, 0x0f, 0x4c, 0x44, 0x15, 0x2e, 0x74, 0x0d, 0x4d, 0x51, 0x43, 0x67, 0xfb, 0xcc, 0xb4, 0xa7, 0x56, 0xdf, 0x07, 0xb2, 0xde, 0x34, 0xb0, 0xe9, 0xaa, 0x8e, 0x6b, 0x63, 0xad, 0x65, 0x98, 0x0d, 0x9a, 0x80, 0x33, 0xa5, 0x74, 0x5d, 0x6b, 0x3a, 0x58, 0x99, 0x60, 0xaf, 0xab, 0xe2, 0x2d, 0x41, 0xd0, 0x1a, 0x67, 0xfb, 0x10, 0xa3, 0x01, 0x04, 0x7b, 0xed, 0x21, 0xe6, 0xbe, 0x99, 0x81, 0x9c, 0xaf, 0x2d, 0x45, 0xa7, 0x21, 0xff, 0xac, 0x76, 0x4d, 0x53, 0xc5, 0x51, 0x83, 0x79, 0x22, 0x47, 0x64, 0x3b, 0xfc, 0xb8, 0x71, 0x1f, 0x4c, 0x53, 0x15, 0xab, 0xe3, 0x62, 0x5b, 0xd5, 0x9b, 0x9a, 0xe3, 0x50, 0xa7, 0x65, 0xa8, 0x2a, 0x22, 0xef, 0xb6, 0xc9, 0xab, 0x15, 0xf1, 0x06, 0x9d, 0x83, 0x29, 0x8a, 0x68, 0x75, 0x9a, 0xae, 0xd1, 0x6e, 0x62, 0x95, 0x1c, 0x7e, 0x1c, 0x9a, 0x88, 0x3d, 0xcb, 0x26, 0x89, 0xc6, 0x26, 0x57, 0x20, 0x16, 0x39, 0x68, 0x15, 0x6e, 0xa5, 0xb0, 0x06, 0x36, 0xb1, 0xad, 0xb9, 0x58, 0xc5, 0xcf, 0x75, 0xb4, 0xa6, 0xa3, 0x6a, 0x66, 0x4d, 0x3d, 0xd0, 0x9c, 0x83, 0xe2, 0x34, 0x21, 0x58, 0x4e, 0x14, 0x25, 0xe5, 0x16, 0xa2, 0xb8, 0xc6, 0xf5, 0x2a, 0x54, 0xad, 0x6c, 0xd6, 0x2e, 0x6b, 0xce, 0x01, 0x2a, 0xc1, 0x09, 0xca, 0xe2, 0xb8, 0xb6, 0x61, 0x36, 0x54, 0xfd, 0x00, 0xeb, 0x57, 0xd5, 0x8e, 0x5b, 0xbf, 0x50, 0xfc, 0x94, 0x7f, 0x7c, 0x6a, 0x61, 0x95, 0xea, 0xac, 0x10, 0x95, 0x3d, 0xb7, 0x7e, 0x01, 0x55, 0x21, 0x4f, 0x16, 0xa3, 0x65, 0xbc, 0x88, 0xd5, 0xba, 0x65, 0xd3, 0xca, 0x52, 0x88, 0xd8, 0xd9, 0x3e, 0x0f, 0x2e, 0x6c, 0x73, 0xc0, 0xa6, 0x55, 0xc3, 0xa5, 0x74, 0x75, 0xa7, 0x52, 0x59, 0x55, 0x72, 0x82, 0xe5, 0x92, 0x65, 0x93, 0x80, 0x6a, 0x58, 0x9e, 0x83, 0x73, 0x2c, 0xa0, 0x1a, 0x96, 0x70, 0xef, 0x39, 0x98, 0xd2, 0x75, 0x36, 0x67, 0x43, 0x57, 0xf9, 0x11, 0xc5, 0x29, 0xca, 0x01, 0x67, 0xe9, 0xfa, 0x1a, 0x53, 0xe0, 0x31, 0xee, 0xa0, 0x87, 0xe0, 0xa6, 0xae, 0xb3, 0xfc, 0xc0, 0xc9, 0x9e, 0x59, 0x86, 0xa1, 0xe7, 0x60, 0xaa, 0x7d, 0xd8, 0x0b, 0x44, 0x81, 0x11, 0xdb, 0x87, 0x61, 0xd8, 0x83, 0x30, 0xdd, 0x3e, 0x68, 0xf7, 0xe2, 0xa6, 0xfc, 0x38, 0xd4, 0x3e, 0x68, 0x87, 0x81, 0x9f, 0xa1, 0xe7, 0x55, 0x1b, 0xeb, 0x9a, 0x8b, 0x6b, 0xc5, 0x9b, 0xfd, 0xea, 0xbe, 0x17, 0x68, 0x11, 0x64, 0x5d, 0x57, 0xb1, 0xa9, 0xed, 0x37, 0xb1, 0xaa, 0xd9, 0xd8, 0xd4, 0x9c, 0xe2, 0x49, 0xbf, 0x72, 0x41, 0xd7, 0x2b, 0xf4, 0x6d, 0x99, 0xbe, 0x44, 0x67, 0x60, 0xd2, 0xda, 0x7f, 0x56, 0x67, 0x21, 0xa9, 0xb6, 0x6d, 0x5c, 0x37, 0x5e, 0x28, 0xde, 0x4e, 0xfd, 0x3b, 0x41, 0x5e, 0xd0, 0x80, 0xdc, 0xa1, 0x62, 0x74, 0x17, 0xc8, 0xba, 0x73, 0xa0, 0xd9, 0x6d, 0xda, 0x13, 0x38, 0x6d, 0x4d, 0xc7, 0xc5, 0xcf, 0x30, 0x55, 0x26, 0xdf, 0x12, 0x62, 0xb2, 0x25, 0x9c, 0xe7, 0x8d, 0xba, 0x2b, 0x18, 0xef, 0x64, 0x5b, 0x82, 0xca, 0x38, 0xdb, 0x3c, 0xc8, 0xc4, 0x15, 0x81, 0x81, 0xe7, 0xa9, 0x5a, 0xa1, 0x7d, 0xd0, 0xf6, 0x8f, 0x7b, 0x1b, 0x8c, 0x13, 0xcd, 0xee, 0xa0, 0x77, 0xb1, 0x7e, 0xa6, 0x7d, 0xe0, 0x1b, 0xf1, 0x23, 0x6b, 0x2d, 0xe7, 0x4a, 0x90, 0xf7, 0xc7, 0x27, 0xca, 0x02, 0x8b, 0x50, 0x59, 0x22, 0xb5, 0x7e, 0x65, 0x7b, 0x95, 0x54, 0xe9, 0xa7, 0x2b, 0x72, 0x82, 0x74, 0x0b, 0x1b, 0xeb, 0xbb, 0x15, 0x55, 0xd9, 0xdb, 0xda, 0x5d, 0xdf, 0xac, 0xc8, 0x49, 0x7f, 0x5b, 0xfa, 0xdd, 0x04, 0x14, 0x82, 0x27, 0x0c, 0xf4, 0x59, 0xb8, 0x59, 0x5c, 0x07, 0x38, 0xd8, 0x55, 0x9f, 0x37, 0x6c, 0xba, 0x65, 0x5a, 0x1a, 0xeb, 0xb0, 0xbd, 0x45, 0x9b, 0xe6, 0x5a, 0x55, 0xec, 0x3e, 0x69, 0xd8, 0x64, 0x43, 0xb4, 0x34, 0x17, 0x6d, 0xc0, 0x49, 0xd3, 0x52, 0x1d, 0x57, 0x33, 0x6b, 0x9a, 0x5d, 0x53, 0xbb, 0x17, 0x31, 0xaa, 0xa6, 0xeb, 0xd8, 0x71, 0x2c, 0x56, 0xaa, 0x3c, 0x96, 0x4f, 0x9b, 0x56, 0x95, 0x2b, 0x77, 0x73, 0x78, 0x99, 0xab, 0x86, 0x02, 0x2c, 0xd9, 0x2f, 0xc0, 0x3e, 0x05, 0xd9, 0x96, 0xd6, 0x56, 0xb1, 0xe9, 0xda, 0x87, 0xb4, 0xaf, 0xcc, 0x28, 0x99, 0x96, 0xd6, 0xae, 0x90, 0xe7, 0x8f, 0xa7, 0xbd, 0xff, 0x51, 0x12, 0xf2, 0xfe, 0xde, 0x92, 0xb4, 0xea, 0x3a, 0xad, 0x23, 0x12, 0xcd, 0x34, 0xb7, 0x0d, 0xec, 0x44, 0x17, 0x56, 0x48, 0x81, 0x29, 0x8d, 0xb2, 0x8e, 0x4f, 0x61, 0x48, 0x52, 0xdc, 0x49, 0x6e, 0xc1, 0xec, 0x14, 0x93, 0x51, 0xf8, 0x13, 0x5a, 0x83, 0xd1, 0x67, 0x1d, 0xca, 0x3d, 0x4a, 0xb9, 0x6f, 0x1f, 0xcc, 0xfd, 0x58, 0x95, 0x92, 0x67, 0x1f, 0xab, 0xaa, 0x5b, 0xdb, 0xca, 0x66, 0x79, 0x43, 0xe1, 0x70, 0x74, 0x0b, 0xa4, 0x9a, 0xda, 0x8b, 0x87, 0xc1, 0x52, 0x44, 0x45, 0xc3, 0x3a, 0xfe, 0x16, 0x48, 0x3d, 0x8f, 0xb5, 0xab, 0xc1, 0x02, 0x40, 0x45, 0x1f, 0x61, 0xe8, 0x2f, 0x42, 0x9a, 0xfa, 0x0b, 0x01, 0x70, 0x8f, 0xc9, 0x23, 0x28, 0x03, 0xa9, 0x95, 0x6d, 0x85, 0x84, 0xbf, 0x0c, 0x79, 0x26, 0x55, 0x77, 0xd6, 0x2b, 0x2b, 0x15, 0x39, 0x31, 0x77, 0x0e, 0x46, 0x99, 0x13, 0xc8, 0xd6, 0xf0, 0xdc, 0x20, 0x8f, 0xf0, 0x47, 0xce, 0x21, 0x89, 0xb7, 0x7b, 0x9b, 0xcb, 0x15, 0x45, 0x4e, 0xf8, 0x97, 0xd7, 0x81, 0xbc, 0xbf, 0xad, 0xfc, 0x78, 0x62, 0xea, 0x6f, 0x25, 0xc8, 0xf9, 0xda, 0x44, 0xd2, 0xa0, 0x68, 0xcd, 0xa6, 0xf5, 0xbc, 0xaa, 0x35, 0x0d, 0xcd, 0xe1, 0x41, 0x01, 0x54, 0x54, 0x26, 0x92, 0x61, 0x17, 0xed, 0x63, 0x31, 0xfe, 0x35, 0x09, 0xe4, 0x70, 0x8b, 0x19, 0x32, 0x50, 0xfa, 0xa9, 0x1a, 0xf8, 0xaa, 0x04, 0x85, 0x60, 0x5f, 0x19, 0x32, 0xef, 0xf4, 0x4f, 0xd5, 0xbc, 0xb7, 0x12, 0x30, 0x1e, 0xe8, 0x26, 0x87, 0xb5, 0xee, 0x39, 0x98, 0x34, 0x6a, 0xb8, 0xd5, 0xb6, 0x5c, 0x6c, 0xea, 0x87, 0x6a, 0x13, 0x5f, 0xc3, 0xcd, 0xe2, 0x1c, 0x4d, 0x14, 0x8b, 0x83, 0xfb, 0xd5, 0x85, 0xf5, 0x2e, 0x6e, 0x83, 0xc0, 0x4a, 0x53, 0xeb, 0xab, 0x95, 0xcd, 0x9d, 0xed, 0xdd, 0xca, 0xd6, 0xca, 0x53, 0xea, 0xde, 0xd6, 0xe3, 0x5b, 0xdb, 0x4f, 0x6e, 0x29, 0xb2, 0x11, 0x52, 0xfb, 0x08, 0xb7, 0xfa, 0x0e, 0xc8, 0x61, 0xa3, 0xd0, 0xcd, 0x10, 0x65, 0x96, 0x3c, 0x82, 0xa6, 0x60, 0x62, 0x6b, 0x5b, 0xad, 0xae, 0xaf, 0x56, 0xd4, 0xca, 0xa5, 0x4b, 0x95, 0x95, 0xdd, 0x2a, 0x3b, 0xc0, 0x7b, 0xda, 0xbb, 0xc1, 0x4d, 0xfd, 0x4a, 0x12, 0xa6, 0x22, 0x2c, 0x41, 0x65, 0x7e, 0x76, 0x60, 0xc7, 0x99, 0x7b, 0x87, 0xb1, 0x7e, 0x81, 0x94, 0xfc, 0x1d, 0xcd, 0x76, 0xf9, 0x51, 0xe3, 0x2e, 0x20, 0x5e, 0x32, 0x5d, 0xa3, 0x6e, 0x60, 0x9b, 0xdf, 0x77, 0xb0, 0x03, 0xc5, 0x44, 0x57, 0xce, 0xae, 0x3c, 0xee, 0x01, 0xd4, 0xb6, 0x1c, 0xc3, 0x35, 0xae, 0x61, 0xd5, 0x30, 0xc5, 0xe5, 0x08, 0x39, 0x60, 0xa4, 0x14, 0x59, 0xbc, 0x59, 0x37, 0x5d, 0x4f, 0xdb, 0xc4, 0x0d, 0x2d, 0xa4, 0x4d, 0x12, 0x78, 0x52, 0x91, 0xc5, 0x1b, 0x4f, 0xfb, 0x34, 0xe4, 0x6b, 0x56, 0x87, 0x74, 0x5d, 0x4c, 0x8f, 0xd4, 0x0b, 0x49, 0xc9, 0x31, 0x99, 0xa7, 0xc2, 0xfb, 0xe9, 0xee, 0xad, 0x4c, 0x5e, 0xc9, 0x31, 0x19, 0x53, 0xb9, 0x13, 0x26, 0xb4, 0x46, 0xc3, 0x26, 0xe4, 0x82, 0x88, 0x9d, 0x10, 0x0a, 0x9e, 0x98, 0x2a, 0xce, 0x3c, 0x06, 0x19, 0xe1, 0x07, 0x52, 0x92, 0x89, 0x27, 0xd4, 0x36, 0xbb, 0x99, 0x4b, 0xcc, 0x67, 0x95, 0x8c, 0x29, 0x5e, 0x9e, 0x86, 0xbc, 0xe1, 0xa8, 0xdd, 0x4b, 0xe6, 0xc4, 0xa9, 0xc4, 0x7c, 0x46, 0xc9, 0x19, 0x8e, 0x77, 0x41, 0x37, 0xf7, 0x7a, 0x02, 0x0a, 0xc1, 0x4b, 0x72, 0xb4, 0x0a, 0x99, 0xa6, 0xa5, 0x6b, 0x34, 0xb4, 0xd8, 0x17, 0x9a, 0xf9, 0x98, 0x7b, 0xf5, 0x85, 0x0d, 0xae, 0xaf, 0x78, 0xc8, 0x99, 0x7f, 0x94, 0x20, 0x23, 0xc4, 0xe8, 0x04, 0xa4, 0xda, 0x9a, 0x7b, 0x40, 0xe9, 0xd2, 0xcb, 0x09, 0x59, 0x52, 0xe8, 0x33, 0x91, 0x3b, 0x6d, 0xcd, 0xa4, 0x21, 0xc0, 0xe5, 0xe4, 0x99, 0xac, 0x6b, 0x13, 0x6b, 0x35, 0x7a, 0xfc, 0xb0, 0x5a, 0x2d, 0x6c, 0xba, 0x8e, 0x58, 0x57, 0x2e, 0x5f, 0xe1, 0x62, 0x74, 0x37, 0x4c, 0xba, 0xb6, 0x66, 0x34, 0x03, 0xba, 0x29, 0xaa, 0x2b, 0x8b, 0x17, 0x9e, 0x72, 0x09, 0x6e, 0x11, 0xbc, 0x35, 0xec, 0x6a, 0xfa, 0x01, 0xae, 0x75, 0x41, 0xa3, 0xf4, 0x06, 0xf6, 0x66, 0xae, 0xb0, 0xca, 0xdf, 0x0b, 0xec, 0xdc, 0xf7, 0x25, 0x98, 0x14, 0x07, 0xa6, 0x9a, 0xe7, 0xac, 0x4d, 0x00, 0xcd, 0x34, 0x2d, 0xd7, 0xef, 0xae, 0xde, 0x50, 0xee, 0xc1, 0x2d, 0x94, 0x3d, 0x90, 0xe2, 0x23, 0x98, 0x69, 0x01, 0x74, 0xdf, 0xf4, 0x75, 0xdb, 0x49, 0xc8, 0xf1, 0x2f, 0x20, 0xf4, 0x33, 0x1a, 0x3b, 0x62, 0x03, 0x13, 0x91, 0x93, 0x15, 0x9a, 0x86, 0xf4, 0x3e, 0x6e, 0x18, 0x26, 0xbf, 0xd7, 0x64, 0x0f, 0xe2, 0xae, 0x36, 0xe5, 0xdd, 0xd5, 0x2e, 0x5f, 0x81, 0x29, 0xdd, 0x6a, 0x85, 0xcd, 0x5d, 0x96, 0x43, 0xc7, 0x7c, 0xe7, 0xb2, 0xf4, 0x34, 0x74, 0x5b, 0xcc, 0x2f, 0x27, 0x92, 0x6b, 0x3b, 0xcb, 0x5f, 0x4d, 0xcc, 0xac, 0x31, 0xdc, 0x8e, 0x98, 0xa6, 0x82, 0xeb, 0x4d, 0xac, 0x13, 0xd3, 0xe1, 0xc7, 0x77, 0xc0, 0xbd, 0x0d, 0xc3, 0x3d, 0xe8, 0xec, 0x2f, 0xe8, 0x56, 0x6b, 0xb1, 0x61, 0x35, 0xac, 0xee, 0x67, 0x43, 0xf2, 0x44, 0x1f, 0xe8, 0x5f, 0xfc, 0xd3, 0x61, 0xd6, 0x93, 0xce, 0xc4, 0x7e, 0x67, 0x2c, 0x6d, 0xc1, 0x14, 0x57, 0x56, 0xe9, 0xb7, 0x0b, 0x76, 0x84, 0x40, 0x03, 0xef, 0x7f, 0x8a, 0xdf, 0x78, 0x9b, 0xd6, 0x6a, 0x65, 0x92, 0x43, 0xc9, 0x3b, 0x76, 0xca, 0x28, 0x29, 0x70, 0x53, 0x80, 0x8f, 0xed, 0x4b, 0x6c, 0xc7, 0x30, 0x7e, 0x97, 0x33, 0x4e, 0xf9, 0x18, 0xab, 0x1c, 0x5a, 0x5a, 0x81, 0xf1, 0xe3, 0x70, 0xfd, 0x1d, 0xe7, 0xca, 0x63, 0x3f, 0xc9, 0x1a, 0x4c, 0x50, 0x12, 0xbd, 0xe3, 0xb8, 0x56, 0x8b, 0x26, 0xbd, 0xc1, 0x34, 0x7f, 0xff, 0x36, 0xdb, 0x28, 0x05, 0x02, 0x5b, 0xf1, 0x50, 0xa5, 0x12, 0xd0, 0xcf, 0x35, 0x35, 0xac, 0x37, 0x63, 0x18, 0xde, 0xe0, 0x86, 0x78, 0xfa, 0xa5, 0x27, 0x60, 0x9a, 0xfc, 0x4d, 0x73, 0x92, 0xdf, 0x92, 0xf8, 0xdb, 0xae, 0xe2, 0xf7, 0x5f, 0x62, 0x7b, 0x71, 0xca, 0x23, 0xf0, 0xd9, 0xe4, 0x5b, 0xc5, 0x06, 0x76, 0x5d, 0x6c, 0x3b, 0xaa, 0xd6, 0x8c, 0x32, 0xcf, 0x77, 0x5d, 0x50, 0xfc, 0xc2, 0xbb, 0xc1, 0x55, 0x5c, 0x63, 0xc8, 0x72, 0xb3, 0x59, 0xda, 0x83, 0x9b, 0x23, 0xa2, 0x62, 0x08, 0xce, 0x57, 0x38, 0xe7, 0x74, 0x4f, 0x64, 0x10, 0xda, 0x1d, 0x10, 0x72, 0x6f, 0x2d, 0x87, 0xe0, 0xfc, 0x3d, 0xce, 0x89, 0x38, 0x56, 0x2c, 0x29, 0x61, 0x7c, 0x0c, 0x26, 0xaf, 0x61, 0x7b, 0xdf, 0x72, 0xf8, 0x15, 0xcd, 0x10, 0x74, 0xaf, 0x72, 0xba, 0x09, 0x0e, 0xa4, 0x77, 0x36, 0x84, 0xeb, 0x21, 0xc8, 0xd4, 0x35, 0x1d, 0x0f, 0x41, 0xf1, 0x45, 0x4e, 0x31, 0x46, 0xf4, 0x09, 0xb4, 0x0c, 0xf9, 0x86, 0xc5, 0xcb, 0x52, 0x3c, 0xfc, 0x35, 0x0e, 0xcf, 0x09, 0x0c, 0xa7, 0x68, 0x5b, 0xed, 0x4e, 0x93, 0xd4, 0xac, 0x78, 0x8a, 0xdf, 0x17, 0x14, 0x02, 0xc3, 0x29, 0x8e, 0xe1, 0xd6, 0x3f, 0x10, 0x14, 0x8e, 0xcf, 0x9f, 0x8f, 0x42, 0xce, 0x32, 0x9b, 0x87, 0x96, 0x39, 0x8c, 0x11, 0x5f, 0xe2, 0x0c, 0xc0, 0x21, 0x84, 0xe0, 0x22, 0x64, 0x87, 0x5d, 0x88, 0x3f, 0x7c, 0x57, 0x6c, 0x0f, 0xb1, 0x02, 0x6b, 0x30, 0x21, 0x12, 0x94, 0x61, 0x99, 0x43, 0x50, 0xfc, 0x11, 0xa7, 0x28, 0xf8, 0x60, 0x7c, 0x1a, 0x2e, 0x76, 0xdc, 0x06, 0x1e, 0x86, 0xe4, 0x75, 0x31, 0x0d, 0x0e, 0xe1, 0xae, 0xdc, 0xc7, 0xa6, 0x7e, 0x30, 0x1c, 0xc3, 0x57, 0x84, 0x2b, 0x05, 0x86, 0x50, 0xac, 0xc0, 0x78, 0x4b, 0xb3, 0x9d, 0x03, 0xad, 0x39, 0xd4, 0x72, 0xfc, 0x31, 0xe7, 0xc8, 0x7b, 0x20, 0xee, 0x91, 0x8e, 0x79, 0x1c, 0x9a, 0xaf, 0x0a, 0x8f, 0xf8, 0x60, 0x7c, 0xeb, 0x39, 0x2e, 0xbd, 0xcf, 0x3a, 0x0e, 0xdb, 0xd7, 0xc4, 0xd6, 0x63, 0xd8, 0x4d, 0x3f, 0xe3, 0x45, 0xc8, 0x3a, 0xc6, 0x8b, 0x43, 0xd1, 0xfc, 0x89, 0x58, 0x69, 0x0a, 0x20, 0xe0, 0xa7, 0xe0, 0x96, 0xc8, 0x32, 0x31, 0x04, 0xd9, 0x9f, 0x72, 0xb2, 0x13, 0x11, 0xa5, 0x82, 0xa7, 0x84, 0xe3, 0x52, 0xfe, 0x99, 0x48, 0x09, 0x38, 0xc4, 0xb5, 0x43, 0x0e, 0x0a, 0x8e, 0x56, 0x3f, 0x9e, 0xd7, 0xfe, 0x5c, 0x78, 0x8d, 0x61, 0x03, 0x5e, 0xdb, 0x85, 0x13, 0x9c, 0xf1, 0x78, 0xeb, 0xfa, 0x75, 0x91, 0x58, 0x19, 0x7a, 0x2f, 0xb8, 0xba, 0xff, 0x1f, 0x66, 0x3c, 0x77, 0x8a, 0x8e, 0xd4, 0x51, 0x5b, 0x5a, 0x7b, 0x08, 0xe6, 0x6f, 0x70, 0x66, 0x91, 0xf1, 0xbd, 0x96, 0xd6, 0xd9, 0xd4, 0xda, 0x84, 0xfc, 0x0a, 0x14, 0x05, 0x79, 0xc7, 0xb4, 0xb1, 0x6e, 0x35, 0x4c, 0xe3, 0x45, 0x5c, 0x1b, 0x82, 0xfa, 0x2f, 0x42, 0x4b, 0xb5, 0xe7, 0x83, 0x13, 0xe6, 0x75, 0x90, 0xbd, 0x5e, 0x45, 0x35, 0x5a, 0x6d, 0xcb, 0x76, 0x63, 0x18, 0xbf, 0x29, 0x56, 0xca, 0xc3, 0xad, 0x53, 0x58, 0xa9, 0x02, 0x05, 0xfa, 0x38, 0x6c, 0x48, 0xfe, 0x25, 0x27, 0x1a, 0xef, 0xa2, 0x78, 0xe2, 0xd0, 0xad, 0x56, 0x5b, 0xb3, 0x87, 0xc9, 0x7f, 0x7f, 0x25, 0x12, 0x07, 0x87, 0xf0, 0xc4, 0xe1, 0x1e, 0xb6, 0x31, 0xa9, 0xf6, 0x43, 0x30, 0x7c, 0x4b, 0x24, 0x0e, 0x81, 0xe1, 0x14, 0xa2, 0x61, 0x18, 0x82, 0xe2, 0xaf, 0x05, 0x85, 0xc0, 0x10, 0x8a, 0xcf, 0x75, 0x0b, 0xad, 0x8d, 0x1b, 0x86, 0xe3, 0xda, 0xac, 0x0f, 0x1e, 0x4c, 0xf5, 0xed, 0x77, 0x83, 0x4d, 0x98, 0xe2, 0x83, 0x96, 0x1e, 0x83, 0x89, 0x50, 0x8b, 0x81, 0xe2, 0x7e, 0xfb, 0x51, 0xfc, 0xf9, 0xf7, 0x79, 0x32, 0x0a, 0x76, 0x18, 0xa5, 0x0d, 0xb2, 0xee, 0xc1, 0x3e, 0x20, 0x9e, 0xec, 0xa5, 0xf7, 0xbd, 0xa5, 0x0f, 0xb4, 0x01, 0xa5, 0x4b, 0x30, 0x1e, 0xe8, 0x01, 0xe2, 0xa9, 0x7e, 0x81, 0x53, 0xe5, 0xfd, 0x2d, 0x40, 0xe9, 0x1c, 0xa4, 0x48, 0x3d, 0x8f, 0x87, 0xff, 0x22, 0x87, 0x53, 0xf5, 0xd2, 0xc3, 0x90, 0x11, 0x75, 0x3c, 0x1e, 0xfa, 0x4b, 0x1c, 0xea, 0x41, 0x08, 0x5c, 0xd4, 0xf0, 0x78, 0xf8, 0x2f, 0x0b, 0xb8, 0x80, 0x10, 0xf8, 0xf0, 0x2e, 0xfc, 0xce, 0xaf, 0xa4, 0x78, 0x1e, 0x16, 0xbe, 0xbb, 0x08, 0x63, 0xbc, 0x78, 0xc7, 0xa3, 0x3f, 0xcf, 0x07, 0x17, 0x88, 0xd2, 0x83, 0x90, 0x1e, 0xd2, 0xe1, 0xbf, 0xca, 0xa1, 0x4c, 0xbf, 0xb4, 0x02, 0x39, 0x5f, 0xc1, 0x8e, 0x87, 0xff, 0x1a, 0x87, 0xfb, 0x51, 0xc4, 0x74, 0x5e, 0xb0, 0xe3, 0x09, 0x7e, 0x5d, 0x98, 0xce, 0x11, 0xc4, 0x6d, 0xa2, 0x56, 0xc7, 0xa3, 0x7f, 0x43, 0x78, 0x5d, 0x40, 0x4a, 0x8f, 0x42, 0xd6, 0xcb, 0xbf, 0xf1, 0xf8, 0xdf, 0xe4, 0xf8, 0x2e, 0x86, 0x78, 0xc0, 0x97, 0xff, 0xe3, 0x29, 0x7e, 0x4b, 0x78, 0xc0, 0x87, 0x22, 0xdb, 0x28, 0x5c, 0xd3, 0xe3, 0x99, 0x7e, 0x5b, 0x6c, 0xa3, 0x50, 0x49, 0x27, 0xab, 0x49, 0xd3, 0x60, 0x3c, 0xc5, 0xef, 0x88, 0xd5, 0xa4, 0xfa, 0xc4, 0x8c, 0x70, 0x91, 0x8c, 0xe7, 0xf8, 0x5d, 0x61, 0x46, 0xa8, 0x46, 0x96, 0x76, 0x00, 0xf5, 0x16, 0xc8, 0x78, 0xbe, 0x97, 0x39, 0xdf, 0x64, 0x4f, 0x7d, 0x2c, 0x3d, 0x09, 0x27, 0xa2, 0x8b, 0x63, 0x3c, 0xeb, 0x17, 0xde, 0x0f, 0x1d, 0x67, 0xfc, 0xb5, 0xb1, 0xb4, 0xdb, 0xcd, 0xb2, 0xfe, 0xc2, 0x18, 0x4f, 0xfb, 0xca, 0xfb, 0xc1, 0x44, 0xeb, 0xaf, 0x8b, 0xa5, 0x32, 0x40, 0xb7, 0x26, 0xc5, 0x73, 0xbd, 0xca, 0xb9, 0x7c, 0x20, 0xb2, 0x35, 0x78, 0x49, 0x8a, 0xc7, 0x7f, 0x51, 0x6c, 0x0d, 0x8e, 0x20, 0x5b, 0x43, 0x54, 0xa3, 0x78, 0xf4, 0x6b, 0x62, 0x6b, 0x08, 0x48, 0xe9, 0x22, 0x64, 0xcc, 0x4e, 0xb3, 0x49, 0x62, 0x0b, 0x0d, 0xfe, 0x39, 0x53, 0xf1, 0x5f, 0x3e, 0xe0, 0x60, 0x01, 0x28, 0x9d, 0x83, 0x34, 0x6e, 0xed, 0xe3, 0x5a, 0x1c, 0xf2, 0x5f, 0x3f, 0x10, 0xf9, 0x84, 0x68, 0x97, 0x1e, 0x05, 0x60, 0x87, 0x69, 0xfa, 0x95, 0x28, 0x06, 0xfb, 0x6f, 0x1f, 0xf0, 0x5f, 0x4a, 0x74, 0x21, 0x5d, 0x02, 0xf6, 0xbb, 0x8b, 0xc1, 0x04, 0xef, 0x06, 0x09, 0xe8, 0x01, 0xfc, 0x21, 0x18, 0x7b, 0xd6, 0xb1, 0x4c, 0x57, 0x6b, 0xc4, 0xa1, 0xff, 0x9d, 0xa3, 0x85, 0x3e, 0x71, 0x58, 0xcb, 0xb2, 0xb1, 0xab, 0x35, 0x9c, 0x38, 0xec, 0x7f, 0x70, 0xac, 0x07, 0x20, 0x60, 0x5d, 0x73, 0xdc, 0x61, 0xe6, 0xfd, 0x9f, 0x02, 0x2c, 0x00, 0xc4, 0x68, 0xf2, 0xf7, 0x55, 0x7c, 0x18, 0x87, 0x7d, 0x4f, 0x18, 0xcd, 0xf5, 0x4b, 0x0f, 0x43, 0x96, 0xfc, 0xc9, 0x7e, 0x3d, 0x14, 0x03, 0xfe, 0x2f, 0x0e, 0xee, 0x22, 0xc8, 0xc8, 0x8e, 0x5b, 0x73, 0x8d, 0x78, 0x67, 0xff, 0x37, 0x5f, 0x69, 0xa1, 0x5f, 0x2a, 0x43, 0xce, 0x71, 0x6b, 0xb5, 0x0e, 0xef, 0x68, 0x62, 0xe0, 0x3f, 0xfe, 0xc0, 0x3b, 0xe4, 0x7a, 0x98, 0xe5, 0xd3, 0xd1, 0x97, 0x75, 0xb0, 0x66, 0xad, 0x59, 0xec, 0x9a, 0x0e, 0xfe, 0xe7, 0x5e, 0xb8, 0x4d, 0xb7, 0x5a, 0xfb, 0x96, 0xb3, 0xe8, 0x4b, 0x43, 0x8b, 0x2d, 0xad, 0xed, 0x50, 0xfd, 0x25, 0x7e, 0xd7, 0x96, 0xe3, 0x4f, 0xe4, 0xc5, 0xcc, 0xf1, 0xee, 0xe9, 0xe6, 0x6e, 0x85, 0xf1, 0x4b, 0x4d, 0x4b, 0x73, 0x0d, 0xb3, 0xb1, 0x63, 0x19, 0xa6, 0x8b, 0xf2, 0x20, 0xd5, 0xe9, 0x47, 0x26, 0x49, 0x91, 0xea, 0x73, 0xff, 0x90, 0x86, 0x2c, 0xbb, 0xe2, 0xd9, 0xd4, 0xda, 0xe8, 0xe7, 0x20, 0xbf, 0xc5, 0x77, 0xc9, 0xfd, 0x4b, 0x17, 0x1c, 0xef, 0x3e, 0xd9, 0x37, 0xfe, 0x82, 0xa7, 0xbd, 0xe0, 0x57, 0xa5, 0x1f, 0x95, 0x97, 0xef, 0xfb, 0xe1, 0x9b, 0x27, 0xef, 0xe9, 0x6b, 0x1f, 0x29, 0x8b, 0x8b, 0x2c, 0x9c, 0x17, 0xf6, 0x0c, 0xd3, 0xbd, 0x7f, 0xe9, 0x82, 0x12, 0x18, 0x0f, 0x5d, 0x83, 0x0c, 0x7f, 0xe1, 0xf0, 0xef, 0x0c, 0xb7, 0xf7, 0x19, 0x5b, 0xa8, 0xb1, 0x71, 0xcf, 0xbe, 0xf1, 0xe6, 0xc9, 0x91, 0x63, 0x8f, 0xed, 0x8d, 0x85, 0x9e, 0x83, 0x9c, 0xb0, 0x63, 0xbd, 0xe6, 0xf0, 0x9f, 0x65, 0xdf, 0x19, 0x33, 0xed, 0xf5, 0x1a, 0x1f, 0xfd, 0x8e, 0x1f, 0xbe, 0x79, 0x72, 0x6e, 0xe0, 0xc8, 0x0b, 0x7b, 0x1d, 0xa3, 0xa6, 0xf8, 0xc7, 0x40, 0xcf, 0x40, 0x92, 0x0c, 0xc5, 0x7e, 0xc0, 0x7d, 0xb2, 0xcf, 0x50, 0xde, 0x10, 0x67, 0xf8, 0x04, 0x87, 0x19, 0x86, 0xf0, 0xce, 0x3c, 0x0a, 0x93, 0x3d, 0xcb, 0x83, 0x64, 0x48, 0x5e, 0xc5, 0x87, 0xfc, 0x37, 0x4f, 0xe4, 0x4f, 0x34, 0xdd, 0xfd, 0x4d, 0x9f, 0x34, 0x9f, 0xe7, 0x3f, 0xd4, 0x2b, 0x25, 0x2e, 0x48, 0x33, 0x17, 0x61, 0x3c, 0xe0, 0xe3, 0x63, 0x81, 0x1f, 0x01, 0x39, 0xec, 0xa5, 0x63, 0xe1, 0xcf, 0x43, 0xe6, 0xc3, 0xe0, 0xe6, 0x7e, 0x80, 0x60, 0xac, 0xdc, 0x6c, 0x6e, 0x6a, 0x6d, 0x07, 0x3d, 0x05, 0x93, 0xac, 0x79, 0xdf, 0xb5, 0x56, 0xe9, 0x97, 0x9d, 0x4d, 0xad, 0xcd, 0x03, 0xfa, 0xee, 0x80, 0xbb, 0x39, 0x60, 0xa1, 0x47, 0x9b, 0x8e, 0xaf, 0xf4, 0xb2, 0xa0, 0x27, 0x40, 0x16, 0x42, 0xba, 0xb7, 0x08, 0x33, 0x0b, 0xd7, 0x33, 0x03, 0x99, 0x85, 0x32, 0x23, 0xee, 0xe1, 0x40, 0x8f, 0x40, 0x66, 0xdd, 0x74, 0x1f, 0x58, 0x22, 0x7c, 0x2c, 0x06, 0xe7, 0x22, 0xf9, 0x84, 0x12, 0xe3, 0xf1, 0x30, 0x1c, 0x7f, 0xfe, 0x2c, 0xc1, 0xa7, 0x06, 0xe3, 0xa9, 0x52, 0x17, 0x4f, 0x1f, 0x51, 0x19, 0xb2, 0x64, 0xcd, 0x99, 0x01, 0xec, 0x7f, 0x04, 0xdc, 0x16, 0x49, 0xe0, 0x69, 0x31, 0x86, 0x2e, 0x4a, 0x50, 0x30, 0x1b, 0x46, 0x63, 0x28, 0x7c, 0x46, 0x74, 0x51, 0x84, 0xa2, 0xea, 0x59, 0x31, 0x36, 0x80, 0xa2, 0x1a, 0xb2, 0xa2, 0xea, 0xb7, 0xa2, 0xea, 0x59, 0x91, 0x89, 0xa1, 0xf0, 0x5b, 0xe1, 0x3d, 0xa3, 0x55, 0x80, 0x4b, 0xc6, 0x0b, 0xb8, 0xc6, 0xcc, 0xc8, 0x46, 0x24, 0x23, 0xc1, 0xd1, 0x55, 0x63, 0x24, 0x3e, 0x1c, 0x5a, 0x83, 0x5c, 0xb5, 0xde, 0xa5, 0x01, 0xfe, 0x1f, 0x22, 0x22, 0x4d, 0xa9, 0x87, 0x78, 0xfc, 0x48, 0xcf, 0x1c, 0x36, 0xa5, 0x5c, 0x9c, 0x39, 0xbe, 0x39, 0xf9, 0x70, 0x5d, 0x73, 0x18, 0x4d, 0x3e, 0xd6, 0x1c, 0x1f, 0x8f, 0x1f, 0x89, 0x2e, 0xc2, 0xd8, 0xb2, 0x65, 0x11, 0xcd, 0xe2, 0x38, 0x25, 0x39, 0x1d, 0x49, 0xc2, 0x75, 0x18, 0x81, 0x40, 0xd0, 0xd5, 0xa1, 0xa1, 0x4f, 0xe0, 0x85, 0x41, 0xab, 0x23, 0xb4, 0xc4, 0xea, 0x88, 0x67, 0xff, 0x0e, 0x5c, 0x3e, 0x74, 0x31, 0x69, 0x94, 0x8b, 0x13, 0x43, 0xec, 0x40, 0xa1, 0x1c, 0xda, 0x81, 0x42, 0x8c, 0xaa, 0x30, 0x21, 0x64, 0x15, 0xb3, 0x43, 0x72, 0x70, 0x51, 0xe6, 0xbf, 0x76, 0x1e, 0x44, 0xcb, 0x75, 0x19, 0x6b, 0x98, 0x01, 0xed, 0x40, 0x41, 0x88, 0x36, 0x1d, 0x3a, 0xe9, 0xc9, 0x88, 0xba, 0x1a, 0xe6, 0x64, 0xaa, 0x8c, 0x32, 0x84, 0x9f, 0x59, 0x85, 0x13, 0xd1, 0xd9, 0x2a, 0x2e, 0x5b, 0x4a, 0xfe, 0x2c, 0xbb, 0x02, 0x37, 0x45, 0x66, 0xa6, 0x38, 0x92, 0x44, 0xa8, 0x4e, 0x04, 0xd2, 0x91, 0x1f, 0x9c, 0x8e, 0x00, 0xa7, 0x7b, 0xc1, 0xdd, 0x20, 0xf3, 0x83, 0x93, 0x11, 0xe0, 0xa4, 0x1f, 0xfc, 0x59, 0x28, 0x04, 0xf3, 0x90, 0x1f, 0x3d, 0x1e, 0x81, 0x1e, 0x8f, 0x40, 0x47, 0x8f, 0x9d, 0x8a, 0x40, 0xa7, 0x42, 0xe8, 0x6a, 0xdf, 0xb1, 0x27, 0x23, 0xd0, 0x93, 0x11, 0xe8, 0xe8, 0xb1, 0x51, 0x04, 0x1a, 0xf9, 0xd1, 0x0f, 0xc3, 0x44, 0x28, 0xe5, 0xf8, 0xe1, 0x63, 0x11, 0xf0, 0xb1, 0x50, 0x6d, 0x0e, 0xa7, 0x1a, 0x3f, 0x7e, 0x22, 0x02, 0x3f, 0x11, 0x35, 0x7c, 0xb4, 0xf5, 0xa3, 0x11, 0xf0, 0xd1, 0xc8, 0xe1, 0xa3, 0xf1, 0x72, 0x04, 0x5e, 0xf6, 0xe3, 0x4b, 0x90, 0xf7, 0x67, 0x15, 0x3f, 0x36, 0x13, 0x81, 0xcd, 0x84, 0xfd, 0x1e, 0x48, 0x29, 0x71, 0x91, 0x9e, 0xed, 0xb3, 0x5d, 0x02, 0x69, 0xe4, 0x58, 0x9d, 0xcd, 0x15, 0x98, 0x8e, 0x4a, 0x1a, 0x11, 0x1c, 0x67, 0xfc, 0x1c, 0x85, 0xa5, 0xe9, 0x40, 0xb2, 0xa0, 0xb8, 0x4e, 0xcb, 0xcf, 0xfc, 0x0c, 0x4c, 0x45, 0xa4, 0x8e, 0x08, 0xe2, 0xfb, 0xfc, 0xc4, 0xb9, 0xa5, 0x99, 0x00, 0x71, 0xe0, 0xac, 0xe0, 0x6f, 0xad, 0x7e, 0x34, 0x05, 0x05, 0x9e, 0xa2, 0xb6, 0xed, 0x1a, 0xb6, 0x71, 0x0d, 0xfd, 0x4c, 0xff, 0x0e, 0x6b, 0x29, 0x2a, 0xb5, 0x71, 0xdc, 0x31, 0x1a, 0xad, 0x67, 0xfa, 0x36, 0x5a, 0xf7, 0x0f, 0x33, 0x40, 0x5c, 0xbf, 0x55, 0xe9, 0xe9, 0xb7, 0xee, 0x1a, 0x44, 0xdb, 0xaf, 0xed, 0xaa, 0xf4, 0xb4, 0x5d, 0x71, 0x34, 0x91, 0xdd, 0xd7, 0xe5, 0xde, 0xee, 0xeb, 0xcc, 0x20, 0x9e, 0xfe, 0x4d, 0xd8, 0xe5, 0xde, 0x26, 0x2c, 0x96, 0x29, 0xba, 0x17, 0xbb, 0xdc, 0xdb, 0x8b, 0x0d, 0x64, 0xea, 0xdf, 0x92, 0x5d, 0xee, 0x6d, 0xc9, 0x62, 0x99, 0xa2, 0x3b, 0xb3, 0xc7, 0x23, 0x3a, 0xb3, 0xbb, 0x07, 0x51, 0x0d, 0x6a, 0xd0, 0xb6, 0xa2, 0x1a, 0xb4, 0x7b, 0x06, 0x1a, 0x36, 0xb0, 0x4f, 0x7b, 0x3c, 0xa2, 0x4f, 0x8b, 0x37, 0xae, 0x4f, 0xbb, 0xb6, 0x15, 0xd5, 0xae, 0x0d, 0x61, 0x5c, 0xbf, 0xae, 0x6d, 0x39, 0xdc, 0xb5, 0xcd, 0x0f, 0xe2, 0x8a, 0x6e, 0xde, 0x2e, 0xf7, 0x36, 0x6f, 0x67, 0xe2, 0xf7, 0x62, 0x54, 0x0f, 0xf7, 0x4c, 0xdf, 0x1e, 0x6e, 0xa8, 0xcd, 0x1d, 0xd7, 0xca, 0x3d, 0xdd, 0xaf, 0x95, 0xbb, 0x6f, 0x18, 0xf6, 0xc1, 0x1d, 0xdd, 0x93, 0x7d, 0x3a, 0xba, 0xc5, 0x61, 0xa8, 0x3f, 0x69, 0xec, 0x3e, 0x69, 0xec, 0x3e, 0x69, 0xec, 0x3e, 0x69, 0xec, 0xfe, 0x6f, 0x34, 0x76, 0xa5, 0xd4, 0xcb, 0x5f, 0x3a, 0x29, 0x9d, 0x39, 0x0d, 0x63, 0x7c, 0x68, 0x34, 0x0a, 0x89, 0xcd, 0xb2, 0x3c, 0x42, 0xff, 0x5d, 0x96, 0x25, 0xfa, 0xef, 0x8a, 0x9c, 0x58, 0xde, 0x78, 0xe3, 0xc6, 0xec, 0xc8, 0xf7, 0x6e, 0xcc, 0x8e, 0xfc, 0xe0, 0xc6, 0xec, 0xc8, 0x5b, 0x37, 0x66, 0xa5, 0x77, 0x6e, 0xcc, 0x4a, 0xef, 0xdd, 0x98, 0x95, 0x7e, 0x72, 0x63, 0x56, 0xba, 0x7e, 0x34, 0x2b, 0x7d, 0xe5, 0x68, 0x56, 0xfa, 0xfa, 0xd1, 0xac, 0xf4, 0xed, 0xa3, 0x59, 0xe9, 0x3b, 0x47, 0xb3, 0xd2, 0x1b, 0x47, 0xb3, 0x23, 0xdf, 0x3b, 0x9a, 0x95, 0xde, 0x3a, 0x9a, 0x95, 0xde, 0x39, 0x9a, 0x1d, 0x79, 0xef, 0x68, 0x56, 0xfa, 0xc9, 0xd1, 0xec, 0xc8, 0xf5, 0x7f, 0x9a, 0x1d, 0xf9, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x77, 0x3d, 0x5b, 0xeb, 0xa0, 0x46, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x MapEnum) String() string { s, ok := MapEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *FloatingPoint) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FloatingPoint") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FloatingPoint but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FloatingPoint but is not nil && this == nil") } if this.F != nil && that1.F != nil { if *this.F != *that1.F { return fmt.Errorf("F this(%v) Not Equal that(%v)", *this.F, *that1.F) } } else if this.F != nil { return fmt.Errorf("this.F == nil && that.F != nil") } else if that1.F != nil { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *FloatingPoint) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.F != nil && that1.F != nil { if *this.F != *that1.F { return false } } else if this.F != nil { return false } else if that1.F != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomMap) if !ok { that2, ok := that.(CustomMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomMap but is not nil && this == nil") } if len(this.Nullable128S) != len(that1.Nullable128S) { return fmt.Errorf("Nullable128S this(%v) Not Equal that(%v)", len(this.Nullable128S), len(that1.Nullable128S)) } for i := range this.Nullable128S { if !this.Nullable128S[i].Equal(*that1.Nullable128S[i]) { //nullable return fmt.Errorf("Nullable128S this[%v](%v) Not Equal that[%v](%v)", i, this.Nullable128S[i], i, that1.Nullable128S[i]) } } if len(this.Uint128S) != len(that1.Uint128S) { return fmt.Errorf("Uint128S this(%v) Not Equal that(%v)", len(this.Uint128S), len(that1.Uint128S)) } for i := range this.Uint128S { if !this.Uint128S[i].Equal(that1.Uint128S[i]) { //not nullable return fmt.Errorf("Uint128S this[%v](%v) Not Equal that[%v](%v)", i, this.Uint128S[i], i, that1.Uint128S[i]) } } if len(this.NullableIds) != len(that1.NullableIds) { return fmt.Errorf("NullableIds this(%v) Not Equal that(%v)", len(this.NullableIds), len(that1.NullableIds)) } for i := range this.NullableIds { if !this.NullableIds[i].Equal(*that1.NullableIds[i]) { //nullable return fmt.Errorf("NullableIds this[%v](%v) Not Equal that[%v](%v)", i, this.NullableIds[i], i, that1.NullableIds[i]) } } if len(this.Ids) != len(that1.Ids) { return fmt.Errorf("Ids this(%v) Not Equal that(%v)", len(this.Ids), len(that1.Ids)) } for i := range this.Ids { if !this.Ids[i].Equal(that1.Ids[i]) { //not nullable return fmt.Errorf("Ids this[%v](%v) Not Equal that[%v](%v)", i, this.Ids[i], i, that1.Ids[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomMap) if !ok { that2, ok := that.(CustomMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Nullable128S) != len(that1.Nullable128S) { return false } for i := range this.Nullable128S { if !this.Nullable128S[i].Equal(*that1.Nullable128S[i]) { //nullable return false } } if len(this.Uint128S) != len(that1.Uint128S) { return false } for i := range this.Uint128S { if !this.Uint128S[i].Equal(that1.Uint128S[i]) { //not nullable return false } } if len(this.NullableIds) != len(that1.NullableIds) { return false } for i := range this.NullableIds { if !this.NullableIds[i].Equal(*that1.NullableIds[i]) { //nullable return false } } if len(this.Ids) != len(that1.Ids) { return false } for i := range this.Ids { if !this.Ids[i].Equal(that1.Ids[i]) { //not nullable return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllMaps) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMaps") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMaps but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMaps but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllMaps) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllMapsOrdered) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMapsOrdered") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMapsOrdered but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMapsOrdered but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllMapsOrdered) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type FloatingPointFace interface { Proto() github_com_gogo_protobuf_proto.Message GetF() *float64 } func (this *FloatingPoint) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *FloatingPoint) TestProto() github_com_gogo_protobuf_proto.Message { return NewFloatingPointFromFace(this) } func (this *FloatingPoint) GetF() *float64 { return this.F } func NewFloatingPointFromFace(that FloatingPointFace) *FloatingPoint { this := &FloatingPoint{} this.F = that.GetF() return this } type CustomMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNullable128S() map[string]*github_com_gogo_protobuf_test_custom.Uint128 GetUint128S() map[string]github_com_gogo_protobuf_test_custom.Uint128 GetNullableIds() map[string]*github_com_gogo_protobuf_test.Uuid GetIds() map[string]github_com_gogo_protobuf_test.Uuid } func (this *CustomMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomMapFromFace(this) } func (this *CustomMap) GetNullable128S() map[string]*github_com_gogo_protobuf_test_custom.Uint128 { return this.Nullable128S } func (this *CustomMap) GetUint128S() map[string]github_com_gogo_protobuf_test_custom.Uint128 { return this.Uint128S } func (this *CustomMap) GetNullableIds() map[string]*github_com_gogo_protobuf_test.Uuid { return this.NullableIds } func (this *CustomMap) GetIds() map[string]github_com_gogo_protobuf_test.Uuid { return this.Ids } func NewCustomMapFromFace(that CustomMapFace) *CustomMap { this := &CustomMap{} this.Nullable128S = that.GetNullable128S() this.Uint128S = that.GetUint128S() this.NullableIds = that.GetNullableIds() this.Ids = that.GetIds() return this } type AllMapsFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMaps) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMaps) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsFromFace(this) } func (this *AllMaps) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMaps) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMaps) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMaps) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMaps) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMaps) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMaps) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMaps) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMaps) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMaps) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMaps) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMaps) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMaps) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMaps) GetStringMap() map[string]string { return this.StringMap } func (this *AllMaps) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMaps) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMaps) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsFromFace(that AllMapsFace) *AllMaps { this := &AllMaps{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type AllMapsOrderedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMapsOrdered) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMapsOrdered) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsOrderedFromFace(this) } func (this *AllMapsOrdered) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMapsOrdered) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMapsOrdered) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMapsOrdered) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMapsOrdered) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMapsOrdered) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMapsOrdered) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMapsOrdered) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMapsOrdered) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMapsOrdered) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMapsOrdered) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMapsOrdered) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMapsOrdered) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMapsOrdered) GetStringMap() map[string]string { return this.StringMap } func (this *AllMapsOrdered) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMapsOrdered) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMapsOrdered) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsOrderedFromFace(that AllMapsOrderedFace) *AllMapsOrdered { this := &AllMapsOrdered{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } func (this *FloatingPoint) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&proto2_maps.FloatingPoint{") if this.F != nil { s = append(s, "F: "+valueToGoStringMapsproto2(this.F, "float64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&proto2_maps.CustomMap{") keysForNullable128S := make([]string, 0, len(this.Nullable128S)) for k := range this.Nullable128S { keysForNullable128S = append(keysForNullable128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullable128S) mapStringForNullable128S := "map[string]*github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForNullable128S { mapStringForNullable128S += fmt.Sprintf("%#v: %#v,", k, this.Nullable128S[k]) } mapStringForNullable128S += "}" if this.Nullable128S != nil { s = append(s, "Nullable128S: "+mapStringForNullable128S+",\n") } keysForUint128S := make([]string, 0, len(this.Uint128S)) for k := range this.Uint128S { keysForUint128S = append(keysForUint128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForUint128S) mapStringForUint128S := "map[string]github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForUint128S { mapStringForUint128S += fmt.Sprintf("%#v: %#v,", k, this.Uint128S[k]) } mapStringForUint128S += "}" if this.Uint128S != nil { s = append(s, "Uint128S: "+mapStringForUint128S+",\n") } keysForNullableIds := make([]string, 0, len(this.NullableIds)) for k := range this.NullableIds { keysForNullableIds = append(keysForNullableIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullableIds) mapStringForNullableIds := "map[string]*github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForNullableIds { mapStringForNullableIds += fmt.Sprintf("%#v: %#v,", k, this.NullableIds[k]) } mapStringForNullableIds += "}" if this.NullableIds != nil { s = append(s, "NullableIds: "+mapStringForNullableIds+",\n") } keysForIds := make([]string, 0, len(this.Ids)) for k := range this.Ids { keysForIds = append(keysForIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForIds) mapStringForIds := "map[string]github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForIds { mapStringForIds += fmt.Sprintf("%#v: %#v,", k, this.Ids[k]) } mapStringForIds += "}" if this.Ids != nil { s = append(s, "Ids: "+mapStringForIds+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMaps) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&proto2_maps.AllMaps{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMapsOrdered) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&proto2_maps.AllMapsOrdered{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringMapsproto2(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedFloatingPoint(r randyMapsproto2, easy bool) *FloatingPoint { this := &FloatingPoint{} if r.Intn(10) != 0 { v1 := float64(r.Float64()) if r.Intn(2) == 0 { v1 *= -1 } this.F = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 2) } return this } func NewPopulatedCustomMap(r randyMapsproto2, easy bool) *CustomMap { this := &CustomMap{} if r.Intn(10) != 0 { v2 := r.Intn(10) this.Nullable128S = make(map[string]*github_com_gogo_protobuf_test_custom.Uint128) for i := 0; i < v2; i++ { this.Nullable128S[randStringMapsproto2(r)] = (*github_com_gogo_protobuf_test_custom.Uint128)(github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r)) } } if r.Intn(10) != 0 { v3 := r.Intn(10) this.Uint128S = make(map[string]github_com_gogo_protobuf_test_custom.Uint128) for i := 0; i < v3; i++ { this.Uint128S[randStringMapsproto2(r)] = (github_com_gogo_protobuf_test_custom.Uint128)(*github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r)) } } if r.Intn(10) != 0 { v4 := r.Intn(10) this.NullableIds = make(map[string]*github_com_gogo_protobuf_test.Uuid) for i := 0; i < v4; i++ { this.NullableIds[randStringMapsproto2(r)] = (*github_com_gogo_protobuf_test.Uuid)(github_com_gogo_protobuf_test.NewPopulatedUuid(r)) } } if r.Intn(10) != 0 { v5 := r.Intn(10) this.Ids = make(map[string]github_com_gogo_protobuf_test.Uuid) for i := 0; i < v5; i++ { this.Ids[randStringMapsproto2(r)] = (github_com_gogo_protobuf_test.Uuid)(*github_com_gogo_protobuf_test.NewPopulatedUuid(r)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 5) } return this } func NewPopulatedAllMaps(r randyMapsproto2, easy bool) *AllMaps { this := &AllMaps{} if r.Intn(10) != 0 { v6 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v6; i++ { v7 := randStringMapsproto2(r) this.StringToDoubleMap[v7] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v7] *= -1 } } } if r.Intn(10) != 0 { v8 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v8; i++ { v9 := randStringMapsproto2(r) this.StringToFloatMap[v9] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v9] *= -1 } } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v10; i++ { v11 := int32(r.Int31()) this.Int32Map[v11] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v11] *= -1 } } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v12; i++ { v13 := int64(r.Int63()) this.Int64Map[v13] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v13] *= -1 } } } if r.Intn(10) != 0 { v14 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v14; i++ { v15 := uint32(r.Uint32()) this.Uint32Map[v15] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v16 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v16; i++ { v17 := uint64(uint64(r.Uint32())) this.Uint64Map[v17] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v18; i++ { v19 := int32(r.Int31()) this.Sint32Map[v19] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v19] *= -1 } } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v20; i++ { v21 := int64(r.Int63()) this.Sint64Map[v21] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v21] *= -1 } } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v22; i++ { v23 := uint32(r.Uint32()) this.Fixed32Map[v23] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v24; i++ { v25 := int32(r.Int31()) this.Sfixed32Map[v25] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v25] *= -1 } } } if r.Intn(10) != 0 { v26 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v26; i++ { v27 := uint64(uint64(r.Uint32())) this.Fixed64Map[v27] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v28 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v28; i++ { v29 := int64(r.Int63()) this.Sfixed64Map[v29] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v29] *= -1 } } } if r.Intn(10) != 0 { v30 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v30; i++ { v31 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v31] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v32 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v32; i++ { this.StringMap[randStringMapsproto2(r)] = randStringMapsproto2(r) } } if r.Intn(10) != 0 { v33 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v33; i++ { v34 := r.Intn(100) v35 := randStringMapsproto2(r) this.StringToBytesMap[v35] = make([]byte, v34) for i := 0; i < v34; i++ { this.StringToBytesMap[v35][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v36; i++ { this.StringToEnumMap[randStringMapsproto2(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v37 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v37; i++ { this.StringToMsgMap[randStringMapsproto2(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 18) } return this } func NewPopulatedAllMapsOrdered(r randyMapsproto2, easy bool) *AllMapsOrdered { this := &AllMapsOrdered{} if r.Intn(10) != 0 { v38 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v38; i++ { v39 := randStringMapsproto2(r) this.StringToDoubleMap[v39] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v39] *= -1 } } } if r.Intn(10) != 0 { v40 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v40; i++ { v41 := randStringMapsproto2(r) this.StringToFloatMap[v41] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v41] *= -1 } } } if r.Intn(10) != 0 { v42 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v42; i++ { v43 := int32(r.Int31()) this.Int32Map[v43] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v43] *= -1 } } } if r.Intn(10) != 0 { v44 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v44; i++ { v45 := int64(r.Int63()) this.Int64Map[v45] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v45] *= -1 } } } if r.Intn(10) != 0 { v46 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v46; i++ { v47 := uint32(r.Uint32()) this.Uint32Map[v47] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v48 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v48; i++ { v49 := uint64(uint64(r.Uint32())) this.Uint64Map[v49] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v50 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v50; i++ { v51 := int32(r.Int31()) this.Sint32Map[v51] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v51] *= -1 } } } if r.Intn(10) != 0 { v52 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v52; i++ { v53 := int64(r.Int63()) this.Sint64Map[v53] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v53] *= -1 } } } if r.Intn(10) != 0 { v54 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v54; i++ { v55 := uint32(r.Uint32()) this.Fixed32Map[v55] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v56 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v56; i++ { v57 := int32(r.Int31()) this.Sfixed32Map[v57] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v57] *= -1 } } } if r.Intn(10) != 0 { v58 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v58; i++ { v59 := uint64(uint64(r.Uint32())) this.Fixed64Map[v59] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v60 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v60; i++ { v61 := int64(r.Int63()) this.Sfixed64Map[v61] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v61] *= -1 } } } if r.Intn(10) != 0 { v62 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v62; i++ { v63 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v63] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v64; i++ { this.StringMap[randStringMapsproto2(r)] = randStringMapsproto2(r) } } if r.Intn(10) != 0 { v65 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v65; i++ { v66 := r.Intn(100) v67 := randStringMapsproto2(r) this.StringToBytesMap[v67] = make([]byte, v66) for i := 0; i < v66; i++ { this.StringToBytesMap[v67][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v68; i++ { this.StringToEnumMap[randStringMapsproto2(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v69 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v69; i++ { this.StringToMsgMap[randStringMapsproto2(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMapsproto2(r, 18) } return this } type randyMapsproto2 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneMapsproto2(r randyMapsproto2) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringMapsproto2(r randyMapsproto2) string { v70 := r.Intn(100) tmps := make([]rune, v70) for i := 0; i < v70; i++ { tmps[i] = randUTF8RuneMapsproto2(r) } return string(tmps) } func randUnrecognizedMapsproto2(r randyMapsproto2, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldMapsproto2(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldMapsproto2(dAtA []byte, r randyMapsproto2, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) v71 := r.Int63() if r.Intn(2) == 0 { v71 *= -1 } dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(v71)) case 1: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateMapsproto2(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateMapsproto2(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *FloatingPoint) Size() (n int) { var l int _ = l if m.F != nil { n += 9 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomMap) Size() (n int) { var l int _ = l if len(m.Nullable128S) > 0 { for k, v := range m.Nullable128S { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint128S) > 0 { for k, v := range m.Uint128S { _ = k _ = v l = 0 l = v.Size() l += 1 + sovMapsproto2(uint64(l)) mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.NullableIds) > 0 { for k, v := range m.NullableIds { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Ids) > 0 { for k, v := range m.Ids { _ = k _ = v l = 0 l = v.Size() l += 1 + sovMapsproto2(uint64(l)) mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllMaps) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if v != nil { l = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllMapsOrdered) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovMapsproto2(uint64(k)) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozMapsproto2(uint64(k)) + 1 + sozMapsproto2(uint64(v)) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + len(v) + sovMapsproto2(uint64(len(v))) n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if v != nil { l = 1 + len(v) + sovMapsproto2(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 1 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + 1 + sovMapsproto2(uint64(v)) n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovMapsproto2(uint64(l)) } mapEntrySize := 1 + len(k) + sovMapsproto2(uint64(len(k))) + l n += mapEntrySize + 2 + sovMapsproto2(uint64(mapEntrySize)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovMapsproto2(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozMapsproto2(x uint64) (n int) { return sovMapsproto2(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *FloatingPoint) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FloatingPoint{`, `F:` + valueToStringMapsproto2(this.F) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomMap) String() string { if this == nil { return "nil" } keysForNullable128S := make([]string, 0, len(this.Nullable128S)) for k := range this.Nullable128S { keysForNullable128S = append(keysForNullable128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullable128S) mapStringForNullable128S := "map[string]*github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForNullable128S { mapStringForNullable128S += fmt.Sprintf("%v: %v,", k, this.Nullable128S[k]) } mapStringForNullable128S += "}" keysForUint128S := make([]string, 0, len(this.Uint128S)) for k := range this.Uint128S { keysForUint128S = append(keysForUint128S, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForUint128S) mapStringForUint128S := "map[string]github_com_gogo_protobuf_test_custom.Uint128{" for _, k := range keysForUint128S { mapStringForUint128S += fmt.Sprintf("%v: %v,", k, this.Uint128S[k]) } mapStringForUint128S += "}" keysForNullableIds := make([]string, 0, len(this.NullableIds)) for k := range this.NullableIds { keysForNullableIds = append(keysForNullableIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNullableIds) mapStringForNullableIds := "map[string]*github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForNullableIds { mapStringForNullableIds += fmt.Sprintf("%v: %v,", k, this.NullableIds[k]) } mapStringForNullableIds += "}" keysForIds := make([]string, 0, len(this.Ids)) for k := range this.Ids { keysForIds = append(keysForIds, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForIds) mapStringForIds := "map[string]github_com_gogo_protobuf_test.Uuid{" for _, k := range keysForIds { mapStringForIds += fmt.Sprintf("%v: %v,", k, this.Ids[k]) } mapStringForIds += "}" s := strings.Join([]string{`&CustomMap{`, `Nullable128S:` + mapStringForNullable128S + `,`, `Uint128S:` + mapStringForUint128S + `,`, `NullableIds:` + mapStringForNullableIds + `,`, `Ids:` + mapStringForIds + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllMaps) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMaps{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllMapsOrdered) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMapsOrdered{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringMapsproto2(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *FloatingPoint) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FloatingPoint: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FloatingPoint: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field F", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.F = &v2 default: iNdEx = preIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Nullable128S", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Nullable128S == nil { m.Nullable128S = make(map[string]*github_com_gogo_protobuf_test_custom.Uint128) } var mapkey string var mapvalue1 github_com_gogo_protobuf_test_custom.Uint128 var mapvalue = &mapvalue1 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } if err := mapvalue.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil { return err } iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Nullable128S[mapkey] = ((*github_com_gogo_protobuf_test_custom.Uint128)(mapvalue)) iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint128S", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint128S == nil { m.Uint128S = make(map[string]github_com_gogo_protobuf_test_custom.Uint128) } var mapkey string var mapvalue1 github_com_gogo_protobuf_test_custom.Uint128 var mapvalue = &mapvalue1 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } if err := mapvalue.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil { return err } iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint128S[mapkey] = ((github_com_gogo_protobuf_test_custom.Uint128)(*mapvalue)) iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableIds", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableIds == nil { m.NullableIds = make(map[string]*github_com_gogo_protobuf_test.Uuid) } var mapkey string var mapvalue1 github_com_gogo_protobuf_test.Uuid var mapvalue = &mapvalue1 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } if err := mapvalue.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil { return err } iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableIds[mapkey] = ((*github_com_gogo_protobuf_test.Uuid)(mapvalue)) iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Ids", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Ids == nil { m.Ids = make(map[string]github_com_gogo_protobuf_test.Uuid) } var mapkey string var mapvalue1 github_com_gogo_protobuf_test.Uuid var mapvalue = &mapvalue1 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } if err := mapvalue.Unmarshal(dAtA[iNdEx:postbytesIndex]); err != nil { return err } iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Ids[mapkey] = ((github_com_gogo_protobuf_test.Uuid)(*mapvalue)) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllMaps) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllMaps: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllMaps: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToDoubleMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToDoubleMap == nil { m.StringToDoubleMap = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToDoubleMap[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToFloatMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToFloatMap == nil { m.StringToFloatMap = make(map[string]float32) } var mapkey string var mapvalue float32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 mapvalue = math.Float32frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToFloatMap[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int32Map == nil { m.Int32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int32Map[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int64Map == nil { m.Int64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int64Map[mapkey] = mapvalue iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint32Map == nil { m.Uint32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint32Map[mapkey] = mapvalue iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint64Map == nil { m.Uint64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint64Map[mapkey] = mapvalue iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint32Map == nil { m.Sint32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = int32((uint32(mapkeytemp) >> 1) ^ uint32(((mapkeytemp&1)<<31)>>31)) mapkey = int32(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = int32((uint32(mapvaluetemp) >> 1) ^ uint32(((mapvaluetemp&1)<<31)>>31)) mapvalue = int32(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint32Map[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint64Map == nil { m.Sint64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = (mapvaluetemp >> 1) ^ uint64((int64(mapvaluetemp&1)<<63)>>63) mapvalue = int64(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint64Map[mapkey] = mapvalue iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed32Map == nil { m.Fixed32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed32Map[mapkey] = mapvalue iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed32Map == nil { m.Sfixed32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed32Map[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed64Map == nil { m.Fixed64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed64Map[mapkey] = mapvalue iNdEx = postIndex case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed64Map == nil { m.Sfixed64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed64Map[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BoolMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.BoolMap == nil { m.BoolMap = make(map[bool]bool) } var mapkey bool var mapvalue bool for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapvaluetemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapvalue = bool(mapvaluetemp != 0) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.BoolMap[mapkey] = mapvalue iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringMap == nil { m.StringMap = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringMap[mapkey] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToBytesMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToBytesMap == nil { m.StringToBytesMap = make(map[string][]byte) } var mapkey string mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToBytesMap[mapkey] = mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToEnumMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToEnumMap == nil { m.StringToEnumMap = make(map[string]MapEnum) } var mapkey string var mapvalue MapEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (MapEnum(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToEnumMap[mapkey] = mapvalue iNdEx = postIndex case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToMsgMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToMsgMap == nil { m.StringToMsgMap = make(map[string]*FloatingPoint) } var mapkey string var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthMapsproto2 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthMapsproto2 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToMsgMap[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllMapsOrdered) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllMapsOrdered: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllMapsOrdered: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToDoubleMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToDoubleMap == nil { m.StringToDoubleMap = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToDoubleMap[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToFloatMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToFloatMap == nil { m.StringToFloatMap = make(map[string]float32) } var mapkey string var mapvalue float32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 mapvalue = math.Float32frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToFloatMap[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int32Map == nil { m.Int32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int32Map[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int64Map == nil { m.Int64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int64Map[mapkey] = mapvalue iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint32Map == nil { m.Uint32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint32Map[mapkey] = mapvalue iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint64Map == nil { m.Uint64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint64Map[mapkey] = mapvalue iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint32Map == nil { m.Sint32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = int32((uint32(mapkeytemp) >> 1) ^ uint32(((mapkeytemp&1)<<31)>>31)) mapkey = int32(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = int32((uint32(mapvaluetemp) >> 1) ^ uint32(((mapvaluetemp&1)<<31)>>31)) mapvalue = int32(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint32Map[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint64Map == nil { m.Sint64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = (mapvaluetemp >> 1) ^ uint64((int64(mapvaluetemp&1)<<63)>>63) mapvalue = int64(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint64Map[mapkey] = mapvalue iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed32Map == nil { m.Fixed32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed32Map[mapkey] = mapvalue iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed32Map == nil { m.Sfixed32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed32Map[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed64Map == nil { m.Fixed64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed64Map[mapkey] = mapvalue iNdEx = postIndex case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed64Map == nil { m.Sfixed64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed64Map[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BoolMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.BoolMap == nil { m.BoolMap = make(map[bool]bool) } var mapkey bool var mapvalue bool for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapvaluetemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapvalue = bool(mapvaluetemp != 0) } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.BoolMap[mapkey] = mapvalue iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringMap == nil { m.StringMap = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringMap[mapkey] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToBytesMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToBytesMap == nil { m.StringToBytesMap = make(map[string][]byte) } var mapkey string mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthMapsproto2 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToBytesMap[mapkey] = mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToEnumMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToEnumMap == nil { m.StringToEnumMap = make(map[string]MapEnum) } var mapkey string var mapvalue MapEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (MapEnum(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToEnumMap[mapkey] = mapvalue iNdEx = postIndex case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToMsgMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthMapsproto2 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToMsgMap == nil { m.StringToMsgMap = make(map[string]*FloatingPoint) } var mapkey string var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthMapsproto2 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowMapsproto2 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthMapsproto2 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthMapsproto2 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToMsgMap[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipMapsproto2(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthMapsproto2 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipMapsproto2(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMapsproto2 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMapsproto2 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMapsproto2 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthMapsproto2 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowMapsproto2 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipMapsproto2(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthMapsproto2 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowMapsproto2 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/unmarshaler/mapsproto2.proto", fileDescriptorMapsproto2) } var fileDescriptorMapsproto2 = []byte{ // 1150 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x97, 0xcd, 0x6f, 0x1a, 0x47, 0x18, 0xc6, 0x19, 0xb0, 0x0d, 0x0c, 0xdf, 0x93, 0xb4, 0x42, 0x48, 0x1d, 0x1c, 0xd2, 0x0f, 0x42, 0x52, 0xb0, 0x69, 0x14, 0x59, 0x4e, 0x9b, 0xca, 0xd8, 0x4e, 0xb1, 0x52, 0xdc, 0x08, 0x9a, 0x7e, 0x49, 0x96, 0x0a, 0x66, 0x21, 0xa8, 0xc0, 0x52, 0x76, 0x37, 0xaa, 0x2f, 0x55, 0xfe, 0x8c, 0x5e, 0x7b, 0xeb, 0xb1, 0xc7, 0x1e, 0x7b, 0xb4, 0xd4, 0x4b, 0x8e, 0x51, 0x54, 0x59, 0x61, 0x7b, 0xc9, 0x31, 0xc7, 0x1c, 0xab, 0x9d, 0xdd, 0x85, 0xd9, 0xdd, 0x77, 0x77, 0xa1, 0xa7, 0x1e, 0x7c, 0xc2, 0xb3, 0xbc, 0xcf, 0xef, 0x79, 0x77, 0x77, 0xe6, 0xe5, 0x31, 0xbe, 0x7e, 0x2a, 0x8e, 0x3a, 0xa2, 0x54, 0x51, 0xc6, 0xa3, 0xf6, 0x54, 0x7a, 0xdc, 0x1e, 0x0a, 0xd3, 0xca, 0xa8, 0x3d, 0x91, 0x26, 0x53, 0x51, 0x16, 0xab, 0x65, 0xf6, 0x41, 0x62, 0xc6, 0x4a, 0xfb, 0x22, 0xf7, 0x61, 0x7f, 0x20, 0x3f, 0x56, 0x3a, 0xe5, 0x53, 0x71, 0x54, 0xe9, 0x8b, 0x7d, 0xb1, 0xc2, 0xbe, 0xec, 0x28, 0x3d, 0xb6, 0x62, 0x0b, 0xf6, 0x97, 0xae, 0x2d, 0xbc, 0x83, 0x13, 0xf7, 0x87, 0x62, 0x5b, 0x1e, 0x8c, 0xfb, 0x0f, 0xc5, 0xc1, 0x58, 0x26, 0x71, 0x8c, 0x7a, 0x59, 0xb4, 0x89, 0x8a, 0xa8, 0x89, 0x7a, 0x85, 0xbf, 0xd6, 0x71, 0x74, 0x5f, 0x91, 0x64, 0x71, 0xd4, 0x68, 0x4f, 0xc8, 0xcf, 0x38, 0x7e, 0xac, 0x0c, 0x87, 0xed, 0xce, 0x50, 0xd8, 0xae, 0xee, 0x48, 0x59, 0xb4, 0x19, 0x2a, 0xc6, 0xaa, 0xc5, 0x32, 0xe7, 0x5f, 0x9e, 0x57, 0x97, 0xf9, 0xd2, 0xc3, 0xb1, 0x3c, 0x3d, 0xab, 0x6d, 0xbd, 0xb8, 0xc8, 0xdf, 0x72, 0xed, 0x4f, 0x16, 0x24, 0xb9, 0x72, 0xca, 0xe4, 0xe5, 0x47, 0x83, 0xb1, 0xbc, 0x5d, 0xdd, 0x69, 0x5a, 0xfc, 0xc8, 0x13, 0x1c, 0x31, 0xbe, 0x90, 0xb2, 0x41, 0xe6, 0xfd, 0xae, 0x8b, 0xb7, 0x59, 0xa6, 0xfb, 0xde, 0x3e, 0xbf, 0xc8, 0x07, 0x56, 0xf6, 0x9e, 0x7b, 0x91, 0x1f, 0x71, 0xcc, 0xec, 0xe3, 0xa8, 0x2b, 0x65, 0x43, 0xcc, 0xfa, 0x03, 0x9f, 0xdb, 0x3e, 0xea, 0x1a, 0xee, 0xef, 0xbf, 0xb8, 0xc8, 0x17, 0x3c, 0x9d, 0xcb, 0x8f, 0x94, 0x41, 0xb7, 0xc9, 0x7b, 0x90, 0x13, 0x1c, 0xd2, 0xac, 0xd6, 0x98, 0x55, 0xde, 0xc5, 0x6a, 0x6e, 0x51, 0x32, 0x6e, 0x70, 0x19, 0x1b, 0x8d, 0x9b, 0xfb, 0x14, 0x67, 0x1c, 0xaf, 0x87, 0xa4, 0x71, 0xe8, 0x07, 0xe1, 0x8c, 0xbd, 0xfc, 0x68, 0x53, 0xfb, 0x93, 0x5c, 0xc5, 0xeb, 0x4f, 0xda, 0x43, 0x45, 0xc8, 0x06, 0x37, 0x51, 0x31, 0xde, 0xd4, 0x17, 0xbb, 0xc1, 0x1d, 0x94, 0xbb, 0x8b, 0x13, 0x96, 0x67, 0xbc, 0x92, 0xf8, 0x1e, 0x4e, 0xdb, 0x9f, 0xd2, 0x4a, 0xfa, 0x3b, 0x38, 0xf2, 0x5f, 0x74, 0x85, 0xe7, 0x04, 0x87, 0xf7, 0x86, 0xc3, 0x46, 0x7b, 0x22, 0x91, 0x6f, 0x71, 0xa6, 0x25, 0x4f, 0x07, 0xe3, 0xfe, 0x97, 0xe2, 0x81, 0xa8, 0x74, 0x86, 0x42, 0xa3, 0x3d, 0x31, 0x36, 0xf4, 0x4d, 0xcb, 0xe3, 0x36, 0x04, 0x65, 0x47, 0x35, 0xf3, 0x6f, 0x3a, 0x29, 0xe4, 0x2b, 0x9c, 0x36, 0x2f, 0xb2, 0xb3, 0xa5, 0x91, 0xf5, 0xed, 0x5a, 0xf2, 0x24, 0x9b, 0xc5, 0x3a, 0xd8, 0xc1, 0x20, 0xf7, 0x70, 0xe4, 0x68, 0x2c, 0x7f, 0x54, 0xd5, 0x78, 0xfa, 0x1e, 0x2c, 0x80, 0x3c, 0xb3, 0x48, 0xe7, 0xcc, 0x35, 0x86, 0xfe, 0xce, 0x6d, 0x4d, 0xbf, 0xe6, 0xad, 0x67, 0x45, 0x0b, 0x3d, 0x5b, 0x92, 0x3d, 0x1c, 0xd5, 0xde, 0xb9, 0xde, 0xc0, 0x3a, 0x03, 0x5c, 0x07, 0x01, 0xf3, 0x2a, 0x9d, 0xb0, 0x50, 0x99, 0x08, 0xbd, 0x87, 0x0d, 0x1f, 0x04, 0xd7, 0xc4, 0x42, 0xa5, 0x21, 0x5a, 0xf3, 0x2e, 0xc2, 0x1e, 0x88, 0x96, 0xad, 0x8b, 0x16, 0xdf, 0x45, 0x6b, 0xde, 0x45, 0xc4, 0x07, 0xc1, 0x77, 0x31, 0x5f, 0x93, 0x03, 0x8c, 0xef, 0x0f, 0x7e, 0x12, 0xba, 0x7a, 0x1b, 0x51, 0x60, 0x18, 0x99, 0x8c, 0x45, 0x99, 0x0e, 0xe1, 0x74, 0xe4, 0x33, 0x1c, 0x6b, 0xf5, 0x16, 0x18, 0xcc, 0x30, 0xef, 0xc1, 0xad, 0xf4, 0x6c, 0x1c, 0x5e, 0x39, 0x6f, 0x47, 0xbf, 0xa5, 0x98, 0x5f, 0x3b, 0xdc, 0x3d, 0x71, 0xba, 0x45, 0x3b, 0x3a, 0x26, 0xee, 0xdb, 0x0e, 0xc7, 0xe1, 0x95, 0xe4, 0x2e, 0x0e, 0xd7, 0x44, 0x51, 0xab, 0xcc, 0x26, 0x18, 0xe4, 0x1a, 0x08, 0x31, 0x6a, 0x74, 0x80, 0xa9, 0x60, 0x6f, 0x87, 0x6d, 0x7d, 0x4d, 0x9e, 0xf4, 0x7a, 0x3b, 0x66, 0x95, 0xf9, 0x76, 0xcc, 0x35, 0x7f, 0x02, 0x6b, 0x67, 0xb2, 0x20, 0x69, 0xa4, 0xd4, 0x12, 0x27, 0xd0, 0x2c, 0xb6, 0x9d, 0x40, 0xf3, 0x32, 0x69, 0xe1, 0x94, 0x79, 0xed, 0x70, 0xac, 0x68, 0x33, 0x38, 0x9b, 0x66, 0xd8, 0x1b, 0x9e, 0x58, 0xa3, 0x56, 0xa7, 0xda, 0x09, 0xe4, 0x21, 0x4e, 0x9a, 0x97, 0x1a, 0x12, 0xbb, 0xe9, 0x0c, 0xf0, 0xbb, 0x6a, 0x67, 0xea, 0xa5, 0x3a, 0xd2, 0xa6, 0xcf, 0x1d, 0xe0, 0xb7, 0xe1, 0x69, 0xe5, 0x37, 0x2d, 0x11, 0x3f, 0x65, 0xf7, 0xf1, 0x5b, 0xe0, 0x64, 0xf2, 0x83, 0x04, 0x6d, 0xbf, 0x13, 0x96, 0x71, 0xc4, 0x8b, 0xd7, 0x01, 0xf1, 0xba, 0x53, 0xbc, 0xd8, 0x64, 0xbc, 0x38, 0x04, 0x88, 0x43, 0xbc, 0xf8, 0x63, 0x9c, 0xb4, 0xce, 0x21, 0x5e, 0x9d, 0x00, 0xd4, 0x09, 0x40, 0x0d, 0x7b, 0xaf, 0x01, 0xea, 0x35, 0x9b, 0xba, 0xe5, 0xea, 0x9d, 0x01, 0xd4, 0x19, 0x40, 0x0d, 0x7b, 0x13, 0x40, 0x4d, 0x78, 0xf5, 0x27, 0x38, 0x65, 0x1b, 0x39, 0xbc, 0x3c, 0x0c, 0xc8, 0xc3, 0xb6, 0xdf, 0x66, 0xfb, 0xa8, 0xe1, 0xf5, 0x29, 0x40, 0x9f, 0x82, 0xec, 0xe1, 0xee, 0x37, 0x00, 0xf9, 0x06, 0x68, 0x0f, 0xeb, 0xd3, 0x80, 0x3e, 0xcd, 0xeb, 0x77, 0x71, 0x9c, 0x9f, 0x2a, 0xbc, 0x36, 0x02, 0x68, 0x23, 0xf6, 0xe7, 0x6e, 0x19, 0x29, 0x7e, 0x3b, 0x3d, 0xea, 0x72, 0x5c, 0x2c, 0x63, 0x64, 0xa5, 0x64, 0xf3, 0x0d, 0xbe, 0x0a, 0x0d, 0x0d, 0x80, 0x51, 0xe2, 0x19, 0xc9, 0xea, 0x55, 0xcb, 0xb0, 0x60, 0x3a, 0x65, 0xc4, 0x93, 0x4f, 0xf0, 0x15, 0x60, 0x74, 0x00, 0xe0, 0x2d, 0x1e, 0x1c, 0xab, 0xe6, 0x2c, 0x60, 0xcb, 0xff, 0x0a, 0x7c, 0xb4, 0xfa, 0xfb, 0x0a, 0x4e, 0x1a, 0x23, 0xea, 0x8b, 0x69, 0x57, 0x98, 0x0a, 0x5d, 0xf2, 0xbd, 0x7b, 0xc2, 0xaa, 0x42, 0xa3, 0xcd, 0xd0, 0xad, 0x10, 0xb4, 0x4e, 0x5c, 0x83, 0xd6, 0xf6, 0x32, 0x06, 0x7e, 0x79, 0xeb, 0xd0, 0x91, 0xb7, 0x6e, 0x78, 0x61, 0xdd, 0x62, 0xd7, 0xa1, 0x23, 0x76, 0xf9, 0x61, 0xc0, 0xf4, 0x55, 0x77, 0xa6, 0xaf, 0x92, 0x17, 0xc7, 0x3d, 0x84, 0xd5, 0x9d, 0x21, 0xcc, 0x97, 0x04, 0x67, 0xb1, 0xba, 0x33, 0x8b, 0x79, 0x92, 0xdc, 0x23, 0x59, 0xdd, 0x19, 0xc9, 0x7c, 0x49, 0x70, 0x32, 0x7b, 0x00, 0x24, 0xb3, 0x9b, 0x5e, 0x28, 0xaf, 0x80, 0x76, 0x0c, 0x05, 0xb4, 0x5b, 0x9e, 0x8d, 0x79, 0xe6, 0xb4, 0x07, 0x40, 0x4e, 0xf3, 0x6f, 0xce, 0x25, 0xae, 0x1d, 0x43, 0x71, 0x6d, 0x89, 0xe6, 0xdc, 0x52, 0x5b, 0xcd, 0x9e, 0xda, 0x8a, 0x5e, 0x2c, 0x38, 0xbc, 0xd5, 0x9d, 0xe1, 0xad, 0xe4, 0x7f, 0x16, 0xa1, 0x0c, 0x77, 0xe2, 0x9a, 0xe1, 0x96, 0x3a, 0xdc, 0x7e, 0x51, 0xee, 0x3b, 0xb7, 0x28, 0xb7, 0xb5, 0x0c, 0xdd, 0x3b, 0xd1, 0x7d, 0xed, 0x92, 0xe8, 0x2a, 0xcb, 0xa0, 0x2f, 0x83, 0xdd, 0x65, 0xb0, 0xbb, 0x0c, 0x76, 0x97, 0xc1, 0xee, 0xff, 0x11, 0xec, 0x76, 0xd7, 0x7e, 0xf9, 0x35, 0x8f, 0x4a, 0xd7, 0x70, 0xd8, 0xb0, 0x26, 0x1b, 0x38, 0xd8, 0xd8, 0x4b, 0x07, 0xd8, 0x67, 0x2d, 0x8d, 0xd8, 0xe7, 0x7e, 0x3a, 0x58, 0xfb, 0xfc, 0x7c, 0x46, 0x03, 0xcf, 0x66, 0x34, 0xf0, 0x7c, 0x46, 0x03, 0x2f, 0x67, 0x14, 0xbd, 0x9a, 0x51, 0xf4, 0x7a, 0x46, 0xd1, 0x9b, 0x19, 0x45, 0x4f, 0x55, 0x8a, 0x7e, 0x53, 0x29, 0xfa, 0x5d, 0xa5, 0xe8, 0x0f, 0x95, 0xa2, 0x3f, 0x55, 0x8a, 0xce, 0x55, 0x1a, 0x78, 0xa6, 0x52, 0xf4, 0x52, 0xa5, 0xe8, 0x95, 0x4a, 0x03, 0xaf, 0x55, 0x8a, 0xde, 0xa8, 0x34, 0xf0, 0xf4, 0x1f, 0x1a, 0xf8, 0x37, 0x00, 0x00, 0xff, 0xff, 0x1b, 0xc4, 0xd5, 0x8e, 0xf9, 0x16, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/mapsproto2/combos/unmarshaler/mapsproto2.proto000066400000000000000000000112721317075173200274330ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto2"; package proto2.maps; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message FloatingPoint { optional double f = 1; } message CustomMap { map Nullable128s = 1 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128"]; map Uint128s = 2 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable)=false]; map NullableIds = 3 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid"]; map Ids = 4 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid", (gogoproto.nullable)=false]; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } golang-gogoprotobuf-0.5/test/mapsproto2/combos/unmarshaler/mapsproto2_test.go000066400000000000000000000065421317075173200277400ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package proto2_maps import ( "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": {}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } golang-gogoprotobuf-0.5/test/mapsproto2/combos/unmarshaler/mapsproto2pb_test.go000066400000000000000000000632231317075173200302610ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/mapsproto2.proto /* Package proto2_maps is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/mapsproto2.proto It has these top-level messages: FloatingPoint CustomMap AllMaps AllMapsOrdered */ package proto2_maps import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestFloatingPointProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkFloatingPointProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkFloatingPointProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedFloatingPoint(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &FloatingPoint{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAllMapsProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMaps(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMaps{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAllMapsOrderedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsOrderedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMapsOrdered(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMapsOrdered{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestFloatingPointJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsOrderedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFloatingPointProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapsproto2Description(t *testing.T) { Mapsproto2Description() } func TestFloatingPointVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsOrderedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFloatingPointFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsOrderedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestFloatingPointGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsOrderedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFloatingPointSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkFloatingPointSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsOrderedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestFloatingPointStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsOrderedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/mapsproto2/doc.go000066400000000000000000000000231317075173200215210ustar00rootroot00000000000000package mapsproto2 golang-gogoprotobuf-0.5/test/mapsproto2/header.proto000066400000000000000000000063271317075173200227570ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto2"; package proto2.maps; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message FloatingPoint { optional double f = 1; } message CustomMap { map Nullable128s = 1 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128"]; map Uint128s = 2 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable)=false]; map NullableIds = 3 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid"]; map Ids = 4 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid", (gogoproto.nullable)=false]; } golang-gogoprotobuf-0.5/test/mapsproto2/mapsproto2.proto000066400000000000000000000112731317075173200236310ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto2"; package proto2.maps; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message FloatingPoint { optional double f = 1; } message CustomMap { map Nullable128s = 1 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128"]; map Uint128s = 2 [(gogoproto.customtype)="github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable)=false]; map NullableIds = 3 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid"]; map Ids = 4 [(gogoproto.customtype)="github.com/gogo/protobuf/test.Uuid", (gogoproto.nullable)=false]; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } golang-gogoprotobuf-0.5/test/mapsproto2/mapsproto2_test.go.in000066400000000000000000000065471317075173200245470ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package proto2_maps import ( "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": []byte{}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } }golang-gogoprotobuf-0.5/test/mixbench/000077500000000000000000000000001317075173200201215ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/mixbench/.gitignore000066400000000000000000000000101317075173200221000ustar00rootroot00000000000000mixbenchgolang-gogoprotobuf-0.5/test/mixbench/marshal.txt000066400000000000000000000170571317075173200223230ustar00rootroot00000000000000goos: darwin goarch: amd64 pkg: github.com/gogo/protobuf/test BenchmarkNidOptNativeProtoMarshal-8 2000000 831 ns/op 276.72 MB/s BenchmarkNinOptNativeProtoMarshal-8 2000000 931 ns/op 224.49 MB/s BenchmarkNidRepNativeProtoMarshal-8 500000 2341 ns/op 349.71 MB/s BenchmarkNinRepNativeProtoMarshal-8 500000 2500 ns/op 327.56 MB/s BenchmarkNidRepPackedNativeProtoMarshal-8 500000 3542 ns/op 105.30 MB/s BenchmarkNinRepPackedNativeProtoMarshal-8 500000 3571 ns/op 104.44 MB/s BenchmarkNidOptStructProtoMarshal-8 500000 2386 ns/op 354.44 MB/s BenchmarkNinOptStructProtoMarshal-8 500000 2361 ns/op 324.30 MB/s BenchmarkNidRepStructProtoMarshal-8 200000 5585 ns/op 317.40 MB/s BenchmarkNinRepStructProtoMarshal-8 200000 5608 ns/op 316.16 MB/s BenchmarkNidEmbeddedStructProtoMarshal-8 1000000 1475 ns/op 327.39 MB/s BenchmarkNinEmbeddedStructProtoMarshal-8 1000000 1465 ns/op 312.60 MB/s BenchmarkNidNestedStructProtoMarshal-8 100000 14816 ns/op 278.74 MB/s BenchmarkNinNestedStructProtoMarshal-8 100000 13744 ns/op 283.03 MB/s BenchmarkNidOptCustomProtoMarshal-8 3000000 539 ns/op 131.63 MB/s BenchmarkCustomDashProtoMarshal-8 3000000 474 ns/op 172.86 MB/s BenchmarkNinOptCustomProtoMarshal-8 3000000 578 ns/op 115.81 MB/s BenchmarkNidRepCustomProtoMarshal-8 1000000 1700 ns/op 107.04 MB/s BenchmarkNinRepCustomProtoMarshal-8 1000000 1715 ns/op 106.07 MB/s BenchmarkNinOptNativeUnionProtoMarshal-8 5000000 346 ns/op 46.17 MB/s BenchmarkNinOptStructUnionProtoMarshal-8 3000000 518 ns/op 121.60 MB/s BenchmarkNinEmbeddedStructUnionProtoMarshal-8 2000000 785 ns/op 189.70 MB/s BenchmarkNinNestedStructUnionProtoMarshal-8 2000000 657 ns/op 118.58 MB/s BenchmarkTreeProtoMarshal-8 3000000 584 ns/op 176.32 MB/s BenchmarkOrBranchProtoMarshal-8 2000000 997 ns/op 245.52 MB/s BenchmarkAndBranchProtoMarshal-8 2000000 982 ns/op 249.36 MB/s BenchmarkLeafProtoMarshal-8 3000000 453 ns/op 213.86 MB/s BenchmarkDeepTreeProtoMarshal-8 2000000 822 ns/op 176.28 MB/s BenchmarkADeepBranchProtoMarshal-8 2000000 931 ns/op 196.52 MB/s BenchmarkAndDeepBranchProtoMarshal-8 1000000 1515 ns/op 219.09 MB/s BenchmarkDeepLeafProtoMarshal-8 2000000 696 ns/op 200.89 MB/s BenchmarkNilProtoMarshal-8 10000000 219 ns/op 159.54 MB/s BenchmarkNidOptEnumProtoMarshal-8 5000000 275 ns/op 134.49 MB/s BenchmarkNinOptEnumProtoMarshal-8 5000000 314 ns/op 130.50 MB/s BenchmarkNidRepEnumProtoMarshal-8 3000000 516 ns/op 114.31 MB/s BenchmarkNinRepEnumProtoMarshal-8 3000000 516 ns/op 114.21 MB/s BenchmarkNinOptEnumDefaultProtoMarshal-8 5000000 308 ns/op 132.80 MB/s BenchmarkAnotherNinOptEnumProtoMarshal-8 5000000 311 ns/op 131.65 MB/s BenchmarkAnotherNinOptEnumDefaultProtoMarshal-8 5000000 312 ns/op 131.11 MB/s BenchmarkTimerProtoMarshal-8 3000000 503 ns/op 208.34 MB/s BenchmarkMyExtendableProtoMarshal-8 2000000 689 ns/op 117.49 MB/s BenchmarkOtherExtenableProtoMarshal-8 1000000 1356 ns/op 116.48 MB/s BenchmarkNestedDefinitionProtoMarshal-8 2000000 919 ns/op 252.30 MB/s BenchmarkNestedDefinition_NestedMessageProtoMarshal-8 3000000 566 ns/op 210.03 MB/s BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoMarshal-8 5000000 395 ns/op 207.58 MB/s BenchmarkNestedScopeProtoMarshal-8 2000000 840 ns/op 265.32 MB/s BenchmarkNinOptNativeDefaultProtoMarshal-8 2000000 932 ns/op 224.11 MB/s BenchmarkCustomContainerProtoMarshal-8 2000000 680 ns/op 160.07 MB/s BenchmarkCustomNameNidOptNativeProtoMarshal-8 2000000 844 ns/op 272.51 MB/s BenchmarkCustomNameNinOptNativeProtoMarshal-8 2000000 915 ns/op 228.30 MB/s BenchmarkCustomNameNinRepNativeProtoMarshal-8 500000 2346 ns/op 348.99 MB/s BenchmarkCustomNameNinStructProtoMarshal-8 500000 3010 ns/op 318.50 MB/s BenchmarkCustomNameCustomTypeProtoMarshal-8 1000000 2003 ns/op 106.79 MB/s BenchmarkCustomNameNinEmbeddedStructUnionProtoMarshal-8 2000000 757 ns/op 196.79 MB/s BenchmarkCustomNameEnumProtoMarshal-8 5000000 375 ns/op 119.68 MB/s BenchmarkNoExtensionsMapProtoMarshal-8 3000000 423 ns/op 191.12 MB/s BenchmarkUnrecognizedProtoMarshal-8 5000000 279 ns/op 160.80 MB/s BenchmarkUnrecognizedWithInnerProtoMarshal-8 3000000 582 ns/op 161.34 MB/s BenchmarkUnrecognizedWithInner_InnerProtoMarshal-8 10000000 209 ns/op 23.87 MB/s BenchmarkUnrecognizedWithEmbedProtoMarshal-8 3000000 497 ns/op 178.98 MB/s BenchmarkUnrecognizedWithEmbed_EmbeddedProtoMarshal-8 10000000 216 ns/op 23.12 MB/s BenchmarkNodeProtoMarshal-8 3000000 436 ns/op 231.46 MB/s BenchmarkNonByteCustomTypeProtoMarshal-8 2000000 843 ns/op 93.69 MB/s BenchmarkNidOptNonByteCustomTypeProtoMarshal-8 2000000 851 ns/op 97.47 MB/s BenchmarkNinOptNonByteCustomTypeProtoMarshal-8 2000000 857 ns/op 92.15 MB/s BenchmarkNidRepNonByteCustomTypeProtoMarshal-8 500000 2748 ns/op 83.67 MB/s BenchmarkNinRepNonByteCustomTypeProtoMarshal-8 500000 2750 ns/op 83.62 MB/s BenchmarkProtoTypeProtoMarshal-8 5000000 395 ns/op 207.07 MB/s PASS ok github.com/gogo/protobuf/test 159.241s golang-gogoprotobuf-0.5/test/mixbench/marshaler.txt000066400000000000000000000171451317075173200226500ustar00rootroot00000000000000goos: darwin goarch: amd64 pkg: github.com/gogo/protobuf/test/combos/both BenchmarkNidOptNativeProtoMarshal-8 5000000 240 ns/op 955.07 MB/s BenchmarkNinOptNativeProtoMarshal-8 5000000 277 ns/op 752.54 MB/s BenchmarkNidRepNativeProtoMarshal-8 1000000 1074 ns/op 762.27 MB/s BenchmarkNinRepNativeProtoMarshal-8 1000000 1065 ns/op 768.51 MB/s BenchmarkNidRepPackedNativeProtoMarshal-8 1000000 1033 ns/op 361.05 MB/s BenchmarkNinRepPackedNativeProtoMarshal-8 1000000 1018 ns/op 366.08 MB/s BenchmarkNidOptStructProtoMarshal-8 1000000 1024 ns/op 825.83 MB/s BenchmarkNinOptStructProtoMarshal-8 2000000 974 ns/op 785.66 MB/s BenchmarkNidRepStructProtoMarshal-8 500000 2593 ns/op 683.64 MB/s BenchmarkNinRepStructProtoMarshal-8 500000 2443 ns/op 725.73 MB/s BenchmarkNidEmbeddedStructProtoMarshal-8 3000000 582 ns/op 829.86 MB/s BenchmarkNinEmbeddedStructProtoMarshal-8 3000000 557 ns/op 821.40 MB/s BenchmarkNidNestedStructProtoMarshal-8 200000 7862 ns/op 525.28 MB/s BenchmarkNinNestedStructProtoMarshal-8 200000 6228 ns/op 624.58 MB/s BenchmarkNidOptCustomProtoMarshal-8 20000000 95.1 ns/op 746.84 MB/s BenchmarkCustomDashProtoMarshal-8 20000000 92.5 ns/op 886.08 MB/s BenchmarkNinOptCustomProtoMarshal-8 20000000 96.2 ns/op 696.51 MB/s BenchmarkNidRepCustomProtoMarshal-8 5000000 258 ns/op 703.59 MB/s BenchmarkNinRepCustomProtoMarshal-8 5000000 267 ns/op 679.91 MB/s BenchmarkNinOptNativeUnionProtoMarshal-8 20000000 68.8 ns/op 232.44 MB/s BenchmarkNinOptStructUnionProtoMarshal-8 10000000 137 ns/op 457.92 MB/s BenchmarkNinEmbeddedStructUnionProtoMarshal-8 5000000 259 ns/op 573.18 MB/s BenchmarkNinNestedStructUnionProtoMarshal-8 10000000 212 ns/op 366.72 MB/s BenchmarkTreeProtoMarshal-8 10000000 154 ns/op 666.39 MB/s BenchmarkOrBranchProtoMarshal-8 5000000 353 ns/op 692.18 MB/s BenchmarkAndBranchProtoMarshal-8 5000000 348 ns/op 703.45 MB/s BenchmarkLeafProtoMarshal-8 20000000 118 ns/op 820.16 MB/s BenchmarkDeepTreeProtoMarshal-8 5000000 251 ns/op 576.84 MB/s BenchmarkADeepBranchProtoMarshal-8 5000000 308 ns/op 594.07 MB/s BenchmarkAndDeepBranchProtoMarshal-8 2000000 604 ns/op 549.21 MB/s BenchmarkDeepLeafProtoMarshal-8 10000000 213 ns/op 654.76 MB/s BenchmarkNilProtoMarshal-8 30000000 50.1 ns/op 698.93 MB/s BenchmarkNidOptEnumProtoMarshal-8 20000000 61.7 ns/op 599.27 MB/s BenchmarkNinOptEnumProtoMarshal-8 20000000 77.8 ns/op 527.05 MB/s BenchmarkNidRepEnumProtoMarshal-8 10000000 186 ns/op 316.64 MB/s BenchmarkNinRepEnumProtoMarshal-8 10000000 183 ns/op 321.59 MB/s BenchmarkNinOptEnumDefaultProtoMarshal-8 20000000 77.9 ns/op 526.44 MB/s BenchmarkAnotherNinOptEnumProtoMarshal-8 20000000 78.9 ns/op 519.95 MB/s BenchmarkAnotherNinOptEnumDefaultProtoMarshal-8 20000000 78.6 ns/op 521.58 MB/s BenchmarkTimerProtoMarshal-8 20000000 103 ns/op 1011.39 MB/s BenchmarkMyExtendableProtoMarshal-8 3000000 515 ns/op 157.02 MB/s BenchmarkOtherExtenableProtoMarshal-8 2000000 1000 ns/op 157.91 MB/s BenchmarkNestedDefinitionProtoMarshal-8 5000000 285 ns/op 811.76 MB/s BenchmarkNestedDefinition_NestedMessageProtoMarshal-8 10000000 142 ns/op 837.36 MB/s BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoMarshal-8 20000000 93.3 ns/op 878.69 MB/s BenchmarkNestedScopeProtoMarshal-8 5000000 260 ns/op 854.95 MB/s BenchmarkNinOptNativeDefaultProtoMarshal-8 5000000 277 ns/op 752.14 MB/s BenchmarkCustomContainerProtoMarshal-8 10000000 141 ns/op 772.49 MB/s BenchmarkCustomNameNidOptNativeProtoMarshal-8 5000000 242 ns/op 947.27 MB/s BenchmarkCustomNameNinOptNativeProtoMarshal-8 5000000 276 ns/op 754.67 MB/s BenchmarkCustomNameNinRepNativeProtoMarshal-8 1000000 1043 ns/op 785.18 MB/s BenchmarkCustomNameNinStructProtoMarshal-8 1000000 1294 ns/op 740.75 MB/s BenchmarkCustomNameCustomTypeProtoMarshal-8 5000000 298 ns/op 715.82 MB/s BenchmarkCustomNameNinEmbeddedStructUnionProtoMarshal-8 5000000 255 ns/op 583.23 MB/s BenchmarkCustomNameEnumProtoMarshal-8 20000000 102 ns/op 441.00 MB/s BenchmarkNoExtensionsMapProtoMarshal-8 20000000 118 ns/op 684.15 MB/s BenchmarkUnrecognizedProtoMarshal-8 20000000 66.4 ns/op 677.96 MB/s BenchmarkUnrecognizedWithInnerProtoMarshal-8 10000000 168 ns/op 557.06 MB/s BenchmarkUnrecognizedWithInner_InnerProtoMarshal-8 30000000 43.4 ns/op 115.08 MB/s BenchmarkUnrecognizedWithEmbedProtoMarshal-8 10000000 126 ns/op 704.09 MB/s BenchmarkUnrecognizedWithEmbed_EmbeddedProtoMarshal-8 30000000 43.7 ns/op 114.32 MB/s BenchmarkNodeProtoMarshal-8 10000000 121 ns/op 833.02 MB/s BenchmarkNonByteCustomTypeProtoMarshal-8 10000000 123 ns/op 641.79 MB/s BenchmarkNidOptNonByteCustomTypeProtoMarshal-8 10000000 130 ns/op 633.95 MB/s BenchmarkNinOptNonByteCustomTypeProtoMarshal-8 10000000 124 ns/op 636.74 MB/s BenchmarkNidRepNonByteCustomTypeProtoMarshal-8 5000000 387 ns/op 592.85 MB/s BenchmarkNinRepNonByteCustomTypeProtoMarshal-8 5000000 390 ns/op 589.05 MB/s BenchmarkProtoTypeProtoMarshal-8 20000000 94.1 ns/op 871.54 MB/s PASS ok github.com/gogo/protobuf/test/combos/both 139.443s golang-gogoprotobuf-0.5/test/mixbench/mixbench.go000066400000000000000000000047631317075173200222570ustar00rootroot00000000000000// 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. package main import ( "fmt" "io/ioutil" "os/exec" ) func bench(folder, rgx string, outFileName string) { var test = exec.Command("go", "test", "-test.timeout=20m", "-test.v", "-test.run=XXX", "-test.bench="+rgx, folder) fmt.Printf("benching\n") out, err := test.CombinedOutput() fmt.Printf("bench output: %v\n", string(out)) if err != nil { panic(err) } if err := ioutil.WriteFile(outFileName, out, 0666); err != nil { panic(err) } } func main() { bench("./test/combos/both/", "ProtoMarshal", "./test/mixbench/marshaler.txt") bench("./test/", "ProtoMarshal", "./test/mixbench/marshal.txt") bench("./test/combos/both/", "ProtoUnmarshal", "./test/mixbench/unmarshaler.txt") bench("./test/", "ProtoUnmarshal", "./test/mixbench/unmarshal.txt") fmt.Println("Running benchcmp will show the performance difference between using reflect and generated code for marshalling and unmarshalling of protocol buffers") fmt.Println("benchcmp ./test/mixbench/marshal.txt ./test/mixbench/marshaler.txt") fmt.Println("benchcmp ./test/mixbench/unmarshal.txt ./test/mixbench/unmarshaler.txt") } golang-gogoprotobuf-0.5/test/mixbench/oldmarshaler.txt000066400000000000000000000171431317075173200233450ustar00rootroot00000000000000goos: darwin goarch: amd64 pkg: github.com/gogo/protobuf/test/combos/both BenchmarkNidOptNativeProtoMarshal-8 5000000 255 ns/op 898.51 MB/s BenchmarkNinOptNativeProtoMarshal-8 5000000 292 ns/op 714.19 MB/s BenchmarkNidRepNativeProtoMarshal-8 1000000 1215 ns/op 673.78 MB/s BenchmarkNinRepNativeProtoMarshal-8 1000000 1129 ns/op 724.87 MB/s BenchmarkNidRepPackedNativeProtoMarshal-8 1000000 1070 ns/op 348.30 MB/s BenchmarkNinRepPackedNativeProtoMarshal-8 1000000 1126 ns/op 331.05 MB/s BenchmarkNidOptStructProtoMarshal-8 1000000 1090 ns/op 775.47 MB/s BenchmarkNinOptStructProtoMarshal-8 1000000 1077 ns/op 711.02 MB/s BenchmarkNidRepStructProtoMarshal-8 500000 2826 ns/op 627.36 MB/s BenchmarkNinRepStructProtoMarshal-8 500000 2585 ns/op 685.69 MB/s BenchmarkNidEmbeddedStructProtoMarshal-8 2000000 661 ns/op 729.67 MB/s BenchmarkNinEmbeddedStructProtoMarshal-8 2000000 612 ns/op 747.51 MB/s BenchmarkNidNestedStructProtoMarshal-8 200000 8685 ns/op 475.50 MB/s BenchmarkNinNestedStructProtoMarshal-8 200000 7278 ns/op 534.43 MB/s BenchmarkNidOptCustomProtoMarshal-8 20000000 99.3 ns/op 715.23 MB/s BenchmarkCustomDashProtoMarshal-8 20000000 94.7 ns/op 866.23 MB/s BenchmarkNinOptCustomProtoMarshal-8 20000000 100 ns/op 663.46 MB/s BenchmarkNidRepCustomProtoMarshal-8 5000000 275 ns/op 661.13 MB/s BenchmarkNinRepCustomProtoMarshal-8 5000000 274 ns/op 662.53 MB/s BenchmarkNinOptNativeUnionProtoMarshal-8 20000000 74.9 ns/op 213.63 MB/s BenchmarkNinOptStructUnionProtoMarshal-8 10000000 150 ns/op 417.38 MB/s BenchmarkNinEmbeddedStructUnionProtoMarshal-8 5000000 273 ns/op 545.04 MB/s BenchmarkNinNestedStructUnionProtoMarshal-8 10000000 239 ns/op 325.57 MB/s BenchmarkTreeProtoMarshal-8 10000000 164 ns/op 627.52 MB/s BenchmarkOrBranchProtoMarshal-8 5000000 384 ns/op 637.63 MB/s BenchmarkAndBranchProtoMarshal-8 5000000 386 ns/op 633.51 MB/s BenchmarkLeafProtoMarshal-8 10000000 123 ns/op 786.11 MB/s BenchmarkDeepTreeProtoMarshal-8 5000000 258 ns/op 561.33 MB/s BenchmarkADeepBranchProtoMarshal-8 5000000 327 ns/op 559.19 MB/s BenchmarkAndDeepBranchProtoMarshal-8 2000000 650 ns/op 510.35 MB/s BenchmarkDeepLeafProtoMarshal-8 10000000 219 ns/op 638.44 MB/s BenchmarkNilProtoMarshal-8 30000000 51.0 ns/op 686.29 MB/s BenchmarkNidOptEnumProtoMarshal-8 20000000 62.5 ns/op 591.74 MB/s BenchmarkNinOptEnumProtoMarshal-8 20000000 78.7 ns/op 521.09 MB/s BenchmarkNidRepEnumProtoMarshal-8 10000000 186 ns/op 316.21 MB/s BenchmarkNinRepEnumProtoMarshal-8 10000000 179 ns/op 328.20 MB/s BenchmarkNinOptEnumDefaultProtoMarshal-8 20000000 81.4 ns/op 503.41 MB/s BenchmarkAnotherNinOptEnumProtoMarshal-8 20000000 85.7 ns/op 478.31 MB/s BenchmarkAnotherNinOptEnumDefaultProtoMarshal-8 20000000 83.6 ns/op 490.49 MB/s BenchmarkTimerProtoMarshal-8 20000000 110 ns/op 952.31 MB/s BenchmarkMyExtendableProtoMarshal-8 3000000 508 ns/op 159.38 MB/s BenchmarkOtherExtenableProtoMarshal-8 1000000 1090 ns/op 144.83 MB/s BenchmarkNestedDefinitionProtoMarshal-8 5000000 302 ns/op 765.71 MB/s BenchmarkNestedDefinition_NestedMessageProtoMarshal-8 10000000 147 ns/op 805.16 MB/s BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoMarshal-8 20000000 94.4 ns/op 868.83 MB/s BenchmarkNestedScopeProtoMarshal-8 5000000 275 ns/op 809.77 MB/s BenchmarkNinOptNativeDefaultProtoMarshal-8 5000000 283 ns/op 737.12 MB/s BenchmarkCustomContainerProtoMarshal-8 10000000 142 ns/op 765.46 MB/s BenchmarkCustomNameNidOptNativeProtoMarshal-8 5000000 255 ns/op 900.47 MB/s BenchmarkCustomNameNinOptNativeProtoMarshal-8 5000000 284 ns/op 735.53 MB/s BenchmarkCustomNameNinRepNativeProtoMarshal-8 1000000 1056 ns/op 775.01 MB/s BenchmarkCustomNameNinStructProtoMarshal-8 1000000 1471 ns/op 651.55 MB/s BenchmarkCustomNameCustomTypeProtoMarshal-8 5000000 304 ns/op 703.60 MB/s BenchmarkCustomNameNinEmbeddedStructUnionProtoMarshal-8 5000000 268 ns/op 554.35 MB/s BenchmarkCustomNameEnumProtoMarshal-8 20000000 103 ns/op 435.03 MB/s BenchmarkNoExtensionsMapProtoMarshal-8 20000000 115 ns/op 702.08 MB/s BenchmarkUnrecognizedProtoMarshal-8 20000000 67.0 ns/op 671.64 MB/s BenchmarkUnrecognizedWithInnerProtoMarshal-8 10000000 175 ns/op 536.86 MB/s BenchmarkUnrecognizedWithInner_InnerProtoMarshal-8 30000000 47.6 ns/op 105.15 MB/s BenchmarkUnrecognizedWithEmbedProtoMarshal-8 10000000 134 ns/op 659.48 MB/s BenchmarkUnrecognizedWithEmbed_EmbeddedProtoMarshal-8 30000000 47.1 ns/op 106.07 MB/s BenchmarkNodeProtoMarshal-8 10000000 125 ns/op 804.09 MB/s BenchmarkNonByteCustomTypeProtoMarshal-8 10000000 131 ns/op 602.08 MB/s BenchmarkNidOptNonByteCustomTypeProtoMarshal-8 10000000 133 ns/op 623.02 MB/s BenchmarkNinOptNonByteCustomTypeProtoMarshal-8 10000000 134 ns/op 588.03 MB/s BenchmarkNidRepNonByteCustomTypeProtoMarshal-8 3000000 402 ns/op 570.96 MB/s BenchmarkNinRepNonByteCustomTypeProtoMarshal-8 3000000 394 ns/op 583.29 MB/s BenchmarkProtoTypeProtoMarshal-8 20000000 94.3 ns/op 869.83 MB/s PASS ok github.com/gogo/protobuf/test/combos/both 140.308s golang-gogoprotobuf-0.5/test/mixbench/oldunmarshaler.txt000066400000000000000000000173271317075173200237140ustar00rootroot00000000000000goos: darwin goarch: amd64 pkg: github.com/gogo/protobuf/test/combos/both BenchmarkNidOptNativeProtoUnmarshal-8 3000000 441 ns/op 520.98 MB/s BenchmarkNinOptNativeProtoUnmarshal-8 2000000 638 ns/op 327.14 MB/s BenchmarkNidRepNativeProtoUnmarshal-8 500000 2830 ns/op 289.36 MB/s BenchmarkNinRepNativeProtoUnmarshal-8 500000 2859 ns/op 286.37 MB/s BenchmarkNidRepPackedNativeProtoUnmarshal-8 1000000 1813 ns/op 205.67 MB/s BenchmarkNinRepPackedNativeProtoUnmarshal-8 1000000 1793 ns/op 207.96 MB/s BenchmarkNidOptStructProtoUnmarshal-8 1000000 1876 ns/op 450.92 MB/s BenchmarkNinOptStructProtoUnmarshal-8 1000000 1992 ns/op 384.38 MB/s BenchmarkNidRepStructProtoUnmarshal-8 300000 5234 ns/op 338.72 MB/s BenchmarkNinRepStructProtoUnmarshal-8 300000 5097 ns/op 347.79 MB/s BenchmarkNidEmbeddedStructProtoUnmarshal-8 1000000 1077 ns/op 448.06 MB/s BenchmarkNinEmbeddedStructProtoUnmarshal-8 1000000 1088 ns/op 420.67 MB/s BenchmarkNidNestedStructProtoUnmarshal-8 100000 11850 ns/op 348.52 MB/s BenchmarkNinNestedStructProtoUnmarshal-8 200000 11242 ns/op 346.02 MB/s BenchmarkNidOptCustomProtoUnmarshal-8 10000000 196 ns/op 361.07 MB/s BenchmarkCustomDashProtoUnmarshal-8 10000000 228 ns/op 359.22 MB/s BenchmarkNinOptCustomProtoUnmarshal-8 5000000 243 ns/op 275.11 MB/s BenchmarkNidRepCustomProtoUnmarshal-8 2000000 811 ns/op 224.17 MB/s BenchmarkNinRepCustomProtoUnmarshal-8 2000000 812 ns/op 223.94 MB/s BenchmarkNinOptNativeUnionProtoUnmarshal-8 20000000 78.0 ns/op 205.18 MB/s BenchmarkNinOptStructUnionProtoUnmarshal-8 10000000 198 ns/op 318.01 MB/s BenchmarkNinEmbeddedStructUnionProtoUnmarshal-8 3000000 465 ns/op 320.00 MB/s BenchmarkNinNestedStructUnionProtoUnmarshal-8 5000000 329 ns/op 236.72 MB/s BenchmarkTreeProtoUnmarshal-8 5000000 301 ns/op 341.52 MB/s BenchmarkOrBranchProtoUnmarshal-8 2000000 788 ns/op 310.72 MB/s BenchmarkAndBranchProtoUnmarshal-8 2000000 809 ns/op 302.61 MB/s BenchmarkLeafProtoUnmarshal-8 10000000 226 ns/op 428.13 MB/s BenchmarkDeepTreeProtoUnmarshal-8 3000000 564 ns/op 256.96 MB/s BenchmarkADeepBranchProtoUnmarshal-8 2000000 746 ns/op 244.98 MB/s BenchmarkAndDeepBranchProtoUnmarshal-8 1000000 1262 ns/op 263.05 MB/s BenchmarkDeepLeafProtoUnmarshal-8 3000000 474 ns/op 294.99 MB/s BenchmarkNilProtoUnmarshal-8 10000000 139 ns/op 251.16 MB/s BenchmarkNidOptEnumProtoUnmarshal-8 10000000 145 ns/op 254.37 MB/s BenchmarkNinOptEnumProtoUnmarshal-8 10000000 204 ns/op 200.49 MB/s BenchmarkNidRepEnumProtoUnmarshal-8 3000000 453 ns/op 130.01 MB/s BenchmarkNinRepEnumProtoUnmarshal-8 3000000 444 ns/op 132.65 MB/s BenchmarkNinOptEnumDefaultProtoUnmarshal-8 10000000 199 ns/op 205.24 MB/s BenchmarkAnotherNinOptEnumProtoUnmarshal-8 10000000 208 ns/op 196.86 MB/s BenchmarkAnotherNinOptEnumDefaultProtoUnmarshal-8 10000000 201 ns/op 203.57 MB/s BenchmarkTimerProtoUnmarshal-8 10000000 235 ns/op 444.92 MB/s BenchmarkMyExtendableProtoUnmarshal-8 2000000 649 ns/op 124.62 MB/s BenchmarkOtherExtenableProtoUnmarshal-8 1000000 1348 ns/op 117.15 MB/s BenchmarkNestedDefinitionProtoUnmarshal-8 2000000 932 ns/op 248.80 MB/s BenchmarkNestedDefinition_NestedMessageProtoUnmarshal-8 3000000 431 ns/op 275.75 MB/s BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoUnmarshal-8 10000000 219 ns/op 373.17 MB/s BenchmarkNestedScopeProtoUnmarshal-8 2000000 907 ns/op 245.63 MB/s BenchmarkNinOptNativeDefaultProtoUnmarshal-8 2000000 663 ns/op 315.15 MB/s BenchmarkCustomContainerProtoUnmarshal-8 5000000 350 ns/op 310.78 MB/s BenchmarkCustomNameNidOptNativeProtoUnmarshal-8 3000000 483 ns/op 475.48 MB/s BenchmarkCustomNameNinOptNativeProtoUnmarshal-8 2000000 689 ns/op 303.07 MB/s BenchmarkCustomNameNinRepNativeProtoUnmarshal-8 500000 2845 ns/op 287.79 MB/s BenchmarkCustomNameNinStructProtoUnmarshal-8 500000 2730 ns/op 351.21 MB/s BenchmarkCustomNameCustomTypeProtoUnmarshal-8 2000000 934 ns/op 229.08 MB/s BenchmarkCustomNameNinEmbeddedStructUnionProtoUnmarshal-8 3000000 475 ns/op 313.63 MB/s BenchmarkCustomNameEnumProtoUnmarshal-8 5000000 271 ns/op 166.03 MB/s BenchmarkNoExtensionsMapProtoUnmarshal-8 5000000 344 ns/op 234.94 MB/s BenchmarkUnrecognizedProtoUnmarshal-8 20000000 86.3 ns/op 521.53 MB/s BenchmarkUnrecognizedWithInnerProtoUnmarshal-8 3000000 411 ns/op 228.40 MB/s BenchmarkUnrecognizedWithInner_InnerProtoUnmarshal-8 30000000 43.9 ns/op 113.80 MB/s BenchmarkUnrecognizedWithEmbedProtoUnmarshal-8 5000000 261 ns/op 340.84 MB/s BenchmarkUnrecognizedWithEmbed_EmbeddedProtoUnmarshal-8 30000000 43.9 ns/op 113.92 MB/s BenchmarkNodeProtoUnmarshal-8 5000000 312 ns/op 323.19 MB/s BenchmarkNonByteCustomTypeProtoUnmarshal-8 5000000 306 ns/op 257.52 MB/s BenchmarkNidOptNonByteCustomTypeProtoUnmarshal-8 5000000 292 ns/op 283.61 MB/s BenchmarkNinOptNonByteCustomTypeProtoUnmarshal-8 5000000 307 ns/op 257.00 MB/s BenchmarkNidRepNonByteCustomTypeProtoUnmarshal-8 1000000 1057 ns/op 217.49 MB/s BenchmarkNinRepNonByteCustomTypeProtoUnmarshal-8 1000000 1043 ns/op 220.36 MB/s BenchmarkProtoTypeProtoUnmarshal-8 10000000 221 ns/op 369.64 MB/s PASS ok github.com/gogo/protobuf/test/combos/both 152.331s golang-gogoprotobuf-0.5/test/mixbench/unmarshal.txt000066400000000000000000000172671317075173200226710ustar00rootroot00000000000000goos: darwin goarch: amd64 pkg: github.com/gogo/protobuf/test BenchmarkNidOptNativeProtoUnmarshal-8 2000000 742 ns/op 309.65 MB/s BenchmarkNinOptNativeProtoUnmarshal-8 2000000 892 ns/op 234.06 MB/s BenchmarkNidRepNativeProtoUnmarshal-8 300000 3762 ns/op 217.69 MB/s BenchmarkNinRepNativeProtoUnmarshal-8 500000 3750 ns/op 218.40 MB/s BenchmarkNidRepPackedNativeProtoUnmarshal-8 1000000 2423 ns/op 153.89 MB/s BenchmarkNinRepPackedNativeProtoUnmarshal-8 1000000 2356 ns/op 158.30 MB/s BenchmarkNidOptStructProtoUnmarshal-8 500000 2595 ns/op 326.01 MB/s BenchmarkNinOptStructProtoUnmarshal-8 500000 2679 ns/op 285.91 MB/s BenchmarkNidRepStructProtoUnmarshal-8 200000 7477 ns/op 237.11 MB/s BenchmarkNinRepStructProtoUnmarshal-8 200000 6672 ns/op 265.70 MB/s BenchmarkNidEmbeddedStructProtoUnmarshal-8 1000000 1634 ns/op 295.59 MB/s BenchmarkNinEmbeddedStructProtoUnmarshal-8 1000000 1655 ns/op 276.61 MB/s BenchmarkNidNestedStructProtoUnmarshal-8 100000 16742 ns/op 246.68 MB/s BenchmarkNinNestedStructProtoUnmarshal-8 100000 14573 ns/op 266.92 MB/s BenchmarkNidOptCustomProtoUnmarshal-8 2000000 840 ns/op 84.48 MB/s BenchmarkCustomDashProtoUnmarshal-8 3000000 573 ns/op 142.95 MB/s BenchmarkNinOptCustomProtoUnmarshal-8 2000000 668 ns/op 100.17 MB/s BenchmarkNidRepCustomProtoUnmarshal-8 500000 3945 ns/op 46.12 MB/s BenchmarkNinRepCustomProtoUnmarshal-8 500000 3939 ns/op 46.20 MB/s BenchmarkNinOptNativeUnionProtoUnmarshal-8 5000000 248 ns/op 64.30 MB/s BenchmarkNinOptStructUnionProtoUnmarshal-8 3000000 432 ns/op 145.55 MB/s BenchmarkNinEmbeddedStructUnionProtoUnmarshal-8 2000000 767 ns/op 194.07 MB/s BenchmarkNinNestedStructUnionProtoUnmarshal-8 2000000 636 ns/op 122.51 MB/s BenchmarkTreeProtoUnmarshal-8 2000000 649 ns/op 158.50 MB/s BenchmarkOrBranchProtoUnmarshal-8 1000000 1312 ns/op 186.65 MB/s BenchmarkAndBranchProtoUnmarshal-8 1000000 1301 ns/op 188.29 MB/s BenchmarkLeafProtoUnmarshal-8 3000000 490 ns/op 197.62 MB/s BenchmarkDeepTreeProtoUnmarshal-8 1000000 1059 ns/op 136.83 MB/s BenchmarkADeepBranchProtoUnmarshal-8 1000000 1253 ns/op 145.96 MB/s BenchmarkAndDeepBranchProtoUnmarshal-8 1000000 2041 ns/op 162.62 MB/s BenchmarkDeepLeafProtoUnmarshal-8 2000000 894 ns/op 156.51 MB/s BenchmarkNilProtoUnmarshal-8 5000000 362 ns/op 96.48 MB/s BenchmarkNidOptEnumProtoUnmarshal-8 5000000 382 ns/op 96.84 MB/s BenchmarkNinOptEnumProtoUnmarshal-8 3000000 448 ns/op 91.37 MB/s BenchmarkNidRepEnumProtoUnmarshal-8 2000000 796 ns/op 74.10 MB/s BenchmarkNinRepEnumProtoUnmarshal-8 2000000 799 ns/op 73.79 MB/s BenchmarkNinOptEnumDefaultProtoUnmarshal-8 3000000 452 ns/op 90.59 MB/s BenchmarkAnotherNinOptEnumProtoUnmarshal-8 3000000 446 ns/op 91.74 MB/s BenchmarkAnotherNinOptEnumDefaultProtoUnmarshal-8 3000000 451 ns/op 90.73 MB/s BenchmarkTimerProtoUnmarshal-8 3000000 528 ns/op 198.78 MB/s BenchmarkMyExtendableProtoUnmarshal-8 1000000 1295 ns/op 62.54 MB/s BenchmarkOtherExtenableProtoUnmarshal-8 1000000 2420 ns/op 65.28 MB/s BenchmarkNestedDefinitionProtoUnmarshal-8 1000000 1501 ns/op 154.48 MB/s BenchmarkNestedDefinition_NestedMessageProtoUnmarshal-8 2000000 861 ns/op 138.09 MB/s BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoUnmarshal-8 3000000 490 ns/op 167.26 MB/s BenchmarkNestedScopeProtoUnmarshal-8 1000000 1469 ns/op 151.78 MB/s BenchmarkNinOptNativeDefaultProtoUnmarshal-8 2000000 933 ns/op 223.93 MB/s BenchmarkCustomContainerProtoUnmarshal-8 1000000 1141 ns/op 95.48 MB/s BenchmarkCustomNameNidOptNativeProtoUnmarshal-8 2000000 771 ns/op 298.02 MB/s BenchmarkCustomNameNinOptNativeProtoUnmarshal-8 2000000 938 ns/op 222.66 MB/s BenchmarkCustomNameNinRepNativeProtoUnmarshal-8 500000 3820 ns/op 214.37 MB/s BenchmarkCustomNameNinStructProtoUnmarshal-8 500000 3613 ns/op 265.38 MB/s BenchmarkCustomNameCustomTypeProtoUnmarshal-8 300000 4301 ns/op 49.76 MB/s BenchmarkCustomNameNinEmbeddedStructUnionProtoUnmarshal-8 2000000 772 ns/op 192.86 MB/s BenchmarkCustomNameEnumProtoUnmarshal-8 3000000 569 ns/op 79.04 MB/s BenchmarkNoExtensionsMapProtoUnmarshal-8 2000000 850 ns/op 95.19 MB/s BenchmarkUnrecognizedProtoUnmarshal-8 5000000 269 ns/op 166.93 MB/s BenchmarkUnrecognizedWithInnerProtoUnmarshal-8 2000000 858 ns/op 109.44 MB/s BenchmarkUnrecognizedWithInner_InnerProtoUnmarshal-8 10000000 221 ns/op 22.56 MB/s BenchmarkUnrecognizedWithEmbedProtoUnmarshal-8 2000000 605 ns/op 146.89 MB/s BenchmarkUnrecognizedWithEmbed_EmbeddedProtoUnmarshal-8 10000000 222 ns/op 22.45 MB/s BenchmarkNodeProtoUnmarshal-8 2000000 664 ns/op 152.10 MB/s BenchmarkNonByteCustomTypeProtoUnmarshal-8 2000000 880 ns/op 89.67 MB/s BenchmarkNidOptNonByteCustomTypeProtoUnmarshal-8 2000000 953 ns/op 87.07 MB/s BenchmarkNinOptNonByteCustomTypeProtoUnmarshal-8 2000000 893 ns/op 88.46 MB/s BenchmarkNidRepNonByteCustomTypeProtoUnmarshal-8 500000 3460 ns/op 66.47 MB/s BenchmarkNinRepNonByteCustomTypeProtoUnmarshal-8 500000 3452 ns/op 66.63 MB/s BenchmarkProtoTypeProtoUnmarshal-8 3000000 510 ns/op 160.64 MB/s PASS ok github.com/gogo/protobuf/test 160.971s golang-gogoprotobuf-0.5/test/mixbench/unmarshaler.txt000066400000000000000000000173271317075173200232150ustar00rootroot00000000000000goos: darwin goarch: amd64 pkg: github.com/gogo/protobuf/test/combos/both BenchmarkNidOptNativeProtoUnmarshal-8 3000000 437 ns/op 525.94 MB/s BenchmarkNinOptNativeProtoUnmarshal-8 2000000 648 ns/op 322.37 MB/s BenchmarkNidRepNativeProtoUnmarshal-8 500000 2864 ns/op 285.90 MB/s BenchmarkNinRepNativeProtoUnmarshal-8 500000 2820 ns/op 290.41 MB/s BenchmarkNidRepPackedNativeProtoUnmarshal-8 1000000 1801 ns/op 207.09 MB/s BenchmarkNinRepPackedNativeProtoUnmarshal-8 1000000 1813 ns/op 205.70 MB/s BenchmarkNidOptStructProtoUnmarshal-8 1000000 1839 ns/op 459.88 MB/s BenchmarkNinOptStructProtoUnmarshal-8 1000000 2018 ns/op 379.50 MB/s BenchmarkNidRepStructProtoUnmarshal-8 300000 5149 ns/op 344.29 MB/s BenchmarkNinRepStructProtoUnmarshal-8 300000 5018 ns/op 353.26 MB/s BenchmarkNidEmbeddedStructProtoUnmarshal-8 1000000 1065 ns/op 453.50 MB/s BenchmarkNinEmbeddedStructProtoUnmarshal-8 1000000 1079 ns/op 424.46 MB/s BenchmarkNidNestedStructProtoUnmarshal-8 100000 11788 ns/op 350.34 MB/s BenchmarkNinNestedStructProtoUnmarshal-8 200000 11113 ns/op 350.03 MB/s BenchmarkNidOptCustomProtoUnmarshal-8 10000000 199 ns/op 355.77 MB/s BenchmarkCustomDashProtoUnmarshal-8 10000000 228 ns/op 359.40 MB/s BenchmarkNinOptCustomProtoUnmarshal-8 5000000 246 ns/op 271.79 MB/s BenchmarkNidRepCustomProtoUnmarshal-8 2000000 801 ns/op 227.02 MB/s BenchmarkNinRepCustomProtoUnmarshal-8 2000000 810 ns/op 224.64 MB/s BenchmarkNinOptNativeUnionProtoUnmarshal-8 20000000 80.9 ns/op 197.77 MB/s BenchmarkNinOptStructUnionProtoUnmarshal-8 10000000 201 ns/op 311.92 MB/s BenchmarkNinEmbeddedStructUnionProtoUnmarshal-8 3000000 460 ns/op 323.74 MB/s BenchmarkNinNestedStructUnionProtoUnmarshal-8 5000000 318 ns/op 245.16 MB/s BenchmarkTreeProtoUnmarshal-8 5000000 308 ns/op 333.66 MB/s BenchmarkOrBranchProtoUnmarshal-8 2000000 801 ns/op 305.77 MB/s BenchmarkAndBranchProtoUnmarshal-8 2000000 786 ns/op 311.55 MB/s BenchmarkLeafProtoUnmarshal-8 10000000 221 ns/op 437.02 MB/s BenchmarkDeepTreeProtoUnmarshal-8 3000000 564 ns/op 256.77 MB/s BenchmarkADeepBranchProtoUnmarshal-8 2000000 734 ns/op 249.07 MB/s BenchmarkAndDeepBranchProtoUnmarshal-8 1000000 1259 ns/op 263.56 MB/s BenchmarkDeepLeafProtoUnmarshal-8 3000000 473 ns/op 295.86 MB/s BenchmarkNilProtoUnmarshal-8 10000000 138 ns/op 252.17 MB/s BenchmarkNidOptEnumProtoUnmarshal-8 10000000 143 ns/op 258.45 MB/s BenchmarkNinOptEnumProtoUnmarshal-8 10000000 203 ns/op 201.75 MB/s BenchmarkNidRepEnumProtoUnmarshal-8 3000000 461 ns/op 127.85 MB/s BenchmarkNinRepEnumProtoUnmarshal-8 3000000 445 ns/op 132.38 MB/s BenchmarkNinOptEnumDefaultProtoUnmarshal-8 10000000 199 ns/op 205.22 MB/s BenchmarkAnotherNinOptEnumProtoUnmarshal-8 10000000 199 ns/op 205.47 MB/s BenchmarkAnotherNinOptEnumDefaultProtoUnmarshal-8 10000000 203 ns/op 201.78 MB/s BenchmarkTimerProtoUnmarshal-8 10000000 224 ns/op 468.19 MB/s BenchmarkMyExtendableProtoUnmarshal-8 2000000 653 ns/op 123.97 MB/s BenchmarkOtherExtenableProtoUnmarshal-8 1000000 1349 ns/op 117.08 MB/s BenchmarkNestedDefinitionProtoUnmarshal-8 2000000 936 ns/op 247.70 MB/s BenchmarkNestedDefinition_NestedMessageProtoUnmarshal-8 3000000 421 ns/op 282.31 MB/s BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoUnmarshal-8 10000000 224 ns/op 364.55 MB/s BenchmarkNestedScopeProtoUnmarshal-8 2000000 918 ns/op 242.79 MB/s BenchmarkNinOptNativeDefaultProtoUnmarshal-8 2000000 663 ns/op 315.02 MB/s BenchmarkCustomContainerProtoUnmarshal-8 5000000 360 ns/op 302.50 MB/s BenchmarkCustomNameNidOptNativeProtoUnmarshal-8 3000000 455 ns/op 504.73 MB/s BenchmarkCustomNameNinOptNativeProtoUnmarshal-8 2000000 667 ns/op 313.20 MB/s BenchmarkCustomNameNinRepNativeProtoUnmarshal-8 500000 2908 ns/op 281.59 MB/s BenchmarkCustomNameNinStructProtoUnmarshal-8 500000 2668 ns/op 359.44 MB/s BenchmarkCustomNameCustomTypeProtoUnmarshal-8 2000000 926 ns/op 231.07 MB/s BenchmarkCustomNameNinEmbeddedStructUnionProtoUnmarshal-8 3000000 471 ns/op 316.30 MB/s BenchmarkCustomNameEnumProtoUnmarshal-8 5000000 267 ns/op 168.48 MB/s BenchmarkNoExtensionsMapProtoUnmarshal-8 5000000 341 ns/op 237.47 MB/s BenchmarkUnrecognizedProtoUnmarshal-8 20000000 85.0 ns/op 529.53 MB/s BenchmarkUnrecognizedWithInnerProtoUnmarshal-8 3000000 408 ns/op 230.38 MB/s BenchmarkUnrecognizedWithInner_InnerProtoUnmarshal-8 30000000 45.5 ns/op 109.87 MB/s BenchmarkUnrecognizedWithEmbedProtoUnmarshal-8 5000000 261 ns/op 340.78 MB/s BenchmarkUnrecognizedWithEmbed_EmbeddedProtoUnmarshal-8 30000000 43.2 ns/op 115.70 MB/s BenchmarkNodeProtoUnmarshal-8 5000000 310 ns/op 325.74 MB/s BenchmarkNonByteCustomTypeProtoUnmarshal-8 5000000 310 ns/op 254.37 MB/s BenchmarkNidOptNonByteCustomTypeProtoUnmarshal-8 5000000 294 ns/op 281.53 MB/s BenchmarkNinOptNonByteCustomTypeProtoUnmarshal-8 5000000 308 ns/op 256.49 MB/s BenchmarkNidRepNonByteCustomTypeProtoUnmarshal-8 1000000 1040 ns/op 221.03 MB/s BenchmarkNinRepNonByteCustomTypeProtoUnmarshal-8 1000000 1039 ns/op 221.20 MB/s BenchmarkProtoTypeProtoUnmarshal-8 10000000 220 ns/op 372.18 MB/s PASS ok github.com/gogo/protobuf/test/combos/both 153.117s golang-gogoprotobuf-0.5/test/mixbench/unsafe_marshaler.txt000066400000000000000000000171611317075173200242070ustar00rootroot00000000000000goos: darwin goarch: amd64 pkg: github.com/gogo/protobuf/test/combos/unsafeboth BenchmarkNidOptNativeProtoMarshal-8 10000000 235 ns/op 976.65 MB/s BenchmarkNinOptNativeProtoMarshal-8 5000000 265 ns/op 788.37 MB/s BenchmarkNidRepNativeProtoMarshal-8 1000000 1011 ns/op 810.06 MB/s BenchmarkNinRepNativeProtoMarshal-8 1000000 1004 ns/op 815.63 MB/s BenchmarkNidRepPackedNativeProtoMarshal-8 2000000 958 ns/op 389.24 MB/s BenchmarkNinRepPackedNativeProtoMarshal-8 2000000 968 ns/op 385.16 MB/s BenchmarkNidOptStructProtoMarshal-8 2000000 979 ns/op 863.95 MB/s BenchmarkNinOptStructProtoMarshal-8 2000000 946 ns/op 808.91 MB/s BenchmarkNidRepStructProtoMarshal-8 500000 2495 ns/op 710.38 MB/s BenchmarkNinRepStructProtoMarshal-8 500000 2265 ns/op 782.62 MB/s BenchmarkNidEmbeddedStructProtoMarshal-8 3000000 561 ns/op 860.52 MB/s BenchmarkNinEmbeddedStructProtoMarshal-8 3000000 538 ns/op 849.81 MB/s BenchmarkNidNestedStructProtoMarshal-8 200000 7308 ns/op 565.10 MB/s BenchmarkNinNestedStructProtoMarshal-8 200000 6016 ns/op 646.61 MB/s BenchmarkNidOptCustomProtoMarshal-8 20000000 97.3 ns/op 729.87 MB/s BenchmarkCustomDashProtoMarshal-8 20000000 92.5 ns/op 886.05 MB/s BenchmarkNinOptCustomProtoMarshal-8 20000000 97.4 ns/op 687.82 MB/s BenchmarkNidRepCustomProtoMarshal-8 5000000 258 ns/op 705.25 MB/s BenchmarkNinRepCustomProtoMarshal-8 5000000 258 ns/op 704.21 MB/s BenchmarkNinOptNativeUnionProtoMarshal-8 20000000 69.0 ns/op 231.80 MB/s BenchmarkNinOptStructUnionProtoMarshal-8 10000000 138 ns/op 453.62 MB/s BenchmarkNinEmbeddedStructUnionProtoMarshal-8 5000000 251 ns/op 591.44 MB/s BenchmarkNinNestedStructUnionProtoMarshal-8 10000000 208 ns/op 373.73 MB/s BenchmarkTreeProtoMarshal-8 10000000 154 ns/op 664.72 MB/s BenchmarkOrBranchProtoMarshal-8 5000000 343 ns/op 712.72 MB/s BenchmarkAndBranchProtoMarshal-8 5000000 344 ns/op 710.24 MB/s BenchmarkLeafProtoMarshal-8 20000000 117 ns/op 824.42 MB/s BenchmarkDeepTreeProtoMarshal-8 5000000 247 ns/op 585.23 MB/s BenchmarkADeepBranchProtoMarshal-8 5000000 301 ns/op 606.06 MB/s BenchmarkAndDeepBranchProtoMarshal-8 3000000 595 ns/op 557.97 MB/s BenchmarkDeepLeafProtoMarshal-8 10000000 206 ns/op 676.59 MB/s BenchmarkNilProtoMarshal-8 30000000 51.2 ns/op 682.93 MB/s BenchmarkNidOptEnumProtoMarshal-8 20000000 62.0 ns/op 596.44 MB/s BenchmarkNinOptEnumProtoMarshal-8 20000000 78.6 ns/op 521.93 MB/s BenchmarkNidRepEnumProtoMarshal-8 10000000 184 ns/op 320.25 MB/s BenchmarkNinRepEnumProtoMarshal-8 10000000 184 ns/op 319.78 MB/s BenchmarkNinOptEnumDefaultProtoMarshal-8 20000000 78.1 ns/op 525.05 MB/s BenchmarkAnotherNinOptEnumProtoMarshal-8 20000000 77.6 ns/op 528.30 MB/s BenchmarkAnotherNinOptEnumDefaultProtoMarshal-8 20000000 79.1 ns/op 518.59 MB/s BenchmarkTimerProtoMarshal-8 20000000 103 ns/op 1011.16 MB/s BenchmarkMyExtendableProtoMarshal-8 3000000 465 ns/op 174.04 MB/s BenchmarkOtherExtenableProtoMarshal-8 2000000 1028 ns/op 153.66 MB/s BenchmarkNestedDefinitionProtoMarshal-8 5000000 283 ns/op 818.76 MB/s BenchmarkNestedDefinition_NestedMessageProtoMarshal-8 10000000 141 ns/op 838.57 MB/s BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoMarshal-8 20000000 94.1 ns/op 871.31 MB/s BenchmarkNestedScopeProtoMarshal-8 5000000 259 ns/op 857.99 MB/s BenchmarkNinOptNativeDefaultProtoMarshal-8 5000000 272 ns/op 768.10 MB/s BenchmarkCustomContainerProtoMarshal-8 10000000 141 ns/op 769.72 MB/s BenchmarkCustomNameNidOptNativeProtoMarshal-8 10000000 237 ns/op 968.65 MB/s BenchmarkCustomNameNinOptNativeProtoMarshal-8 5000000 290 ns/op 719.58 MB/s BenchmarkCustomNameNinRepNativeProtoMarshal-8 1000000 1006 ns/op 813.87 MB/s BenchmarkCustomNameNinStructProtoMarshal-8 1000000 1296 ns/op 739.54 MB/s BenchmarkCustomNameCustomTypeProtoMarshal-8 5000000 300 ns/op 712.96 MB/s BenchmarkCustomNameNinEmbeddedStructUnionProtoMarshal-8 5000000 247 ns/op 601.55 MB/s BenchmarkCustomNameEnumProtoMarshal-8 20000000 107 ns/op 417.49 MB/s BenchmarkNoExtensionsMapProtoMarshal-8 20000000 116 ns/op 695.54 MB/s BenchmarkUnrecognizedProtoMarshal-8 20000000 66.8 ns/op 673.51 MB/s BenchmarkUnrecognizedWithInnerProtoMarshal-8 10000000 171 ns/op 548.84 MB/s BenchmarkUnrecognizedWithInner_InnerProtoMarshal-8 30000000 46.7 ns/op 107.10 MB/s BenchmarkUnrecognizedWithEmbedProtoMarshal-8 10000000 126 ns/op 700.99 MB/s BenchmarkUnrecognizedWithEmbed_EmbeddedProtoMarshal-8 30000000 43.8 ns/op 114.23 MB/s BenchmarkNodeProtoMarshal-8 10000000 119 ns/op 844.78 MB/s BenchmarkNonByteCustomTypeProtoMarshal-8 10000000 123 ns/op 639.73 MB/s BenchmarkNidOptNonByteCustomTypeProtoMarshal-8 10000000 126 ns/op 657.86 MB/s BenchmarkNinOptNonByteCustomTypeProtoMarshal-8 10000000 123 ns/op 641.02 MB/s BenchmarkNidRepNonByteCustomTypeProtoMarshal-8 5000000 386 ns/op 595.49 MB/s BenchmarkNinRepNonByteCustomTypeProtoMarshal-8 5000000 382 ns/op 601.83 MB/s BenchmarkProtoTypeProtoMarshal-8 20000000 94.3 ns/op 869.89 MB/s PASS ok github.com/gogo/protobuf/test/combos/unsafeboth 147.234s golang-gogoprotobuf-0.5/test/mixbench/unsafe_unmarshaler.txt000066400000000000000000000173431317075173200245540ustar00rootroot00000000000000goos: darwin goarch: amd64 pkg: github.com/gogo/protobuf/test/combos/unsafeboth BenchmarkNidOptNativeProtoUnmarshal-8 3000000 425 ns/op 540.14 MB/s BenchmarkNinOptNativeProtoUnmarshal-8 2000000 612 ns/op 341.01 MB/s BenchmarkNidRepNativeProtoUnmarshal-8 500000 2884 ns/op 283.98 MB/s BenchmarkNinRepNativeProtoUnmarshal-8 500000 2809 ns/op 291.49 MB/s BenchmarkNidRepPackedNativeProtoUnmarshal-8 1000000 1806 ns/op 206.53 MB/s BenchmarkNinRepPackedNativeProtoUnmarshal-8 1000000 1769 ns/op 210.78 MB/s BenchmarkNidOptStructProtoUnmarshal-8 1000000 1820 ns/op 464.71 MB/s BenchmarkNinOptStructProtoUnmarshal-8 1000000 1932 ns/op 396.30 MB/s BenchmarkNidRepStructProtoUnmarshal-8 300000 5074 ns/op 349.42 MB/s BenchmarkNinRepStructProtoUnmarshal-8 300000 4891 ns/op 362.49 MB/s BenchmarkNidEmbeddedStructProtoUnmarshal-8 1000000 1034 ns/op 466.75 MB/s BenchmarkNinEmbeddedStructProtoUnmarshal-8 1000000 1061 ns/op 431.37 MB/s BenchmarkNidNestedStructProtoUnmarshal-8 200000 11579 ns/op 356.66 MB/s BenchmarkNinNestedStructProtoUnmarshal-8 200000 10862 ns/op 358.12 MB/s BenchmarkNidOptCustomProtoUnmarshal-8 10000000 202 ns/op 350.76 MB/s BenchmarkCustomDashProtoUnmarshal-8 10000000 228 ns/op 358.70 MB/s BenchmarkNinOptCustomProtoUnmarshal-8 5000000 245 ns/op 272.41 MB/s BenchmarkNidRepCustomProtoUnmarshal-8 2000000 810 ns/op 224.66 MB/s BenchmarkNinRepCustomProtoUnmarshal-8 2000000 812 ns/op 224.11 MB/s BenchmarkNinOptNativeUnionProtoUnmarshal-8 20000000 73.2 ns/op 218.58 MB/s BenchmarkNinOptStructUnionProtoUnmarshal-8 10000000 194 ns/op 323.57 MB/s BenchmarkNinEmbeddedStructUnionProtoUnmarshal-8 3000000 459 ns/op 324.42 MB/s BenchmarkNinNestedStructUnionProtoUnmarshal-8 5000000 315 ns/op 247.13 MB/s BenchmarkTreeProtoUnmarshal-8 5000000 307 ns/op 335.37 MB/s BenchmarkOrBranchProtoUnmarshal-8 2000000 782 ns/op 313.01 MB/s BenchmarkAndBranchProtoUnmarshal-8 2000000 776 ns/op 315.38 MB/s BenchmarkLeafProtoUnmarshal-8 10000000 218 ns/op 443.71 MB/s BenchmarkDeepTreeProtoUnmarshal-8 3000000 565 ns/op 256.61 MB/s BenchmarkADeepBranchProtoUnmarshal-8 2000000 734 ns/op 249.27 MB/s BenchmarkAndDeepBranchProtoUnmarshal-8 1000000 1263 ns/op 262.80 MB/s BenchmarkDeepLeafProtoUnmarshal-8 3000000 476 ns/op 294.03 MB/s BenchmarkNilProtoUnmarshal-8 10000000 137 ns/op 254.01 MB/s BenchmarkNidOptEnumProtoUnmarshal-8 10000000 141 ns/op 260.58 MB/s BenchmarkNinOptEnumProtoUnmarshal-8 10000000 200 ns/op 204.30 MB/s BenchmarkNidRepEnumProtoUnmarshal-8 3000000 449 ns/op 131.35 MB/s BenchmarkNinRepEnumProtoUnmarshal-8 3000000 459 ns/op 128.30 MB/s BenchmarkNinOptEnumDefaultProtoUnmarshal-8 10000000 203 ns/op 201.59 MB/s BenchmarkAnotherNinOptEnumProtoUnmarshal-8 10000000 201 ns/op 203.75 MB/s BenchmarkAnotherNinOptEnumDefaultProtoUnmarshal-8 10000000 205 ns/op 199.16 MB/s BenchmarkTimerProtoUnmarshal-8 10000000 223 ns/op 469.62 MB/s BenchmarkMyExtendableProtoUnmarshal-8 2000000 654 ns/op 123.72 MB/s BenchmarkOtherExtenableProtoUnmarshal-8 1000000 1353 ns/op 116.72 MB/s BenchmarkNestedDefinitionProtoUnmarshal-8 2000000 919 ns/op 252.43 MB/s BenchmarkNestedDefinition_NestedMessageProtoUnmarshal-8 3000000 427 ns/op 278.50 MB/s BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoUnmarshal-8 10000000 216 ns/op 378.01 MB/s BenchmarkNestedScopeProtoUnmarshal-8 2000000 893 ns/op 249.72 MB/s BenchmarkNinOptNativeDefaultProtoUnmarshal-8 2000000 671 ns/op 311.36 MB/s BenchmarkCustomContainerProtoUnmarshal-8 5000000 351 ns/op 310.13 MB/s BenchmarkCustomNameNidOptNativeProtoUnmarshal-8 3000000 446 ns/op 514.92 MB/s BenchmarkCustomNameNinOptNativeProtoUnmarshal-8 2000000 652 ns/op 320.55 MB/s BenchmarkCustomNameNinRepNativeProtoUnmarshal-8 500000 2841 ns/op 288.23 MB/s BenchmarkCustomNameNinStructProtoUnmarshal-8 500000 2639 ns/op 363.30 MB/s BenchmarkCustomNameCustomTypeProtoUnmarshal-8 2000000 919 ns/op 232.73 MB/s BenchmarkCustomNameNinEmbeddedStructUnionProtoUnmarshal-8 3000000 461 ns/op 322.60 MB/s BenchmarkCustomNameEnumProtoUnmarshal-8 5000000 270 ns/op 166.20 MB/s BenchmarkNoExtensionsMapProtoUnmarshal-8 5000000 353 ns/op 228.99 MB/s BenchmarkUnrecognizedProtoUnmarshal-8 20000000 85.7 ns/op 525.21 MB/s BenchmarkUnrecognizedWithInnerProtoUnmarshal-8 3000000 415 ns/op 226.40 MB/s BenchmarkUnrecognizedWithInner_InnerProtoUnmarshal-8 30000000 42.6 ns/op 117.47 MB/s BenchmarkUnrecognizedWithEmbedProtoUnmarshal-8 5000000 259 ns/op 343.44 MB/s BenchmarkUnrecognizedWithEmbed_EmbeddedProtoUnmarshal-8 30000000 43.2 ns/op 115.84 MB/s BenchmarkNodeProtoUnmarshal-8 5000000 306 ns/op 329.03 MB/s BenchmarkNonByteCustomTypeProtoUnmarshal-8 5000000 308 ns/op 256.11 MB/s BenchmarkNidOptNonByteCustomTypeProtoUnmarshal-8 5000000 292 ns/op 284.10 MB/s BenchmarkNinOptNonByteCustomTypeProtoUnmarshal-8 5000000 306 ns/op 258.01 MB/s BenchmarkNidRepNonByteCustomTypeProtoUnmarshal-8 1000000 1049 ns/op 219.19 MB/s BenchmarkNinRepNonByteCustomTypeProtoUnmarshal-8 1000000 1046 ns/op 219.68 MB/s BenchmarkProtoTypeProtoUnmarshal-8 10000000 221 ns/op 370.99 MB/s PASS ok github.com/gogo/protobuf/test/combos/unsafeboth 151.728s golang-gogoprotobuf-0.5/test/moredefaults/000077500000000000000000000000001317075173200210165ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/moredefaults/Makefile000066400000000000000000000027501317075173200224620ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. md.proto) golang-gogoprotobuf-0.5/test/moredefaults/md.pb.go000066400000000000000000000221651317075173200223530ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: md.proto /* Package moredefaults is a generated protocol buffer package. It is generated from these files: md.proto It has these top-level messages: MoreDefaultsB MoreDefaultsA */ package moredefaults import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import test "github.com/gogo/protobuf/test/example" import bytes "bytes" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MoreDefaultsB struct { Field1 *string `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *MoreDefaultsB) Reset() { *m = MoreDefaultsB{} } func (m *MoreDefaultsB) String() string { return proto.CompactTextString(m) } func (*MoreDefaultsB) ProtoMessage() {} func (*MoreDefaultsB) Descriptor() ([]byte, []int) { return fileDescriptorMd, []int{0} } func (m *MoreDefaultsB) GetField1() string { if m != nil && m.Field1 != nil { return *m.Field1 } return "" } type MoreDefaultsA struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1,def=1234" json:"Field1,omitempty"` Field2 int64 `protobuf:"varint,2,opt,name=Field2" json:"Field2"` B1 *MoreDefaultsB `protobuf:"bytes,3,opt,name=B1" json:"B1,omitempty"` B2 MoreDefaultsB `protobuf:"bytes,4,opt,name=B2" json:"B2"` A1 *test.A `protobuf:"bytes,5,opt,name=A1" json:"A1,omitempty"` A2 test.A `protobuf:"bytes,6,opt,name=A2" json:"A2"` XXX_unrecognized []byte `json:"-"` } func (m *MoreDefaultsA) Reset() { *m = MoreDefaultsA{} } func (m *MoreDefaultsA) String() string { return proto.CompactTextString(m) } func (*MoreDefaultsA) ProtoMessage() {} func (*MoreDefaultsA) Descriptor() ([]byte, []int) { return fileDescriptorMd, []int{1} } const Default_MoreDefaultsA_Field1 int64 = 1234 func (m *MoreDefaultsA) GetField1() int64 { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_MoreDefaultsA_Field1 } func (m *MoreDefaultsA) GetField2() int64 { if m != nil { return m.Field2 } return 0 } func (m *MoreDefaultsA) GetB1() *MoreDefaultsB { if m != nil { return m.B1 } return nil } func (m *MoreDefaultsA) GetB2() MoreDefaultsB { if m != nil { return m.B2 } return MoreDefaultsB{} } func (m *MoreDefaultsA) GetA1() *test.A { if m != nil { return m.A1 } return nil } func (m *MoreDefaultsA) GetA2() test.A { if m != nil { return m.A2 } return test.A{} } func init() { proto.RegisterType((*MoreDefaultsB)(nil), "moredefaults.MoreDefaultsB") proto.RegisterType((*MoreDefaultsA)(nil), "moredefaults.MoreDefaultsA") } func (this *MoreDefaultsB) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MoreDefaultsB) if !ok { that2, ok := that.(MoreDefaultsB) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *MoreDefaultsA) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MoreDefaultsA) if !ok { that2, ok := that.(MoreDefaultsA) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != that1.Field2 { return false } if !this.B1.Equal(that1.B1) { return false } if !this.B2.Equal(&that1.B2) { return false } if !this.A1.Equal(that1.A1) { return false } if !this.A2.Equal(&that1.A2) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func NewPopulatedMoreDefaultsB(r randyMd, easy bool) *MoreDefaultsB { this := &MoreDefaultsB{} if r.Intn(10) != 0 { v1 := string(randStringMd(r)) this.Field1 = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMd(r, 2) } return this } func NewPopulatedMoreDefaultsA(r randyMd, easy bool) *MoreDefaultsA { this := &MoreDefaultsA{} if r.Intn(10) != 0 { v2 := int64(r.Int63()) if r.Intn(2) == 0 { v2 *= -1 } this.Field1 = &v2 } this.Field2 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field2 *= -1 } if r.Intn(10) != 0 { this.B1 = NewPopulatedMoreDefaultsB(r, easy) } v3 := NewPopulatedMoreDefaultsB(r, easy) this.B2 = *v3 if r.Intn(10) != 0 { this.A1 = test.NewPopulatedA(r, easy) } v4 := test.NewPopulatedA(r, easy) this.A2 = *v4 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedMd(r, 7) } return this } type randyMd interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneMd(r randyMd) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringMd(r randyMd) string { v5 := r.Intn(100) tmps := make([]rune, v5) for i := 0; i < v5; i++ { tmps[i] = randUTF8RuneMd(r) } return string(tmps) } func randUnrecognizedMd(r randyMd, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldMd(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldMd(dAtA []byte, r randyMd, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateMd(dAtA, uint64(key)) v6 := r.Int63() if r.Intn(2) == 0 { v6 *= -1 } dAtA = encodeVarintPopulateMd(dAtA, uint64(v6)) case 1: dAtA = encodeVarintPopulateMd(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateMd(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateMd(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateMd(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateMd(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func init() { proto.RegisterFile("md.proto", fileDescriptorMd) } var fileDescriptorMd = []byte{ // 258 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xc8, 0x4d, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0xc9, 0xcd, 0x2f, 0x4a, 0x4d, 0x49, 0x4d, 0x4b, 0x2c, 0xcd, 0x29, 0x29, 0x96, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0x2b, 0x4a, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0xa2, 0x59, 0xca, 0x18, 0xa7, 0xf2, 0x92, 0xd4, 0xe2, 0x12, 0xfd, 0xd4, 0x8a, 0xc4, 0xdc, 0x82, 0x9c, 0x54, 0x18, 0x0d, 0xd1, 0xa4, 0xa4, 0xce, 0xc5, 0xeb, 0x9b, 0x5f, 0x94, 0xea, 0x02, 0xb5, 0xd3, 0x49, 0x48, 0x8c, 0x8b, 0xcd, 0x2d, 0x33, 0x35, 0x27, 0xc5, 0x50, 0x82, 0x51, 0x81, 0x51, 0x83, 0x33, 0x08, 0xca, 0x53, 0x7a, 0xcc, 0x88, 0xaa, 0xd2, 0x51, 0x48, 0x06, 0x45, 0x25, 0xb3, 0x15, 0x8b, 0xa1, 0x91, 0xb1, 0x09, 0x4c, 0x3d, 0x5c, 0xd6, 0x48, 0x82, 0x09, 0x24, 0xeb, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x03, 0x54, 0xd6, 0x48, 0x48, 0x9b, 0x8b, 0xc9, 0xc9, 0x50, 0x82, 0x59, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x5a, 0x0f, 0xd9, 0xd7, 0x7a, 0x28, 0xce, 0x09, 0x62, 0x72, 0x32, 0x14, 0x32, 0xe4, 0x62, 0x72, 0x32, 0x92, 0x60, 0x21, 0xa8, 0x18, 0x6a, 0x07, 0x93, 0x93, 0x91, 0x90, 0x38, 0x17, 0x93, 0xa3, 0xa1, 0x04, 0x2b, 0x58, 0x0b, 0xbb, 0x1e, 0xc8, 0xff, 0x7a, 0x8e, 0x41, 0x4c, 0x8e, 0x86, 0x42, 0xb2, 0x5c, 0x4c, 0x8e, 0x46, 0x12, 0x6c, 0x28, 0x12, 0x30, 0x7d, 0x8e, 0x46, 0x4e, 0x02, 0x27, 0x1e, 0xca, 0x31, 0xfe, 0x78, 0x28, 0xc7, 0xb8, 0xe2, 0x91, 0x1c, 0xe3, 0x8e, 0x47, 0x72, 0x8c, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf2, 0xf0, 0x3f, 0xeb, 0x9d, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/moredefaults/md.proto000066400000000000000000000041271317075173200225070ustar00rootroot00000000000000// 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 moredefaults; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/example/example.proto"; option (gogoproto.goproto_getters_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.equal_all) = true; message MoreDefaultsB { optional string Field1 = 1; } message MoreDefaultsA { optional int64 Field1 = 1 [default=1234]; optional int64 Field2 = 2 [(gogoproto.nullable) = false]; optional MoreDefaultsB B1 = 3; optional MoreDefaultsB B2 = 4 [(gogoproto.nullable) = false]; optional test.A A1 = 5; optional test.A A2 = 6 [(gogoproto.nullable) = false]; } golang-gogoprotobuf-0.5/test/moredefaults/md_test.go000066400000000000000000000037331317075173200230120ustar00rootroot00000000000000// 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. package moredefaults import ( "testing" test "github.com/gogo/protobuf/test/example" ) func TestDefaults(t *testing.T) { b := MoreDefaultsB{} aa := test.A{} a := &MoreDefaultsA{} b2 := a.GetB2() a2 := a.GetA2() if a.GetField1() != 1234 { t.Fatalf("Field1 wrong") } if a.GetField2() != 0 { t.Fatalf("Field2 wrong") } if a.GetB1() != nil { t.Fatalf("B1 wrong") } if b2.GetField1() != b.GetField1() { t.Fatalf("B2 wrong") } if a.GetA1() != nil { t.Fatalf("A1 wrong") } if a2.GetNumber() != aa.GetNumber() { t.Fatalf("A2 wrong") } } golang-gogoprotobuf-0.5/test/moredefaults/mdpb_test.go000066400000000000000000000132431317075173200233310ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: md.proto /* Package moredefaults is a generated protocol buffer package. It is generated from these files: md.proto It has these top-level messages: MoreDefaultsB MoreDefaultsA */ package moredefaults import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/test/example" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMoreDefaultsBProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMoreDefaultsB(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MoreDefaultsB{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMoreDefaultsAProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMoreDefaultsA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MoreDefaultsA{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMoreDefaultsBJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMoreDefaultsB(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MoreDefaultsB{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMoreDefaultsAJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMoreDefaultsA(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MoreDefaultsA{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMoreDefaultsBProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMoreDefaultsB(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MoreDefaultsB{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMoreDefaultsBProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMoreDefaultsB(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MoreDefaultsB{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMoreDefaultsAProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMoreDefaultsA(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MoreDefaultsA{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMoreDefaultsAProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMoreDefaultsA(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MoreDefaultsA{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/nopackage/000077500000000000000000000000001317075173200202545ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/nopackage/Makefile000066400000000000000000000030211317075173200217100ustar00rootroot00000000000000# 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: (protoc-min-version --version="3.0.0" --proto_path=../../../../../:../../protobuf/:. --gogofast_out=. nopackage.proto) golang-gogoprotobuf-0.5/test/nopackage/nopackage.pb.go000066400000000000000000000221041317075173200231320ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: nopackage.proto /* Package nopackage is a generated protocol buffer package. It is generated from these files: nopackage.proto It has these top-level messages: M */ package nopackage import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type M struct { F map[string]float64 `protobuf:"bytes,1,rep,name=f" json:"f,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` } func (m *M) Reset() { *m = M{} } func (m *M) String() string { return proto.CompactTextString(m) } func (*M) ProtoMessage() {} func (*M) Descriptor() ([]byte, []int) { return fileDescriptorNopackage, []int{0} } func (m *M) GetF() map[string]float64 { if m != nil { return m.F } return nil } func init() { proto.RegisterType((*M)(nil), "M") } func (m *M) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *M) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.F) > 0 { for k := range m.F { dAtA[i] = 0xa i++ v := m.F[k] mapSize := 1 + len(k) + sovNopackage(uint64(len(k))) + 1 + 8 i = encodeVarintNopackage(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintNopackage(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } return i, nil } func encodeVarintNopackage(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *M) Size() (n int) { var l int _ = l if len(m.F) > 0 { for k, v := range m.F { _ = k _ = v mapEntrySize := 1 + len(k) + sovNopackage(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovNopackage(uint64(mapEntrySize)) } } return n } func sovNopackage(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozNopackage(x uint64) (n int) { return sovNopackage(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *M) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowNopackage } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: M: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: M: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field F", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowNopackage } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthNopackage } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.F == nil { m.F = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowNopackage } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowNopackage } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthNopackage } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipNopackage(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthNopackage } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.F[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipNopackage(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthNopackage } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipNopackage(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowNopackage } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowNopackage } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowNopackage } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthNopackage } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowNopackage } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipNopackage(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthNopackage = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowNopackage = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("nopackage.proto", fileDescriptorNopackage) } var fileDescriptorNopackage = []byte{ // 134 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0xcf, 0xcb, 0x2f, 0x48, 0x4c, 0xce, 0x4e, 0x4c, 0x4f, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x57, 0x0a, 0xe2, 0x62, 0xf4, 0x15, 0x12, 0xe7, 0x62, 0x4c, 0x93, 0x60, 0x54, 0x60, 0xd6, 0xe0, 0x36, 0xe2, 0xd4, 0xf3, 0xd5, 0x73, 0x73, 0xcd, 0x2b, 0x29, 0xaa, 0x0c, 0x62, 0x4c, 0x93, 0x32, 0xe1, 0x62, 0x83, 0x70, 0x84, 0x04, 0xb8, 0x98, 0xb3, 0x53, 0x2b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x38, 0x83, 0x40, 0x4c, 0x21, 0x11, 0x2e, 0xd6, 0xb2, 0xc4, 0x9c, 0xd2, 0x54, 0x09, 0x26, 0x05, 0x46, 0x0d, 0xc6, 0x20, 0x08, 0xc7, 0x8a, 0xc9, 0x82, 0xd1, 0x89, 0xe7, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x4c, 0x62, 0x03, 0x5b, 0x64, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x62, 0x62, 0xb2, 0xed, 0x7b, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/nopackage/nopackage.proto000066400000000000000000000027471317075173200233030ustar00rootroot00000000000000// 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 = "proto3"; message M { map f = 1; } golang-gogoprotobuf-0.5/test/nopackage/nopackage_test.go000066400000000000000000000030351317075173200235730ustar00rootroot00000000000000// 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. package nopackage import ( "testing" ) func TestNoPackage(t *testing.T) { //should compile _ = (&M{}).Marshal } golang-gogoprotobuf-0.5/test/oneof/000077500000000000000000000000001317075173200174325ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof/Makefile000066400000000000000000000031561317075173200210770ustar00rootroot00000000000000# 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-combo go install github.com/gogo/protobuf/protoc-gen-gogo protoc-gen-combo --version="2.6.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. one.proto golang-gogoprotobuf-0.5/test/oneof/combos/000077500000000000000000000000001317075173200207145ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof/combos/both/000077500000000000000000000000001317075173200216505ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof/combos/both/one.pb.go000066400000000000000000004614621317075173200233750ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/both/one.proto It has these top-level messages: Subby AllTypesOneOf TwoOneofs CustomOneof */ package one import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test_casttype "github.com/gogo/protobuf/test/casttype" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Subby struct { Sub *string `protobuf:"bytes,1,opt,name=sub" json:"sub,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Subby) Reset() { *m = Subby{} } func (*Subby) ProtoMessage() {} func (*Subby) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{0} } type AllTypesOneOf struct { // Types that are valid to be assigned to TestOneof: // *AllTypesOneOf_Field1 // *AllTypesOneOf_Field2 // *AllTypesOneOf_Field3 // *AllTypesOneOf_Field4 // *AllTypesOneOf_Field5 // *AllTypesOneOf_Field6 // *AllTypesOneOf_Field7 // *AllTypesOneOf_Field8 // *AllTypesOneOf_Field9 // *AllTypesOneOf_Field10 // *AllTypesOneOf_Field11 // *AllTypesOneOf_Field12 // *AllTypesOneOf_Field13 // *AllTypesOneOf_Field14 // *AllTypesOneOf_Field15 // *AllTypesOneOf_SubMessage TestOneof isAllTypesOneOf_TestOneof `protobuf_oneof:"test_oneof"` XXX_unrecognized []byte `json:"-"` } func (m *AllTypesOneOf) Reset() { *m = AllTypesOneOf{} } func (*AllTypesOneOf) ProtoMessage() {} func (*AllTypesOneOf) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{1} } type isAllTypesOneOf_TestOneof interface { isAllTypesOneOf_TestOneof() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type AllTypesOneOf_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,oneof"` } type AllTypesOneOf_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,oneof"` } type AllTypesOneOf_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,oneof"` } type AllTypesOneOf_Field4 struct { Field4 int64 `protobuf:"varint,4,opt,name=Field4,oneof"` } type AllTypesOneOf_Field5 struct { Field5 uint32 `protobuf:"varint,5,opt,name=Field5,oneof"` } type AllTypesOneOf_Field6 struct { Field6 uint64 `protobuf:"varint,6,opt,name=Field6,oneof"` } type AllTypesOneOf_Field7 struct { Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7,oneof"` } type AllTypesOneOf_Field8 struct { Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8,oneof"` } type AllTypesOneOf_Field9 struct { Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9,oneof"` } type AllTypesOneOf_Field10 struct { Field10 int32 `protobuf:"fixed32,10,opt,name=Field10,oneof"` } type AllTypesOneOf_Field11 struct { Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11,oneof"` } type AllTypesOneOf_Field12 struct { Field12 int64 `protobuf:"fixed64,12,opt,name=Field12,oneof"` } type AllTypesOneOf_Field13 struct { Field13 bool `protobuf:"varint,13,opt,name=Field13,oneof"` } type AllTypesOneOf_Field14 struct { Field14 string `protobuf:"bytes,14,opt,name=Field14,oneof"` } type AllTypesOneOf_Field15 struct { Field15 []byte `protobuf:"bytes,15,opt,name=Field15,oneof"` } type AllTypesOneOf_SubMessage struct { SubMessage *Subby `protobuf:"bytes,16,opt,name=sub_message,json=subMessage,oneof"` } func (*AllTypesOneOf_Field1) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field2) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field3) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field4) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field5) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field6) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field7) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field8) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field9) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field10) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field11) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field12) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field13) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field14) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field15) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_SubMessage) isAllTypesOneOf_TestOneof() {} func (m *AllTypesOneOf) GetTestOneof() isAllTypesOneOf_TestOneof { if m != nil { return m.TestOneof } return nil } func (m *AllTypesOneOf) GetField1() float64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field1); ok { return x.Field1 } return 0 } func (m *AllTypesOneOf) GetField2() float32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field2); ok { return x.Field2 } return 0 } func (m *AllTypesOneOf) GetField3() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field3); ok { return x.Field3 } return 0 } func (m *AllTypesOneOf) GetField4() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field4); ok { return x.Field4 } return 0 } func (m *AllTypesOneOf) GetField5() uint32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field5); ok { return x.Field5 } return 0 } func (m *AllTypesOneOf) GetField6() uint64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field6); ok { return x.Field6 } return 0 } func (m *AllTypesOneOf) GetField7() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field7); ok { return x.Field7 } return 0 } func (m *AllTypesOneOf) GetField8() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field8); ok { return x.Field8 } return 0 } func (m *AllTypesOneOf) GetField9() uint32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field9); ok { return x.Field9 } return 0 } func (m *AllTypesOneOf) GetField10() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field10); ok { return x.Field10 } return 0 } func (m *AllTypesOneOf) GetField11() uint64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field11); ok { return x.Field11 } return 0 } func (m *AllTypesOneOf) GetField12() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field12); ok { return x.Field12 } return 0 } func (m *AllTypesOneOf) GetField13() bool { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field13); ok { return x.Field13 } return false } func (m *AllTypesOneOf) GetField14() string { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field14); ok { return x.Field14 } return "" } func (m *AllTypesOneOf) GetField15() []byte { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field15); ok { return x.Field15 } return nil } func (m *AllTypesOneOf) GetSubMessage() *Subby { if x, ok := m.GetTestOneof().(*AllTypesOneOf_SubMessage); ok { return x.SubMessage } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*AllTypesOneOf) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _AllTypesOneOf_OneofMarshaler, _AllTypesOneOf_OneofUnmarshaler, _AllTypesOneOf_OneofSizer, []interface{}{ (*AllTypesOneOf_Field1)(nil), (*AllTypesOneOf_Field2)(nil), (*AllTypesOneOf_Field3)(nil), (*AllTypesOneOf_Field4)(nil), (*AllTypesOneOf_Field5)(nil), (*AllTypesOneOf_Field6)(nil), (*AllTypesOneOf_Field7)(nil), (*AllTypesOneOf_Field8)(nil), (*AllTypesOneOf_Field9)(nil), (*AllTypesOneOf_Field10)(nil), (*AllTypesOneOf_Field11)(nil), (*AllTypesOneOf_Field12)(nil), (*AllTypesOneOf_Field13)(nil), (*AllTypesOneOf_Field14)(nil), (*AllTypesOneOf_Field15)(nil), (*AllTypesOneOf_SubMessage)(nil), } } func _AllTypesOneOf_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*AllTypesOneOf) // test_oneof switch x := m.TestOneof.(type) { case *AllTypesOneOf_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *AllTypesOneOf_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *AllTypesOneOf_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case *AllTypesOneOf_Field4: _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field4)) case *AllTypesOneOf_Field5: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field5)) case *AllTypesOneOf_Field6: _ = b.EncodeVarint(6<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field6)) case *AllTypesOneOf_Field7: _ = b.EncodeVarint(7<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Field7)) case *AllTypesOneOf_Field8: _ = b.EncodeVarint(8<<3 | proto.WireVarint) _ = b.EncodeZigzag64(uint64(x.Field8)) case *AllTypesOneOf_Field9: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field9)) case *AllTypesOneOf_Field10: _ = b.EncodeVarint(10<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field10)) case *AllTypesOneOf_Field11: _ = b.EncodeVarint(11<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field11)) case *AllTypesOneOf_Field12: _ = b.EncodeVarint(12<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field12)) case *AllTypesOneOf_Field13: t := uint64(0) if x.Field13 { t = 1 } _ = b.EncodeVarint(13<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *AllTypesOneOf_Field14: _ = b.EncodeVarint(14<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field14) case *AllTypesOneOf_Field15: _ = b.EncodeVarint(15<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field15) case *AllTypesOneOf_SubMessage: _ = b.EncodeVarint(16<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage); err != nil { return err } case nil: default: return fmt.Errorf("AllTypesOneOf.TestOneof has unexpected type %T", x) } return nil } func _AllTypesOneOf_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*AllTypesOneOf) switch tag { case 1: // test_oneof.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field1{math.Float64frombits(x)} return true, err case 2: // test_oneof.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // test_oneof.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field3{int32(x)} return true, err case 4: // test_oneof.Field4 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field4{int64(x)} return true, err case 5: // test_oneof.Field5 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field5{uint32(x)} return true, err case 6: // test_oneof.Field6 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field6{x} return true, err case 7: // test_oneof.Field7 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.TestOneof = &AllTypesOneOf_Field7{int32(x)} return true, err case 8: // test_oneof.Field8 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag64() m.TestOneof = &AllTypesOneOf_Field8{int64(x)} return true, err case 9: // test_oneof.Field9 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field9{uint32(x)} return true, err case 10: // test_oneof.Field10 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field10{int32(x)} return true, err case 11: // test_oneof.Field11 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field11{x} return true, err case 12: // test_oneof.Field12 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field12{int64(x)} return true, err case 13: // test_oneof.Field13 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field13{x != 0} return true, err case 14: // test_oneof.Field14 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.TestOneof = &AllTypesOneOf_Field14{x} return true, err case 15: // test_oneof.Field15 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.TestOneof = &AllTypesOneOf_Field15{x} return true, err case 16: // test_oneof.sub_message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.TestOneof = &AllTypesOneOf_SubMessage{msg} return true, err default: return false, nil } } func _AllTypesOneOf_OneofSizer(msg proto.Message) (n int) { m := msg.(*AllTypesOneOf) // test_oneof switch x := m.TestOneof.(type) { case *AllTypesOneOf_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case *AllTypesOneOf_Field4: n += proto.SizeVarint(4<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field4)) case *AllTypesOneOf_Field5: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field5)) case *AllTypesOneOf_Field6: n += proto.SizeVarint(6<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field6)) case *AllTypesOneOf_Field7: n += proto.SizeVarint(7<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.Field7) << 1) ^ uint32((int32(x.Field7) >> 31)))) case *AllTypesOneOf_Field8: n += proto.SizeVarint(8<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(uint64(x.Field8<<1) ^ uint64((int64(x.Field8) >> 63)))) case *AllTypesOneOf_Field9: n += proto.SizeVarint(9<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field10: n += proto.SizeVarint(10<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field11: n += proto.SizeVarint(11<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field12: n += proto.SizeVarint(12<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field13: n += proto.SizeVarint(13<<3 | proto.WireVarint) n += 1 case *AllTypesOneOf_Field14: n += proto.SizeVarint(14<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field14))) n += len(x.Field14) case *AllTypesOneOf_Field15: n += proto.SizeVarint(15<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field15))) n += len(x.Field15) case *AllTypesOneOf_SubMessage: s := proto.Size(x.SubMessage) n += proto.SizeVarint(16<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type TwoOneofs struct { // Types that are valid to be assigned to One: // *TwoOneofs_Field1 // *TwoOneofs_Field2 // *TwoOneofs_Field3 One isTwoOneofs_One `protobuf_oneof:"one"` // Types that are valid to be assigned to Two: // *TwoOneofs_Field34 // *TwoOneofs_Field35 // *TwoOneofs_SubMessage2 Two isTwoOneofs_Two `protobuf_oneof:"two"` XXX_unrecognized []byte `json:"-"` } func (m *TwoOneofs) Reset() { *m = TwoOneofs{} } func (*TwoOneofs) ProtoMessage() {} func (*TwoOneofs) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{2} } type isTwoOneofs_One interface { isTwoOneofs_One() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type isTwoOneofs_Two interface { isTwoOneofs_Two() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type TwoOneofs_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,oneof"` } type TwoOneofs_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,oneof"` } type TwoOneofs_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,oneof"` } type TwoOneofs_Field34 struct { Field34 string `protobuf:"bytes,34,opt,name=Field34,oneof"` } type TwoOneofs_Field35 struct { Field35 []byte `protobuf:"bytes,35,opt,name=Field35,oneof"` } type TwoOneofs_SubMessage2 struct { SubMessage2 *Subby `protobuf:"bytes,36,opt,name=sub_message2,json=subMessage2,oneof"` } func (*TwoOneofs_Field1) isTwoOneofs_One() {} func (*TwoOneofs_Field2) isTwoOneofs_One() {} func (*TwoOneofs_Field3) isTwoOneofs_One() {} func (*TwoOneofs_Field34) isTwoOneofs_Two() {} func (*TwoOneofs_Field35) isTwoOneofs_Two() {} func (*TwoOneofs_SubMessage2) isTwoOneofs_Two() {} func (m *TwoOneofs) GetOne() isTwoOneofs_One { if m != nil { return m.One } return nil } func (m *TwoOneofs) GetTwo() isTwoOneofs_Two { if m != nil { return m.Two } return nil } func (m *TwoOneofs) GetField1() float64 { if x, ok := m.GetOne().(*TwoOneofs_Field1); ok { return x.Field1 } return 0 } func (m *TwoOneofs) GetField2() float32 { if x, ok := m.GetOne().(*TwoOneofs_Field2); ok { return x.Field2 } return 0 } func (m *TwoOneofs) GetField3() int32 { if x, ok := m.GetOne().(*TwoOneofs_Field3); ok { return x.Field3 } return 0 } func (m *TwoOneofs) GetField34() string { if x, ok := m.GetTwo().(*TwoOneofs_Field34); ok { return x.Field34 } return "" } func (m *TwoOneofs) GetField35() []byte { if x, ok := m.GetTwo().(*TwoOneofs_Field35); ok { return x.Field35 } return nil } func (m *TwoOneofs) GetSubMessage2() *Subby { if x, ok := m.GetTwo().(*TwoOneofs_SubMessage2); ok { return x.SubMessage2 } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*TwoOneofs) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _TwoOneofs_OneofMarshaler, _TwoOneofs_OneofUnmarshaler, _TwoOneofs_OneofSizer, []interface{}{ (*TwoOneofs_Field1)(nil), (*TwoOneofs_Field2)(nil), (*TwoOneofs_Field3)(nil), (*TwoOneofs_Field34)(nil), (*TwoOneofs_Field35)(nil), (*TwoOneofs_SubMessage2)(nil), } } func _TwoOneofs_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*TwoOneofs) // one switch x := m.One.(type) { case *TwoOneofs_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *TwoOneofs_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *TwoOneofs_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case nil: default: return fmt.Errorf("TwoOneofs.One has unexpected type %T", x) } // two switch x := m.Two.(type) { case *TwoOneofs_Field34: _ = b.EncodeVarint(34<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field34) case *TwoOneofs_Field35: _ = b.EncodeVarint(35<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field35) case *TwoOneofs_SubMessage2: _ = b.EncodeVarint(36<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage2); err != nil { return err } case nil: default: return fmt.Errorf("TwoOneofs.Two has unexpected type %T", x) } return nil } func _TwoOneofs_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*TwoOneofs) switch tag { case 1: // one.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.One = &TwoOneofs_Field1{math.Float64frombits(x)} return true, err case 2: // one.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.One = &TwoOneofs_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // one.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.One = &TwoOneofs_Field3{int32(x)} return true, err case 34: // two.Field34 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Two = &TwoOneofs_Field34{x} return true, err case 35: // two.Field35 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.Two = &TwoOneofs_Field35{x} return true, err case 36: // two.sub_message2 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.Two = &TwoOneofs_SubMessage2{msg} return true, err default: return false, nil } } func _TwoOneofs_OneofSizer(msg proto.Message) (n int) { m := msg.(*TwoOneofs) // one switch x := m.One.(type) { case *TwoOneofs_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *TwoOneofs_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *TwoOneofs_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } // two switch x := m.Two.(type) { case *TwoOneofs_Field34: n += proto.SizeVarint(34<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field34))) n += len(x.Field34) case *TwoOneofs_Field35: n += proto.SizeVarint(35<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field35))) n += len(x.Field35) case *TwoOneofs_SubMessage2: s := proto.Size(x.SubMessage2) n += proto.SizeVarint(36<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type CustomOneof struct { // Types that are valid to be assigned to Custom: // *CustomOneof_Stringy // *CustomOneof_CustomType // *CustomOneof_CastType // *CustomOneof_MyCustomName Custom isCustomOneof_Custom `protobuf_oneof:"custom"` XXX_unrecognized []byte `json:"-"` } func (m *CustomOneof) Reset() { *m = CustomOneof{} } func (*CustomOneof) ProtoMessage() {} func (*CustomOneof) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{3} } type isCustomOneof_Custom interface { isCustomOneof_Custom() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type CustomOneof_Stringy struct { Stringy string `protobuf:"bytes,34,opt,name=Stringy,oneof"` } type CustomOneof_CustomType struct { CustomType github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,35,opt,name=CustomType,oneof,customtype=github.com/gogo/protobuf/test/custom.Uint128"` } type CustomOneof_CastType struct { CastType github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,36,opt,name=CastType,oneof,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type"` } type CustomOneof_MyCustomName struct { MyCustomName int64 `protobuf:"varint,37,opt,name=CustomName,oneof"` } func (*CustomOneof_Stringy) isCustomOneof_Custom() {} func (*CustomOneof_CustomType) isCustomOneof_Custom() {} func (*CustomOneof_CastType) isCustomOneof_Custom() {} func (*CustomOneof_MyCustomName) isCustomOneof_Custom() {} func (m *CustomOneof) GetCustom() isCustomOneof_Custom { if m != nil { return m.Custom } return nil } func (m *CustomOneof) GetStringy() string { if x, ok := m.GetCustom().(*CustomOneof_Stringy); ok { return x.Stringy } return "" } func (m *CustomOneof) GetCastType() github_com_gogo_protobuf_test_casttype.MyUint64Type { if x, ok := m.GetCustom().(*CustomOneof_CastType); ok { return x.CastType } return 0 } func (m *CustomOneof) GetMyCustomName() int64 { if x, ok := m.GetCustom().(*CustomOneof_MyCustomName); ok { return x.MyCustomName } return 0 } // XXX_OneofFuncs is for the internal use of the proto package. func (*CustomOneof) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _CustomOneof_OneofMarshaler, _CustomOneof_OneofUnmarshaler, _CustomOneof_OneofSizer, []interface{}{ (*CustomOneof_Stringy)(nil), (*CustomOneof_CustomType)(nil), (*CustomOneof_CastType)(nil), (*CustomOneof_MyCustomName)(nil), } } func _CustomOneof_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*CustomOneof) // custom switch x := m.Custom.(type) { case *CustomOneof_Stringy: _ = b.EncodeVarint(34<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Stringy) case *CustomOneof_CustomType: _ = b.EncodeVarint(35<<3 | proto.WireBytes) dAtA, err := x.CustomType.Marshal() if err != nil { return err } _ = b.EncodeRawBytes(dAtA) case *CustomOneof_CastType: _ = b.EncodeVarint(36<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.CastType)) case *CustomOneof_MyCustomName: _ = b.EncodeVarint(37<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.MyCustomName)) case nil: default: return fmt.Errorf("CustomOneof.Custom has unexpected type %T", x) } return nil } func _CustomOneof_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*CustomOneof) switch tag { case 34: // custom.Stringy if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Custom = &CustomOneof_Stringy{x} return true, err case 35: // custom.CustomType if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } var cc github_com_gogo_protobuf_test_custom.Uint128 c := &cc err = c.Unmarshal(x) m.Custom = &CustomOneof_CustomType{*c} return true, err case 36: // custom.CastType if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Custom = &CustomOneof_CastType{github_com_gogo_protobuf_test_casttype.MyUint64Type(x)} return true, err case 37: // custom.CustomName if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Custom = &CustomOneof_MyCustomName{int64(x)} return true, err default: return false, nil } } func _CustomOneof_OneofSizer(msg proto.Message) (n int) { m := msg.(*CustomOneof) // custom switch x := m.Custom.(type) { case *CustomOneof_Stringy: n += proto.SizeVarint(34<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Stringy))) n += len(x.Stringy) case *CustomOneof_CustomType: n += proto.SizeVarint(35<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(x.CustomType.Size())) n += x.CustomType.Size() case *CustomOneof_CastType: n += proto.SizeVarint(36<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.CastType)) case *CustomOneof_MyCustomName: n += proto.SizeVarint(37<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.MyCustomName)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*Subby)(nil), "one.Subby") proto.RegisterType((*AllTypesOneOf)(nil), "one.AllTypesOneOf") proto.RegisterType((*TwoOneofs)(nil), "one.TwoOneofs") proto.RegisterType((*CustomOneof)(nil), "one.CustomOneof") } func (this *Subby) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *AllTypesOneOf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *TwoOneofs) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *CustomOneof) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func OneDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4116 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x24, 0xd7, 0x55, 0x56, 0xcf, 0x8f, 0x34, 0x73, 0x66, 0x34, 0x6a, 0x5d, 0x69, 0x77, 0x67, 0xe5, 0x78, 0x76, 0x57, 0xfe, 0x93, 0xed, 0x58, 0xb2, 0xb5, 0xd2, 0xfe, 0xcc, 0x92, 0x98, 0x91, 0x34, 0xab, 0xd5, 0x22, 0x69, 0x94, 0x96, 0x14, 0xaf, 0xc3, 0x43, 0x57, 0xab, 0xe7, 0xce, 0xa8, 0x77, 0x7b, 0xba, 0x3b, 0xdd, 0x3d, 0xbb, 0xd6, 0x16, 0x0f, 0x4b, 0x99, 0x9f, 0x4a, 0x51, 0xfc, 0x05, 0xaa, 0x48, 0x8c, 0x63, 0x20, 0x55, 0xe0, 0x90, 0xf0, 0x93, 0x10, 0x08, 0x81, 0x27, 0x5e, 0x02, 0x7e, 0xa2, 0x9c, 0x37, 0x8a, 0xa2, 0x5c, 0x5e, 0xe1, 0x2a, 0x02, 0x18, 0x30, 0xc4, 0x54, 0xa5, 0xf0, 0x0b, 0x75, 0xff, 0xba, 0x7b, 0x7e, 0xb4, 0x3d, 0x4a, 0xc5, 0xce, 0x93, 0xd4, 0xe7, 0x9c, 0xef, 0xeb, 0x73, 0xcf, 0x3d, 0xf7, 0x9e, 0x73, 0xef, 0x34, 0x7c, 0xed, 0x12, 0x9c, 0x6d, 0xda, 0x76, 0xd3, 0xc4, 0x73, 0x8e, 0x6b, 0xfb, 0xf6, 0x5e, 0xbb, 0x31, 0x57, 0xc7, 0x9e, 0xee, 0x1a, 0x8e, 0x6f, 0xbb, 0xb3, 0x54, 0x86, 0xc6, 0x98, 0xc5, 0xac, 0xb0, 0x98, 0xde, 0x80, 0xf1, 0xab, 0x86, 0x89, 0x57, 0x02, 0xc3, 0x6d, 0xec, 0xa3, 0x4b, 0x90, 0x6a, 0x18, 0x26, 0x2e, 0x4a, 0x67, 0x93, 0x33, 0xb9, 0xf9, 0x47, 0x67, 0xbb, 0x40, 0xb3, 0x9d, 0x88, 0x2d, 0x22, 0x56, 0x28, 0x62, 0xfa, 0x9d, 0x14, 0x4c, 0xf4, 0xd1, 0x22, 0x04, 0x29, 0x4b, 0x6b, 0x11, 0x46, 0x69, 0x26, 0xab, 0xd0, 0xff, 0x51, 0x11, 0x46, 0x1c, 0x4d, 0xbf, 0xa5, 0x35, 0x71, 0x31, 0x41, 0xc5, 0xe2, 0x11, 0x95, 0x00, 0xea, 0xd8, 0xc1, 0x56, 0x1d, 0x5b, 0xfa, 0x41, 0x31, 0x79, 0x36, 0x39, 0x93, 0x55, 0x22, 0x12, 0xf4, 0x34, 0x8c, 0x3b, 0xed, 0x3d, 0xd3, 0xd0, 0xd5, 0x88, 0x19, 0x9c, 0x4d, 0xce, 0xa4, 0x15, 0x99, 0x29, 0x56, 0x42, 0xe3, 0x27, 0x60, 0xec, 0x0e, 0xd6, 0x6e, 0x45, 0x4d, 0x73, 0xd4, 0xb4, 0x40, 0xc4, 0x11, 0xc3, 0x65, 0xc8, 0xb7, 0xb0, 0xe7, 0x69, 0x4d, 0xac, 0xfa, 0x07, 0x0e, 0x2e, 0xa6, 0xe8, 0xe8, 0xcf, 0xf6, 0x8c, 0xbe, 0x7b, 0xe4, 0x39, 0x8e, 0xda, 0x39, 0x70, 0x30, 0xaa, 0x40, 0x16, 0x5b, 0xed, 0x16, 0x63, 0x48, 0x1f, 0x11, 0xbf, 0xaa, 0xd5, 0x6e, 0x75, 0xb3, 0x64, 0x08, 0x8c, 0x53, 0x8c, 0x78, 0xd8, 0xbd, 0x6d, 0xe8, 0xb8, 0x38, 0x4c, 0x09, 0x9e, 0xe8, 0x21, 0xd8, 0x66, 0xfa, 0x6e, 0x0e, 0x81, 0x43, 0xcb, 0x90, 0xc5, 0x2f, 0xf9, 0xd8, 0xf2, 0x0c, 0xdb, 0x2a, 0x8e, 0x50, 0x92, 0xc7, 0xfa, 0xcc, 0x22, 0x36, 0xeb, 0xdd, 0x14, 0x21, 0x0e, 0x5d, 0x80, 0x11, 0xdb, 0xf1, 0x0d, 0xdb, 0xf2, 0x8a, 0x99, 0xb3, 0xd2, 0x4c, 0x6e, 0xfe, 0x63, 0x7d, 0x13, 0xa1, 0xc6, 0x6c, 0x14, 0x61, 0x8c, 0xd6, 0x40, 0xf6, 0xec, 0xb6, 0xab, 0x63, 0x55, 0xb7, 0xeb, 0x58, 0x35, 0xac, 0x86, 0x5d, 0xcc, 0x52, 0x82, 0x33, 0xbd, 0x03, 0xa1, 0x86, 0xcb, 0x76, 0x1d, 0xaf, 0x59, 0x0d, 0x5b, 0x29, 0x78, 0x1d, 0xcf, 0xe8, 0x24, 0x0c, 0x7b, 0x07, 0x96, 0xaf, 0xbd, 0x54, 0xcc, 0xd3, 0x0c, 0xe1, 0x4f, 0xd3, 0x7f, 0x35, 0x0c, 0x63, 0x83, 0xa4, 0xd8, 0x15, 0x48, 0x37, 0xc8, 0x28, 0x8b, 0x89, 0xe3, 0xc4, 0x80, 0x61, 0x3a, 0x83, 0x38, 0xfc, 0x43, 0x06, 0xb1, 0x02, 0x39, 0x0b, 0x7b, 0x3e, 0xae, 0xb3, 0x8c, 0x48, 0x0e, 0x98, 0x53, 0xc0, 0x40, 0xbd, 0x29, 0x95, 0xfa, 0xa1, 0x52, 0xea, 0x06, 0x8c, 0x05, 0x2e, 0xa9, 0xae, 0x66, 0x35, 0x45, 0x6e, 0xce, 0xc5, 0x79, 0x32, 0x5b, 0x15, 0x38, 0x85, 0xc0, 0x94, 0x02, 0xee, 0x78, 0x46, 0x2b, 0x00, 0xb6, 0x85, 0xed, 0x86, 0x5a, 0xc7, 0xba, 0x59, 0xcc, 0x1c, 0x11, 0xa5, 0x1a, 0x31, 0xe9, 0x89, 0x92, 0xcd, 0xa4, 0xba, 0x89, 0x2e, 0x87, 0xa9, 0x36, 0x72, 0x44, 0xa6, 0x6c, 0xb0, 0x45, 0xd6, 0x93, 0x6d, 0xbb, 0x50, 0x70, 0x31, 0xc9, 0x7b, 0x5c, 0xe7, 0x23, 0xcb, 0x52, 0x27, 0x66, 0x63, 0x47, 0xa6, 0x70, 0x18, 0x1b, 0xd8, 0xa8, 0x1b, 0x7d, 0x44, 0x8f, 0x40, 0x20, 0x50, 0x69, 0x5a, 0x01, 0xdd, 0x85, 0xf2, 0x42, 0xb8, 0xa9, 0xb5, 0xf0, 0xd4, 0x5d, 0x28, 0x74, 0x86, 0x07, 0x4d, 0x42, 0xda, 0xf3, 0x35, 0xd7, 0xa7, 0x59, 0x98, 0x56, 0xd8, 0x03, 0x92, 0x21, 0x89, 0xad, 0x3a, 0xdd, 0xe5, 0xd2, 0x0a, 0xf9, 0x17, 0xfd, 0x64, 0x38, 0xe0, 0x24, 0x1d, 0xf0, 0xe3, 0xbd, 0x33, 0xda, 0xc1, 0xdc, 0x3d, 0xee, 0xa9, 0x8b, 0x30, 0xda, 0x31, 0x80, 0x41, 0x5f, 0x3d, 0xfd, 0x33, 0x70, 0xa2, 0x2f, 0x35, 0xba, 0x01, 0x93, 0x6d, 0xcb, 0xb0, 0x7c, 0xec, 0x3a, 0x2e, 0x26, 0x19, 0xcb, 0x5e, 0x55, 0xfc, 0x97, 0x91, 0x23, 0x72, 0x6e, 0x37, 0x6a, 0xcd, 0x58, 0x94, 0x89, 0x76, 0xaf, 0xf0, 0xa9, 0x6c, 0xe6, 0x7b, 0x23, 0xf2, 0xbd, 0x7b, 0xf7, 0xee, 0x25, 0xa6, 0xbf, 0x30, 0x0c, 0x93, 0xfd, 0xd6, 0x4c, 0xdf, 0xe5, 0x7b, 0x12, 0x86, 0xad, 0x76, 0x6b, 0x0f, 0xbb, 0x34, 0x48, 0x69, 0x85, 0x3f, 0xa1, 0x0a, 0xa4, 0x4d, 0x6d, 0x0f, 0x9b, 0xc5, 0xd4, 0x59, 0x69, 0xa6, 0x30, 0xff, 0xf4, 0x40, 0xab, 0x72, 0x76, 0x9d, 0x40, 0x14, 0x86, 0x44, 0x9f, 0x84, 0x14, 0xdf, 0xa2, 0x09, 0xc3, 0x53, 0x83, 0x31, 0x90, 0xb5, 0xa4, 0x50, 0x1c, 0x7a, 0x08, 0xb2, 0xe4, 0x2f, 0xcb, 0x8d, 0x61, 0xea, 0x73, 0x86, 0x08, 0x48, 0x5e, 0xa0, 0x29, 0xc8, 0xd0, 0x65, 0x52, 0xc7, 0xa2, 0xb4, 0x05, 0xcf, 0x24, 0xb1, 0xea, 0xb8, 0xa1, 0xb5, 0x4d, 0x5f, 0xbd, 0xad, 0x99, 0x6d, 0x4c, 0x13, 0x3e, 0xab, 0xe4, 0xb9, 0xf0, 0xd3, 0x44, 0x86, 0xce, 0x40, 0x8e, 0xad, 0x2a, 0xc3, 0xaa, 0xe3, 0x97, 0xe8, 0xee, 0x99, 0x56, 0xd8, 0x42, 0x5b, 0x23, 0x12, 0xf2, 0xfa, 0x9b, 0x9e, 0x6d, 0x89, 0xd4, 0xa4, 0xaf, 0x20, 0x02, 0xfa, 0xfa, 0x8b, 0xdd, 0x1b, 0xf7, 0xc3, 0xfd, 0x87, 0xd7, 0x9d, 0x53, 0xd3, 0xdf, 0x4a, 0x40, 0x8a, 0xee, 0x17, 0x63, 0x90, 0xdb, 0x79, 0x71, 0xab, 0xaa, 0xae, 0xd4, 0x76, 0x97, 0xd6, 0xab, 0xb2, 0x84, 0x0a, 0x00, 0x54, 0x70, 0x75, 0xbd, 0x56, 0xd9, 0x91, 0x13, 0xc1, 0xf3, 0xda, 0xe6, 0xce, 0x85, 0x05, 0x39, 0x19, 0x00, 0x76, 0x99, 0x20, 0x15, 0x35, 0x38, 0x3f, 0x2f, 0xa7, 0x91, 0x0c, 0x79, 0x46, 0xb0, 0x76, 0xa3, 0xba, 0x72, 0x61, 0x41, 0x1e, 0xee, 0x94, 0x9c, 0x9f, 0x97, 0x47, 0xd0, 0x28, 0x64, 0xa9, 0x64, 0xa9, 0x56, 0x5b, 0x97, 0x33, 0x01, 0xe7, 0xf6, 0x8e, 0xb2, 0xb6, 0xb9, 0x2a, 0x67, 0x03, 0xce, 0x55, 0xa5, 0xb6, 0xbb, 0x25, 0x43, 0xc0, 0xb0, 0x51, 0xdd, 0xde, 0xae, 0xac, 0x56, 0xe5, 0x5c, 0x60, 0xb1, 0xf4, 0xe2, 0x4e, 0x75, 0x5b, 0xce, 0x77, 0xb8, 0x75, 0x7e, 0x5e, 0x1e, 0x0d, 0x5e, 0x51, 0xdd, 0xdc, 0xdd, 0x90, 0x0b, 0x68, 0x1c, 0x46, 0xd9, 0x2b, 0x84, 0x13, 0x63, 0x5d, 0xa2, 0x0b, 0x0b, 0xb2, 0x1c, 0x3a, 0xc2, 0x58, 0xc6, 0x3b, 0x04, 0x17, 0x16, 0x64, 0x34, 0xbd, 0x0c, 0x69, 0x9a, 0x5d, 0x08, 0x41, 0x61, 0xbd, 0xb2, 0x54, 0x5d, 0x57, 0x6b, 0x5b, 0x3b, 0x6b, 0xb5, 0xcd, 0xca, 0xba, 0x2c, 0x85, 0x32, 0xa5, 0xfa, 0xa9, 0xdd, 0x35, 0xa5, 0xba, 0x22, 0x27, 0xa2, 0xb2, 0xad, 0x6a, 0x65, 0xa7, 0xba, 0x22, 0x27, 0xa7, 0x75, 0x98, 0xec, 0xb7, 0x4f, 0xf6, 0x5d, 0x19, 0x91, 0x29, 0x4e, 0x1c, 0x31, 0xc5, 0x94, 0xab, 0x67, 0x8a, 0xbf, 0x2c, 0xc1, 0x44, 0x9f, 0x5a, 0xd1, 0xf7, 0x25, 0xcf, 0x43, 0x9a, 0xa5, 0x28, 0xab, 0x9e, 0x4f, 0xf6, 0x2d, 0x3a, 0x34, 0x61, 0x7b, 0x2a, 0x28, 0xc5, 0x45, 0x3b, 0x88, 0xe4, 0x11, 0x1d, 0x04, 0xa1, 0xe8, 0x71, 0xf2, 0x65, 0x09, 0x8a, 0x47, 0x71, 0xc7, 0x6c, 0x14, 0x89, 0x8e, 0x8d, 0xe2, 0x4a, 0xb7, 0x03, 0xe7, 0x8e, 0x1e, 0x43, 0x8f, 0x17, 0xaf, 0x4b, 0x70, 0xb2, 0x7f, 0xa3, 0xd5, 0xd7, 0x87, 0x4f, 0xc2, 0x70, 0x0b, 0xfb, 0xfb, 0xb6, 0x68, 0x36, 0x1e, 0xef, 0x53, 0xc2, 0x88, 0xba, 0x3b, 0x56, 0x1c, 0x15, 0xad, 0x81, 0xc9, 0xa3, 0xba, 0x25, 0xe6, 0x4d, 0x8f, 0xa7, 0x9f, 0x4b, 0xc0, 0x89, 0xbe, 0xe4, 0x7d, 0x1d, 0x7d, 0x18, 0xc0, 0xb0, 0x9c, 0xb6, 0xcf, 0x1a, 0x0a, 0xb6, 0x3f, 0x65, 0xa9, 0x84, 0xae, 0x7d, 0xb2, 0xf7, 0xb4, 0xfd, 0x40, 0x9f, 0xa4, 0x7a, 0x60, 0x22, 0x6a, 0x70, 0x29, 0x74, 0x34, 0x45, 0x1d, 0x2d, 0x1d, 0x31, 0xd2, 0x9e, 0x5a, 0xfd, 0x2c, 0xc8, 0xba, 0x69, 0x60, 0xcb, 0x57, 0x3d, 0xdf, 0xc5, 0x5a, 0xcb, 0xb0, 0x9a, 0x74, 0x03, 0xce, 0x94, 0xd3, 0x0d, 0xcd, 0xf4, 0xb0, 0x32, 0xc6, 0xd4, 0xdb, 0x42, 0x4b, 0x10, 0xb4, 0xc6, 0xb9, 0x11, 0xc4, 0x70, 0x07, 0x82, 0xa9, 0x03, 0xc4, 0xf4, 0x37, 0x33, 0x90, 0x8b, 0xb4, 0xa5, 0xe8, 0x1c, 0xe4, 0x6f, 0x6a, 0xb7, 0x35, 0x55, 0x1c, 0x35, 0x58, 0x24, 0x72, 0x44, 0xb6, 0xc5, 0x8f, 0x1b, 0xcf, 0xc2, 0x24, 0x35, 0xb1, 0xdb, 0x3e, 0x76, 0x55, 0xdd, 0xd4, 0x3c, 0x8f, 0x06, 0x2d, 0x43, 0x4d, 0x11, 0xd1, 0xd5, 0x88, 0x6a, 0x59, 0x68, 0xd0, 0x22, 0x4c, 0x50, 0x44, 0xab, 0x6d, 0xfa, 0x86, 0x63, 0x62, 0x95, 0x1c, 0x7e, 0x3c, 0xba, 0x11, 0x07, 0x9e, 0x8d, 0x13, 0x8b, 0x0d, 0x6e, 0x40, 0x3c, 0xf2, 0xd0, 0x0a, 0x3c, 0x4c, 0x61, 0x4d, 0x6c, 0x61, 0x57, 0xf3, 0xb1, 0x8a, 0x3f, 0xdb, 0xd6, 0x4c, 0x4f, 0xd5, 0xac, 0xba, 0xba, 0xaf, 0x79, 0xfb, 0xc5, 0x49, 0x42, 0xb0, 0x94, 0x28, 0x4a, 0xca, 0x69, 0x62, 0xb8, 0xca, 0xed, 0xaa, 0xd4, 0xac, 0x62, 0xd5, 0xaf, 0x69, 0xde, 0x3e, 0x2a, 0xc3, 0x49, 0xca, 0xe2, 0xf9, 0xae, 0x61, 0x35, 0x55, 0x7d, 0x1f, 0xeb, 0xb7, 0xd4, 0xb6, 0xdf, 0xb8, 0x54, 0x7c, 0x28, 0xfa, 0x7e, 0xea, 0xe1, 0x36, 0xb5, 0x59, 0x26, 0x26, 0xbb, 0x7e, 0xe3, 0x12, 0xda, 0x86, 0x3c, 0x99, 0x8c, 0x96, 0x71, 0x17, 0xab, 0x0d, 0xdb, 0xa5, 0x95, 0xa5, 0xd0, 0x67, 0x65, 0x47, 0x22, 0x38, 0x5b, 0xe3, 0x80, 0x0d, 0xbb, 0x8e, 0xcb, 0xe9, 0xed, 0xad, 0x6a, 0x75, 0x45, 0xc9, 0x09, 0x96, 0xab, 0xb6, 0x4b, 0x12, 0xaa, 0x69, 0x07, 0x01, 0xce, 0xb1, 0x84, 0x6a, 0xda, 0x22, 0xbc, 0x8b, 0x30, 0xa1, 0xeb, 0x6c, 0xcc, 0x86, 0xae, 0xf2, 0x23, 0x8a, 0x57, 0x94, 0x3b, 0x82, 0xa5, 0xeb, 0xab, 0xcc, 0x80, 0xe7, 0xb8, 0x87, 0x2e, 0xc3, 0x89, 0x30, 0x58, 0x51, 0xe0, 0x78, 0xcf, 0x28, 0xbb, 0xa1, 0x8b, 0x30, 0xe1, 0x1c, 0xf4, 0x02, 0x51, 0xc7, 0x1b, 0x9d, 0x83, 0x6e, 0xd8, 0x45, 0x98, 0x74, 0xf6, 0x9d, 0x5e, 0xdc, 0x44, 0x14, 0x87, 0x9c, 0x7d, 0xa7, 0x1b, 0xf8, 0x18, 0x3d, 0xaf, 0xba, 0x58, 0xd7, 0x7c, 0x5c, 0x2f, 0x9e, 0x8a, 0x9a, 0x47, 0x14, 0x68, 0x0e, 0x64, 0x5d, 0x57, 0xb1, 0xa5, 0xed, 0x99, 0x58, 0xd5, 0x5c, 0x6c, 0x69, 0x5e, 0xf1, 0x4c, 0xd4, 0xb8, 0xa0, 0xeb, 0x55, 0xaa, 0xad, 0x50, 0x25, 0x7a, 0x0a, 0xc6, 0xed, 0xbd, 0x9b, 0x3a, 0x4b, 0x49, 0xd5, 0x71, 0x71, 0xc3, 0x78, 0xa9, 0xf8, 0x28, 0x8d, 0xef, 0x18, 0x51, 0xd0, 0x84, 0xdc, 0xa2, 0x62, 0xf4, 0x24, 0xc8, 0xba, 0xb7, 0xaf, 0xb9, 0x0e, 0xed, 0x09, 0x3c, 0x47, 0xd3, 0x71, 0xf1, 0x31, 0x66, 0xca, 0xe4, 0x9b, 0x42, 0x4c, 0x96, 0x84, 0x77, 0xc7, 0x68, 0xf8, 0x82, 0xf1, 0x09, 0xb6, 0x24, 0xa8, 0x8c, 0xb3, 0xcd, 0x80, 0x4c, 0x42, 0xd1, 0xf1, 0xe2, 0x19, 0x6a, 0x56, 0x70, 0xf6, 0x9d, 0xe8, 0x7b, 0x1f, 0x81, 0x51, 0x62, 0x19, 0xbe, 0xf4, 0x49, 0xd6, 0xcf, 0x38, 0xfb, 0x91, 0x37, 0x7e, 0x68, 0xad, 0xe5, 0x74, 0x19, 0xf2, 0xd1, 0xfc, 0x44, 0x59, 0x60, 0x19, 0x2a, 0x4b, 0xa4, 0xd6, 0x2f, 0xd7, 0x56, 0x48, 0x95, 0xfe, 0x4c, 0x55, 0x4e, 0x90, 0x6e, 0x61, 0x7d, 0x6d, 0xa7, 0xaa, 0x2a, 0xbb, 0x9b, 0x3b, 0x6b, 0x1b, 0x55, 0x39, 0x19, 0x6d, 0x4b, 0xbf, 0x93, 0x80, 0x42, 0xe7, 0x09, 0x03, 0xfd, 0x04, 0x9c, 0x12, 0xd7, 0x01, 0x1e, 0xf6, 0xd5, 0x3b, 0x86, 0x4b, 0x97, 0x4c, 0x4b, 0x63, 0x1d, 0x76, 0x30, 0x69, 0x93, 0xdc, 0x6a, 0x1b, 0xfb, 0x2f, 0x18, 0x2e, 0x59, 0x10, 0x2d, 0xcd, 0x47, 0xeb, 0x70, 0xc6, 0xb2, 0x55, 0xcf, 0xd7, 0xac, 0xba, 0xe6, 0xd6, 0xd5, 0xf0, 0x22, 0x46, 0xd5, 0x74, 0x1d, 0x7b, 0x9e, 0xcd, 0x4a, 0x55, 0xc0, 0xf2, 0x31, 0xcb, 0xde, 0xe6, 0xc6, 0xe1, 0x1e, 0x5e, 0xe1, 0xa6, 0x5d, 0x09, 0x96, 0x3c, 0x2a, 0xc1, 0x1e, 0x82, 0x6c, 0x4b, 0x73, 0x54, 0x6c, 0xf9, 0xee, 0x01, 0xed, 0x2b, 0x33, 0x4a, 0xa6, 0xa5, 0x39, 0x55, 0xf2, 0xfc, 0xd1, 0xb4, 0xf7, 0xff, 0x94, 0x84, 0x7c, 0xb4, 0xb7, 0x24, 0xad, 0xba, 0x4e, 0xeb, 0x88, 0x44, 0x77, 0x9a, 0x47, 0x1e, 0xd8, 0x89, 0xce, 0x2e, 0x93, 0x02, 0x53, 0x1e, 0x66, 0x1d, 0x9f, 0xc2, 0x90, 0xa4, 0xb8, 0x93, 0xbd, 0x05, 0xb3, 0x53, 0x4c, 0x46, 0xe1, 0x4f, 0x68, 0x15, 0x86, 0x6f, 0x7a, 0x94, 0x7b, 0x98, 0x72, 0x3f, 0xfa, 0x60, 0xee, 0xeb, 0xdb, 0x94, 0x3c, 0x7b, 0x7d, 0x5b, 0xdd, 0xac, 0x29, 0x1b, 0x95, 0x75, 0x85, 0xc3, 0xd1, 0x69, 0x48, 0x99, 0xda, 0xdd, 0x83, 0xce, 0x52, 0x44, 0x45, 0x83, 0x06, 0xfe, 0x34, 0xa4, 0xee, 0x60, 0xed, 0x56, 0x67, 0x01, 0xa0, 0xa2, 0x0f, 0x31, 0xf5, 0xe7, 0x20, 0x4d, 0xe3, 0x85, 0x00, 0x78, 0xc4, 0xe4, 0x21, 0x94, 0x81, 0xd4, 0x72, 0x4d, 0x21, 0xe9, 0x2f, 0x43, 0x9e, 0x49, 0xd5, 0xad, 0xb5, 0xea, 0x72, 0x55, 0x4e, 0x4c, 0x2f, 0xc2, 0x30, 0x0b, 0x02, 0x59, 0x1a, 0x41, 0x18, 0xe4, 0x21, 0xfe, 0xc8, 0x39, 0x24, 0xa1, 0xdd, 0xdd, 0x58, 0xaa, 0x2a, 0x72, 0x22, 0x3a, 0xbd, 0x1e, 0xe4, 0xa3, 0x6d, 0xe5, 0x47, 0x93, 0x53, 0x7f, 0x2d, 0x41, 0x2e, 0xd2, 0x26, 0x92, 0x06, 0x45, 0x33, 0x4d, 0xfb, 0x8e, 0xaa, 0x99, 0x86, 0xe6, 0xf1, 0xa4, 0x00, 0x2a, 0xaa, 0x10, 0xc9, 0xa0, 0x93, 0xf6, 0x91, 0x38, 0xff, 0x9a, 0x04, 0x72, 0x77, 0x8b, 0xd9, 0xe5, 0xa0, 0xf4, 0x63, 0x75, 0xf0, 0x55, 0x09, 0x0a, 0x9d, 0x7d, 0x65, 0x97, 0x7b, 0xe7, 0x7e, 0xac, 0xee, 0xbd, 0x9d, 0x80, 0xd1, 0x8e, 0x6e, 0x72, 0x50, 0xef, 0x3e, 0x0b, 0xe3, 0x46, 0x1d, 0xb7, 0x1c, 0xdb, 0xc7, 0x96, 0x7e, 0xa0, 0x9a, 0xf8, 0x36, 0x36, 0x8b, 0xd3, 0x74, 0xa3, 0x98, 0x7b, 0x70, 0xbf, 0x3a, 0xbb, 0x16, 0xe2, 0xd6, 0x09, 0xac, 0x3c, 0xb1, 0xb6, 0x52, 0xdd, 0xd8, 0xaa, 0xed, 0x54, 0x37, 0x97, 0x5f, 0x54, 0x77, 0x37, 0x7f, 0x6a, 0xb3, 0xf6, 0xc2, 0xa6, 0x22, 0x1b, 0x5d, 0x66, 0x1f, 0xe2, 0x52, 0xdf, 0x02, 0xb9, 0xdb, 0x29, 0x74, 0x0a, 0xfa, 0xb9, 0x25, 0x0f, 0xa1, 0x09, 0x18, 0xdb, 0xac, 0xa9, 0xdb, 0x6b, 0x2b, 0x55, 0xb5, 0x7a, 0xf5, 0x6a, 0x75, 0x79, 0x67, 0x9b, 0x1d, 0xe0, 0x03, 0xeb, 0x9d, 0xce, 0x45, 0xfd, 0x4a, 0x12, 0x26, 0xfa, 0x78, 0x82, 0x2a, 0xfc, 0xec, 0xc0, 0x8e, 0x33, 0xcf, 0x0c, 0xe2, 0xfd, 0x2c, 0x29, 0xf9, 0x5b, 0x9a, 0xeb, 0xf3, 0xa3, 0xc6, 0x93, 0x40, 0xa2, 0x64, 0xf9, 0x46, 0xc3, 0xc0, 0x2e, 0xbf, 0xef, 0x60, 0x07, 0x8a, 0xb1, 0x50, 0xce, 0xae, 0x3c, 0x3e, 0x0e, 0xc8, 0xb1, 0x3d, 0xc3, 0x37, 0x6e, 0x63, 0xd5, 0xb0, 0xc4, 0xe5, 0x08, 0x39, 0x60, 0xa4, 0x14, 0x59, 0x68, 0xd6, 0x2c, 0x3f, 0xb0, 0xb6, 0x70, 0x53, 0xeb, 0xb2, 0x26, 0x1b, 0x78, 0x52, 0x91, 0x85, 0x26, 0xb0, 0x3e, 0x07, 0xf9, 0xba, 0xdd, 0x26, 0x5d, 0x17, 0xb3, 0x23, 0xf5, 0x42, 0x52, 0x72, 0x4c, 0x16, 0x98, 0xf0, 0x7e, 0x3a, 0xbc, 0x95, 0xc9, 0x2b, 0x39, 0x26, 0x63, 0x26, 0x4f, 0xc0, 0x98, 0xd6, 0x6c, 0xba, 0x84, 0x5c, 0x10, 0xb1, 0x13, 0x42, 0x21, 0x10, 0x53, 0xc3, 0xa9, 0xeb, 0x90, 0x11, 0x71, 0x20, 0x25, 0x99, 0x44, 0x42, 0x75, 0xd8, 0xcd, 0x5c, 0x62, 0x26, 0xab, 0x64, 0x2c, 0xa1, 0x3c, 0x07, 0x79, 0xc3, 0x53, 0xc3, 0x4b, 0xe6, 0xc4, 0xd9, 0xc4, 0x4c, 0x46, 0xc9, 0x19, 0x5e, 0x70, 0x41, 0x37, 0xfd, 0x7a, 0x02, 0x0a, 0x9d, 0x97, 0xe4, 0x68, 0x05, 0x32, 0xa6, 0xad, 0x6b, 0x34, 0xb5, 0xd8, 0x2f, 0x34, 0x33, 0x31, 0xf7, 0xea, 0xb3, 0xeb, 0xdc, 0x5e, 0x09, 0x90, 0x53, 0x7f, 0x2f, 0x41, 0x46, 0x88, 0xd1, 0x49, 0x48, 0x39, 0x9a, 0xbf, 0x4f, 0xe9, 0xd2, 0x4b, 0x09, 0x59, 0x52, 0xe8, 0x33, 0x91, 0x7b, 0x8e, 0x66, 0xd1, 0x14, 0xe0, 0x72, 0xf2, 0x4c, 0xe6, 0xd5, 0xc4, 0x5a, 0x9d, 0x1e, 0x3f, 0xec, 0x56, 0x0b, 0x5b, 0xbe, 0x27, 0xe6, 0x95, 0xcb, 0x97, 0xb9, 0x18, 0x3d, 0x0d, 0xe3, 0xbe, 0xab, 0x19, 0x66, 0x87, 0x6d, 0x8a, 0xda, 0xca, 0x42, 0x11, 0x18, 0x97, 0xe1, 0xb4, 0xe0, 0xad, 0x63, 0x5f, 0xd3, 0xf7, 0x71, 0x3d, 0x04, 0x0d, 0xd3, 0x1b, 0xd8, 0x53, 0xdc, 0x60, 0x85, 0xeb, 0x05, 0x76, 0xfa, 0xbb, 0x12, 0x8c, 0x8b, 0x03, 0x53, 0x3d, 0x08, 0xd6, 0x06, 0x80, 0x66, 0x59, 0xb6, 0x1f, 0x0d, 0x57, 0x6f, 0x2a, 0xf7, 0xe0, 0x66, 0x2b, 0x01, 0x48, 0x89, 0x10, 0x4c, 0xb5, 0x00, 0x42, 0xcd, 0x91, 0x61, 0x3b, 0x03, 0x39, 0xfe, 0x0b, 0x08, 0xfd, 0x19, 0x8d, 0x1d, 0xb1, 0x81, 0x89, 0xc8, 0xc9, 0x0a, 0x4d, 0x42, 0x7a, 0x0f, 0x37, 0x0d, 0x8b, 0xdf, 0x6b, 0xb2, 0x07, 0x71, 0x57, 0x9b, 0x0a, 0xee, 0x6a, 0x97, 0x6e, 0xc0, 0x84, 0x6e, 0xb7, 0xba, 0xdd, 0x5d, 0x92, 0xbb, 0x8e, 0xf9, 0xde, 0x35, 0xe9, 0x33, 0x10, 0xb6, 0x98, 0x5f, 0x4e, 0x24, 0x57, 0xb7, 0x96, 0xbe, 0x9a, 0x98, 0x5a, 0x65, 0xb8, 0x2d, 0x31, 0x4c, 0x05, 0x37, 0x4c, 0xac, 0x13, 0xd7, 0xe1, 0xfb, 0x8f, 0xc3, 0x33, 0x4d, 0xc3, 0xdf, 0x6f, 0xef, 0xcd, 0xea, 0x76, 0x6b, 0xae, 0x69, 0x37, 0xed, 0xf0, 0x67, 0x43, 0xf2, 0x44, 0x1f, 0xe8, 0x7f, 0xfc, 0xa7, 0xc3, 0x6c, 0x20, 0x9d, 0x8a, 0xfd, 0x9d, 0xb1, 0xbc, 0x09, 0x13, 0xdc, 0x58, 0xa5, 0xbf, 0x5d, 0xb0, 0x23, 0x04, 0x7a, 0xe0, 0xfd, 0x4f, 0xf1, 0x1b, 0xef, 0xd0, 0x5a, 0xad, 0x8c, 0x73, 0x28, 0xd1, 0xb1, 0x53, 0x46, 0x59, 0x81, 0x13, 0x1d, 0x7c, 0x6c, 0x5d, 0x62, 0x37, 0x86, 0xf1, 0x3b, 0x9c, 0x71, 0x22, 0xc2, 0xb8, 0xcd, 0xa1, 0xe5, 0x65, 0x18, 0x3d, 0x0e, 0xd7, 0xdf, 0x72, 0xae, 0x3c, 0x8e, 0x92, 0xac, 0xc2, 0x18, 0x25, 0xd1, 0xdb, 0x9e, 0x6f, 0xb7, 0xe8, 0xa6, 0xf7, 0x60, 0x9a, 0xbf, 0x7b, 0x87, 0x2d, 0x94, 0x02, 0x81, 0x2d, 0x07, 0xa8, 0x72, 0x19, 0xe8, 0xcf, 0x35, 0x75, 0xac, 0x9b, 0x31, 0x0c, 0x6f, 0x70, 0x47, 0x02, 0xfb, 0xf2, 0xa7, 0x61, 0x92, 0xfc, 0x4f, 0xf7, 0xa4, 0xa8, 0x27, 0xf1, 0xb7, 0x5d, 0xc5, 0xef, 0xbe, 0xcc, 0xd6, 0xe2, 0x44, 0x40, 0x10, 0xf1, 0x29, 0x32, 0x8b, 0x4d, 0xec, 0xfb, 0xd8, 0xf5, 0x54, 0xcd, 0xec, 0xe7, 0x5e, 0xe4, 0xba, 0xa0, 0xf8, 0xc5, 0x77, 0x3b, 0x67, 0x71, 0x95, 0x21, 0x2b, 0xa6, 0x59, 0xde, 0x85, 0x53, 0x7d, 0xb2, 0x62, 0x00, 0xce, 0x57, 0x38, 0xe7, 0x64, 0x4f, 0x66, 0x10, 0xda, 0x2d, 0x10, 0xf2, 0x60, 0x2e, 0x07, 0xe0, 0xfc, 0x6d, 0xce, 0x89, 0x38, 0x56, 0x4c, 0x29, 0x61, 0xbc, 0x0e, 0xe3, 0xb7, 0xb1, 0xbb, 0x67, 0x7b, 0xfc, 0x8a, 0x66, 0x00, 0xba, 0x57, 0x39, 0xdd, 0x18, 0x07, 0xd2, 0x3b, 0x1b, 0xc2, 0x75, 0x19, 0x32, 0x0d, 0x4d, 0xc7, 0x03, 0x50, 0x7c, 0x89, 0x53, 0x8c, 0x10, 0x7b, 0x02, 0xad, 0x40, 0xbe, 0x69, 0xf3, 0xb2, 0x14, 0x0f, 0x7f, 0x8d, 0xc3, 0x73, 0x02, 0xc3, 0x29, 0x1c, 0xdb, 0x69, 0x9b, 0xa4, 0x66, 0xc5, 0x53, 0xfc, 0x8e, 0xa0, 0x10, 0x18, 0x4e, 0x71, 0x8c, 0xb0, 0xfe, 0xae, 0xa0, 0xf0, 0x22, 0xf1, 0x7c, 0x1e, 0x72, 0xb6, 0x65, 0x1e, 0xd8, 0xd6, 0x20, 0x4e, 0xfc, 0x1e, 0x67, 0x00, 0x0e, 0x21, 0x04, 0x57, 0x20, 0x3b, 0xe8, 0x44, 0xfc, 0xfe, 0xbb, 0x62, 0x79, 0x88, 0x19, 0x58, 0x85, 0x31, 0xb1, 0x41, 0x19, 0xb6, 0x35, 0x00, 0xc5, 0x1f, 0x70, 0x8a, 0x42, 0x04, 0xc6, 0x87, 0xe1, 0x63, 0xcf, 0x6f, 0xe2, 0x41, 0x48, 0x5e, 0x17, 0xc3, 0xe0, 0x10, 0x1e, 0xca, 0x3d, 0x6c, 0xe9, 0xfb, 0x83, 0x31, 0x7c, 0x45, 0x84, 0x52, 0x60, 0x08, 0xc5, 0x32, 0x8c, 0xb6, 0x34, 0xd7, 0xdb, 0xd7, 0xcc, 0x81, 0xa6, 0xe3, 0x0f, 0x39, 0x47, 0x3e, 0x00, 0xf1, 0x88, 0xb4, 0xad, 0xe3, 0xd0, 0x7c, 0x55, 0x44, 0x24, 0x02, 0xe3, 0x4b, 0xcf, 0xf3, 0xe9, 0x7d, 0xd6, 0x71, 0xd8, 0xbe, 0x26, 0x96, 0x1e, 0xc3, 0x6e, 0x44, 0x19, 0xaf, 0x40, 0xd6, 0x33, 0xee, 0x0e, 0x44, 0xf3, 0x47, 0x62, 0xa6, 0x29, 0x80, 0x80, 0x5f, 0x84, 0xd3, 0x7d, 0xcb, 0xc4, 0x00, 0x64, 0x7f, 0xcc, 0xc9, 0x4e, 0xf6, 0x29, 0x15, 0x7c, 0x4b, 0x38, 0x2e, 0xe5, 0x9f, 0x88, 0x2d, 0x01, 0x77, 0x71, 0x6d, 0x91, 0x83, 0x82, 0xa7, 0x35, 0x8e, 0x17, 0xb5, 0x3f, 0x15, 0x51, 0x63, 0xd8, 0x8e, 0xa8, 0xed, 0xc0, 0x49, 0xce, 0x78, 0xbc, 0x79, 0xfd, 0xba, 0xd8, 0x58, 0x19, 0x7a, 0xb7, 0x73, 0x76, 0x7f, 0x1a, 0xa6, 0x82, 0x70, 0x8a, 0x8e, 0xd4, 0x53, 0x5b, 0x9a, 0x33, 0x00, 0xf3, 0x37, 0x38, 0xb3, 0xd8, 0xf1, 0x83, 0x96, 0xd6, 0xdb, 0xd0, 0x1c, 0x42, 0x7e, 0x03, 0x8a, 0x82, 0xbc, 0x6d, 0xb9, 0x58, 0xb7, 0x9b, 0x96, 0x71, 0x17, 0xd7, 0x07, 0xa0, 0xfe, 0xb3, 0xae, 0xa9, 0xda, 0x8d, 0xc0, 0x09, 0xf3, 0x1a, 0xc8, 0x41, 0xaf, 0xa2, 0x1a, 0x2d, 0xc7, 0x76, 0xfd, 0x18, 0xc6, 0x6f, 0x8a, 0x99, 0x0a, 0x70, 0x6b, 0x14, 0x56, 0xae, 0x42, 0x81, 0x3e, 0x0e, 0x9a, 0x92, 0x7f, 0xce, 0x89, 0x46, 0x43, 0x14, 0xdf, 0x38, 0x74, 0xbb, 0xe5, 0x68, 0xee, 0x20, 0xfb, 0xdf, 0x5f, 0x88, 0x8d, 0x83, 0x43, 0xf8, 0xc6, 0xe1, 0x1f, 0x38, 0x98, 0x54, 0xfb, 0x01, 0x18, 0xbe, 0x25, 0x36, 0x0e, 0x81, 0xe1, 0x14, 0xa2, 0x61, 0x18, 0x80, 0xe2, 0x2f, 0x05, 0x85, 0xc0, 0x10, 0x8a, 0x4f, 0x85, 0x85, 0xd6, 0xc5, 0x4d, 0xc3, 0xf3, 0x5d, 0xd6, 0x07, 0x3f, 0x98, 0xea, 0xdb, 0xef, 0x76, 0x36, 0x61, 0x4a, 0x04, 0x5a, 0xbe, 0x0e, 0x63, 0x5d, 0x2d, 0x06, 0x8a, 0xfb, 0xf6, 0xa3, 0xf8, 0xb3, 0xef, 0xf3, 0xcd, 0xa8, 0xb3, 0xc3, 0x28, 0xaf, 0x93, 0x79, 0xef, 0xec, 0x03, 0xe2, 0xc9, 0x5e, 0x7e, 0x3f, 0x98, 0xfa, 0x8e, 0x36, 0xa0, 0x7c, 0x15, 0x46, 0x3b, 0x7a, 0x80, 0x78, 0xaa, 0x9f, 0xe3, 0x54, 0xf9, 0x68, 0x0b, 0x50, 0x5e, 0x84, 0x14, 0xa9, 0xe7, 0xf1, 0xf0, 0x9f, 0xe7, 0x70, 0x6a, 0x5e, 0xfe, 0x04, 0x64, 0x44, 0x1d, 0x8f, 0x87, 0xfe, 0x02, 0x87, 0x06, 0x10, 0x02, 0x17, 0x35, 0x3c, 0x1e, 0xfe, 0x8b, 0x02, 0x2e, 0x20, 0x04, 0x3e, 0x78, 0x08, 0xff, 0xe6, 0x97, 0x52, 0x7c, 0x1f, 0x16, 0xb1, 0xbb, 0x02, 0x23, 0xbc, 0x78, 0xc7, 0xa3, 0x3f, 0xc7, 0x5f, 0x2e, 0x10, 0xe5, 0x8b, 0x90, 0x1e, 0x30, 0xe0, 0xbf, 0xcc, 0xa1, 0xcc, 0xbe, 0xbc, 0x0c, 0xb9, 0x48, 0xc1, 0x8e, 0x87, 0xff, 0x0a, 0x87, 0x47, 0x51, 0xc4, 0x75, 0x5e, 0xb0, 0xe3, 0x09, 0x7e, 0x55, 0xb8, 0xce, 0x11, 0x24, 0x6c, 0xa2, 0x56, 0xc7, 0xa3, 0x7f, 0x4d, 0x44, 0x5d, 0x40, 0xca, 0xcf, 0x43, 0x36, 0xd8, 0x7f, 0xe3, 0xf1, 0xbf, 0xce, 0xf1, 0x21, 0x86, 0x44, 0x20, 0xb2, 0xff, 0xc7, 0x53, 0x7c, 0x5e, 0x44, 0x20, 0x82, 0x22, 0xcb, 0xa8, 0xbb, 0xa6, 0xc7, 0x33, 0xfd, 0x86, 0x58, 0x46, 0x5d, 0x25, 0x9d, 0xcc, 0x26, 0xdd, 0x06, 0xe3, 0x29, 0x7e, 0x53, 0xcc, 0x26, 0xb5, 0x27, 0x6e, 0x74, 0x17, 0xc9, 0x78, 0x8e, 0xdf, 0x12, 0x6e, 0x74, 0xd5, 0xc8, 0xf2, 0x16, 0xa0, 0xde, 0x02, 0x19, 0xcf, 0xf7, 0x05, 0xce, 0x37, 0xde, 0x53, 0x1f, 0xcb, 0x2f, 0xc0, 0xc9, 0xfe, 0xc5, 0x31, 0x9e, 0xf5, 0x8b, 0xef, 0x77, 0x1d, 0x67, 0xa2, 0xb5, 0xb1, 0xbc, 0x13, 0xee, 0xb2, 0xd1, 0xc2, 0x18, 0x4f, 0xfb, 0xca, 0xfb, 0x9d, 0x1b, 0x6d, 0xb4, 0x2e, 0x96, 0x2b, 0x00, 0x61, 0x4d, 0x8a, 0xe7, 0x7a, 0x95, 0x73, 0x45, 0x40, 0x64, 0x69, 0xf0, 0x92, 0x14, 0x8f, 0xff, 0x92, 0x58, 0x1a, 0x1c, 0x41, 0x96, 0x86, 0xa8, 0x46, 0xf1, 0xe8, 0xd7, 0xc4, 0xd2, 0x10, 0x90, 0xf2, 0x15, 0xc8, 0x58, 0x6d, 0xd3, 0x24, 0xb9, 0x85, 0x1e, 0xfc, 0x39, 0x53, 0xf1, 0x5f, 0x3f, 0xe0, 0x60, 0x01, 0x28, 0x2f, 0x42, 0x1a, 0xb7, 0xf6, 0x70, 0x3d, 0x0e, 0xf9, 0x6f, 0x1f, 0x88, 0xfd, 0x84, 0x58, 0x97, 0x9f, 0x07, 0x60, 0x87, 0x69, 0xfa, 0x2b, 0x51, 0x0c, 0xf6, 0xdf, 0x3f, 0xe0, 0x5f, 0x4a, 0x84, 0x90, 0x90, 0x80, 0x7d, 0x77, 0xf1, 0x60, 0x82, 0x77, 0x3b, 0x09, 0xe8, 0x01, 0xfc, 0x32, 0x8c, 0xdc, 0xf4, 0x6c, 0xcb, 0xd7, 0x9a, 0x71, 0xe8, 0xff, 0xe0, 0x68, 0x61, 0x4f, 0x02, 0xd6, 0xb2, 0x5d, 0xec, 0x6b, 0x4d, 0x2f, 0x0e, 0xfb, 0x9f, 0x1c, 0x1b, 0x00, 0x08, 0x58, 0xd7, 0x3c, 0x7f, 0x90, 0x71, 0xff, 0x97, 0x00, 0x0b, 0x00, 0x71, 0x9a, 0xfc, 0x7f, 0x0b, 0x1f, 0xc4, 0x61, 0xdf, 0x13, 0x4e, 0x73, 0xfb, 0xf2, 0x27, 0x20, 0x4b, 0xfe, 0x65, 0x5f, 0x0f, 0xc5, 0x80, 0xff, 0x9b, 0x83, 0x43, 0x04, 0x79, 0xb3, 0xe7, 0xd7, 0x7d, 0x23, 0x3e, 0xd8, 0xff, 0xc3, 0x67, 0x5a, 0xd8, 0x97, 0x2b, 0x90, 0xf3, 0xfc, 0x7a, 0xbd, 0xcd, 0x3b, 0x9a, 0x18, 0xf8, 0xf7, 0x3f, 0x08, 0x0e, 0xb9, 0x01, 0x66, 0xe9, 0x5c, 0xff, 0xcb, 0x3a, 0x58, 0xb5, 0x57, 0x6d, 0x76, 0x4d, 0x07, 0xff, 0x9b, 0x81, 0x13, 0xba, 0xdd, 0xda, 0xb3, 0xbd, 0xb9, 0x3d, 0xdb, 0xdf, 0x9f, 0xb3, 0x2d, 0x6e, 0x88, 0x92, 0xb6, 0x85, 0xa7, 0x8e, 0x77, 0x23, 0x37, 0x7d, 0x1a, 0xd2, 0xdb, 0xed, 0xbd, 0xbd, 0x03, 0x24, 0x43, 0xd2, 0x6b, 0xef, 0xf1, 0x4f, 0x5b, 0xc8, 0xbf, 0xd3, 0x6f, 0x25, 0x61, 0xb4, 0x62, 0x9a, 0x3b, 0x07, 0x0e, 0xf6, 0x6a, 0x16, 0xae, 0x35, 0x50, 0x11, 0x86, 0xe9, 0x10, 0x9e, 0xa3, 0x66, 0xd2, 0xb5, 0x21, 0x85, 0x3f, 0x07, 0x9a, 0x79, 0x7a, 0x51, 0x99, 0x08, 0x34, 0xf3, 0x81, 0xe6, 0x3c, 0xbb, 0xa7, 0x0c, 0x34, 0xe7, 0x03, 0xcd, 0x02, 0xbd, 0xad, 0x4c, 0x06, 0x9a, 0x85, 0x40, 0xb3, 0x48, 0x6f, 0xe3, 0x47, 0x03, 0xcd, 0x62, 0xa0, 0xb9, 0x40, 0xef, 0xdf, 0x53, 0x81, 0xe6, 0x42, 0xa0, 0xb9, 0x48, 0xaf, 0xdd, 0xc7, 0x03, 0xcd, 0xc5, 0x40, 0x73, 0x89, 0x5e, 0xb5, 0xa3, 0x40, 0x73, 0x29, 0xd0, 0x5c, 0xa6, 0xdf, 0xb0, 0x8c, 0x04, 0x9a, 0xcb, 0x68, 0x0a, 0x46, 0xd8, 0xc8, 0x9e, 0xa5, 0xbf, 0xc7, 0x8e, 0x5d, 0x1b, 0x52, 0x84, 0x20, 0xd4, 0x3d, 0x47, 0xbf, 0x53, 0x19, 0x0e, 0x75, 0xcf, 0x85, 0xba, 0x79, 0xfa, 0xb5, 0xb9, 0x1c, 0xea, 0xe6, 0x43, 0xdd, 0xf9, 0xe2, 0x28, 0x99, 0xf9, 0x50, 0x77, 0x3e, 0xd4, 0x2d, 0x14, 0x0b, 0x64, 0x06, 0x42, 0xdd, 0x42, 0xa8, 0x5b, 0x2c, 0x8e, 0x9d, 0x95, 0x66, 0xf2, 0xa1, 0x6e, 0x11, 0x3d, 0x03, 0x39, 0xaf, 0xbd, 0xa7, 0xf2, 0xcf, 0x07, 0xe8, 0xf7, 0x30, 0xb9, 0x79, 0x98, 0x25, 0x39, 0x41, 0xa7, 0xf5, 0xda, 0x90, 0x02, 0x5e, 0x7b, 0x8f, 0x6f, 0x8d, 0x4b, 0x79, 0xa0, 0x37, 0x09, 0x2a, 0xfd, 0x0a, 0x74, 0xfa, 0x4d, 0x09, 0xb2, 0x3b, 0x77, 0x6c, 0xfa, 0x6b, 0xac, 0xf7, 0x23, 0x9e, 0x5c, 0xe1, 0xf4, 0xf9, 0x05, 0xfa, 0x83, 0x59, 0xf6, 0x9a, 0xa4, 0x08, 0x41, 0xa8, 0x5b, 0x2c, 0x3e, 0x42, 0x07, 0x14, 0xe8, 0x16, 0xd1, 0x1c, 0xe4, 0x23, 0x03, 0x9a, 0xa7, 0x5f, 0xaa, 0x74, 0x8e, 0x48, 0x52, 0x72, 0xe1, 0x88, 0xe6, 0x97, 0xd2, 0x40, 0xd2, 0x9e, 0xfc, 0xf1, 0xef, 0xd8, 0xd3, 0x9f, 0x4f, 0x40, 0x8e, 0x5d, 0x3e, 0xd2, 0x51, 0x91, 0x57, 0xb1, 0x66, 0xfc, 0x80, 0xbb, 0x31, 0xa4, 0x08, 0x01, 0x52, 0x00, 0x98, 0x29, 0xc9, 0x70, 0xe6, 0xc9, 0xd2, 0xb3, 0xff, 0xf8, 0xd6, 0x99, 0x8f, 0x1f, 0xb9, 0x82, 0x48, 0xec, 0xe6, 0xd8, 0xd6, 0x3a, 0xbb, 0x6b, 0x58, 0xfe, 0x73, 0xf3, 0x97, 0x48, 0x80, 0x43, 0x16, 0xb4, 0x0b, 0x99, 0x65, 0xcd, 0xa3, 0xdf, 0xb8, 0x51, 0xd7, 0x53, 0x4b, 0x17, 0xff, 0xef, 0xad, 0x33, 0xe7, 0x63, 0x18, 0xf9, 0xae, 0x37, 0xbb, 0x71, 0x40, 0x58, 0x2f, 0x2c, 0x10, 0xf8, 0xb5, 0x21, 0x25, 0xa0, 0x42, 0xf3, 0xc2, 0xd5, 0x4d, 0xad, 0xc5, 0x3e, 0xc9, 0x49, 0x2e, 0xc9, 0x87, 0x6f, 0x9d, 0xc9, 0x6f, 0x1c, 0x84, 0xf2, 0xd0, 0x15, 0xf2, 0xb4, 0x94, 0x81, 0x61, 0xe6, 0xea, 0xd2, 0xca, 0x1b, 0xf7, 0x4b, 0x43, 0x6f, 0xde, 0x2f, 0x0d, 0xfd, 0xc3, 0xfd, 0xd2, 0xd0, 0xdb, 0xf7, 0x4b, 0xd2, 0x7b, 0xf7, 0x4b, 0xd2, 0x0f, 0xee, 0x97, 0xa4, 0x7b, 0x87, 0x25, 0xe9, 0x2b, 0x87, 0x25, 0xe9, 0xeb, 0x87, 0x25, 0xe9, 0xdb, 0x87, 0x25, 0xe9, 0x8d, 0xc3, 0x92, 0xf4, 0xe6, 0x61, 0x49, 0x7a, 0xfb, 0xb0, 0x24, 0x7d, 0xef, 0xb0, 0x34, 0xf4, 0xde, 0x61, 0x49, 0xfa, 0xc1, 0x61, 0x69, 0xe8, 0xde, 0x3f, 0x97, 0x86, 0xfe, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x63, 0x60, 0x2e, 0x01, 0x1c, 0x34, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Subby) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Subby") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Subby but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Subby but is not nil && this == nil") } if this.Sub != nil && that1.Sub != nil { if *this.Sub != *that1.Sub { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", *this.Sub, *that1.Sub) } } else if this.Sub != nil { return fmt.Errorf("this.Sub == nil && that.Sub != nil") } else if that1.Sub != nil { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Subby) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Sub != nil && that1.Sub != nil { if *this.Sub != *that1.Sub { return false } } else if this.Sub != nil { return false } else if that1.Sub != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllTypesOneOf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf) if !ok { that2, ok := that.(AllTypesOneOf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf but is not nil && this == nil") } if that1.TestOneof == nil { if this.TestOneof != nil { return fmt.Errorf("this.TestOneof != nil && that1.TestOneof == nil") } } else if this.TestOneof == nil { return fmt.Errorf("this.TestOneof == nil && that1.TestOneof != nil") } else if err := this.TestOneof.VerboseEqual(that1.TestOneof); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllTypesOneOf_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field1) if !ok { that2, ok := that.(AllTypesOneOf_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *AllTypesOneOf_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field2) if !ok { that2, ok := that.(AllTypesOneOf_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *AllTypesOneOf_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field3) if !ok { that2, ok := that.(AllTypesOneOf_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *AllTypesOneOf_Field4) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field4) if !ok { that2, ok := that.(AllTypesOneOf_Field4) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field4") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field4 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field4 but is not nil && this == nil") } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } return nil } func (this *AllTypesOneOf_Field5) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field5) if !ok { that2, ok := that.(AllTypesOneOf_Field5) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field5") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field5 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field5 but is not nil && this == nil") } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } return nil } func (this *AllTypesOneOf_Field6) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field6) if !ok { that2, ok := that.(AllTypesOneOf_Field6) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field6") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field6 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field6 but is not nil && this == nil") } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } return nil } func (this *AllTypesOneOf_Field7) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field7) if !ok { that2, ok := that.(AllTypesOneOf_Field7) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field7") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field7 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field7 but is not nil && this == nil") } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } return nil } func (this *AllTypesOneOf_Field8) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field8) if !ok { that2, ok := that.(AllTypesOneOf_Field8) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field8") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field8 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field8 but is not nil && this == nil") } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } return nil } func (this *AllTypesOneOf_Field9) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field9) if !ok { that2, ok := that.(AllTypesOneOf_Field9) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field9") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field9 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field9 but is not nil && this == nil") } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } return nil } func (this *AllTypesOneOf_Field10) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field10) if !ok { that2, ok := that.(AllTypesOneOf_Field10) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field10") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field10 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field10 but is not nil && this == nil") } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } return nil } func (this *AllTypesOneOf_Field11) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field11) if !ok { that2, ok := that.(AllTypesOneOf_Field11) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field11") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field11 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field11 but is not nil && this == nil") } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } return nil } func (this *AllTypesOneOf_Field12) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field12) if !ok { that2, ok := that.(AllTypesOneOf_Field12) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field12") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field12 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field12 but is not nil && this == nil") } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } return nil } func (this *AllTypesOneOf_Field13) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field13) if !ok { that2, ok := that.(AllTypesOneOf_Field13) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field13") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field13 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field13 but is not nil && this == nil") } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } return nil } func (this *AllTypesOneOf_Field14) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field14) if !ok { that2, ok := that.(AllTypesOneOf_Field14) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field14") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field14 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field14 but is not nil && this == nil") } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } return nil } func (this *AllTypesOneOf_Field15) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field15) if !ok { that2, ok := that.(AllTypesOneOf_Field15) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field15") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field15 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field15 but is not nil && this == nil") } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } return nil } func (this *AllTypesOneOf_SubMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_SubMessage) if !ok { that2, ok := that.(AllTypesOneOf_SubMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_SubMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_SubMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_SubMessage but is not nil && this == nil") } if !this.SubMessage.Equal(that1.SubMessage) { return fmt.Errorf("SubMessage this(%v) Not Equal that(%v)", this.SubMessage, that1.SubMessage) } return nil } func (this *AllTypesOneOf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf) if !ok { that2, ok := that.(AllTypesOneOf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.TestOneof == nil { if this.TestOneof != nil { return false } } else if this.TestOneof == nil { return false } else if !this.TestOneof.Equal(that1.TestOneof) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllTypesOneOf_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field1) if !ok { that2, ok := that.(AllTypesOneOf_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *AllTypesOneOf_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field2) if !ok { that2, ok := that.(AllTypesOneOf_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *AllTypesOneOf_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field3) if !ok { that2, ok := that.(AllTypesOneOf_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *AllTypesOneOf_Field4) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field4) if !ok { that2, ok := that.(AllTypesOneOf_Field4) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field4 != that1.Field4 { return false } return true } func (this *AllTypesOneOf_Field5) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field5) if !ok { that2, ok := that.(AllTypesOneOf_Field5) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field5 != that1.Field5 { return false } return true } func (this *AllTypesOneOf_Field6) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field6) if !ok { that2, ok := that.(AllTypesOneOf_Field6) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field6 != that1.Field6 { return false } return true } func (this *AllTypesOneOf_Field7) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field7) if !ok { that2, ok := that.(AllTypesOneOf_Field7) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field7 != that1.Field7 { return false } return true } func (this *AllTypesOneOf_Field8) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field8) if !ok { that2, ok := that.(AllTypesOneOf_Field8) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field8 != that1.Field8 { return false } return true } func (this *AllTypesOneOf_Field9) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field9) if !ok { that2, ok := that.(AllTypesOneOf_Field9) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field9 != that1.Field9 { return false } return true } func (this *AllTypesOneOf_Field10) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field10) if !ok { that2, ok := that.(AllTypesOneOf_Field10) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field10 != that1.Field10 { return false } return true } func (this *AllTypesOneOf_Field11) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field11) if !ok { that2, ok := that.(AllTypesOneOf_Field11) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field11 != that1.Field11 { return false } return true } func (this *AllTypesOneOf_Field12) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field12) if !ok { that2, ok := that.(AllTypesOneOf_Field12) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field12 != that1.Field12 { return false } return true } func (this *AllTypesOneOf_Field13) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field13) if !ok { that2, ok := that.(AllTypesOneOf_Field13) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field13 != that1.Field13 { return false } return true } func (this *AllTypesOneOf_Field14) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field14) if !ok { that2, ok := that.(AllTypesOneOf_Field14) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field14 != that1.Field14 { return false } return true } func (this *AllTypesOneOf_Field15) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field15) if !ok { that2, ok := that.(AllTypesOneOf_Field15) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } return true } func (this *AllTypesOneOf_SubMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_SubMessage) if !ok { that2, ok := that.(AllTypesOneOf_SubMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage.Equal(that1.SubMessage) { return false } return true } func (this *TwoOneofs) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs) if !ok { that2, ok := that.(TwoOneofs) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs but is not nil && this == nil") } if that1.One == nil { if this.One != nil { return fmt.Errorf("this.One != nil && that1.One == nil") } } else if this.One == nil { return fmt.Errorf("this.One == nil && that1.One != nil") } else if err := this.One.VerboseEqual(that1.One); err != nil { return err } if that1.Two == nil { if this.Two != nil { return fmt.Errorf("this.Two != nil && that1.Two == nil") } } else if this.Two == nil { return fmt.Errorf("this.Two == nil && that1.Two != nil") } else if err := this.Two.VerboseEqual(that1.Two); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *TwoOneofs_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field1) if !ok { that2, ok := that.(TwoOneofs_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *TwoOneofs_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field2) if !ok { that2, ok := that.(TwoOneofs_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *TwoOneofs_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field3) if !ok { that2, ok := that.(TwoOneofs_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *TwoOneofs_Field34) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field34) if !ok { that2, ok := that.(TwoOneofs_Field34) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field34") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field34 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field34 but is not nil && this == nil") } if this.Field34 != that1.Field34 { return fmt.Errorf("Field34 this(%v) Not Equal that(%v)", this.Field34, that1.Field34) } return nil } func (this *TwoOneofs_Field35) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field35) if !ok { that2, ok := that.(TwoOneofs_Field35) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field35") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field35 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field35 but is not nil && this == nil") } if !bytes.Equal(this.Field35, that1.Field35) { return fmt.Errorf("Field35 this(%v) Not Equal that(%v)", this.Field35, that1.Field35) } return nil } func (this *TwoOneofs_SubMessage2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_SubMessage2) if !ok { that2, ok := that.(TwoOneofs_SubMessage2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_SubMessage2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_SubMessage2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_SubMessage2 but is not nil && this == nil") } if !this.SubMessage2.Equal(that1.SubMessage2) { return fmt.Errorf("SubMessage2 this(%v) Not Equal that(%v)", this.SubMessage2, that1.SubMessage2) } return nil } func (this *TwoOneofs) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs) if !ok { that2, ok := that.(TwoOneofs) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.One == nil { if this.One != nil { return false } } else if this.One == nil { return false } else if !this.One.Equal(that1.One) { return false } if that1.Two == nil { if this.Two != nil { return false } } else if this.Two == nil { return false } else if !this.Two.Equal(that1.Two) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *TwoOneofs_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field1) if !ok { that2, ok := that.(TwoOneofs_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *TwoOneofs_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field2) if !ok { that2, ok := that.(TwoOneofs_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *TwoOneofs_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field3) if !ok { that2, ok := that.(TwoOneofs_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *TwoOneofs_Field34) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field34) if !ok { that2, ok := that.(TwoOneofs_Field34) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field34 != that1.Field34 { return false } return true } func (this *TwoOneofs_Field35) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field35) if !ok { that2, ok := that.(TwoOneofs_Field35) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field35, that1.Field35) { return false } return true } func (this *TwoOneofs_SubMessage2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_SubMessage2) if !ok { that2, ok := that.(TwoOneofs_SubMessage2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage2.Equal(that1.SubMessage2) { return false } return true } func (this *CustomOneof) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof) if !ok { that2, ok := that.(CustomOneof) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof but is not nil && this == nil") } if that1.Custom == nil { if this.Custom != nil { return fmt.Errorf("this.Custom != nil && that1.Custom == nil") } } else if this.Custom == nil { return fmt.Errorf("this.Custom == nil && that1.Custom != nil") } else if err := this.Custom.VerboseEqual(that1.Custom); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomOneof_Stringy) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_Stringy) if !ok { that2, ok := that.(CustomOneof_Stringy) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_Stringy") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_Stringy but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_Stringy but is not nil && this == nil") } if this.Stringy != that1.Stringy { return fmt.Errorf("Stringy this(%v) Not Equal that(%v)", this.Stringy, that1.Stringy) } return nil } func (this *CustomOneof_CustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_CustomType) if !ok { that2, ok := that.(CustomOneof_CustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_CustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_CustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_CustomType but is not nil && this == nil") } if !this.CustomType.Equal(that1.CustomType) { return fmt.Errorf("CustomType this(%v) Not Equal that(%v)", this.CustomType, that1.CustomType) } return nil } func (this *CustomOneof_CastType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_CastType) if !ok { that2, ok := that.(CustomOneof_CastType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_CastType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_CastType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_CastType but is not nil && this == nil") } if this.CastType != that1.CastType { return fmt.Errorf("CastType this(%v) Not Equal that(%v)", this.CastType, that1.CastType) } return nil } func (this *CustomOneof_MyCustomName) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_MyCustomName) if !ok { that2, ok := that.(CustomOneof_MyCustomName) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_MyCustomName") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_MyCustomName but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_MyCustomName but is not nil && this == nil") } if this.MyCustomName != that1.MyCustomName { return fmt.Errorf("MyCustomName this(%v) Not Equal that(%v)", this.MyCustomName, that1.MyCustomName) } return nil } func (this *CustomOneof) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof) if !ok { that2, ok := that.(CustomOneof) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Custom == nil { if this.Custom != nil { return false } } else if this.Custom == nil { return false } else if !this.Custom.Equal(that1.Custom) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomOneof_Stringy) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_Stringy) if !ok { that2, ok := that.(CustomOneof_Stringy) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Stringy != that1.Stringy { return false } return true } func (this *CustomOneof_CustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_CustomType) if !ok { that2, ok := that.(CustomOneof_CustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.CustomType.Equal(that1.CustomType) { return false } return true } func (this *CustomOneof_CastType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_CastType) if !ok { that2, ok := that.(CustomOneof_CastType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.CastType != that1.CastType { return false } return true } func (this *CustomOneof_MyCustomName) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_MyCustomName) if !ok { that2, ok := that.(CustomOneof_MyCustomName) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.MyCustomName != that1.MyCustomName { return false } return true } func (this *Subby) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&one.Subby{") if this.Sub != nil { s = append(s, "Sub: "+valueToGoStringOne(this.Sub, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllTypesOneOf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&one.AllTypesOneOf{") if this.TestOneof != nil { s = append(s, "TestOneof: "+fmt.Sprintf("%#v", this.TestOneof)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllTypesOneOf_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field4) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field4{` + `Field4:` + fmt.Sprintf("%#v", this.Field4) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field5) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field5{` + `Field5:` + fmt.Sprintf("%#v", this.Field5) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field6) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field6{` + `Field6:` + fmt.Sprintf("%#v", this.Field6) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field7) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field7{` + `Field7:` + fmt.Sprintf("%#v", this.Field7) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field8) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field8{` + `Field8:` + fmt.Sprintf("%#v", this.Field8) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field9) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field9{` + `Field9:` + fmt.Sprintf("%#v", this.Field9) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field10) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field10{` + `Field10:` + fmt.Sprintf("%#v", this.Field10) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field11) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field11{` + `Field11:` + fmt.Sprintf("%#v", this.Field11) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field12) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field12{` + `Field12:` + fmt.Sprintf("%#v", this.Field12) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field13) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field13{` + `Field13:` + fmt.Sprintf("%#v", this.Field13) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field14) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field14{` + `Field14:` + fmt.Sprintf("%#v", this.Field14) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field15) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field15{` + `Field15:` + fmt.Sprintf("%#v", this.Field15) + `}`}, ", ") return s } func (this *AllTypesOneOf_SubMessage) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_SubMessage{` + `SubMessage:` + fmt.Sprintf("%#v", this.SubMessage) + `}`}, ", ") return s } func (this *TwoOneofs) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 10) s = append(s, "&one.TwoOneofs{") if this.One != nil { s = append(s, "One: "+fmt.Sprintf("%#v", this.One)+",\n") } if this.Two != nil { s = append(s, "Two: "+fmt.Sprintf("%#v", this.Two)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *TwoOneofs_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *TwoOneofs_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *TwoOneofs_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *TwoOneofs_Field34) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field34{` + `Field34:` + fmt.Sprintf("%#v", this.Field34) + `}`}, ", ") return s } func (this *TwoOneofs_Field35) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field35{` + `Field35:` + fmt.Sprintf("%#v", this.Field35) + `}`}, ", ") return s } func (this *TwoOneofs_SubMessage2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_SubMessage2{` + `SubMessage2:` + fmt.Sprintf("%#v", this.SubMessage2) + `}`}, ", ") return s } func (this *CustomOneof) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&one.CustomOneof{") if this.Custom != nil { s = append(s, "Custom: "+fmt.Sprintf("%#v", this.Custom)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomOneof_Stringy) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_Stringy{` + `Stringy:` + fmt.Sprintf("%#v", this.Stringy) + `}`}, ", ") return s } func (this *CustomOneof_CustomType) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_CustomType{` + `CustomType:` + fmt.Sprintf("%#v", this.CustomType) + `}`}, ", ") return s } func (this *CustomOneof_CastType) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_CastType{` + `CastType:` + fmt.Sprintf("%#v", this.CastType) + `}`}, ", ") return s } func (this *CustomOneof_MyCustomName) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_MyCustomName{` + `MyCustomName:` + fmt.Sprintf("%#v", this.MyCustomName) + `}`}, ", ") return s } func valueToGoStringOne(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Subby) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Subby) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Sub != nil { dAtA[i] = 0xa i++ i = encodeVarintOne(dAtA, i, uint64(len(*m.Sub))) i += copy(dAtA[i:], *m.Sub) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AllTypesOneOf) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllTypesOneOf) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.TestOneof != nil { nn1, err := m.TestOneof.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn1 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AllTypesOneOf_Field1) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 return i, nil } func (m *AllTypesOneOf_Field2) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 return i, nil } func (m *AllTypesOneOf_Field3) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x18 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field3)) return i, nil } func (m *AllTypesOneOf_Field4) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x20 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field4)) return i, nil } func (m *AllTypesOneOf_Field5) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x28 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field5)) return i, nil } func (m *AllTypesOneOf_Field6) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x30 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field6)) return i, nil } func (m *AllTypesOneOf_Field7) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x38 i++ i = encodeVarintOne(dAtA, i, uint64((uint32(m.Field7)<<1)^uint32((m.Field7>>31)))) return i, nil } func (m *AllTypesOneOf_Field8) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x40 i++ i = encodeVarintOne(dAtA, i, uint64((uint64(m.Field8)<<1)^uint64((m.Field8>>63)))) return i, nil } func (m *AllTypesOneOf_Field9) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field9)) i += 4 return i, nil } func (m *AllTypesOneOf_Field10) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field10)) i += 4 return i, nil } func (m *AllTypesOneOf_Field11) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field11)) i += 8 return i, nil } func (m *AllTypesOneOf_Field12) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field12)) i += 8 return i, nil } func (m *AllTypesOneOf_Field13) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x68 i++ if m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ return i, nil } func (m *AllTypesOneOf_Field14) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x72 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field14))) i += copy(dAtA[i:], m.Field14) return i, nil } func (m *AllTypesOneOf_Field15) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } return i, nil } func (m *AllTypesOneOf_SubMessage) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.SubMessage != nil { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ i = encodeVarintOne(dAtA, i, uint64(m.SubMessage.Size())) n2, err := m.SubMessage.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } return i, nil } func (m *TwoOneofs) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *TwoOneofs) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.One != nil { nn3, err := m.One.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn3 } if m.Two != nil { nn4, err := m.Two.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn4 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *TwoOneofs_Field1) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 return i, nil } func (m *TwoOneofs_Field2) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 return i, nil } func (m *TwoOneofs_Field3) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x18 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field3)) return i, nil } func (m *TwoOneofs_Field34) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x92 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field34))) i += copy(dAtA[i:], m.Field34) return i, nil } func (m *TwoOneofs_Field35) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Field35 != nil { dAtA[i] = 0x9a i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field35))) i += copy(dAtA[i:], m.Field35) } return i, nil } func (m *TwoOneofs_SubMessage2) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.SubMessage2 != nil { dAtA[i] = 0xa2 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(m.SubMessage2.Size())) n5, err := m.SubMessage2.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n5 } return i, nil } func (m *CustomOneof) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomOneof) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Custom != nil { nn6, err := m.Custom.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn6 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomOneof_Stringy) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x92 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Stringy))) i += copy(dAtA[i:], m.Stringy) return i, nil } func (m *CustomOneof_CustomType) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x9a i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(m.CustomType.Size())) n7, err := m.CustomType.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n7 return i, nil } func (m *CustomOneof_CastType) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0xa0 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(m.CastType)) return i, nil } func (m *CustomOneof_MyCustomName) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0xa8 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(m.MyCustomName)) return i, nil } func encodeVarintOne(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedSubby(r randyOne, easy bool) *Subby { this := &Subby{} if r.Intn(10) != 0 { v1 := string(randStringOne(r)) this.Sub = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 2) } return this } func NewPopulatedAllTypesOneOf(r randyOne, easy bool) *AllTypesOneOf { this := &AllTypesOneOf{} oneofNumber_TestOneof := []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}[r.Intn(16)] switch oneofNumber_TestOneof { case 1: this.TestOneof = NewPopulatedAllTypesOneOf_Field1(r, easy) case 2: this.TestOneof = NewPopulatedAllTypesOneOf_Field2(r, easy) case 3: this.TestOneof = NewPopulatedAllTypesOneOf_Field3(r, easy) case 4: this.TestOneof = NewPopulatedAllTypesOneOf_Field4(r, easy) case 5: this.TestOneof = NewPopulatedAllTypesOneOf_Field5(r, easy) case 6: this.TestOneof = NewPopulatedAllTypesOneOf_Field6(r, easy) case 7: this.TestOneof = NewPopulatedAllTypesOneOf_Field7(r, easy) case 8: this.TestOneof = NewPopulatedAllTypesOneOf_Field8(r, easy) case 9: this.TestOneof = NewPopulatedAllTypesOneOf_Field9(r, easy) case 10: this.TestOneof = NewPopulatedAllTypesOneOf_Field10(r, easy) case 11: this.TestOneof = NewPopulatedAllTypesOneOf_Field11(r, easy) case 12: this.TestOneof = NewPopulatedAllTypesOneOf_Field12(r, easy) case 13: this.TestOneof = NewPopulatedAllTypesOneOf_Field13(r, easy) case 14: this.TestOneof = NewPopulatedAllTypesOneOf_Field14(r, easy) case 15: this.TestOneof = NewPopulatedAllTypesOneOf_Field15(r, easy) case 16: this.TestOneof = NewPopulatedAllTypesOneOf_SubMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 17) } return this } func NewPopulatedAllTypesOneOf_Field1(r randyOne, easy bool) *AllTypesOneOf_Field1 { this := &AllTypesOneOf_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field2(r randyOne, easy bool) *AllTypesOneOf_Field2 { this := &AllTypesOneOf_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field3(r randyOne, easy bool) *AllTypesOneOf_Field3 { this := &AllTypesOneOf_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field4(r randyOne, easy bool) *AllTypesOneOf_Field4 { this := &AllTypesOneOf_Field4{} this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field5(r randyOne, easy bool) *AllTypesOneOf_Field5 { this := &AllTypesOneOf_Field5{} this.Field5 = uint32(r.Uint32()) return this } func NewPopulatedAllTypesOneOf_Field6(r randyOne, easy bool) *AllTypesOneOf_Field6 { this := &AllTypesOneOf_Field6{} this.Field6 = uint64(uint64(r.Uint32())) return this } func NewPopulatedAllTypesOneOf_Field7(r randyOne, easy bool) *AllTypesOneOf_Field7 { this := &AllTypesOneOf_Field7{} this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field8(r randyOne, easy bool) *AllTypesOneOf_Field8 { this := &AllTypesOneOf_Field8{} this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field9(r randyOne, easy bool) *AllTypesOneOf_Field9 { this := &AllTypesOneOf_Field9{} this.Field9 = uint32(r.Uint32()) return this } func NewPopulatedAllTypesOneOf_Field10(r randyOne, easy bool) *AllTypesOneOf_Field10 { this := &AllTypesOneOf_Field10{} this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field11(r randyOne, easy bool) *AllTypesOneOf_Field11 { this := &AllTypesOneOf_Field11{} this.Field11 = uint64(uint64(r.Uint32())) return this } func NewPopulatedAllTypesOneOf_Field12(r randyOne, easy bool) *AllTypesOneOf_Field12 { this := &AllTypesOneOf_Field12{} this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field13(r randyOne, easy bool) *AllTypesOneOf_Field13 { this := &AllTypesOneOf_Field13{} this.Field13 = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedAllTypesOneOf_Field14(r randyOne, easy bool) *AllTypesOneOf_Field14 { this := &AllTypesOneOf_Field14{} this.Field14 = string(randStringOne(r)) return this } func NewPopulatedAllTypesOneOf_Field15(r randyOne, easy bool) *AllTypesOneOf_Field15 { this := &AllTypesOneOf_Field15{} v2 := r.Intn(100) this.Field15 = make([]byte, v2) for i := 0; i < v2; i++ { this.Field15[i] = byte(r.Intn(256)) } return this } func NewPopulatedAllTypesOneOf_SubMessage(r randyOne, easy bool) *AllTypesOneOf_SubMessage { this := &AllTypesOneOf_SubMessage{} this.SubMessage = NewPopulatedSubby(r, easy) return this } func NewPopulatedTwoOneofs(r randyOne, easy bool) *TwoOneofs { this := &TwoOneofs{} oneofNumber_One := []int32{1, 2, 3}[r.Intn(3)] switch oneofNumber_One { case 1: this.One = NewPopulatedTwoOneofs_Field1(r, easy) case 2: this.One = NewPopulatedTwoOneofs_Field2(r, easy) case 3: this.One = NewPopulatedTwoOneofs_Field3(r, easy) } oneofNumber_Two := []int32{34, 35, 36}[r.Intn(3)] switch oneofNumber_Two { case 34: this.Two = NewPopulatedTwoOneofs_Field34(r, easy) case 35: this.Two = NewPopulatedTwoOneofs_Field35(r, easy) case 36: this.Two = NewPopulatedTwoOneofs_SubMessage2(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 37) } return this } func NewPopulatedTwoOneofs_Field1(r randyOne, easy bool) *TwoOneofs_Field1 { this := &TwoOneofs_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedTwoOneofs_Field2(r randyOne, easy bool) *TwoOneofs_Field2 { this := &TwoOneofs_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedTwoOneofs_Field3(r randyOne, easy bool) *TwoOneofs_Field3 { this := &TwoOneofs_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedTwoOneofs_Field34(r randyOne, easy bool) *TwoOneofs_Field34 { this := &TwoOneofs_Field34{} this.Field34 = string(randStringOne(r)) return this } func NewPopulatedTwoOneofs_Field35(r randyOne, easy bool) *TwoOneofs_Field35 { this := &TwoOneofs_Field35{} v3 := r.Intn(100) this.Field35 = make([]byte, v3) for i := 0; i < v3; i++ { this.Field35[i] = byte(r.Intn(256)) } return this } func NewPopulatedTwoOneofs_SubMessage2(r randyOne, easy bool) *TwoOneofs_SubMessage2 { this := &TwoOneofs_SubMessage2{} this.SubMessage2 = NewPopulatedSubby(r, easy) return this } func NewPopulatedCustomOneof(r randyOne, easy bool) *CustomOneof { this := &CustomOneof{} oneofNumber_Custom := []int32{34, 35, 36, 37}[r.Intn(4)] switch oneofNumber_Custom { case 34: this.Custom = NewPopulatedCustomOneof_Stringy(r, easy) case 35: this.Custom = NewPopulatedCustomOneof_CustomType(r, easy) case 36: this.Custom = NewPopulatedCustomOneof_CastType(r, easy) case 37: this.Custom = NewPopulatedCustomOneof_MyCustomName(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 38) } return this } func NewPopulatedCustomOneof_Stringy(r randyOne, easy bool) *CustomOneof_Stringy { this := &CustomOneof_Stringy{} this.Stringy = string(randStringOne(r)) return this } func NewPopulatedCustomOneof_CustomType(r randyOne, easy bool) *CustomOneof_CustomType { this := &CustomOneof_CustomType{} v4 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.CustomType = *v4 return this } func NewPopulatedCustomOneof_CastType(r randyOne, easy bool) *CustomOneof_CastType { this := &CustomOneof_CastType{} this.CastType = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) return this } func NewPopulatedCustomOneof_MyCustomName(r randyOne, easy bool) *CustomOneof_MyCustomName { this := &CustomOneof_MyCustomName{} this.MyCustomName = int64(r.Int63()) if r.Intn(2) == 0 { this.MyCustomName *= -1 } return this } type randyOne interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneOne(r randyOne) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringOne(r randyOne) string { v5 := r.Intn(100) tmps := make([]rune, v5) for i := 0; i < v5; i++ { tmps[i] = randUTF8RuneOne(r) } return string(tmps) } func randUnrecognizedOne(r randyOne, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldOne(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldOne(dAtA []byte, r randyOne, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) v6 := r.Int63() if r.Intn(2) == 0 { v6 *= -1 } dAtA = encodeVarintPopulateOne(dAtA, uint64(v6)) case 1: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateOne(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateOne(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Subby) Size() (n int) { var l int _ = l if m.Sub != nil { l = len(*m.Sub) n += 1 + l + sovOne(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllTypesOneOf) Size() (n int) { var l int _ = l if m.TestOneof != nil { n += m.TestOneof.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllTypesOneOf_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *AllTypesOneOf_Field4) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field4)) return n } func (m *AllTypesOneOf_Field5) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field5)) return n } func (m *AllTypesOneOf_Field6) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field6)) return n } func (m *AllTypesOneOf_Field7) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field7)) return n } func (m *AllTypesOneOf_Field8) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field8)) return n } func (m *AllTypesOneOf_Field9) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field10) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field11) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field12) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field13) Size() (n int) { var l int _ = l n += 2 return n } func (m *AllTypesOneOf_Field14) Size() (n int) { var l int _ = l l = len(m.Field14) n += 1 + l + sovOne(uint64(l)) return n } func (m *AllTypesOneOf_Field15) Size() (n int) { var l int _ = l if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovOne(uint64(l)) } return n } func (m *AllTypesOneOf_SubMessage) Size() (n int) { var l int _ = l if m.SubMessage != nil { l = m.SubMessage.Size() n += 2 + l + sovOne(uint64(l)) } return n } func (m *TwoOneofs) Size() (n int) { var l int _ = l if m.One != nil { n += m.One.Size() } if m.Two != nil { n += m.Two.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *TwoOneofs_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *TwoOneofs_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *TwoOneofs_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *TwoOneofs_Field34) Size() (n int) { var l int _ = l l = len(m.Field34) n += 2 + l + sovOne(uint64(l)) return n } func (m *TwoOneofs_Field35) Size() (n int) { var l int _ = l if m.Field35 != nil { l = len(m.Field35) n += 2 + l + sovOne(uint64(l)) } return n } func (m *TwoOneofs_SubMessage2) Size() (n int) { var l int _ = l if m.SubMessage2 != nil { l = m.SubMessage2.Size() n += 2 + l + sovOne(uint64(l)) } return n } func (m *CustomOneof) Size() (n int) { var l int _ = l if m.Custom != nil { n += m.Custom.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomOneof_Stringy) Size() (n int) { var l int _ = l l = len(m.Stringy) n += 2 + l + sovOne(uint64(l)) return n } func (m *CustomOneof_CustomType) Size() (n int) { var l int _ = l l = m.CustomType.Size() n += 2 + l + sovOne(uint64(l)) return n } func (m *CustomOneof_CastType) Size() (n int) { var l int _ = l n += 2 + sovOne(uint64(m.CastType)) return n } func (m *CustomOneof_MyCustomName) Size() (n int) { var l int _ = l n += 2 + sovOne(uint64(m.MyCustomName)) return n } func sovOne(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozOne(x uint64) (n int) { return sovOne(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Subby) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Subby{`, `Sub:` + valueToStringOne(this.Sub) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf{`, `TestOneof:` + fmt.Sprintf("%v", this.TestOneof) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field4) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field4{`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field5) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field5{`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field6) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field6{`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field7) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field7{`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field8) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field8{`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field9) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field9{`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field10) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field10{`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field11) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field11{`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field12) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field12{`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field13) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field13{`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field14) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field14{`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field15) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field15{`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_SubMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_SubMessage{`, `SubMessage:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func (this *TwoOneofs) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs{`, `One:` + fmt.Sprintf("%v", this.One) + `,`, `Two:` + fmt.Sprintf("%v", this.Two) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field34) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field34{`, `Field34:` + fmt.Sprintf("%v", this.Field34) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field35) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field35{`, `Field35:` + fmt.Sprintf("%v", this.Field35) + `,`, `}`, }, "") return s } func (this *TwoOneofs_SubMessage2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_SubMessage2{`, `SubMessage2:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage2), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func (this *CustomOneof) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof{`, `Custom:` + fmt.Sprintf("%v", this.Custom) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomOneof_Stringy) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_Stringy{`, `Stringy:` + fmt.Sprintf("%v", this.Stringy) + `,`, `}`, }, "") return s } func (this *CustomOneof_CustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_CustomType{`, `CustomType:` + fmt.Sprintf("%v", this.CustomType) + `,`, `}`, }, "") return s } func (this *CustomOneof_CastType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_CastType{`, `CastType:` + fmt.Sprintf("%v", this.CastType) + `,`, `}`, }, "") return s } func (this *CustomOneof_MyCustomName) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_MyCustomName{`, `MyCustomName:` + fmt.Sprintf("%v", this.MyCustomName) + `,`, `}`, }, "") return s } func valueToStringOne(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Subby) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Subby: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Subby: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sub", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Sub = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllTypesOneOf) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllTypesOneOf: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllTypesOneOf: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &AllTypesOneOf_Field1{float64(math.Float64frombits(v))} case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &AllTypesOneOf_Field2{float32(math.Float32frombits(v))} case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &AllTypesOneOf_Field3{v} case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &AllTypesOneOf_Field4{v} case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &AllTypesOneOf_Field5{v} case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &AllTypesOneOf_Field6{v} case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.TestOneof = &AllTypesOneOf_Field7{v} case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.TestOneof = &AllTypesOneOf_Field8{int64(v)} case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &AllTypesOneOf_Field9{v} case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &AllTypesOneOf_Field10{v} case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &AllTypesOneOf_Field11{v} case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &AllTypesOneOf_Field12{v} case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.TestOneof = &AllTypesOneOf_Field13{b} case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.TestOneof = &AllTypesOneOf_Field14{string(dAtA[iNdEx:postIndex])} iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } v := make([]byte, postIndex-iNdEx) copy(v, dAtA[iNdEx:postIndex]) m.TestOneof = &AllTypesOneOf_Field15{v} iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SubMessage", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &Subby{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.TestOneof = &AllTypesOneOf_SubMessage{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *TwoOneofs) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: TwoOneofs: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: TwoOneofs: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.One = &TwoOneofs_Field1{float64(math.Float64frombits(v))} case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.One = &TwoOneofs_Field2{float32(math.Float32frombits(v))} case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.One = &TwoOneofs_Field3{v} case 34: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field34", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Two = &TwoOneofs_Field34{string(dAtA[iNdEx:postIndex])} iNdEx = postIndex case 35: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field35", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } v := make([]byte, postIndex-iNdEx) copy(v, dAtA[iNdEx:postIndex]) m.Two = &TwoOneofs_Field35{v} iNdEx = postIndex case 36: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SubMessage2", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &Subby{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.Two = &TwoOneofs_SubMessage2{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomOneof) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomOneof: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomOneof: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 34: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Stringy", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Custom = &CustomOneof_Stringy{string(dAtA[iNdEx:postIndex])} iNdEx = postIndex case 35: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CustomType", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var vv github_com_gogo_protobuf_test_custom.Uint128 v := &vv if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.Custom = &CustomOneof_CustomType{*v} iNdEx = postIndex case 36: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field CastType", wireType) } var v github_com_gogo_protobuf_test_casttype.MyUint64Type for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } m.Custom = &CustomOneof_CastType{v} case 37: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field MyCustomName", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Custom = &CustomOneof_MyCustomName{v} default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipOne(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthOne } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipOne(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthOne = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowOne = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/both/one.proto", fileDescriptorOne) } var fileDescriptorOne = []byte{ // 596 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0xd3, 0x3f, 0x4f, 0xdb, 0x40, 0x14, 0x00, 0x70, 0x3f, 0x42, 0x42, 0xb8, 0x84, 0x92, 0x5a, 0xaa, 0x74, 0x65, 0x38, 0x4e, 0x69, 0x2b, 0xdd, 0x50, 0x12, 0xe2, 0xd8, 0xfc, 0x19, 0x6b, 0xaa, 0x2a, 0x0b, 0x45, 0x32, 0x30, 0xa3, 0x98, 0x9a, 0x10, 0x89, 0xf8, 0x10, 0x77, 0x16, 0xf2, 0xc6, 0x67, 0xe8, 0xa7, 0xe8, 0xd8, 0xb1, 0x1f, 0x81, 0x31, 0x63, 0xd5, 0x21, 0xc2, 0xee, 0xd2, 0x91, 0x11, 0x75, 0xaa, 0xce, 0x26, 0x77, 0x95, 0xaa, 0xaa, 0x4b, 0xa7, 0xf8, 0xbd, 0x9f, 0xef, 0xe5, 0x3d, 0xdf, 0x1d, 0x7a, 0x76, 0xca, 0x27, 0x21, 0x17, 0xdd, 0x90, 0xcb, 0xf3, 0x2e, 0x8f, 0xa3, 0xce, 0xe5, 0x15, 0x97, 0xdc, 0xae, 0xf0, 0x38, 0x5a, 0xdb, 0x18, 0x8d, 0xe5, 0x79, 0x12, 0x76, 0x4e, 0xf9, 0xa4, 0x3b, 0xe2, 0x23, 0xde, 0x2d, 0x2c, 0x4c, 0xce, 0x8a, 0xa8, 0x08, 0x8a, 0xa7, 0x72, 0x4d, 0xfb, 0x39, 0xaa, 0x1e, 0x26, 0x61, 0x98, 0xda, 0x2d, 0x54, 0x11, 0x49, 0x88, 0x81, 0x02, 0x5b, 0x0e, 0xd4, 0x63, 0x7b, 0x56, 0x41, 0x2b, 0x6f, 0x2e, 0x2e, 0x8e, 0xd2, 0xcb, 0x48, 0x1c, 0xc4, 0xd1, 0xc1, 0x99, 0x8d, 0x51, 0xed, 0xdd, 0x38, 0xba, 0xf8, 0xd0, 0x2b, 0x5e, 0x83, 0x81, 0x15, 0x3c, 0xc6, 0x5a, 0x1c, 0xbc, 0x40, 0x81, 0x2d, 0x68, 0x71, 0xb4, 0xf4, 0x71, 0x85, 0x02, 0xab, 0x6a, 0xe9, 0x6b, 0x71, 0xf1, 0x22, 0x05, 0x56, 0xd1, 0xe2, 0x6a, 0xf1, 0x70, 0x95, 0x02, 0x5b, 0xd1, 0xe2, 0x69, 0xd9, 0xc2, 0x35, 0x0a, 0x6c, 0x51, 0xcb, 0x96, 0x96, 0x6d, 0xbc, 0x44, 0x81, 0x3d, 0xd5, 0xb2, 0xad, 0x65, 0x07, 0xd7, 0x29, 0x30, 0x5b, 0xcb, 0x8e, 0x96, 0x5d, 0xbc, 0x4c, 0x81, 0x2d, 0x69, 0xd9, 0xb5, 0xd7, 0xd0, 0x52, 0x39, 0xd9, 0x26, 0x46, 0x14, 0xd8, 0xea, 0xc0, 0x0a, 0xe6, 0x09, 0x63, 0x3d, 0xdc, 0xa0, 0xc0, 0x6a, 0xc6, 0x7a, 0xc6, 0x1c, 0xdc, 0xa4, 0xc0, 0x5a, 0xc6, 0x1c, 0x63, 0x7d, 0xbc, 0x42, 0x81, 0xd5, 0x8d, 0xf5, 0x8d, 0xb9, 0xf8, 0x89, 0xda, 0x01, 0x63, 0xae, 0x31, 0x0f, 0xaf, 0x52, 0x60, 0x4d, 0x63, 0x9e, 0xbd, 0x81, 0x1a, 0x22, 0x09, 0x4f, 0x26, 0x91, 0x10, 0xc3, 0x51, 0x84, 0x5b, 0x14, 0x58, 0xc3, 0x41, 0x1d, 0x75, 0x26, 0x8a, 0x6d, 0x1d, 0x58, 0x01, 0x12, 0x49, 0xb8, 0x5f, 0xba, 0xdf, 0x44, 0x48, 0x46, 0x42, 0x9e, 0xf0, 0x38, 0xe2, 0x67, 0xed, 0x29, 0xa0, 0xe5, 0xa3, 0x6b, 0x7e, 0xa0, 0x02, 0xf1, 0x9f, 0x37, 0x77, 0xde, 0x74, 0xdf, 0xc5, 0xed, 0x62, 0x20, 0x08, 0xe6, 0x09, 0x63, 0x1e, 0x7e, 0x51, 0x0c, 0xa4, 0xcd, 0xb3, 0xbb, 0xa8, 0xf9, 0xdb, 0x40, 0x0e, 0x7e, 0xf9, 0xc7, 0x44, 0x10, 0x34, 0xcc, 0x44, 0x8e, 0x5f, 0x45, 0xea, 0xd8, 0xab, 0x1f, 0x79, 0xcd, 0xdb, 0x1f, 0x17, 0x50, 0x63, 0x2f, 0x11, 0x92, 0x4f, 0x8a, 0xa9, 0xd4, 0x5f, 0x1d, 0xca, 0xab, 0x71, 0x3c, 0x4a, 0x1f, 0xdb, 0xb0, 0x82, 0x79, 0xc2, 0x0e, 0x10, 0x2a, 0x5f, 0x55, 0x27, 0xbc, 0xec, 0xc4, 0xdf, 0xfc, 0x36, 0x5b, 0x7f, 0xfd, 0xd7, 0x1b, 0xa4, 0xbe, 0x5d, 0xf7, 0xb4, 0x58, 0xd3, 0x39, 0x1e, 0xc7, 0xb2, 0xe7, 0xec, 0xa8, 0x0f, 0x6c, 0xaa, 0xd8, 0xc7, 0xa8, 0xbe, 0x37, 0x14, 0xb2, 0xa8, 0xa8, 0x5a, 0x5f, 0xf4, 0xb7, 0x7f, 0xce, 0xd6, 0xfb, 0xff, 0xa8, 0x38, 0x14, 0x52, 0xa6, 0x97, 0x51, 0x67, 0x3f, 0x55, 0x55, 0xb7, 0x5c, 0xb5, 0x7c, 0x60, 0x05, 0xba, 0x94, 0xed, 0xcc, 0x5b, 0x7d, 0x3f, 0x9c, 0x44, 0xf8, 0x95, 0xba, 0x2e, 0x7e, 0x2b, 0x9f, 0xad, 0x37, 0xf7, 0x53, 0x93, 0x37, 0xad, 0xa8, 0xc8, 0xaf, 0xa3, 0x5a, 0xd9, 0xaa, 0xff, 0xf6, 0x36, 0x23, 0xd6, 0x34, 0x23, 0xd6, 0xd7, 0x8c, 0x58, 0x77, 0x19, 0x81, 0xfb, 0x8c, 0xc0, 0x43, 0x46, 0xe0, 0x26, 0x27, 0xf0, 0x29, 0x27, 0xf0, 0x39, 0x27, 0xf0, 0x25, 0x27, 0x70, 0x9b, 0x13, 0x98, 0xe6, 0x04, 0xee, 0x72, 0x02, 0x3f, 0x72, 0x62, 0xdd, 0xe7, 0x04, 0x1e, 0x72, 0x62, 0xdd, 0x7c, 0x27, 0xd6, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb8, 0x65, 0xb5, 0xca, 0x75, 0x04, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/oneof/combos/both/one.proto000066400000000000000000000064011317075173200235170ustar00rootroot00000000000000// 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 one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { optional string sub = 1; } message AllTypesOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } message TwoOneofs { oneof one { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; } oneof two { string Field34 = 34; bytes Field35 = 35; Subby sub_message2 = 36; } } message CustomOneof { oneof custom { string Stringy = 34; bytes CustomType = 35 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; uint64 CastType = 36 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; int64 CustomName = 37 [(gogoproto.customname) = "MyCustomName"]; } } golang-gogoprotobuf-0.5/test/oneof/combos/both/onepb_test.go000066400000000000000000000545041317075173200243510ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/both/one.proto It has these top-level messages: Subby AllTypesOneOf TwoOneofs CustomOneof */ package one import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSubbyProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSubbyMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllTypesOneOfMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestTwoOneofsMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomOneofMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllTypesOneOfJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTwoOneofsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomOneofJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubbyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneDescription(t *testing.T) { OneDescription() } func TestSubbyVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllTypesOneOfVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTwoOneofsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomOneofVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSubbyGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllTypesOneOfGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTwoOneofsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomOneofGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSubbySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestAllTypesOneOfSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestTwoOneofsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestCustomOneofSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSubbyStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllTypesOneOfStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTwoOneofsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomOneofStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/oneof/combos/marshaler/000077500000000000000000000000001317075173200226725ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof/combos/marshaler/one.pb.go000066400000000000000000004126231317075173200244120ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/marshaler/one.proto It has these top-level messages: Subby AllTypesOneOf TwoOneofs CustomOneof */ package one import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test_casttype "github.com/gogo/protobuf/test/casttype" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Subby struct { Sub *string `protobuf:"bytes,1,opt,name=sub" json:"sub,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Subby) Reset() { *m = Subby{} } func (*Subby) ProtoMessage() {} func (*Subby) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{0} } type AllTypesOneOf struct { // Types that are valid to be assigned to TestOneof: // *AllTypesOneOf_Field1 // *AllTypesOneOf_Field2 // *AllTypesOneOf_Field3 // *AllTypesOneOf_Field4 // *AllTypesOneOf_Field5 // *AllTypesOneOf_Field6 // *AllTypesOneOf_Field7 // *AllTypesOneOf_Field8 // *AllTypesOneOf_Field9 // *AllTypesOneOf_Field10 // *AllTypesOneOf_Field11 // *AllTypesOneOf_Field12 // *AllTypesOneOf_Field13 // *AllTypesOneOf_Field14 // *AllTypesOneOf_Field15 // *AllTypesOneOf_SubMessage TestOneof isAllTypesOneOf_TestOneof `protobuf_oneof:"test_oneof"` XXX_unrecognized []byte `json:"-"` } func (m *AllTypesOneOf) Reset() { *m = AllTypesOneOf{} } func (*AllTypesOneOf) ProtoMessage() {} func (*AllTypesOneOf) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{1} } type isAllTypesOneOf_TestOneof interface { isAllTypesOneOf_TestOneof() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type AllTypesOneOf_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,oneof"` } type AllTypesOneOf_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,oneof"` } type AllTypesOneOf_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,oneof"` } type AllTypesOneOf_Field4 struct { Field4 int64 `protobuf:"varint,4,opt,name=Field4,oneof"` } type AllTypesOneOf_Field5 struct { Field5 uint32 `protobuf:"varint,5,opt,name=Field5,oneof"` } type AllTypesOneOf_Field6 struct { Field6 uint64 `protobuf:"varint,6,opt,name=Field6,oneof"` } type AllTypesOneOf_Field7 struct { Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7,oneof"` } type AllTypesOneOf_Field8 struct { Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8,oneof"` } type AllTypesOneOf_Field9 struct { Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9,oneof"` } type AllTypesOneOf_Field10 struct { Field10 int32 `protobuf:"fixed32,10,opt,name=Field10,oneof"` } type AllTypesOneOf_Field11 struct { Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11,oneof"` } type AllTypesOneOf_Field12 struct { Field12 int64 `protobuf:"fixed64,12,opt,name=Field12,oneof"` } type AllTypesOneOf_Field13 struct { Field13 bool `protobuf:"varint,13,opt,name=Field13,oneof"` } type AllTypesOneOf_Field14 struct { Field14 string `protobuf:"bytes,14,opt,name=Field14,oneof"` } type AllTypesOneOf_Field15 struct { Field15 []byte `protobuf:"bytes,15,opt,name=Field15,oneof"` } type AllTypesOneOf_SubMessage struct { SubMessage *Subby `protobuf:"bytes,16,opt,name=sub_message,json=subMessage,oneof"` } func (*AllTypesOneOf_Field1) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field2) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field3) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field4) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field5) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field6) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field7) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field8) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field9) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field10) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field11) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field12) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field13) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field14) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field15) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_SubMessage) isAllTypesOneOf_TestOneof() {} func (m *AllTypesOneOf) GetTestOneof() isAllTypesOneOf_TestOneof { if m != nil { return m.TestOneof } return nil } func (m *AllTypesOneOf) GetField1() float64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field1); ok { return x.Field1 } return 0 } func (m *AllTypesOneOf) GetField2() float32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field2); ok { return x.Field2 } return 0 } func (m *AllTypesOneOf) GetField3() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field3); ok { return x.Field3 } return 0 } func (m *AllTypesOneOf) GetField4() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field4); ok { return x.Field4 } return 0 } func (m *AllTypesOneOf) GetField5() uint32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field5); ok { return x.Field5 } return 0 } func (m *AllTypesOneOf) GetField6() uint64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field6); ok { return x.Field6 } return 0 } func (m *AllTypesOneOf) GetField7() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field7); ok { return x.Field7 } return 0 } func (m *AllTypesOneOf) GetField8() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field8); ok { return x.Field8 } return 0 } func (m *AllTypesOneOf) GetField9() uint32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field9); ok { return x.Field9 } return 0 } func (m *AllTypesOneOf) GetField10() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field10); ok { return x.Field10 } return 0 } func (m *AllTypesOneOf) GetField11() uint64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field11); ok { return x.Field11 } return 0 } func (m *AllTypesOneOf) GetField12() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field12); ok { return x.Field12 } return 0 } func (m *AllTypesOneOf) GetField13() bool { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field13); ok { return x.Field13 } return false } func (m *AllTypesOneOf) GetField14() string { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field14); ok { return x.Field14 } return "" } func (m *AllTypesOneOf) GetField15() []byte { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field15); ok { return x.Field15 } return nil } func (m *AllTypesOneOf) GetSubMessage() *Subby { if x, ok := m.GetTestOneof().(*AllTypesOneOf_SubMessage); ok { return x.SubMessage } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*AllTypesOneOf) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _AllTypesOneOf_OneofMarshaler, _AllTypesOneOf_OneofUnmarshaler, _AllTypesOneOf_OneofSizer, []interface{}{ (*AllTypesOneOf_Field1)(nil), (*AllTypesOneOf_Field2)(nil), (*AllTypesOneOf_Field3)(nil), (*AllTypesOneOf_Field4)(nil), (*AllTypesOneOf_Field5)(nil), (*AllTypesOneOf_Field6)(nil), (*AllTypesOneOf_Field7)(nil), (*AllTypesOneOf_Field8)(nil), (*AllTypesOneOf_Field9)(nil), (*AllTypesOneOf_Field10)(nil), (*AllTypesOneOf_Field11)(nil), (*AllTypesOneOf_Field12)(nil), (*AllTypesOneOf_Field13)(nil), (*AllTypesOneOf_Field14)(nil), (*AllTypesOneOf_Field15)(nil), (*AllTypesOneOf_SubMessage)(nil), } } func _AllTypesOneOf_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*AllTypesOneOf) // test_oneof switch x := m.TestOneof.(type) { case *AllTypesOneOf_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *AllTypesOneOf_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *AllTypesOneOf_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case *AllTypesOneOf_Field4: _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field4)) case *AllTypesOneOf_Field5: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field5)) case *AllTypesOneOf_Field6: _ = b.EncodeVarint(6<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field6)) case *AllTypesOneOf_Field7: _ = b.EncodeVarint(7<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Field7)) case *AllTypesOneOf_Field8: _ = b.EncodeVarint(8<<3 | proto.WireVarint) _ = b.EncodeZigzag64(uint64(x.Field8)) case *AllTypesOneOf_Field9: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field9)) case *AllTypesOneOf_Field10: _ = b.EncodeVarint(10<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field10)) case *AllTypesOneOf_Field11: _ = b.EncodeVarint(11<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field11)) case *AllTypesOneOf_Field12: _ = b.EncodeVarint(12<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field12)) case *AllTypesOneOf_Field13: t := uint64(0) if x.Field13 { t = 1 } _ = b.EncodeVarint(13<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *AllTypesOneOf_Field14: _ = b.EncodeVarint(14<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field14) case *AllTypesOneOf_Field15: _ = b.EncodeVarint(15<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field15) case *AllTypesOneOf_SubMessage: _ = b.EncodeVarint(16<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage); err != nil { return err } case nil: default: return fmt.Errorf("AllTypesOneOf.TestOneof has unexpected type %T", x) } return nil } func _AllTypesOneOf_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*AllTypesOneOf) switch tag { case 1: // test_oneof.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field1{math.Float64frombits(x)} return true, err case 2: // test_oneof.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // test_oneof.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field3{int32(x)} return true, err case 4: // test_oneof.Field4 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field4{int64(x)} return true, err case 5: // test_oneof.Field5 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field5{uint32(x)} return true, err case 6: // test_oneof.Field6 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field6{x} return true, err case 7: // test_oneof.Field7 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.TestOneof = &AllTypesOneOf_Field7{int32(x)} return true, err case 8: // test_oneof.Field8 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag64() m.TestOneof = &AllTypesOneOf_Field8{int64(x)} return true, err case 9: // test_oneof.Field9 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field9{uint32(x)} return true, err case 10: // test_oneof.Field10 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field10{int32(x)} return true, err case 11: // test_oneof.Field11 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field11{x} return true, err case 12: // test_oneof.Field12 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field12{int64(x)} return true, err case 13: // test_oneof.Field13 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field13{x != 0} return true, err case 14: // test_oneof.Field14 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.TestOneof = &AllTypesOneOf_Field14{x} return true, err case 15: // test_oneof.Field15 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.TestOneof = &AllTypesOneOf_Field15{x} return true, err case 16: // test_oneof.sub_message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.TestOneof = &AllTypesOneOf_SubMessage{msg} return true, err default: return false, nil } } func _AllTypesOneOf_OneofSizer(msg proto.Message) (n int) { m := msg.(*AllTypesOneOf) // test_oneof switch x := m.TestOneof.(type) { case *AllTypesOneOf_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case *AllTypesOneOf_Field4: n += proto.SizeVarint(4<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field4)) case *AllTypesOneOf_Field5: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field5)) case *AllTypesOneOf_Field6: n += proto.SizeVarint(6<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field6)) case *AllTypesOneOf_Field7: n += proto.SizeVarint(7<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.Field7) << 1) ^ uint32((int32(x.Field7) >> 31)))) case *AllTypesOneOf_Field8: n += proto.SizeVarint(8<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(uint64(x.Field8<<1) ^ uint64((int64(x.Field8) >> 63)))) case *AllTypesOneOf_Field9: n += proto.SizeVarint(9<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field10: n += proto.SizeVarint(10<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field11: n += proto.SizeVarint(11<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field12: n += proto.SizeVarint(12<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field13: n += proto.SizeVarint(13<<3 | proto.WireVarint) n += 1 case *AllTypesOneOf_Field14: n += proto.SizeVarint(14<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field14))) n += len(x.Field14) case *AllTypesOneOf_Field15: n += proto.SizeVarint(15<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field15))) n += len(x.Field15) case *AllTypesOneOf_SubMessage: s := proto.Size(x.SubMessage) n += proto.SizeVarint(16<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type TwoOneofs struct { // Types that are valid to be assigned to One: // *TwoOneofs_Field1 // *TwoOneofs_Field2 // *TwoOneofs_Field3 One isTwoOneofs_One `protobuf_oneof:"one"` // Types that are valid to be assigned to Two: // *TwoOneofs_Field34 // *TwoOneofs_Field35 // *TwoOneofs_SubMessage2 Two isTwoOneofs_Two `protobuf_oneof:"two"` XXX_unrecognized []byte `json:"-"` } func (m *TwoOneofs) Reset() { *m = TwoOneofs{} } func (*TwoOneofs) ProtoMessage() {} func (*TwoOneofs) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{2} } type isTwoOneofs_One interface { isTwoOneofs_One() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type isTwoOneofs_Two interface { isTwoOneofs_Two() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type TwoOneofs_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,oneof"` } type TwoOneofs_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,oneof"` } type TwoOneofs_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,oneof"` } type TwoOneofs_Field34 struct { Field34 string `protobuf:"bytes,34,opt,name=Field34,oneof"` } type TwoOneofs_Field35 struct { Field35 []byte `protobuf:"bytes,35,opt,name=Field35,oneof"` } type TwoOneofs_SubMessage2 struct { SubMessage2 *Subby `protobuf:"bytes,36,opt,name=sub_message2,json=subMessage2,oneof"` } func (*TwoOneofs_Field1) isTwoOneofs_One() {} func (*TwoOneofs_Field2) isTwoOneofs_One() {} func (*TwoOneofs_Field3) isTwoOneofs_One() {} func (*TwoOneofs_Field34) isTwoOneofs_Two() {} func (*TwoOneofs_Field35) isTwoOneofs_Two() {} func (*TwoOneofs_SubMessage2) isTwoOneofs_Two() {} func (m *TwoOneofs) GetOne() isTwoOneofs_One { if m != nil { return m.One } return nil } func (m *TwoOneofs) GetTwo() isTwoOneofs_Two { if m != nil { return m.Two } return nil } func (m *TwoOneofs) GetField1() float64 { if x, ok := m.GetOne().(*TwoOneofs_Field1); ok { return x.Field1 } return 0 } func (m *TwoOneofs) GetField2() float32 { if x, ok := m.GetOne().(*TwoOneofs_Field2); ok { return x.Field2 } return 0 } func (m *TwoOneofs) GetField3() int32 { if x, ok := m.GetOne().(*TwoOneofs_Field3); ok { return x.Field3 } return 0 } func (m *TwoOneofs) GetField34() string { if x, ok := m.GetTwo().(*TwoOneofs_Field34); ok { return x.Field34 } return "" } func (m *TwoOneofs) GetField35() []byte { if x, ok := m.GetTwo().(*TwoOneofs_Field35); ok { return x.Field35 } return nil } func (m *TwoOneofs) GetSubMessage2() *Subby { if x, ok := m.GetTwo().(*TwoOneofs_SubMessage2); ok { return x.SubMessage2 } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*TwoOneofs) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _TwoOneofs_OneofMarshaler, _TwoOneofs_OneofUnmarshaler, _TwoOneofs_OneofSizer, []interface{}{ (*TwoOneofs_Field1)(nil), (*TwoOneofs_Field2)(nil), (*TwoOneofs_Field3)(nil), (*TwoOneofs_Field34)(nil), (*TwoOneofs_Field35)(nil), (*TwoOneofs_SubMessage2)(nil), } } func _TwoOneofs_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*TwoOneofs) // one switch x := m.One.(type) { case *TwoOneofs_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *TwoOneofs_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *TwoOneofs_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case nil: default: return fmt.Errorf("TwoOneofs.One has unexpected type %T", x) } // two switch x := m.Two.(type) { case *TwoOneofs_Field34: _ = b.EncodeVarint(34<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field34) case *TwoOneofs_Field35: _ = b.EncodeVarint(35<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field35) case *TwoOneofs_SubMessage2: _ = b.EncodeVarint(36<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage2); err != nil { return err } case nil: default: return fmt.Errorf("TwoOneofs.Two has unexpected type %T", x) } return nil } func _TwoOneofs_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*TwoOneofs) switch tag { case 1: // one.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.One = &TwoOneofs_Field1{math.Float64frombits(x)} return true, err case 2: // one.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.One = &TwoOneofs_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // one.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.One = &TwoOneofs_Field3{int32(x)} return true, err case 34: // two.Field34 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Two = &TwoOneofs_Field34{x} return true, err case 35: // two.Field35 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.Two = &TwoOneofs_Field35{x} return true, err case 36: // two.sub_message2 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.Two = &TwoOneofs_SubMessage2{msg} return true, err default: return false, nil } } func _TwoOneofs_OneofSizer(msg proto.Message) (n int) { m := msg.(*TwoOneofs) // one switch x := m.One.(type) { case *TwoOneofs_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *TwoOneofs_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *TwoOneofs_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } // two switch x := m.Two.(type) { case *TwoOneofs_Field34: n += proto.SizeVarint(34<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field34))) n += len(x.Field34) case *TwoOneofs_Field35: n += proto.SizeVarint(35<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field35))) n += len(x.Field35) case *TwoOneofs_SubMessage2: s := proto.Size(x.SubMessage2) n += proto.SizeVarint(36<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type CustomOneof struct { // Types that are valid to be assigned to Custom: // *CustomOneof_Stringy // *CustomOneof_CustomType // *CustomOneof_CastType // *CustomOneof_MyCustomName Custom isCustomOneof_Custom `protobuf_oneof:"custom"` XXX_unrecognized []byte `json:"-"` } func (m *CustomOneof) Reset() { *m = CustomOneof{} } func (*CustomOneof) ProtoMessage() {} func (*CustomOneof) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{3} } type isCustomOneof_Custom interface { isCustomOneof_Custom() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type CustomOneof_Stringy struct { Stringy string `protobuf:"bytes,34,opt,name=Stringy,oneof"` } type CustomOneof_CustomType struct { CustomType github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,35,opt,name=CustomType,oneof,customtype=github.com/gogo/protobuf/test/custom.Uint128"` } type CustomOneof_CastType struct { CastType github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,36,opt,name=CastType,oneof,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type"` } type CustomOneof_MyCustomName struct { MyCustomName int64 `protobuf:"varint,37,opt,name=CustomName,oneof"` } func (*CustomOneof_Stringy) isCustomOneof_Custom() {} func (*CustomOneof_CustomType) isCustomOneof_Custom() {} func (*CustomOneof_CastType) isCustomOneof_Custom() {} func (*CustomOneof_MyCustomName) isCustomOneof_Custom() {} func (m *CustomOneof) GetCustom() isCustomOneof_Custom { if m != nil { return m.Custom } return nil } func (m *CustomOneof) GetStringy() string { if x, ok := m.GetCustom().(*CustomOneof_Stringy); ok { return x.Stringy } return "" } func (m *CustomOneof) GetCastType() github_com_gogo_protobuf_test_casttype.MyUint64Type { if x, ok := m.GetCustom().(*CustomOneof_CastType); ok { return x.CastType } return 0 } func (m *CustomOneof) GetMyCustomName() int64 { if x, ok := m.GetCustom().(*CustomOneof_MyCustomName); ok { return x.MyCustomName } return 0 } // XXX_OneofFuncs is for the internal use of the proto package. func (*CustomOneof) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _CustomOneof_OneofMarshaler, _CustomOneof_OneofUnmarshaler, _CustomOneof_OneofSizer, []interface{}{ (*CustomOneof_Stringy)(nil), (*CustomOneof_CustomType)(nil), (*CustomOneof_CastType)(nil), (*CustomOneof_MyCustomName)(nil), } } func _CustomOneof_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*CustomOneof) // custom switch x := m.Custom.(type) { case *CustomOneof_Stringy: _ = b.EncodeVarint(34<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Stringy) case *CustomOneof_CustomType: _ = b.EncodeVarint(35<<3 | proto.WireBytes) dAtA, err := x.CustomType.Marshal() if err != nil { return err } _ = b.EncodeRawBytes(dAtA) case *CustomOneof_CastType: _ = b.EncodeVarint(36<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.CastType)) case *CustomOneof_MyCustomName: _ = b.EncodeVarint(37<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.MyCustomName)) case nil: default: return fmt.Errorf("CustomOneof.Custom has unexpected type %T", x) } return nil } func _CustomOneof_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*CustomOneof) switch tag { case 34: // custom.Stringy if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Custom = &CustomOneof_Stringy{x} return true, err case 35: // custom.CustomType if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } var cc github_com_gogo_protobuf_test_custom.Uint128 c := &cc err = c.Unmarshal(x) m.Custom = &CustomOneof_CustomType{*c} return true, err case 36: // custom.CastType if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Custom = &CustomOneof_CastType{github_com_gogo_protobuf_test_casttype.MyUint64Type(x)} return true, err case 37: // custom.CustomName if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Custom = &CustomOneof_MyCustomName{int64(x)} return true, err default: return false, nil } } func _CustomOneof_OneofSizer(msg proto.Message) (n int) { m := msg.(*CustomOneof) // custom switch x := m.Custom.(type) { case *CustomOneof_Stringy: n += proto.SizeVarint(34<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Stringy))) n += len(x.Stringy) case *CustomOneof_CustomType: n += proto.SizeVarint(35<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(x.CustomType.Size())) n += x.CustomType.Size() case *CustomOneof_CastType: n += proto.SizeVarint(36<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.CastType)) case *CustomOneof_MyCustomName: n += proto.SizeVarint(37<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.MyCustomName)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*Subby)(nil), "one.Subby") proto.RegisterType((*AllTypesOneOf)(nil), "one.AllTypesOneOf") proto.RegisterType((*TwoOneofs)(nil), "one.TwoOneofs") proto.RegisterType((*CustomOneof)(nil), "one.CustomOneof") } func (this *Subby) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *AllTypesOneOf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *TwoOneofs) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *CustomOneof) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func OneDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4115 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x24, 0xd7, 0x55, 0x56, 0xcf, 0x8f, 0x34, 0x73, 0x66, 0x34, 0x6a, 0x5d, 0xc9, 0xeb, 0x59, 0x39, 0x9e, 0xdd, 0x95, 0xff, 0x64, 0x3b, 0x96, 0x6c, 0xad, 0xb4, 0x3f, 0xb3, 0x24, 0x66, 0x24, 0xcd, 0x6a, 0xb5, 0x48, 0x1a, 0xa5, 0x47, 0x8a, 0xd7, 0xe1, 0xa1, 0xab, 0xd5, 0x73, 0x67, 0xd4, 0xbb, 0x3d, 0xdd, 0x9d, 0xee, 0x9e, 0x5d, 0x6b, 0x8b, 0x87, 0xa5, 0xcc, 0x4f, 0xa5, 0x28, 0xfe, 0x02, 0x55, 0x24, 0xc6, 0x31, 0x90, 0x2a, 0x70, 0x48, 0xf8, 0x49, 0x08, 0x84, 0xc0, 0x13, 0x2f, 0x01, 0x3f, 0x51, 0xce, 0x1b, 0x45, 0x51, 0x2e, 0xaf, 0x70, 0x15, 0x01, 0x0c, 0x18, 0xe2, 0x87, 0x54, 0xfc, 0x42, 0xdd, 0xbf, 0xee, 0x9e, 0x1f, 0x6d, 0xcf, 0xa6, 0x62, 0xe7, 0x49, 0xea, 0x73, 0xce, 0xf7, 0xf5, 0xb9, 0xe7, 0x9e, 0x7b, 0xcf, 0xb9, 0x77, 0x1a, 0xbe, 0x76, 0x01, 0x4e, 0xb7, 0x6c, 0xbb, 0x65, 0xe2, 0x05, 0xc7, 0xb5, 0x7d, 0x7b, 0xbf, 0xd3, 0x5c, 0x68, 0x60, 0x4f, 0x77, 0x0d, 0xc7, 0xb7, 0xdd, 0x79, 0x2a, 0x43, 0x13, 0xcc, 0x62, 0x5e, 0x58, 0xcc, 0x6e, 0xc1, 0xe4, 0x65, 0xc3, 0xc4, 0x6b, 0x81, 0x61, 0x1d, 0xfb, 0xe8, 0x02, 0xa4, 0x9a, 0x86, 0x89, 0x8b, 0xd2, 0xe9, 0xe4, 0x5c, 0x6e, 0xf1, 0xd1, 0xf9, 0x1e, 0xd0, 0x7c, 0x37, 0x62, 0x87, 0x88, 0x15, 0x8a, 0x98, 0x7d, 0x27, 0x05, 0x53, 0x03, 0xb4, 0x08, 0x41, 0xca, 0xd2, 0xda, 0x84, 0x51, 0x9a, 0xcb, 0x2a, 0xf4, 0x7f, 0x54, 0x84, 0x31, 0x47, 0xd3, 0x6f, 0x68, 0x2d, 0x5c, 0x4c, 0x50, 0xb1, 0x78, 0x44, 0x25, 0x80, 0x06, 0x76, 0xb0, 0xd5, 0xc0, 0x96, 0x7e, 0x58, 0x4c, 0x9e, 0x4e, 0xce, 0x65, 0x95, 0x88, 0x04, 0x3d, 0x0d, 0x93, 0x4e, 0x67, 0xdf, 0x34, 0x74, 0x35, 0x62, 0x06, 0xa7, 0x93, 0x73, 0x69, 0x45, 0x66, 0x8a, 0xb5, 0xd0, 0xf8, 0x09, 0x98, 0xb8, 0x85, 0xb5, 0x1b, 0x51, 0xd3, 0x1c, 0x35, 0x2d, 0x10, 0x71, 0xc4, 0x70, 0x15, 0xf2, 0x6d, 0xec, 0x79, 0x5a, 0x0b, 0xab, 0xfe, 0xa1, 0x83, 0x8b, 0x29, 0x3a, 0xfa, 0xd3, 0x7d, 0xa3, 0xef, 0x1d, 0x79, 0x8e, 0xa3, 0x76, 0x0f, 0x1d, 0x8c, 0x2a, 0x90, 0xc5, 0x56, 0xa7, 0xcd, 0x18, 0xd2, 0xc7, 0xc4, 0xaf, 0x6a, 0x75, 0xda, 0xbd, 0x2c, 0x19, 0x02, 0xe3, 0x14, 0x63, 0x1e, 0x76, 0x6f, 0x1a, 0x3a, 0x2e, 0x8e, 0x52, 0x82, 0x27, 0xfa, 0x08, 0xea, 0x4c, 0xdf, 0xcb, 0x21, 0x70, 0x68, 0x15, 0xb2, 0xf8, 0x25, 0x1f, 0x5b, 0x9e, 0x61, 0x5b, 0xc5, 0x31, 0x4a, 0xf2, 0xd8, 0x80, 0x59, 0xc4, 0x66, 0xa3, 0x97, 0x22, 0xc4, 0xa1, 0x73, 0x30, 0x66, 0x3b, 0xbe, 0x61, 0x5b, 0x5e, 0x31, 0x73, 0x5a, 0x9a, 0xcb, 0x2d, 0x7e, 0x6c, 0x60, 0x22, 0xd4, 0x98, 0x8d, 0x22, 0x8c, 0xd1, 0x06, 0xc8, 0x9e, 0xdd, 0x71, 0x75, 0xac, 0xea, 0x76, 0x03, 0xab, 0x86, 0xd5, 0xb4, 0x8b, 0x59, 0x4a, 0x70, 0xaa, 0x7f, 0x20, 0xd4, 0x70, 0xd5, 0x6e, 0xe0, 0x0d, 0xab, 0x69, 0x2b, 0x05, 0xaf, 0xeb, 0x19, 0x9d, 0x80, 0x51, 0xef, 0xd0, 0xf2, 0xb5, 0x97, 0x8a, 0x79, 0x9a, 0x21, 0xfc, 0x69, 0xf6, 0x6f, 0x46, 0x61, 0x62, 0x98, 0x14, 0xbb, 0x04, 0xe9, 0x26, 0x19, 0x65, 0x31, 0x71, 0x3f, 0x31, 0x60, 0x98, 0xee, 0x20, 0x8e, 0xfe, 0x88, 0x41, 0xac, 0x40, 0xce, 0xc2, 0x9e, 0x8f, 0x1b, 0x2c, 0x23, 0x92, 0x43, 0xe6, 0x14, 0x30, 0x50, 0x7f, 0x4a, 0xa5, 0x7e, 0xa4, 0x94, 0xba, 0x06, 0x13, 0x81, 0x4b, 0xaa, 0xab, 0x59, 0x2d, 0x91, 0x9b, 0x0b, 0x71, 0x9e, 0xcc, 0x57, 0x05, 0x4e, 0x21, 0x30, 0xa5, 0x80, 0xbb, 0x9e, 0xd1, 0x1a, 0x80, 0x6d, 0x61, 0xbb, 0xa9, 0x36, 0xb0, 0x6e, 0x16, 0x33, 0xc7, 0x44, 0xa9, 0x46, 0x4c, 0xfa, 0xa2, 0x64, 0x33, 0xa9, 0x6e, 0xa2, 0x8b, 0x61, 0xaa, 0x8d, 0x1d, 0x93, 0x29, 0x5b, 0x6c, 0x91, 0xf5, 0x65, 0xdb, 0x1e, 0x14, 0x5c, 0x4c, 0xf2, 0x1e, 0x37, 0xf8, 0xc8, 0xb2, 0xd4, 0x89, 0xf9, 0xd8, 0x91, 0x29, 0x1c, 0xc6, 0x06, 0x36, 0xee, 0x46, 0x1f, 0xd1, 0x23, 0x10, 0x08, 0x54, 0x9a, 0x56, 0x40, 0x77, 0xa1, 0xbc, 0x10, 0x6e, 0x6b, 0x6d, 0x3c, 0x73, 0x1b, 0x0a, 0xdd, 0xe1, 0x41, 0xd3, 0x90, 0xf6, 0x7c, 0xcd, 0xf5, 0x69, 0x16, 0xa6, 0x15, 0xf6, 0x80, 0x64, 0x48, 0x62, 0xab, 0x41, 0x77, 0xb9, 0xb4, 0x42, 0xfe, 0x45, 0x3f, 0x1d, 0x0e, 0x38, 0x49, 0x07, 0xfc, 0x78, 0xff, 0x8c, 0x76, 0x31, 0xf7, 0x8e, 0x7b, 0xe6, 0x3c, 0x8c, 0x77, 0x0d, 0x60, 0xd8, 0x57, 0xcf, 0xfe, 0x1c, 0x3c, 0x30, 0x90, 0x1a, 0x5d, 0x83, 0xe9, 0x8e, 0x65, 0x58, 0x3e, 0x76, 0x1d, 0x17, 0x93, 0x8c, 0x65, 0xaf, 0x2a, 0xfe, 0xdb, 0xd8, 0x31, 0x39, 0xb7, 0x17, 0xb5, 0x66, 0x2c, 0xca, 0x54, 0xa7, 0x5f, 0xf8, 0x54, 0x36, 0xf3, 0xbd, 0x31, 0xf9, 0xce, 0x9d, 0x3b, 0x77, 0x12, 0xb3, 0x5f, 0x18, 0x85, 0xe9, 0x41, 0x6b, 0x66, 0xe0, 0xf2, 0x3d, 0x01, 0xa3, 0x56, 0xa7, 0xbd, 0x8f, 0x5d, 0x1a, 0xa4, 0xb4, 0xc2, 0x9f, 0x50, 0x05, 0xd2, 0xa6, 0xb6, 0x8f, 0xcd, 0x62, 0xea, 0xb4, 0x34, 0x57, 0x58, 0x7c, 0x7a, 0xa8, 0x55, 0x39, 0xbf, 0x49, 0x20, 0x0a, 0x43, 0xa2, 0x4f, 0x42, 0x8a, 0x6f, 0xd1, 0x84, 0xe1, 0xa9, 0xe1, 0x18, 0xc8, 0x5a, 0x52, 0x28, 0x0e, 0x3d, 0x04, 0x59, 0xf2, 0x97, 0xe5, 0xc6, 0x28, 0xf5, 0x39, 0x43, 0x04, 0x24, 0x2f, 0xd0, 0x0c, 0x64, 0xe8, 0x32, 0x69, 0x60, 0x51, 0xda, 0x82, 0x67, 0x92, 0x58, 0x0d, 0xdc, 0xd4, 0x3a, 0xa6, 0xaf, 0xde, 0xd4, 0xcc, 0x0e, 0xa6, 0x09, 0x9f, 0x55, 0xf2, 0x5c, 0xf8, 0x69, 0x22, 0x43, 0xa7, 0x20, 0xc7, 0x56, 0x95, 0x61, 0x35, 0xf0, 0x4b, 0x74, 0xf7, 0x4c, 0x2b, 0x6c, 0xa1, 0x6d, 0x10, 0x09, 0x79, 0xfd, 0x75, 0xcf, 0xb6, 0x44, 0x6a, 0xd2, 0x57, 0x10, 0x01, 0x7d, 0xfd, 0xf9, 0xde, 0x8d, 0xfb, 0xe1, 0xc1, 0xc3, 0xeb, 0xcd, 0xa9, 0xd9, 0x6f, 0x25, 0x20, 0x45, 0xf7, 0x8b, 0x09, 0xc8, 0xed, 0xbe, 0xb8, 0x53, 0x55, 0xd7, 0x6a, 0x7b, 0x2b, 0x9b, 0x55, 0x59, 0x42, 0x05, 0x00, 0x2a, 0xb8, 0xbc, 0x59, 0xab, 0xec, 0xca, 0x89, 0xe0, 0x79, 0x63, 0x7b, 0xf7, 0xdc, 0x92, 0x9c, 0x0c, 0x00, 0x7b, 0x4c, 0x90, 0x8a, 0x1a, 0x9c, 0x5d, 0x94, 0xd3, 0x48, 0x86, 0x3c, 0x23, 0xd8, 0xb8, 0x56, 0x5d, 0x3b, 0xb7, 0x24, 0x8f, 0x76, 0x4b, 0xce, 0x2e, 0xca, 0x63, 0x68, 0x1c, 0xb2, 0x54, 0xb2, 0x52, 0xab, 0x6d, 0xca, 0x99, 0x80, 0xb3, 0xbe, 0xab, 0x6c, 0x6c, 0xaf, 0xcb, 0xd9, 0x80, 0x73, 0x5d, 0xa9, 0xed, 0xed, 0xc8, 0x10, 0x30, 0x6c, 0x55, 0xeb, 0xf5, 0xca, 0x7a, 0x55, 0xce, 0x05, 0x16, 0x2b, 0x2f, 0xee, 0x56, 0xeb, 0x72, 0xbe, 0xcb, 0xad, 0xb3, 0x8b, 0xf2, 0x78, 0xf0, 0x8a, 0xea, 0xf6, 0xde, 0x96, 0x5c, 0x40, 0x93, 0x30, 0xce, 0x5e, 0x21, 0x9c, 0x98, 0xe8, 0x11, 0x9d, 0x5b, 0x92, 0xe5, 0xd0, 0x11, 0xc6, 0x32, 0xd9, 0x25, 0x38, 0xb7, 0x24, 0xa3, 0xd9, 0x55, 0x48, 0xd3, 0xec, 0x42, 0x08, 0x0a, 0x9b, 0x95, 0x95, 0xea, 0xa6, 0x5a, 0xdb, 0xd9, 0xdd, 0xa8, 0x6d, 0x57, 0x36, 0x65, 0x29, 0x94, 0x29, 0xd5, 0x4f, 0xed, 0x6d, 0x28, 0xd5, 0x35, 0x39, 0x11, 0x95, 0xed, 0x54, 0x2b, 0xbb, 0xd5, 0x35, 0x39, 0x39, 0xab, 0xc3, 0xf4, 0xa0, 0x7d, 0x72, 0xe0, 0xca, 0x88, 0x4c, 0x71, 0xe2, 0x98, 0x29, 0xa6, 0x5c, 0x7d, 0x53, 0xfc, 0x65, 0x09, 0xa6, 0x06, 0xd4, 0x8a, 0x81, 0x2f, 0x79, 0x1e, 0xd2, 0x2c, 0x45, 0x59, 0xf5, 0x7c, 0x72, 0x60, 0xd1, 0xa1, 0x09, 0xdb, 0x57, 0x41, 0x29, 0x2e, 0xda, 0x41, 0x24, 0x8f, 0xe9, 0x20, 0x08, 0x45, 0x9f, 0x93, 0x2f, 0x4b, 0x50, 0x3c, 0x8e, 0x3b, 0x66, 0xa3, 0x48, 0x74, 0x6d, 0x14, 0x97, 0x7a, 0x1d, 0x38, 0x73, 0xfc, 0x18, 0xfa, 0xbc, 0x78, 0x5d, 0x82, 0x13, 0x83, 0x1b, 0xad, 0x81, 0x3e, 0x7c, 0x12, 0x46, 0xdb, 0xd8, 0x3f, 0xb0, 0x45, 0xb3, 0xf1, 0xf8, 0x80, 0x12, 0x46, 0xd4, 0xbd, 0xb1, 0xe2, 0xa8, 0x68, 0x0d, 0x4c, 0x1e, 0xd7, 0x2d, 0x31, 0x6f, 0xfa, 0x3c, 0xfd, 0x5c, 0x02, 0x1e, 0x18, 0x48, 0x3e, 0xd0, 0xd1, 0x87, 0x01, 0x0c, 0xcb, 0xe9, 0xf8, 0xac, 0xa1, 0x60, 0xfb, 0x53, 0x96, 0x4a, 0xe8, 0xda, 0x27, 0x7b, 0x4f, 0xc7, 0x0f, 0xf4, 0x49, 0xaa, 0x07, 0x26, 0xa2, 0x06, 0x17, 0x42, 0x47, 0x53, 0xd4, 0xd1, 0xd2, 0x31, 0x23, 0xed, 0xab, 0xd5, 0xcf, 0x82, 0xac, 0x9b, 0x06, 0xb6, 0x7c, 0xd5, 0xf3, 0x5d, 0xac, 0xb5, 0x0d, 0xab, 0x45, 0x37, 0xe0, 0x4c, 0x39, 0xdd, 0xd4, 0x4c, 0x0f, 0x2b, 0x13, 0x4c, 0x5d, 0x17, 0x5a, 0x82, 0xa0, 0x35, 0xce, 0x8d, 0x20, 0x46, 0xbb, 0x10, 0x4c, 0x1d, 0x20, 0x66, 0xbf, 0x99, 0x81, 0x5c, 0xa4, 0x2d, 0x45, 0x67, 0x20, 0x7f, 0x5d, 0xbb, 0xa9, 0xa9, 0xe2, 0xa8, 0xc1, 0x22, 0x91, 0x23, 0xb2, 0x1d, 0x7e, 0xdc, 0x78, 0x16, 0xa6, 0xa9, 0x89, 0xdd, 0xf1, 0xb1, 0xab, 0xea, 0xa6, 0xe6, 0x79, 0x34, 0x68, 0x19, 0x6a, 0x8a, 0x88, 0xae, 0x46, 0x54, 0xab, 0x42, 0x83, 0x96, 0x61, 0x8a, 0x22, 0xda, 0x1d, 0xd3, 0x37, 0x1c, 0x13, 0xab, 0xe4, 0xf0, 0xe3, 0xd1, 0x8d, 0x38, 0xf0, 0x6c, 0x92, 0x58, 0x6c, 0x71, 0x03, 0xe2, 0x91, 0x87, 0xd6, 0xe0, 0x61, 0x0a, 0x6b, 0x61, 0x0b, 0xbb, 0x9a, 0x8f, 0x55, 0xfc, 0xd9, 0x8e, 0x66, 0x7a, 0xaa, 0x66, 0x35, 0xd4, 0x03, 0xcd, 0x3b, 0x28, 0x4e, 0x13, 0x82, 0x95, 0x44, 0x51, 0x52, 0x4e, 0x12, 0xc3, 0x75, 0x6e, 0x57, 0xa5, 0x66, 0x15, 0xab, 0x71, 0x45, 0xf3, 0x0e, 0x50, 0x19, 0x4e, 0x50, 0x16, 0xcf, 0x77, 0x0d, 0xab, 0xa5, 0xea, 0x07, 0x58, 0xbf, 0xa1, 0x76, 0xfc, 0xe6, 0x85, 0xe2, 0x43, 0xd1, 0xf7, 0x53, 0x0f, 0xeb, 0xd4, 0x66, 0x95, 0x98, 0xec, 0xf9, 0xcd, 0x0b, 0xa8, 0x0e, 0x79, 0x32, 0x19, 0x6d, 0xe3, 0x36, 0x56, 0x9b, 0xb6, 0x4b, 0x2b, 0x4b, 0x61, 0xc0, 0xca, 0x8e, 0x44, 0x70, 0xbe, 0xc6, 0x01, 0x5b, 0x76, 0x03, 0x97, 0xd3, 0xf5, 0x9d, 0x6a, 0x75, 0x4d, 0xc9, 0x09, 0x96, 0xcb, 0xb6, 0x4b, 0x12, 0xaa, 0x65, 0x07, 0x01, 0xce, 0xb1, 0x84, 0x6a, 0xd9, 0x22, 0xbc, 0xcb, 0x30, 0xa5, 0xeb, 0x6c, 0xcc, 0x86, 0xae, 0xf2, 0x23, 0x8a, 0x57, 0x94, 0xbb, 0x82, 0xa5, 0xeb, 0xeb, 0xcc, 0x80, 0xe7, 0xb8, 0x87, 0x2e, 0xc2, 0x03, 0x61, 0xb0, 0xa2, 0xc0, 0xc9, 0xbe, 0x51, 0xf6, 0x42, 0x97, 0x61, 0xca, 0x39, 0xec, 0x07, 0xa2, 0xae, 0x37, 0x3a, 0x87, 0xbd, 0xb0, 0xf3, 0x30, 0xed, 0x1c, 0x38, 0xfd, 0xb8, 0xa9, 0x28, 0x0e, 0x39, 0x07, 0x4e, 0x2f, 0xf0, 0x31, 0x7a, 0x5e, 0x75, 0xb1, 0xae, 0xf9, 0xb8, 0x51, 0x7c, 0x30, 0x6a, 0x1e, 0x51, 0xa0, 0x05, 0x90, 0x75, 0x5d, 0xc5, 0x96, 0xb6, 0x6f, 0x62, 0x55, 0x73, 0xb1, 0xa5, 0x79, 0xc5, 0x53, 0x51, 0xe3, 0x82, 0xae, 0x57, 0xa9, 0xb6, 0x42, 0x95, 0xe8, 0x29, 0x98, 0xb4, 0xf7, 0xaf, 0xeb, 0x2c, 0x25, 0x55, 0xc7, 0xc5, 0x4d, 0xe3, 0xa5, 0xe2, 0xa3, 0x34, 0xbe, 0x13, 0x44, 0x41, 0x13, 0x72, 0x87, 0x8a, 0xd1, 0x93, 0x20, 0xeb, 0xde, 0x81, 0xe6, 0x3a, 0xb4, 0x27, 0xf0, 0x1c, 0x4d, 0xc7, 0xc5, 0xc7, 0x98, 0x29, 0x93, 0x6f, 0x0b, 0x31, 0x59, 0x12, 0xde, 0x2d, 0xa3, 0xe9, 0x0b, 0xc6, 0x27, 0xd8, 0x92, 0xa0, 0x32, 0xce, 0x36, 0x07, 0x32, 0x09, 0x45, 0xd7, 0x8b, 0xe7, 0xa8, 0x59, 0xc1, 0x39, 0x70, 0xa2, 0xef, 0x7d, 0x04, 0xc6, 0x89, 0x65, 0xf8, 0xd2, 0x27, 0x59, 0x3f, 0xe3, 0x1c, 0x44, 0xde, 0xf8, 0xa1, 0xb5, 0x96, 0xb3, 0x65, 0xc8, 0x47, 0xf3, 0x13, 0x65, 0x81, 0x65, 0xa8, 0x2c, 0x91, 0x5a, 0xbf, 0x5a, 0x5b, 0x23, 0x55, 0xfa, 0x33, 0x55, 0x39, 0x41, 0xba, 0x85, 0xcd, 0x8d, 0xdd, 0xaa, 0xaa, 0xec, 0x6d, 0xef, 0x6e, 0x6c, 0x55, 0xe5, 0x64, 0xb4, 0x2d, 0xfd, 0x4e, 0x02, 0x0a, 0xdd, 0x27, 0x0c, 0xf4, 0x53, 0xf0, 0xa0, 0xb8, 0x0e, 0xf0, 0xb0, 0xaf, 0xde, 0x32, 0x5c, 0xba, 0x64, 0xda, 0x1a, 0xeb, 0xb0, 0x83, 0x49, 0x9b, 0xe6, 0x56, 0x75, 0xec, 0xbf, 0x60, 0xb8, 0x64, 0x41, 0xb4, 0x35, 0x1f, 0x6d, 0xc2, 0x29, 0xcb, 0x56, 0x3d, 0x5f, 0xb3, 0x1a, 0x9a, 0xdb, 0x50, 0xc3, 0x8b, 0x18, 0x55, 0xd3, 0x75, 0xec, 0x79, 0x36, 0x2b, 0x55, 0x01, 0xcb, 0xc7, 0x2c, 0xbb, 0xce, 0x8d, 0xc3, 0x3d, 0xbc, 0xc2, 0x4d, 0x7b, 0x12, 0x2c, 0x79, 0x5c, 0x82, 0x3d, 0x04, 0xd9, 0xb6, 0xe6, 0xa8, 0xd8, 0xf2, 0xdd, 0x43, 0xda, 0x57, 0x66, 0x94, 0x4c, 0x5b, 0x73, 0xaa, 0xe4, 0xf9, 0xa3, 0x69, 0xef, 0xff, 0x25, 0x09, 0xf9, 0x68, 0x6f, 0x49, 0x5a, 0x75, 0x9d, 0xd6, 0x11, 0x89, 0xee, 0x34, 0x8f, 0xdc, 0xb3, 0x13, 0x9d, 0x5f, 0x25, 0x05, 0xa6, 0x3c, 0xca, 0x3a, 0x3e, 0x85, 0x21, 0x49, 0x71, 0x27, 0x7b, 0x0b, 0x66, 0xa7, 0x98, 0x8c, 0xc2, 0x9f, 0xd0, 0x3a, 0x8c, 0x5e, 0xf7, 0x28, 0xf7, 0x28, 0xe5, 0x7e, 0xf4, 0xde, 0xdc, 0x57, 0xeb, 0x94, 0x3c, 0x7b, 0xb5, 0xae, 0x6e, 0xd7, 0x94, 0xad, 0xca, 0xa6, 0xc2, 0xe1, 0xe8, 0x24, 0xa4, 0x4c, 0xed, 0xf6, 0x61, 0x77, 0x29, 0xa2, 0xa2, 0x61, 0x03, 0x7f, 0x12, 0x52, 0xb7, 0xb0, 0x76, 0xa3, 0xbb, 0x00, 0x50, 0xd1, 0x87, 0x98, 0xfa, 0x0b, 0x90, 0xa6, 0xf1, 0x42, 0x00, 0x3c, 0x62, 0xf2, 0x08, 0xca, 0x40, 0x6a, 0xb5, 0xa6, 0x90, 0xf4, 0x97, 0x21, 0xcf, 0xa4, 0xea, 0xce, 0x46, 0x75, 0xb5, 0x2a, 0x27, 0x66, 0x97, 0x61, 0x94, 0x05, 0x81, 0x2c, 0x8d, 0x20, 0x0c, 0xf2, 0x08, 0x7f, 0xe4, 0x1c, 0x92, 0xd0, 0xee, 0x6d, 0xad, 0x54, 0x15, 0x39, 0x11, 0x9d, 0x5e, 0x0f, 0xf2, 0xd1, 0xb6, 0xf2, 0xa3, 0xc9, 0xa9, 0xbf, 0x95, 0x20, 0x17, 0x69, 0x13, 0x49, 0x83, 0xa2, 0x99, 0xa6, 0x7d, 0x4b, 0xd5, 0x4c, 0x43, 0xf3, 0x78, 0x52, 0x00, 0x15, 0x55, 0x88, 0x64, 0xd8, 0x49, 0xfb, 0x48, 0x9c, 0x7f, 0x4d, 0x02, 0xb9, 0xb7, 0xc5, 0xec, 0x71, 0x50, 0xfa, 0x89, 0x3a, 0xf8, 0xaa, 0x04, 0x85, 0xee, 0xbe, 0xb2, 0xc7, 0xbd, 0x33, 0x3f, 0x51, 0xf7, 0xde, 0x4e, 0xc0, 0x78, 0x57, 0x37, 0x39, 0xac, 0x77, 0x9f, 0x85, 0x49, 0xa3, 0x81, 0xdb, 0x8e, 0xed, 0x63, 0x4b, 0x3f, 0x54, 0x4d, 0x7c, 0x13, 0x9b, 0xc5, 0x59, 0xba, 0x51, 0x2c, 0xdc, 0xbb, 0x5f, 0x9d, 0xdf, 0x08, 0x71, 0x9b, 0x04, 0x56, 0x9e, 0xda, 0x58, 0xab, 0x6e, 0xed, 0xd4, 0x76, 0xab, 0xdb, 0xab, 0x2f, 0xaa, 0x7b, 0xdb, 0x3f, 0xb3, 0x5d, 0x7b, 0x61, 0x5b, 0x91, 0x8d, 0x1e, 0xb3, 0x0f, 0x71, 0xa9, 0xef, 0x80, 0xdc, 0xeb, 0x14, 0x7a, 0x10, 0x06, 0xb9, 0x25, 0x8f, 0xa0, 0x29, 0x98, 0xd8, 0xae, 0xa9, 0xf5, 0x8d, 0xb5, 0xaa, 0x5a, 0xbd, 0x7c, 0xb9, 0xba, 0xba, 0x5b, 0x67, 0x07, 0xf8, 0xc0, 0x7a, 0xb7, 0x7b, 0x51, 0xbf, 0x92, 0x84, 0xa9, 0x01, 0x9e, 0xa0, 0x0a, 0x3f, 0x3b, 0xb0, 0xe3, 0xcc, 0x33, 0xc3, 0x78, 0x3f, 0x4f, 0x4a, 0xfe, 0x8e, 0xe6, 0xfa, 0xfc, 0xa8, 0xf1, 0x24, 0x90, 0x28, 0x59, 0xbe, 0xd1, 0x34, 0xb0, 0xcb, 0xef, 0x3b, 0xd8, 0x81, 0x62, 0x22, 0x94, 0xb3, 0x2b, 0x8f, 0x8f, 0x03, 0x72, 0x6c, 0xcf, 0xf0, 0x8d, 0x9b, 0x58, 0x35, 0x2c, 0x71, 0x39, 0x42, 0x0e, 0x18, 0x29, 0x45, 0x16, 0x9a, 0x0d, 0xcb, 0x0f, 0xac, 0x2d, 0xdc, 0xd2, 0x7a, 0xac, 0xc9, 0x06, 0x9e, 0x54, 0x64, 0xa1, 0x09, 0xac, 0xcf, 0x40, 0xbe, 0x61, 0x77, 0x48, 0xd7, 0xc5, 0xec, 0x48, 0xbd, 0x90, 0x94, 0x1c, 0x93, 0x05, 0x26, 0xbc, 0x9f, 0x0e, 0x6f, 0x65, 0xf2, 0x4a, 0x8e, 0xc9, 0x98, 0xc9, 0x13, 0x30, 0xa1, 0xb5, 0x5a, 0x2e, 0x21, 0x17, 0x44, 0xec, 0x84, 0x50, 0x08, 0xc4, 0xd4, 0x70, 0xe6, 0x2a, 0x64, 0x44, 0x1c, 0x48, 0x49, 0x26, 0x91, 0x50, 0x1d, 0x76, 0x33, 0x97, 0x98, 0xcb, 0x2a, 0x19, 0x4b, 0x28, 0xcf, 0x40, 0xde, 0xf0, 0xd4, 0xf0, 0x92, 0x39, 0x71, 0x3a, 0x31, 0x97, 0x51, 0x72, 0x86, 0x17, 0x5c, 0xd0, 0xcd, 0xbe, 0x9e, 0x80, 0x42, 0xf7, 0x25, 0x39, 0x5a, 0x83, 0x8c, 0x69, 0xeb, 0x1a, 0x4d, 0x2d, 0xf6, 0x0b, 0xcd, 0x5c, 0xcc, 0xbd, 0xfa, 0xfc, 0x26, 0xb7, 0x57, 0x02, 0xe4, 0xcc, 0x3f, 0x4a, 0x90, 0x11, 0x62, 0x74, 0x02, 0x52, 0x8e, 0xe6, 0x1f, 0x50, 0xba, 0xf4, 0x4a, 0x42, 0x96, 0x14, 0xfa, 0x4c, 0xe4, 0x9e, 0xa3, 0x59, 0x34, 0x05, 0xb8, 0x9c, 0x3c, 0x93, 0x79, 0x35, 0xb1, 0xd6, 0xa0, 0xc7, 0x0f, 0xbb, 0xdd, 0xc6, 0x96, 0xef, 0x89, 0x79, 0xe5, 0xf2, 0x55, 0x2e, 0x46, 0x4f, 0xc3, 0xa4, 0xef, 0x6a, 0x86, 0xd9, 0x65, 0x9b, 0xa2, 0xb6, 0xb2, 0x50, 0x04, 0xc6, 0x65, 0x38, 0x29, 0x78, 0x1b, 0xd8, 0xd7, 0xf4, 0x03, 0xdc, 0x08, 0x41, 0xa3, 0xf4, 0x06, 0xf6, 0x41, 0x6e, 0xb0, 0xc6, 0xf5, 0x02, 0x3b, 0xfb, 0x5d, 0x09, 0x26, 0xc5, 0x81, 0xa9, 0x11, 0x04, 0x6b, 0x0b, 0x40, 0xb3, 0x2c, 0xdb, 0x8f, 0x86, 0xab, 0x3f, 0x95, 0xfb, 0x70, 0xf3, 0x95, 0x00, 0xa4, 0x44, 0x08, 0x66, 0xda, 0x00, 0xa1, 0xe6, 0xd8, 0xb0, 0x9d, 0x82, 0x1c, 0xff, 0x05, 0x84, 0xfe, 0x8c, 0xc6, 0x8e, 0xd8, 0xc0, 0x44, 0xe4, 0x64, 0x85, 0xa6, 0x21, 0xbd, 0x8f, 0x5b, 0x86, 0xc5, 0xef, 0x35, 0xd9, 0x83, 0xb8, 0xab, 0x4d, 0x05, 0x77, 0xb5, 0x2b, 0xd7, 0x60, 0x4a, 0xb7, 0xdb, 0xbd, 0xee, 0xae, 0xc8, 0x3d, 0xc7, 0x7c, 0xef, 0x8a, 0xf4, 0x19, 0x08, 0x5b, 0xcc, 0x2f, 0x27, 0x92, 0xeb, 0x3b, 0x2b, 0x5f, 0x4d, 0xcc, 0xac, 0x33, 0xdc, 0x8e, 0x18, 0xa6, 0x82, 0x9b, 0x26, 0xd6, 0x89, 0xeb, 0xf0, 0xfd, 0xc7, 0xe1, 0x99, 0x96, 0xe1, 0x1f, 0x74, 0xf6, 0xe7, 0x75, 0xbb, 0xbd, 0xd0, 0xb2, 0x5b, 0x76, 0xf8, 0xb3, 0x21, 0x79, 0xa2, 0x0f, 0xf4, 0x3f, 0xfe, 0xd3, 0x61, 0x36, 0x90, 0xce, 0xc4, 0xfe, 0xce, 0x58, 0xde, 0x86, 0x29, 0x6e, 0xac, 0xd2, 0xdf, 0x2e, 0xd8, 0x11, 0x02, 0xdd, 0xf3, 0xfe, 0xa7, 0xf8, 0x8d, 0x77, 0x68, 0xad, 0x56, 0x26, 0x39, 0x94, 0xe8, 0xd8, 0x29, 0xa3, 0xac, 0xc0, 0x03, 0x5d, 0x7c, 0x6c, 0x5d, 0x62, 0x37, 0x86, 0xf1, 0x3b, 0x9c, 0x71, 0x2a, 0xc2, 0x58, 0xe7, 0xd0, 0xf2, 0x2a, 0x8c, 0xdf, 0x0f, 0xd7, 0xdf, 0x73, 0xae, 0x3c, 0x8e, 0x92, 0xac, 0xc3, 0x04, 0x25, 0xd1, 0x3b, 0x9e, 0x6f, 0xb7, 0xe9, 0xa6, 0x77, 0x6f, 0x9a, 0x7f, 0x78, 0x87, 0x2d, 0x94, 0x02, 0x81, 0xad, 0x06, 0xa8, 0x72, 0x19, 0xe8, 0xcf, 0x35, 0x0d, 0xac, 0x9b, 0x31, 0x0c, 0x6f, 0x70, 0x47, 0x02, 0xfb, 0xf2, 0xa7, 0x61, 0x9a, 0xfc, 0x4f, 0xf7, 0xa4, 0xa8, 0x27, 0xf1, 0xb7, 0x5d, 0xc5, 0xef, 0xbe, 0xcc, 0xd6, 0xe2, 0x54, 0x40, 0x10, 0xf1, 0x29, 0x32, 0x8b, 0x2d, 0xec, 0xfb, 0xd8, 0xf5, 0x54, 0xcd, 0x1c, 0xe4, 0x5e, 0xe4, 0xba, 0xa0, 0xf8, 0xc5, 0x77, 0xbb, 0x67, 0x71, 0x9d, 0x21, 0x2b, 0xa6, 0x59, 0xde, 0x83, 0x07, 0x07, 0x64, 0xc5, 0x10, 0x9c, 0xaf, 0x70, 0xce, 0xe9, 0xbe, 0xcc, 0x20, 0xb4, 0x3b, 0x20, 0xe4, 0xc1, 0x5c, 0x0e, 0xc1, 0xf9, 0xbb, 0x9c, 0x13, 0x71, 0xac, 0x98, 0x52, 0xc2, 0x78, 0x15, 0x26, 0x6f, 0x62, 0x77, 0xdf, 0xf6, 0xf8, 0x15, 0xcd, 0x10, 0x74, 0xaf, 0x72, 0xba, 0x09, 0x0e, 0xa4, 0x77, 0x36, 0x84, 0xeb, 0x22, 0x64, 0x9a, 0x9a, 0x8e, 0x87, 0xa0, 0xf8, 0x12, 0xa7, 0x18, 0x23, 0xf6, 0x04, 0x5a, 0x81, 0x7c, 0xcb, 0xe6, 0x65, 0x29, 0x1e, 0xfe, 0x1a, 0x87, 0xe7, 0x04, 0x86, 0x53, 0x38, 0xb6, 0xd3, 0x31, 0x49, 0xcd, 0x8a, 0xa7, 0xf8, 0x3d, 0x41, 0x21, 0x30, 0x9c, 0xe2, 0x3e, 0xc2, 0xfa, 0xfb, 0x82, 0xc2, 0x8b, 0xc4, 0xf3, 0x79, 0xc8, 0xd9, 0x96, 0x79, 0x68, 0x5b, 0xc3, 0x38, 0xf1, 0x07, 0x9c, 0x01, 0x38, 0x84, 0x10, 0x5c, 0x82, 0xec, 0xb0, 0x13, 0xf1, 0x87, 0xef, 0x8a, 0xe5, 0x21, 0x66, 0x60, 0x1d, 0x26, 0xc4, 0x06, 0x65, 0xd8, 0xd6, 0x10, 0x14, 0x7f, 0xc4, 0x29, 0x0a, 0x11, 0x18, 0x1f, 0x86, 0x8f, 0x3d, 0xbf, 0x85, 0x87, 0x21, 0x79, 0x5d, 0x0c, 0x83, 0x43, 0x78, 0x28, 0xf7, 0xb1, 0xa5, 0x1f, 0x0c, 0xc7, 0xf0, 0x15, 0x11, 0x4a, 0x81, 0x21, 0x14, 0xab, 0x30, 0xde, 0xd6, 0x5c, 0xef, 0x40, 0x33, 0x87, 0x9a, 0x8e, 0x3f, 0xe6, 0x1c, 0xf9, 0x00, 0xc4, 0x23, 0xd2, 0xb1, 0xee, 0x87, 0xe6, 0xab, 0x22, 0x22, 0x11, 0x18, 0x5f, 0x7a, 0x9e, 0x4f, 0xef, 0xb3, 0xee, 0x87, 0xed, 0x6b, 0x62, 0xe9, 0x31, 0xec, 0x56, 0x94, 0xf1, 0x12, 0x64, 0x3d, 0xe3, 0xf6, 0x50, 0x34, 0x7f, 0x22, 0x66, 0x9a, 0x02, 0x08, 0xf8, 0x45, 0x38, 0x39, 0xb0, 0x4c, 0x0c, 0x41, 0xf6, 0xa7, 0x9c, 0xec, 0xc4, 0x80, 0x52, 0xc1, 0xb7, 0x84, 0xfb, 0xa5, 0xfc, 0x33, 0xb1, 0x25, 0xe0, 0x1e, 0xae, 0x1d, 0x72, 0x50, 0xf0, 0xb4, 0xe6, 0xfd, 0x45, 0xed, 0xcf, 0x45, 0xd4, 0x18, 0xb6, 0x2b, 0x6a, 0xbb, 0x70, 0x82, 0x33, 0xde, 0xdf, 0xbc, 0x7e, 0x5d, 0x6c, 0xac, 0x0c, 0xbd, 0xd7, 0x3d, 0xbb, 0x3f, 0x0b, 0x33, 0x41, 0x38, 0x45, 0x47, 0xea, 0xa9, 0x6d, 0xcd, 0x19, 0x82, 0xf9, 0x1b, 0x9c, 0x59, 0xec, 0xf8, 0x41, 0x4b, 0xeb, 0x6d, 0x69, 0x0e, 0x21, 0xbf, 0x06, 0x45, 0x41, 0xde, 0xb1, 0x5c, 0xac, 0xdb, 0x2d, 0xcb, 0xb8, 0x8d, 0x1b, 0x43, 0x50, 0xff, 0x45, 0xcf, 0x54, 0xed, 0x45, 0xe0, 0x84, 0x79, 0x03, 0xe4, 0xa0, 0x57, 0x51, 0x8d, 0xb6, 0x63, 0xbb, 0x7e, 0x0c, 0xe3, 0x37, 0xc5, 0x4c, 0x05, 0xb8, 0x0d, 0x0a, 0x2b, 0x57, 0xa1, 0x40, 0x1f, 0x87, 0x4d, 0xc9, 0xbf, 0xe4, 0x44, 0xe3, 0x21, 0x8a, 0x6f, 0x1c, 0xba, 0xdd, 0x76, 0x34, 0x77, 0x98, 0xfd, 0xef, 0xaf, 0xc4, 0xc6, 0xc1, 0x21, 0x7c, 0xe3, 0xf0, 0x0f, 0x1d, 0x4c, 0xaa, 0xfd, 0x10, 0x0c, 0xdf, 0x12, 0x1b, 0x87, 0xc0, 0x70, 0x0a, 0xd1, 0x30, 0x0c, 0x41, 0xf1, 0xd7, 0x82, 0x42, 0x60, 0x08, 0xc5, 0xa7, 0xc2, 0x42, 0xeb, 0xe2, 0x96, 0xe1, 0xf9, 0x2e, 0xeb, 0x83, 0xef, 0x4d, 0xf5, 0xed, 0x77, 0xbb, 0x9b, 0x30, 0x25, 0x02, 0x2d, 0x5f, 0x85, 0x89, 0x9e, 0x16, 0x03, 0xc5, 0x7d, 0xfb, 0x51, 0xfc, 0xf9, 0xf7, 0xf9, 0x66, 0xd4, 0xdd, 0x61, 0x94, 0x37, 0xc9, 0xbc, 0x77, 0xf7, 0x01, 0xf1, 0x64, 0x2f, 0xbf, 0x1f, 0x4c, 0x7d, 0x57, 0x1b, 0x50, 0xbe, 0x0c, 0xe3, 0x5d, 0x3d, 0x40, 0x3c, 0xd5, 0x2f, 0x70, 0xaa, 0x7c, 0xb4, 0x05, 0x28, 0x2f, 0x43, 0x8a, 0xd4, 0xf3, 0x78, 0xf8, 0x2f, 0x72, 0x38, 0x35, 0x2f, 0x7f, 0x02, 0x32, 0xa2, 0x8e, 0xc7, 0x43, 0x7f, 0x89, 0x43, 0x03, 0x08, 0x81, 0x8b, 0x1a, 0x1e, 0x0f, 0xff, 0x65, 0x01, 0x17, 0x10, 0x02, 0x1f, 0x3e, 0x84, 0x7f, 0xf7, 0x2b, 0x29, 0xbe, 0x0f, 0x8b, 0xd8, 0x5d, 0x82, 0x31, 0x5e, 0xbc, 0xe3, 0xd1, 0x9f, 0xe3, 0x2f, 0x17, 0x88, 0xf2, 0x79, 0x48, 0x0f, 0x19, 0xf0, 0x5f, 0xe5, 0x50, 0x66, 0x5f, 0x5e, 0x85, 0x5c, 0xa4, 0x60, 0xc7, 0xc3, 0x7f, 0x8d, 0xc3, 0xa3, 0x28, 0xe2, 0x3a, 0x2f, 0xd8, 0xf1, 0x04, 0xbf, 0x2e, 0x5c, 0xe7, 0x08, 0x12, 0x36, 0x51, 0xab, 0xe3, 0xd1, 0xbf, 0x21, 0xa2, 0x2e, 0x20, 0xe5, 0xe7, 0x21, 0x1b, 0xec, 0xbf, 0xf1, 0xf8, 0xdf, 0xe4, 0xf8, 0x10, 0x43, 0x22, 0x10, 0xd9, 0xff, 0xe3, 0x29, 0x3e, 0x2f, 0x22, 0x10, 0x41, 0x91, 0x65, 0xd4, 0x5b, 0xd3, 0xe3, 0x99, 0x7e, 0x4b, 0x2c, 0xa3, 0x9e, 0x92, 0x4e, 0x66, 0x93, 0x6e, 0x83, 0xf1, 0x14, 0xbf, 0x2d, 0x66, 0x93, 0xda, 0x13, 0x37, 0x7a, 0x8b, 0x64, 0x3c, 0xc7, 0xef, 0x08, 0x37, 0x7a, 0x6a, 0x64, 0x79, 0x07, 0x50, 0x7f, 0x81, 0x8c, 0xe7, 0xfb, 0x02, 0xe7, 0x9b, 0xec, 0xab, 0x8f, 0xe5, 0x17, 0xe0, 0xc4, 0xe0, 0xe2, 0x18, 0xcf, 0xfa, 0xc5, 0xf7, 0x7b, 0x8e, 0x33, 0xd1, 0xda, 0x58, 0xde, 0x0d, 0x77, 0xd9, 0x68, 0x61, 0x8c, 0xa7, 0x7d, 0xe5, 0xfd, 0xee, 0x8d, 0x36, 0x5a, 0x17, 0xcb, 0x15, 0x80, 0xb0, 0x26, 0xc5, 0x73, 0xbd, 0xca, 0xb9, 0x22, 0x20, 0xb2, 0x34, 0x78, 0x49, 0x8a, 0xc7, 0x7f, 0x49, 0x2c, 0x0d, 0x8e, 0x20, 0x4b, 0x43, 0x54, 0xa3, 0x78, 0xf4, 0x6b, 0x62, 0x69, 0x08, 0x48, 0xf9, 0x12, 0x64, 0xac, 0x8e, 0x69, 0x92, 0xdc, 0x42, 0xf7, 0xfe, 0x9c, 0xa9, 0xf8, 0xef, 0x1f, 0x70, 0xb0, 0x00, 0x94, 0x97, 0x21, 0x8d, 0xdb, 0xfb, 0xb8, 0x11, 0x87, 0xfc, 0x8f, 0x0f, 0xc4, 0x7e, 0x42, 0xac, 0xcb, 0xcf, 0x03, 0xb0, 0xc3, 0x34, 0xfd, 0x95, 0x28, 0x06, 0xfb, 0x9f, 0x1f, 0xf0, 0x2f, 0x25, 0x42, 0x48, 0x48, 0xc0, 0xbe, 0xbb, 0xb8, 0x37, 0xc1, 0xbb, 0xdd, 0x04, 0xf4, 0x00, 0x7e, 0x11, 0xc6, 0xae, 0x7b, 0xb6, 0xe5, 0x6b, 0xad, 0x38, 0xf4, 0x7f, 0x71, 0xb4, 0xb0, 0x27, 0x01, 0x6b, 0xdb, 0x2e, 0xf6, 0xb5, 0x96, 0x17, 0x87, 0xfd, 0x6f, 0x8e, 0x0d, 0x00, 0x04, 0xac, 0x6b, 0x9e, 0x3f, 0xcc, 0xb8, 0xff, 0x47, 0x80, 0x05, 0x80, 0x38, 0x4d, 0xfe, 0xbf, 0x81, 0x0f, 0xe3, 0xb0, 0xef, 0x09, 0xa7, 0xb9, 0x7d, 0xf9, 0x13, 0x90, 0x25, 0xff, 0xb2, 0xaf, 0x87, 0x62, 0xc0, 0xff, 0xcb, 0xc1, 0x21, 0x82, 0xbc, 0xd9, 0xf3, 0x1b, 0xbe, 0x11, 0x1f, 0xec, 0xff, 0xe3, 0x33, 0x2d, 0xec, 0xcb, 0x15, 0xc8, 0x79, 0x7e, 0xa3, 0xd1, 0xe1, 0x1d, 0x4d, 0x0c, 0xfc, 0xfb, 0x1f, 0x04, 0x87, 0xdc, 0x00, 0xb3, 0x72, 0x66, 0xf0, 0x65, 0x1d, 0xac, 0xdb, 0xeb, 0x36, 0xbb, 0xa6, 0x83, 0x1f, 0x66, 0x60, 0x46, 0xb7, 0xdb, 0xfb, 0xb6, 0xb7, 0x10, 0x6c, 0x24, 0x0b, 0xb6, 0xc5, 0xad, 0x51, 0xd2, 0xb6, 0xf0, 0xcc, 0xfd, 0x5d, 0xcb, 0xcd, 0x9e, 0x84, 0x74, 0xbd, 0xb3, 0xbf, 0x7f, 0x88, 0x64, 0x48, 0x7a, 0x9d, 0x7d, 0xfe, 0x7d, 0x0b, 0xf9, 0x77, 0xf6, 0xad, 0x24, 0x8c, 0x57, 0x4c, 0x73, 0xf7, 0xd0, 0xc1, 0x5e, 0xcd, 0xc2, 0xb5, 0x26, 0x2a, 0xc2, 0x28, 0x1d, 0xc7, 0x73, 0xd4, 0x4c, 0xba, 0x32, 0xa2, 0xf0, 0xe7, 0x40, 0xb3, 0x48, 0x6f, 0x2b, 0x13, 0x81, 0x66, 0x31, 0xd0, 0x9c, 0x65, 0x97, 0x95, 0x81, 0xe6, 0x6c, 0xa0, 0x59, 0xa2, 0x57, 0x96, 0xc9, 0x40, 0xb3, 0x14, 0x68, 0x96, 0xe9, 0x95, 0xfc, 0x78, 0xa0, 0x59, 0x0e, 0x34, 0xe7, 0xe8, 0x25, 0x7c, 0x2a, 0xd0, 0x9c, 0x0b, 0x34, 0xe7, 0xe9, 0xdd, 0xfb, 0x64, 0xa0, 0x39, 0x1f, 0x68, 0x2e, 0xd0, 0xfb, 0x76, 0x14, 0x68, 0x2e, 0x04, 0x9a, 0x8b, 0xf4, 0x43, 0x96, 0xb1, 0x40, 0x73, 0x11, 0xcd, 0xc0, 0x18, 0x1b, 0xd9, 0xb3, 0xf4, 0x47, 0xd9, 0x89, 0x2b, 0x23, 0x8a, 0x10, 0x84, 0xba, 0xe7, 0xe8, 0xc7, 0x2a, 0xa3, 0xa1, 0xee, 0xb9, 0x50, 0xb7, 0x48, 0x3f, 0x39, 0x97, 0x43, 0xdd, 0x62, 0xa8, 0x3b, 0x5b, 0x1c, 0x27, 0xd3, 0x1f, 0xea, 0xce, 0x86, 0xba, 0xa5, 0x62, 0x81, 0xcc, 0x40, 0xa8, 0x5b, 0x0a, 0x75, 0xcb, 0xc5, 0x89, 0xd3, 0xd2, 0x5c, 0x3e, 0xd4, 0x2d, 0xa3, 0x67, 0x20, 0xe7, 0x75, 0xf6, 0x55, 0xfe, 0x0d, 0x01, 0xfd, 0x28, 0x26, 0xb7, 0x08, 0xf3, 0x24, 0x27, 0xe8, 0xb4, 0x5e, 0x19, 0x51, 0xc0, 0xeb, 0xec, 0xf3, 0xfd, 0x71, 0x25, 0x0f, 0xf4, 0x3a, 0x41, 0xa5, 0x9f, 0x82, 0xce, 0xbe, 0x29, 0x41, 0x76, 0xf7, 0x96, 0x4d, 0x7f, 0x92, 0xf5, 0x7e, 0xcc, 0x93, 0x2b, 0x9c, 0x3e, 0xbb, 0x44, 0x7f, 0x35, 0xcb, 0x5e, 0x91, 0x14, 0x21, 0x08, 0x75, 0xcb, 0xc5, 0x47, 0xe8, 0x80, 0x02, 0xdd, 0x32, 0x5a, 0x80, 0x7c, 0x64, 0x40, 0x8b, 0xf4, 0x73, 0x95, 0xee, 0x11, 0x49, 0x4a, 0x2e, 0x1c, 0xd1, 0xe2, 0x4a, 0x1a, 0x48, 0xda, 0x93, 0x3f, 0xfe, 0x2d, 0x7b, 0xf6, 0xf3, 0x09, 0xc8, 0xb1, 0x1b, 0x48, 0x3a, 0x2a, 0xf2, 0x2a, 0xd6, 0x91, 0x1f, 0x72, 0x37, 0x46, 0x14, 0x21, 0x40, 0x0a, 0x00, 0x33, 0x25, 0x19, 0xce, 0x3c, 0x59, 0x79, 0xf6, 0x9f, 0xdf, 0x3a, 0xf5, 0xf1, 0x63, 0x57, 0x10, 0x89, 0xdd, 0x02, 0xdb, 0x5f, 0xe7, 0xf7, 0x0c, 0xcb, 0x7f, 0x6e, 0xf1, 0x02, 0x09, 0x70, 0xc8, 0x82, 0xf6, 0x20, 0xb3, 0xaa, 0x79, 0xf4, 0x43, 0x37, 0xea, 0x7a, 0x6a, 0xe5, 0xfc, 0x0f, 0xdf, 0x3a, 0x75, 0x36, 0x86, 0x91, 0x6f, 0x7d, 0xf3, 0x5b, 0x87, 0x84, 0xf5, 0xdc, 0x12, 0x81, 0x5f, 0x19, 0x51, 0x02, 0x2a, 0xb4, 0x28, 0x5c, 0xdd, 0xd6, 0xda, 0xec, 0xbb, 0x9c, 0xe4, 0x8a, 0x7c, 0xf4, 0xd6, 0xa9, 0xfc, 0xd6, 0x61, 0x28, 0x0f, 0x5d, 0x21, 0x4f, 0x2b, 0x19, 0x18, 0x65, 0xae, 0xae, 0xac, 0xbd, 0x71, 0xb7, 0x34, 0xf2, 0xe6, 0xdd, 0xd2, 0xc8, 0x3f, 0xdd, 0x2d, 0x8d, 0xbc, 0x7d, 0xb7, 0x24, 0xbd, 0x77, 0xb7, 0x24, 0xfd, 0xe0, 0x6e, 0x49, 0xba, 0x73, 0x54, 0x92, 0xbe, 0x72, 0x54, 0x92, 0xbe, 0x7e, 0x54, 0x92, 0xbe, 0x7d, 0x54, 0x92, 0xde, 0x38, 0x2a, 0x49, 0x6f, 0x1e, 0x95, 0x46, 0xde, 0x3e, 0x2a, 0x49, 0xdf, 0x3b, 0x2a, 0x8d, 0xbc, 0x77, 0x54, 0x92, 0x7e, 0x70, 0x54, 0x1a, 0xb9, 0xf3, 0xaf, 0xa5, 0x91, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x3b, 0xe8, 0x83, 0x77, 0x21, 0x34, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Subby) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Subby") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Subby but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Subby but is not nil && this == nil") } if this.Sub != nil && that1.Sub != nil { if *this.Sub != *that1.Sub { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", *this.Sub, *that1.Sub) } } else if this.Sub != nil { return fmt.Errorf("this.Sub == nil && that.Sub != nil") } else if that1.Sub != nil { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Subby) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Sub != nil && that1.Sub != nil { if *this.Sub != *that1.Sub { return false } } else if this.Sub != nil { return false } else if that1.Sub != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllTypesOneOf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf) if !ok { that2, ok := that.(AllTypesOneOf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf but is not nil && this == nil") } if that1.TestOneof == nil { if this.TestOneof != nil { return fmt.Errorf("this.TestOneof != nil && that1.TestOneof == nil") } } else if this.TestOneof == nil { return fmt.Errorf("this.TestOneof == nil && that1.TestOneof != nil") } else if err := this.TestOneof.VerboseEqual(that1.TestOneof); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllTypesOneOf_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field1) if !ok { that2, ok := that.(AllTypesOneOf_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *AllTypesOneOf_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field2) if !ok { that2, ok := that.(AllTypesOneOf_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *AllTypesOneOf_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field3) if !ok { that2, ok := that.(AllTypesOneOf_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *AllTypesOneOf_Field4) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field4) if !ok { that2, ok := that.(AllTypesOneOf_Field4) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field4") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field4 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field4 but is not nil && this == nil") } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } return nil } func (this *AllTypesOneOf_Field5) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field5) if !ok { that2, ok := that.(AllTypesOneOf_Field5) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field5") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field5 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field5 but is not nil && this == nil") } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } return nil } func (this *AllTypesOneOf_Field6) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field6) if !ok { that2, ok := that.(AllTypesOneOf_Field6) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field6") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field6 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field6 but is not nil && this == nil") } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } return nil } func (this *AllTypesOneOf_Field7) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field7) if !ok { that2, ok := that.(AllTypesOneOf_Field7) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field7") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field7 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field7 but is not nil && this == nil") } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } return nil } func (this *AllTypesOneOf_Field8) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field8) if !ok { that2, ok := that.(AllTypesOneOf_Field8) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field8") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field8 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field8 but is not nil && this == nil") } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } return nil } func (this *AllTypesOneOf_Field9) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field9) if !ok { that2, ok := that.(AllTypesOneOf_Field9) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field9") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field9 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field9 but is not nil && this == nil") } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } return nil } func (this *AllTypesOneOf_Field10) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field10) if !ok { that2, ok := that.(AllTypesOneOf_Field10) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field10") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field10 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field10 but is not nil && this == nil") } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } return nil } func (this *AllTypesOneOf_Field11) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field11) if !ok { that2, ok := that.(AllTypesOneOf_Field11) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field11") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field11 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field11 but is not nil && this == nil") } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } return nil } func (this *AllTypesOneOf_Field12) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field12) if !ok { that2, ok := that.(AllTypesOneOf_Field12) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field12") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field12 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field12 but is not nil && this == nil") } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } return nil } func (this *AllTypesOneOf_Field13) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field13) if !ok { that2, ok := that.(AllTypesOneOf_Field13) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field13") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field13 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field13 but is not nil && this == nil") } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } return nil } func (this *AllTypesOneOf_Field14) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field14) if !ok { that2, ok := that.(AllTypesOneOf_Field14) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field14") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field14 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field14 but is not nil && this == nil") } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } return nil } func (this *AllTypesOneOf_Field15) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field15) if !ok { that2, ok := that.(AllTypesOneOf_Field15) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field15") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field15 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field15 but is not nil && this == nil") } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } return nil } func (this *AllTypesOneOf_SubMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_SubMessage) if !ok { that2, ok := that.(AllTypesOneOf_SubMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_SubMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_SubMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_SubMessage but is not nil && this == nil") } if !this.SubMessage.Equal(that1.SubMessage) { return fmt.Errorf("SubMessage this(%v) Not Equal that(%v)", this.SubMessage, that1.SubMessage) } return nil } func (this *AllTypesOneOf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf) if !ok { that2, ok := that.(AllTypesOneOf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.TestOneof == nil { if this.TestOneof != nil { return false } } else if this.TestOneof == nil { return false } else if !this.TestOneof.Equal(that1.TestOneof) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllTypesOneOf_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field1) if !ok { that2, ok := that.(AllTypesOneOf_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *AllTypesOneOf_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field2) if !ok { that2, ok := that.(AllTypesOneOf_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *AllTypesOneOf_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field3) if !ok { that2, ok := that.(AllTypesOneOf_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *AllTypesOneOf_Field4) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field4) if !ok { that2, ok := that.(AllTypesOneOf_Field4) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field4 != that1.Field4 { return false } return true } func (this *AllTypesOneOf_Field5) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field5) if !ok { that2, ok := that.(AllTypesOneOf_Field5) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field5 != that1.Field5 { return false } return true } func (this *AllTypesOneOf_Field6) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field6) if !ok { that2, ok := that.(AllTypesOneOf_Field6) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field6 != that1.Field6 { return false } return true } func (this *AllTypesOneOf_Field7) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field7) if !ok { that2, ok := that.(AllTypesOneOf_Field7) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field7 != that1.Field7 { return false } return true } func (this *AllTypesOneOf_Field8) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field8) if !ok { that2, ok := that.(AllTypesOneOf_Field8) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field8 != that1.Field8 { return false } return true } func (this *AllTypesOneOf_Field9) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field9) if !ok { that2, ok := that.(AllTypesOneOf_Field9) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field9 != that1.Field9 { return false } return true } func (this *AllTypesOneOf_Field10) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field10) if !ok { that2, ok := that.(AllTypesOneOf_Field10) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field10 != that1.Field10 { return false } return true } func (this *AllTypesOneOf_Field11) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field11) if !ok { that2, ok := that.(AllTypesOneOf_Field11) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field11 != that1.Field11 { return false } return true } func (this *AllTypesOneOf_Field12) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field12) if !ok { that2, ok := that.(AllTypesOneOf_Field12) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field12 != that1.Field12 { return false } return true } func (this *AllTypesOneOf_Field13) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field13) if !ok { that2, ok := that.(AllTypesOneOf_Field13) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field13 != that1.Field13 { return false } return true } func (this *AllTypesOneOf_Field14) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field14) if !ok { that2, ok := that.(AllTypesOneOf_Field14) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field14 != that1.Field14 { return false } return true } func (this *AllTypesOneOf_Field15) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field15) if !ok { that2, ok := that.(AllTypesOneOf_Field15) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } return true } func (this *AllTypesOneOf_SubMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_SubMessage) if !ok { that2, ok := that.(AllTypesOneOf_SubMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage.Equal(that1.SubMessage) { return false } return true } func (this *TwoOneofs) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs) if !ok { that2, ok := that.(TwoOneofs) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs but is not nil && this == nil") } if that1.One == nil { if this.One != nil { return fmt.Errorf("this.One != nil && that1.One == nil") } } else if this.One == nil { return fmt.Errorf("this.One == nil && that1.One != nil") } else if err := this.One.VerboseEqual(that1.One); err != nil { return err } if that1.Two == nil { if this.Two != nil { return fmt.Errorf("this.Two != nil && that1.Two == nil") } } else if this.Two == nil { return fmt.Errorf("this.Two == nil && that1.Two != nil") } else if err := this.Two.VerboseEqual(that1.Two); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *TwoOneofs_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field1) if !ok { that2, ok := that.(TwoOneofs_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *TwoOneofs_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field2) if !ok { that2, ok := that.(TwoOneofs_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *TwoOneofs_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field3) if !ok { that2, ok := that.(TwoOneofs_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *TwoOneofs_Field34) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field34) if !ok { that2, ok := that.(TwoOneofs_Field34) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field34") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field34 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field34 but is not nil && this == nil") } if this.Field34 != that1.Field34 { return fmt.Errorf("Field34 this(%v) Not Equal that(%v)", this.Field34, that1.Field34) } return nil } func (this *TwoOneofs_Field35) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field35) if !ok { that2, ok := that.(TwoOneofs_Field35) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field35") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field35 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field35 but is not nil && this == nil") } if !bytes.Equal(this.Field35, that1.Field35) { return fmt.Errorf("Field35 this(%v) Not Equal that(%v)", this.Field35, that1.Field35) } return nil } func (this *TwoOneofs_SubMessage2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_SubMessage2) if !ok { that2, ok := that.(TwoOneofs_SubMessage2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_SubMessage2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_SubMessage2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_SubMessage2 but is not nil && this == nil") } if !this.SubMessage2.Equal(that1.SubMessage2) { return fmt.Errorf("SubMessage2 this(%v) Not Equal that(%v)", this.SubMessage2, that1.SubMessage2) } return nil } func (this *TwoOneofs) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs) if !ok { that2, ok := that.(TwoOneofs) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.One == nil { if this.One != nil { return false } } else if this.One == nil { return false } else if !this.One.Equal(that1.One) { return false } if that1.Two == nil { if this.Two != nil { return false } } else if this.Two == nil { return false } else if !this.Two.Equal(that1.Two) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *TwoOneofs_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field1) if !ok { that2, ok := that.(TwoOneofs_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *TwoOneofs_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field2) if !ok { that2, ok := that.(TwoOneofs_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *TwoOneofs_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field3) if !ok { that2, ok := that.(TwoOneofs_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *TwoOneofs_Field34) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field34) if !ok { that2, ok := that.(TwoOneofs_Field34) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field34 != that1.Field34 { return false } return true } func (this *TwoOneofs_Field35) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field35) if !ok { that2, ok := that.(TwoOneofs_Field35) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field35, that1.Field35) { return false } return true } func (this *TwoOneofs_SubMessage2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_SubMessage2) if !ok { that2, ok := that.(TwoOneofs_SubMessage2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage2.Equal(that1.SubMessage2) { return false } return true } func (this *CustomOneof) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof) if !ok { that2, ok := that.(CustomOneof) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof but is not nil && this == nil") } if that1.Custom == nil { if this.Custom != nil { return fmt.Errorf("this.Custom != nil && that1.Custom == nil") } } else if this.Custom == nil { return fmt.Errorf("this.Custom == nil && that1.Custom != nil") } else if err := this.Custom.VerboseEqual(that1.Custom); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomOneof_Stringy) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_Stringy) if !ok { that2, ok := that.(CustomOneof_Stringy) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_Stringy") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_Stringy but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_Stringy but is not nil && this == nil") } if this.Stringy != that1.Stringy { return fmt.Errorf("Stringy this(%v) Not Equal that(%v)", this.Stringy, that1.Stringy) } return nil } func (this *CustomOneof_CustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_CustomType) if !ok { that2, ok := that.(CustomOneof_CustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_CustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_CustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_CustomType but is not nil && this == nil") } if !this.CustomType.Equal(that1.CustomType) { return fmt.Errorf("CustomType this(%v) Not Equal that(%v)", this.CustomType, that1.CustomType) } return nil } func (this *CustomOneof_CastType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_CastType) if !ok { that2, ok := that.(CustomOneof_CastType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_CastType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_CastType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_CastType but is not nil && this == nil") } if this.CastType != that1.CastType { return fmt.Errorf("CastType this(%v) Not Equal that(%v)", this.CastType, that1.CastType) } return nil } func (this *CustomOneof_MyCustomName) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_MyCustomName) if !ok { that2, ok := that.(CustomOneof_MyCustomName) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_MyCustomName") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_MyCustomName but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_MyCustomName but is not nil && this == nil") } if this.MyCustomName != that1.MyCustomName { return fmt.Errorf("MyCustomName this(%v) Not Equal that(%v)", this.MyCustomName, that1.MyCustomName) } return nil } func (this *CustomOneof) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof) if !ok { that2, ok := that.(CustomOneof) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Custom == nil { if this.Custom != nil { return false } } else if this.Custom == nil { return false } else if !this.Custom.Equal(that1.Custom) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomOneof_Stringy) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_Stringy) if !ok { that2, ok := that.(CustomOneof_Stringy) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Stringy != that1.Stringy { return false } return true } func (this *CustomOneof_CustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_CustomType) if !ok { that2, ok := that.(CustomOneof_CustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.CustomType.Equal(that1.CustomType) { return false } return true } func (this *CustomOneof_CastType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_CastType) if !ok { that2, ok := that.(CustomOneof_CastType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.CastType != that1.CastType { return false } return true } func (this *CustomOneof_MyCustomName) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_MyCustomName) if !ok { that2, ok := that.(CustomOneof_MyCustomName) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.MyCustomName != that1.MyCustomName { return false } return true } func (this *Subby) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&one.Subby{") if this.Sub != nil { s = append(s, "Sub: "+valueToGoStringOne(this.Sub, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllTypesOneOf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&one.AllTypesOneOf{") if this.TestOneof != nil { s = append(s, "TestOneof: "+fmt.Sprintf("%#v", this.TestOneof)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllTypesOneOf_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field4) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field4{` + `Field4:` + fmt.Sprintf("%#v", this.Field4) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field5) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field5{` + `Field5:` + fmt.Sprintf("%#v", this.Field5) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field6) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field6{` + `Field6:` + fmt.Sprintf("%#v", this.Field6) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field7) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field7{` + `Field7:` + fmt.Sprintf("%#v", this.Field7) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field8) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field8{` + `Field8:` + fmt.Sprintf("%#v", this.Field8) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field9) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field9{` + `Field9:` + fmt.Sprintf("%#v", this.Field9) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field10) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field10{` + `Field10:` + fmt.Sprintf("%#v", this.Field10) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field11) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field11{` + `Field11:` + fmt.Sprintf("%#v", this.Field11) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field12) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field12{` + `Field12:` + fmt.Sprintf("%#v", this.Field12) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field13) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field13{` + `Field13:` + fmt.Sprintf("%#v", this.Field13) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field14) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field14{` + `Field14:` + fmt.Sprintf("%#v", this.Field14) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field15) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field15{` + `Field15:` + fmt.Sprintf("%#v", this.Field15) + `}`}, ", ") return s } func (this *AllTypesOneOf_SubMessage) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_SubMessage{` + `SubMessage:` + fmt.Sprintf("%#v", this.SubMessage) + `}`}, ", ") return s } func (this *TwoOneofs) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 10) s = append(s, "&one.TwoOneofs{") if this.One != nil { s = append(s, "One: "+fmt.Sprintf("%#v", this.One)+",\n") } if this.Two != nil { s = append(s, "Two: "+fmt.Sprintf("%#v", this.Two)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *TwoOneofs_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *TwoOneofs_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *TwoOneofs_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *TwoOneofs_Field34) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field34{` + `Field34:` + fmt.Sprintf("%#v", this.Field34) + `}`}, ", ") return s } func (this *TwoOneofs_Field35) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field35{` + `Field35:` + fmt.Sprintf("%#v", this.Field35) + `}`}, ", ") return s } func (this *TwoOneofs_SubMessage2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_SubMessage2{` + `SubMessage2:` + fmt.Sprintf("%#v", this.SubMessage2) + `}`}, ", ") return s } func (this *CustomOneof) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&one.CustomOneof{") if this.Custom != nil { s = append(s, "Custom: "+fmt.Sprintf("%#v", this.Custom)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomOneof_Stringy) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_Stringy{` + `Stringy:` + fmt.Sprintf("%#v", this.Stringy) + `}`}, ", ") return s } func (this *CustomOneof_CustomType) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_CustomType{` + `CustomType:` + fmt.Sprintf("%#v", this.CustomType) + `}`}, ", ") return s } func (this *CustomOneof_CastType) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_CastType{` + `CastType:` + fmt.Sprintf("%#v", this.CastType) + `}`}, ", ") return s } func (this *CustomOneof_MyCustomName) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_MyCustomName{` + `MyCustomName:` + fmt.Sprintf("%#v", this.MyCustomName) + `}`}, ", ") return s } func valueToGoStringOne(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Subby) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Subby) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Sub != nil { dAtA[i] = 0xa i++ i = encodeVarintOne(dAtA, i, uint64(len(*m.Sub))) i += copy(dAtA[i:], *m.Sub) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AllTypesOneOf) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllTypesOneOf) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.TestOneof != nil { nn1, err := m.TestOneof.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn1 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *AllTypesOneOf_Field1) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 return i, nil } func (m *AllTypesOneOf_Field2) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 return i, nil } func (m *AllTypesOneOf_Field3) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x18 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field3)) return i, nil } func (m *AllTypesOneOf_Field4) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x20 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field4)) return i, nil } func (m *AllTypesOneOf_Field5) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x28 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field5)) return i, nil } func (m *AllTypesOneOf_Field6) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x30 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field6)) return i, nil } func (m *AllTypesOneOf_Field7) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x38 i++ i = encodeVarintOne(dAtA, i, uint64((uint32(m.Field7)<<1)^uint32((m.Field7>>31)))) return i, nil } func (m *AllTypesOneOf_Field8) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x40 i++ i = encodeVarintOne(dAtA, i, uint64((uint64(m.Field8)<<1)^uint64((m.Field8>>63)))) return i, nil } func (m *AllTypesOneOf_Field9) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field9)) i += 4 return i, nil } func (m *AllTypesOneOf_Field10) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field10)) i += 4 return i, nil } func (m *AllTypesOneOf_Field11) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field11)) i += 8 return i, nil } func (m *AllTypesOneOf_Field12) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field12)) i += 8 return i, nil } func (m *AllTypesOneOf_Field13) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x68 i++ if m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ return i, nil } func (m *AllTypesOneOf_Field14) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x72 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field14))) i += copy(dAtA[i:], m.Field14) return i, nil } func (m *AllTypesOneOf_Field15) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } return i, nil } func (m *AllTypesOneOf_SubMessage) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.SubMessage != nil { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ i = encodeVarintOne(dAtA, i, uint64(m.SubMessage.Size())) n2, err := m.SubMessage.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } return i, nil } func (m *TwoOneofs) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *TwoOneofs) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.One != nil { nn3, err := m.One.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn3 } if m.Two != nil { nn4, err := m.Two.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn4 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *TwoOneofs_Field1) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 return i, nil } func (m *TwoOneofs_Field2) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 return i, nil } func (m *TwoOneofs_Field3) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x18 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field3)) return i, nil } func (m *TwoOneofs_Field34) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x92 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field34))) i += copy(dAtA[i:], m.Field34) return i, nil } func (m *TwoOneofs_Field35) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Field35 != nil { dAtA[i] = 0x9a i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field35))) i += copy(dAtA[i:], m.Field35) } return i, nil } func (m *TwoOneofs_SubMessage2) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.SubMessage2 != nil { dAtA[i] = 0xa2 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(m.SubMessage2.Size())) n5, err := m.SubMessage2.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n5 } return i, nil } func (m *CustomOneof) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *CustomOneof) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Custom != nil { nn6, err := m.Custom.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn6 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *CustomOneof_Stringy) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x92 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Stringy))) i += copy(dAtA[i:], m.Stringy) return i, nil } func (m *CustomOneof_CustomType) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x9a i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(m.CustomType.Size())) n7, err := m.CustomType.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n7 return i, nil } func (m *CustomOneof_CastType) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0xa0 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(m.CastType)) return i, nil } func (m *CustomOneof_MyCustomName) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0xa8 i++ dAtA[i] = 0x2 i++ i = encodeVarintOne(dAtA, i, uint64(m.MyCustomName)) return i, nil } func encodeVarintOne(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedSubby(r randyOne, easy bool) *Subby { this := &Subby{} if r.Intn(10) != 0 { v1 := string(randStringOne(r)) this.Sub = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 2) } return this } func NewPopulatedAllTypesOneOf(r randyOne, easy bool) *AllTypesOneOf { this := &AllTypesOneOf{} oneofNumber_TestOneof := []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}[r.Intn(16)] switch oneofNumber_TestOneof { case 1: this.TestOneof = NewPopulatedAllTypesOneOf_Field1(r, easy) case 2: this.TestOneof = NewPopulatedAllTypesOneOf_Field2(r, easy) case 3: this.TestOneof = NewPopulatedAllTypesOneOf_Field3(r, easy) case 4: this.TestOneof = NewPopulatedAllTypesOneOf_Field4(r, easy) case 5: this.TestOneof = NewPopulatedAllTypesOneOf_Field5(r, easy) case 6: this.TestOneof = NewPopulatedAllTypesOneOf_Field6(r, easy) case 7: this.TestOneof = NewPopulatedAllTypesOneOf_Field7(r, easy) case 8: this.TestOneof = NewPopulatedAllTypesOneOf_Field8(r, easy) case 9: this.TestOneof = NewPopulatedAllTypesOneOf_Field9(r, easy) case 10: this.TestOneof = NewPopulatedAllTypesOneOf_Field10(r, easy) case 11: this.TestOneof = NewPopulatedAllTypesOneOf_Field11(r, easy) case 12: this.TestOneof = NewPopulatedAllTypesOneOf_Field12(r, easy) case 13: this.TestOneof = NewPopulatedAllTypesOneOf_Field13(r, easy) case 14: this.TestOneof = NewPopulatedAllTypesOneOf_Field14(r, easy) case 15: this.TestOneof = NewPopulatedAllTypesOneOf_Field15(r, easy) case 16: this.TestOneof = NewPopulatedAllTypesOneOf_SubMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 17) } return this } func NewPopulatedAllTypesOneOf_Field1(r randyOne, easy bool) *AllTypesOneOf_Field1 { this := &AllTypesOneOf_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field2(r randyOne, easy bool) *AllTypesOneOf_Field2 { this := &AllTypesOneOf_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field3(r randyOne, easy bool) *AllTypesOneOf_Field3 { this := &AllTypesOneOf_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field4(r randyOne, easy bool) *AllTypesOneOf_Field4 { this := &AllTypesOneOf_Field4{} this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field5(r randyOne, easy bool) *AllTypesOneOf_Field5 { this := &AllTypesOneOf_Field5{} this.Field5 = uint32(r.Uint32()) return this } func NewPopulatedAllTypesOneOf_Field6(r randyOne, easy bool) *AllTypesOneOf_Field6 { this := &AllTypesOneOf_Field6{} this.Field6 = uint64(uint64(r.Uint32())) return this } func NewPopulatedAllTypesOneOf_Field7(r randyOne, easy bool) *AllTypesOneOf_Field7 { this := &AllTypesOneOf_Field7{} this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field8(r randyOne, easy bool) *AllTypesOneOf_Field8 { this := &AllTypesOneOf_Field8{} this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field9(r randyOne, easy bool) *AllTypesOneOf_Field9 { this := &AllTypesOneOf_Field9{} this.Field9 = uint32(r.Uint32()) return this } func NewPopulatedAllTypesOneOf_Field10(r randyOne, easy bool) *AllTypesOneOf_Field10 { this := &AllTypesOneOf_Field10{} this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field11(r randyOne, easy bool) *AllTypesOneOf_Field11 { this := &AllTypesOneOf_Field11{} this.Field11 = uint64(uint64(r.Uint32())) return this } func NewPopulatedAllTypesOneOf_Field12(r randyOne, easy bool) *AllTypesOneOf_Field12 { this := &AllTypesOneOf_Field12{} this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field13(r randyOne, easy bool) *AllTypesOneOf_Field13 { this := &AllTypesOneOf_Field13{} this.Field13 = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedAllTypesOneOf_Field14(r randyOne, easy bool) *AllTypesOneOf_Field14 { this := &AllTypesOneOf_Field14{} this.Field14 = string(randStringOne(r)) return this } func NewPopulatedAllTypesOneOf_Field15(r randyOne, easy bool) *AllTypesOneOf_Field15 { this := &AllTypesOneOf_Field15{} v2 := r.Intn(100) this.Field15 = make([]byte, v2) for i := 0; i < v2; i++ { this.Field15[i] = byte(r.Intn(256)) } return this } func NewPopulatedAllTypesOneOf_SubMessage(r randyOne, easy bool) *AllTypesOneOf_SubMessage { this := &AllTypesOneOf_SubMessage{} this.SubMessage = NewPopulatedSubby(r, easy) return this } func NewPopulatedTwoOneofs(r randyOne, easy bool) *TwoOneofs { this := &TwoOneofs{} oneofNumber_One := []int32{1, 2, 3}[r.Intn(3)] switch oneofNumber_One { case 1: this.One = NewPopulatedTwoOneofs_Field1(r, easy) case 2: this.One = NewPopulatedTwoOneofs_Field2(r, easy) case 3: this.One = NewPopulatedTwoOneofs_Field3(r, easy) } oneofNumber_Two := []int32{34, 35, 36}[r.Intn(3)] switch oneofNumber_Two { case 34: this.Two = NewPopulatedTwoOneofs_Field34(r, easy) case 35: this.Two = NewPopulatedTwoOneofs_Field35(r, easy) case 36: this.Two = NewPopulatedTwoOneofs_SubMessage2(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 37) } return this } func NewPopulatedTwoOneofs_Field1(r randyOne, easy bool) *TwoOneofs_Field1 { this := &TwoOneofs_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedTwoOneofs_Field2(r randyOne, easy bool) *TwoOneofs_Field2 { this := &TwoOneofs_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedTwoOneofs_Field3(r randyOne, easy bool) *TwoOneofs_Field3 { this := &TwoOneofs_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedTwoOneofs_Field34(r randyOne, easy bool) *TwoOneofs_Field34 { this := &TwoOneofs_Field34{} this.Field34 = string(randStringOne(r)) return this } func NewPopulatedTwoOneofs_Field35(r randyOne, easy bool) *TwoOneofs_Field35 { this := &TwoOneofs_Field35{} v3 := r.Intn(100) this.Field35 = make([]byte, v3) for i := 0; i < v3; i++ { this.Field35[i] = byte(r.Intn(256)) } return this } func NewPopulatedTwoOneofs_SubMessage2(r randyOne, easy bool) *TwoOneofs_SubMessage2 { this := &TwoOneofs_SubMessage2{} this.SubMessage2 = NewPopulatedSubby(r, easy) return this } func NewPopulatedCustomOneof(r randyOne, easy bool) *CustomOneof { this := &CustomOneof{} oneofNumber_Custom := []int32{34, 35, 36, 37}[r.Intn(4)] switch oneofNumber_Custom { case 34: this.Custom = NewPopulatedCustomOneof_Stringy(r, easy) case 35: this.Custom = NewPopulatedCustomOneof_CustomType(r, easy) case 36: this.Custom = NewPopulatedCustomOneof_CastType(r, easy) case 37: this.Custom = NewPopulatedCustomOneof_MyCustomName(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 38) } return this } func NewPopulatedCustomOneof_Stringy(r randyOne, easy bool) *CustomOneof_Stringy { this := &CustomOneof_Stringy{} this.Stringy = string(randStringOne(r)) return this } func NewPopulatedCustomOneof_CustomType(r randyOne, easy bool) *CustomOneof_CustomType { this := &CustomOneof_CustomType{} v4 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.CustomType = *v4 return this } func NewPopulatedCustomOneof_CastType(r randyOne, easy bool) *CustomOneof_CastType { this := &CustomOneof_CastType{} this.CastType = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) return this } func NewPopulatedCustomOneof_MyCustomName(r randyOne, easy bool) *CustomOneof_MyCustomName { this := &CustomOneof_MyCustomName{} this.MyCustomName = int64(r.Int63()) if r.Intn(2) == 0 { this.MyCustomName *= -1 } return this } type randyOne interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneOne(r randyOne) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringOne(r randyOne) string { v5 := r.Intn(100) tmps := make([]rune, v5) for i := 0; i < v5; i++ { tmps[i] = randUTF8RuneOne(r) } return string(tmps) } func randUnrecognizedOne(r randyOne, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldOne(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldOne(dAtA []byte, r randyOne, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) v6 := r.Int63() if r.Intn(2) == 0 { v6 *= -1 } dAtA = encodeVarintPopulateOne(dAtA, uint64(v6)) case 1: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateOne(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateOne(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Subby) Size() (n int) { var l int _ = l if m.Sub != nil { l = len(*m.Sub) n += 1 + l + sovOne(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllTypesOneOf) Size() (n int) { var l int _ = l if m.TestOneof != nil { n += m.TestOneof.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllTypesOneOf_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *AllTypesOneOf_Field4) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field4)) return n } func (m *AllTypesOneOf_Field5) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field5)) return n } func (m *AllTypesOneOf_Field6) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field6)) return n } func (m *AllTypesOneOf_Field7) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field7)) return n } func (m *AllTypesOneOf_Field8) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field8)) return n } func (m *AllTypesOneOf_Field9) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field10) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field11) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field12) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field13) Size() (n int) { var l int _ = l n += 2 return n } func (m *AllTypesOneOf_Field14) Size() (n int) { var l int _ = l l = len(m.Field14) n += 1 + l + sovOne(uint64(l)) return n } func (m *AllTypesOneOf_Field15) Size() (n int) { var l int _ = l if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovOne(uint64(l)) } return n } func (m *AllTypesOneOf_SubMessage) Size() (n int) { var l int _ = l if m.SubMessage != nil { l = m.SubMessage.Size() n += 2 + l + sovOne(uint64(l)) } return n } func (m *TwoOneofs) Size() (n int) { var l int _ = l if m.One != nil { n += m.One.Size() } if m.Two != nil { n += m.Two.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *TwoOneofs_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *TwoOneofs_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *TwoOneofs_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *TwoOneofs_Field34) Size() (n int) { var l int _ = l l = len(m.Field34) n += 2 + l + sovOne(uint64(l)) return n } func (m *TwoOneofs_Field35) Size() (n int) { var l int _ = l if m.Field35 != nil { l = len(m.Field35) n += 2 + l + sovOne(uint64(l)) } return n } func (m *TwoOneofs_SubMessage2) Size() (n int) { var l int _ = l if m.SubMessage2 != nil { l = m.SubMessage2.Size() n += 2 + l + sovOne(uint64(l)) } return n } func (m *CustomOneof) Size() (n int) { var l int _ = l if m.Custom != nil { n += m.Custom.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomOneof_Stringy) Size() (n int) { var l int _ = l l = len(m.Stringy) n += 2 + l + sovOne(uint64(l)) return n } func (m *CustomOneof_CustomType) Size() (n int) { var l int _ = l l = m.CustomType.Size() n += 2 + l + sovOne(uint64(l)) return n } func (m *CustomOneof_CastType) Size() (n int) { var l int _ = l n += 2 + sovOne(uint64(m.CastType)) return n } func (m *CustomOneof_MyCustomName) Size() (n int) { var l int _ = l n += 2 + sovOne(uint64(m.MyCustomName)) return n } func sovOne(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozOne(x uint64) (n int) { return sovOne(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Subby) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Subby{`, `Sub:` + valueToStringOne(this.Sub) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf{`, `TestOneof:` + fmt.Sprintf("%v", this.TestOneof) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field4) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field4{`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field5) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field5{`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field6) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field6{`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field7) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field7{`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field8) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field8{`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field9) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field9{`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field10) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field10{`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field11) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field11{`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field12) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field12{`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field13) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field13{`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field14) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field14{`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field15) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field15{`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_SubMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_SubMessage{`, `SubMessage:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func (this *TwoOneofs) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs{`, `One:` + fmt.Sprintf("%v", this.One) + `,`, `Two:` + fmt.Sprintf("%v", this.Two) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field34) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field34{`, `Field34:` + fmt.Sprintf("%v", this.Field34) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field35) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field35{`, `Field35:` + fmt.Sprintf("%v", this.Field35) + `,`, `}`, }, "") return s } func (this *TwoOneofs_SubMessage2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_SubMessage2{`, `SubMessage2:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage2), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func (this *CustomOneof) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof{`, `Custom:` + fmt.Sprintf("%v", this.Custom) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomOneof_Stringy) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_Stringy{`, `Stringy:` + fmt.Sprintf("%v", this.Stringy) + `,`, `}`, }, "") return s } func (this *CustomOneof_CustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_CustomType{`, `CustomType:` + fmt.Sprintf("%v", this.CustomType) + `,`, `}`, }, "") return s } func (this *CustomOneof_CastType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_CastType{`, `CastType:` + fmt.Sprintf("%v", this.CastType) + `,`, `}`, }, "") return s } func (this *CustomOneof_MyCustomName) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_MyCustomName{`, `MyCustomName:` + fmt.Sprintf("%v", this.MyCustomName) + `,`, `}`, }, "") return s } func valueToStringOne(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/marshaler/one.proto", fileDescriptorOne) } var fileDescriptorOne = []byte{ // 601 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0xd3, 0xbf, 0x4f, 0xdb, 0x4e, 0x14, 0x00, 0xf0, 0x7b, 0x84, 0x84, 0x70, 0x09, 0x5f, 0xf2, 0xf5, 0x74, 0x65, 0x38, 0x4e, 0x69, 0x2b, 0xdd, 0x50, 0x12, 0xe2, 0x24, 0xfc, 0x18, 0x6b, 0xaa, 0x2a, 0x0b, 0x45, 0x32, 0x30, 0xa3, 0x98, 0x1e, 0x21, 0x52, 0xe2, 0x43, 0x39, 0x5b, 0xc8, 0x1b, 0x7f, 0x43, 0xff, 0x8a, 0x8e, 0x1d, 0xfb, 0x27, 0x30, 0x32, 0x56, 0x1d, 0x22, 0xec, 0x2e, 0x1d, 0x19, 0x51, 0xa7, 0xea, 0x6c, 0x72, 0x57, 0xa9, 0xaa, 0xba, 0x74, 0x8a, 0xdf, 0xfb, 0xf8, 0x5e, 0xde, 0xf3, 0xdd, 0xe1, 0x8d, 0x73, 0x39, 0x0d, 0xa4, 0x6a, 0x4f, 0x87, 0x33, 0x75, 0x39, 0x9c, 0x88, 0x59, 0x5b, 0x86, 0xa2, 0x75, 0x35, 0x93, 0x91, 0x74, 0x4a, 0x32, 0x14, 0x1b, 0x5b, 0xa3, 0x71, 0x74, 0x19, 0x07, 0xad, 0x73, 0x39, 0x6d, 0x8f, 0xe4, 0x48, 0xb6, 0x73, 0x0b, 0xe2, 0x8b, 0x3c, 0xca, 0x83, 0xfc, 0xa9, 0x58, 0xd3, 0x7c, 0x86, 0xcb, 0xc7, 0x71, 0x10, 0x24, 0x4e, 0x03, 0x97, 0x54, 0x1c, 0x10, 0x60, 0xc0, 0x57, 0x7d, 0xfd, 0xd8, 0x9c, 0x97, 0xf0, 0xda, 0xeb, 0xc9, 0xe4, 0x24, 0xb9, 0x12, 0xea, 0x28, 0x14, 0x47, 0x17, 0x0e, 0xc1, 0x95, 0xb7, 0x63, 0x31, 0x79, 0xdf, 0xc9, 0x5f, 0x83, 0x01, 0xf2, 0x9f, 0x62, 0x23, 0x2e, 0x59, 0x62, 0xc0, 0x97, 0x8c, 0xb8, 0x46, 0xba, 0xa4, 0xc4, 0x80, 0x97, 0x8d, 0x74, 0x8d, 0xf4, 0xc8, 0x32, 0x03, 0x5e, 0x32, 0xd2, 0x33, 0xd2, 0x27, 0x65, 0x06, 0x7c, 0xcd, 0x48, 0xdf, 0xc8, 0x0e, 0xa9, 0x30, 0xe0, 0xcb, 0x46, 0x76, 0x8c, 0xec, 0x92, 0x15, 0x06, 0xfc, 0x7f, 0x23, 0xbb, 0x46, 0xf6, 0x48, 0x95, 0x01, 0x77, 0x8c, 0xec, 0x19, 0xd9, 0x27, 0xab, 0x0c, 0xf8, 0x8a, 0x91, 0x7d, 0x67, 0x03, 0xaf, 0x14, 0x93, 0x6d, 0x13, 0xcc, 0x80, 0xaf, 0x0f, 0x90, 0xbf, 0x48, 0x58, 0xeb, 0x90, 0x1a, 0x03, 0x5e, 0xb1, 0xd6, 0xb1, 0xe6, 0x92, 0x3a, 0x03, 0xde, 0xb0, 0xe6, 0x5a, 0xeb, 0x92, 0x35, 0x06, 0xbc, 0x6a, 0xad, 0x6b, 0xad, 0x47, 0xfe, 0xd3, 0x3b, 0x60, 0xad, 0x67, 0xad, 0x4f, 0xd6, 0x19, 0xf0, 0xba, 0xb5, 0xbe, 0xb3, 0x85, 0x6b, 0x2a, 0x0e, 0xce, 0xa6, 0x42, 0xa9, 0xe1, 0x48, 0x90, 0x06, 0x03, 0x5e, 0x73, 0x71, 0x4b, 0x9f, 0x89, 0x7c, 0x5b, 0x07, 0xc8, 0xc7, 0x2a, 0x0e, 0x0e, 0x0b, 0xf7, 0xea, 0x18, 0x47, 0x42, 0x45, 0x67, 0x32, 0x14, 0xf2, 0xa2, 0x79, 0x07, 0x78, 0xf5, 0xe4, 0x5a, 0x1e, 0xe9, 0x40, 0xfd, 0xe3, 0xcd, 0x5d, 0x34, 0xdd, 0xed, 0x91, 0x66, 0x3e, 0x10, 0xf8, 0x8b, 0x84, 0xb5, 0x3e, 0x79, 0x9e, 0x0f, 0x64, 0xac, 0xef, 0xb4, 0x71, 0xfd, 0x97, 0x81, 0x5c, 0xf2, 0xe2, 0xb7, 0x89, 0xc0, 0xaf, 0xd9, 0x89, 0x5c, 0xaf, 0x8c, 0xf5, 0xb1, 0xd7, 0x3f, 0xd1, 0xb5, 0x6c, 0x7e, 0x58, 0xc2, 0xb5, 0x83, 0x58, 0x45, 0x72, 0x9a, 0x4f, 0xa5, 0xff, 0xea, 0x38, 0x9a, 0x8d, 0xc3, 0x51, 0xf2, 0xd4, 0x06, 0xf2, 0x17, 0x09, 0xc7, 0xc7, 0xb8, 0x78, 0x55, 0x9f, 0xf0, 0xa2, 0x13, 0x6f, 0xfb, 0xeb, 0x7c, 0xf3, 0xd5, 0x1f, 0x6f, 0x90, 0xfe, 0x76, 0xed, 0xf3, 0x7c, 0x4d, 0xeb, 0x74, 0x1c, 0x46, 0x1d, 0x77, 0x4f, 0x7f, 0x60, 0x5b, 0xc5, 0x39, 0xc5, 0xd5, 0x83, 0xa1, 0x8a, 0xf2, 0x8a, 0xba, 0xf5, 0x65, 0x6f, 0xf7, 0xc7, 0x7c, 0xb3, 0xfb, 0x97, 0x8a, 0x43, 0x15, 0x45, 0xc9, 0x95, 0x68, 0x1d, 0x26, 0xba, 0xea, 0x4e, 0x4f, 0x2f, 0x1f, 0x20, 0xdf, 0x94, 0x72, 0xdc, 0x45, 0xab, 0xef, 0x86, 0x53, 0x41, 0x5e, 0xea, 0xeb, 0xe2, 0x35, 0xb2, 0xf9, 0x66, 0xfd, 0x30, 0xb1, 0x79, 0xdb, 0x8a, 0x8e, 0xbc, 0x2a, 0xae, 0x14, 0xad, 0x7a, 0x6f, 0x6e, 0x53, 0x8a, 0xee, 0x52, 0x8a, 0xbe, 0xa4, 0x14, 0xdd, 0xa7, 0x14, 0x1e, 0x52, 0x0a, 0x8f, 0x29, 0x85, 0x9b, 0x8c, 0xc2, 0xc7, 0x8c, 0xc2, 0xa7, 0x8c, 0xc2, 0xe7, 0x8c, 0xc2, 0x6d, 0x46, 0xe1, 0x2e, 0xa3, 0xe8, 0x3e, 0xa3, 0xf0, 0x3d, 0xa3, 0xe8, 0x21, 0xa3, 0xf0, 0x98, 0x51, 0x74, 0xf3, 0x8d, 0xa2, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xcf, 0xa5, 0xfc, 0x33, 0x7a, 0x04, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/oneof/combos/marshaler/one.proto000066400000000000000000000064021317075173200245420ustar00rootroot00000000000000// 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 one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { optional string sub = 1; } message AllTypesOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } message TwoOneofs { oneof one { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; } oneof two { string Field34 = 34; bytes Field35 = 35; Subby sub_message2 = 36; } } message CustomOneof { oneof custom { string Stringy = 34; bytes CustomType = 35 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; uint64 CastType = 36 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; int64 CustomName = 37 [(gogoproto.customname) = "MyCustomName"]; } } golang-gogoprotobuf-0.5/test/oneof/combos/marshaler/onepb_test.go000066400000000000000000000545161317075173200253760ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/marshaler/one.proto It has these top-level messages: Subby AllTypesOneOf TwoOneofs CustomOneof */ package one import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSubbyProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSubbyMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllTypesOneOfMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestTwoOneofsMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomOneofMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllTypesOneOfJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTwoOneofsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomOneofJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubbyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneDescription(t *testing.T) { OneDescription() } func TestSubbyVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllTypesOneOfVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTwoOneofsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomOneofVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSubbyGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllTypesOneOfGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTwoOneofsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomOneofGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSubbySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestAllTypesOneOfSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestTwoOneofsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestCustomOneofSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSubbyStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllTypesOneOfStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTwoOneofsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomOneofStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/oneof/combos/neither/000077500000000000000000000000001317075173200223525ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof/combos/neither/one.pb.go000066400000000000000000003731771317075173200241040ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/neither/one.proto It has these top-level messages: Subby AllTypesOneOf TwoOneofs CustomOneof */ package one import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test_casttype "github.com/gogo/protobuf/test/casttype" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Subby struct { Sub *string `protobuf:"bytes,1,opt,name=sub" json:"sub,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Subby) Reset() { *m = Subby{} } func (*Subby) ProtoMessage() {} func (*Subby) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{0} } type AllTypesOneOf struct { // Types that are valid to be assigned to TestOneof: // *AllTypesOneOf_Field1 // *AllTypesOneOf_Field2 // *AllTypesOneOf_Field3 // *AllTypesOneOf_Field4 // *AllTypesOneOf_Field5 // *AllTypesOneOf_Field6 // *AllTypesOneOf_Field7 // *AllTypesOneOf_Field8 // *AllTypesOneOf_Field9 // *AllTypesOneOf_Field10 // *AllTypesOneOf_Field11 // *AllTypesOneOf_Field12 // *AllTypesOneOf_Field13 // *AllTypesOneOf_Field14 // *AllTypesOneOf_Field15 // *AllTypesOneOf_SubMessage TestOneof isAllTypesOneOf_TestOneof `protobuf_oneof:"test_oneof"` XXX_unrecognized []byte `json:"-"` } func (m *AllTypesOneOf) Reset() { *m = AllTypesOneOf{} } func (*AllTypesOneOf) ProtoMessage() {} func (*AllTypesOneOf) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{1} } type isAllTypesOneOf_TestOneof interface { isAllTypesOneOf_TestOneof() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type AllTypesOneOf_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,oneof"` } type AllTypesOneOf_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,oneof"` } type AllTypesOneOf_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,oneof"` } type AllTypesOneOf_Field4 struct { Field4 int64 `protobuf:"varint,4,opt,name=Field4,oneof"` } type AllTypesOneOf_Field5 struct { Field5 uint32 `protobuf:"varint,5,opt,name=Field5,oneof"` } type AllTypesOneOf_Field6 struct { Field6 uint64 `protobuf:"varint,6,opt,name=Field6,oneof"` } type AllTypesOneOf_Field7 struct { Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7,oneof"` } type AllTypesOneOf_Field8 struct { Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8,oneof"` } type AllTypesOneOf_Field9 struct { Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9,oneof"` } type AllTypesOneOf_Field10 struct { Field10 int32 `protobuf:"fixed32,10,opt,name=Field10,oneof"` } type AllTypesOneOf_Field11 struct { Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11,oneof"` } type AllTypesOneOf_Field12 struct { Field12 int64 `protobuf:"fixed64,12,opt,name=Field12,oneof"` } type AllTypesOneOf_Field13 struct { Field13 bool `protobuf:"varint,13,opt,name=Field13,oneof"` } type AllTypesOneOf_Field14 struct { Field14 string `protobuf:"bytes,14,opt,name=Field14,oneof"` } type AllTypesOneOf_Field15 struct { Field15 []byte `protobuf:"bytes,15,opt,name=Field15,oneof"` } type AllTypesOneOf_SubMessage struct { SubMessage *Subby `protobuf:"bytes,16,opt,name=sub_message,json=subMessage,oneof"` } func (*AllTypesOneOf_Field1) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field2) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field3) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field4) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field5) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field6) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field7) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field8) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field9) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field10) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field11) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field12) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field13) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field14) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field15) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_SubMessage) isAllTypesOneOf_TestOneof() {} func (m *AllTypesOneOf) GetTestOneof() isAllTypesOneOf_TestOneof { if m != nil { return m.TestOneof } return nil } func (m *AllTypesOneOf) GetField1() float64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field1); ok { return x.Field1 } return 0 } func (m *AllTypesOneOf) GetField2() float32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field2); ok { return x.Field2 } return 0 } func (m *AllTypesOneOf) GetField3() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field3); ok { return x.Field3 } return 0 } func (m *AllTypesOneOf) GetField4() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field4); ok { return x.Field4 } return 0 } func (m *AllTypesOneOf) GetField5() uint32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field5); ok { return x.Field5 } return 0 } func (m *AllTypesOneOf) GetField6() uint64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field6); ok { return x.Field6 } return 0 } func (m *AllTypesOneOf) GetField7() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field7); ok { return x.Field7 } return 0 } func (m *AllTypesOneOf) GetField8() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field8); ok { return x.Field8 } return 0 } func (m *AllTypesOneOf) GetField9() uint32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field9); ok { return x.Field9 } return 0 } func (m *AllTypesOneOf) GetField10() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field10); ok { return x.Field10 } return 0 } func (m *AllTypesOneOf) GetField11() uint64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field11); ok { return x.Field11 } return 0 } func (m *AllTypesOneOf) GetField12() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field12); ok { return x.Field12 } return 0 } func (m *AllTypesOneOf) GetField13() bool { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field13); ok { return x.Field13 } return false } func (m *AllTypesOneOf) GetField14() string { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field14); ok { return x.Field14 } return "" } func (m *AllTypesOneOf) GetField15() []byte { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field15); ok { return x.Field15 } return nil } func (m *AllTypesOneOf) GetSubMessage() *Subby { if x, ok := m.GetTestOneof().(*AllTypesOneOf_SubMessage); ok { return x.SubMessage } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*AllTypesOneOf) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _AllTypesOneOf_OneofMarshaler, _AllTypesOneOf_OneofUnmarshaler, _AllTypesOneOf_OneofSizer, []interface{}{ (*AllTypesOneOf_Field1)(nil), (*AllTypesOneOf_Field2)(nil), (*AllTypesOneOf_Field3)(nil), (*AllTypesOneOf_Field4)(nil), (*AllTypesOneOf_Field5)(nil), (*AllTypesOneOf_Field6)(nil), (*AllTypesOneOf_Field7)(nil), (*AllTypesOneOf_Field8)(nil), (*AllTypesOneOf_Field9)(nil), (*AllTypesOneOf_Field10)(nil), (*AllTypesOneOf_Field11)(nil), (*AllTypesOneOf_Field12)(nil), (*AllTypesOneOf_Field13)(nil), (*AllTypesOneOf_Field14)(nil), (*AllTypesOneOf_Field15)(nil), (*AllTypesOneOf_SubMessage)(nil), } } func _AllTypesOneOf_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*AllTypesOneOf) // test_oneof switch x := m.TestOneof.(type) { case *AllTypesOneOf_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *AllTypesOneOf_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *AllTypesOneOf_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case *AllTypesOneOf_Field4: _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field4)) case *AllTypesOneOf_Field5: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field5)) case *AllTypesOneOf_Field6: _ = b.EncodeVarint(6<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field6)) case *AllTypesOneOf_Field7: _ = b.EncodeVarint(7<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Field7)) case *AllTypesOneOf_Field8: _ = b.EncodeVarint(8<<3 | proto.WireVarint) _ = b.EncodeZigzag64(uint64(x.Field8)) case *AllTypesOneOf_Field9: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field9)) case *AllTypesOneOf_Field10: _ = b.EncodeVarint(10<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field10)) case *AllTypesOneOf_Field11: _ = b.EncodeVarint(11<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field11)) case *AllTypesOneOf_Field12: _ = b.EncodeVarint(12<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field12)) case *AllTypesOneOf_Field13: t := uint64(0) if x.Field13 { t = 1 } _ = b.EncodeVarint(13<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *AllTypesOneOf_Field14: _ = b.EncodeVarint(14<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field14) case *AllTypesOneOf_Field15: _ = b.EncodeVarint(15<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field15) case *AllTypesOneOf_SubMessage: _ = b.EncodeVarint(16<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage); err != nil { return err } case nil: default: return fmt.Errorf("AllTypesOneOf.TestOneof has unexpected type %T", x) } return nil } func _AllTypesOneOf_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*AllTypesOneOf) switch tag { case 1: // test_oneof.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field1{math.Float64frombits(x)} return true, err case 2: // test_oneof.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // test_oneof.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field3{int32(x)} return true, err case 4: // test_oneof.Field4 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field4{int64(x)} return true, err case 5: // test_oneof.Field5 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field5{uint32(x)} return true, err case 6: // test_oneof.Field6 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field6{x} return true, err case 7: // test_oneof.Field7 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.TestOneof = &AllTypesOneOf_Field7{int32(x)} return true, err case 8: // test_oneof.Field8 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag64() m.TestOneof = &AllTypesOneOf_Field8{int64(x)} return true, err case 9: // test_oneof.Field9 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field9{uint32(x)} return true, err case 10: // test_oneof.Field10 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field10{int32(x)} return true, err case 11: // test_oneof.Field11 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field11{x} return true, err case 12: // test_oneof.Field12 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field12{int64(x)} return true, err case 13: // test_oneof.Field13 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field13{x != 0} return true, err case 14: // test_oneof.Field14 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.TestOneof = &AllTypesOneOf_Field14{x} return true, err case 15: // test_oneof.Field15 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.TestOneof = &AllTypesOneOf_Field15{x} return true, err case 16: // test_oneof.sub_message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.TestOneof = &AllTypesOneOf_SubMessage{msg} return true, err default: return false, nil } } func _AllTypesOneOf_OneofSizer(msg proto.Message) (n int) { m := msg.(*AllTypesOneOf) // test_oneof switch x := m.TestOneof.(type) { case *AllTypesOneOf_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case *AllTypesOneOf_Field4: n += proto.SizeVarint(4<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field4)) case *AllTypesOneOf_Field5: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field5)) case *AllTypesOneOf_Field6: n += proto.SizeVarint(6<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field6)) case *AllTypesOneOf_Field7: n += proto.SizeVarint(7<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.Field7) << 1) ^ uint32((int32(x.Field7) >> 31)))) case *AllTypesOneOf_Field8: n += proto.SizeVarint(8<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(uint64(x.Field8<<1) ^ uint64((int64(x.Field8) >> 63)))) case *AllTypesOneOf_Field9: n += proto.SizeVarint(9<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field10: n += proto.SizeVarint(10<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field11: n += proto.SizeVarint(11<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field12: n += proto.SizeVarint(12<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field13: n += proto.SizeVarint(13<<3 | proto.WireVarint) n += 1 case *AllTypesOneOf_Field14: n += proto.SizeVarint(14<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field14))) n += len(x.Field14) case *AllTypesOneOf_Field15: n += proto.SizeVarint(15<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field15))) n += len(x.Field15) case *AllTypesOneOf_SubMessage: s := proto.Size(x.SubMessage) n += proto.SizeVarint(16<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type TwoOneofs struct { // Types that are valid to be assigned to One: // *TwoOneofs_Field1 // *TwoOneofs_Field2 // *TwoOneofs_Field3 One isTwoOneofs_One `protobuf_oneof:"one"` // Types that are valid to be assigned to Two: // *TwoOneofs_Field34 // *TwoOneofs_Field35 // *TwoOneofs_SubMessage2 Two isTwoOneofs_Two `protobuf_oneof:"two"` XXX_unrecognized []byte `json:"-"` } func (m *TwoOneofs) Reset() { *m = TwoOneofs{} } func (*TwoOneofs) ProtoMessage() {} func (*TwoOneofs) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{2} } type isTwoOneofs_One interface { isTwoOneofs_One() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type isTwoOneofs_Two interface { isTwoOneofs_Two() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type TwoOneofs_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,oneof"` } type TwoOneofs_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,oneof"` } type TwoOneofs_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,oneof"` } type TwoOneofs_Field34 struct { Field34 string `protobuf:"bytes,34,opt,name=Field34,oneof"` } type TwoOneofs_Field35 struct { Field35 []byte `protobuf:"bytes,35,opt,name=Field35,oneof"` } type TwoOneofs_SubMessage2 struct { SubMessage2 *Subby `protobuf:"bytes,36,opt,name=sub_message2,json=subMessage2,oneof"` } func (*TwoOneofs_Field1) isTwoOneofs_One() {} func (*TwoOneofs_Field2) isTwoOneofs_One() {} func (*TwoOneofs_Field3) isTwoOneofs_One() {} func (*TwoOneofs_Field34) isTwoOneofs_Two() {} func (*TwoOneofs_Field35) isTwoOneofs_Two() {} func (*TwoOneofs_SubMessage2) isTwoOneofs_Two() {} func (m *TwoOneofs) GetOne() isTwoOneofs_One { if m != nil { return m.One } return nil } func (m *TwoOneofs) GetTwo() isTwoOneofs_Two { if m != nil { return m.Two } return nil } func (m *TwoOneofs) GetField1() float64 { if x, ok := m.GetOne().(*TwoOneofs_Field1); ok { return x.Field1 } return 0 } func (m *TwoOneofs) GetField2() float32 { if x, ok := m.GetOne().(*TwoOneofs_Field2); ok { return x.Field2 } return 0 } func (m *TwoOneofs) GetField3() int32 { if x, ok := m.GetOne().(*TwoOneofs_Field3); ok { return x.Field3 } return 0 } func (m *TwoOneofs) GetField34() string { if x, ok := m.GetTwo().(*TwoOneofs_Field34); ok { return x.Field34 } return "" } func (m *TwoOneofs) GetField35() []byte { if x, ok := m.GetTwo().(*TwoOneofs_Field35); ok { return x.Field35 } return nil } func (m *TwoOneofs) GetSubMessage2() *Subby { if x, ok := m.GetTwo().(*TwoOneofs_SubMessage2); ok { return x.SubMessage2 } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*TwoOneofs) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _TwoOneofs_OneofMarshaler, _TwoOneofs_OneofUnmarshaler, _TwoOneofs_OneofSizer, []interface{}{ (*TwoOneofs_Field1)(nil), (*TwoOneofs_Field2)(nil), (*TwoOneofs_Field3)(nil), (*TwoOneofs_Field34)(nil), (*TwoOneofs_Field35)(nil), (*TwoOneofs_SubMessage2)(nil), } } func _TwoOneofs_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*TwoOneofs) // one switch x := m.One.(type) { case *TwoOneofs_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *TwoOneofs_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *TwoOneofs_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case nil: default: return fmt.Errorf("TwoOneofs.One has unexpected type %T", x) } // two switch x := m.Two.(type) { case *TwoOneofs_Field34: _ = b.EncodeVarint(34<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field34) case *TwoOneofs_Field35: _ = b.EncodeVarint(35<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field35) case *TwoOneofs_SubMessage2: _ = b.EncodeVarint(36<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage2); err != nil { return err } case nil: default: return fmt.Errorf("TwoOneofs.Two has unexpected type %T", x) } return nil } func _TwoOneofs_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*TwoOneofs) switch tag { case 1: // one.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.One = &TwoOneofs_Field1{math.Float64frombits(x)} return true, err case 2: // one.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.One = &TwoOneofs_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // one.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.One = &TwoOneofs_Field3{int32(x)} return true, err case 34: // two.Field34 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Two = &TwoOneofs_Field34{x} return true, err case 35: // two.Field35 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.Two = &TwoOneofs_Field35{x} return true, err case 36: // two.sub_message2 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.Two = &TwoOneofs_SubMessage2{msg} return true, err default: return false, nil } } func _TwoOneofs_OneofSizer(msg proto.Message) (n int) { m := msg.(*TwoOneofs) // one switch x := m.One.(type) { case *TwoOneofs_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *TwoOneofs_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *TwoOneofs_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } // two switch x := m.Two.(type) { case *TwoOneofs_Field34: n += proto.SizeVarint(34<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field34))) n += len(x.Field34) case *TwoOneofs_Field35: n += proto.SizeVarint(35<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field35))) n += len(x.Field35) case *TwoOneofs_SubMessage2: s := proto.Size(x.SubMessage2) n += proto.SizeVarint(36<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type CustomOneof struct { // Types that are valid to be assigned to Custom: // *CustomOneof_Stringy // *CustomOneof_CustomType // *CustomOneof_CastType // *CustomOneof_MyCustomName Custom isCustomOneof_Custom `protobuf_oneof:"custom"` XXX_unrecognized []byte `json:"-"` } func (m *CustomOneof) Reset() { *m = CustomOneof{} } func (*CustomOneof) ProtoMessage() {} func (*CustomOneof) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{3} } type isCustomOneof_Custom interface { isCustomOneof_Custom() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type CustomOneof_Stringy struct { Stringy string `protobuf:"bytes,34,opt,name=Stringy,oneof"` } type CustomOneof_CustomType struct { CustomType github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,35,opt,name=CustomType,oneof,customtype=github.com/gogo/protobuf/test/custom.Uint128"` } type CustomOneof_CastType struct { CastType github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,36,opt,name=CastType,oneof,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type"` } type CustomOneof_MyCustomName struct { MyCustomName int64 `protobuf:"varint,37,opt,name=CustomName,oneof"` } func (*CustomOneof_Stringy) isCustomOneof_Custom() {} func (*CustomOneof_CustomType) isCustomOneof_Custom() {} func (*CustomOneof_CastType) isCustomOneof_Custom() {} func (*CustomOneof_MyCustomName) isCustomOneof_Custom() {} func (m *CustomOneof) GetCustom() isCustomOneof_Custom { if m != nil { return m.Custom } return nil } func (m *CustomOneof) GetStringy() string { if x, ok := m.GetCustom().(*CustomOneof_Stringy); ok { return x.Stringy } return "" } func (m *CustomOneof) GetCastType() github_com_gogo_protobuf_test_casttype.MyUint64Type { if x, ok := m.GetCustom().(*CustomOneof_CastType); ok { return x.CastType } return 0 } func (m *CustomOneof) GetMyCustomName() int64 { if x, ok := m.GetCustom().(*CustomOneof_MyCustomName); ok { return x.MyCustomName } return 0 } // XXX_OneofFuncs is for the internal use of the proto package. func (*CustomOneof) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _CustomOneof_OneofMarshaler, _CustomOneof_OneofUnmarshaler, _CustomOneof_OneofSizer, []interface{}{ (*CustomOneof_Stringy)(nil), (*CustomOneof_CustomType)(nil), (*CustomOneof_CastType)(nil), (*CustomOneof_MyCustomName)(nil), } } func _CustomOneof_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*CustomOneof) // custom switch x := m.Custom.(type) { case *CustomOneof_Stringy: _ = b.EncodeVarint(34<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Stringy) case *CustomOneof_CustomType: _ = b.EncodeVarint(35<<3 | proto.WireBytes) dAtA, err := x.CustomType.Marshal() if err != nil { return err } _ = b.EncodeRawBytes(dAtA) case *CustomOneof_CastType: _ = b.EncodeVarint(36<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.CastType)) case *CustomOneof_MyCustomName: _ = b.EncodeVarint(37<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.MyCustomName)) case nil: default: return fmt.Errorf("CustomOneof.Custom has unexpected type %T", x) } return nil } func _CustomOneof_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*CustomOneof) switch tag { case 34: // custom.Stringy if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Custom = &CustomOneof_Stringy{x} return true, err case 35: // custom.CustomType if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } var cc github_com_gogo_protobuf_test_custom.Uint128 c := &cc err = c.Unmarshal(x) m.Custom = &CustomOneof_CustomType{*c} return true, err case 36: // custom.CastType if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Custom = &CustomOneof_CastType{github_com_gogo_protobuf_test_casttype.MyUint64Type(x)} return true, err case 37: // custom.CustomName if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Custom = &CustomOneof_MyCustomName{int64(x)} return true, err default: return false, nil } } func _CustomOneof_OneofSizer(msg proto.Message) (n int) { m := msg.(*CustomOneof) // custom switch x := m.Custom.(type) { case *CustomOneof_Stringy: n += proto.SizeVarint(34<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Stringy))) n += len(x.Stringy) case *CustomOneof_CustomType: n += proto.SizeVarint(35<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(x.CustomType.Size())) n += x.CustomType.Size() case *CustomOneof_CastType: n += proto.SizeVarint(36<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.CastType)) case *CustomOneof_MyCustomName: n += proto.SizeVarint(37<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.MyCustomName)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*Subby)(nil), "one.Subby") proto.RegisterType((*AllTypesOneOf)(nil), "one.AllTypesOneOf") proto.RegisterType((*TwoOneofs)(nil), "one.TwoOneofs") proto.RegisterType((*CustomOneof)(nil), "one.CustomOneof") } func (this *Subby) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *AllTypesOneOf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *TwoOneofs) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *CustomOneof) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func OneDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4117 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x24, 0xd7, 0x55, 0x56, 0xcf, 0x8f, 0x34, 0x73, 0x66, 0x34, 0x6a, 0x5d, 0xc9, 0xeb, 0x5e, 0x39, 0x9e, 0xdd, 0x95, 0xff, 0x64, 0x3b, 0x96, 0x6c, 0xad, 0xb4, 0x3f, 0xb3, 0x24, 0x66, 0x24, 0xcd, 0x6a, 0xb5, 0x48, 0x1a, 0xa5, 0x25, 0xc5, 0xeb, 0xf0, 0xd0, 0xd5, 0xea, 0xb9, 0x1a, 0xf5, 0x6e, 0x4f, 0x77, 0xa7, 0xbb, 0x67, 0xd7, 0xda, 0xe2, 0x61, 0x29, 0xf3, 0x53, 0x29, 0x8a, 0xbf, 0x40, 0x15, 0x89, 0x71, 0x0c, 0xa4, 0x0a, 0x1c, 0x12, 0x7e, 0x12, 0x02, 0x21, 0xf0, 0xc4, 0x4b, 0xc0, 0x4f, 0x94, 0xf3, 0x46, 0x51, 0x94, 0xcb, 0x2b, 0x5c, 0x45, 0x00, 0x03, 0x86, 0xf8, 0xc1, 0x85, 0x5f, 0xa8, 0xfb, 0xd7, 0xdd, 0xf3, 0xa3, 0xed, 0xd9, 0x14, 0x76, 0x9e, 0xa4, 0x3e, 0xe7, 0x7c, 0x5f, 0x9f, 0x7b, 0xee, 0xb9, 0xf7, 0x9c, 0x7b, 0xa7, 0xe1, 0x1b, 0x17, 0xe0, 0x74, 0xd3, 0x71, 0x9a, 0x16, 0x9e, 0x73, 0x3d, 0x27, 0x70, 0xf6, 0xda, 0xfb, 0x73, 0x0d, 0xec, 0x1b, 0x9e, 0xe9, 0x06, 0x8e, 0x37, 0x4b, 0x65, 0x68, 0x8c, 0x59, 0xcc, 0x0a, 0x8b, 0xe9, 0x0d, 0x18, 0xbf, 0x6c, 0x5a, 0x78, 0x25, 0x34, 0xdc, 0xc6, 0x01, 0xba, 0x00, 0x99, 0x7d, 0xd3, 0xc2, 0x8a, 0x74, 0x3a, 0x3d, 0x53, 0x98, 0x7f, 0x74, 0xb6, 0x0b, 0x34, 0xdb, 0x89, 0xd8, 0x22, 0x62, 0x95, 0x22, 0xa6, 0xdf, 0xc9, 0xc0, 0x44, 0x1f, 0x2d, 0x42, 0x90, 0xb1, 0xf5, 0x16, 0x61, 0x94, 0x66, 0xf2, 0x2a, 0xfd, 0x1f, 0x29, 0x30, 0xe2, 0xea, 0xc6, 0x0d, 0xbd, 0x89, 0x95, 0x14, 0x15, 0x8b, 0x47, 0x54, 0x06, 0x68, 0x60, 0x17, 0xdb, 0x0d, 0x6c, 0x1b, 0x87, 0x4a, 0xfa, 0x74, 0x7a, 0x26, 0xaf, 0xc6, 0x24, 0xe8, 0x69, 0x18, 0x77, 0xdb, 0x7b, 0x96, 0x69, 0x68, 0x31, 0x33, 0x38, 0x9d, 0x9e, 0xc9, 0xaa, 0x32, 0x53, 0xac, 0x44, 0xc6, 0x4f, 0xc0, 0xd8, 0x2d, 0xac, 0xdf, 0x88, 0x9b, 0x16, 0xa8, 0x69, 0x89, 0x88, 0x63, 0x86, 0xcb, 0x50, 0x6c, 0x61, 0xdf, 0xd7, 0x9b, 0x58, 0x0b, 0x0e, 0x5d, 0xac, 0x64, 0xe8, 0xe8, 0x4f, 0xf7, 0x8c, 0xbe, 0x7b, 0xe4, 0x05, 0x8e, 0xda, 0x39, 0x74, 0x31, 0xaa, 0x42, 0x1e, 0xdb, 0xed, 0x16, 0x63, 0xc8, 0x1e, 0x13, 0xbf, 0x9a, 0xdd, 0x6e, 0x75, 0xb3, 0xe4, 0x08, 0x8c, 0x53, 0x8c, 0xf8, 0xd8, 0xbb, 0x69, 0x1a, 0x58, 0x19, 0xa6, 0x04, 0x4f, 0xf4, 0x10, 0x6c, 0x33, 0x7d, 0x37, 0x87, 0xc0, 0xa1, 0x65, 0xc8, 0xe3, 0x97, 0x02, 0x6c, 0xfb, 0xa6, 0x63, 0x2b, 0x23, 0x94, 0xe4, 0xb1, 0x3e, 0xb3, 0x88, 0xad, 0x46, 0x37, 0x45, 0x84, 0x43, 0xe7, 0x60, 0xc4, 0x71, 0x03, 0xd3, 0xb1, 0x7d, 0x25, 0x77, 0x5a, 0x9a, 0x29, 0xcc, 0x7f, 0xa2, 0x6f, 0x22, 0xd4, 0x99, 0x8d, 0x2a, 0x8c, 0xd1, 0x1a, 0xc8, 0xbe, 0xd3, 0xf6, 0x0c, 0xac, 0x19, 0x4e, 0x03, 0x6b, 0xa6, 0xbd, 0xef, 0x28, 0x79, 0x4a, 0x70, 0xaa, 0x77, 0x20, 0xd4, 0x70, 0xd9, 0x69, 0xe0, 0x35, 0x7b, 0xdf, 0x51, 0x4b, 0x7e, 0xc7, 0x33, 0x3a, 0x01, 0xc3, 0xfe, 0xa1, 0x1d, 0xe8, 0x2f, 0x29, 0x45, 0x9a, 0x21, 0xfc, 0x69, 0xfa, 0xaf, 0x86, 0x61, 0x6c, 0x90, 0x14, 0xbb, 0x04, 0xd9, 0x7d, 0x32, 0x4a, 0x25, 0x75, 0x3f, 0x31, 0x60, 0x98, 0xce, 0x20, 0x0e, 0xff, 0x88, 0x41, 0xac, 0x42, 0xc1, 0xc6, 0x7e, 0x80, 0x1b, 0x2c, 0x23, 0xd2, 0x03, 0xe6, 0x14, 0x30, 0x50, 0x6f, 0x4a, 0x65, 0x7e, 0xa4, 0x94, 0xba, 0x06, 0x63, 0xa1, 0x4b, 0x9a, 0xa7, 0xdb, 0x4d, 0x91, 0x9b, 0x73, 0x49, 0x9e, 0xcc, 0xd6, 0x04, 0x4e, 0x25, 0x30, 0xb5, 0x84, 0x3b, 0x9e, 0xd1, 0x0a, 0x80, 0x63, 0x63, 0x67, 0x5f, 0x6b, 0x60, 0xc3, 0x52, 0x72, 0xc7, 0x44, 0xa9, 0x4e, 0x4c, 0x7a, 0xa2, 0xe4, 0x30, 0xa9, 0x61, 0xa1, 0x8b, 0x51, 0xaa, 0x8d, 0x1c, 0x93, 0x29, 0x1b, 0x6c, 0x91, 0xf5, 0x64, 0xdb, 0x2e, 0x94, 0x3c, 0x4c, 0xf2, 0x1e, 0x37, 0xf8, 0xc8, 0xf2, 0xd4, 0x89, 0xd9, 0xc4, 0x91, 0xa9, 0x1c, 0xc6, 0x06, 0x36, 0xea, 0xc5, 0x1f, 0xd1, 0x23, 0x10, 0x0a, 0x34, 0x9a, 0x56, 0x40, 0x77, 0xa1, 0xa2, 0x10, 0x6e, 0xea, 0x2d, 0x3c, 0x75, 0x1b, 0x4a, 0x9d, 0xe1, 0x41, 0x93, 0x90, 0xf5, 0x03, 0xdd, 0x0b, 0x68, 0x16, 0x66, 0x55, 0xf6, 0x80, 0x64, 0x48, 0x63, 0xbb, 0x41, 0x77, 0xb9, 0xac, 0x4a, 0xfe, 0x45, 0x3f, 0x19, 0x0d, 0x38, 0x4d, 0x07, 0xfc, 0x78, 0xef, 0x8c, 0x76, 0x30, 0x77, 0x8f, 0x7b, 0xea, 0x3c, 0x8c, 0x76, 0x0c, 0x60, 0xd0, 0x57, 0x4f, 0xff, 0x0c, 0x3c, 0xd0, 0x97, 0x1a, 0x5d, 0x83, 0xc9, 0xb6, 0x6d, 0xda, 0x01, 0xf6, 0x5c, 0x0f, 0x93, 0x8c, 0x65, 0xaf, 0x52, 0xfe, 0x65, 0xe4, 0x98, 0x9c, 0xdb, 0x8d, 0x5b, 0x33, 0x16, 0x75, 0xa2, 0xdd, 0x2b, 0x7c, 0x2a, 0x9f, 0xfb, 0xc1, 0x88, 0x7c, 0xe7, 0xce, 0x9d, 0x3b, 0xa9, 0xe9, 0x2f, 0x0d, 0xc3, 0x64, 0xbf, 0x35, 0xd3, 0x77, 0xf9, 0x9e, 0x80, 0x61, 0xbb, 0xdd, 0xda, 0xc3, 0x1e, 0x0d, 0x52, 0x56, 0xe5, 0x4f, 0xa8, 0x0a, 0x59, 0x4b, 0xdf, 0xc3, 0x96, 0x92, 0x39, 0x2d, 0xcd, 0x94, 0xe6, 0x9f, 0x1e, 0x68, 0x55, 0xce, 0xae, 0x13, 0x88, 0xca, 0x90, 0xe8, 0xd3, 0x90, 0xe1, 0x5b, 0x34, 0x61, 0x78, 0x6a, 0x30, 0x06, 0xb2, 0x96, 0x54, 0x8a, 0x43, 0x0f, 0x41, 0x9e, 0xfc, 0x65, 0xb9, 0x31, 0x4c, 0x7d, 0xce, 0x11, 0x01, 0xc9, 0x0b, 0x34, 0x05, 0x39, 0xba, 0x4c, 0x1a, 0x58, 0x94, 0xb6, 0xf0, 0x99, 0x24, 0x56, 0x03, 0xef, 0xeb, 0x6d, 0x2b, 0xd0, 0x6e, 0xea, 0x56, 0x1b, 0xd3, 0x84, 0xcf, 0xab, 0x45, 0x2e, 0xfc, 0x2c, 0x91, 0xa1, 0x53, 0x50, 0x60, 0xab, 0xca, 0xb4, 0x1b, 0xf8, 0x25, 0xba, 0x7b, 0x66, 0x55, 0xb6, 0xd0, 0xd6, 0x88, 0x84, 0xbc, 0xfe, 0xba, 0xef, 0xd8, 0x22, 0x35, 0xe9, 0x2b, 0x88, 0x80, 0xbe, 0xfe, 0x7c, 0xf7, 0xc6, 0xfd, 0x70, 0xff, 0xe1, 0x75, 0xe7, 0xd4, 0xf4, 0x77, 0x52, 0x90, 0xa1, 0xfb, 0xc5, 0x18, 0x14, 0x76, 0x5e, 0xdc, 0xaa, 0x69, 0x2b, 0xf5, 0xdd, 0xa5, 0xf5, 0x9a, 0x2c, 0xa1, 0x12, 0x00, 0x15, 0x5c, 0x5e, 0xaf, 0x57, 0x77, 0xe4, 0x54, 0xf8, 0xbc, 0xb6, 0xb9, 0x73, 0x6e, 0x41, 0x4e, 0x87, 0x80, 0x5d, 0x26, 0xc8, 0xc4, 0x0d, 0xce, 0xce, 0xcb, 0x59, 0x24, 0x43, 0x91, 0x11, 0xac, 0x5d, 0xab, 0xad, 0x9c, 0x5b, 0x90, 0x87, 0x3b, 0x25, 0x67, 0xe7, 0xe5, 0x11, 0x34, 0x0a, 0x79, 0x2a, 0x59, 0xaa, 0xd7, 0xd7, 0xe5, 0x5c, 0xc8, 0xb9, 0xbd, 0xa3, 0xae, 0x6d, 0xae, 0xca, 0xf9, 0x90, 0x73, 0x55, 0xad, 0xef, 0x6e, 0xc9, 0x10, 0x32, 0x6c, 0xd4, 0xb6, 0xb7, 0xab, 0xab, 0x35, 0xb9, 0x10, 0x5a, 0x2c, 0xbd, 0xb8, 0x53, 0xdb, 0x96, 0x8b, 0x1d, 0x6e, 0x9d, 0x9d, 0x97, 0x47, 0xc3, 0x57, 0xd4, 0x36, 0x77, 0x37, 0xe4, 0x12, 0x1a, 0x87, 0x51, 0xf6, 0x0a, 0xe1, 0xc4, 0x58, 0x97, 0xe8, 0xdc, 0x82, 0x2c, 0x47, 0x8e, 0x30, 0x96, 0xf1, 0x0e, 0xc1, 0xb9, 0x05, 0x19, 0x4d, 0x2f, 0x43, 0x96, 0x66, 0x17, 0x42, 0x50, 0x5a, 0xaf, 0x2e, 0xd5, 0xd6, 0xb5, 0xfa, 0xd6, 0xce, 0x5a, 0x7d, 0xb3, 0xba, 0x2e, 0x4b, 0x91, 0x4c, 0xad, 0x7d, 0x66, 0x77, 0x4d, 0xad, 0xad, 0xc8, 0xa9, 0xb8, 0x6c, 0xab, 0x56, 0xdd, 0xa9, 0xad, 0xc8, 0xe9, 0x69, 0x03, 0x26, 0xfb, 0xed, 0x93, 0x7d, 0x57, 0x46, 0x6c, 0x8a, 0x53, 0xc7, 0x4c, 0x31, 0xe5, 0xea, 0x99, 0xe2, 0xaf, 0x4a, 0x30, 0xd1, 0xa7, 0x56, 0xf4, 0x7d, 0xc9, 0xf3, 0x90, 0x65, 0x29, 0xca, 0xaa, 0xe7, 0x93, 0x7d, 0x8b, 0x0e, 0x4d, 0xd8, 0x9e, 0x0a, 0x4a, 0x71, 0xf1, 0x0e, 0x22, 0x7d, 0x4c, 0x07, 0x41, 0x28, 0x7a, 0x9c, 0x7c, 0x59, 0x02, 0xe5, 0x38, 0xee, 0x84, 0x8d, 0x22, 0xd5, 0xb1, 0x51, 0x5c, 0xea, 0x76, 0xe0, 0xcc, 0xf1, 0x63, 0xe8, 0xf1, 0xe2, 0x75, 0x09, 0x4e, 0xf4, 0x6f, 0xb4, 0xfa, 0xfa, 0xf0, 0x69, 0x18, 0x6e, 0xe1, 0xe0, 0xc0, 0x11, 0xcd, 0xc6, 0xe3, 0x7d, 0x4a, 0x18, 0x51, 0x77, 0xc7, 0x8a, 0xa3, 0xe2, 0x35, 0x30, 0x7d, 0x5c, 0xb7, 0xc4, 0xbc, 0xe9, 0xf1, 0xf4, 0x0b, 0x29, 0x78, 0xa0, 0x2f, 0x79, 0x5f, 0x47, 0x1f, 0x06, 0x30, 0x6d, 0xb7, 0x1d, 0xb0, 0x86, 0x82, 0xed, 0x4f, 0x79, 0x2a, 0xa1, 0x6b, 0x9f, 0xec, 0x3d, 0xed, 0x20, 0xd4, 0xa7, 0xa9, 0x1e, 0x98, 0x88, 0x1a, 0x5c, 0x88, 0x1c, 0xcd, 0x50, 0x47, 0xcb, 0xc7, 0x8c, 0xb4, 0xa7, 0x56, 0x3f, 0x0b, 0xb2, 0x61, 0x99, 0xd8, 0x0e, 0x34, 0x3f, 0xf0, 0xb0, 0xde, 0x32, 0xed, 0x26, 0xdd, 0x80, 0x73, 0x95, 0xec, 0xbe, 0x6e, 0xf9, 0x58, 0x1d, 0x63, 0xea, 0x6d, 0xa1, 0x25, 0x08, 0x5a, 0xe3, 0xbc, 0x18, 0x62, 0xb8, 0x03, 0xc1, 0xd4, 0x21, 0x62, 0xfa, 0xdb, 0x39, 0x28, 0xc4, 0xda, 0x52, 0x74, 0x06, 0x8a, 0xd7, 0xf5, 0x9b, 0xba, 0x26, 0x8e, 0x1a, 0x2c, 0x12, 0x05, 0x22, 0xdb, 0xe2, 0xc7, 0x8d, 0x67, 0x61, 0x92, 0x9a, 0x38, 0xed, 0x00, 0x7b, 0x9a, 0x61, 0xe9, 0xbe, 0x4f, 0x83, 0x96, 0xa3, 0xa6, 0x88, 0xe8, 0xea, 0x44, 0xb5, 0x2c, 0x34, 0x68, 0x11, 0x26, 0x28, 0xa2, 0xd5, 0xb6, 0x02, 0xd3, 0xb5, 0xb0, 0x46, 0x0e, 0x3f, 0x3e, 0xdd, 0x88, 0x43, 0xcf, 0xc6, 0x89, 0xc5, 0x06, 0x37, 0x20, 0x1e, 0xf9, 0x68, 0x05, 0x1e, 0xa6, 0xb0, 0x26, 0xb6, 0xb1, 0xa7, 0x07, 0x58, 0xc3, 0x9f, 0x6f, 0xeb, 0x96, 0xaf, 0xe9, 0x76, 0x43, 0x3b, 0xd0, 0xfd, 0x03, 0x65, 0x92, 0x10, 0x2c, 0xa5, 0x14, 0x49, 0x3d, 0x49, 0x0c, 0x57, 0xb9, 0x5d, 0x8d, 0x9a, 0x55, 0xed, 0xc6, 0x15, 0xdd, 0x3f, 0x40, 0x15, 0x38, 0x41, 0x59, 0xfc, 0xc0, 0x33, 0xed, 0xa6, 0x66, 0x1c, 0x60, 0xe3, 0x86, 0xd6, 0x0e, 0xf6, 0x2f, 0x28, 0x0f, 0xc5, 0xdf, 0x4f, 0x3d, 0xdc, 0xa6, 0x36, 0xcb, 0xc4, 0x64, 0x37, 0xd8, 0xbf, 0x80, 0xb6, 0xa1, 0x48, 0x26, 0xa3, 0x65, 0xde, 0xc6, 0xda, 0xbe, 0xe3, 0xd1, 0xca, 0x52, 0xea, 0xb3, 0xb2, 0x63, 0x11, 0x9c, 0xad, 0x73, 0xc0, 0x86, 0xd3, 0xc0, 0x95, 0xec, 0xf6, 0x56, 0xad, 0xb6, 0xa2, 0x16, 0x04, 0xcb, 0x65, 0xc7, 0x23, 0x09, 0xd5, 0x74, 0xc2, 0x00, 0x17, 0x58, 0x42, 0x35, 0x1d, 0x11, 0xde, 0x45, 0x98, 0x30, 0x0c, 0x36, 0x66, 0xd3, 0xd0, 0xf8, 0x11, 0xc5, 0x57, 0xe4, 0x8e, 0x60, 0x19, 0xc6, 0x2a, 0x33, 0xe0, 0x39, 0xee, 0xa3, 0x8b, 0xf0, 0x40, 0x14, 0xac, 0x38, 0x70, 0xbc, 0x67, 0x94, 0xdd, 0xd0, 0x45, 0x98, 0x70, 0x0f, 0x7b, 0x81, 0xa8, 0xe3, 0x8d, 0xee, 0x61, 0x37, 0xec, 0x3c, 0x4c, 0xba, 0x07, 0x6e, 0x2f, 0x6e, 0x22, 0x8e, 0x43, 0xee, 0x81, 0xdb, 0x0d, 0x7c, 0x8c, 0x9e, 0x57, 0x3d, 0x6c, 0xe8, 0x01, 0x6e, 0x28, 0x0f, 0xc6, 0xcd, 0x63, 0x0a, 0x34, 0x07, 0xb2, 0x61, 0x68, 0xd8, 0xd6, 0xf7, 0x2c, 0xac, 0xe9, 0x1e, 0xb6, 0x75, 0x5f, 0x39, 0x15, 0x37, 0x2e, 0x19, 0x46, 0x8d, 0x6a, 0xab, 0x54, 0x89, 0x9e, 0x82, 0x71, 0x67, 0xef, 0xba, 0xc1, 0x52, 0x52, 0x73, 0x3d, 0xbc, 0x6f, 0xbe, 0xa4, 0x3c, 0x4a, 0xe3, 0x3b, 0x46, 0x14, 0x34, 0x21, 0xb7, 0xa8, 0x18, 0x3d, 0x09, 0xb2, 0xe1, 0x1f, 0xe8, 0x9e, 0x4b, 0x7b, 0x02, 0xdf, 0xd5, 0x0d, 0xac, 0x3c, 0xc6, 0x4c, 0x99, 0x7c, 0x53, 0x88, 0xc9, 0x92, 0xf0, 0x6f, 0x99, 0xfb, 0x81, 0x60, 0x7c, 0x82, 0x2d, 0x09, 0x2a, 0xe3, 0x6c, 0x33, 0x20, 0x93, 0x50, 0x74, 0xbc, 0x78, 0x86, 0x9a, 0x95, 0xdc, 0x03, 0x37, 0xfe, 0xde, 0x47, 0x60, 0x94, 0x58, 0x46, 0x2f, 0x7d, 0x92, 0xf5, 0x33, 0xee, 0x41, 0xec, 0x8d, 0x1f, 0x59, 0x6b, 0x39, 0x5d, 0x81, 0x62, 0x3c, 0x3f, 0x51, 0x1e, 0x58, 0x86, 0xca, 0x12, 0xa9, 0xf5, 0xcb, 0xf5, 0x15, 0x52, 0xa5, 0x3f, 0x57, 0x93, 0x53, 0xa4, 0x5b, 0x58, 0x5f, 0xdb, 0xa9, 0x69, 0xea, 0xee, 0xe6, 0xce, 0xda, 0x46, 0x4d, 0x4e, 0xc7, 0xdb, 0xd2, 0xef, 0xa5, 0xa0, 0xd4, 0x79, 0xc2, 0x40, 0x3f, 0x01, 0x0f, 0x8a, 0xeb, 0x00, 0x1f, 0x07, 0xda, 0x2d, 0xd3, 0xa3, 0x4b, 0xa6, 0xa5, 0xb3, 0x0e, 0x3b, 0x9c, 0xb4, 0x49, 0x6e, 0xb5, 0x8d, 0x83, 0x17, 0x4c, 0x8f, 0x2c, 0x88, 0x96, 0x1e, 0xa0, 0x75, 0x38, 0x65, 0x3b, 0x9a, 0x1f, 0xe8, 0x76, 0x43, 0xf7, 0x1a, 0x5a, 0x74, 0x11, 0xa3, 0xe9, 0x86, 0x81, 0x7d, 0xdf, 0x61, 0xa5, 0x2a, 0x64, 0xf9, 0x84, 0xed, 0x6c, 0x73, 0xe3, 0x68, 0x0f, 0xaf, 0x72, 0xd3, 0xae, 0x04, 0x4b, 0x1f, 0x97, 0x60, 0x0f, 0x41, 0xbe, 0xa5, 0xbb, 0x1a, 0xb6, 0x03, 0xef, 0x90, 0xf6, 0x95, 0x39, 0x35, 0xd7, 0xd2, 0xdd, 0x1a, 0x79, 0xfe, 0x78, 0xda, 0xfb, 0x7f, 0x4a, 0x43, 0x31, 0xde, 0x5b, 0x92, 0x56, 0xdd, 0xa0, 0x75, 0x44, 0xa2, 0x3b, 0xcd, 0x23, 0xf7, 0xec, 0x44, 0x67, 0x97, 0x49, 0x81, 0xa9, 0x0c, 0xb3, 0x8e, 0x4f, 0x65, 0x48, 0x52, 0xdc, 0xc9, 0xde, 0x82, 0xd9, 0x29, 0x26, 0xa7, 0xf2, 0x27, 0xb4, 0x0a, 0xc3, 0xd7, 0x7d, 0xca, 0x3d, 0x4c, 0xb9, 0x1f, 0xbd, 0x37, 0xf7, 0xd5, 0x6d, 0x4a, 0x9e, 0xbf, 0xba, 0xad, 0x6d, 0xd6, 0xd5, 0x8d, 0xea, 0xba, 0xca, 0xe1, 0xe8, 0x24, 0x64, 0x2c, 0xfd, 0xf6, 0x61, 0x67, 0x29, 0xa2, 0xa2, 0x41, 0x03, 0x7f, 0x12, 0x32, 0xb7, 0xb0, 0x7e, 0xa3, 0xb3, 0x00, 0x50, 0xd1, 0x47, 0x98, 0xfa, 0x73, 0x90, 0xa5, 0xf1, 0x42, 0x00, 0x3c, 0x62, 0xf2, 0x10, 0xca, 0x41, 0x66, 0xb9, 0xae, 0x92, 0xf4, 0x97, 0xa1, 0xc8, 0xa4, 0xda, 0xd6, 0x5a, 0x6d, 0xb9, 0x26, 0xa7, 0xa6, 0x17, 0x61, 0x98, 0x05, 0x81, 0x2c, 0x8d, 0x30, 0x0c, 0xf2, 0x10, 0x7f, 0xe4, 0x1c, 0x92, 0xd0, 0xee, 0x6e, 0x2c, 0xd5, 0x54, 0x39, 0x15, 0x9f, 0x5e, 0x1f, 0x8a, 0xf1, 0xb6, 0xf2, 0xe3, 0xc9, 0xa9, 0xbf, 0x96, 0xa0, 0x10, 0x6b, 0x13, 0x49, 0x83, 0xa2, 0x5b, 0x96, 0x73, 0x4b, 0xd3, 0x2d, 0x53, 0xf7, 0x79, 0x52, 0x00, 0x15, 0x55, 0x89, 0x64, 0xd0, 0x49, 0xfb, 0x58, 0x9c, 0x7f, 0x4d, 0x02, 0xb9, 0xbb, 0xc5, 0xec, 0x72, 0x50, 0xfa, 0xb1, 0x3a, 0xf8, 0xaa, 0x04, 0xa5, 0xce, 0xbe, 0xb2, 0xcb, 0xbd, 0x33, 0x3f, 0x56, 0xf7, 0xde, 0x4e, 0xc1, 0x68, 0x47, 0x37, 0x39, 0xa8, 0x77, 0x9f, 0x87, 0x71, 0xb3, 0x81, 0x5b, 0xae, 0x13, 0x60, 0xdb, 0x38, 0xd4, 0x2c, 0x7c, 0x13, 0x5b, 0xca, 0x34, 0xdd, 0x28, 0xe6, 0xee, 0xdd, 0xaf, 0xce, 0xae, 0x45, 0xb8, 0x75, 0x02, 0xab, 0x4c, 0xac, 0xad, 0xd4, 0x36, 0xb6, 0xea, 0x3b, 0xb5, 0xcd, 0xe5, 0x17, 0xb5, 0xdd, 0xcd, 0x9f, 0xda, 0xac, 0xbf, 0xb0, 0xa9, 0xca, 0x66, 0x97, 0xd9, 0x47, 0xb8, 0xd4, 0xb7, 0x40, 0xee, 0x76, 0x0a, 0x3d, 0x08, 0xfd, 0xdc, 0x92, 0x87, 0xd0, 0x04, 0x8c, 0x6d, 0xd6, 0xb5, 0xed, 0xb5, 0x95, 0x9a, 0x56, 0xbb, 0x7c, 0xb9, 0xb6, 0xbc, 0xb3, 0xcd, 0x0e, 0xf0, 0xa1, 0xf5, 0x4e, 0xe7, 0xa2, 0x7e, 0x25, 0x0d, 0x13, 0x7d, 0x3c, 0x41, 0x55, 0x7e, 0x76, 0x60, 0xc7, 0x99, 0x67, 0x06, 0xf1, 0x7e, 0x96, 0x94, 0xfc, 0x2d, 0xdd, 0x0b, 0xf8, 0x51, 0xe3, 0x49, 0x20, 0x51, 0xb2, 0x03, 0x73, 0xdf, 0xc4, 0x1e, 0xbf, 0xef, 0x60, 0x07, 0x8a, 0xb1, 0x48, 0xce, 0xae, 0x3c, 0x3e, 0x09, 0xc8, 0x75, 0x7c, 0x33, 0x30, 0x6f, 0x62, 0xcd, 0xb4, 0xc5, 0xe5, 0x08, 0x39, 0x60, 0x64, 0x54, 0x59, 0x68, 0xd6, 0xec, 0x20, 0xb4, 0xb6, 0x71, 0x53, 0xef, 0xb2, 0x26, 0x1b, 0x78, 0x5a, 0x95, 0x85, 0x26, 0xb4, 0x3e, 0x03, 0xc5, 0x86, 0xd3, 0x26, 0x5d, 0x17, 0xb3, 0x23, 0xf5, 0x42, 0x52, 0x0b, 0x4c, 0x16, 0x9a, 0xf0, 0x7e, 0x3a, 0xba, 0x95, 0x29, 0xaa, 0x05, 0x26, 0x63, 0x26, 0x4f, 0xc0, 0x98, 0xde, 0x6c, 0x7a, 0x84, 0x5c, 0x10, 0xb1, 0x13, 0x42, 0x29, 0x14, 0x53, 0xc3, 0xa9, 0xab, 0x90, 0x13, 0x71, 0x20, 0x25, 0x99, 0x44, 0x42, 0x73, 0xd9, 0xcd, 0x5c, 0x6a, 0x26, 0xaf, 0xe6, 0x6c, 0xa1, 0x3c, 0x03, 0x45, 0xd3, 0xd7, 0xa2, 0x4b, 0xe6, 0xd4, 0xe9, 0xd4, 0x4c, 0x4e, 0x2d, 0x98, 0x7e, 0x78, 0x41, 0x37, 0xfd, 0x7a, 0x0a, 0x4a, 0x9d, 0x97, 0xe4, 0x68, 0x05, 0x72, 0x96, 0x63, 0xe8, 0x34, 0xb5, 0xd8, 0x2f, 0x34, 0x33, 0x09, 0xf7, 0xea, 0xb3, 0xeb, 0xdc, 0x5e, 0x0d, 0x91, 0x53, 0x7f, 0x2f, 0x41, 0x4e, 0x88, 0xd1, 0x09, 0xc8, 0xb8, 0x7a, 0x70, 0x40, 0xe9, 0xb2, 0x4b, 0x29, 0x59, 0x52, 0xe9, 0x33, 0x91, 0xfb, 0xae, 0x6e, 0xd3, 0x14, 0xe0, 0x72, 0xf2, 0x4c, 0xe6, 0xd5, 0xc2, 0x7a, 0x83, 0x1e, 0x3f, 0x9c, 0x56, 0x0b, 0xdb, 0x81, 0x2f, 0xe6, 0x95, 0xcb, 0x97, 0xb9, 0x18, 0x3d, 0x0d, 0xe3, 0x81, 0xa7, 0x9b, 0x56, 0x87, 0x6d, 0x86, 0xda, 0xca, 0x42, 0x11, 0x1a, 0x57, 0xe0, 0xa4, 0xe0, 0x6d, 0xe0, 0x40, 0x37, 0x0e, 0x70, 0x23, 0x02, 0x0d, 0xd3, 0x1b, 0xd8, 0x07, 0xb9, 0xc1, 0x0a, 0xd7, 0x0b, 0xec, 0xf4, 0xf7, 0x25, 0x18, 0x17, 0x07, 0xa6, 0x46, 0x18, 0xac, 0x0d, 0x00, 0xdd, 0xb6, 0x9d, 0x20, 0x1e, 0xae, 0xde, 0x54, 0xee, 0xc1, 0xcd, 0x56, 0x43, 0x90, 0x1a, 0x23, 0x98, 0x6a, 0x01, 0x44, 0x9a, 0x63, 0xc3, 0x76, 0x0a, 0x0a, 0xfc, 0x17, 0x10, 0xfa, 0x33, 0x1a, 0x3b, 0x62, 0x03, 0x13, 0x91, 0x93, 0x15, 0x9a, 0x84, 0xec, 0x1e, 0x6e, 0x9a, 0x36, 0xbf, 0xd7, 0x64, 0x0f, 0xe2, 0xae, 0x36, 0x13, 0xde, 0xd5, 0x2e, 0x5d, 0x83, 0x09, 0xc3, 0x69, 0x75, 0xbb, 0xbb, 0x24, 0x77, 0x1d, 0xf3, 0xfd, 0x2b, 0xd2, 0xe7, 0x20, 0x6a, 0x31, 0xbf, 0x9a, 0x4a, 0xaf, 0x6e, 0x2d, 0x7d, 0x3d, 0x35, 0xb5, 0xca, 0x70, 0x5b, 0x62, 0x98, 0x2a, 0xde, 0xb7, 0xb0, 0x41, 0x5c, 0x87, 0x1f, 0x3e, 0x0e, 0xcf, 0x34, 0xcd, 0xe0, 0xa0, 0xbd, 0x37, 0x6b, 0x38, 0xad, 0xb9, 0xa6, 0xd3, 0x74, 0xa2, 0x9f, 0x0d, 0xc9, 0x13, 0x7d, 0xa0, 0xff, 0xf1, 0x9f, 0x0e, 0xf3, 0xa1, 0x74, 0x2a, 0xf1, 0x77, 0xc6, 0xca, 0x26, 0x4c, 0x70, 0x63, 0x8d, 0xfe, 0x76, 0xc1, 0x8e, 0x10, 0xe8, 0x9e, 0xf7, 0x3f, 0xca, 0xb7, 0xde, 0xa1, 0xb5, 0x5a, 0x1d, 0xe7, 0x50, 0xa2, 0x63, 0xa7, 0x8c, 0x8a, 0x0a, 0x0f, 0x74, 0xf0, 0xb1, 0x75, 0x89, 0xbd, 0x04, 0xc6, 0xef, 0x71, 0xc6, 0x89, 0x18, 0xe3, 0x36, 0x87, 0x56, 0x96, 0x61, 0xf4, 0x7e, 0xb8, 0xfe, 0x96, 0x73, 0x15, 0x71, 0x9c, 0x64, 0x15, 0xc6, 0x28, 0x89, 0xd1, 0xf6, 0x03, 0xa7, 0x45, 0x37, 0xbd, 0x7b, 0xd3, 0xfc, 0xdd, 0x3b, 0x6c, 0xa1, 0x94, 0x08, 0x6c, 0x39, 0x44, 0x55, 0x2a, 0x40, 0x7f, 0xae, 0x69, 0x60, 0xc3, 0x4a, 0x60, 0x78, 0x83, 0x3b, 0x12, 0xda, 0x57, 0x3e, 0x0b, 0x93, 0xe4, 0x7f, 0xba, 0x27, 0xc5, 0x3d, 0x49, 0xbe, 0xed, 0x52, 0xbe, 0xff, 0x32, 0x5b, 0x8b, 0x13, 0x21, 0x41, 0xcc, 0xa7, 0xd8, 0x2c, 0x36, 0x71, 0x10, 0x60, 0xcf, 0xd7, 0x74, 0xab, 0x9f, 0x7b, 0xb1, 0xeb, 0x02, 0xe5, 0xcb, 0xef, 0x76, 0xce, 0xe2, 0x2a, 0x43, 0x56, 0x2d, 0xab, 0xb2, 0x0b, 0x0f, 0xf6, 0xc9, 0x8a, 0x01, 0x38, 0x5f, 0xe1, 0x9c, 0x93, 0x3d, 0x99, 0x41, 0x68, 0xb7, 0x40, 0xc8, 0xc3, 0xb9, 0x1c, 0x80, 0xf3, 0xb7, 0x39, 0x27, 0xe2, 0x58, 0x31, 0xa5, 0x84, 0xf1, 0x2a, 0x8c, 0xdf, 0xc4, 0xde, 0x9e, 0xe3, 0xf3, 0x2b, 0x9a, 0x01, 0xe8, 0x5e, 0xe5, 0x74, 0x63, 0x1c, 0x48, 0xef, 0x6c, 0x08, 0xd7, 0x45, 0xc8, 0xed, 0xeb, 0x06, 0x1e, 0x80, 0xe2, 0x2b, 0x9c, 0x62, 0x84, 0xd8, 0x13, 0x68, 0x15, 0x8a, 0x4d, 0x87, 0x97, 0xa5, 0x64, 0xf8, 0x6b, 0x1c, 0x5e, 0x10, 0x18, 0x4e, 0xe1, 0x3a, 0x6e, 0xdb, 0x22, 0x35, 0x2b, 0x99, 0xe2, 0x77, 0x04, 0x85, 0xc0, 0x70, 0x8a, 0xfb, 0x08, 0xeb, 0xef, 0x0a, 0x0a, 0x3f, 0x16, 0xcf, 0xe7, 0xa1, 0xe0, 0xd8, 0xd6, 0xa1, 0x63, 0x0f, 0xe2, 0xc4, 0xef, 0x71, 0x06, 0xe0, 0x10, 0x42, 0x70, 0x09, 0xf2, 0x83, 0x4e, 0xc4, 0xef, 0xbf, 0x2b, 0x96, 0x87, 0x98, 0x81, 0x55, 0x18, 0x13, 0x1b, 0x94, 0xe9, 0xd8, 0x03, 0x50, 0xfc, 0x01, 0xa7, 0x28, 0xc5, 0x60, 0x7c, 0x18, 0x01, 0xf6, 0x83, 0x26, 0x1e, 0x84, 0xe4, 0x75, 0x31, 0x0c, 0x0e, 0xe1, 0xa1, 0xdc, 0xc3, 0xb6, 0x71, 0x30, 0x18, 0xc3, 0xd7, 0x44, 0x28, 0x05, 0x86, 0x50, 0x2c, 0xc3, 0x68, 0x4b, 0xf7, 0xfc, 0x03, 0xdd, 0x1a, 0x68, 0x3a, 0xfe, 0x90, 0x73, 0x14, 0x43, 0x10, 0x8f, 0x48, 0xdb, 0xbe, 0x1f, 0x9a, 0xaf, 0x8b, 0x88, 0xc4, 0x60, 0x7c, 0xe9, 0xf9, 0x01, 0xbd, 0xcf, 0xba, 0x1f, 0xb6, 0x6f, 0x88, 0xa5, 0xc7, 0xb0, 0x1b, 0x71, 0xc6, 0x4b, 0x90, 0xf7, 0xcd, 0xdb, 0x03, 0xd1, 0xfc, 0x91, 0x98, 0x69, 0x0a, 0x20, 0xe0, 0x17, 0xe1, 0x64, 0xdf, 0x32, 0x31, 0x00, 0xd9, 0x1f, 0x73, 0xb2, 0x13, 0x7d, 0x4a, 0x05, 0xdf, 0x12, 0xee, 0x97, 0xf2, 0x4f, 0xc4, 0x96, 0x80, 0xbb, 0xb8, 0xb6, 0xc8, 0x41, 0xc1, 0xd7, 0xf7, 0xef, 0x2f, 0x6a, 0x7f, 0x2a, 0xa2, 0xc6, 0xb0, 0x1d, 0x51, 0xdb, 0x81, 0x13, 0x9c, 0xf1, 0xfe, 0xe6, 0xf5, 0x9b, 0x62, 0x63, 0x65, 0xe8, 0xdd, 0xce, 0xd9, 0xfd, 0x69, 0x98, 0x0a, 0xc3, 0x29, 0x3a, 0x52, 0x5f, 0x6b, 0xe9, 0xee, 0x00, 0xcc, 0xdf, 0xe2, 0xcc, 0x62, 0xc7, 0x0f, 0x5b, 0x5a, 0x7f, 0x43, 0x77, 0x09, 0xf9, 0x35, 0x50, 0x04, 0x79, 0xdb, 0xf6, 0xb0, 0xe1, 0x34, 0x6d, 0xf3, 0x36, 0x6e, 0x0c, 0x40, 0xfd, 0x67, 0x5d, 0x53, 0xb5, 0x1b, 0x83, 0x13, 0xe6, 0x35, 0x90, 0xc3, 0x5e, 0x45, 0x33, 0x5b, 0xae, 0xe3, 0x05, 0x09, 0x8c, 0xdf, 0x16, 0x33, 0x15, 0xe2, 0xd6, 0x28, 0xac, 0x52, 0x83, 0x12, 0x7d, 0x1c, 0x34, 0x25, 0xff, 0x9c, 0x13, 0x8d, 0x46, 0x28, 0xbe, 0x71, 0x18, 0x4e, 0xcb, 0xd5, 0xbd, 0x41, 0xf6, 0xbf, 0xbf, 0x10, 0x1b, 0x07, 0x87, 0xf0, 0x8d, 0x23, 0x38, 0x74, 0x31, 0xa9, 0xf6, 0x03, 0x30, 0x7c, 0x47, 0x6c, 0x1c, 0x02, 0xc3, 0x29, 0x44, 0xc3, 0x30, 0x00, 0xc5, 0x5f, 0x0a, 0x0a, 0x81, 0x21, 0x14, 0x9f, 0x89, 0x0a, 0xad, 0x87, 0x9b, 0xa6, 0x1f, 0x78, 0xac, 0x0f, 0xbe, 0x37, 0xd5, 0x77, 0xdf, 0xed, 0x6c, 0xc2, 0xd4, 0x18, 0xb4, 0x72, 0x15, 0xc6, 0xba, 0x5a, 0x0c, 0x94, 0xf4, 0xed, 0x87, 0xf2, 0xb3, 0xef, 0xf3, 0xcd, 0xa8, 0xb3, 0xc3, 0xa8, 0xac, 0x93, 0x79, 0xef, 0xec, 0x03, 0x92, 0xc9, 0x5e, 0x7e, 0x3f, 0x9c, 0xfa, 0x8e, 0x36, 0xa0, 0x72, 0x19, 0x46, 0x3b, 0x7a, 0x80, 0x64, 0xaa, 0x9f, 0xe3, 0x54, 0xc5, 0x78, 0x0b, 0x50, 0x59, 0x84, 0x0c, 0xa9, 0xe7, 0xc9, 0xf0, 0x9f, 0xe7, 0x70, 0x6a, 0x5e, 0xf9, 0x14, 0xe4, 0x44, 0x1d, 0x4f, 0x86, 0xfe, 0x02, 0x87, 0x86, 0x10, 0x02, 0x17, 0x35, 0x3c, 0x19, 0xfe, 0x8b, 0x02, 0x2e, 0x20, 0x04, 0x3e, 0x78, 0x08, 0xff, 0xe6, 0x97, 0x32, 0x7c, 0x1f, 0x16, 0xb1, 0xbb, 0x04, 0x23, 0xbc, 0x78, 0x27, 0xa3, 0xbf, 0xc0, 0x5f, 0x2e, 0x10, 0x95, 0xf3, 0x90, 0x1d, 0x30, 0xe0, 0xbf, 0xcc, 0xa1, 0xcc, 0xbe, 0xb2, 0x0c, 0x85, 0x58, 0xc1, 0x4e, 0x86, 0xff, 0x0a, 0x87, 0xc7, 0x51, 0xc4, 0x75, 0x5e, 0xb0, 0x93, 0x09, 0x7e, 0x55, 0xb8, 0xce, 0x11, 0x24, 0x6c, 0xa2, 0x56, 0x27, 0xa3, 0x7f, 0x4d, 0x44, 0x5d, 0x40, 0x2a, 0xcf, 0x43, 0x3e, 0xdc, 0x7f, 0x93, 0xf1, 0xbf, 0xce, 0xf1, 0x11, 0x86, 0x44, 0x20, 0xb6, 0xff, 0x27, 0x53, 0x7c, 0x51, 0x44, 0x20, 0x86, 0x22, 0xcb, 0xa8, 0xbb, 0xa6, 0x27, 0x33, 0xfd, 0x86, 0x58, 0x46, 0x5d, 0x25, 0x9d, 0xcc, 0x26, 0xdd, 0x06, 0x93, 0x29, 0x7e, 0x53, 0xcc, 0x26, 0xb5, 0x27, 0x6e, 0x74, 0x17, 0xc9, 0x64, 0x8e, 0xdf, 0x12, 0x6e, 0x74, 0xd5, 0xc8, 0xca, 0x16, 0xa0, 0xde, 0x02, 0x99, 0xcc, 0xf7, 0x25, 0xce, 0x37, 0xde, 0x53, 0x1f, 0x2b, 0x2f, 0xc0, 0x89, 0xfe, 0xc5, 0x31, 0x99, 0xf5, 0xcb, 0xef, 0x77, 0x1d, 0x67, 0xe2, 0xb5, 0xb1, 0xb2, 0x13, 0xed, 0xb2, 0xf1, 0xc2, 0x98, 0x4c, 0xfb, 0xca, 0xfb, 0x9d, 0x1b, 0x6d, 0xbc, 0x2e, 0x56, 0xaa, 0x00, 0x51, 0x4d, 0x4a, 0xe6, 0x7a, 0x95, 0x73, 0xc5, 0x40, 0x64, 0x69, 0xf0, 0x92, 0x94, 0x8c, 0xff, 0x8a, 0x58, 0x1a, 0x1c, 0x41, 0x96, 0x86, 0xa8, 0x46, 0xc9, 0xe8, 0xd7, 0xc4, 0xd2, 0x10, 0x90, 0xca, 0x25, 0xc8, 0xd9, 0x6d, 0xcb, 0x22, 0xb9, 0x85, 0xee, 0xfd, 0x39, 0x93, 0xf2, 0xaf, 0x1f, 0x72, 0xb0, 0x00, 0x54, 0x16, 0x21, 0x8b, 0x5b, 0x7b, 0xb8, 0x91, 0x84, 0xfc, 0xb7, 0x0f, 0xc5, 0x7e, 0x42, 0xac, 0x2b, 0xcf, 0x03, 0xb0, 0xc3, 0x34, 0xfd, 0x95, 0x28, 0x01, 0xfb, 0xef, 0x1f, 0xf2, 0x2f, 0x25, 0x22, 0x48, 0x44, 0xc0, 0xbe, 0xbb, 0xb8, 0x37, 0xc1, 0xbb, 0x9d, 0x04, 0xf4, 0x00, 0x7e, 0x11, 0x46, 0xae, 0xfb, 0x8e, 0x1d, 0xe8, 0xcd, 0x24, 0xf4, 0x7f, 0x70, 0xb4, 0xb0, 0x27, 0x01, 0x6b, 0x39, 0x1e, 0x0e, 0xf4, 0xa6, 0x9f, 0x84, 0xfd, 0x4f, 0x8e, 0x0d, 0x01, 0x04, 0x6c, 0xe8, 0x7e, 0x30, 0xc8, 0xb8, 0xff, 0x4b, 0x80, 0x05, 0x80, 0x38, 0x4d, 0xfe, 0xbf, 0x81, 0x0f, 0x93, 0xb0, 0xef, 0x09, 0xa7, 0xb9, 0x7d, 0xe5, 0x53, 0x90, 0x27, 0xff, 0xb2, 0xaf, 0x87, 0x12, 0xc0, 0xff, 0xcd, 0xc1, 0x11, 0x82, 0xbc, 0xd9, 0x0f, 0x1a, 0x81, 0x99, 0x1c, 0xec, 0xff, 0xe1, 0x33, 0x2d, 0xec, 0x2b, 0x55, 0x28, 0xf8, 0x41, 0xa3, 0xd1, 0xe6, 0x1d, 0x4d, 0x02, 0xfc, 0x87, 0x1f, 0x86, 0x87, 0xdc, 0x10, 0xb3, 0x74, 0xa6, 0xff, 0x65, 0x1d, 0xac, 0x3a, 0xab, 0x0e, 0xbb, 0xa6, 0x83, 0x0f, 0x72, 0xa0, 0x18, 0x4e, 0x6b, 0xcf, 0xf1, 0xe7, 0x6c, 0x6c, 0x06, 0x07, 0xd8, 0x9b, 0x73, 0x6c, 0x6e, 0x8b, 0xd2, 0x8e, 0x8d, 0xa7, 0xee, 0xef, 0x52, 0x6e, 0xfa, 0x24, 0x64, 0xb7, 0xdb, 0x7b, 0x7b, 0x87, 0x48, 0x86, 0xb4, 0xdf, 0xde, 0xe3, 0x5f, 0xb7, 0x90, 0x7f, 0xa7, 0xdf, 0x4a, 0xc3, 0x68, 0xd5, 0xb2, 0x76, 0x0e, 0x5d, 0xec, 0xd7, 0x6d, 0x5c, 0xdf, 0x47, 0x0a, 0x0c, 0xd3, 0x51, 0x3c, 0x47, 0xcd, 0xa4, 0x2b, 0x43, 0x2a, 0x7f, 0x0e, 0x35, 0xf3, 0xf4, 0xae, 0x32, 0x15, 0x6a, 0xe6, 0x43, 0xcd, 0x59, 0x76, 0x55, 0x19, 0x6a, 0xce, 0x86, 0x9a, 0x05, 0x7a, 0x61, 0x99, 0x0e, 0x35, 0x0b, 0xa1, 0x66, 0x91, 0x5e, 0xc8, 0x8f, 0x86, 0x9a, 0xc5, 0x50, 0x73, 0x8e, 0x5e, 0xc1, 0x67, 0x42, 0xcd, 0xb9, 0x50, 0x73, 0x9e, 0xde, 0xbc, 0x8f, 0x87, 0x9a, 0xf3, 0xa1, 0xe6, 0x02, 0xbd, 0x6d, 0x47, 0xa1, 0xe6, 0x42, 0xa8, 0xb9, 0x48, 0x3f, 0x63, 0x19, 0x09, 0x35, 0x17, 0xd1, 0x14, 0x8c, 0xb0, 0x91, 0x3d, 0x4b, 0x7f, 0x92, 0x1d, 0xbb, 0x32, 0xa4, 0x0a, 0x41, 0xa4, 0x7b, 0x8e, 0x7e, 0xaa, 0x32, 0x1c, 0xe9, 0x9e, 0x8b, 0x74, 0xf3, 0xf4, 0x83, 0x73, 0x39, 0xd2, 0xcd, 0x47, 0xba, 0xb3, 0xca, 0x28, 0x99, 0xfc, 0x48, 0x77, 0x36, 0xd2, 0x2d, 0x28, 0x25, 0x32, 0x03, 0x91, 0x6e, 0x21, 0xd2, 0x2d, 0x2a, 0x63, 0xa7, 0xa5, 0x99, 0x62, 0xa4, 0x5b, 0x44, 0xcf, 0x40, 0xc1, 0x6f, 0xef, 0x69, 0xfc, 0x0b, 0x02, 0xfa, 0x49, 0x4c, 0x61, 0x1e, 0x66, 0x49, 0x4e, 0xd0, 0x69, 0xbd, 0x32, 0xa4, 0x82, 0xdf, 0xde, 0xe3, 0xbb, 0xe3, 0x52, 0x11, 0xe8, 0x65, 0x82, 0x46, 0x3f, 0x04, 0x9d, 0x7e, 0x53, 0x82, 0xfc, 0xce, 0x2d, 0x87, 0xfe, 0x20, 0xeb, 0xff, 0x3f, 0x4f, 0xae, 0x70, 0xfa, 0xec, 0x02, 0xfd, 0xcd, 0x2c, 0x7f, 0x45, 0x52, 0x85, 0x20, 0xd2, 0x2d, 0x2a, 0x8f, 0xd0, 0x01, 0x85, 0xba, 0x45, 0x34, 0x07, 0xc5, 0xd8, 0x80, 0xe6, 0xe9, 0xc7, 0x2a, 0x9d, 0x23, 0x92, 0xd4, 0x42, 0x34, 0xa2, 0xf9, 0xa5, 0x2c, 0x90, 0xb4, 0x27, 0x7f, 0x82, 0x5b, 0xce, 0xf4, 0x17, 0x53, 0x50, 0x60, 0xf7, 0x8f, 0x74, 0x54, 0xe4, 0x55, 0xac, 0x1f, 0x3f, 0xe4, 0x6e, 0x0c, 0xa9, 0x42, 0x80, 0x54, 0x00, 0x66, 0x4a, 0x32, 0x9c, 0x79, 0xb2, 0xf4, 0xec, 0x3f, 0xbe, 0x75, 0xea, 0x93, 0xc7, 0xae, 0x20, 0x12, 0xbb, 0x39, 0xb6, 0xbb, 0xce, 0xee, 0x9a, 0x76, 0xf0, 0xdc, 0xfc, 0x05, 0x12, 0xe0, 0x88, 0x05, 0xed, 0x42, 0x6e, 0x59, 0xf7, 0xe9, 0x67, 0x6e, 0xd4, 0xf5, 0xcc, 0xd2, 0xf9, 0xff, 0x7d, 0xeb, 0xd4, 0xd9, 0x04, 0x46, 0xbe, 0xf1, 0xcd, 0x6e, 0x1c, 0x12, 0xd6, 0x73, 0x0b, 0x04, 0x7e, 0x65, 0x48, 0x0d, 0xa9, 0xd0, 0xbc, 0x70, 0x75, 0x53, 0x6f, 0xb1, 0xaf, 0x72, 0xd2, 0x4b, 0xf2, 0xd1, 0x5b, 0xa7, 0x8a, 0x1b, 0x87, 0x91, 0x3c, 0x72, 0x85, 0x3c, 0x2d, 0xe5, 0x60, 0x98, 0xb9, 0xba, 0xb4, 0xf2, 0xc6, 0xdd, 0xf2, 0xd0, 0x9b, 0x77, 0xcb, 0x43, 0xff, 0x70, 0xb7, 0x3c, 0xf4, 0xf6, 0xdd, 0xb2, 0xf4, 0xde, 0xdd, 0xb2, 0xf4, 0xc1, 0xdd, 0xb2, 0x74, 0xe7, 0xa8, 0x2c, 0x7d, 0xed, 0xa8, 0x2c, 0x7d, 0xf3, 0xa8, 0x2c, 0x7d, 0xf7, 0xa8, 0x2c, 0xbd, 0x71, 0x54, 0x1e, 0x7a, 0xf3, 0xa8, 0x3c, 0xf4, 0xf6, 0x51, 0x59, 0xfa, 0xc1, 0x51, 0x79, 0xe8, 0xbd, 0xa3, 0xb2, 0xf4, 0xc1, 0x51, 0x79, 0xe8, 0xce, 0x3f, 0x97, 0x87, 0xfe, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x58, 0x27, 0xc8, 0xa9, 0x1f, 0x34, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Subby) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Subby") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Subby but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Subby but is not nil && this == nil") } if this.Sub != nil && that1.Sub != nil { if *this.Sub != *that1.Sub { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", *this.Sub, *that1.Sub) } } else if this.Sub != nil { return fmt.Errorf("this.Sub == nil && that.Sub != nil") } else if that1.Sub != nil { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Subby) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Sub != nil && that1.Sub != nil { if *this.Sub != *that1.Sub { return false } } else if this.Sub != nil { return false } else if that1.Sub != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllTypesOneOf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf) if !ok { that2, ok := that.(AllTypesOneOf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf but is not nil && this == nil") } if that1.TestOneof == nil { if this.TestOneof != nil { return fmt.Errorf("this.TestOneof != nil && that1.TestOneof == nil") } } else if this.TestOneof == nil { return fmt.Errorf("this.TestOneof == nil && that1.TestOneof != nil") } else if err := this.TestOneof.VerboseEqual(that1.TestOneof); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllTypesOneOf_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field1) if !ok { that2, ok := that.(AllTypesOneOf_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *AllTypesOneOf_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field2) if !ok { that2, ok := that.(AllTypesOneOf_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *AllTypesOneOf_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field3) if !ok { that2, ok := that.(AllTypesOneOf_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *AllTypesOneOf_Field4) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field4) if !ok { that2, ok := that.(AllTypesOneOf_Field4) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field4") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field4 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field4 but is not nil && this == nil") } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } return nil } func (this *AllTypesOneOf_Field5) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field5) if !ok { that2, ok := that.(AllTypesOneOf_Field5) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field5") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field5 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field5 but is not nil && this == nil") } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } return nil } func (this *AllTypesOneOf_Field6) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field6) if !ok { that2, ok := that.(AllTypesOneOf_Field6) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field6") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field6 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field6 but is not nil && this == nil") } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } return nil } func (this *AllTypesOneOf_Field7) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field7) if !ok { that2, ok := that.(AllTypesOneOf_Field7) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field7") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field7 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field7 but is not nil && this == nil") } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } return nil } func (this *AllTypesOneOf_Field8) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field8) if !ok { that2, ok := that.(AllTypesOneOf_Field8) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field8") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field8 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field8 but is not nil && this == nil") } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } return nil } func (this *AllTypesOneOf_Field9) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field9) if !ok { that2, ok := that.(AllTypesOneOf_Field9) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field9") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field9 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field9 but is not nil && this == nil") } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } return nil } func (this *AllTypesOneOf_Field10) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field10) if !ok { that2, ok := that.(AllTypesOneOf_Field10) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field10") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field10 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field10 but is not nil && this == nil") } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } return nil } func (this *AllTypesOneOf_Field11) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field11) if !ok { that2, ok := that.(AllTypesOneOf_Field11) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field11") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field11 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field11 but is not nil && this == nil") } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } return nil } func (this *AllTypesOneOf_Field12) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field12) if !ok { that2, ok := that.(AllTypesOneOf_Field12) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field12") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field12 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field12 but is not nil && this == nil") } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } return nil } func (this *AllTypesOneOf_Field13) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field13) if !ok { that2, ok := that.(AllTypesOneOf_Field13) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field13") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field13 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field13 but is not nil && this == nil") } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } return nil } func (this *AllTypesOneOf_Field14) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field14) if !ok { that2, ok := that.(AllTypesOneOf_Field14) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field14") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field14 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field14 but is not nil && this == nil") } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } return nil } func (this *AllTypesOneOf_Field15) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field15) if !ok { that2, ok := that.(AllTypesOneOf_Field15) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field15") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field15 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field15 but is not nil && this == nil") } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } return nil } func (this *AllTypesOneOf_SubMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_SubMessage) if !ok { that2, ok := that.(AllTypesOneOf_SubMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_SubMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_SubMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_SubMessage but is not nil && this == nil") } if !this.SubMessage.Equal(that1.SubMessage) { return fmt.Errorf("SubMessage this(%v) Not Equal that(%v)", this.SubMessage, that1.SubMessage) } return nil } func (this *AllTypesOneOf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf) if !ok { that2, ok := that.(AllTypesOneOf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.TestOneof == nil { if this.TestOneof != nil { return false } } else if this.TestOneof == nil { return false } else if !this.TestOneof.Equal(that1.TestOneof) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllTypesOneOf_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field1) if !ok { that2, ok := that.(AllTypesOneOf_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *AllTypesOneOf_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field2) if !ok { that2, ok := that.(AllTypesOneOf_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *AllTypesOneOf_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field3) if !ok { that2, ok := that.(AllTypesOneOf_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *AllTypesOneOf_Field4) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field4) if !ok { that2, ok := that.(AllTypesOneOf_Field4) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field4 != that1.Field4 { return false } return true } func (this *AllTypesOneOf_Field5) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field5) if !ok { that2, ok := that.(AllTypesOneOf_Field5) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field5 != that1.Field5 { return false } return true } func (this *AllTypesOneOf_Field6) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field6) if !ok { that2, ok := that.(AllTypesOneOf_Field6) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field6 != that1.Field6 { return false } return true } func (this *AllTypesOneOf_Field7) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field7) if !ok { that2, ok := that.(AllTypesOneOf_Field7) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field7 != that1.Field7 { return false } return true } func (this *AllTypesOneOf_Field8) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field8) if !ok { that2, ok := that.(AllTypesOneOf_Field8) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field8 != that1.Field8 { return false } return true } func (this *AllTypesOneOf_Field9) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field9) if !ok { that2, ok := that.(AllTypesOneOf_Field9) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field9 != that1.Field9 { return false } return true } func (this *AllTypesOneOf_Field10) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field10) if !ok { that2, ok := that.(AllTypesOneOf_Field10) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field10 != that1.Field10 { return false } return true } func (this *AllTypesOneOf_Field11) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field11) if !ok { that2, ok := that.(AllTypesOneOf_Field11) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field11 != that1.Field11 { return false } return true } func (this *AllTypesOneOf_Field12) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field12) if !ok { that2, ok := that.(AllTypesOneOf_Field12) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field12 != that1.Field12 { return false } return true } func (this *AllTypesOneOf_Field13) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field13) if !ok { that2, ok := that.(AllTypesOneOf_Field13) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field13 != that1.Field13 { return false } return true } func (this *AllTypesOneOf_Field14) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field14) if !ok { that2, ok := that.(AllTypesOneOf_Field14) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field14 != that1.Field14 { return false } return true } func (this *AllTypesOneOf_Field15) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field15) if !ok { that2, ok := that.(AllTypesOneOf_Field15) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } return true } func (this *AllTypesOneOf_SubMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_SubMessage) if !ok { that2, ok := that.(AllTypesOneOf_SubMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage.Equal(that1.SubMessage) { return false } return true } func (this *TwoOneofs) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs) if !ok { that2, ok := that.(TwoOneofs) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs but is not nil && this == nil") } if that1.One == nil { if this.One != nil { return fmt.Errorf("this.One != nil && that1.One == nil") } } else if this.One == nil { return fmt.Errorf("this.One == nil && that1.One != nil") } else if err := this.One.VerboseEqual(that1.One); err != nil { return err } if that1.Two == nil { if this.Two != nil { return fmt.Errorf("this.Two != nil && that1.Two == nil") } } else if this.Two == nil { return fmt.Errorf("this.Two == nil && that1.Two != nil") } else if err := this.Two.VerboseEqual(that1.Two); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *TwoOneofs_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field1) if !ok { that2, ok := that.(TwoOneofs_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *TwoOneofs_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field2) if !ok { that2, ok := that.(TwoOneofs_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *TwoOneofs_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field3) if !ok { that2, ok := that.(TwoOneofs_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *TwoOneofs_Field34) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field34) if !ok { that2, ok := that.(TwoOneofs_Field34) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field34") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field34 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field34 but is not nil && this == nil") } if this.Field34 != that1.Field34 { return fmt.Errorf("Field34 this(%v) Not Equal that(%v)", this.Field34, that1.Field34) } return nil } func (this *TwoOneofs_Field35) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field35) if !ok { that2, ok := that.(TwoOneofs_Field35) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field35") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field35 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field35 but is not nil && this == nil") } if !bytes.Equal(this.Field35, that1.Field35) { return fmt.Errorf("Field35 this(%v) Not Equal that(%v)", this.Field35, that1.Field35) } return nil } func (this *TwoOneofs_SubMessage2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_SubMessage2) if !ok { that2, ok := that.(TwoOneofs_SubMessage2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_SubMessage2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_SubMessage2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_SubMessage2 but is not nil && this == nil") } if !this.SubMessage2.Equal(that1.SubMessage2) { return fmt.Errorf("SubMessage2 this(%v) Not Equal that(%v)", this.SubMessage2, that1.SubMessage2) } return nil } func (this *TwoOneofs) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs) if !ok { that2, ok := that.(TwoOneofs) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.One == nil { if this.One != nil { return false } } else if this.One == nil { return false } else if !this.One.Equal(that1.One) { return false } if that1.Two == nil { if this.Two != nil { return false } } else if this.Two == nil { return false } else if !this.Two.Equal(that1.Two) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *TwoOneofs_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field1) if !ok { that2, ok := that.(TwoOneofs_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *TwoOneofs_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field2) if !ok { that2, ok := that.(TwoOneofs_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *TwoOneofs_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field3) if !ok { that2, ok := that.(TwoOneofs_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *TwoOneofs_Field34) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field34) if !ok { that2, ok := that.(TwoOneofs_Field34) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field34 != that1.Field34 { return false } return true } func (this *TwoOneofs_Field35) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field35) if !ok { that2, ok := that.(TwoOneofs_Field35) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field35, that1.Field35) { return false } return true } func (this *TwoOneofs_SubMessage2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_SubMessage2) if !ok { that2, ok := that.(TwoOneofs_SubMessage2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage2.Equal(that1.SubMessage2) { return false } return true } func (this *CustomOneof) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof) if !ok { that2, ok := that.(CustomOneof) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof but is not nil && this == nil") } if that1.Custom == nil { if this.Custom != nil { return fmt.Errorf("this.Custom != nil && that1.Custom == nil") } } else if this.Custom == nil { return fmt.Errorf("this.Custom == nil && that1.Custom != nil") } else if err := this.Custom.VerboseEqual(that1.Custom); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomOneof_Stringy) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_Stringy) if !ok { that2, ok := that.(CustomOneof_Stringy) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_Stringy") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_Stringy but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_Stringy but is not nil && this == nil") } if this.Stringy != that1.Stringy { return fmt.Errorf("Stringy this(%v) Not Equal that(%v)", this.Stringy, that1.Stringy) } return nil } func (this *CustomOneof_CustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_CustomType) if !ok { that2, ok := that.(CustomOneof_CustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_CustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_CustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_CustomType but is not nil && this == nil") } if !this.CustomType.Equal(that1.CustomType) { return fmt.Errorf("CustomType this(%v) Not Equal that(%v)", this.CustomType, that1.CustomType) } return nil } func (this *CustomOneof_CastType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_CastType) if !ok { that2, ok := that.(CustomOneof_CastType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_CastType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_CastType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_CastType but is not nil && this == nil") } if this.CastType != that1.CastType { return fmt.Errorf("CastType this(%v) Not Equal that(%v)", this.CastType, that1.CastType) } return nil } func (this *CustomOneof_MyCustomName) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_MyCustomName) if !ok { that2, ok := that.(CustomOneof_MyCustomName) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_MyCustomName") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_MyCustomName but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_MyCustomName but is not nil && this == nil") } if this.MyCustomName != that1.MyCustomName { return fmt.Errorf("MyCustomName this(%v) Not Equal that(%v)", this.MyCustomName, that1.MyCustomName) } return nil } func (this *CustomOneof) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof) if !ok { that2, ok := that.(CustomOneof) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Custom == nil { if this.Custom != nil { return false } } else if this.Custom == nil { return false } else if !this.Custom.Equal(that1.Custom) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomOneof_Stringy) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_Stringy) if !ok { that2, ok := that.(CustomOneof_Stringy) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Stringy != that1.Stringy { return false } return true } func (this *CustomOneof_CustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_CustomType) if !ok { that2, ok := that.(CustomOneof_CustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.CustomType.Equal(that1.CustomType) { return false } return true } func (this *CustomOneof_CastType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_CastType) if !ok { that2, ok := that.(CustomOneof_CastType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.CastType != that1.CastType { return false } return true } func (this *CustomOneof_MyCustomName) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_MyCustomName) if !ok { that2, ok := that.(CustomOneof_MyCustomName) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.MyCustomName != that1.MyCustomName { return false } return true } func (this *Subby) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&one.Subby{") if this.Sub != nil { s = append(s, "Sub: "+valueToGoStringOne(this.Sub, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllTypesOneOf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&one.AllTypesOneOf{") if this.TestOneof != nil { s = append(s, "TestOneof: "+fmt.Sprintf("%#v", this.TestOneof)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllTypesOneOf_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field4) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field4{` + `Field4:` + fmt.Sprintf("%#v", this.Field4) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field5) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field5{` + `Field5:` + fmt.Sprintf("%#v", this.Field5) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field6) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field6{` + `Field6:` + fmt.Sprintf("%#v", this.Field6) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field7) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field7{` + `Field7:` + fmt.Sprintf("%#v", this.Field7) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field8) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field8{` + `Field8:` + fmt.Sprintf("%#v", this.Field8) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field9) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field9{` + `Field9:` + fmt.Sprintf("%#v", this.Field9) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field10) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field10{` + `Field10:` + fmt.Sprintf("%#v", this.Field10) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field11) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field11{` + `Field11:` + fmt.Sprintf("%#v", this.Field11) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field12) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field12{` + `Field12:` + fmt.Sprintf("%#v", this.Field12) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field13) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field13{` + `Field13:` + fmt.Sprintf("%#v", this.Field13) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field14) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field14{` + `Field14:` + fmt.Sprintf("%#v", this.Field14) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field15) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field15{` + `Field15:` + fmt.Sprintf("%#v", this.Field15) + `}`}, ", ") return s } func (this *AllTypesOneOf_SubMessage) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_SubMessage{` + `SubMessage:` + fmt.Sprintf("%#v", this.SubMessage) + `}`}, ", ") return s } func (this *TwoOneofs) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 10) s = append(s, "&one.TwoOneofs{") if this.One != nil { s = append(s, "One: "+fmt.Sprintf("%#v", this.One)+",\n") } if this.Two != nil { s = append(s, "Two: "+fmt.Sprintf("%#v", this.Two)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *TwoOneofs_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *TwoOneofs_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *TwoOneofs_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *TwoOneofs_Field34) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field34{` + `Field34:` + fmt.Sprintf("%#v", this.Field34) + `}`}, ", ") return s } func (this *TwoOneofs_Field35) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field35{` + `Field35:` + fmt.Sprintf("%#v", this.Field35) + `}`}, ", ") return s } func (this *TwoOneofs_SubMessage2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_SubMessage2{` + `SubMessage2:` + fmt.Sprintf("%#v", this.SubMessage2) + `}`}, ", ") return s } func (this *CustomOneof) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&one.CustomOneof{") if this.Custom != nil { s = append(s, "Custom: "+fmt.Sprintf("%#v", this.Custom)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomOneof_Stringy) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_Stringy{` + `Stringy:` + fmt.Sprintf("%#v", this.Stringy) + `}`}, ", ") return s } func (this *CustomOneof_CustomType) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_CustomType{` + `CustomType:` + fmt.Sprintf("%#v", this.CustomType) + `}`}, ", ") return s } func (this *CustomOneof_CastType) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_CastType{` + `CastType:` + fmt.Sprintf("%#v", this.CastType) + `}`}, ", ") return s } func (this *CustomOneof_MyCustomName) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_MyCustomName{` + `MyCustomName:` + fmt.Sprintf("%#v", this.MyCustomName) + `}`}, ", ") return s } func valueToGoStringOne(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedSubby(r randyOne, easy bool) *Subby { this := &Subby{} if r.Intn(10) != 0 { v1 := string(randStringOne(r)) this.Sub = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 2) } return this } func NewPopulatedAllTypesOneOf(r randyOne, easy bool) *AllTypesOneOf { this := &AllTypesOneOf{} oneofNumber_TestOneof := []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}[r.Intn(16)] switch oneofNumber_TestOneof { case 1: this.TestOneof = NewPopulatedAllTypesOneOf_Field1(r, easy) case 2: this.TestOneof = NewPopulatedAllTypesOneOf_Field2(r, easy) case 3: this.TestOneof = NewPopulatedAllTypesOneOf_Field3(r, easy) case 4: this.TestOneof = NewPopulatedAllTypesOneOf_Field4(r, easy) case 5: this.TestOneof = NewPopulatedAllTypesOneOf_Field5(r, easy) case 6: this.TestOneof = NewPopulatedAllTypesOneOf_Field6(r, easy) case 7: this.TestOneof = NewPopulatedAllTypesOneOf_Field7(r, easy) case 8: this.TestOneof = NewPopulatedAllTypesOneOf_Field8(r, easy) case 9: this.TestOneof = NewPopulatedAllTypesOneOf_Field9(r, easy) case 10: this.TestOneof = NewPopulatedAllTypesOneOf_Field10(r, easy) case 11: this.TestOneof = NewPopulatedAllTypesOneOf_Field11(r, easy) case 12: this.TestOneof = NewPopulatedAllTypesOneOf_Field12(r, easy) case 13: this.TestOneof = NewPopulatedAllTypesOneOf_Field13(r, easy) case 14: this.TestOneof = NewPopulatedAllTypesOneOf_Field14(r, easy) case 15: this.TestOneof = NewPopulatedAllTypesOneOf_Field15(r, easy) case 16: this.TestOneof = NewPopulatedAllTypesOneOf_SubMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 17) } return this } func NewPopulatedAllTypesOneOf_Field1(r randyOne, easy bool) *AllTypesOneOf_Field1 { this := &AllTypesOneOf_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field2(r randyOne, easy bool) *AllTypesOneOf_Field2 { this := &AllTypesOneOf_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field3(r randyOne, easy bool) *AllTypesOneOf_Field3 { this := &AllTypesOneOf_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field4(r randyOne, easy bool) *AllTypesOneOf_Field4 { this := &AllTypesOneOf_Field4{} this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field5(r randyOne, easy bool) *AllTypesOneOf_Field5 { this := &AllTypesOneOf_Field5{} this.Field5 = uint32(r.Uint32()) return this } func NewPopulatedAllTypesOneOf_Field6(r randyOne, easy bool) *AllTypesOneOf_Field6 { this := &AllTypesOneOf_Field6{} this.Field6 = uint64(uint64(r.Uint32())) return this } func NewPopulatedAllTypesOneOf_Field7(r randyOne, easy bool) *AllTypesOneOf_Field7 { this := &AllTypesOneOf_Field7{} this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field8(r randyOne, easy bool) *AllTypesOneOf_Field8 { this := &AllTypesOneOf_Field8{} this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field9(r randyOne, easy bool) *AllTypesOneOf_Field9 { this := &AllTypesOneOf_Field9{} this.Field9 = uint32(r.Uint32()) return this } func NewPopulatedAllTypesOneOf_Field10(r randyOne, easy bool) *AllTypesOneOf_Field10 { this := &AllTypesOneOf_Field10{} this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field11(r randyOne, easy bool) *AllTypesOneOf_Field11 { this := &AllTypesOneOf_Field11{} this.Field11 = uint64(uint64(r.Uint32())) return this } func NewPopulatedAllTypesOneOf_Field12(r randyOne, easy bool) *AllTypesOneOf_Field12 { this := &AllTypesOneOf_Field12{} this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field13(r randyOne, easy bool) *AllTypesOneOf_Field13 { this := &AllTypesOneOf_Field13{} this.Field13 = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedAllTypesOneOf_Field14(r randyOne, easy bool) *AllTypesOneOf_Field14 { this := &AllTypesOneOf_Field14{} this.Field14 = string(randStringOne(r)) return this } func NewPopulatedAllTypesOneOf_Field15(r randyOne, easy bool) *AllTypesOneOf_Field15 { this := &AllTypesOneOf_Field15{} v2 := r.Intn(100) this.Field15 = make([]byte, v2) for i := 0; i < v2; i++ { this.Field15[i] = byte(r.Intn(256)) } return this } func NewPopulatedAllTypesOneOf_SubMessage(r randyOne, easy bool) *AllTypesOneOf_SubMessage { this := &AllTypesOneOf_SubMessage{} this.SubMessage = NewPopulatedSubby(r, easy) return this } func NewPopulatedTwoOneofs(r randyOne, easy bool) *TwoOneofs { this := &TwoOneofs{} oneofNumber_One := []int32{1, 2, 3}[r.Intn(3)] switch oneofNumber_One { case 1: this.One = NewPopulatedTwoOneofs_Field1(r, easy) case 2: this.One = NewPopulatedTwoOneofs_Field2(r, easy) case 3: this.One = NewPopulatedTwoOneofs_Field3(r, easy) } oneofNumber_Two := []int32{34, 35, 36}[r.Intn(3)] switch oneofNumber_Two { case 34: this.Two = NewPopulatedTwoOneofs_Field34(r, easy) case 35: this.Two = NewPopulatedTwoOneofs_Field35(r, easy) case 36: this.Two = NewPopulatedTwoOneofs_SubMessage2(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 37) } return this } func NewPopulatedTwoOneofs_Field1(r randyOne, easy bool) *TwoOneofs_Field1 { this := &TwoOneofs_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedTwoOneofs_Field2(r randyOne, easy bool) *TwoOneofs_Field2 { this := &TwoOneofs_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedTwoOneofs_Field3(r randyOne, easy bool) *TwoOneofs_Field3 { this := &TwoOneofs_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedTwoOneofs_Field34(r randyOne, easy bool) *TwoOneofs_Field34 { this := &TwoOneofs_Field34{} this.Field34 = string(randStringOne(r)) return this } func NewPopulatedTwoOneofs_Field35(r randyOne, easy bool) *TwoOneofs_Field35 { this := &TwoOneofs_Field35{} v3 := r.Intn(100) this.Field35 = make([]byte, v3) for i := 0; i < v3; i++ { this.Field35[i] = byte(r.Intn(256)) } return this } func NewPopulatedTwoOneofs_SubMessage2(r randyOne, easy bool) *TwoOneofs_SubMessage2 { this := &TwoOneofs_SubMessage2{} this.SubMessage2 = NewPopulatedSubby(r, easy) return this } func NewPopulatedCustomOneof(r randyOne, easy bool) *CustomOneof { this := &CustomOneof{} oneofNumber_Custom := []int32{34, 35, 36, 37}[r.Intn(4)] switch oneofNumber_Custom { case 34: this.Custom = NewPopulatedCustomOneof_Stringy(r, easy) case 35: this.Custom = NewPopulatedCustomOneof_CustomType(r, easy) case 36: this.Custom = NewPopulatedCustomOneof_CastType(r, easy) case 37: this.Custom = NewPopulatedCustomOneof_MyCustomName(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 38) } return this } func NewPopulatedCustomOneof_Stringy(r randyOne, easy bool) *CustomOneof_Stringy { this := &CustomOneof_Stringy{} this.Stringy = string(randStringOne(r)) return this } func NewPopulatedCustomOneof_CustomType(r randyOne, easy bool) *CustomOneof_CustomType { this := &CustomOneof_CustomType{} v4 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.CustomType = *v4 return this } func NewPopulatedCustomOneof_CastType(r randyOne, easy bool) *CustomOneof_CastType { this := &CustomOneof_CastType{} this.CastType = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) return this } func NewPopulatedCustomOneof_MyCustomName(r randyOne, easy bool) *CustomOneof_MyCustomName { this := &CustomOneof_MyCustomName{} this.MyCustomName = int64(r.Int63()) if r.Intn(2) == 0 { this.MyCustomName *= -1 } return this } type randyOne interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneOne(r randyOne) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringOne(r randyOne) string { v5 := r.Intn(100) tmps := make([]rune, v5) for i := 0; i < v5; i++ { tmps[i] = randUTF8RuneOne(r) } return string(tmps) } func randUnrecognizedOne(r randyOne, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldOne(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldOne(dAtA []byte, r randyOne, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) v6 := r.Int63() if r.Intn(2) == 0 { v6 *= -1 } dAtA = encodeVarintPopulateOne(dAtA, uint64(v6)) case 1: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateOne(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateOne(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Subby) Size() (n int) { var l int _ = l if m.Sub != nil { l = len(*m.Sub) n += 1 + l + sovOne(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllTypesOneOf) Size() (n int) { var l int _ = l if m.TestOneof != nil { n += m.TestOneof.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllTypesOneOf_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *AllTypesOneOf_Field4) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field4)) return n } func (m *AllTypesOneOf_Field5) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field5)) return n } func (m *AllTypesOneOf_Field6) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field6)) return n } func (m *AllTypesOneOf_Field7) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field7)) return n } func (m *AllTypesOneOf_Field8) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field8)) return n } func (m *AllTypesOneOf_Field9) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field10) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field11) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field12) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field13) Size() (n int) { var l int _ = l n += 2 return n } func (m *AllTypesOneOf_Field14) Size() (n int) { var l int _ = l l = len(m.Field14) n += 1 + l + sovOne(uint64(l)) return n } func (m *AllTypesOneOf_Field15) Size() (n int) { var l int _ = l if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovOne(uint64(l)) } return n } func (m *AllTypesOneOf_SubMessage) Size() (n int) { var l int _ = l if m.SubMessage != nil { l = m.SubMessage.Size() n += 2 + l + sovOne(uint64(l)) } return n } func (m *TwoOneofs) Size() (n int) { var l int _ = l if m.One != nil { n += m.One.Size() } if m.Two != nil { n += m.Two.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *TwoOneofs_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *TwoOneofs_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *TwoOneofs_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *TwoOneofs_Field34) Size() (n int) { var l int _ = l l = len(m.Field34) n += 2 + l + sovOne(uint64(l)) return n } func (m *TwoOneofs_Field35) Size() (n int) { var l int _ = l if m.Field35 != nil { l = len(m.Field35) n += 2 + l + sovOne(uint64(l)) } return n } func (m *TwoOneofs_SubMessage2) Size() (n int) { var l int _ = l if m.SubMessage2 != nil { l = m.SubMessage2.Size() n += 2 + l + sovOne(uint64(l)) } return n } func (m *CustomOneof) Size() (n int) { var l int _ = l if m.Custom != nil { n += m.Custom.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomOneof_Stringy) Size() (n int) { var l int _ = l l = len(m.Stringy) n += 2 + l + sovOne(uint64(l)) return n } func (m *CustomOneof_CustomType) Size() (n int) { var l int _ = l l = m.CustomType.Size() n += 2 + l + sovOne(uint64(l)) return n } func (m *CustomOneof_CastType) Size() (n int) { var l int _ = l n += 2 + sovOne(uint64(m.CastType)) return n } func (m *CustomOneof_MyCustomName) Size() (n int) { var l int _ = l n += 2 + sovOne(uint64(m.MyCustomName)) return n } func sovOne(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozOne(x uint64) (n int) { return sovOne(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Subby) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Subby{`, `Sub:` + valueToStringOne(this.Sub) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf{`, `TestOneof:` + fmt.Sprintf("%v", this.TestOneof) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field4) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field4{`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field5) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field5{`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field6) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field6{`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field7) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field7{`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field8) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field8{`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field9) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field9{`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field10) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field10{`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field11) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field11{`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field12) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field12{`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field13) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field13{`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field14) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field14{`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field15) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field15{`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_SubMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_SubMessage{`, `SubMessage:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func (this *TwoOneofs) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs{`, `One:` + fmt.Sprintf("%v", this.One) + `,`, `Two:` + fmt.Sprintf("%v", this.Two) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field34) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field34{`, `Field34:` + fmt.Sprintf("%v", this.Field34) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field35) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field35{`, `Field35:` + fmt.Sprintf("%v", this.Field35) + `,`, `}`, }, "") return s } func (this *TwoOneofs_SubMessage2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_SubMessage2{`, `SubMessage2:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage2), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func (this *CustomOneof) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof{`, `Custom:` + fmt.Sprintf("%v", this.Custom) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomOneof_Stringy) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_Stringy{`, `Stringy:` + fmt.Sprintf("%v", this.Stringy) + `,`, `}`, }, "") return s } func (this *CustomOneof_CustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_CustomType{`, `CustomType:` + fmt.Sprintf("%v", this.CustomType) + `,`, `}`, }, "") return s } func (this *CustomOneof_CastType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_CastType{`, `CastType:` + fmt.Sprintf("%v", this.CastType) + `,`, `}`, }, "") return s } func (this *CustomOneof_MyCustomName) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_MyCustomName{`, `MyCustomName:` + fmt.Sprintf("%v", this.MyCustomName) + `,`, `}`, }, "") return s } func valueToStringOne(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/neither/one.proto", fileDescriptorOne) } var fileDescriptorOne = []byte{ // 598 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0xd3, 0xbf, 0x4f, 0x1b, 0x3f, 0x14, 0x00, 0x70, 0x3f, 0x42, 0x42, 0x70, 0xc2, 0x97, 0x7c, 0x6f, 0x72, 0x19, 0x8c, 0x95, 0xb6, 0x92, 0x87, 0x92, 0x90, 0x4b, 0xc2, 0x8f, 0xb1, 0x47, 0x55, 0x65, 0xa1, 0x48, 0x07, 0xcc, 0x28, 0x47, 0x4d, 0x88, 0x44, 0xce, 0x08, 0xfb, 0x84, 0xb2, 0xf1, 0x37, 0xf4, 0xaf, 0xe8, 0xd8, 0xb1, 0x7f, 0x02, 0x23, 0x63, 0xd5, 0x21, 0xe2, 0xae, 0x4b, 0x47, 0x46, 0xd4, 0xa9, 0xf2, 0x1d, 0xb1, 0x2b, 0x55, 0x55, 0x97, 0x4e, 0xb9, 0xf7, 0x3e, 0xe7, 0x97, 0xf7, 0xce, 0x36, 0x26, 0xa7, 0x72, 0x12, 0x49, 0xd5, 0x8e, 0xc5, 0x58, 0x9f, 0x8b, 0xab, 0xb6, 0x8c, 0x45, 0xeb, 0xf2, 0x4a, 0x6a, 0xe9, 0x95, 0x64, 0x2c, 0xd6, 0x36, 0x46, 0x63, 0x7d, 0x9e, 0x44, 0xad, 0x53, 0x39, 0x69, 0x8f, 0xe4, 0x48, 0xb6, 0x73, 0x8b, 0x92, 0xb3, 0x3c, 0xca, 0x83, 0xfc, 0xa9, 0x58, 0xd3, 0x7c, 0x86, 0xcb, 0x87, 0x49, 0x14, 0x4d, 0xbd, 0x06, 0x2e, 0xa9, 0x24, 0x22, 0xc0, 0x80, 0x2f, 0x87, 0xe6, 0xb1, 0x39, 0x2b, 0xe1, 0x95, 0xd7, 0x17, 0x17, 0x47, 0xd3, 0x4b, 0xa1, 0x0e, 0x62, 0x71, 0x70, 0xe6, 0x11, 0x5c, 0x79, 0x3b, 0x16, 0x17, 0xef, 0x3b, 0xf9, 0x6b, 0x30, 0x40, 0xe1, 0x53, 0x6c, 0xc5, 0x27, 0x0b, 0x0c, 0xf8, 0x82, 0x15, 0xdf, 0x4a, 0x97, 0x94, 0x18, 0xf0, 0xb2, 0x95, 0xae, 0x95, 0x1e, 0x59, 0x64, 0xc0, 0x4b, 0x56, 0x7a, 0x56, 0xfa, 0xa4, 0xcc, 0x80, 0xaf, 0x58, 0xe9, 0x5b, 0xd9, 0x22, 0x15, 0x06, 0x7c, 0xd1, 0xca, 0x96, 0x95, 0x6d, 0xb2, 0xc4, 0x80, 0xff, 0x6f, 0x65, 0xdb, 0xca, 0x0e, 0xa9, 0x32, 0xe0, 0x9e, 0x95, 0x1d, 0x2b, 0xbb, 0x64, 0x99, 0x01, 0x5f, 0xb2, 0xb2, 0xeb, 0xad, 0xe1, 0xa5, 0x62, 0xb2, 0x4d, 0x82, 0x19, 0xf0, 0xd5, 0x01, 0x0a, 0xe7, 0x09, 0x67, 0x1d, 0x52, 0x63, 0xc0, 0x2b, 0xce, 0x3a, 0xce, 0x7c, 0x52, 0x67, 0xc0, 0x1b, 0xce, 0x7c, 0x67, 0x5d, 0xb2, 0xc2, 0x80, 0x57, 0x9d, 0x75, 0x9d, 0xf5, 0xc8, 0x7f, 0x66, 0x07, 0x9c, 0xf5, 0x9c, 0xf5, 0xc9, 0x2a, 0x03, 0x5e, 0x77, 0xd6, 0xf7, 0x36, 0x70, 0x4d, 0x25, 0xd1, 0xc9, 0x44, 0x28, 0x35, 0x1c, 0x09, 0xd2, 0x60, 0xc0, 0x6b, 0x3e, 0x6e, 0x99, 0x33, 0x91, 0x6f, 0xeb, 0x00, 0x85, 0x58, 0x25, 0xd1, 0x7e, 0xe1, 0x41, 0x1d, 0x63, 0x2d, 0x94, 0x3e, 0x91, 0xb1, 0x90, 0x67, 0xcd, 0x3b, 0xc0, 0xcb, 0x47, 0xd7, 0xf2, 0xc0, 0x04, 0xea, 0x1f, 0x6f, 0xee, 0xbc, 0xe9, 0x6e, 0x8f, 0x34, 0xf3, 0x81, 0x20, 0x9c, 0x27, 0x9c, 0xf5, 0xc9, 0xf3, 0x7c, 0x20, 0x6b, 0x7d, 0xaf, 0x8d, 0xeb, 0xbf, 0x0c, 0xe4, 0x93, 0x17, 0xbf, 0x4d, 0x04, 0x61, 0xcd, 0x4d, 0xe4, 0x07, 0x65, 0x6c, 0x8e, 0xbd, 0xf9, 0xd1, 0xd7, 0xb2, 0xf9, 0x61, 0x01, 0xd7, 0xf6, 0x12, 0xa5, 0xe5, 0x24, 0x9f, 0xca, 0xfc, 0xd5, 0xa1, 0xbe, 0x1a, 0xc7, 0xa3, 0xe9, 0x53, 0x1b, 0x28, 0x9c, 0x27, 0xbc, 0x10, 0xe3, 0xe2, 0x55, 0x73, 0xc2, 0x8b, 0x4e, 0x82, 0xcd, 0xaf, 0xb3, 0xf5, 0x57, 0x7f, 0xbc, 0x41, 0xe6, 0xdb, 0xb5, 0x4f, 0xf3, 0x35, 0xad, 0xe3, 0x71, 0xac, 0x3b, 0xfe, 0x8e, 0xf9, 0xc0, 0xae, 0x8a, 0x77, 0x8c, 0xab, 0x7b, 0x43, 0xa5, 0xf3, 0x8a, 0xa6, 0xf5, 0xc5, 0x60, 0xfb, 0xc7, 0x6c, 0xbd, 0xfb, 0x97, 0x8a, 0x43, 0xa5, 0xf5, 0xf4, 0x52, 0xb4, 0xf6, 0xa7, 0xa6, 0xea, 0x56, 0xcf, 0x2c, 0x1f, 0xa0, 0xd0, 0x96, 0xf2, 0xfc, 0x79, 0xab, 0xef, 0x86, 0x13, 0x41, 0x5e, 0x9a, 0xeb, 0x12, 0x34, 0xb2, 0xd9, 0x7a, 0x7d, 0x7f, 0xea, 0xf2, 0xae, 0x15, 0x13, 0x05, 0x55, 0x5c, 0x29, 0x5a, 0x0d, 0xde, 0xdc, 0xa6, 0x14, 0xdd, 0xa5, 0x14, 0x7d, 0x49, 0x29, 0xba, 0x4f, 0x29, 0x3c, 0xa4, 0x14, 0x1e, 0x53, 0x0a, 0x37, 0x19, 0x85, 0x8f, 0x19, 0x85, 0x4f, 0x19, 0x85, 0xcf, 0x19, 0x85, 0xdb, 0x8c, 0xa2, 0xbb, 0x8c, 0xa2, 0xfb, 0x8c, 0xc2, 0xf7, 0x8c, 0xa2, 0x87, 0x8c, 0xc2, 0x63, 0x46, 0xd1, 0xcd, 0x37, 0x8a, 0x7e, 0x06, 0x00, 0x00, 0xff, 0xff, 0x0e, 0x27, 0x4d, 0xb9, 0x78, 0x04, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/oneof/combos/neither/one.proto000066400000000000000000000064031317075173200242230ustar00rootroot00000000000000// 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 one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { optional string sub = 1; } message AllTypesOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } message TwoOneofs { oneof one { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; } oneof two { string Field34 = 34; bytes Field35 = 35; Subby sub_message2 = 36; } } message CustomOneof { oneof custom { string Stringy = 34; bytes CustomType = 35 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; uint64 CastType = 36 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; int64 CustomName = 37 [(gogoproto.customname) = "MyCustomName"]; } } golang-gogoprotobuf-0.5/test/oneof/combos/neither/onepb_test.go000066400000000000000000000464541317075173200250600ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/neither/one.proto It has these top-level messages: Subby AllTypesOneOf TwoOneofs CustomOneof */ package one import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSubbyProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllTypesOneOfProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestTwoOneofsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomOneofProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSubbyJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllTypesOneOfJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTwoOneofsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomOneofJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubbyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneDescription(t *testing.T) { OneDescription() } func TestSubbyVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllTypesOneOfVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTwoOneofsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomOneofVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSubbyGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllTypesOneOfGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTwoOneofsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomOneofGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSubbySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestAllTypesOneOfSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestTwoOneofsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestCustomOneofSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSubbyStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllTypesOneOfStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTwoOneofsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomOneofStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/oneof/combos/unmarshaler/000077500000000000000000000000001317075173200232355ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof/combos/unmarshaler/one.pb.go000066400000000000000000004422141317075173200247540ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/one.proto It has these top-level messages: Subby AllTypesOneOf TwoOneofs CustomOneof */ package one import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test_casttype "github.com/gogo/protobuf/test/casttype" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import io "io" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Subby struct { Sub *string `protobuf:"bytes,1,opt,name=sub" json:"sub,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Subby) Reset() { *m = Subby{} } func (*Subby) ProtoMessage() {} func (*Subby) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{0} } type AllTypesOneOf struct { // Types that are valid to be assigned to TestOneof: // *AllTypesOneOf_Field1 // *AllTypesOneOf_Field2 // *AllTypesOneOf_Field3 // *AllTypesOneOf_Field4 // *AllTypesOneOf_Field5 // *AllTypesOneOf_Field6 // *AllTypesOneOf_Field7 // *AllTypesOneOf_Field8 // *AllTypesOneOf_Field9 // *AllTypesOneOf_Field10 // *AllTypesOneOf_Field11 // *AllTypesOneOf_Field12 // *AllTypesOneOf_Field13 // *AllTypesOneOf_Field14 // *AllTypesOneOf_Field15 // *AllTypesOneOf_SubMessage TestOneof isAllTypesOneOf_TestOneof `protobuf_oneof:"test_oneof"` XXX_unrecognized []byte `json:"-"` } func (m *AllTypesOneOf) Reset() { *m = AllTypesOneOf{} } func (*AllTypesOneOf) ProtoMessage() {} func (*AllTypesOneOf) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{1} } type isAllTypesOneOf_TestOneof interface { isAllTypesOneOf_TestOneof() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type AllTypesOneOf_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,oneof"` } type AllTypesOneOf_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,oneof"` } type AllTypesOneOf_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,oneof"` } type AllTypesOneOf_Field4 struct { Field4 int64 `protobuf:"varint,4,opt,name=Field4,oneof"` } type AllTypesOneOf_Field5 struct { Field5 uint32 `protobuf:"varint,5,opt,name=Field5,oneof"` } type AllTypesOneOf_Field6 struct { Field6 uint64 `protobuf:"varint,6,opt,name=Field6,oneof"` } type AllTypesOneOf_Field7 struct { Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7,oneof"` } type AllTypesOneOf_Field8 struct { Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8,oneof"` } type AllTypesOneOf_Field9 struct { Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9,oneof"` } type AllTypesOneOf_Field10 struct { Field10 int32 `protobuf:"fixed32,10,opt,name=Field10,oneof"` } type AllTypesOneOf_Field11 struct { Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11,oneof"` } type AllTypesOneOf_Field12 struct { Field12 int64 `protobuf:"fixed64,12,opt,name=Field12,oneof"` } type AllTypesOneOf_Field13 struct { Field13 bool `protobuf:"varint,13,opt,name=Field13,oneof"` } type AllTypesOneOf_Field14 struct { Field14 string `protobuf:"bytes,14,opt,name=Field14,oneof"` } type AllTypesOneOf_Field15 struct { Field15 []byte `protobuf:"bytes,15,opt,name=Field15,oneof"` } type AllTypesOneOf_SubMessage struct { SubMessage *Subby `protobuf:"bytes,16,opt,name=sub_message,json=subMessage,oneof"` } func (*AllTypesOneOf_Field1) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field2) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field3) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field4) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field5) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field6) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field7) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field8) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field9) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field10) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field11) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field12) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field13) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field14) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_Field15) isAllTypesOneOf_TestOneof() {} func (*AllTypesOneOf_SubMessage) isAllTypesOneOf_TestOneof() {} func (m *AllTypesOneOf) GetTestOneof() isAllTypesOneOf_TestOneof { if m != nil { return m.TestOneof } return nil } func (m *AllTypesOneOf) GetField1() float64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field1); ok { return x.Field1 } return 0 } func (m *AllTypesOneOf) GetField2() float32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field2); ok { return x.Field2 } return 0 } func (m *AllTypesOneOf) GetField3() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field3); ok { return x.Field3 } return 0 } func (m *AllTypesOneOf) GetField4() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field4); ok { return x.Field4 } return 0 } func (m *AllTypesOneOf) GetField5() uint32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field5); ok { return x.Field5 } return 0 } func (m *AllTypesOneOf) GetField6() uint64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field6); ok { return x.Field6 } return 0 } func (m *AllTypesOneOf) GetField7() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field7); ok { return x.Field7 } return 0 } func (m *AllTypesOneOf) GetField8() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field8); ok { return x.Field8 } return 0 } func (m *AllTypesOneOf) GetField9() uint32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field9); ok { return x.Field9 } return 0 } func (m *AllTypesOneOf) GetField10() int32 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field10); ok { return x.Field10 } return 0 } func (m *AllTypesOneOf) GetField11() uint64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field11); ok { return x.Field11 } return 0 } func (m *AllTypesOneOf) GetField12() int64 { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field12); ok { return x.Field12 } return 0 } func (m *AllTypesOneOf) GetField13() bool { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field13); ok { return x.Field13 } return false } func (m *AllTypesOneOf) GetField14() string { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field14); ok { return x.Field14 } return "" } func (m *AllTypesOneOf) GetField15() []byte { if x, ok := m.GetTestOneof().(*AllTypesOneOf_Field15); ok { return x.Field15 } return nil } func (m *AllTypesOneOf) GetSubMessage() *Subby { if x, ok := m.GetTestOneof().(*AllTypesOneOf_SubMessage); ok { return x.SubMessage } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*AllTypesOneOf) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _AllTypesOneOf_OneofMarshaler, _AllTypesOneOf_OneofUnmarshaler, _AllTypesOneOf_OneofSizer, []interface{}{ (*AllTypesOneOf_Field1)(nil), (*AllTypesOneOf_Field2)(nil), (*AllTypesOneOf_Field3)(nil), (*AllTypesOneOf_Field4)(nil), (*AllTypesOneOf_Field5)(nil), (*AllTypesOneOf_Field6)(nil), (*AllTypesOneOf_Field7)(nil), (*AllTypesOneOf_Field8)(nil), (*AllTypesOneOf_Field9)(nil), (*AllTypesOneOf_Field10)(nil), (*AllTypesOneOf_Field11)(nil), (*AllTypesOneOf_Field12)(nil), (*AllTypesOneOf_Field13)(nil), (*AllTypesOneOf_Field14)(nil), (*AllTypesOneOf_Field15)(nil), (*AllTypesOneOf_SubMessage)(nil), } } func _AllTypesOneOf_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*AllTypesOneOf) // test_oneof switch x := m.TestOneof.(type) { case *AllTypesOneOf_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *AllTypesOneOf_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *AllTypesOneOf_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case *AllTypesOneOf_Field4: _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field4)) case *AllTypesOneOf_Field5: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field5)) case *AllTypesOneOf_Field6: _ = b.EncodeVarint(6<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field6)) case *AllTypesOneOf_Field7: _ = b.EncodeVarint(7<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Field7)) case *AllTypesOneOf_Field8: _ = b.EncodeVarint(8<<3 | proto.WireVarint) _ = b.EncodeZigzag64(uint64(x.Field8)) case *AllTypesOneOf_Field9: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field9)) case *AllTypesOneOf_Field10: _ = b.EncodeVarint(10<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field10)) case *AllTypesOneOf_Field11: _ = b.EncodeVarint(11<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field11)) case *AllTypesOneOf_Field12: _ = b.EncodeVarint(12<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field12)) case *AllTypesOneOf_Field13: t := uint64(0) if x.Field13 { t = 1 } _ = b.EncodeVarint(13<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *AllTypesOneOf_Field14: _ = b.EncodeVarint(14<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field14) case *AllTypesOneOf_Field15: _ = b.EncodeVarint(15<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field15) case *AllTypesOneOf_SubMessage: _ = b.EncodeVarint(16<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage); err != nil { return err } case nil: default: return fmt.Errorf("AllTypesOneOf.TestOneof has unexpected type %T", x) } return nil } func _AllTypesOneOf_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*AllTypesOneOf) switch tag { case 1: // test_oneof.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field1{math.Float64frombits(x)} return true, err case 2: // test_oneof.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // test_oneof.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field3{int32(x)} return true, err case 4: // test_oneof.Field4 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field4{int64(x)} return true, err case 5: // test_oneof.Field5 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field5{uint32(x)} return true, err case 6: // test_oneof.Field6 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field6{x} return true, err case 7: // test_oneof.Field7 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.TestOneof = &AllTypesOneOf_Field7{int32(x)} return true, err case 8: // test_oneof.Field8 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag64() m.TestOneof = &AllTypesOneOf_Field8{int64(x)} return true, err case 9: // test_oneof.Field9 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field9{uint32(x)} return true, err case 10: // test_oneof.Field10 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &AllTypesOneOf_Field10{int32(x)} return true, err case 11: // test_oneof.Field11 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field11{x} return true, err case 12: // test_oneof.Field12 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &AllTypesOneOf_Field12{int64(x)} return true, err case 13: // test_oneof.Field13 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &AllTypesOneOf_Field13{x != 0} return true, err case 14: // test_oneof.Field14 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.TestOneof = &AllTypesOneOf_Field14{x} return true, err case 15: // test_oneof.Field15 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.TestOneof = &AllTypesOneOf_Field15{x} return true, err case 16: // test_oneof.sub_message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.TestOneof = &AllTypesOneOf_SubMessage{msg} return true, err default: return false, nil } } func _AllTypesOneOf_OneofSizer(msg proto.Message) (n int) { m := msg.(*AllTypesOneOf) // test_oneof switch x := m.TestOneof.(type) { case *AllTypesOneOf_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case *AllTypesOneOf_Field4: n += proto.SizeVarint(4<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field4)) case *AllTypesOneOf_Field5: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field5)) case *AllTypesOneOf_Field6: n += proto.SizeVarint(6<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field6)) case *AllTypesOneOf_Field7: n += proto.SizeVarint(7<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.Field7) << 1) ^ uint32((int32(x.Field7) >> 31)))) case *AllTypesOneOf_Field8: n += proto.SizeVarint(8<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(uint64(x.Field8<<1) ^ uint64((int64(x.Field8) >> 63)))) case *AllTypesOneOf_Field9: n += proto.SizeVarint(9<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field10: n += proto.SizeVarint(10<<3 | proto.WireFixed32) n += 4 case *AllTypesOneOf_Field11: n += proto.SizeVarint(11<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field12: n += proto.SizeVarint(12<<3 | proto.WireFixed64) n += 8 case *AllTypesOneOf_Field13: n += proto.SizeVarint(13<<3 | proto.WireVarint) n += 1 case *AllTypesOneOf_Field14: n += proto.SizeVarint(14<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field14))) n += len(x.Field14) case *AllTypesOneOf_Field15: n += proto.SizeVarint(15<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field15))) n += len(x.Field15) case *AllTypesOneOf_SubMessage: s := proto.Size(x.SubMessage) n += proto.SizeVarint(16<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type TwoOneofs struct { // Types that are valid to be assigned to One: // *TwoOneofs_Field1 // *TwoOneofs_Field2 // *TwoOneofs_Field3 One isTwoOneofs_One `protobuf_oneof:"one"` // Types that are valid to be assigned to Two: // *TwoOneofs_Field34 // *TwoOneofs_Field35 // *TwoOneofs_SubMessage2 Two isTwoOneofs_Two `protobuf_oneof:"two"` XXX_unrecognized []byte `json:"-"` } func (m *TwoOneofs) Reset() { *m = TwoOneofs{} } func (*TwoOneofs) ProtoMessage() {} func (*TwoOneofs) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{2} } type isTwoOneofs_One interface { isTwoOneofs_One() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type isTwoOneofs_Two interface { isTwoOneofs_Two() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type TwoOneofs_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,oneof"` } type TwoOneofs_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,oneof"` } type TwoOneofs_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,oneof"` } type TwoOneofs_Field34 struct { Field34 string `protobuf:"bytes,34,opt,name=Field34,oneof"` } type TwoOneofs_Field35 struct { Field35 []byte `protobuf:"bytes,35,opt,name=Field35,oneof"` } type TwoOneofs_SubMessage2 struct { SubMessage2 *Subby `protobuf:"bytes,36,opt,name=sub_message2,json=subMessage2,oneof"` } func (*TwoOneofs_Field1) isTwoOneofs_One() {} func (*TwoOneofs_Field2) isTwoOneofs_One() {} func (*TwoOneofs_Field3) isTwoOneofs_One() {} func (*TwoOneofs_Field34) isTwoOneofs_Two() {} func (*TwoOneofs_Field35) isTwoOneofs_Two() {} func (*TwoOneofs_SubMessage2) isTwoOneofs_Two() {} func (m *TwoOneofs) GetOne() isTwoOneofs_One { if m != nil { return m.One } return nil } func (m *TwoOneofs) GetTwo() isTwoOneofs_Two { if m != nil { return m.Two } return nil } func (m *TwoOneofs) GetField1() float64 { if x, ok := m.GetOne().(*TwoOneofs_Field1); ok { return x.Field1 } return 0 } func (m *TwoOneofs) GetField2() float32 { if x, ok := m.GetOne().(*TwoOneofs_Field2); ok { return x.Field2 } return 0 } func (m *TwoOneofs) GetField3() int32 { if x, ok := m.GetOne().(*TwoOneofs_Field3); ok { return x.Field3 } return 0 } func (m *TwoOneofs) GetField34() string { if x, ok := m.GetTwo().(*TwoOneofs_Field34); ok { return x.Field34 } return "" } func (m *TwoOneofs) GetField35() []byte { if x, ok := m.GetTwo().(*TwoOneofs_Field35); ok { return x.Field35 } return nil } func (m *TwoOneofs) GetSubMessage2() *Subby { if x, ok := m.GetTwo().(*TwoOneofs_SubMessage2); ok { return x.SubMessage2 } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*TwoOneofs) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _TwoOneofs_OneofMarshaler, _TwoOneofs_OneofUnmarshaler, _TwoOneofs_OneofSizer, []interface{}{ (*TwoOneofs_Field1)(nil), (*TwoOneofs_Field2)(nil), (*TwoOneofs_Field3)(nil), (*TwoOneofs_Field34)(nil), (*TwoOneofs_Field35)(nil), (*TwoOneofs_SubMessage2)(nil), } } func _TwoOneofs_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*TwoOneofs) // one switch x := m.One.(type) { case *TwoOneofs_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *TwoOneofs_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *TwoOneofs_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case nil: default: return fmt.Errorf("TwoOneofs.One has unexpected type %T", x) } // two switch x := m.Two.(type) { case *TwoOneofs_Field34: _ = b.EncodeVarint(34<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field34) case *TwoOneofs_Field35: _ = b.EncodeVarint(35<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field35) case *TwoOneofs_SubMessage2: _ = b.EncodeVarint(36<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage2); err != nil { return err } case nil: default: return fmt.Errorf("TwoOneofs.Two has unexpected type %T", x) } return nil } func _TwoOneofs_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*TwoOneofs) switch tag { case 1: // one.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.One = &TwoOneofs_Field1{math.Float64frombits(x)} return true, err case 2: // one.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.One = &TwoOneofs_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // one.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.One = &TwoOneofs_Field3{int32(x)} return true, err case 34: // two.Field34 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Two = &TwoOneofs_Field34{x} return true, err case 35: // two.Field35 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.Two = &TwoOneofs_Field35{x} return true, err case 36: // two.sub_message2 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.Two = &TwoOneofs_SubMessage2{msg} return true, err default: return false, nil } } func _TwoOneofs_OneofSizer(msg proto.Message) (n int) { m := msg.(*TwoOneofs) // one switch x := m.One.(type) { case *TwoOneofs_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *TwoOneofs_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *TwoOneofs_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } // two switch x := m.Two.(type) { case *TwoOneofs_Field34: n += proto.SizeVarint(34<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field34))) n += len(x.Field34) case *TwoOneofs_Field35: n += proto.SizeVarint(35<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field35))) n += len(x.Field35) case *TwoOneofs_SubMessage2: s := proto.Size(x.SubMessage2) n += proto.SizeVarint(36<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type CustomOneof struct { // Types that are valid to be assigned to Custom: // *CustomOneof_Stringy // *CustomOneof_CustomType // *CustomOneof_CastType // *CustomOneof_MyCustomName Custom isCustomOneof_Custom `protobuf_oneof:"custom"` XXX_unrecognized []byte `json:"-"` } func (m *CustomOneof) Reset() { *m = CustomOneof{} } func (*CustomOneof) ProtoMessage() {} func (*CustomOneof) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{3} } type isCustomOneof_Custom interface { isCustomOneof_Custom() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type CustomOneof_Stringy struct { Stringy string `protobuf:"bytes,34,opt,name=Stringy,oneof"` } type CustomOneof_CustomType struct { CustomType github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,35,opt,name=CustomType,oneof,customtype=github.com/gogo/protobuf/test/custom.Uint128"` } type CustomOneof_CastType struct { CastType github_com_gogo_protobuf_test_casttype.MyUint64Type `protobuf:"varint,36,opt,name=CastType,oneof,casttype=github.com/gogo/protobuf/test/casttype.MyUint64Type"` } type CustomOneof_MyCustomName struct { MyCustomName int64 `protobuf:"varint,37,opt,name=CustomName,oneof"` } func (*CustomOneof_Stringy) isCustomOneof_Custom() {} func (*CustomOneof_CustomType) isCustomOneof_Custom() {} func (*CustomOneof_CastType) isCustomOneof_Custom() {} func (*CustomOneof_MyCustomName) isCustomOneof_Custom() {} func (m *CustomOneof) GetCustom() isCustomOneof_Custom { if m != nil { return m.Custom } return nil } func (m *CustomOneof) GetStringy() string { if x, ok := m.GetCustom().(*CustomOneof_Stringy); ok { return x.Stringy } return "" } func (m *CustomOneof) GetCastType() github_com_gogo_protobuf_test_casttype.MyUint64Type { if x, ok := m.GetCustom().(*CustomOneof_CastType); ok { return x.CastType } return 0 } func (m *CustomOneof) GetMyCustomName() int64 { if x, ok := m.GetCustom().(*CustomOneof_MyCustomName); ok { return x.MyCustomName } return 0 } // XXX_OneofFuncs is for the internal use of the proto package. func (*CustomOneof) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _CustomOneof_OneofMarshaler, _CustomOneof_OneofUnmarshaler, _CustomOneof_OneofSizer, []interface{}{ (*CustomOneof_Stringy)(nil), (*CustomOneof_CustomType)(nil), (*CustomOneof_CastType)(nil), (*CustomOneof_MyCustomName)(nil), } } func _CustomOneof_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*CustomOneof) // custom switch x := m.Custom.(type) { case *CustomOneof_Stringy: _ = b.EncodeVarint(34<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Stringy) case *CustomOneof_CustomType: _ = b.EncodeVarint(35<<3 | proto.WireBytes) dAtA, err := x.CustomType.Marshal() if err != nil { return err } _ = b.EncodeRawBytes(dAtA) case *CustomOneof_CastType: _ = b.EncodeVarint(36<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.CastType)) case *CustomOneof_MyCustomName: _ = b.EncodeVarint(37<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.MyCustomName)) case nil: default: return fmt.Errorf("CustomOneof.Custom has unexpected type %T", x) } return nil } func _CustomOneof_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*CustomOneof) switch tag { case 34: // custom.Stringy if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Custom = &CustomOneof_Stringy{x} return true, err case 35: // custom.CustomType if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } var cc github_com_gogo_protobuf_test_custom.Uint128 c := &cc err = c.Unmarshal(x) m.Custom = &CustomOneof_CustomType{*c} return true, err case 36: // custom.CastType if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Custom = &CustomOneof_CastType{github_com_gogo_protobuf_test_casttype.MyUint64Type(x)} return true, err case 37: // custom.CustomName if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Custom = &CustomOneof_MyCustomName{int64(x)} return true, err default: return false, nil } } func _CustomOneof_OneofSizer(msg proto.Message) (n int) { m := msg.(*CustomOneof) // custom switch x := m.Custom.(type) { case *CustomOneof_Stringy: n += proto.SizeVarint(34<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Stringy))) n += len(x.Stringy) case *CustomOneof_CustomType: n += proto.SizeVarint(35<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(x.CustomType.Size())) n += x.CustomType.Size() case *CustomOneof_CastType: n += proto.SizeVarint(36<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.CastType)) case *CustomOneof_MyCustomName: n += proto.SizeVarint(37<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.MyCustomName)) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*Subby)(nil), "one.Subby") proto.RegisterType((*AllTypesOneOf)(nil), "one.AllTypesOneOf") proto.RegisterType((*TwoOneofs)(nil), "one.TwoOneofs") proto.RegisterType((*CustomOneof)(nil), "one.CustomOneof") } func (this *Subby) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *AllTypesOneOf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *TwoOneofs) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *CustomOneof) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func OneDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 4116 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x24, 0xd7, 0x55, 0x56, 0xcf, 0x8f, 0x34, 0x73, 0x66, 0x34, 0x6a, 0x5d, 0xc9, 0xbb, 0xb3, 0xb2, 0x3d, 0xbb, 0x2b, 0xff, 0xc9, 0x76, 0x2c, 0xd9, 0x5a, 0x69, 0x7f, 0x66, 0x49, 0xcc, 0x48, 0x9a, 0xd5, 0x6a, 0x91, 0x34, 0x4a, 0x4b, 0x8a, 0xd7, 0xe1, 0xa1, 0xab, 0xd5, 0x73, 0x67, 0xd4, 0xbb, 0x3d, 0xdd, 0x9d, 0xee, 0x9e, 0x5d, 0x6b, 0x8b, 0x87, 0xa5, 0xcc, 0x4f, 0xa5, 0x28, 0xfe, 0x02, 0x55, 0x24, 0xc6, 0x31, 0x90, 0x2a, 0x70, 0x48, 0xf8, 0x49, 0x08, 0x84, 0xc0, 0x13, 0x2f, 0x01, 0x3f, 0x51, 0xce, 0x1b, 0x45, 0x51, 0x2e, 0xaf, 0x70, 0x15, 0x01, 0x0c, 0x18, 0xe2, 0x87, 0x14, 0xe6, 0x81, 0xba, 0x7f, 0xdd, 0x3d, 0x3f, 0xda, 0x1e, 0xa5, 0x62, 0xfb, 0x49, 0xea, 0x73, 0xce, 0xf7, 0xf5, 0xb9, 0xe7, 0x9e, 0x7b, 0xcf, 0xb9, 0x77, 0x1a, 0xbe, 0x7e, 0x11, 0xce, 0x34, 0x6d, 0xbb, 0x69, 0xe2, 0x39, 0xc7, 0xb5, 0x7d, 0x7b, 0xaf, 0xdd, 0x98, 0xab, 0x63, 0x4f, 0x77, 0x0d, 0xc7, 0xb7, 0xdd, 0x59, 0x2a, 0x43, 0x63, 0xcc, 0x62, 0x56, 0x58, 0x4c, 0x6f, 0xc0, 0xf8, 0x15, 0xc3, 0xc4, 0x2b, 0x81, 0xe1, 0x36, 0xf6, 0xd1, 0x45, 0x48, 0x35, 0x0c, 0x13, 0x17, 0xa5, 0x33, 0xc9, 0x99, 0xdc, 0xfc, 0xa3, 0xb3, 0x5d, 0xa0, 0xd9, 0x4e, 0xc4, 0x16, 0x11, 0x2b, 0x14, 0x31, 0xfd, 0x4e, 0x0a, 0x26, 0xfa, 0x68, 0x11, 0x82, 0x94, 0xa5, 0xb5, 0x08, 0xa3, 0x34, 0x93, 0x55, 0xe8, 0xff, 0xa8, 0x08, 0x23, 0x8e, 0xa6, 0xdf, 0xd4, 0x9a, 0xb8, 0x98, 0xa0, 0x62, 0xf1, 0x88, 0x4a, 0x00, 0x75, 0xec, 0x60, 0xab, 0x8e, 0x2d, 0xfd, 0xa0, 0x98, 0x3c, 0x93, 0x9c, 0xc9, 0x2a, 0x11, 0x09, 0x7a, 0x1a, 0xc6, 0x9d, 0xf6, 0x9e, 0x69, 0xe8, 0x6a, 0xc4, 0x0c, 0xce, 0x24, 0x67, 0xd2, 0x8a, 0xcc, 0x14, 0x2b, 0xa1, 0xf1, 0x13, 0x30, 0x76, 0x1b, 0x6b, 0x37, 0xa3, 0xa6, 0x39, 0x6a, 0x5a, 0x20, 0xe2, 0x88, 0xe1, 0x32, 0xe4, 0x5b, 0xd8, 0xf3, 0xb4, 0x26, 0x56, 0xfd, 0x03, 0x07, 0x17, 0x53, 0x74, 0xf4, 0x67, 0x7a, 0x46, 0xdf, 0x3d, 0xf2, 0x1c, 0x47, 0xed, 0x1c, 0x38, 0x18, 0x55, 0x20, 0x8b, 0xad, 0x76, 0x8b, 0x31, 0xa4, 0x8f, 0x88, 0x5f, 0xd5, 0x6a, 0xb7, 0xba, 0x59, 0x32, 0x04, 0xc6, 0x29, 0x46, 0x3c, 0xec, 0xde, 0x32, 0x74, 0x5c, 0x1c, 0xa6, 0x04, 0x4f, 0xf4, 0x10, 0x6c, 0x33, 0x7d, 0x37, 0x87, 0xc0, 0xa1, 0x65, 0xc8, 0xe2, 0x97, 0x7c, 0x6c, 0x79, 0x86, 0x6d, 0x15, 0x47, 0x28, 0xc9, 0x63, 0x7d, 0x66, 0x11, 0x9b, 0xf5, 0x6e, 0x8a, 0x10, 0x87, 0xce, 0xc3, 0x88, 0xed, 0xf8, 0x86, 0x6d, 0x79, 0xc5, 0xcc, 0x19, 0x69, 0x26, 0x37, 0xff, 0x50, 0xdf, 0x44, 0xa8, 0x31, 0x1b, 0x45, 0x18, 0xa3, 0x35, 0x90, 0x3d, 0xbb, 0xed, 0xea, 0x58, 0xd5, 0xed, 0x3a, 0x56, 0x0d, 0xab, 0x61, 0x17, 0xb3, 0x94, 0xe0, 0x74, 0xef, 0x40, 0xa8, 0xe1, 0xb2, 0x5d, 0xc7, 0x6b, 0x56, 0xc3, 0x56, 0x0a, 0x5e, 0xc7, 0x33, 0x3a, 0x01, 0xc3, 0xde, 0x81, 0xe5, 0x6b, 0x2f, 0x15, 0xf3, 0x34, 0x43, 0xf8, 0xd3, 0xf4, 0x5f, 0x0d, 0xc3, 0xd8, 0x20, 0x29, 0x76, 0x19, 0xd2, 0x0d, 0x32, 0xca, 0x62, 0xe2, 0x38, 0x31, 0x60, 0x98, 0xce, 0x20, 0x0e, 0xff, 0x88, 0x41, 0xac, 0x40, 0xce, 0xc2, 0x9e, 0x8f, 0xeb, 0x2c, 0x23, 0x92, 0x03, 0xe6, 0x14, 0x30, 0x50, 0x6f, 0x4a, 0xa5, 0x7e, 0xa4, 0x94, 0xba, 0x0e, 0x63, 0x81, 0x4b, 0xaa, 0xab, 0x59, 0x4d, 0x91, 0x9b, 0x73, 0x71, 0x9e, 0xcc, 0x56, 0x05, 0x4e, 0x21, 0x30, 0xa5, 0x80, 0x3b, 0x9e, 0xd1, 0x0a, 0x80, 0x6d, 0x61, 0xbb, 0xa1, 0xd6, 0xb1, 0x6e, 0x16, 0x33, 0x47, 0x44, 0xa9, 0x46, 0x4c, 0x7a, 0xa2, 0x64, 0x33, 0xa9, 0x6e, 0xa2, 0x4b, 0x61, 0xaa, 0x8d, 0x1c, 0x91, 0x29, 0x1b, 0x6c, 0x91, 0xf5, 0x64, 0xdb, 0x2e, 0x14, 0x5c, 0x4c, 0xf2, 0x1e, 0xd7, 0xf9, 0xc8, 0xb2, 0xd4, 0x89, 0xd9, 0xd8, 0x91, 0x29, 0x1c, 0xc6, 0x06, 0x36, 0xea, 0x46, 0x1f, 0xd1, 0x23, 0x10, 0x08, 0x54, 0x9a, 0x56, 0x40, 0x77, 0xa1, 0xbc, 0x10, 0x6e, 0x6a, 0x2d, 0x3c, 0x75, 0x07, 0x0a, 0x9d, 0xe1, 0x41, 0x93, 0x90, 0xf6, 0x7c, 0xcd, 0xf5, 0x69, 0x16, 0xa6, 0x15, 0xf6, 0x80, 0x64, 0x48, 0x62, 0xab, 0x4e, 0x77, 0xb9, 0xb4, 0x42, 0xfe, 0x45, 0x3f, 0x19, 0x0e, 0x38, 0x49, 0x07, 0xfc, 0x78, 0xef, 0x8c, 0x76, 0x30, 0x77, 0x8f, 0x7b, 0xea, 0x02, 0x8c, 0x76, 0x0c, 0x60, 0xd0, 0x57, 0x4f, 0xff, 0x0c, 0x3c, 0xd0, 0x97, 0x1a, 0x5d, 0x87, 0xc9, 0xb6, 0x65, 0x58, 0x3e, 0x76, 0x1d, 0x17, 0x93, 0x8c, 0x65, 0xaf, 0x2a, 0xfe, 0xcb, 0xc8, 0x11, 0x39, 0xb7, 0x1b, 0xb5, 0x66, 0x2c, 0xca, 0x44, 0xbb, 0x57, 0xf8, 0x54, 0x36, 0xf3, 0xfd, 0x11, 0xf9, 0xee, 0xdd, 0xbb, 0x77, 0x13, 0xd3, 0x5f, 0x1c, 0x86, 0xc9, 0x7e, 0x6b, 0xa6, 0xef, 0xf2, 0x3d, 0x01, 0xc3, 0x56, 0xbb, 0xb5, 0x87, 0x5d, 0x1a, 0xa4, 0xb4, 0xc2, 0x9f, 0x50, 0x05, 0xd2, 0xa6, 0xb6, 0x87, 0xcd, 0x62, 0xea, 0x8c, 0x34, 0x53, 0x98, 0x7f, 0x7a, 0xa0, 0x55, 0x39, 0xbb, 0x4e, 0x20, 0x0a, 0x43, 0xa2, 0x4f, 0x41, 0x8a, 0x6f, 0xd1, 0x84, 0xe1, 0xa9, 0xc1, 0x18, 0xc8, 0x5a, 0x52, 0x28, 0x0e, 0x3d, 0x08, 0x59, 0xf2, 0x97, 0xe5, 0xc6, 0x30, 0xf5, 0x39, 0x43, 0x04, 0x24, 0x2f, 0xd0, 0x14, 0x64, 0xe8, 0x32, 0xa9, 0x63, 0x51, 0xda, 0x82, 0x67, 0x92, 0x58, 0x75, 0xdc, 0xd0, 0xda, 0xa6, 0xaf, 0xde, 0xd2, 0xcc, 0x36, 0xa6, 0x09, 0x9f, 0x55, 0xf2, 0x5c, 0xf8, 0x19, 0x22, 0x43, 0xa7, 0x21, 0xc7, 0x56, 0x95, 0x61, 0xd5, 0xf1, 0x4b, 0x74, 0xf7, 0x4c, 0x2b, 0x6c, 0xa1, 0xad, 0x11, 0x09, 0x79, 0xfd, 0x0d, 0xcf, 0xb6, 0x44, 0x6a, 0xd2, 0x57, 0x10, 0x01, 0x7d, 0xfd, 0x85, 0xee, 0x8d, 0xfb, 0xe1, 0xfe, 0xc3, 0xeb, 0xce, 0xa9, 0xe9, 0x6f, 0x27, 0x20, 0x45, 0xf7, 0x8b, 0x31, 0xc8, 0xed, 0xbc, 0xb8, 0x55, 0x55, 0x57, 0x6a, 0xbb, 0x4b, 0xeb, 0x55, 0x59, 0x42, 0x05, 0x00, 0x2a, 0xb8, 0xb2, 0x5e, 0xab, 0xec, 0xc8, 0x89, 0xe0, 0x79, 0x6d, 0x73, 0xe7, 0xfc, 0x82, 0x9c, 0x0c, 0x00, 0xbb, 0x4c, 0x90, 0x8a, 0x1a, 0x9c, 0x9b, 0x97, 0xd3, 0x48, 0x86, 0x3c, 0x23, 0x58, 0xbb, 0x5e, 0x5d, 0x39, 0xbf, 0x20, 0x0f, 0x77, 0x4a, 0xce, 0xcd, 0xcb, 0x23, 0x68, 0x14, 0xb2, 0x54, 0xb2, 0x54, 0xab, 0xad, 0xcb, 0x99, 0x80, 0x73, 0x7b, 0x47, 0x59, 0xdb, 0x5c, 0x95, 0xb3, 0x01, 0xe7, 0xaa, 0x52, 0xdb, 0xdd, 0x92, 0x21, 0x60, 0xd8, 0xa8, 0x6e, 0x6f, 0x57, 0x56, 0xab, 0x72, 0x2e, 0xb0, 0x58, 0x7a, 0x71, 0xa7, 0xba, 0x2d, 0xe7, 0x3b, 0xdc, 0x3a, 0x37, 0x2f, 0x8f, 0x06, 0xaf, 0xa8, 0x6e, 0xee, 0x6e, 0xc8, 0x05, 0x34, 0x0e, 0xa3, 0xec, 0x15, 0xc2, 0x89, 0xb1, 0x2e, 0xd1, 0xf9, 0x05, 0x59, 0x0e, 0x1d, 0x61, 0x2c, 0xe3, 0x1d, 0x82, 0xf3, 0x0b, 0x32, 0x9a, 0x5e, 0x86, 0x34, 0xcd, 0x2e, 0x84, 0xa0, 0xb0, 0x5e, 0x59, 0xaa, 0xae, 0xab, 0xb5, 0xad, 0x9d, 0xb5, 0xda, 0x66, 0x65, 0x5d, 0x96, 0x42, 0x99, 0x52, 0xfd, 0xf4, 0xee, 0x9a, 0x52, 0x5d, 0x91, 0x13, 0x51, 0xd9, 0x56, 0xb5, 0xb2, 0x53, 0x5d, 0x91, 0x93, 0xd3, 0x3a, 0x4c, 0xf6, 0xdb, 0x27, 0xfb, 0xae, 0x8c, 0xc8, 0x14, 0x27, 0x8e, 0x98, 0x62, 0xca, 0xd5, 0x33, 0xc5, 0x5f, 0x91, 0x60, 0xa2, 0x4f, 0xad, 0xe8, 0xfb, 0x92, 0xe7, 0x21, 0xcd, 0x52, 0x94, 0x55, 0xcf, 0x27, 0xfb, 0x16, 0x1d, 0x9a, 0xb0, 0x3d, 0x15, 0x94, 0xe2, 0xa2, 0x1d, 0x44, 0xf2, 0x88, 0x0e, 0x82, 0x50, 0xf4, 0x38, 0xf9, 0xb2, 0x04, 0xc5, 0xa3, 0xb8, 0x63, 0x36, 0x8a, 0x44, 0xc7, 0x46, 0x71, 0xb9, 0xdb, 0x81, 0xb3, 0x47, 0x8f, 0xa1, 0xc7, 0x8b, 0xd7, 0x25, 0x38, 0xd1, 0xbf, 0xd1, 0xea, 0xeb, 0xc3, 0xa7, 0x60, 0xb8, 0x85, 0xfd, 0x7d, 0x5b, 0x34, 0x1b, 0x8f, 0xf7, 0x29, 0x61, 0x44, 0xdd, 0x1d, 0x2b, 0x8e, 0x8a, 0xd6, 0xc0, 0xe4, 0x51, 0xdd, 0x12, 0xf3, 0xa6, 0xc7, 0xd3, 0xcf, 0x27, 0xe0, 0x81, 0xbe, 0xe4, 0x7d, 0x1d, 0x7d, 0x18, 0xc0, 0xb0, 0x9c, 0xb6, 0xcf, 0x1a, 0x0a, 0xb6, 0x3f, 0x65, 0xa9, 0x84, 0xae, 0x7d, 0xb2, 0xf7, 0xb4, 0xfd, 0x40, 0x9f, 0xa4, 0x7a, 0x60, 0x22, 0x6a, 0x70, 0x31, 0x74, 0x34, 0x45, 0x1d, 0x2d, 0x1d, 0x31, 0xd2, 0x9e, 0x5a, 0xfd, 0x2c, 0xc8, 0xba, 0x69, 0x60, 0xcb, 0x57, 0x3d, 0xdf, 0xc5, 0x5a, 0xcb, 0xb0, 0x9a, 0x74, 0x03, 0xce, 0x94, 0xd3, 0x0d, 0xcd, 0xf4, 0xb0, 0x32, 0xc6, 0xd4, 0xdb, 0x42, 0x4b, 0x10, 0xb4, 0xc6, 0xb9, 0x11, 0xc4, 0x70, 0x07, 0x82, 0xa9, 0x03, 0xc4, 0xf4, 0xb7, 0x32, 0x90, 0x8b, 0xb4, 0xa5, 0xe8, 0x2c, 0xe4, 0x6f, 0x68, 0xb7, 0x34, 0x55, 0x1c, 0x35, 0x58, 0x24, 0x72, 0x44, 0xb6, 0xc5, 0x8f, 0x1b, 0xcf, 0xc2, 0x24, 0x35, 0xb1, 0xdb, 0x3e, 0x76, 0x55, 0xdd, 0xd4, 0x3c, 0x8f, 0x06, 0x2d, 0x43, 0x4d, 0x11, 0xd1, 0xd5, 0x88, 0x6a, 0x59, 0x68, 0xd0, 0x22, 0x4c, 0x50, 0x44, 0xab, 0x6d, 0xfa, 0x86, 0x63, 0x62, 0x95, 0x1c, 0x7e, 0x3c, 0xba, 0x11, 0x07, 0x9e, 0x8d, 0x13, 0x8b, 0x0d, 0x6e, 0x40, 0x3c, 0xf2, 0xd0, 0x0a, 0x3c, 0x4c, 0x61, 0x4d, 0x6c, 0x61, 0x57, 0xf3, 0xb1, 0x8a, 0x3f, 0xd7, 0xd6, 0x4c, 0x4f, 0xd5, 0xac, 0xba, 0xba, 0xaf, 0x79, 0xfb, 0xc5, 0x49, 0x42, 0xb0, 0x94, 0x28, 0x4a, 0xca, 0x29, 0x62, 0xb8, 0xca, 0xed, 0xaa, 0xd4, 0xac, 0x62, 0xd5, 0xaf, 0x6a, 0xde, 0x3e, 0x2a, 0xc3, 0x09, 0xca, 0xe2, 0xf9, 0xae, 0x61, 0x35, 0x55, 0x7d, 0x1f, 0xeb, 0x37, 0xd5, 0xb6, 0xdf, 0xb8, 0x58, 0x7c, 0x30, 0xfa, 0x7e, 0xea, 0xe1, 0x36, 0xb5, 0x59, 0x26, 0x26, 0xbb, 0x7e, 0xe3, 0x22, 0xda, 0x86, 0x3c, 0x99, 0x8c, 0x96, 0x71, 0x07, 0xab, 0x0d, 0xdb, 0xa5, 0x95, 0xa5, 0xd0, 0x67, 0x65, 0x47, 0x22, 0x38, 0x5b, 0xe3, 0x80, 0x0d, 0xbb, 0x8e, 0xcb, 0xe9, 0xed, 0xad, 0x6a, 0x75, 0x45, 0xc9, 0x09, 0x96, 0x2b, 0xb6, 0x4b, 0x12, 0xaa, 0x69, 0x07, 0x01, 0xce, 0xb1, 0x84, 0x6a, 0xda, 0x22, 0xbc, 0x8b, 0x30, 0xa1, 0xeb, 0x6c, 0xcc, 0x86, 0xae, 0xf2, 0x23, 0x8a, 0x57, 0x94, 0x3b, 0x82, 0xa5, 0xeb, 0xab, 0xcc, 0x80, 0xe7, 0xb8, 0x87, 0x2e, 0xc1, 0x03, 0x61, 0xb0, 0xa2, 0xc0, 0xf1, 0x9e, 0x51, 0x76, 0x43, 0x17, 0x61, 0xc2, 0x39, 0xe8, 0x05, 0xa2, 0x8e, 0x37, 0x3a, 0x07, 0xdd, 0xb0, 0x0b, 0x30, 0xe9, 0xec, 0x3b, 0xbd, 0xb8, 0x89, 0x28, 0x0e, 0x39, 0xfb, 0x4e, 0x37, 0xf0, 0x31, 0x7a, 0x5e, 0x75, 0xb1, 0xae, 0xf9, 0xb8, 0x5e, 0x3c, 0x19, 0x35, 0x8f, 0x28, 0xd0, 0x1c, 0xc8, 0xba, 0xae, 0x62, 0x4b, 0xdb, 0x33, 0xb1, 0xaa, 0xb9, 0xd8, 0xd2, 0xbc, 0xe2, 0xe9, 0xa8, 0x71, 0x41, 0xd7, 0xab, 0x54, 0x5b, 0xa1, 0x4a, 0xf4, 0x14, 0x8c, 0xdb, 0x7b, 0x37, 0x74, 0x96, 0x92, 0xaa, 0xe3, 0xe2, 0x86, 0xf1, 0x52, 0xf1, 0x51, 0x1a, 0xdf, 0x31, 0xa2, 0xa0, 0x09, 0xb9, 0x45, 0xc5, 0xe8, 0x49, 0x90, 0x75, 0x6f, 0x5f, 0x73, 0x1d, 0xda, 0x13, 0x78, 0x8e, 0xa6, 0xe3, 0xe2, 0x63, 0xcc, 0x94, 0xc9, 0x37, 0x85, 0x98, 0x2c, 0x09, 0xef, 0xb6, 0xd1, 0xf0, 0x05, 0xe3, 0x13, 0x6c, 0x49, 0x50, 0x19, 0x67, 0x9b, 0x01, 0x99, 0x84, 0xa2, 0xe3, 0xc5, 0x33, 0xd4, 0xac, 0xe0, 0xec, 0x3b, 0xd1, 0xf7, 0x3e, 0x02, 0xa3, 0xc4, 0x32, 0x7c, 0xe9, 0x93, 0xac, 0x9f, 0x71, 0xf6, 0x23, 0x6f, 0xfc, 0xd0, 0x5a, 0xcb, 0xe9, 0x32, 0xe4, 0xa3, 0xf9, 0x89, 0xb2, 0xc0, 0x32, 0x54, 0x96, 0x48, 0xad, 0x5f, 0xae, 0xad, 0x90, 0x2a, 0xfd, 0xd9, 0xaa, 0x9c, 0x20, 0xdd, 0xc2, 0xfa, 0xda, 0x4e, 0x55, 0x55, 0x76, 0x37, 0x77, 0xd6, 0x36, 0xaa, 0x72, 0x32, 0xda, 0x96, 0x7e, 0x37, 0x01, 0x85, 0xce, 0x13, 0x06, 0xfa, 0x09, 0x38, 0x29, 0xae, 0x03, 0x3c, 0xec, 0xab, 0xb7, 0x0d, 0x97, 0x2e, 0x99, 0x96, 0xc6, 0x3a, 0xec, 0x60, 0xd2, 0x26, 0xb9, 0xd5, 0x36, 0xf6, 0x5f, 0x30, 0x5c, 0xb2, 0x20, 0x5a, 0x9a, 0x8f, 0xd6, 0xe1, 0xb4, 0x65, 0xab, 0x9e, 0xaf, 0x59, 0x75, 0xcd, 0xad, 0xab, 0xe1, 0x45, 0x8c, 0xaa, 0xe9, 0x3a, 0xf6, 0x3c, 0x9b, 0x95, 0xaa, 0x80, 0xe5, 0x21, 0xcb, 0xde, 0xe6, 0xc6, 0xe1, 0x1e, 0x5e, 0xe1, 0xa6, 0x5d, 0x09, 0x96, 0x3c, 0x2a, 0xc1, 0x1e, 0x84, 0x6c, 0x4b, 0x73, 0x54, 0x6c, 0xf9, 0xee, 0x01, 0xed, 0x2b, 0x33, 0x4a, 0xa6, 0xa5, 0x39, 0x55, 0xf2, 0xfc, 0xd1, 0xb4, 0xf7, 0xff, 0x94, 0x84, 0x7c, 0xb4, 0xb7, 0x24, 0xad, 0xba, 0x4e, 0xeb, 0x88, 0x44, 0x77, 0x9a, 0x47, 0xee, 0xdb, 0x89, 0xce, 0x2e, 0x93, 0x02, 0x53, 0x1e, 0x66, 0x1d, 0x9f, 0xc2, 0x90, 0xa4, 0xb8, 0x93, 0xbd, 0x05, 0xb3, 0x53, 0x4c, 0x46, 0xe1, 0x4f, 0x68, 0x15, 0x86, 0x6f, 0x78, 0x94, 0x7b, 0x98, 0x72, 0x3f, 0x7a, 0x7f, 0xee, 0x6b, 0xdb, 0x94, 0x3c, 0x7b, 0x6d, 0x5b, 0xdd, 0xac, 0x29, 0x1b, 0x95, 0x75, 0x85, 0xc3, 0xd1, 0x29, 0x48, 0x99, 0xda, 0x9d, 0x83, 0xce, 0x52, 0x44, 0x45, 0x83, 0x06, 0xfe, 0x14, 0xa4, 0x6e, 0x63, 0xed, 0x66, 0x67, 0x01, 0xa0, 0xa2, 0x0f, 0x31, 0xf5, 0xe7, 0x20, 0x4d, 0xe3, 0x85, 0x00, 0x78, 0xc4, 0xe4, 0x21, 0x94, 0x81, 0xd4, 0x72, 0x4d, 0x21, 0xe9, 0x2f, 0x43, 0x9e, 0x49, 0xd5, 0xad, 0xb5, 0xea, 0x72, 0x55, 0x4e, 0x4c, 0x2f, 0xc2, 0x30, 0x0b, 0x02, 0x59, 0x1a, 0x41, 0x18, 0xe4, 0x21, 0xfe, 0xc8, 0x39, 0x24, 0xa1, 0xdd, 0xdd, 0x58, 0xaa, 0x2a, 0x72, 0x22, 0x3a, 0xbd, 0x1e, 0xe4, 0xa3, 0x6d, 0xe5, 0x47, 0x93, 0x53, 0x7f, 0x2d, 0x41, 0x2e, 0xd2, 0x26, 0x92, 0x06, 0x45, 0x33, 0x4d, 0xfb, 0xb6, 0xaa, 0x99, 0x86, 0xe6, 0xf1, 0xa4, 0x00, 0x2a, 0xaa, 0x10, 0xc9, 0xa0, 0x93, 0xf6, 0x91, 0x38, 0xff, 0x9a, 0x04, 0x72, 0x77, 0x8b, 0xd9, 0xe5, 0xa0, 0xf4, 0xb1, 0x3a, 0xf8, 0xaa, 0x04, 0x85, 0xce, 0xbe, 0xb2, 0xcb, 0xbd, 0xb3, 0x1f, 0xab, 0x7b, 0x6f, 0x27, 0x60, 0xb4, 0xa3, 0x9b, 0x1c, 0xd4, 0xbb, 0xcf, 0xc1, 0xb8, 0x51, 0xc7, 0x2d, 0xc7, 0xf6, 0xb1, 0xa5, 0x1f, 0xa8, 0x26, 0xbe, 0x85, 0xcd, 0xe2, 0x34, 0xdd, 0x28, 0xe6, 0xee, 0xdf, 0xaf, 0xce, 0xae, 0x85, 0xb8, 0x75, 0x02, 0x2b, 0x4f, 0xac, 0xad, 0x54, 0x37, 0xb6, 0x6a, 0x3b, 0xd5, 0xcd, 0xe5, 0x17, 0xd5, 0xdd, 0xcd, 0x9f, 0xda, 0xac, 0xbd, 0xb0, 0xa9, 0xc8, 0x46, 0x97, 0xd9, 0x87, 0xb8, 0xd4, 0xb7, 0x40, 0xee, 0x76, 0x0a, 0x9d, 0x84, 0x7e, 0x6e, 0xc9, 0x43, 0x68, 0x02, 0xc6, 0x36, 0x6b, 0xea, 0xf6, 0xda, 0x4a, 0x55, 0xad, 0x5e, 0xb9, 0x52, 0x5d, 0xde, 0xd9, 0x66, 0x07, 0xf8, 0xc0, 0x7a, 0xa7, 0x73, 0x51, 0xbf, 0x92, 0x84, 0x89, 0x3e, 0x9e, 0xa0, 0x0a, 0x3f, 0x3b, 0xb0, 0xe3, 0xcc, 0x33, 0x83, 0x78, 0x3f, 0x4b, 0x4a, 0xfe, 0x96, 0xe6, 0xfa, 0xfc, 0xa8, 0xf1, 0x24, 0x90, 0x28, 0x59, 0xbe, 0xd1, 0x30, 0xb0, 0xcb, 0xef, 0x3b, 0xd8, 0x81, 0x62, 0x2c, 0x94, 0xb3, 0x2b, 0x8f, 0x4f, 0x00, 0x72, 0x6c, 0xcf, 0xf0, 0x8d, 0x5b, 0x58, 0x35, 0x2c, 0x71, 0x39, 0x42, 0x0e, 0x18, 0x29, 0x45, 0x16, 0x9a, 0x35, 0xcb, 0x0f, 0xac, 0x2d, 0xdc, 0xd4, 0xba, 0xac, 0xc9, 0x06, 0x9e, 0x54, 0x64, 0xa1, 0x09, 0xac, 0xcf, 0x42, 0xbe, 0x6e, 0xb7, 0x49, 0xd7, 0xc5, 0xec, 0x48, 0xbd, 0x90, 0x94, 0x1c, 0x93, 0x05, 0x26, 0xbc, 0x9f, 0x0e, 0x6f, 0x65, 0xf2, 0x4a, 0x8e, 0xc9, 0x98, 0xc9, 0x13, 0x30, 0xa6, 0x35, 0x9b, 0x2e, 0x21, 0x17, 0x44, 0xec, 0x84, 0x50, 0x08, 0xc4, 0xd4, 0x70, 0xea, 0x1a, 0x64, 0x44, 0x1c, 0x48, 0x49, 0x26, 0x91, 0x50, 0x1d, 0x76, 0x33, 0x97, 0x98, 0xc9, 0x2a, 0x19, 0x4b, 0x28, 0xcf, 0x42, 0xde, 0xf0, 0xd4, 0xf0, 0x92, 0x39, 0x71, 0x26, 0x31, 0x93, 0x51, 0x72, 0x86, 0x17, 0x5c, 0xd0, 0x4d, 0xbf, 0x9e, 0x80, 0x42, 0xe7, 0x25, 0x39, 0x5a, 0x81, 0x8c, 0x69, 0xeb, 0x1a, 0x4d, 0x2d, 0xf6, 0x0b, 0xcd, 0x4c, 0xcc, 0xbd, 0xfa, 0xec, 0x3a, 0xb7, 0x57, 0x02, 0xe4, 0xd4, 0xdf, 0x4b, 0x90, 0x11, 0x62, 0x74, 0x02, 0x52, 0x8e, 0xe6, 0xef, 0x53, 0xba, 0xf4, 0x52, 0x42, 0x96, 0x14, 0xfa, 0x4c, 0xe4, 0x9e, 0xa3, 0x59, 0x34, 0x05, 0xb8, 0x9c, 0x3c, 0x93, 0x79, 0x35, 0xb1, 0x56, 0xa7, 0xc7, 0x0f, 0xbb, 0xd5, 0xc2, 0x96, 0xef, 0x89, 0x79, 0xe5, 0xf2, 0x65, 0x2e, 0x46, 0x4f, 0xc3, 0xb8, 0xef, 0x6a, 0x86, 0xd9, 0x61, 0x9b, 0xa2, 0xb6, 0xb2, 0x50, 0x04, 0xc6, 0x65, 0x38, 0x25, 0x78, 0xeb, 0xd8, 0xd7, 0xf4, 0x7d, 0x5c, 0x0f, 0x41, 0xc3, 0xf4, 0x06, 0xf6, 0x24, 0x37, 0x58, 0xe1, 0x7a, 0x81, 0x9d, 0xfe, 0x9e, 0x04, 0xe3, 0xe2, 0xc0, 0x54, 0x0f, 0x82, 0xb5, 0x01, 0xa0, 0x59, 0x96, 0xed, 0x47, 0xc3, 0xd5, 0x9b, 0xca, 0x3d, 0xb8, 0xd9, 0x4a, 0x00, 0x52, 0x22, 0x04, 0x53, 0x2d, 0x80, 0x50, 0x73, 0x64, 0xd8, 0x4e, 0x43, 0x8e, 0xff, 0x02, 0x42, 0x7f, 0x46, 0x63, 0x47, 0x6c, 0x60, 0x22, 0x72, 0xb2, 0x42, 0x93, 0x90, 0xde, 0xc3, 0x4d, 0xc3, 0xe2, 0xf7, 0x9a, 0xec, 0x41, 0xdc, 0xd5, 0xa6, 0x82, 0xbb, 0xda, 0xa5, 0xeb, 0x30, 0xa1, 0xdb, 0xad, 0x6e, 0x77, 0x97, 0xe4, 0xae, 0x63, 0xbe, 0x77, 0x55, 0xfa, 0x2c, 0x84, 0x2d, 0xe6, 0x57, 0x12, 0xc9, 0xd5, 0xad, 0xa5, 0xaf, 0x25, 0xa6, 0x56, 0x19, 0x6e, 0x4b, 0x0c, 0x53, 0xc1, 0x0d, 0x13, 0xeb, 0xc4, 0x75, 0xf8, 0xc1, 0xe3, 0xf0, 0x4c, 0xd3, 0xf0, 0xf7, 0xdb, 0x7b, 0xb3, 0xba, 0xdd, 0x9a, 0x6b, 0xda, 0x4d, 0x3b, 0xfc, 0xd9, 0x90, 0x3c, 0xd1, 0x07, 0xfa, 0x1f, 0xff, 0xe9, 0x30, 0x1b, 0x48, 0xa7, 0x62, 0x7f, 0x67, 0x2c, 0x6f, 0xc2, 0x04, 0x37, 0x56, 0xe9, 0x6f, 0x17, 0xec, 0x08, 0x81, 0xee, 0x7b, 0xff, 0x53, 0xfc, 0xe6, 0x3b, 0xb4, 0x56, 0x2b, 0xe3, 0x1c, 0x4a, 0x74, 0xec, 0x94, 0x51, 0x56, 0xe0, 0x81, 0x0e, 0x3e, 0xb6, 0x2e, 0xb1, 0x1b, 0xc3, 0xf8, 0x5d, 0xce, 0x38, 0x11, 0x61, 0xdc, 0xe6, 0xd0, 0xf2, 0x32, 0x8c, 0x1e, 0x87, 0xeb, 0x6f, 0x39, 0x57, 0x1e, 0x47, 0x49, 0x56, 0x61, 0x8c, 0x92, 0xe8, 0x6d, 0xcf, 0xb7, 0x5b, 0x74, 0xd3, 0xbb, 0x3f, 0xcd, 0xdf, 0xbd, 0xc3, 0x16, 0x4a, 0x81, 0xc0, 0x96, 0x03, 0x54, 0xb9, 0x0c, 0xf4, 0xe7, 0x9a, 0x3a, 0xd6, 0xcd, 0x18, 0x86, 0x37, 0xb8, 0x23, 0x81, 0x7d, 0xf9, 0x33, 0x30, 0x49, 0xfe, 0xa7, 0x7b, 0x52, 0xd4, 0x93, 0xf8, 0xdb, 0xae, 0xe2, 0xf7, 0x5e, 0x66, 0x6b, 0x71, 0x22, 0x20, 0x88, 0xf8, 0x14, 0x99, 0xc5, 0x26, 0xf6, 0x7d, 0xec, 0x7a, 0xaa, 0x66, 0xf6, 0x73, 0x2f, 0x72, 0x5d, 0x50, 0xfc, 0xd2, 0xbb, 0x9d, 0xb3, 0xb8, 0xca, 0x90, 0x15, 0xd3, 0x2c, 0xef, 0xc2, 0xc9, 0x3e, 0x59, 0x31, 0x00, 0xe7, 0x2b, 0x9c, 0x73, 0xb2, 0x27, 0x33, 0x08, 0xed, 0x16, 0x08, 0x79, 0x30, 0x97, 0x03, 0x70, 0xfe, 0x36, 0xe7, 0x44, 0x1c, 0x2b, 0xa6, 0x94, 0x30, 0x5e, 0x83, 0xf1, 0x5b, 0xd8, 0xdd, 0xb3, 0x3d, 0x7e, 0x45, 0x33, 0x00, 0xdd, 0xab, 0x9c, 0x6e, 0x8c, 0x03, 0xe9, 0x9d, 0x0d, 0xe1, 0xba, 0x04, 0x99, 0x86, 0xa6, 0xe3, 0x01, 0x28, 0xbe, 0xcc, 0x29, 0x46, 0x88, 0x3d, 0x81, 0x56, 0x20, 0xdf, 0xb4, 0x79, 0x59, 0x8a, 0x87, 0xbf, 0xc6, 0xe1, 0x39, 0x81, 0xe1, 0x14, 0x8e, 0xed, 0xb4, 0x4d, 0x52, 0xb3, 0xe2, 0x29, 0x7e, 0x47, 0x50, 0x08, 0x0c, 0xa7, 0x38, 0x46, 0x58, 0x7f, 0x57, 0x50, 0x78, 0x91, 0x78, 0x3e, 0x0f, 0x39, 0xdb, 0x32, 0x0f, 0x6c, 0x6b, 0x10, 0x27, 0x7e, 0x8f, 0x33, 0x00, 0x87, 0x10, 0x82, 0xcb, 0x90, 0x1d, 0x74, 0x22, 0x7e, 0xff, 0x5d, 0xb1, 0x3c, 0xc4, 0x0c, 0xac, 0xc2, 0x98, 0xd8, 0xa0, 0x0c, 0xdb, 0x1a, 0x80, 0xe2, 0x0f, 0x38, 0x45, 0x21, 0x02, 0xe3, 0xc3, 0xf0, 0xb1, 0xe7, 0x37, 0xf1, 0x20, 0x24, 0xaf, 0x8b, 0x61, 0x70, 0x08, 0x0f, 0xe5, 0x1e, 0xb6, 0xf4, 0xfd, 0xc1, 0x18, 0xbe, 0x2a, 0x42, 0x29, 0x30, 0x84, 0x62, 0x19, 0x46, 0x5b, 0x9a, 0xeb, 0xed, 0x6b, 0xe6, 0x40, 0xd3, 0xf1, 0x87, 0x9c, 0x23, 0x1f, 0x80, 0x78, 0x44, 0xda, 0xd6, 0x71, 0x68, 0xbe, 0x26, 0x22, 0x12, 0x81, 0xf1, 0xa5, 0xe7, 0xf9, 0xf4, 0x3e, 0xeb, 0x38, 0x6c, 0x5f, 0x17, 0x4b, 0x8f, 0x61, 0x37, 0xa2, 0x8c, 0x97, 0x21, 0xeb, 0x19, 0x77, 0x06, 0xa2, 0xf9, 0x23, 0x31, 0xd3, 0x14, 0x40, 0xc0, 0x2f, 0xc2, 0xa9, 0xbe, 0x65, 0x62, 0x00, 0xb2, 0x3f, 0xe6, 0x64, 0x27, 0xfa, 0x94, 0x0a, 0xbe, 0x25, 0x1c, 0x97, 0xf2, 0x4f, 0xc4, 0x96, 0x80, 0xbb, 0xb8, 0xb6, 0xc8, 0x41, 0xc1, 0xd3, 0x1a, 0xc7, 0x8b, 0xda, 0x9f, 0x8a, 0xa8, 0x31, 0x6c, 0x47, 0xd4, 0x76, 0xe0, 0x04, 0x67, 0x3c, 0xde, 0xbc, 0x7e, 0x43, 0x6c, 0xac, 0x0c, 0xbd, 0xdb, 0x39, 0xbb, 0x3f, 0x0d, 0x53, 0x41, 0x38, 0x45, 0x47, 0xea, 0xa9, 0x2d, 0xcd, 0x19, 0x80, 0xf9, 0x9b, 0x9c, 0x59, 0xec, 0xf8, 0x41, 0x4b, 0xeb, 0x6d, 0x68, 0x0e, 0x21, 0xbf, 0x0e, 0x45, 0x41, 0xde, 0xb6, 0x5c, 0xac, 0xdb, 0x4d, 0xcb, 0xb8, 0x83, 0xeb, 0x03, 0x50, 0xff, 0x59, 0xd7, 0x54, 0xed, 0x46, 0xe0, 0x84, 0x79, 0x0d, 0xe4, 0xa0, 0x57, 0x51, 0x8d, 0x96, 0x63, 0xbb, 0x7e, 0x0c, 0xe3, 0xb7, 0xc4, 0x4c, 0x05, 0xb8, 0x35, 0x0a, 0x2b, 0x57, 0xa1, 0x40, 0x1f, 0x07, 0x4d, 0xc9, 0x3f, 0xe7, 0x44, 0xa3, 0x21, 0x8a, 0x6f, 0x1c, 0xba, 0xdd, 0x72, 0x34, 0x77, 0x90, 0xfd, 0xef, 0x2f, 0xc4, 0xc6, 0xc1, 0x21, 0x7c, 0xe3, 0xf0, 0x0f, 0x1c, 0x4c, 0xaa, 0xfd, 0x00, 0x0c, 0xdf, 0x16, 0x1b, 0x87, 0xc0, 0x70, 0x0a, 0xd1, 0x30, 0x0c, 0x40, 0xf1, 0x97, 0x82, 0x42, 0x60, 0x08, 0xc5, 0xa7, 0xc3, 0x42, 0xeb, 0xe2, 0xa6, 0xe1, 0xf9, 0x2e, 0xeb, 0x83, 0xef, 0x4f, 0xf5, 0x9d, 0x77, 0x3b, 0x9b, 0x30, 0x25, 0x02, 0x2d, 0x5f, 0x83, 0xb1, 0xae, 0x16, 0x03, 0xc5, 0x7d, 0xfb, 0x51, 0xfc, 0xd9, 0xf7, 0xf9, 0x66, 0xd4, 0xd9, 0x61, 0x94, 0xd7, 0xc9, 0xbc, 0x77, 0xf6, 0x01, 0xf1, 0x64, 0x2f, 0xbf, 0x1f, 0x4c, 0x7d, 0x47, 0x1b, 0x50, 0xbe, 0x02, 0xa3, 0x1d, 0x3d, 0x40, 0x3c, 0xd5, 0xcf, 0x71, 0xaa, 0x7c, 0xb4, 0x05, 0x28, 0x2f, 0x42, 0x8a, 0xd4, 0xf3, 0x78, 0xf8, 0xcf, 0x73, 0x38, 0x35, 0x2f, 0x7f, 0x12, 0x32, 0xa2, 0x8e, 0xc7, 0x43, 0x7f, 0x81, 0x43, 0x03, 0x08, 0x81, 0x8b, 0x1a, 0x1e, 0x0f, 0xff, 0x45, 0x01, 0x17, 0x10, 0x02, 0x1f, 0x3c, 0x84, 0x7f, 0xf3, 0x4b, 0x29, 0xbe, 0x0f, 0x8b, 0xd8, 0x5d, 0x86, 0x11, 0x5e, 0xbc, 0xe3, 0xd1, 0x9f, 0xe7, 0x2f, 0x17, 0x88, 0xf2, 0x05, 0x48, 0x0f, 0x18, 0xf0, 0x5f, 0xe6, 0x50, 0x66, 0x5f, 0x5e, 0x86, 0x5c, 0xa4, 0x60, 0xc7, 0xc3, 0x7f, 0x85, 0xc3, 0xa3, 0x28, 0xe2, 0x3a, 0x2f, 0xd8, 0xf1, 0x04, 0xbf, 0x2a, 0x5c, 0xe7, 0x08, 0x12, 0x36, 0x51, 0xab, 0xe3, 0xd1, 0xbf, 0x26, 0xa2, 0x2e, 0x20, 0xe5, 0xe7, 0x21, 0x1b, 0xec, 0xbf, 0xf1, 0xf8, 0x5f, 0xe7, 0xf8, 0x10, 0x43, 0x22, 0x10, 0xd9, 0xff, 0xe3, 0x29, 0xbe, 0x20, 0x22, 0x10, 0x41, 0x91, 0x65, 0xd4, 0x5d, 0xd3, 0xe3, 0x99, 0x7e, 0x43, 0x2c, 0xa3, 0xae, 0x92, 0x4e, 0x66, 0x93, 0x6e, 0x83, 0xf1, 0x14, 0xbf, 0x29, 0x66, 0x93, 0xda, 0x13, 0x37, 0xba, 0x8b, 0x64, 0x3c, 0xc7, 0x6f, 0x09, 0x37, 0xba, 0x6a, 0x64, 0x79, 0x0b, 0x50, 0x6f, 0x81, 0x8c, 0xe7, 0xfb, 0x22, 0xe7, 0x1b, 0xef, 0xa9, 0x8f, 0xe5, 0x17, 0xe0, 0x44, 0xff, 0xe2, 0x18, 0xcf, 0xfa, 0xa5, 0xf7, 0xbb, 0x8e, 0x33, 0xd1, 0xda, 0x58, 0xde, 0x09, 0x77, 0xd9, 0x68, 0x61, 0x8c, 0xa7, 0x7d, 0xe5, 0xfd, 0xce, 0x8d, 0x36, 0x5a, 0x17, 0xcb, 0x15, 0x80, 0xb0, 0x26, 0xc5, 0x73, 0xbd, 0xca, 0xb9, 0x22, 0x20, 0xb2, 0x34, 0x78, 0x49, 0x8a, 0xc7, 0x7f, 0x59, 0x2c, 0x0d, 0x8e, 0x20, 0x4b, 0x43, 0x54, 0xa3, 0x78, 0xf4, 0x6b, 0x62, 0x69, 0x08, 0x48, 0xf9, 0x32, 0x64, 0xac, 0xb6, 0x69, 0x92, 0xdc, 0x42, 0xf7, 0xff, 0x9c, 0xa9, 0xf8, 0xaf, 0x1f, 0x70, 0xb0, 0x00, 0x94, 0x17, 0x21, 0x8d, 0x5b, 0x7b, 0xb8, 0x1e, 0x87, 0xfc, 0xb7, 0x0f, 0xc4, 0x7e, 0x42, 0xac, 0xcb, 0xcf, 0x03, 0xb0, 0xc3, 0x34, 0xfd, 0x95, 0x28, 0x06, 0xfb, 0xef, 0x1f, 0xf0, 0x2f, 0x25, 0x42, 0x48, 0x48, 0xc0, 0xbe, 0xbb, 0xb8, 0x3f, 0xc1, 0xbb, 0x9d, 0x04, 0xf4, 0x00, 0x7e, 0x09, 0x46, 0x6e, 0x78, 0xb6, 0xe5, 0x6b, 0xcd, 0x38, 0xf4, 0x7f, 0x70, 0xb4, 0xb0, 0x27, 0x01, 0x6b, 0xd9, 0x2e, 0xf6, 0xb5, 0xa6, 0x17, 0x87, 0xfd, 0x4f, 0x8e, 0x0d, 0x00, 0x04, 0xac, 0x6b, 0x9e, 0x3f, 0xc8, 0xb8, 0xff, 0x4b, 0x80, 0x05, 0x80, 0x38, 0x4d, 0xfe, 0xbf, 0x89, 0x0f, 0xe2, 0xb0, 0xef, 0x09, 0xa7, 0xb9, 0x7d, 0xf9, 0x93, 0x90, 0x25, 0xff, 0xb2, 0xaf, 0x87, 0x62, 0xc0, 0xff, 0xcd, 0xc1, 0x21, 0x82, 0xbc, 0xd9, 0xf3, 0xeb, 0xbe, 0x11, 0x1f, 0xec, 0xff, 0xe1, 0x33, 0x2d, 0xec, 0xcb, 0x15, 0xc8, 0x79, 0x7e, 0xbd, 0xde, 0xe6, 0x1d, 0x4d, 0x0c, 0xfc, 0x07, 0x1f, 0x04, 0x87, 0xdc, 0x00, 0xb3, 0x74, 0xb6, 0xff, 0x65, 0x1d, 0xac, 0xda, 0xab, 0x36, 0xbb, 0xa6, 0x83, 0xff, 0xcb, 0xc0, 0x43, 0xba, 0xdd, 0xda, 0xb3, 0xbd, 0xb9, 0xc8, 0x36, 0x34, 0x67, 0x5b, 0xdc, 0x1e, 0x25, 0x6d, 0x0b, 0x4f, 0x1d, 0xef, 0x62, 0x6e, 0xfa, 0x14, 0xa4, 0xb7, 0xdb, 0x7b, 0x7b, 0x07, 0x48, 0x86, 0xa4, 0xd7, 0xde, 0xe3, 0x5f, 0xb8, 0x90, 0x7f, 0xa7, 0xdf, 0x4a, 0xc2, 0x68, 0xc5, 0x34, 0x77, 0x0e, 0x1c, 0xec, 0xd5, 0x2c, 0x5c, 0x6b, 0xa0, 0x22, 0x0c, 0xd3, 0x91, 0x3c, 0x47, 0xcd, 0xa4, 0xab, 0x43, 0x0a, 0x7f, 0x0e, 0x34, 0xf3, 0xf4, 0xbe, 0x32, 0x11, 0x68, 0xe6, 0x03, 0xcd, 0x39, 0x76, 0x5d, 0x19, 0x68, 0xce, 0x05, 0x9a, 0x05, 0x7a, 0x69, 0x99, 0x0c, 0x34, 0x0b, 0x81, 0x66, 0x91, 0x5e, 0xca, 0x8f, 0x06, 0x9a, 0xc5, 0x40, 0x73, 0x9e, 0x5e, 0xc3, 0xa7, 0x02, 0xcd, 0xf9, 0x40, 0x73, 0x81, 0xde, 0xbe, 0x8f, 0x07, 0x9a, 0x0b, 0x81, 0xe6, 0x22, 0xbd, 0x71, 0x47, 0x81, 0xe6, 0x62, 0xa0, 0xb9, 0x44, 0x3f, 0x65, 0x19, 0x09, 0x34, 0x97, 0xd0, 0x14, 0x8c, 0xb0, 0x91, 0x3d, 0x4b, 0x7f, 0x96, 0x1d, 0xbb, 0x3a, 0xa4, 0x08, 0x41, 0xa8, 0x7b, 0x8e, 0x7e, 0xae, 0x32, 0x1c, 0xea, 0x9e, 0x0b, 0x75, 0xf3, 0xf4, 0xa3, 0x73, 0x39, 0xd4, 0xcd, 0x87, 0xba, 0x73, 0xc5, 0x51, 0x92, 0x00, 0xa1, 0xee, 0x5c, 0xa8, 0x5b, 0x28, 0x16, 0xc8, 0x0c, 0x84, 0xba, 0x85, 0x50, 0xb7, 0x58, 0x1c, 0x3b, 0x23, 0xcd, 0xe4, 0x43, 0xdd, 0x22, 0x7a, 0x06, 0x72, 0x5e, 0x7b, 0x4f, 0xe5, 0x5f, 0x11, 0xd0, 0xcf, 0x62, 0x72, 0xf3, 0x30, 0x4b, 0x72, 0x82, 0x4e, 0xeb, 0xd5, 0x21, 0x05, 0xbc, 0xf6, 0x1e, 0xdf, 0x21, 0x97, 0xf2, 0x40, 0x2f, 0x14, 0x54, 0xfa, 0x31, 0xe8, 0xf4, 0x9b, 0x12, 0x64, 0x77, 0x6e, 0xdb, 0xf4, 0x47, 0x59, 0xef, 0xc7, 0x3c, 0xb9, 0xc2, 0xe9, 0x73, 0x0b, 0xf4, 0x77, 0xb3, 0xec, 0x55, 0x49, 0x11, 0x82, 0x50, 0xb7, 0x58, 0x7c, 0x84, 0x0e, 0x28, 0xd0, 0x2d, 0xa2, 0x39, 0xc8, 0x47, 0x06, 0x34, 0x4f, 0x3f, 0x58, 0xe9, 0x1c, 0x91, 0xa4, 0xe4, 0xc2, 0x11, 0xcd, 0x2f, 0xa5, 0x81, 0xa4, 0x3d, 0xf9, 0xe3, 0xdf, 0xb6, 0xa7, 0xbf, 0x90, 0x80, 0x1c, 0xbb, 0x83, 0xa4, 0xa3, 0x22, 0xaf, 0x62, 0x3d, 0xf9, 0x01, 0x77, 0x63, 0x48, 0x11, 0x02, 0xa4, 0x00, 0x30, 0x53, 0x92, 0xe1, 0xcc, 0x93, 0xa5, 0x67, 0xff, 0xf1, 0xad, 0xd3, 0x9f, 0x38, 0x72, 0x05, 0x91, 0xd8, 0xcd, 0xb1, 0x1d, 0x76, 0x76, 0xd7, 0xb0, 0xfc, 0xe7, 0xe6, 0x2f, 0x92, 0x00, 0x87, 0x2c, 0x68, 0x17, 0x32, 0xcb, 0x9a, 0x47, 0x3f, 0x75, 0xa3, 0xae, 0xa7, 0x96, 0x2e, 0xfc, 0xef, 0x5b, 0xa7, 0xcf, 0xc5, 0x30, 0xf2, 0xcd, 0x6f, 0x76, 0xe3, 0x80, 0xb0, 0x9e, 0x5f, 0x20, 0xf0, 0xab, 0x43, 0x4a, 0x40, 0x85, 0xe6, 0x85, 0xab, 0x9b, 0x5a, 0x8b, 0x7d, 0x99, 0x93, 0x5c, 0x92, 0x0f, 0xdf, 0x3a, 0x9d, 0xdf, 0x38, 0x08, 0xe5, 0xa1, 0x2b, 0xe4, 0x69, 0x29, 0x03, 0xc3, 0xcc, 0xd5, 0xa5, 0x95, 0x37, 0xee, 0x95, 0x86, 0xde, 0xbc, 0x57, 0x1a, 0xfa, 0x87, 0x7b, 0xa5, 0xa1, 0xb7, 0xef, 0x95, 0xa4, 0xf7, 0xee, 0x95, 0xa4, 0x1f, 0xde, 0x2b, 0x49, 0x77, 0x0f, 0x4b, 0xd2, 0x57, 0x0f, 0x4b, 0xd2, 0x37, 0x0e, 0x4b, 0xd2, 0x77, 0x0e, 0x4b, 0xd2, 0x1b, 0x87, 0xa5, 0xa1, 0x37, 0x0f, 0x4b, 0xd2, 0xdb, 0x87, 0x25, 0xe9, 0xfb, 0x87, 0xa5, 0xa1, 0xf7, 0x0e, 0x4b, 0xd2, 0x0f, 0x0f, 0x4b, 0x43, 0x77, 0xff, 0xb9, 0x34, 0xf4, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x76, 0xd5, 0x3c, 0x99, 0x23, 0x34, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Subby) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Subby") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Subby but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Subby but is not nil && this == nil") } if this.Sub != nil && that1.Sub != nil { if *this.Sub != *that1.Sub { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", *this.Sub, *that1.Sub) } } else if this.Sub != nil { return fmt.Errorf("this.Sub == nil && that.Sub != nil") } else if that1.Sub != nil { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Subby) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Sub != nil && that1.Sub != nil { if *this.Sub != *that1.Sub { return false } } else if this.Sub != nil { return false } else if that1.Sub != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllTypesOneOf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf) if !ok { that2, ok := that.(AllTypesOneOf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf but is not nil && this == nil") } if that1.TestOneof == nil { if this.TestOneof != nil { return fmt.Errorf("this.TestOneof != nil && that1.TestOneof == nil") } } else if this.TestOneof == nil { return fmt.Errorf("this.TestOneof == nil && that1.TestOneof != nil") } else if err := this.TestOneof.VerboseEqual(that1.TestOneof); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AllTypesOneOf_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field1) if !ok { that2, ok := that.(AllTypesOneOf_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *AllTypesOneOf_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field2) if !ok { that2, ok := that.(AllTypesOneOf_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *AllTypesOneOf_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field3) if !ok { that2, ok := that.(AllTypesOneOf_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *AllTypesOneOf_Field4) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field4) if !ok { that2, ok := that.(AllTypesOneOf_Field4) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field4") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field4 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field4 but is not nil && this == nil") } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } return nil } func (this *AllTypesOneOf_Field5) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field5) if !ok { that2, ok := that.(AllTypesOneOf_Field5) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field5") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field5 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field5 but is not nil && this == nil") } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } return nil } func (this *AllTypesOneOf_Field6) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field6) if !ok { that2, ok := that.(AllTypesOneOf_Field6) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field6") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field6 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field6 but is not nil && this == nil") } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } return nil } func (this *AllTypesOneOf_Field7) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field7) if !ok { that2, ok := that.(AllTypesOneOf_Field7) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field7") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field7 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field7 but is not nil && this == nil") } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } return nil } func (this *AllTypesOneOf_Field8) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field8) if !ok { that2, ok := that.(AllTypesOneOf_Field8) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field8") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field8 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field8 but is not nil && this == nil") } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } return nil } func (this *AllTypesOneOf_Field9) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field9) if !ok { that2, ok := that.(AllTypesOneOf_Field9) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field9") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field9 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field9 but is not nil && this == nil") } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } return nil } func (this *AllTypesOneOf_Field10) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field10) if !ok { that2, ok := that.(AllTypesOneOf_Field10) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field10") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field10 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field10 but is not nil && this == nil") } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } return nil } func (this *AllTypesOneOf_Field11) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field11) if !ok { that2, ok := that.(AllTypesOneOf_Field11) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field11") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field11 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field11 but is not nil && this == nil") } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } return nil } func (this *AllTypesOneOf_Field12) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field12) if !ok { that2, ok := that.(AllTypesOneOf_Field12) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field12") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field12 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field12 but is not nil && this == nil") } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } return nil } func (this *AllTypesOneOf_Field13) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field13) if !ok { that2, ok := that.(AllTypesOneOf_Field13) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field13") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field13 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field13 but is not nil && this == nil") } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } return nil } func (this *AllTypesOneOf_Field14) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field14) if !ok { that2, ok := that.(AllTypesOneOf_Field14) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field14") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field14 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field14 but is not nil && this == nil") } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } return nil } func (this *AllTypesOneOf_Field15) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_Field15) if !ok { that2, ok := that.(AllTypesOneOf_Field15) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_Field15") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_Field15 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_Field15 but is not nil && this == nil") } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } return nil } func (this *AllTypesOneOf_SubMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllTypesOneOf_SubMessage) if !ok { that2, ok := that.(AllTypesOneOf_SubMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllTypesOneOf_SubMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllTypesOneOf_SubMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllTypesOneOf_SubMessage but is not nil && this == nil") } if !this.SubMessage.Equal(that1.SubMessage) { return fmt.Errorf("SubMessage this(%v) Not Equal that(%v)", this.SubMessage, that1.SubMessage) } return nil } func (this *AllTypesOneOf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf) if !ok { that2, ok := that.(AllTypesOneOf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.TestOneof == nil { if this.TestOneof != nil { return false } } else if this.TestOneof == nil { return false } else if !this.TestOneof.Equal(that1.TestOneof) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AllTypesOneOf_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field1) if !ok { that2, ok := that.(AllTypesOneOf_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *AllTypesOneOf_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field2) if !ok { that2, ok := that.(AllTypesOneOf_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *AllTypesOneOf_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field3) if !ok { that2, ok := that.(AllTypesOneOf_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *AllTypesOneOf_Field4) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field4) if !ok { that2, ok := that.(AllTypesOneOf_Field4) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field4 != that1.Field4 { return false } return true } func (this *AllTypesOneOf_Field5) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field5) if !ok { that2, ok := that.(AllTypesOneOf_Field5) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field5 != that1.Field5 { return false } return true } func (this *AllTypesOneOf_Field6) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field6) if !ok { that2, ok := that.(AllTypesOneOf_Field6) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field6 != that1.Field6 { return false } return true } func (this *AllTypesOneOf_Field7) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field7) if !ok { that2, ok := that.(AllTypesOneOf_Field7) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field7 != that1.Field7 { return false } return true } func (this *AllTypesOneOf_Field8) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field8) if !ok { that2, ok := that.(AllTypesOneOf_Field8) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field8 != that1.Field8 { return false } return true } func (this *AllTypesOneOf_Field9) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field9) if !ok { that2, ok := that.(AllTypesOneOf_Field9) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field9 != that1.Field9 { return false } return true } func (this *AllTypesOneOf_Field10) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field10) if !ok { that2, ok := that.(AllTypesOneOf_Field10) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field10 != that1.Field10 { return false } return true } func (this *AllTypesOneOf_Field11) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field11) if !ok { that2, ok := that.(AllTypesOneOf_Field11) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field11 != that1.Field11 { return false } return true } func (this *AllTypesOneOf_Field12) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field12) if !ok { that2, ok := that.(AllTypesOneOf_Field12) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field12 != that1.Field12 { return false } return true } func (this *AllTypesOneOf_Field13) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field13) if !ok { that2, ok := that.(AllTypesOneOf_Field13) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field13 != that1.Field13 { return false } return true } func (this *AllTypesOneOf_Field14) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field14) if !ok { that2, ok := that.(AllTypesOneOf_Field14) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field14 != that1.Field14 { return false } return true } func (this *AllTypesOneOf_Field15) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_Field15) if !ok { that2, ok := that.(AllTypesOneOf_Field15) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } return true } func (this *AllTypesOneOf_SubMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllTypesOneOf_SubMessage) if !ok { that2, ok := that.(AllTypesOneOf_SubMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage.Equal(that1.SubMessage) { return false } return true } func (this *TwoOneofs) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs) if !ok { that2, ok := that.(TwoOneofs) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs but is not nil && this == nil") } if that1.One == nil { if this.One != nil { return fmt.Errorf("this.One != nil && that1.One == nil") } } else if this.One == nil { return fmt.Errorf("this.One == nil && that1.One != nil") } else if err := this.One.VerboseEqual(that1.One); err != nil { return err } if that1.Two == nil { if this.Two != nil { return fmt.Errorf("this.Two != nil && that1.Two == nil") } } else if this.Two == nil { return fmt.Errorf("this.Two == nil && that1.Two != nil") } else if err := this.Two.VerboseEqual(that1.Two); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *TwoOneofs_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field1) if !ok { that2, ok := that.(TwoOneofs_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *TwoOneofs_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field2) if !ok { that2, ok := that.(TwoOneofs_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *TwoOneofs_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field3) if !ok { that2, ok := that.(TwoOneofs_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *TwoOneofs_Field34) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field34) if !ok { that2, ok := that.(TwoOneofs_Field34) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field34") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field34 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field34 but is not nil && this == nil") } if this.Field34 != that1.Field34 { return fmt.Errorf("Field34 this(%v) Not Equal that(%v)", this.Field34, that1.Field34) } return nil } func (this *TwoOneofs_Field35) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_Field35) if !ok { that2, ok := that.(TwoOneofs_Field35) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_Field35") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_Field35 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_Field35 but is not nil && this == nil") } if !bytes.Equal(this.Field35, that1.Field35) { return fmt.Errorf("Field35 this(%v) Not Equal that(%v)", this.Field35, that1.Field35) } return nil } func (this *TwoOneofs_SubMessage2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*TwoOneofs_SubMessage2) if !ok { that2, ok := that.(TwoOneofs_SubMessage2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *TwoOneofs_SubMessage2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *TwoOneofs_SubMessage2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *TwoOneofs_SubMessage2 but is not nil && this == nil") } if !this.SubMessage2.Equal(that1.SubMessage2) { return fmt.Errorf("SubMessage2 this(%v) Not Equal that(%v)", this.SubMessage2, that1.SubMessage2) } return nil } func (this *TwoOneofs) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs) if !ok { that2, ok := that.(TwoOneofs) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.One == nil { if this.One != nil { return false } } else if this.One == nil { return false } else if !this.One.Equal(that1.One) { return false } if that1.Two == nil { if this.Two != nil { return false } } else if this.Two == nil { return false } else if !this.Two.Equal(that1.Two) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *TwoOneofs_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field1) if !ok { that2, ok := that.(TwoOneofs_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *TwoOneofs_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field2) if !ok { that2, ok := that.(TwoOneofs_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *TwoOneofs_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field3) if !ok { that2, ok := that.(TwoOneofs_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *TwoOneofs_Field34) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field34) if !ok { that2, ok := that.(TwoOneofs_Field34) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field34 != that1.Field34 { return false } return true } func (this *TwoOneofs_Field35) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_Field35) if !ok { that2, ok := that.(TwoOneofs_Field35) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field35, that1.Field35) { return false } return true } func (this *TwoOneofs_SubMessage2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*TwoOneofs_SubMessage2) if !ok { that2, ok := that.(TwoOneofs_SubMessage2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage2.Equal(that1.SubMessage2) { return false } return true } func (this *CustomOneof) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof) if !ok { that2, ok := that.(CustomOneof) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof but is not nil && this == nil") } if that1.Custom == nil { if this.Custom != nil { return fmt.Errorf("this.Custom != nil && that1.Custom == nil") } } else if this.Custom == nil { return fmt.Errorf("this.Custom == nil && that1.Custom != nil") } else if err := this.Custom.VerboseEqual(that1.Custom); err != nil { return err } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomOneof_Stringy) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_Stringy) if !ok { that2, ok := that.(CustomOneof_Stringy) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_Stringy") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_Stringy but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_Stringy but is not nil && this == nil") } if this.Stringy != that1.Stringy { return fmt.Errorf("Stringy this(%v) Not Equal that(%v)", this.Stringy, that1.Stringy) } return nil } func (this *CustomOneof_CustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_CustomType) if !ok { that2, ok := that.(CustomOneof_CustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_CustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_CustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_CustomType but is not nil && this == nil") } if !this.CustomType.Equal(that1.CustomType) { return fmt.Errorf("CustomType this(%v) Not Equal that(%v)", this.CustomType, that1.CustomType) } return nil } func (this *CustomOneof_CastType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_CastType) if !ok { that2, ok := that.(CustomOneof_CastType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_CastType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_CastType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_CastType but is not nil && this == nil") } if this.CastType != that1.CastType { return fmt.Errorf("CastType this(%v) Not Equal that(%v)", this.CastType, that1.CastType) } return nil } func (this *CustomOneof_MyCustomName) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomOneof_MyCustomName) if !ok { that2, ok := that.(CustomOneof_MyCustomName) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomOneof_MyCustomName") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomOneof_MyCustomName but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomOneof_MyCustomName but is not nil && this == nil") } if this.MyCustomName != that1.MyCustomName { return fmt.Errorf("MyCustomName this(%v) Not Equal that(%v)", this.MyCustomName, that1.MyCustomName) } return nil } func (this *CustomOneof) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof) if !ok { that2, ok := that.(CustomOneof) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Custom == nil { if this.Custom != nil { return false } } else if this.Custom == nil { return false } else if !this.Custom.Equal(that1.Custom) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomOneof_Stringy) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_Stringy) if !ok { that2, ok := that.(CustomOneof_Stringy) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Stringy != that1.Stringy { return false } return true } func (this *CustomOneof_CustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_CustomType) if !ok { that2, ok := that.(CustomOneof_CustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.CustomType.Equal(that1.CustomType) { return false } return true } func (this *CustomOneof_CastType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_CastType) if !ok { that2, ok := that.(CustomOneof_CastType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.CastType != that1.CastType { return false } return true } func (this *CustomOneof_MyCustomName) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomOneof_MyCustomName) if !ok { that2, ok := that.(CustomOneof_MyCustomName) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.MyCustomName != that1.MyCustomName { return false } return true } func (this *Subby) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&one.Subby{") if this.Sub != nil { s = append(s, "Sub: "+valueToGoStringOne(this.Sub, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllTypesOneOf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&one.AllTypesOneOf{") if this.TestOneof != nil { s = append(s, "TestOneof: "+fmt.Sprintf("%#v", this.TestOneof)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllTypesOneOf_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field4) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field4{` + `Field4:` + fmt.Sprintf("%#v", this.Field4) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field5) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field5{` + `Field5:` + fmt.Sprintf("%#v", this.Field5) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field6) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field6{` + `Field6:` + fmt.Sprintf("%#v", this.Field6) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field7) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field7{` + `Field7:` + fmt.Sprintf("%#v", this.Field7) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field8) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field8{` + `Field8:` + fmt.Sprintf("%#v", this.Field8) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field9) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field9{` + `Field9:` + fmt.Sprintf("%#v", this.Field9) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field10) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field10{` + `Field10:` + fmt.Sprintf("%#v", this.Field10) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field11) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field11{` + `Field11:` + fmt.Sprintf("%#v", this.Field11) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field12) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field12{` + `Field12:` + fmt.Sprintf("%#v", this.Field12) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field13) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field13{` + `Field13:` + fmt.Sprintf("%#v", this.Field13) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field14) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field14{` + `Field14:` + fmt.Sprintf("%#v", this.Field14) + `}`}, ", ") return s } func (this *AllTypesOneOf_Field15) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_Field15{` + `Field15:` + fmt.Sprintf("%#v", this.Field15) + `}`}, ", ") return s } func (this *AllTypesOneOf_SubMessage) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.AllTypesOneOf_SubMessage{` + `SubMessage:` + fmt.Sprintf("%#v", this.SubMessage) + `}`}, ", ") return s } func (this *TwoOneofs) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 10) s = append(s, "&one.TwoOneofs{") if this.One != nil { s = append(s, "One: "+fmt.Sprintf("%#v", this.One)+",\n") } if this.Two != nil { s = append(s, "Two: "+fmt.Sprintf("%#v", this.Two)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *TwoOneofs_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *TwoOneofs_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *TwoOneofs_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *TwoOneofs_Field34) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field34{` + `Field34:` + fmt.Sprintf("%#v", this.Field34) + `}`}, ", ") return s } func (this *TwoOneofs_Field35) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_Field35{` + `Field35:` + fmt.Sprintf("%#v", this.Field35) + `}`}, ", ") return s } func (this *TwoOneofs_SubMessage2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.TwoOneofs_SubMessage2{` + `SubMessage2:` + fmt.Sprintf("%#v", this.SubMessage2) + `}`}, ", ") return s } func (this *CustomOneof) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&one.CustomOneof{") if this.Custom != nil { s = append(s, "Custom: "+fmt.Sprintf("%#v", this.Custom)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomOneof_Stringy) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_Stringy{` + `Stringy:` + fmt.Sprintf("%#v", this.Stringy) + `}`}, ", ") return s } func (this *CustomOneof_CustomType) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_CustomType{` + `CustomType:` + fmt.Sprintf("%#v", this.CustomType) + `}`}, ", ") return s } func (this *CustomOneof_CastType) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_CastType{` + `CastType:` + fmt.Sprintf("%#v", this.CastType) + `}`}, ", ") return s } func (this *CustomOneof_MyCustomName) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.CustomOneof_MyCustomName{` + `MyCustomName:` + fmt.Sprintf("%#v", this.MyCustomName) + `}`}, ", ") return s } func valueToGoStringOne(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedSubby(r randyOne, easy bool) *Subby { this := &Subby{} if r.Intn(10) != 0 { v1 := string(randStringOne(r)) this.Sub = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 2) } return this } func NewPopulatedAllTypesOneOf(r randyOne, easy bool) *AllTypesOneOf { this := &AllTypesOneOf{} oneofNumber_TestOneof := []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}[r.Intn(16)] switch oneofNumber_TestOneof { case 1: this.TestOneof = NewPopulatedAllTypesOneOf_Field1(r, easy) case 2: this.TestOneof = NewPopulatedAllTypesOneOf_Field2(r, easy) case 3: this.TestOneof = NewPopulatedAllTypesOneOf_Field3(r, easy) case 4: this.TestOneof = NewPopulatedAllTypesOneOf_Field4(r, easy) case 5: this.TestOneof = NewPopulatedAllTypesOneOf_Field5(r, easy) case 6: this.TestOneof = NewPopulatedAllTypesOneOf_Field6(r, easy) case 7: this.TestOneof = NewPopulatedAllTypesOneOf_Field7(r, easy) case 8: this.TestOneof = NewPopulatedAllTypesOneOf_Field8(r, easy) case 9: this.TestOneof = NewPopulatedAllTypesOneOf_Field9(r, easy) case 10: this.TestOneof = NewPopulatedAllTypesOneOf_Field10(r, easy) case 11: this.TestOneof = NewPopulatedAllTypesOneOf_Field11(r, easy) case 12: this.TestOneof = NewPopulatedAllTypesOneOf_Field12(r, easy) case 13: this.TestOneof = NewPopulatedAllTypesOneOf_Field13(r, easy) case 14: this.TestOneof = NewPopulatedAllTypesOneOf_Field14(r, easy) case 15: this.TestOneof = NewPopulatedAllTypesOneOf_Field15(r, easy) case 16: this.TestOneof = NewPopulatedAllTypesOneOf_SubMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 17) } return this } func NewPopulatedAllTypesOneOf_Field1(r randyOne, easy bool) *AllTypesOneOf_Field1 { this := &AllTypesOneOf_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field2(r randyOne, easy bool) *AllTypesOneOf_Field2 { this := &AllTypesOneOf_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field3(r randyOne, easy bool) *AllTypesOneOf_Field3 { this := &AllTypesOneOf_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field4(r randyOne, easy bool) *AllTypesOneOf_Field4 { this := &AllTypesOneOf_Field4{} this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field5(r randyOne, easy bool) *AllTypesOneOf_Field5 { this := &AllTypesOneOf_Field5{} this.Field5 = uint32(r.Uint32()) return this } func NewPopulatedAllTypesOneOf_Field6(r randyOne, easy bool) *AllTypesOneOf_Field6 { this := &AllTypesOneOf_Field6{} this.Field6 = uint64(uint64(r.Uint32())) return this } func NewPopulatedAllTypesOneOf_Field7(r randyOne, easy bool) *AllTypesOneOf_Field7 { this := &AllTypesOneOf_Field7{} this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field8(r randyOne, easy bool) *AllTypesOneOf_Field8 { this := &AllTypesOneOf_Field8{} this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field9(r randyOne, easy bool) *AllTypesOneOf_Field9 { this := &AllTypesOneOf_Field9{} this.Field9 = uint32(r.Uint32()) return this } func NewPopulatedAllTypesOneOf_Field10(r randyOne, easy bool) *AllTypesOneOf_Field10 { this := &AllTypesOneOf_Field10{} this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field11(r randyOne, easy bool) *AllTypesOneOf_Field11 { this := &AllTypesOneOf_Field11{} this.Field11 = uint64(uint64(r.Uint32())) return this } func NewPopulatedAllTypesOneOf_Field12(r randyOne, easy bool) *AllTypesOneOf_Field12 { this := &AllTypesOneOf_Field12{} this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } return this } func NewPopulatedAllTypesOneOf_Field13(r randyOne, easy bool) *AllTypesOneOf_Field13 { this := &AllTypesOneOf_Field13{} this.Field13 = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedAllTypesOneOf_Field14(r randyOne, easy bool) *AllTypesOneOf_Field14 { this := &AllTypesOneOf_Field14{} this.Field14 = string(randStringOne(r)) return this } func NewPopulatedAllTypesOneOf_Field15(r randyOne, easy bool) *AllTypesOneOf_Field15 { this := &AllTypesOneOf_Field15{} v2 := r.Intn(100) this.Field15 = make([]byte, v2) for i := 0; i < v2; i++ { this.Field15[i] = byte(r.Intn(256)) } return this } func NewPopulatedAllTypesOneOf_SubMessage(r randyOne, easy bool) *AllTypesOneOf_SubMessage { this := &AllTypesOneOf_SubMessage{} this.SubMessage = NewPopulatedSubby(r, easy) return this } func NewPopulatedTwoOneofs(r randyOne, easy bool) *TwoOneofs { this := &TwoOneofs{} oneofNumber_One := []int32{1, 2, 3}[r.Intn(3)] switch oneofNumber_One { case 1: this.One = NewPopulatedTwoOneofs_Field1(r, easy) case 2: this.One = NewPopulatedTwoOneofs_Field2(r, easy) case 3: this.One = NewPopulatedTwoOneofs_Field3(r, easy) } oneofNumber_Two := []int32{34, 35, 36}[r.Intn(3)] switch oneofNumber_Two { case 34: this.Two = NewPopulatedTwoOneofs_Field34(r, easy) case 35: this.Two = NewPopulatedTwoOneofs_Field35(r, easy) case 36: this.Two = NewPopulatedTwoOneofs_SubMessage2(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 37) } return this } func NewPopulatedTwoOneofs_Field1(r randyOne, easy bool) *TwoOneofs_Field1 { this := &TwoOneofs_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedTwoOneofs_Field2(r randyOne, easy bool) *TwoOneofs_Field2 { this := &TwoOneofs_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedTwoOneofs_Field3(r randyOne, easy bool) *TwoOneofs_Field3 { this := &TwoOneofs_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedTwoOneofs_Field34(r randyOne, easy bool) *TwoOneofs_Field34 { this := &TwoOneofs_Field34{} this.Field34 = string(randStringOne(r)) return this } func NewPopulatedTwoOneofs_Field35(r randyOne, easy bool) *TwoOneofs_Field35 { this := &TwoOneofs_Field35{} v3 := r.Intn(100) this.Field35 = make([]byte, v3) for i := 0; i < v3; i++ { this.Field35[i] = byte(r.Intn(256)) } return this } func NewPopulatedTwoOneofs_SubMessage2(r randyOne, easy bool) *TwoOneofs_SubMessage2 { this := &TwoOneofs_SubMessage2{} this.SubMessage2 = NewPopulatedSubby(r, easy) return this } func NewPopulatedCustomOneof(r randyOne, easy bool) *CustomOneof { this := &CustomOneof{} oneofNumber_Custom := []int32{34, 35, 36, 37}[r.Intn(4)] switch oneofNumber_Custom { case 34: this.Custom = NewPopulatedCustomOneof_Stringy(r, easy) case 35: this.Custom = NewPopulatedCustomOneof_CustomType(r, easy) case 36: this.Custom = NewPopulatedCustomOneof_CastType(r, easy) case 37: this.Custom = NewPopulatedCustomOneof_MyCustomName(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedOne(r, 38) } return this } func NewPopulatedCustomOneof_Stringy(r randyOne, easy bool) *CustomOneof_Stringy { this := &CustomOneof_Stringy{} this.Stringy = string(randStringOne(r)) return this } func NewPopulatedCustomOneof_CustomType(r randyOne, easy bool) *CustomOneof_CustomType { this := &CustomOneof_CustomType{} v4 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.CustomType = *v4 return this } func NewPopulatedCustomOneof_CastType(r randyOne, easy bool) *CustomOneof_CastType { this := &CustomOneof_CastType{} this.CastType = github_com_gogo_protobuf_test_casttype.MyUint64Type(uint64(r.Uint32())) return this } func NewPopulatedCustomOneof_MyCustomName(r randyOne, easy bool) *CustomOneof_MyCustomName { this := &CustomOneof_MyCustomName{} this.MyCustomName = int64(r.Int63()) if r.Intn(2) == 0 { this.MyCustomName *= -1 } return this } type randyOne interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneOne(r randyOne) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringOne(r randyOne) string { v5 := r.Intn(100) tmps := make([]rune, v5) for i := 0; i < v5; i++ { tmps[i] = randUTF8RuneOne(r) } return string(tmps) } func randUnrecognizedOne(r randyOne, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldOne(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldOne(dAtA []byte, r randyOne, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) v6 := r.Int63() if r.Intn(2) == 0 { v6 *= -1 } dAtA = encodeVarintPopulateOne(dAtA, uint64(v6)) case 1: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateOne(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateOne(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Subby) Size() (n int) { var l int _ = l if m.Sub != nil { l = len(*m.Sub) n += 1 + l + sovOne(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllTypesOneOf) Size() (n int) { var l int _ = l if m.TestOneof != nil { n += m.TestOneof.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AllTypesOneOf_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *AllTypesOneOf_Field4) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field4)) return n } func (m *AllTypesOneOf_Field5) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field5)) return n } func (m *AllTypesOneOf_Field6) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field6)) return n } func (m *AllTypesOneOf_Field7) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field7)) return n } func (m *AllTypesOneOf_Field8) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field8)) return n } func (m *AllTypesOneOf_Field9) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field10) Size() (n int) { var l int _ = l n += 5 return n } func (m *AllTypesOneOf_Field11) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field12) Size() (n int) { var l int _ = l n += 9 return n } func (m *AllTypesOneOf_Field13) Size() (n int) { var l int _ = l n += 2 return n } func (m *AllTypesOneOf_Field14) Size() (n int) { var l int _ = l l = len(m.Field14) n += 1 + l + sovOne(uint64(l)) return n } func (m *AllTypesOneOf_Field15) Size() (n int) { var l int _ = l if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovOne(uint64(l)) } return n } func (m *AllTypesOneOf_SubMessage) Size() (n int) { var l int _ = l if m.SubMessage != nil { l = m.SubMessage.Size() n += 2 + l + sovOne(uint64(l)) } return n } func (m *TwoOneofs) Size() (n int) { var l int _ = l if m.One != nil { n += m.One.Size() } if m.Two != nil { n += m.Two.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *TwoOneofs_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *TwoOneofs_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *TwoOneofs_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *TwoOneofs_Field34) Size() (n int) { var l int _ = l l = len(m.Field34) n += 2 + l + sovOne(uint64(l)) return n } func (m *TwoOneofs_Field35) Size() (n int) { var l int _ = l if m.Field35 != nil { l = len(m.Field35) n += 2 + l + sovOne(uint64(l)) } return n } func (m *TwoOneofs_SubMessage2) Size() (n int) { var l int _ = l if m.SubMessage2 != nil { l = m.SubMessage2.Size() n += 2 + l + sovOne(uint64(l)) } return n } func (m *CustomOneof) Size() (n int) { var l int _ = l if m.Custom != nil { n += m.Custom.Size() } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomOneof_Stringy) Size() (n int) { var l int _ = l l = len(m.Stringy) n += 2 + l + sovOne(uint64(l)) return n } func (m *CustomOneof_CustomType) Size() (n int) { var l int _ = l l = m.CustomType.Size() n += 2 + l + sovOne(uint64(l)) return n } func (m *CustomOneof_CastType) Size() (n int) { var l int _ = l n += 2 + sovOne(uint64(m.CastType)) return n } func (m *CustomOneof_MyCustomName) Size() (n int) { var l int _ = l n += 2 + sovOne(uint64(m.MyCustomName)) return n } func sovOne(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozOne(x uint64) (n int) { return sovOne(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Subby) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Subby{`, `Sub:` + valueToStringOne(this.Sub) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf{`, `TestOneof:` + fmt.Sprintf("%v", this.TestOneof) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field4) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field4{`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field5) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field5{`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field6) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field6{`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field7) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field7{`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field8) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field8{`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field9) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field9{`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field10) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field10{`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field11) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field11{`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field12) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field12{`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field13) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field13{`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field14) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field14{`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_Field15) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_Field15{`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `}`, }, "") return s } func (this *AllTypesOneOf_SubMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AllTypesOneOf_SubMessage{`, `SubMessage:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func (this *TwoOneofs) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs{`, `One:` + fmt.Sprintf("%v", this.One) + `,`, `Two:` + fmt.Sprintf("%v", this.Two) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field34) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field34{`, `Field34:` + fmt.Sprintf("%v", this.Field34) + `,`, `}`, }, "") return s } func (this *TwoOneofs_Field35) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_Field35{`, `Field35:` + fmt.Sprintf("%v", this.Field35) + `,`, `}`, }, "") return s } func (this *TwoOneofs_SubMessage2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&TwoOneofs_SubMessage2{`, `SubMessage2:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage2), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func (this *CustomOneof) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof{`, `Custom:` + fmt.Sprintf("%v", this.Custom) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomOneof_Stringy) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_Stringy{`, `Stringy:` + fmt.Sprintf("%v", this.Stringy) + `,`, `}`, }, "") return s } func (this *CustomOneof_CustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_CustomType{`, `CustomType:` + fmt.Sprintf("%v", this.CustomType) + `,`, `}`, }, "") return s } func (this *CustomOneof_CastType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_CastType{`, `CastType:` + fmt.Sprintf("%v", this.CastType) + `,`, `}`, }, "") return s } func (this *CustomOneof_MyCustomName) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomOneof_MyCustomName{`, `MyCustomName:` + fmt.Sprintf("%v", this.MyCustomName) + `,`, `}`, }, "") return s } func valueToStringOne(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Subby) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Subby: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Subby: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sub", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Sub = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllTypesOneOf) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllTypesOneOf: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllTypesOneOf: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &AllTypesOneOf_Field1{float64(math.Float64frombits(v))} case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &AllTypesOneOf_Field2{float32(math.Float32frombits(v))} case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &AllTypesOneOf_Field3{v} case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &AllTypesOneOf_Field4{v} case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &AllTypesOneOf_Field5{v} case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &AllTypesOneOf_Field6{v} case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.TestOneof = &AllTypesOneOf_Field7{v} case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.TestOneof = &AllTypesOneOf_Field8{int64(v)} case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &AllTypesOneOf_Field9{v} case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &AllTypesOneOf_Field10{v} case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &AllTypesOneOf_Field11{v} case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &AllTypesOneOf_Field12{v} case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.TestOneof = &AllTypesOneOf_Field13{b} case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.TestOneof = &AllTypesOneOf_Field14{string(dAtA[iNdEx:postIndex])} iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } v := make([]byte, postIndex-iNdEx) copy(v, dAtA[iNdEx:postIndex]) m.TestOneof = &AllTypesOneOf_Field15{v} iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SubMessage", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &Subby{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.TestOneof = &AllTypesOneOf_SubMessage{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *TwoOneofs) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: TwoOneofs: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: TwoOneofs: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.One = &TwoOneofs_Field1{float64(math.Float64frombits(v))} case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.One = &TwoOneofs_Field2{float32(math.Float32frombits(v))} case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.One = &TwoOneofs_Field3{v} case 34: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field34", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Two = &TwoOneofs_Field34{string(dAtA[iNdEx:postIndex])} iNdEx = postIndex case 35: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field35", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } v := make([]byte, postIndex-iNdEx) copy(v, dAtA[iNdEx:postIndex]) m.Two = &TwoOneofs_Field35{v} iNdEx = postIndex case 36: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SubMessage2", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &Subby{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.Two = &TwoOneofs_SubMessage2{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *CustomOneof) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: CustomOneof: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: CustomOneof: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 34: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Stringy", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Custom = &CustomOneof_Stringy{string(dAtA[iNdEx:postIndex])} iNdEx = postIndex case 35: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CustomType", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var vv github_com_gogo_protobuf_test_custom.Uint128 v := &vv if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.Custom = &CustomOneof_CustomType{*v} iNdEx = postIndex case 36: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field CastType", wireType) } var v github_com_gogo_protobuf_test_casttype.MyUint64Type for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (github_com_gogo_protobuf_test_casttype.MyUint64Type(b) & 0x7F) << shift if b < 0x80 { break } } m.Custom = &CustomOneof_CastType{v} case 37: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field MyCustomName", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Custom = &CustomOneof_MyCustomName{v} default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipOne(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthOne } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipOne(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthOne = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowOne = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/unmarshaler/one.proto", fileDescriptorOne) } var fileDescriptorOne = []byte{ // 602 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0xd3, 0x3f, 0x4f, 0x1b, 0x31, 0x14, 0x00, 0x70, 0x3f, 0x42, 0x42, 0x70, 0x42, 0x49, 0x6f, 0x72, 0x51, 0x65, 0xac, 0xb4, 0x95, 0x3c, 0x94, 0x84, 0x5c, 0x12, 0xfe, 0x8c, 0x3d, 0xaa, 0x2a, 0x0b, 0x45, 0x3a, 0x60, 0x46, 0x39, 0x6a, 0x42, 0xa4, 0xe4, 0x8c, 0xe2, 0x3b, 0xa1, 0x6c, 0x7c, 0x86, 0x7e, 0x8a, 0x8e, 0x1d, 0xfb, 0x11, 0x18, 0x33, 0x56, 0x1d, 0x22, 0xee, 0xba, 0x74, 0x64, 0x44, 0x9d, 0x2a, 0xdf, 0x11, 0xbb, 0x52, 0x55, 0x75, 0xe9, 0x94, 0x7b, 0xef, 0x77, 0x7e, 0x79, 0xef, 0x6c, 0xe3, 0xe7, 0xe7, 0x72, 0x1c, 0x48, 0xd5, 0x8c, 0xc3, 0x71, 0x7f, 0xa2, 0x2e, 0xfb, 0x23, 0x31, 0x69, 0xca, 0x50, 0x34, 0xae, 0x26, 0x32, 0x92, 0x4e, 0x41, 0x86, 0x62, 0x63, 0x6b, 0x30, 0x8c, 0x2e, 0xe3, 0xa0, 0x71, 0x2e, 0xc7, 0xcd, 0x81, 0x1c, 0xc8, 0x66, 0x66, 0x41, 0x7c, 0x91, 0x45, 0x59, 0x90, 0x3d, 0xe5, 0x6b, 0xea, 0xcf, 0x70, 0xf1, 0x38, 0x0e, 0x82, 0xa9, 0x53, 0xc3, 0x05, 0x15, 0x07, 0x04, 0x18, 0xf0, 0x55, 0x5f, 0x3f, 0xd6, 0xe7, 0x05, 0xbc, 0xf6, 0x66, 0x34, 0x3a, 0x99, 0x5e, 0x09, 0x75, 0x14, 0x8a, 0xa3, 0x0b, 0x87, 0xe0, 0xd2, 0xbb, 0xa1, 0x18, 0x7d, 0x68, 0x65, 0xaf, 0x41, 0x0f, 0xf9, 0x8f, 0xb1, 0x11, 0x97, 0x2c, 0x31, 0xe0, 0x4b, 0x46, 0x5c, 0x23, 0x6d, 0x52, 0x60, 0xc0, 0x8b, 0x46, 0xda, 0x46, 0x3a, 0x64, 0x99, 0x01, 0x2f, 0x18, 0xe9, 0x18, 0xe9, 0x92, 0x22, 0x03, 0xbe, 0x66, 0xa4, 0x6b, 0x64, 0x87, 0x94, 0x18, 0xf0, 0x65, 0x23, 0x3b, 0x46, 0x76, 0xc9, 0x0a, 0x03, 0xfe, 0xd4, 0xc8, 0xae, 0x91, 0x3d, 0x52, 0x66, 0xc0, 0x1d, 0x23, 0x7b, 0x46, 0xf6, 0xc9, 0x2a, 0x03, 0xbe, 0x62, 0x64, 0xdf, 0xd9, 0xc0, 0x2b, 0xf9, 0x64, 0xdb, 0x04, 0x33, 0xe0, 0xeb, 0x3d, 0xe4, 0x2f, 0x12, 0xd6, 0x5a, 0xa4, 0xc2, 0x80, 0x97, 0xac, 0xb5, 0xac, 0xb9, 0xa4, 0xca, 0x80, 0xd7, 0xac, 0xb9, 0xd6, 0xda, 0x64, 0x8d, 0x01, 0x2f, 0x5b, 0x6b, 0x5b, 0xeb, 0x90, 0x27, 0x7a, 0x07, 0xac, 0x75, 0xac, 0x75, 0xc9, 0x3a, 0x03, 0x5e, 0xb5, 0xd6, 0x75, 0xb6, 0x70, 0x45, 0xc5, 0xc1, 0xd9, 0x58, 0x28, 0xd5, 0x1f, 0x08, 0x52, 0x63, 0xc0, 0x2b, 0x2e, 0x6e, 0xe8, 0x33, 0x91, 0x6d, 0x6b, 0x0f, 0xf9, 0x58, 0xc5, 0xc1, 0x61, 0xee, 0x5e, 0x15, 0xe3, 0x48, 0xa8, 0xe8, 0x4c, 0x86, 0x42, 0x5e, 0xd4, 0x67, 0x80, 0x57, 0x4f, 0xae, 0xe5, 0x91, 0x0e, 0xd4, 0x7f, 0xde, 0xdc, 0x45, 0xd3, 0xed, 0x0e, 0xa9, 0x67, 0x03, 0x81, 0xbf, 0x48, 0x58, 0xeb, 0x92, 0x17, 0xd9, 0x40, 0xc6, 0xba, 0x4e, 0x13, 0x57, 0x7f, 0x1b, 0xc8, 0x25, 0x2f, 0xff, 0x98, 0x08, 0xfc, 0x8a, 0x9d, 0xc8, 0xf5, 0x8a, 0x58, 0x1f, 0x7b, 0xfd, 0x13, 0x5d, 0xcb, 0xfa, 0xc7, 0x25, 0x5c, 0x39, 0x88, 0x55, 0x24, 0xc7, 0xd9, 0x54, 0xfa, 0xaf, 0x8e, 0xa3, 0xc9, 0x30, 0x1c, 0x4c, 0x1f, 0xdb, 0x40, 0xfe, 0x22, 0xe1, 0xf8, 0x18, 0xe7, 0xaf, 0xea, 0x13, 0x9e, 0x77, 0xe2, 0x6d, 0x7f, 0x9b, 0x6f, 0xbe, 0xfe, 0xeb, 0x0d, 0xd2, 0xdf, 0xae, 0x79, 0x9e, 0xad, 0x69, 0x9c, 0x0e, 0xc3, 0xa8, 0xe5, 0xee, 0xe9, 0x0f, 0x6c, 0xab, 0x38, 0xa7, 0xb8, 0x7c, 0xd0, 0x57, 0x51, 0x56, 0x51, 0xb7, 0xbe, 0xec, 0xed, 0xfe, 0x9c, 0x6f, 0xb6, 0xff, 0x51, 0xb1, 0xaf, 0xa2, 0x68, 0x7a, 0x25, 0x1a, 0x87, 0x53, 0x5d, 0x75, 0xa7, 0xa3, 0x97, 0xf7, 0x90, 0x6f, 0x4a, 0x39, 0xee, 0xa2, 0xd5, 0xf7, 0xfd, 0xb1, 0x20, 0xaf, 0xf4, 0x75, 0xf1, 0x6a, 0xe9, 0x7c, 0xb3, 0x7a, 0x38, 0xb5, 0x79, 0xdb, 0x8a, 0x8e, 0xbc, 0x32, 0x2e, 0xe5, 0xad, 0x7a, 0x6f, 0x6f, 0x13, 0x8a, 0x66, 0x09, 0x45, 0x5f, 0x13, 0x8a, 0xee, 0x12, 0x0a, 0xf7, 0x09, 0x85, 0x87, 0x84, 0xc2, 0x4d, 0x4a, 0xe1, 0x53, 0x4a, 0xe1, 0x73, 0x4a, 0xe1, 0x4b, 0x4a, 0xe1, 0x36, 0xa5, 0x68, 0x96, 0x52, 0xb8, 0x4b, 0x29, 0xfc, 0x48, 0x29, 0xba, 0x4f, 0x29, 0x3c, 0xa4, 0x14, 0xdd, 0x7c, 0xa7, 0xe8, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x1c, 0x58, 0x6c, 0x7c, 0x04, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/oneof/combos/unmarshaler/one.proto000066400000000000000000000064021317075173200251050ustar00rootroot00000000000000// 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 one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { optional string sub = 1; } message AllTypesOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } message TwoOneofs { oneof one { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; } oneof two { string Field34 = 34; bytes Field35 = 35; Subby sub_message2 = 36; } } message CustomOneof { oneof custom { string Stringy = 34; bytes CustomType = 35 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; uint64 CastType = 36 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; int64 CustomName = 37 [(gogoproto.customname) = "MyCustomName"]; } } golang-gogoprotobuf-0.5/test/oneof/combos/unmarshaler/onepb_test.go000066400000000000000000000464641317075173200257440ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/one.proto It has these top-level messages: Subby AllTypesOneOf TwoOneofs CustomOneof */ package one import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSubbyProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllTypesOneOfProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestTwoOneofsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCustomOneofProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSubbyJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllTypesOneOfJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllTypesOneOf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTwoOneofsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &TwoOneofs{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomOneofJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomOneof{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubbyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllTypesOneOfProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTwoOneofsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomOneofProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneDescription(t *testing.T) { OneDescription() } func TestSubbyVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllTypesOneOfVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllTypesOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTwoOneofsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &TwoOneofs{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomOneofVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomOneof{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSubbyGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllTypesOneOfGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTwoOneofsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomOneofGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSubbySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestAllTypesOneOfSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllTypesOneOf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestTwoOneofsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTwoOneofs(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestCustomOneofSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomOneof(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSubbyStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllTypesOneOfStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllTypesOneOf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTwoOneofsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTwoOneofs(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomOneofStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomOneof(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/oneof/doc.go000066400000000000000000000000141317075173200205210ustar00rootroot00000000000000package one golang-gogoprotobuf-0.5/test/oneof/one.proto000066400000000000000000000064031317075173200213030ustar00rootroot00000000000000// 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 one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { optional string sub = 1; } message AllTypesOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } message TwoOneofs { oneof one { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; } oneof two { string Field34 = 34; bytes Field35 = 35; Subby sub_message2 = 36; } } message CustomOneof { oneof custom { string Stringy = 34; bytes CustomType = 35 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; uint64 CastType = 36 [(gogoproto.casttype) = "github.com/gogo/protobuf/test/casttype.MyUint64Type"]; int64 CustomName = 37 [(gogoproto.customname) = "MyCustomName"]; } } golang-gogoprotobuf-0.5/test/oneof3/000077500000000000000000000000001317075173200175155ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof3/Makefile000066400000000000000000000031561317075173200211620ustar00rootroot00000000000000# 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-combo go install github.com/gogo/protobuf/protoc-gen-gogo protoc-gen-combo --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. one.proto golang-gogoprotobuf-0.5/test/oneof3/combos/000077500000000000000000000000001317075173200207775ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof3/combos/both/000077500000000000000000000000001317075173200217335ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof3/combos/both/one.pb.go000066400000000000000000003025121317075173200234460ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/both/one.proto It has these top-level messages: Subby SampleOneOf */ package one import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Subby struct { Sub string `protobuf:"bytes,1,opt,name=sub,proto3" json:"sub,omitempty"` } func (m *Subby) Reset() { *m = Subby{} } func (*Subby) ProtoMessage() {} func (*Subby) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{0} } type SampleOneOf struct { // Types that are valid to be assigned to TestOneof: // *SampleOneOf_Field1 // *SampleOneOf_Field2 // *SampleOneOf_Field3 // *SampleOneOf_Field4 // *SampleOneOf_Field5 // *SampleOneOf_Field6 // *SampleOneOf_Field7 // *SampleOneOf_Field8 // *SampleOneOf_Field9 // *SampleOneOf_Field10 // *SampleOneOf_Field11 // *SampleOneOf_Field12 // *SampleOneOf_Field13 // *SampleOneOf_Field14 // *SampleOneOf_Field15 // *SampleOneOf_SubMessage TestOneof isSampleOneOf_TestOneof `protobuf_oneof:"test_oneof"` } func (m *SampleOneOf) Reset() { *m = SampleOneOf{} } func (*SampleOneOf) ProtoMessage() {} func (*SampleOneOf) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{1} } type isSampleOneOf_TestOneof interface { isSampleOneOf_TestOneof() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type SampleOneOf_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,proto3,oneof"` } type SampleOneOf_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,proto3,oneof"` } type SampleOneOf_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,proto3,oneof"` } type SampleOneOf_Field4 struct { Field4 int64 `protobuf:"varint,4,opt,name=Field4,proto3,oneof"` } type SampleOneOf_Field5 struct { Field5 uint32 `protobuf:"varint,5,opt,name=Field5,proto3,oneof"` } type SampleOneOf_Field6 struct { Field6 uint64 `protobuf:"varint,6,opt,name=Field6,proto3,oneof"` } type SampleOneOf_Field7 struct { Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7,proto3,oneof"` } type SampleOneOf_Field8 struct { Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8,proto3,oneof"` } type SampleOneOf_Field9 struct { Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9,proto3,oneof"` } type SampleOneOf_Field10 struct { Field10 int32 `protobuf:"fixed32,10,opt,name=Field10,proto3,oneof"` } type SampleOneOf_Field11 struct { Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11,proto3,oneof"` } type SampleOneOf_Field12 struct { Field12 int64 `protobuf:"fixed64,12,opt,name=Field12,proto3,oneof"` } type SampleOneOf_Field13 struct { Field13 bool `protobuf:"varint,13,opt,name=Field13,proto3,oneof"` } type SampleOneOf_Field14 struct { Field14 string `protobuf:"bytes,14,opt,name=Field14,proto3,oneof"` } type SampleOneOf_Field15 struct { Field15 []byte `protobuf:"bytes,15,opt,name=Field15,proto3,oneof"` } type SampleOneOf_SubMessage struct { SubMessage *Subby `protobuf:"bytes,16,opt,name=sub_message,json=subMessage,oneof"` } func (*SampleOneOf_Field1) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field2) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field3) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field4) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field5) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field6) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field7) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field8) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field9) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field10) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field11) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field12) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field13) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field14) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field15) isSampleOneOf_TestOneof() {} func (*SampleOneOf_SubMessage) isSampleOneOf_TestOneof() {} func (m *SampleOneOf) GetTestOneof() isSampleOneOf_TestOneof { if m != nil { return m.TestOneof } return nil } func (m *SampleOneOf) GetField1() float64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field1); ok { return x.Field1 } return 0 } func (m *SampleOneOf) GetField2() float32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field2); ok { return x.Field2 } return 0 } func (m *SampleOneOf) GetField3() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field3); ok { return x.Field3 } return 0 } func (m *SampleOneOf) GetField4() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field4); ok { return x.Field4 } return 0 } func (m *SampleOneOf) GetField5() uint32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field5); ok { return x.Field5 } return 0 } func (m *SampleOneOf) GetField6() uint64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field6); ok { return x.Field6 } return 0 } func (m *SampleOneOf) GetField7() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field7); ok { return x.Field7 } return 0 } func (m *SampleOneOf) GetField8() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field8); ok { return x.Field8 } return 0 } func (m *SampleOneOf) GetField9() uint32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field9); ok { return x.Field9 } return 0 } func (m *SampleOneOf) GetField10() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field10); ok { return x.Field10 } return 0 } func (m *SampleOneOf) GetField11() uint64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field11); ok { return x.Field11 } return 0 } func (m *SampleOneOf) GetField12() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field12); ok { return x.Field12 } return 0 } func (m *SampleOneOf) GetField13() bool { if x, ok := m.GetTestOneof().(*SampleOneOf_Field13); ok { return x.Field13 } return false } func (m *SampleOneOf) GetField14() string { if x, ok := m.GetTestOneof().(*SampleOneOf_Field14); ok { return x.Field14 } return "" } func (m *SampleOneOf) GetField15() []byte { if x, ok := m.GetTestOneof().(*SampleOneOf_Field15); ok { return x.Field15 } return nil } func (m *SampleOneOf) GetSubMessage() *Subby { if x, ok := m.GetTestOneof().(*SampleOneOf_SubMessage); ok { return x.SubMessage } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*SampleOneOf) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _SampleOneOf_OneofMarshaler, _SampleOneOf_OneofUnmarshaler, _SampleOneOf_OneofSizer, []interface{}{ (*SampleOneOf_Field1)(nil), (*SampleOneOf_Field2)(nil), (*SampleOneOf_Field3)(nil), (*SampleOneOf_Field4)(nil), (*SampleOneOf_Field5)(nil), (*SampleOneOf_Field6)(nil), (*SampleOneOf_Field7)(nil), (*SampleOneOf_Field8)(nil), (*SampleOneOf_Field9)(nil), (*SampleOneOf_Field10)(nil), (*SampleOneOf_Field11)(nil), (*SampleOneOf_Field12)(nil), (*SampleOneOf_Field13)(nil), (*SampleOneOf_Field14)(nil), (*SampleOneOf_Field15)(nil), (*SampleOneOf_SubMessage)(nil), } } func _SampleOneOf_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*SampleOneOf) // test_oneof switch x := m.TestOneof.(type) { case *SampleOneOf_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *SampleOneOf_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *SampleOneOf_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case *SampleOneOf_Field4: _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field4)) case *SampleOneOf_Field5: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field5)) case *SampleOneOf_Field6: _ = b.EncodeVarint(6<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field6)) case *SampleOneOf_Field7: _ = b.EncodeVarint(7<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Field7)) case *SampleOneOf_Field8: _ = b.EncodeVarint(8<<3 | proto.WireVarint) _ = b.EncodeZigzag64(uint64(x.Field8)) case *SampleOneOf_Field9: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field9)) case *SampleOneOf_Field10: _ = b.EncodeVarint(10<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field10)) case *SampleOneOf_Field11: _ = b.EncodeVarint(11<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field11)) case *SampleOneOf_Field12: _ = b.EncodeVarint(12<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field12)) case *SampleOneOf_Field13: t := uint64(0) if x.Field13 { t = 1 } _ = b.EncodeVarint(13<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *SampleOneOf_Field14: _ = b.EncodeVarint(14<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field14) case *SampleOneOf_Field15: _ = b.EncodeVarint(15<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field15) case *SampleOneOf_SubMessage: _ = b.EncodeVarint(16<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage); err != nil { return err } case nil: default: return fmt.Errorf("SampleOneOf.TestOneof has unexpected type %T", x) } return nil } func _SampleOneOf_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*SampleOneOf) switch tag { case 1: // test_oneof.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field1{math.Float64frombits(x)} return true, err case 2: // test_oneof.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // test_oneof.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field3{int32(x)} return true, err case 4: // test_oneof.Field4 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field4{int64(x)} return true, err case 5: // test_oneof.Field5 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field5{uint32(x)} return true, err case 6: // test_oneof.Field6 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field6{x} return true, err case 7: // test_oneof.Field7 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.TestOneof = &SampleOneOf_Field7{int32(x)} return true, err case 8: // test_oneof.Field8 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag64() m.TestOneof = &SampleOneOf_Field8{int64(x)} return true, err case 9: // test_oneof.Field9 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field9{uint32(x)} return true, err case 10: // test_oneof.Field10 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field10{int32(x)} return true, err case 11: // test_oneof.Field11 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field11{x} return true, err case 12: // test_oneof.Field12 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field12{int64(x)} return true, err case 13: // test_oneof.Field13 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field13{x != 0} return true, err case 14: // test_oneof.Field14 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.TestOneof = &SampleOneOf_Field14{x} return true, err case 15: // test_oneof.Field15 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.TestOneof = &SampleOneOf_Field15{x} return true, err case 16: // test_oneof.sub_message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.TestOneof = &SampleOneOf_SubMessage{msg} return true, err default: return false, nil } } func _SampleOneOf_OneofSizer(msg proto.Message) (n int) { m := msg.(*SampleOneOf) // test_oneof switch x := m.TestOneof.(type) { case *SampleOneOf_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case *SampleOneOf_Field4: n += proto.SizeVarint(4<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field4)) case *SampleOneOf_Field5: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field5)) case *SampleOneOf_Field6: n += proto.SizeVarint(6<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field6)) case *SampleOneOf_Field7: n += proto.SizeVarint(7<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.Field7) << 1) ^ uint32((int32(x.Field7) >> 31)))) case *SampleOneOf_Field8: n += proto.SizeVarint(8<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(uint64(x.Field8<<1) ^ uint64((int64(x.Field8) >> 63)))) case *SampleOneOf_Field9: n += proto.SizeVarint(9<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field10: n += proto.SizeVarint(10<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field11: n += proto.SizeVarint(11<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field12: n += proto.SizeVarint(12<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field13: n += proto.SizeVarint(13<<3 | proto.WireVarint) n += 1 case *SampleOneOf_Field14: n += proto.SizeVarint(14<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field14))) n += len(x.Field14) case *SampleOneOf_Field15: n += proto.SizeVarint(15<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field15))) n += len(x.Field15) case *SampleOneOf_SubMessage: s := proto.Size(x.SubMessage) n += proto.SizeVarint(16<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*Subby)(nil), "one.Subby") proto.RegisterType((*SampleOneOf)(nil), "one.SampleOneOf") } func (this *Subby) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *SampleOneOf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func OneDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3936 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0x26, 0x7e, 0x09, 0x1c, 0x80, 0xe0, 0xf2, 0x92, 0x92, 0x20, 0x3a, 0x86, 0x24, 0xfa, 0x8f, 0xb6, 0x6b, 0xd2, 0xa6, 0x44, 0xfd, 0x40, 0x4d, 0x5c, 0x90, 0x84, 0x28, 0xaa, 0x24, 0xc1, 0x2c, 0xc8, 0x58, 0x4e, 0x1f, 0x76, 0x16, 0x8b, 0x0b, 0x70, 0xa5, 0xc5, 0xee, 0x66, 0x77, 0x21, 0x99, 0x9a, 0x3e, 0xa8, 0xe3, 0xfe, 0x4c, 0xa6, 0xd3, 0xdf, 0x74, 0xa6, 0x89, 0xeb, 0xb8, 0x6d, 0x66, 0x5a, 0xa7, 0x49, 0x7f, 0x92, 0xa6, 0x4d, 0xd3, 0x3e, 0xf5, 0x25, 0xad, 0x9f, 0x3a, 0xc9, 0x5b, 0x1f, 0xf2, 0x60, 0xb1, 0x9e, 0x69, 0xda, 0xba, 0xad, 0xdb, 0xf8, 0x21, 0x33, 0x7e, 0xc9, 0xdc, 0xbf, 0xdd, 0xc5, 0x0f, 0xb5, 0x60, 0x66, 0x6c, 0x3f, 0x91, 0x7b, 0xce, 0xf9, 0xbe, 0x3d, 0xf7, 0xdc, 0x73, 0xef, 0x39, 0xf7, 0x62, 0xe1, 0xeb, 0x97, 0xe1, 0x6c, 0xdb, 0xb2, 0xda, 0x06, 0x5e, 0xb4, 0x1d, 0xcb, 0xb3, 0x1a, 0xdd, 0xd6, 0x62, 0x13, 0xbb, 0x9a, 0xa3, 0xdb, 0x9e, 0xe5, 0x2c, 0x50, 0x19, 0x9a, 0x64, 0x16, 0x0b, 0xc2, 0x62, 0x6e, 0x0b, 0xa6, 0xae, 0xe9, 0x06, 0x5e, 0xf3, 0x0d, 0xeb, 0xd8, 0x43, 0x97, 0x21, 0xd9, 0xd2, 0x0d, 0x5c, 0x8c, 0x9d, 0x4d, 0xcc, 0xe7, 0x96, 0x1e, 0x5f, 0xe8, 0x03, 0x2d, 0xf4, 0x22, 0x76, 0x88, 0x58, 0xa6, 0x88, 0xb9, 0x77, 0x92, 0x30, 0x3d, 0x44, 0x8b, 0x10, 0x24, 0x4d, 0xb5, 0x43, 0x18, 0x63, 0xf3, 0x59, 0x99, 0xfe, 0x8f, 0x8a, 0x30, 0x6e, 0xab, 0xda, 0x6d, 0xb5, 0x8d, 0x8b, 0x71, 0x2a, 0x16, 0x8f, 0xa8, 0x04, 0xd0, 0xc4, 0x36, 0x36, 0x9b, 0xd8, 0xd4, 0x0e, 0x8a, 0x89, 0xb3, 0x89, 0xf9, 0xac, 0x1c, 0x92, 0xa0, 0x67, 0x61, 0xca, 0xee, 0x36, 0x0c, 0x5d, 0x53, 0x42, 0x66, 0x70, 0x36, 0x31, 0x9f, 0x92, 0x25, 0xa6, 0x58, 0x0b, 0x8c, 0x9f, 0x82, 0xc9, 0xbb, 0x58, 0xbd, 0x1d, 0x36, 0xcd, 0x51, 0xd3, 0x02, 0x11, 0x87, 0x0c, 0x57, 0x21, 0xdf, 0xc1, 0xae, 0xab, 0xb6, 0xb1, 0xe2, 0x1d, 0xd8, 0xb8, 0x98, 0xa4, 0xa3, 0x3f, 0x3b, 0x30, 0xfa, 0xfe, 0x91, 0xe7, 0x38, 0x6a, 0xf7, 0xc0, 0xc6, 0xa8, 0x02, 0x59, 0x6c, 0x76, 0x3b, 0x8c, 0x21, 0x75, 0x44, 0xfc, 0xaa, 0x66, 0xb7, 0xd3, 0xcf, 0x92, 0x21, 0x30, 0x4e, 0x31, 0xee, 0x62, 0xe7, 0x8e, 0xae, 0xe1, 0x62, 0x9a, 0x12, 0x3c, 0x35, 0x40, 0x50, 0x67, 0xfa, 0x7e, 0x0e, 0x81, 0x43, 0xab, 0x90, 0xc5, 0xaf, 0x78, 0xd8, 0x74, 0x75, 0xcb, 0x2c, 0x8e, 0x53, 0x92, 0x27, 0x86, 0xcc, 0x22, 0x36, 0x9a, 0xfd, 0x14, 0x01, 0x0e, 0x5d, 0x84, 0x71, 0xcb, 0xf6, 0x74, 0xcb, 0x74, 0x8b, 0x99, 0xb3, 0xb1, 0xf9, 0xdc, 0xd2, 0x27, 0x86, 0x26, 0x42, 0x8d, 0xd9, 0xc8, 0xc2, 0x18, 0x6d, 0x80, 0xe4, 0x5a, 0x5d, 0x47, 0xc3, 0x8a, 0x66, 0x35, 0xb1, 0xa2, 0x9b, 0x2d, 0xab, 0x98, 0xa5, 0x04, 0x67, 0x06, 0x07, 0x42, 0x0d, 0x57, 0xad, 0x26, 0xde, 0x30, 0x5b, 0x96, 0x5c, 0x70, 0x7b, 0x9e, 0xd1, 0x49, 0x48, 0xbb, 0x07, 0xa6, 0xa7, 0xbe, 0x52, 0xcc, 0xd3, 0x0c, 0xe1, 0x4f, 0x73, 0x7f, 0x9f, 0x86, 0xc9, 0x51, 0x52, 0xec, 0x2a, 0xa4, 0x5a, 0x64, 0x94, 0xc5, 0xf8, 0x71, 0x62, 0xc0, 0x30, 0xbd, 0x41, 0x4c, 0xff, 0x94, 0x41, 0xac, 0x40, 0xce, 0xc4, 0xae, 0x87, 0x9b, 0x2c, 0x23, 0x12, 0x23, 0xe6, 0x14, 0x30, 0xd0, 0x60, 0x4a, 0x25, 0x7f, 0xaa, 0x94, 0xba, 0x09, 0x93, 0xbe, 0x4b, 0x8a, 0xa3, 0x9a, 0x6d, 0x91, 0x9b, 0x8b, 0x51, 0x9e, 0x2c, 0x54, 0x05, 0x4e, 0x26, 0x30, 0xb9, 0x80, 0x7b, 0x9e, 0xd1, 0x1a, 0x80, 0x65, 0x62, 0xab, 0xa5, 0x34, 0xb1, 0x66, 0x14, 0x33, 0x47, 0x44, 0xa9, 0x46, 0x4c, 0x06, 0xa2, 0x64, 0x31, 0xa9, 0x66, 0xa0, 0x2b, 0x41, 0xaa, 0x8d, 0x1f, 0x91, 0x29, 0x5b, 0x6c, 0x91, 0x0d, 0x64, 0xdb, 0x1e, 0x14, 0x1c, 0x4c, 0xf2, 0x1e, 0x37, 0xf9, 0xc8, 0xb2, 0xd4, 0x89, 0x85, 0xc8, 0x91, 0xc9, 0x1c, 0xc6, 0x06, 0x36, 0xe1, 0x84, 0x1f, 0xd1, 0x63, 0xe0, 0x0b, 0x14, 0x9a, 0x56, 0x40, 0x77, 0xa1, 0xbc, 0x10, 0x6e, 0xab, 0x1d, 0x3c, 0x7b, 0x0f, 0x0a, 0xbd, 0xe1, 0x41, 0x33, 0x90, 0x72, 0x3d, 0xd5, 0xf1, 0x68, 0x16, 0xa6, 0x64, 0xf6, 0x80, 0x24, 0x48, 0x60, 0xb3, 0x49, 0x77, 0xb9, 0x94, 0x4c, 0xfe, 0x45, 0x3f, 0x17, 0x0c, 0x38, 0x41, 0x07, 0xfc, 0xe4, 0xe0, 0x8c, 0xf6, 0x30, 0xf7, 0x8f, 0x7b, 0xf6, 0x12, 0x4c, 0xf4, 0x0c, 0x60, 0xd4, 0x57, 0xcf, 0xfd, 0x22, 0x9c, 0x18, 0x4a, 0x8d, 0x6e, 0xc2, 0x4c, 0xd7, 0xd4, 0x4d, 0x0f, 0x3b, 0xb6, 0x83, 0x49, 0xc6, 0xb2, 0x57, 0x15, 0xff, 0x7d, 0xfc, 0x88, 0x9c, 0xdb, 0x0b, 0x5b, 0x33, 0x16, 0x79, 0xba, 0x3b, 0x28, 0x7c, 0x26, 0x9b, 0xf9, 0xe1, 0xb8, 0x74, 0xff, 0xfe, 0xfd, 0xfb, 0xf1, 0xb9, 0x2f, 0xa6, 0x61, 0x66, 0xd8, 0x9a, 0x19, 0xba, 0x7c, 0x4f, 0x42, 0xda, 0xec, 0x76, 0x1a, 0xd8, 0xa1, 0x41, 0x4a, 0xc9, 0xfc, 0x09, 0x55, 0x20, 0x65, 0xa8, 0x0d, 0x6c, 0x14, 0x93, 0x67, 0x63, 0xf3, 0x85, 0xa5, 0x67, 0x47, 0x5a, 0x95, 0x0b, 0x9b, 0x04, 0x22, 0x33, 0x24, 0xfa, 0x14, 0x24, 0xf9, 0x16, 0x4d, 0x18, 0x9e, 0x19, 0x8d, 0x81, 0xac, 0x25, 0x99, 0xe2, 0xd0, 0x23, 0x90, 0x25, 0x7f, 0x59, 0x6e, 0xa4, 0xa9, 0xcf, 0x19, 0x22, 0x20, 0x79, 0x81, 0x66, 0x21, 0x43, 0x97, 0x49, 0x13, 0x8b, 0xd2, 0xe6, 0x3f, 0x93, 0xc4, 0x6a, 0xe2, 0x96, 0xda, 0x35, 0x3c, 0xe5, 0x8e, 0x6a, 0x74, 0x31, 0x4d, 0xf8, 0xac, 0x9c, 0xe7, 0xc2, 0xcf, 0x10, 0x19, 0x3a, 0x03, 0x39, 0xb6, 0xaa, 0x74, 0xb3, 0x89, 0x5f, 0xa1, 0xbb, 0x67, 0x4a, 0x66, 0x0b, 0x6d, 0x83, 0x48, 0xc8, 0xeb, 0x6f, 0xb9, 0x96, 0x29, 0x52, 0x93, 0xbe, 0x82, 0x08, 0xe8, 0xeb, 0x2f, 0xf5, 0x6f, 0xdc, 0x8f, 0x0e, 0x1f, 0x5e, 0x7f, 0x4e, 0xcd, 0x7d, 0x3b, 0x0e, 0x49, 0xba, 0x5f, 0x4c, 0x42, 0x6e, 0xf7, 0xe5, 0x9d, 0xaa, 0xb2, 0x56, 0xdb, 0x5b, 0xd9, 0xac, 0x4a, 0x31, 0x54, 0x00, 0xa0, 0x82, 0x6b, 0x9b, 0xb5, 0xca, 0xae, 0x14, 0xf7, 0x9f, 0x37, 0xb6, 0x77, 0x2f, 0x5e, 0x90, 0x12, 0x3e, 0x60, 0x8f, 0x09, 0x92, 0x61, 0x83, 0xf3, 0x4b, 0x52, 0x0a, 0x49, 0x90, 0x67, 0x04, 0x1b, 0x37, 0xab, 0x6b, 0x17, 0x2f, 0x48, 0xe9, 0x5e, 0xc9, 0xf9, 0x25, 0x69, 0x1c, 0x4d, 0x40, 0x96, 0x4a, 0x56, 0x6a, 0xb5, 0x4d, 0x29, 0xe3, 0x73, 0xd6, 0x77, 0xe5, 0x8d, 0xed, 0x75, 0x29, 0xeb, 0x73, 0xae, 0xcb, 0xb5, 0xbd, 0x1d, 0x09, 0x7c, 0x86, 0xad, 0x6a, 0xbd, 0x5e, 0x59, 0xaf, 0x4a, 0x39, 0xdf, 0x62, 0xe5, 0xe5, 0xdd, 0x6a, 0x5d, 0xca, 0xf7, 0xb8, 0x75, 0x7e, 0x49, 0x9a, 0xf0, 0x5f, 0x51, 0xdd, 0xde, 0xdb, 0x92, 0x0a, 0x68, 0x0a, 0x26, 0xd8, 0x2b, 0x84, 0x13, 0x93, 0x7d, 0xa2, 0x8b, 0x17, 0x24, 0x29, 0x70, 0x84, 0xb1, 0x4c, 0xf5, 0x08, 0x2e, 0x5e, 0x90, 0xd0, 0xdc, 0x2a, 0xa4, 0x68, 0x76, 0x21, 0x04, 0x85, 0xcd, 0xca, 0x4a, 0x75, 0x53, 0xa9, 0xed, 0xec, 0x6e, 0xd4, 0xb6, 0x2b, 0x9b, 0x52, 0x2c, 0x90, 0xc9, 0xd5, 0x4f, 0xef, 0x6d, 0xc8, 0xd5, 0x35, 0x29, 0x1e, 0x96, 0xed, 0x54, 0x2b, 0xbb, 0xd5, 0x35, 0x29, 0x31, 0xa7, 0xc1, 0xcc, 0xb0, 0x7d, 0x72, 0xe8, 0xca, 0x08, 0x4d, 0x71, 0xfc, 0x88, 0x29, 0xa6, 0x5c, 0x03, 0x53, 0xfc, 0x95, 0x18, 0x4c, 0x0f, 0xa9, 0x15, 0x43, 0x5f, 0xf2, 0x22, 0xa4, 0x58, 0x8a, 0xb2, 0xea, 0xf9, 0xf4, 0xd0, 0xa2, 0x43, 0x13, 0x76, 0xa0, 0x82, 0x52, 0x5c, 0xb8, 0x83, 0x48, 0x1c, 0xd1, 0x41, 0x10, 0x8a, 0x01, 0x27, 0x5f, 0x8d, 0x41, 0xf1, 0x28, 0xee, 0x88, 0x8d, 0x22, 0xde, 0xb3, 0x51, 0x5c, 0xed, 0x77, 0xe0, 0xdc, 0xd1, 0x63, 0x18, 0xf0, 0xe2, 0xcd, 0x18, 0x9c, 0x1c, 0xde, 0x68, 0x0d, 0xf5, 0xe1, 0x53, 0x90, 0xee, 0x60, 0x6f, 0xdf, 0x12, 0xcd, 0xc6, 0x93, 0x43, 0x4a, 0x18, 0x51, 0xf7, 0xc7, 0x8a, 0xa3, 0xc2, 0x35, 0x30, 0x71, 0x54, 0xb7, 0xc4, 0xbc, 0x19, 0xf0, 0xf4, 0xf3, 0x71, 0x38, 0x31, 0x94, 0x7c, 0xa8, 0xa3, 0x8f, 0x02, 0xe8, 0xa6, 0xdd, 0xf5, 0x58, 0x43, 0xc1, 0xf6, 0xa7, 0x2c, 0x95, 0xd0, 0xb5, 0x4f, 0xf6, 0x9e, 0xae, 0xe7, 0xeb, 0x13, 0x54, 0x0f, 0x4c, 0x44, 0x0d, 0x2e, 0x07, 0x8e, 0x26, 0xa9, 0xa3, 0xa5, 0x23, 0x46, 0x3a, 0x50, 0xab, 0x9f, 0x07, 0x49, 0x33, 0x74, 0x6c, 0x7a, 0x8a, 0xeb, 0x39, 0x58, 0xed, 0xe8, 0x66, 0x9b, 0x6e, 0xc0, 0x99, 0x72, 0xaa, 0xa5, 0x1a, 0x2e, 0x96, 0x27, 0x99, 0xba, 0x2e, 0xb4, 0x04, 0x41, 0x6b, 0x9c, 0x13, 0x42, 0xa4, 0x7b, 0x10, 0x4c, 0xed, 0x23, 0xe6, 0xbe, 0x95, 0x81, 0x5c, 0xa8, 0x2d, 0x45, 0xe7, 0x20, 0x7f, 0x4b, 0xbd, 0xa3, 0x2a, 0xe2, 0xa8, 0xc1, 0x22, 0x91, 0x23, 0xb2, 0x1d, 0x7e, 0xdc, 0x78, 0x1e, 0x66, 0xa8, 0x89, 0xd5, 0xf5, 0xb0, 0xa3, 0x68, 0x86, 0xea, 0xba, 0x34, 0x68, 0x19, 0x6a, 0x8a, 0x88, 0xae, 0x46, 0x54, 0xab, 0x42, 0x83, 0x96, 0x61, 0x9a, 0x22, 0x3a, 0x5d, 0xc3, 0xd3, 0x6d, 0x03, 0x2b, 0xe4, 0xf0, 0xe3, 0xd2, 0x8d, 0xd8, 0xf7, 0x6c, 0x8a, 0x58, 0x6c, 0x71, 0x03, 0xe2, 0x91, 0x8b, 0xd6, 0xe0, 0x51, 0x0a, 0x6b, 0x63, 0x13, 0x3b, 0xaa, 0x87, 0x15, 0xfc, 0xb9, 0xae, 0x6a, 0xb8, 0x8a, 0x6a, 0x36, 0x95, 0x7d, 0xd5, 0xdd, 0x2f, 0xce, 0x10, 0x82, 0x95, 0x78, 0x31, 0x26, 0x9f, 0x26, 0x86, 0xeb, 0xdc, 0xae, 0x4a, 0xcd, 0x2a, 0x66, 0xf3, 0xba, 0xea, 0xee, 0xa3, 0x32, 0x9c, 0xa4, 0x2c, 0xae, 0xe7, 0xe8, 0x66, 0x5b, 0xd1, 0xf6, 0xb1, 0x76, 0x5b, 0xe9, 0x7a, 0xad, 0xcb, 0xc5, 0x47, 0xc2, 0xef, 0xa7, 0x1e, 0xd6, 0xa9, 0xcd, 0x2a, 0x31, 0xd9, 0xf3, 0x5a, 0x97, 0x51, 0x1d, 0xf2, 0x64, 0x32, 0x3a, 0xfa, 0x3d, 0xac, 0xb4, 0x2c, 0x87, 0x56, 0x96, 0xc2, 0x90, 0x95, 0x1d, 0x8a, 0xe0, 0x42, 0x8d, 0x03, 0xb6, 0xac, 0x26, 0x2e, 0xa7, 0xea, 0x3b, 0xd5, 0xea, 0x9a, 0x9c, 0x13, 0x2c, 0xd7, 0x2c, 0x87, 0x24, 0x54, 0xdb, 0xf2, 0x03, 0x9c, 0x63, 0x09, 0xd5, 0xb6, 0x44, 0x78, 0x97, 0x61, 0x5a, 0xd3, 0xd8, 0x98, 0x75, 0x4d, 0xe1, 0x47, 0x14, 0xb7, 0x28, 0xf5, 0x04, 0x4b, 0xd3, 0xd6, 0x99, 0x01, 0xcf, 0x71, 0x17, 0x5d, 0x81, 0x13, 0x41, 0xb0, 0xc2, 0xc0, 0xa9, 0x81, 0x51, 0xf6, 0x43, 0x97, 0x61, 0xda, 0x3e, 0x18, 0x04, 0xa2, 0x9e, 0x37, 0xda, 0x07, 0xfd, 0xb0, 0x4b, 0x30, 0x63, 0xef, 0xdb, 0x83, 0xb8, 0xe9, 0x30, 0x0e, 0xd9, 0xfb, 0x76, 0x3f, 0xf0, 0x09, 0x7a, 0x5e, 0x75, 0xb0, 0xa6, 0x7a, 0xb8, 0x59, 0x3c, 0x15, 0x36, 0x0f, 0x29, 0xd0, 0x22, 0x48, 0x9a, 0xa6, 0x60, 0x53, 0x6d, 0x18, 0x58, 0x51, 0x1d, 0x6c, 0xaa, 0x6e, 0xf1, 0x4c, 0xd8, 0xb8, 0xa0, 0x69, 0x55, 0xaa, 0xad, 0x50, 0x25, 0x7a, 0x06, 0xa6, 0xac, 0xc6, 0x2d, 0x8d, 0xa5, 0xa4, 0x62, 0x3b, 0xb8, 0xa5, 0xbf, 0x52, 0x7c, 0x9c, 0xc6, 0x77, 0x92, 0x28, 0x68, 0x42, 0xee, 0x50, 0x31, 0x7a, 0x1a, 0x24, 0xcd, 0xdd, 0x57, 0x1d, 0x9b, 0xf6, 0x04, 0xae, 0xad, 0x6a, 0xb8, 0xf8, 0x04, 0x33, 0x65, 0xf2, 0x6d, 0x21, 0x26, 0x4b, 0xc2, 0xbd, 0xab, 0xb7, 0x3c, 0xc1, 0xf8, 0x14, 0x5b, 0x12, 0x54, 0xc6, 0xd9, 0xe6, 0x41, 0x22, 0xa1, 0xe8, 0x79, 0xf1, 0x3c, 0x35, 0x2b, 0xd8, 0xfb, 0x76, 0xf8, 0xbd, 0x8f, 0xc1, 0x04, 0xb1, 0x0c, 0x5e, 0xfa, 0x34, 0xeb, 0x67, 0xec, 0xfd, 0xd0, 0x1b, 0x3f, 0xb4, 0xd6, 0x72, 0xae, 0x0c, 0xf9, 0x70, 0x7e, 0xa2, 0x2c, 0xb0, 0x0c, 0x95, 0x62, 0xa4, 0xd6, 0xaf, 0xd6, 0xd6, 0x48, 0x95, 0xfe, 0x6c, 0x55, 0x8a, 0x93, 0x6e, 0x61, 0x73, 0x63, 0xb7, 0xaa, 0xc8, 0x7b, 0xdb, 0xbb, 0x1b, 0x5b, 0x55, 0x29, 0x11, 0x6e, 0x4b, 0xbf, 0x1b, 0x87, 0x42, 0xef, 0x09, 0x03, 0xfd, 0x2c, 0x9c, 0x12, 0xd7, 0x01, 0x2e, 0xf6, 0x94, 0xbb, 0xba, 0x43, 0x97, 0x4c, 0x47, 0x65, 0x1d, 0xb6, 0x3f, 0x69, 0x33, 0xdc, 0xaa, 0x8e, 0xbd, 0x97, 0x74, 0x87, 0x2c, 0x88, 0x8e, 0xea, 0xa1, 0x4d, 0x38, 0x63, 0x5a, 0x8a, 0xeb, 0xa9, 0x66, 0x53, 0x75, 0x9a, 0x4a, 0x70, 0x11, 0xa3, 0xa8, 0x9a, 0x86, 0x5d, 0xd7, 0x62, 0xa5, 0xca, 0x67, 0xf9, 0x84, 0x69, 0xd5, 0xb9, 0x71, 0xb0, 0x87, 0x57, 0xb8, 0x69, 0x5f, 0x82, 0x25, 0x8e, 0x4a, 0xb0, 0x47, 0x20, 0xdb, 0x51, 0x6d, 0x05, 0x9b, 0x9e, 0x73, 0x40, 0xfb, 0xca, 0x8c, 0x9c, 0xe9, 0xa8, 0x76, 0x95, 0x3c, 0x7f, 0x34, 0xed, 0xfd, 0x0f, 0x12, 0x90, 0x0f, 0xf7, 0x96, 0xa4, 0x55, 0xd7, 0x68, 0x1d, 0x89, 0xd1, 0x9d, 0xe6, 0xb1, 0x87, 0x76, 0xa2, 0x0b, 0xab, 0xa4, 0xc0, 0x94, 0xd3, 0xac, 0xe3, 0x93, 0x19, 0x92, 0x14, 0x77, 0xb2, 0xb7, 0x60, 0x76, 0x8a, 0xc9, 0xc8, 0xfc, 0x09, 0xad, 0x43, 0xfa, 0x96, 0x4b, 0xb9, 0xd3, 0x94, 0xfb, 0xf1, 0x87, 0x73, 0xdf, 0xa8, 0x53, 0xf2, 0xec, 0x8d, 0xba, 0xb2, 0x5d, 0x93, 0xb7, 0x2a, 0x9b, 0x32, 0x87, 0xa3, 0xd3, 0x90, 0x34, 0xd4, 0x7b, 0x07, 0xbd, 0xa5, 0x88, 0x8a, 0x46, 0x0d, 0xfc, 0x69, 0x48, 0xde, 0xc5, 0xea, 0xed, 0xde, 0x02, 0x40, 0x45, 0x1f, 0x62, 0xea, 0x2f, 0x42, 0x8a, 0xc6, 0x0b, 0x01, 0xf0, 0x88, 0x49, 0x63, 0x28, 0x03, 0xc9, 0xd5, 0x9a, 0x4c, 0xd2, 0x5f, 0x82, 0x3c, 0x93, 0x2a, 0x3b, 0x1b, 0xd5, 0xd5, 0xaa, 0x14, 0x9f, 0x5b, 0x86, 0x34, 0x0b, 0x02, 0x59, 0x1a, 0x7e, 0x18, 0xa4, 0x31, 0xfe, 0xc8, 0x39, 0x62, 0x42, 0xbb, 0xb7, 0xb5, 0x52, 0x95, 0xa5, 0x78, 0x78, 0x7a, 0x5d, 0xc8, 0x87, 0xdb, 0xca, 0x8f, 0x26, 0xa7, 0xfe, 0x21, 0x06, 0xb9, 0x50, 0x9b, 0x48, 0x1a, 0x14, 0xd5, 0x30, 0xac, 0xbb, 0x8a, 0x6a, 0xe8, 0xaa, 0xcb, 0x93, 0x02, 0xa8, 0xa8, 0x42, 0x24, 0xa3, 0x4e, 0xda, 0x47, 0xe2, 0xfc, 0x1b, 0x31, 0x90, 0xfa, 0x5b, 0xcc, 0x3e, 0x07, 0x63, 0x1f, 0xab, 0x83, 0xaf, 0xc7, 0xa0, 0xd0, 0xdb, 0x57, 0xf6, 0xb9, 0x77, 0xee, 0x63, 0x75, 0xef, 0xed, 0x38, 0x4c, 0xf4, 0x74, 0x93, 0xa3, 0x7a, 0xf7, 0x39, 0x98, 0xd2, 0x9b, 0xb8, 0x63, 0x5b, 0x1e, 0x36, 0xb5, 0x03, 0xc5, 0xc0, 0x77, 0xb0, 0x51, 0x9c, 0xa3, 0x1b, 0xc5, 0xe2, 0xc3, 0xfb, 0xd5, 0x85, 0x8d, 0x00, 0xb7, 0x49, 0x60, 0xe5, 0xe9, 0x8d, 0xb5, 0xea, 0xd6, 0x4e, 0x6d, 0xb7, 0xba, 0xbd, 0xfa, 0xb2, 0xb2, 0xb7, 0xfd, 0xf3, 0xdb, 0xb5, 0x97, 0xb6, 0x65, 0x49, 0xef, 0x33, 0xfb, 0x10, 0x97, 0xfa, 0x0e, 0x48, 0xfd, 0x4e, 0xa1, 0x53, 0x30, 0xcc, 0x2d, 0x69, 0x0c, 0x4d, 0xc3, 0xe4, 0x76, 0x4d, 0xa9, 0x6f, 0xac, 0x55, 0x95, 0xea, 0xb5, 0x6b, 0xd5, 0xd5, 0xdd, 0x3a, 0x3b, 0xc0, 0xfb, 0xd6, 0xbb, 0xbd, 0x8b, 0xfa, 0xb5, 0x04, 0x4c, 0x0f, 0xf1, 0x04, 0x55, 0xf8, 0xd9, 0x81, 0x1d, 0x67, 0x9e, 0x1b, 0xc5, 0xfb, 0x05, 0x52, 0xf2, 0x77, 0x54, 0xc7, 0xe3, 0x47, 0x8d, 0xa7, 0x81, 0x44, 0xc9, 0xf4, 0xf4, 0x96, 0x8e, 0x1d, 0x7e, 0xdf, 0xc1, 0x0e, 0x14, 0x93, 0x81, 0x9c, 0x5d, 0x79, 0xfc, 0x0c, 0x20, 0xdb, 0x72, 0x75, 0x4f, 0xbf, 0x83, 0x15, 0xdd, 0x14, 0x97, 0x23, 0xe4, 0x80, 0x91, 0x94, 0x25, 0xa1, 0xd9, 0x30, 0x3d, 0xdf, 0xda, 0xc4, 0x6d, 0xb5, 0xcf, 0x9a, 0x6c, 0xe0, 0x09, 0x59, 0x12, 0x1a, 0xdf, 0xfa, 0x1c, 0xe4, 0x9b, 0x56, 0x97, 0x74, 0x5d, 0xcc, 0x8e, 0xd4, 0x8b, 0x98, 0x9c, 0x63, 0x32, 0xdf, 0x84, 0xf7, 0xd3, 0xc1, 0xad, 0x4c, 0x5e, 0xce, 0x31, 0x19, 0x33, 0x79, 0x0a, 0x26, 0xd5, 0x76, 0xdb, 0x21, 0xe4, 0x82, 0x88, 0x9d, 0x10, 0x0a, 0xbe, 0x98, 0x1a, 0xce, 0xde, 0x80, 0x8c, 0x88, 0x03, 0x29, 0xc9, 0x24, 0x12, 0x8a, 0xcd, 0x6e, 0xe6, 0xe2, 0xf3, 0x59, 0x39, 0x63, 0x0a, 0xe5, 0x39, 0xc8, 0xeb, 0xae, 0x12, 0x5c, 0x32, 0xc7, 0xcf, 0xc6, 0xe7, 0x33, 0x72, 0x4e, 0x77, 0xfd, 0x0b, 0xba, 0xb9, 0x37, 0xe3, 0x50, 0xe8, 0xbd, 0x24, 0x47, 0x6b, 0x90, 0x31, 0x2c, 0x4d, 0xa5, 0xa9, 0xc5, 0x7e, 0xa1, 0x99, 0x8f, 0xb8, 0x57, 0x5f, 0xd8, 0xe4, 0xf6, 0xb2, 0x8f, 0x9c, 0xfd, 0x97, 0x18, 0x64, 0x84, 0x18, 0x9d, 0x84, 0xa4, 0xad, 0x7a, 0xfb, 0x94, 0x2e, 0xb5, 0x12, 0x97, 0x62, 0x32, 0x7d, 0x26, 0x72, 0xd7, 0x56, 0x4d, 0x9a, 0x02, 0x5c, 0x4e, 0x9e, 0xc9, 0xbc, 0x1a, 0x58, 0x6d, 0xd2, 0xe3, 0x87, 0xd5, 0xe9, 0x60, 0xd3, 0x73, 0xc5, 0xbc, 0x72, 0xf9, 0x2a, 0x17, 0xa3, 0x67, 0x61, 0xca, 0x73, 0x54, 0xdd, 0xe8, 0xb1, 0x4d, 0x52, 0x5b, 0x49, 0x28, 0x7c, 0xe3, 0x32, 0x9c, 0x16, 0xbc, 0x4d, 0xec, 0xa9, 0xda, 0x3e, 0x6e, 0x06, 0xa0, 0x34, 0xbd, 0x81, 0x3d, 0xc5, 0x0d, 0xd6, 0xb8, 0x5e, 0x60, 0xe7, 0xbe, 0x1f, 0x83, 0x29, 0x71, 0x60, 0x6a, 0xfa, 0xc1, 0xda, 0x02, 0x50, 0x4d, 0xd3, 0xf2, 0xc2, 0xe1, 0x1a, 0x4c, 0xe5, 0x01, 0xdc, 0x42, 0xc5, 0x07, 0xc9, 0x21, 0x82, 0xd9, 0x0e, 0x40, 0xa0, 0x39, 0x32, 0x6c, 0x67, 0x20, 0xc7, 0x7f, 0x01, 0xa1, 0x3f, 0xa3, 0xb1, 0x23, 0x36, 0x30, 0x11, 0x39, 0x59, 0xa1, 0x19, 0x48, 0x35, 0x70, 0x5b, 0x37, 0xf9, 0xbd, 0x26, 0x7b, 0x10, 0x77, 0xb5, 0x49, 0xff, 0xae, 0x76, 0xe5, 0x26, 0x4c, 0x6b, 0x56, 0xa7, 0xdf, 0xdd, 0x15, 0xa9, 0xef, 0x98, 0xef, 0x5e, 0x8f, 0x7d, 0x16, 0x82, 0x16, 0xf3, 0x2b, 0xf1, 0xc4, 0xfa, 0xce, 0xca, 0xd7, 0xe2, 0xb3, 0xeb, 0x0c, 0xb7, 0x23, 0x86, 0x29, 0xe3, 0x96, 0x81, 0x35, 0xe2, 0x3a, 0xfc, 0xe8, 0x49, 0x78, 0xae, 0xad, 0x7b, 0xfb, 0xdd, 0xc6, 0x82, 0x66, 0x75, 0x16, 0xdb, 0x56, 0xdb, 0x0a, 0x7e, 0x36, 0x24, 0x4f, 0xf4, 0x81, 0xfe, 0xc7, 0x7f, 0x3a, 0xcc, 0xfa, 0xd2, 0xd9, 0xc8, 0xdf, 0x19, 0xcb, 0xdb, 0x30, 0xcd, 0x8d, 0x15, 0xfa, 0xdb, 0x05, 0x3b, 0x42, 0xa0, 0x87, 0xde, 0xff, 0x14, 0xbf, 0xf9, 0x0e, 0xad, 0xd5, 0xf2, 0x14, 0x87, 0x12, 0x1d, 0x3b, 0x65, 0x94, 0x65, 0x38, 0xd1, 0xc3, 0xc7, 0xd6, 0x25, 0x76, 0x22, 0x18, 0xbf, 0xcb, 0x19, 0xa7, 0x43, 0x8c, 0x75, 0x0e, 0x2d, 0xaf, 0xc2, 0xc4, 0x71, 0xb8, 0xfe, 0x89, 0x73, 0xe5, 0x71, 0x98, 0x64, 0x1d, 0x26, 0x29, 0x89, 0xd6, 0x75, 0x3d, 0xab, 0x43, 0x37, 0xbd, 0x87, 0xd3, 0xfc, 0xf3, 0x3b, 0x6c, 0xa1, 0x14, 0x08, 0x6c, 0xd5, 0x47, 0x95, 0xcb, 0x40, 0x7f, 0xae, 0x69, 0x62, 0xcd, 0x88, 0x60, 0x78, 0x8b, 0x3b, 0xe2, 0xdb, 0x97, 0x3f, 0x03, 0x33, 0xe4, 0x7f, 0xba, 0x27, 0x85, 0x3d, 0x89, 0xbe, 0xed, 0x2a, 0x7e, 0xff, 0x55, 0xb6, 0x16, 0xa7, 0x7d, 0x82, 0x90, 0x4f, 0xa1, 0x59, 0x6c, 0x63, 0xcf, 0xc3, 0x8e, 0xab, 0xa8, 0xc6, 0x30, 0xf7, 0x42, 0xd7, 0x05, 0xc5, 0x2f, 0xbd, 0xdb, 0x3b, 0x8b, 0xeb, 0x0c, 0x59, 0x31, 0x8c, 0xf2, 0x1e, 0x9c, 0x1a, 0x92, 0x15, 0x23, 0x70, 0xbe, 0xc6, 0x39, 0x67, 0x06, 0x32, 0x83, 0xd0, 0xee, 0x80, 0x90, 0xfb, 0x73, 0x39, 0x02, 0xe7, 0x1f, 0x70, 0x4e, 0xc4, 0xb1, 0x62, 0x4a, 0x09, 0xe3, 0x0d, 0x98, 0xba, 0x83, 0x9d, 0x86, 0xe5, 0xf2, 0x2b, 0x9a, 0x11, 0xe8, 0x5e, 0xe7, 0x74, 0x93, 0x1c, 0x48, 0xef, 0x6c, 0x08, 0xd7, 0x15, 0xc8, 0xb4, 0x54, 0x0d, 0x8f, 0x40, 0xf1, 0x65, 0x4e, 0x31, 0x4e, 0xec, 0x09, 0xb4, 0x02, 0xf9, 0xb6, 0xc5, 0xcb, 0x52, 0x34, 0xfc, 0x0d, 0x0e, 0xcf, 0x09, 0x0c, 0xa7, 0xb0, 0x2d, 0xbb, 0x6b, 0x90, 0x9a, 0x15, 0x4d, 0xf1, 0x87, 0x82, 0x42, 0x60, 0x38, 0xc5, 0x31, 0xc2, 0xfa, 0x47, 0x82, 0xc2, 0x0d, 0xc5, 0xf3, 0x45, 0xc8, 0x59, 0xa6, 0x71, 0x60, 0x99, 0xa3, 0x38, 0xf1, 0xc7, 0x9c, 0x01, 0x38, 0x84, 0x10, 0x5c, 0x85, 0xec, 0xa8, 0x13, 0xf1, 0x27, 0xef, 0x8a, 0xe5, 0x21, 0x66, 0x60, 0x1d, 0x26, 0xc5, 0x06, 0xa5, 0x5b, 0xe6, 0x08, 0x14, 0x7f, 0xca, 0x29, 0x0a, 0x21, 0x18, 0x1f, 0x86, 0x87, 0x5d, 0xaf, 0x8d, 0x47, 0x21, 0x79, 0x53, 0x0c, 0x83, 0x43, 0x78, 0x28, 0x1b, 0xd8, 0xd4, 0xf6, 0x47, 0x63, 0xf8, 0xaa, 0x08, 0xa5, 0xc0, 0x10, 0x8a, 0x55, 0x98, 0xe8, 0xa8, 0x8e, 0xbb, 0xaf, 0x1a, 0x23, 0x4d, 0xc7, 0x9f, 0x71, 0x8e, 0xbc, 0x0f, 0xe2, 0x11, 0xe9, 0x9a, 0xc7, 0xa1, 0xf9, 0x9a, 0x88, 0x48, 0x08, 0xc6, 0x97, 0x9e, 0xeb, 0xd1, 0xfb, 0xac, 0xe3, 0xb0, 0x7d, 0x5d, 0x2c, 0x3d, 0x86, 0xdd, 0x0a, 0x33, 0x5e, 0x85, 0xac, 0xab, 0xdf, 0x1b, 0x89, 0xe6, 0xcf, 0xc5, 0x4c, 0x53, 0x00, 0x01, 0xbf, 0x0c, 0xa7, 0x87, 0x96, 0x89, 0x11, 0xc8, 0xfe, 0x82, 0x93, 0x9d, 0x1c, 0x52, 0x2a, 0xf8, 0x96, 0x70, 0x5c, 0xca, 0xbf, 0x14, 0x5b, 0x02, 0xee, 0xe3, 0xda, 0x21, 0x07, 0x05, 0x57, 0x6d, 0x1d, 0x2f, 0x6a, 0x7f, 0x25, 0xa2, 0xc6, 0xb0, 0x3d, 0x51, 0xdb, 0x85, 0x93, 0x9c, 0xf1, 0x78, 0xf3, 0xfa, 0x0d, 0xb1, 0xb1, 0x32, 0xf4, 0x5e, 0xef, 0xec, 0xfe, 0x02, 0xcc, 0xfa, 0xe1, 0x14, 0x1d, 0xa9, 0xab, 0x74, 0x54, 0x7b, 0x04, 0xe6, 0x6f, 0x72, 0x66, 0xb1, 0xe3, 0xfb, 0x2d, 0xad, 0xbb, 0xa5, 0xda, 0x84, 0xfc, 0x26, 0x14, 0x05, 0x79, 0xd7, 0x74, 0xb0, 0x66, 0xb5, 0x4d, 0xfd, 0x1e, 0x6e, 0x8e, 0x40, 0xfd, 0xd7, 0x7d, 0x53, 0xb5, 0x17, 0x82, 0x13, 0xe6, 0x0d, 0x90, 0xfc, 0x5e, 0x45, 0xd1, 0x3b, 0xb6, 0xe5, 0x78, 0x11, 0x8c, 0xdf, 0x12, 0x33, 0xe5, 0xe3, 0x36, 0x28, 0xac, 0x5c, 0x85, 0x02, 0x7d, 0x1c, 0x35, 0x25, 0xff, 0x86, 0x13, 0x4d, 0x04, 0x28, 0xbe, 0x71, 0x68, 0x56, 0xc7, 0x56, 0x9d, 0x51, 0xf6, 0xbf, 0xbf, 0x15, 0x1b, 0x07, 0x87, 0xf0, 0x8d, 0xc3, 0x3b, 0xb0, 0x31, 0xa9, 0xf6, 0x23, 0x30, 0x7c, 0x5b, 0x6c, 0x1c, 0x02, 0xc3, 0x29, 0x44, 0xc3, 0x30, 0x02, 0xc5, 0xdf, 0x09, 0x0a, 0x81, 0x21, 0x14, 0x9f, 0x0e, 0x0a, 0xad, 0x83, 0xdb, 0xba, 0xeb, 0x39, 0xac, 0x0f, 0x7e, 0x38, 0xd5, 0x77, 0xde, 0xed, 0x6d, 0xc2, 0xe4, 0x10, 0xb4, 0x7c, 0x03, 0x26, 0xfb, 0x5a, 0x0c, 0x14, 0xf5, 0xed, 0x47, 0xf1, 0x97, 0xde, 0xe7, 0x9b, 0x51, 0x6f, 0x87, 0x51, 0xde, 0x24, 0xf3, 0xde, 0xdb, 0x07, 0x44, 0x93, 0xbd, 0xfa, 0xbe, 0x3f, 0xf5, 0x3d, 0x6d, 0x40, 0xf9, 0x1a, 0x4c, 0xf4, 0xf4, 0x00, 0xd1, 0x54, 0xbf, 0xcc, 0xa9, 0xf2, 0xe1, 0x16, 0xa0, 0xbc, 0x0c, 0x49, 0x52, 0xcf, 0xa3, 0xe1, 0xbf, 0xc2, 0xe1, 0xd4, 0xbc, 0xfc, 0x49, 0xc8, 0x88, 0x3a, 0x1e, 0x0d, 0xfd, 0x55, 0x0e, 0xf5, 0x21, 0x04, 0x2e, 0x6a, 0x78, 0x34, 0xfc, 0xd7, 0x04, 0x5c, 0x40, 0x08, 0x7c, 0xf4, 0x10, 0xfe, 0xe3, 0xaf, 0x27, 0xf9, 0x3e, 0x2c, 0x62, 0x77, 0x15, 0xc6, 0x79, 0xf1, 0x8e, 0x46, 0x7f, 0x9e, 0xbf, 0x5c, 0x20, 0xca, 0x97, 0x20, 0x35, 0x62, 0xc0, 0x7f, 0x83, 0x43, 0x99, 0x7d, 0x79, 0x15, 0x72, 0xa1, 0x82, 0x1d, 0x0d, 0xff, 0x4d, 0x0e, 0x0f, 0xa3, 0x88, 0xeb, 0xbc, 0x60, 0x47, 0x13, 0xfc, 0x96, 0x70, 0x9d, 0x23, 0x48, 0xd8, 0x44, 0xad, 0x8e, 0x46, 0xff, 0xb6, 0x88, 0xba, 0x80, 0x94, 0x5f, 0x84, 0xac, 0xbf, 0xff, 0x46, 0xe3, 0x7f, 0x87, 0xe3, 0x03, 0x0c, 0x89, 0x40, 0x68, 0xff, 0x8f, 0xa6, 0xf8, 0x5d, 0x11, 0x81, 0x10, 0x8a, 0x2c, 0xa3, 0xfe, 0x9a, 0x1e, 0xcd, 0xf4, 0x05, 0xb1, 0x8c, 0xfa, 0x4a, 0x3a, 0x99, 0x4d, 0xba, 0x0d, 0x46, 0x53, 0xfc, 0x9e, 0x98, 0x4d, 0x6a, 0x4f, 0xdc, 0xe8, 0x2f, 0x92, 0xd1, 0x1c, 0xbf, 0x2f, 0xdc, 0xe8, 0xab, 0x91, 0xe5, 0x1d, 0x40, 0x83, 0x05, 0x32, 0x9a, 0xef, 0x8b, 0x9c, 0x6f, 0x6a, 0xa0, 0x3e, 0x96, 0x5f, 0x82, 0x93, 0xc3, 0x8b, 0x63, 0x34, 0xeb, 0x97, 0xde, 0xef, 0x3b, 0xce, 0x84, 0x6b, 0x63, 0x79, 0x37, 0xd8, 0x65, 0xc3, 0x85, 0x31, 0x9a, 0xf6, 0xb5, 0xf7, 0x7b, 0x37, 0xda, 0x70, 0x5d, 0x2c, 0x57, 0x00, 0x82, 0x9a, 0x14, 0xcd, 0xf5, 0x3a, 0xe7, 0x0a, 0x81, 0xc8, 0xd2, 0xe0, 0x25, 0x29, 0x1a, 0xff, 0x65, 0xb1, 0x34, 0x38, 0x82, 0x2c, 0x0d, 0x51, 0x8d, 0xa2, 0xd1, 0x6f, 0x88, 0xa5, 0x21, 0x20, 0xe5, 0xab, 0x90, 0x31, 0xbb, 0x86, 0x41, 0x72, 0x0b, 0x3d, 0xfc, 0x73, 0xa6, 0xe2, 0x7f, 0x7c, 0xc0, 0xc1, 0x02, 0x50, 0x5e, 0x86, 0x14, 0xee, 0x34, 0x70, 0x33, 0x0a, 0xf9, 0x9f, 0x1f, 0x88, 0xfd, 0x84, 0x58, 0x97, 0x5f, 0x04, 0x60, 0x87, 0x69, 0xfa, 0x2b, 0x51, 0x04, 0xf6, 0xbf, 0x3e, 0xe0, 0x5f, 0x4a, 0x04, 0x90, 0x80, 0x80, 0x7d, 0x77, 0xf1, 0x70, 0x82, 0x77, 0x7b, 0x09, 0xe8, 0x01, 0xfc, 0x0a, 0x8c, 0xdf, 0x72, 0x2d, 0xd3, 0x53, 0xdb, 0x51, 0xe8, 0xff, 0xe6, 0x68, 0x61, 0x4f, 0x02, 0xd6, 0xb1, 0x1c, 0xec, 0xa9, 0x6d, 0x37, 0x0a, 0xfb, 0x3f, 0x1c, 0xeb, 0x03, 0x08, 0x58, 0x53, 0x5d, 0x6f, 0x94, 0x71, 0xff, 0xaf, 0x00, 0x0b, 0x00, 0x71, 0x9a, 0xfc, 0x7f, 0x1b, 0x1f, 0x44, 0x61, 0xdf, 0x13, 0x4e, 0x73, 0xfb, 0xf2, 0x27, 0x21, 0x4b, 0xfe, 0x65, 0x5f, 0x0f, 0x45, 0x80, 0xff, 0x8f, 0x83, 0x03, 0x04, 0x79, 0xb3, 0xeb, 0x35, 0x3d, 0x3d, 0x3a, 0xd8, 0xff, 0xcf, 0x67, 0x5a, 0xd8, 0x97, 0x2b, 0x90, 0x73, 0xbd, 0x66, 0xb3, 0xcb, 0x3b, 0x9a, 0x08, 0xf8, 0x8f, 0x3e, 0xf0, 0x0f, 0xb9, 0x3e, 0x66, 0xe5, 0xdc, 0xf0, 0xcb, 0x3a, 0x58, 0xb7, 0xd6, 0x2d, 0x76, 0x4d, 0x07, 0x5f, 0x48, 0xc1, 0x09, 0xcd, 0xea, 0x34, 0x2c, 0x77, 0xb1, 0x61, 0x79, 0xfb, 0x8b, 0x96, 0xc9, 0x0d, 0x51, 0xc2, 0x32, 0xf1, 0xec, 0xf1, 0x6e, 0xe4, 0xe6, 0x4e, 0x43, 0xaa, 0xde, 0x6d, 0x34, 0x0e, 0x90, 0x04, 0x09, 0xb7, 0xdb, 0xe0, 0x9f, 0xb6, 0x90, 0x7f, 0xe7, 0x7e, 0x90, 0x80, 0x5c, 0x5d, 0xed, 0xd8, 0x06, 0xae, 0x99, 0xb8, 0xd6, 0x42, 0x45, 0x48, 0xd3, 0x01, 0xbc, 0x40, 0x8d, 0x62, 0xd7, 0xc7, 0x64, 0xfe, 0xec, 0x6b, 0x96, 0xe8, 0x35, 0x65, 0xdc, 0xd7, 0x2c, 0xf9, 0x9a, 0xf3, 0xec, 0x96, 0xd2, 0xd7, 0x9c, 0xf7, 0x35, 0x17, 0xe8, 0x5d, 0x65, 0xc2, 0xd7, 0x5c, 0xf0, 0x35, 0xcb, 0xf4, 0x2e, 0x7e, 0xc2, 0xd7, 0x2c, 0xfb, 0x9a, 0x8b, 0xf4, 0xf6, 0x3d, 0xe9, 0x6b, 0x2e, 0xfa, 0x9a, 0x4b, 0xf4, 0xd2, 0x7d, 0xca, 0xd7, 0x5c, 0xf2, 0x35, 0x97, 0xe9, 0x45, 0x3b, 0xf2, 0x35, 0x97, 0x7d, 0xcd, 0x15, 0xfa, 0x05, 0xcb, 0xb8, 0xaf, 0xb9, 0x82, 0x66, 0x61, 0x9c, 0x8d, 0xec, 0x79, 0xfa, 0x6b, 0xec, 0xe4, 0xf5, 0x31, 0x59, 0x08, 0x02, 0xdd, 0x0b, 0xf4, 0x2b, 0x95, 0x74, 0xa0, 0x7b, 0x21, 0xd0, 0x2d, 0xd1, 0x6f, 0xcd, 0xa5, 0x40, 0xb7, 0x14, 0xe8, 0xce, 0x17, 0x27, 0xc8, 0xbc, 0x07, 0xba, 0xf3, 0x81, 0xee, 0x42, 0xb1, 0x40, 0xe2, 0x1f, 0xe8, 0x2e, 0x04, 0xba, 0xe5, 0xe2, 0xe4, 0xd9, 0xd8, 0x7c, 0x3e, 0xd0, 0x2d, 0xa3, 0xe7, 0x20, 0xe7, 0x76, 0x1b, 0x0a, 0xff, 0x78, 0x80, 0x7e, 0x0d, 0x93, 0x5b, 0x82, 0x05, 0x92, 0x11, 0x74, 0x52, 0xaf, 0x8f, 0xc9, 0xe0, 0x76, 0x1b, 0x7c, 0x63, 0x5c, 0xc9, 0x03, 0xbd, 0x47, 0x50, 0xe8, 0x37, 0xa0, 0x2b, 0x6b, 0x6f, 0x3d, 0x28, 0x8d, 0x7d, 0xef, 0x41, 0x69, 0xec, 0x5f, 0x1f, 0x94, 0xc6, 0xde, 0x7e, 0x50, 0x8a, 0xbd, 0xf7, 0xa0, 0x14, 0xfb, 0xf1, 0x83, 0x52, 0xec, 0xfe, 0x61, 0x29, 0xf6, 0xd5, 0xc3, 0x52, 0xec, 0x1b, 0x87, 0xa5, 0xd8, 0x77, 0x0e, 0x4b, 0xb1, 0xb7, 0x0e, 0x4b, 0xb1, 0xef, 0x1d, 0x96, 0x62, 0x6f, 0x1f, 0x96, 0x62, 0x3f, 0x3c, 0x2c, 0x8d, 0xbd, 0x77, 0x58, 0x8a, 0xfd, 0xf8, 0xb0, 0x34, 0x76, 0xff, 0xdf, 0x4a, 0x63, 0x8d, 0x34, 0x4d, 0xa3, 0xf3, 0x3f, 0x09, 0x00, 0x00, 0xff, 0xff, 0xdb, 0x68, 0x5e, 0x16, 0x3a, 0x32, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Subby) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Subby") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Subby but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Subby but is not nil && this == nil") } if this.Sub != that1.Sub { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } return nil } func (this *Subby) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Sub != that1.Sub { return false } return true } func (this *SampleOneOf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf) if !ok { that2, ok := that.(SampleOneOf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf but is not nil && this == nil") } if that1.TestOneof == nil { if this.TestOneof != nil { return fmt.Errorf("this.TestOneof != nil && that1.TestOneof == nil") } } else if this.TestOneof == nil { return fmt.Errorf("this.TestOneof == nil && that1.TestOneof != nil") } else if err := this.TestOneof.VerboseEqual(that1.TestOneof); err != nil { return err } return nil } func (this *SampleOneOf_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field1) if !ok { that2, ok := that.(SampleOneOf_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *SampleOneOf_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field2) if !ok { that2, ok := that.(SampleOneOf_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *SampleOneOf_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field3) if !ok { that2, ok := that.(SampleOneOf_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *SampleOneOf_Field4) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field4) if !ok { that2, ok := that.(SampleOneOf_Field4) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field4") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field4 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field4 but is not nil && this == nil") } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } return nil } func (this *SampleOneOf_Field5) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field5) if !ok { that2, ok := that.(SampleOneOf_Field5) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field5") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field5 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field5 but is not nil && this == nil") } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } return nil } func (this *SampleOneOf_Field6) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field6) if !ok { that2, ok := that.(SampleOneOf_Field6) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field6") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field6 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field6 but is not nil && this == nil") } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } return nil } func (this *SampleOneOf_Field7) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field7) if !ok { that2, ok := that.(SampleOneOf_Field7) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field7") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field7 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field7 but is not nil && this == nil") } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } return nil } func (this *SampleOneOf_Field8) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field8) if !ok { that2, ok := that.(SampleOneOf_Field8) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field8") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field8 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field8 but is not nil && this == nil") } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } return nil } func (this *SampleOneOf_Field9) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field9) if !ok { that2, ok := that.(SampleOneOf_Field9) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field9") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field9 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field9 but is not nil && this == nil") } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } return nil } func (this *SampleOneOf_Field10) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field10) if !ok { that2, ok := that.(SampleOneOf_Field10) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field10") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field10 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field10 but is not nil && this == nil") } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } return nil } func (this *SampleOneOf_Field11) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field11) if !ok { that2, ok := that.(SampleOneOf_Field11) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field11") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field11 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field11 but is not nil && this == nil") } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } return nil } func (this *SampleOneOf_Field12) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field12) if !ok { that2, ok := that.(SampleOneOf_Field12) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field12") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field12 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field12 but is not nil && this == nil") } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } return nil } func (this *SampleOneOf_Field13) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field13) if !ok { that2, ok := that.(SampleOneOf_Field13) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field13") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field13 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field13 but is not nil && this == nil") } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } return nil } func (this *SampleOneOf_Field14) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field14) if !ok { that2, ok := that.(SampleOneOf_Field14) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field14") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field14 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field14 but is not nil && this == nil") } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } return nil } func (this *SampleOneOf_Field15) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field15) if !ok { that2, ok := that.(SampleOneOf_Field15) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field15") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field15 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field15 but is not nil && this == nil") } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } return nil } func (this *SampleOneOf_SubMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_SubMessage) if !ok { that2, ok := that.(SampleOneOf_SubMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_SubMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_SubMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_SubMessage but is not nil && this == nil") } if !this.SubMessage.Equal(that1.SubMessage) { return fmt.Errorf("SubMessage this(%v) Not Equal that(%v)", this.SubMessage, that1.SubMessage) } return nil } func (this *SampleOneOf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf) if !ok { that2, ok := that.(SampleOneOf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.TestOneof == nil { if this.TestOneof != nil { return false } } else if this.TestOneof == nil { return false } else if !this.TestOneof.Equal(that1.TestOneof) { return false } return true } func (this *SampleOneOf_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field1) if !ok { that2, ok := that.(SampleOneOf_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *SampleOneOf_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field2) if !ok { that2, ok := that.(SampleOneOf_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *SampleOneOf_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field3) if !ok { that2, ok := that.(SampleOneOf_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *SampleOneOf_Field4) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field4) if !ok { that2, ok := that.(SampleOneOf_Field4) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field4 != that1.Field4 { return false } return true } func (this *SampleOneOf_Field5) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field5) if !ok { that2, ok := that.(SampleOneOf_Field5) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field5 != that1.Field5 { return false } return true } func (this *SampleOneOf_Field6) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field6) if !ok { that2, ok := that.(SampleOneOf_Field6) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field6 != that1.Field6 { return false } return true } func (this *SampleOneOf_Field7) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field7) if !ok { that2, ok := that.(SampleOneOf_Field7) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field7 != that1.Field7 { return false } return true } func (this *SampleOneOf_Field8) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field8) if !ok { that2, ok := that.(SampleOneOf_Field8) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field8 != that1.Field8 { return false } return true } func (this *SampleOneOf_Field9) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field9) if !ok { that2, ok := that.(SampleOneOf_Field9) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field9 != that1.Field9 { return false } return true } func (this *SampleOneOf_Field10) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field10) if !ok { that2, ok := that.(SampleOneOf_Field10) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field10 != that1.Field10 { return false } return true } func (this *SampleOneOf_Field11) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field11) if !ok { that2, ok := that.(SampleOneOf_Field11) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field11 != that1.Field11 { return false } return true } func (this *SampleOneOf_Field12) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field12) if !ok { that2, ok := that.(SampleOneOf_Field12) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field12 != that1.Field12 { return false } return true } func (this *SampleOneOf_Field13) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field13) if !ok { that2, ok := that.(SampleOneOf_Field13) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field13 != that1.Field13 { return false } return true } func (this *SampleOneOf_Field14) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field14) if !ok { that2, ok := that.(SampleOneOf_Field14) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field14 != that1.Field14 { return false } return true } func (this *SampleOneOf_Field15) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field15) if !ok { that2, ok := that.(SampleOneOf_Field15) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } return true } func (this *SampleOneOf_SubMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_SubMessage) if !ok { that2, ok := that.(SampleOneOf_SubMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage.Equal(that1.SubMessage) { return false } return true } func (this *Subby) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&one.Subby{") s = append(s, "Sub: "+fmt.Sprintf("%#v", this.Sub)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *SampleOneOf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&one.SampleOneOf{") if this.TestOneof != nil { s = append(s, "TestOneof: "+fmt.Sprintf("%#v", this.TestOneof)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *SampleOneOf_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *SampleOneOf_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *SampleOneOf_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *SampleOneOf_Field4) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field4{` + `Field4:` + fmt.Sprintf("%#v", this.Field4) + `}`}, ", ") return s } func (this *SampleOneOf_Field5) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field5{` + `Field5:` + fmt.Sprintf("%#v", this.Field5) + `}`}, ", ") return s } func (this *SampleOneOf_Field6) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field6{` + `Field6:` + fmt.Sprintf("%#v", this.Field6) + `}`}, ", ") return s } func (this *SampleOneOf_Field7) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field7{` + `Field7:` + fmt.Sprintf("%#v", this.Field7) + `}`}, ", ") return s } func (this *SampleOneOf_Field8) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field8{` + `Field8:` + fmt.Sprintf("%#v", this.Field8) + `}`}, ", ") return s } func (this *SampleOneOf_Field9) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field9{` + `Field9:` + fmt.Sprintf("%#v", this.Field9) + `}`}, ", ") return s } func (this *SampleOneOf_Field10) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field10{` + `Field10:` + fmt.Sprintf("%#v", this.Field10) + `}`}, ", ") return s } func (this *SampleOneOf_Field11) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field11{` + `Field11:` + fmt.Sprintf("%#v", this.Field11) + `}`}, ", ") return s } func (this *SampleOneOf_Field12) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field12{` + `Field12:` + fmt.Sprintf("%#v", this.Field12) + `}`}, ", ") return s } func (this *SampleOneOf_Field13) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field13{` + `Field13:` + fmt.Sprintf("%#v", this.Field13) + `}`}, ", ") return s } func (this *SampleOneOf_Field14) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field14{` + `Field14:` + fmt.Sprintf("%#v", this.Field14) + `}`}, ", ") return s } func (this *SampleOneOf_Field15) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field15{` + `Field15:` + fmt.Sprintf("%#v", this.Field15) + `}`}, ", ") return s } func (this *SampleOneOf_SubMessage) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_SubMessage{` + `SubMessage:` + fmt.Sprintf("%#v", this.SubMessage) + `}`}, ", ") return s } func valueToGoStringOne(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Subby) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Subby) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Sub) > 0 { dAtA[i] = 0xa i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Sub))) i += copy(dAtA[i:], m.Sub) } return i, nil } func (m *SampleOneOf) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *SampleOneOf) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.TestOneof != nil { nn1, err := m.TestOneof.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn1 } return i, nil } func (m *SampleOneOf_Field1) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 return i, nil } func (m *SampleOneOf_Field2) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 return i, nil } func (m *SampleOneOf_Field3) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x18 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field3)) return i, nil } func (m *SampleOneOf_Field4) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x20 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field4)) return i, nil } func (m *SampleOneOf_Field5) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x28 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field5)) return i, nil } func (m *SampleOneOf_Field6) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x30 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field6)) return i, nil } func (m *SampleOneOf_Field7) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x38 i++ i = encodeVarintOne(dAtA, i, uint64((uint32(m.Field7)<<1)^uint32((m.Field7>>31)))) return i, nil } func (m *SampleOneOf_Field8) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x40 i++ i = encodeVarintOne(dAtA, i, uint64((uint64(m.Field8)<<1)^uint64((m.Field8>>63)))) return i, nil } func (m *SampleOneOf_Field9) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field9)) i += 4 return i, nil } func (m *SampleOneOf_Field10) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field10)) i += 4 return i, nil } func (m *SampleOneOf_Field11) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field11)) i += 8 return i, nil } func (m *SampleOneOf_Field12) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field12)) i += 8 return i, nil } func (m *SampleOneOf_Field13) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x68 i++ if m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ return i, nil } func (m *SampleOneOf_Field14) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x72 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field14))) i += copy(dAtA[i:], m.Field14) return i, nil } func (m *SampleOneOf_Field15) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } return i, nil } func (m *SampleOneOf_SubMessage) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.SubMessage != nil { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ i = encodeVarintOne(dAtA, i, uint64(m.SubMessage.Size())) n2, err := m.SubMessage.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } return i, nil } func encodeVarintOne(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedSubby(r randyOne, easy bool) *Subby { this := &Subby{} this.Sub = string(randStringOne(r)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedSampleOneOf(r randyOne, easy bool) *SampleOneOf { this := &SampleOneOf{} oneofNumber_TestOneof := []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}[r.Intn(16)] switch oneofNumber_TestOneof { case 1: this.TestOneof = NewPopulatedSampleOneOf_Field1(r, easy) case 2: this.TestOneof = NewPopulatedSampleOneOf_Field2(r, easy) case 3: this.TestOneof = NewPopulatedSampleOneOf_Field3(r, easy) case 4: this.TestOneof = NewPopulatedSampleOneOf_Field4(r, easy) case 5: this.TestOneof = NewPopulatedSampleOneOf_Field5(r, easy) case 6: this.TestOneof = NewPopulatedSampleOneOf_Field6(r, easy) case 7: this.TestOneof = NewPopulatedSampleOneOf_Field7(r, easy) case 8: this.TestOneof = NewPopulatedSampleOneOf_Field8(r, easy) case 9: this.TestOneof = NewPopulatedSampleOneOf_Field9(r, easy) case 10: this.TestOneof = NewPopulatedSampleOneOf_Field10(r, easy) case 11: this.TestOneof = NewPopulatedSampleOneOf_Field11(r, easy) case 12: this.TestOneof = NewPopulatedSampleOneOf_Field12(r, easy) case 13: this.TestOneof = NewPopulatedSampleOneOf_Field13(r, easy) case 14: this.TestOneof = NewPopulatedSampleOneOf_Field14(r, easy) case 15: this.TestOneof = NewPopulatedSampleOneOf_Field15(r, easy) case 16: this.TestOneof = NewPopulatedSampleOneOf_SubMessage(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedSampleOneOf_Field1(r randyOne, easy bool) *SampleOneOf_Field1 { this := &SampleOneOf_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedSampleOneOf_Field2(r randyOne, easy bool) *SampleOneOf_Field2 { this := &SampleOneOf_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedSampleOneOf_Field3(r randyOne, easy bool) *SampleOneOf_Field3 { this := &SampleOneOf_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedSampleOneOf_Field4(r randyOne, easy bool) *SampleOneOf_Field4 { this := &SampleOneOf_Field4{} this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } return this } func NewPopulatedSampleOneOf_Field5(r randyOne, easy bool) *SampleOneOf_Field5 { this := &SampleOneOf_Field5{} this.Field5 = uint32(r.Uint32()) return this } func NewPopulatedSampleOneOf_Field6(r randyOne, easy bool) *SampleOneOf_Field6 { this := &SampleOneOf_Field6{} this.Field6 = uint64(uint64(r.Uint32())) return this } func NewPopulatedSampleOneOf_Field7(r randyOne, easy bool) *SampleOneOf_Field7 { this := &SampleOneOf_Field7{} this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } return this } func NewPopulatedSampleOneOf_Field8(r randyOne, easy bool) *SampleOneOf_Field8 { this := &SampleOneOf_Field8{} this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } return this } func NewPopulatedSampleOneOf_Field9(r randyOne, easy bool) *SampleOneOf_Field9 { this := &SampleOneOf_Field9{} this.Field9 = uint32(r.Uint32()) return this } func NewPopulatedSampleOneOf_Field10(r randyOne, easy bool) *SampleOneOf_Field10 { this := &SampleOneOf_Field10{} this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } return this } func NewPopulatedSampleOneOf_Field11(r randyOne, easy bool) *SampleOneOf_Field11 { this := &SampleOneOf_Field11{} this.Field11 = uint64(uint64(r.Uint32())) return this } func NewPopulatedSampleOneOf_Field12(r randyOne, easy bool) *SampleOneOf_Field12 { this := &SampleOneOf_Field12{} this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } return this } func NewPopulatedSampleOneOf_Field13(r randyOne, easy bool) *SampleOneOf_Field13 { this := &SampleOneOf_Field13{} this.Field13 = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedSampleOneOf_Field14(r randyOne, easy bool) *SampleOneOf_Field14 { this := &SampleOneOf_Field14{} this.Field14 = string(randStringOne(r)) return this } func NewPopulatedSampleOneOf_Field15(r randyOne, easy bool) *SampleOneOf_Field15 { this := &SampleOneOf_Field15{} v1 := r.Intn(100) this.Field15 = make([]byte, v1) for i := 0; i < v1; i++ { this.Field15[i] = byte(r.Intn(256)) } return this } func NewPopulatedSampleOneOf_SubMessage(r randyOne, easy bool) *SampleOneOf_SubMessage { this := &SampleOneOf_SubMessage{} this.SubMessage = NewPopulatedSubby(r, easy) return this } type randyOne interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneOne(r randyOne) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringOne(r randyOne) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneOne(r) } return string(tmps) } func randUnrecognizedOne(r randyOne, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldOne(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldOne(dAtA []byte, r randyOne, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateOne(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateOne(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateOne(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Subby) Size() (n int) { var l int _ = l l = len(m.Sub) if l > 0 { n += 1 + l + sovOne(uint64(l)) } return n } func (m *SampleOneOf) Size() (n int) { var l int _ = l if m.TestOneof != nil { n += m.TestOneof.Size() } return n } func (m *SampleOneOf_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *SampleOneOf_Field4) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field4)) return n } func (m *SampleOneOf_Field5) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field5)) return n } func (m *SampleOneOf_Field6) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field6)) return n } func (m *SampleOneOf_Field7) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field7)) return n } func (m *SampleOneOf_Field8) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field8)) return n } func (m *SampleOneOf_Field9) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field10) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field11) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field12) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field13) Size() (n int) { var l int _ = l n += 2 return n } func (m *SampleOneOf_Field14) Size() (n int) { var l int _ = l l = len(m.Field14) n += 1 + l + sovOne(uint64(l)) return n } func (m *SampleOneOf_Field15) Size() (n int) { var l int _ = l if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovOne(uint64(l)) } return n } func (m *SampleOneOf_SubMessage) Size() (n int) { var l int _ = l if m.SubMessage != nil { l = m.SubMessage.Size() n += 2 + l + sovOne(uint64(l)) } return n } func sovOne(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozOne(x uint64) (n int) { return sovOne(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Subby) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Subby{`, `Sub:` + fmt.Sprintf("%v", this.Sub) + `,`, `}`, }, "") return s } func (this *SampleOneOf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf{`, `TestOneof:` + fmt.Sprintf("%v", this.TestOneof) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field4) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field4{`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field5) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field5{`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field6) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field6{`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field7) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field7{`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field8) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field8{`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field9) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field9{`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field10) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field10{`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field11) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field11{`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field12) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field12{`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field13) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field13{`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field14) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field14{`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field15) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field15{`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `}`, }, "") return s } func (this *SampleOneOf_SubMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_SubMessage{`, `SubMessage:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func valueToStringOne(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Subby) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Subby: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Subby: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sub", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Sub = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *SampleOneOf) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: SampleOneOf: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: SampleOneOf: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &SampleOneOf_Field1{float64(math.Float64frombits(v))} case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &SampleOneOf_Field2{float32(math.Float32frombits(v))} case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &SampleOneOf_Field3{v} case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &SampleOneOf_Field4{v} case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &SampleOneOf_Field5{v} case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &SampleOneOf_Field6{v} case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.TestOneof = &SampleOneOf_Field7{v} case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.TestOneof = &SampleOneOf_Field8{int64(v)} case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &SampleOneOf_Field9{v} case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &SampleOneOf_Field10{v} case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &SampleOneOf_Field11{v} case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &SampleOneOf_Field12{v} case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.TestOneof = &SampleOneOf_Field13{b} case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.TestOneof = &SampleOneOf_Field14{string(dAtA[iNdEx:postIndex])} iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } v := make([]byte, postIndex-iNdEx) copy(v, dAtA[iNdEx:postIndex]) m.TestOneof = &SampleOneOf_Field15{v} iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SubMessage", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &Subby{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.TestOneof = &SampleOneOf_SubMessage{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipOne(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthOne } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipOne(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthOne = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowOne = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/both/one.proto", fileDescriptorOne) } var fileDescriptorOne = []byte{ // 404 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0xd2, 0xbf, 0x4f, 0x1b, 0x31, 0x14, 0x07, 0x70, 0x3f, 0x8e, 0x24, 0xe0, 0x84, 0x92, 0x9e, 0x54, 0xe9, 0x95, 0xe1, 0xc9, 0x62, 0xf2, 0x42, 0xd2, 0xdc, 0x25, 0xfc, 0x58, 0x51, 0x55, 0x65, 0xa9, 0x90, 0xc2, 0x1f, 0x80, 0x30, 0x75, 0x0e, 0x24, 0xee, 0x8c, 0x7a, 0x77, 0x43, 0x37, 0xfe, 0x9c, 0x8e, 0x1d, 0xfb, 0x27, 0x30, 0x32, 0x76, 0xe8, 0xc0, 0xb9, 0x4b, 0x47, 0x46, 0xc6, 0x2a, 0x97, 0xf2, 0xbc, 0xbd, 0xaf, 0x3f, 0xf6, 0x60, 0xfb, 0x2b, 0xdf, 0x5d, 0xb9, 0xdc, 0xb8, 0x72, 0x6c, 0x5c, 0x75, 0x3d, 0x76, 0x85, 0x1d, 0xdd, 0x7d, 0x75, 0x95, 0x8b, 0x23, 0x57, 0xd8, 0xbd, 0x83, 0xec, 0xa6, 0xba, 0xae, 0xcd, 0xe8, 0xca, 0xe5, 0xe3, 0xcc, 0x65, 0x6e, 0xdc, 0x9a, 0xa9, 0x97, 0x6d, 0x6a, 0x43, 0x3b, 0xad, 0xcf, 0xec, 0xbf, 0x97, 0x9d, 0xf3, 0xda, 0x98, 0x6f, 0xf1, 0x50, 0x46, 0x65, 0x6d, 0x10, 0x14, 0xe8, 0xed, 0xc5, 0x6a, 0xdc, 0xff, 0x1d, 0xc9, 0xfe, 0xf9, 0x65, 0x7e, 0x77, 0x6b, 0xcf, 0x0a, 0x7b, 0xb6, 0x8c, 0x51, 0x76, 0x3f, 0xdd, 0xd8, 0xdb, 0x2f, 0x93, 0x76, 0x13, 0xcc, 0xc5, 0xe2, 0x7f, 0x66, 0x49, 0x70, 0x43, 0x81, 0xde, 0x60, 0x49, 0x58, 0x52, 0x8c, 0x14, 0xe8, 0x0e, 0x4b, 0xca, 0x32, 0xc5, 0x4d, 0x05, 0x3a, 0x62, 0x99, 0xb2, 0xcc, 0xb0, 0xa3, 0x40, 0xef, 0xb0, 0xcc, 0x58, 0x0e, 0xb1, 0xab, 0x40, 0x6f, 0xb2, 0x1c, 0xb2, 0x1c, 0x61, 0x4f, 0x81, 0x7e, 0xcb, 0x72, 0xc4, 0x72, 0x8c, 0x5b, 0x0a, 0x74, 0xcc, 0x72, 0xcc, 0x72, 0x82, 0xdb, 0x0a, 0x74, 0x8f, 0xe5, 0x24, 0xde, 0x93, 0xbd, 0xf5, 0xcd, 0x3e, 0xa0, 0x54, 0xa0, 0x77, 0xe7, 0x62, 0xf1, 0xba, 0x10, 0x6c, 0x82, 0x7d, 0x05, 0xba, 0x1b, 0x6c, 0x12, 0x2c, 0xc1, 0x81, 0x02, 0x3d, 0x0c, 0x96, 0x04, 0x4b, 0x71, 0x47, 0x81, 0xde, 0x0a, 0x96, 0x06, 0x9b, 0xe2, 0x9b, 0xd5, 0xfb, 0x07, 0x9b, 0x06, 0x9b, 0xe1, 0xae, 0x02, 0x3d, 0x08, 0x36, 0x8b, 0x0f, 0x64, 0xbf, 0xac, 0xcd, 0x45, 0x6e, 0xcb, 0xf2, 0x32, 0xb3, 0x38, 0x54, 0xa0, 0xfb, 0x89, 0x1c, 0xad, 0x1a, 0xd1, 0x7e, 0xea, 0x5c, 0x2c, 0x64, 0x59, 0x9b, 0xcf, 0x6b, 0x3f, 0x1d, 0x48, 0x59, 0xd9, 0xb2, 0xba, 0x70, 0x85, 0x75, 0xcb, 0xd3, 0x8f, 0x0f, 0x0d, 0x89, 0xc7, 0x86, 0xc4, 0xaf, 0x86, 0xc4, 0x53, 0x43, 0xf0, 0xdc, 0x10, 0xbc, 0x34, 0x04, 0xf7, 0x9e, 0xe0, 0xbb, 0x27, 0xf8, 0xe1, 0x09, 0x7e, 0x7a, 0x82, 0x07, 0x4f, 0xf0, 0xe8, 0x09, 0x9e, 0x3c, 0xc1, 0x5f, 0x4f, 0xe2, 0xd9, 0x13, 0xbc, 0x78, 0x12, 0xf7, 0x7f, 0x48, 0x98, 0x6e, 0x5b, 0xa3, 0xf4, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1e, 0x42, 0xd6, 0x88, 0x93, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/oneof3/combos/both/one.proto000066400000000000000000000053211317075173200236020ustar00rootroot00000000000000// 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 = "proto3"; package one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { string sub = 1; } message SampleOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } golang-gogoprotobuf-0.5/test/oneof3/combos/both/onepb_test.go000066400000000000000000000270221317075173200244270ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/both/one.proto It has these top-level messages: Subby SampleOneOf */ package one import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSubbyProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSubbyMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSampleOneOfMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSampleOneOfJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubbyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneDescription(t *testing.T) { OneDescription() } func TestSubbyVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSampleOneOfVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSubbyGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSampleOneOfGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSubbySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSampleOneOfSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSubbyStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestSampleOneOfStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/oneof3/combos/marshaler/000077500000000000000000000000001317075173200227555ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof3/combos/marshaler/one.pb.go000066400000000000000000002533111317075173200244720ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/marshaler/one.proto It has these top-level messages: Subby SampleOneOf */ package one import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Subby struct { Sub string `protobuf:"bytes,1,opt,name=sub,proto3" json:"sub,omitempty"` } func (m *Subby) Reset() { *m = Subby{} } func (*Subby) ProtoMessage() {} func (*Subby) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{0} } type SampleOneOf struct { // Types that are valid to be assigned to TestOneof: // *SampleOneOf_Field1 // *SampleOneOf_Field2 // *SampleOneOf_Field3 // *SampleOneOf_Field4 // *SampleOneOf_Field5 // *SampleOneOf_Field6 // *SampleOneOf_Field7 // *SampleOneOf_Field8 // *SampleOneOf_Field9 // *SampleOneOf_Field10 // *SampleOneOf_Field11 // *SampleOneOf_Field12 // *SampleOneOf_Field13 // *SampleOneOf_Field14 // *SampleOneOf_Field15 // *SampleOneOf_SubMessage TestOneof isSampleOneOf_TestOneof `protobuf_oneof:"test_oneof"` } func (m *SampleOneOf) Reset() { *m = SampleOneOf{} } func (*SampleOneOf) ProtoMessage() {} func (*SampleOneOf) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{1} } type isSampleOneOf_TestOneof interface { isSampleOneOf_TestOneof() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type SampleOneOf_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,proto3,oneof"` } type SampleOneOf_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,proto3,oneof"` } type SampleOneOf_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,proto3,oneof"` } type SampleOneOf_Field4 struct { Field4 int64 `protobuf:"varint,4,opt,name=Field4,proto3,oneof"` } type SampleOneOf_Field5 struct { Field5 uint32 `protobuf:"varint,5,opt,name=Field5,proto3,oneof"` } type SampleOneOf_Field6 struct { Field6 uint64 `protobuf:"varint,6,opt,name=Field6,proto3,oneof"` } type SampleOneOf_Field7 struct { Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7,proto3,oneof"` } type SampleOneOf_Field8 struct { Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8,proto3,oneof"` } type SampleOneOf_Field9 struct { Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9,proto3,oneof"` } type SampleOneOf_Field10 struct { Field10 int32 `protobuf:"fixed32,10,opt,name=Field10,proto3,oneof"` } type SampleOneOf_Field11 struct { Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11,proto3,oneof"` } type SampleOneOf_Field12 struct { Field12 int64 `protobuf:"fixed64,12,opt,name=Field12,proto3,oneof"` } type SampleOneOf_Field13 struct { Field13 bool `protobuf:"varint,13,opt,name=Field13,proto3,oneof"` } type SampleOneOf_Field14 struct { Field14 string `protobuf:"bytes,14,opt,name=Field14,proto3,oneof"` } type SampleOneOf_Field15 struct { Field15 []byte `protobuf:"bytes,15,opt,name=Field15,proto3,oneof"` } type SampleOneOf_SubMessage struct { SubMessage *Subby `protobuf:"bytes,16,opt,name=sub_message,json=subMessage,oneof"` } func (*SampleOneOf_Field1) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field2) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field3) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field4) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field5) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field6) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field7) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field8) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field9) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field10) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field11) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field12) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field13) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field14) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field15) isSampleOneOf_TestOneof() {} func (*SampleOneOf_SubMessage) isSampleOneOf_TestOneof() {} func (m *SampleOneOf) GetTestOneof() isSampleOneOf_TestOneof { if m != nil { return m.TestOneof } return nil } func (m *SampleOneOf) GetField1() float64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field1); ok { return x.Field1 } return 0 } func (m *SampleOneOf) GetField2() float32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field2); ok { return x.Field2 } return 0 } func (m *SampleOneOf) GetField3() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field3); ok { return x.Field3 } return 0 } func (m *SampleOneOf) GetField4() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field4); ok { return x.Field4 } return 0 } func (m *SampleOneOf) GetField5() uint32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field5); ok { return x.Field5 } return 0 } func (m *SampleOneOf) GetField6() uint64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field6); ok { return x.Field6 } return 0 } func (m *SampleOneOf) GetField7() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field7); ok { return x.Field7 } return 0 } func (m *SampleOneOf) GetField8() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field8); ok { return x.Field8 } return 0 } func (m *SampleOneOf) GetField9() uint32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field9); ok { return x.Field9 } return 0 } func (m *SampleOneOf) GetField10() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field10); ok { return x.Field10 } return 0 } func (m *SampleOneOf) GetField11() uint64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field11); ok { return x.Field11 } return 0 } func (m *SampleOneOf) GetField12() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field12); ok { return x.Field12 } return 0 } func (m *SampleOneOf) GetField13() bool { if x, ok := m.GetTestOneof().(*SampleOneOf_Field13); ok { return x.Field13 } return false } func (m *SampleOneOf) GetField14() string { if x, ok := m.GetTestOneof().(*SampleOneOf_Field14); ok { return x.Field14 } return "" } func (m *SampleOneOf) GetField15() []byte { if x, ok := m.GetTestOneof().(*SampleOneOf_Field15); ok { return x.Field15 } return nil } func (m *SampleOneOf) GetSubMessage() *Subby { if x, ok := m.GetTestOneof().(*SampleOneOf_SubMessage); ok { return x.SubMessage } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*SampleOneOf) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _SampleOneOf_OneofMarshaler, _SampleOneOf_OneofUnmarshaler, _SampleOneOf_OneofSizer, []interface{}{ (*SampleOneOf_Field1)(nil), (*SampleOneOf_Field2)(nil), (*SampleOneOf_Field3)(nil), (*SampleOneOf_Field4)(nil), (*SampleOneOf_Field5)(nil), (*SampleOneOf_Field6)(nil), (*SampleOneOf_Field7)(nil), (*SampleOneOf_Field8)(nil), (*SampleOneOf_Field9)(nil), (*SampleOneOf_Field10)(nil), (*SampleOneOf_Field11)(nil), (*SampleOneOf_Field12)(nil), (*SampleOneOf_Field13)(nil), (*SampleOneOf_Field14)(nil), (*SampleOneOf_Field15)(nil), (*SampleOneOf_SubMessage)(nil), } } func _SampleOneOf_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*SampleOneOf) // test_oneof switch x := m.TestOneof.(type) { case *SampleOneOf_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *SampleOneOf_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *SampleOneOf_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case *SampleOneOf_Field4: _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field4)) case *SampleOneOf_Field5: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field5)) case *SampleOneOf_Field6: _ = b.EncodeVarint(6<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field6)) case *SampleOneOf_Field7: _ = b.EncodeVarint(7<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Field7)) case *SampleOneOf_Field8: _ = b.EncodeVarint(8<<3 | proto.WireVarint) _ = b.EncodeZigzag64(uint64(x.Field8)) case *SampleOneOf_Field9: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field9)) case *SampleOneOf_Field10: _ = b.EncodeVarint(10<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field10)) case *SampleOneOf_Field11: _ = b.EncodeVarint(11<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field11)) case *SampleOneOf_Field12: _ = b.EncodeVarint(12<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field12)) case *SampleOneOf_Field13: t := uint64(0) if x.Field13 { t = 1 } _ = b.EncodeVarint(13<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *SampleOneOf_Field14: _ = b.EncodeVarint(14<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field14) case *SampleOneOf_Field15: _ = b.EncodeVarint(15<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field15) case *SampleOneOf_SubMessage: _ = b.EncodeVarint(16<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage); err != nil { return err } case nil: default: return fmt.Errorf("SampleOneOf.TestOneof has unexpected type %T", x) } return nil } func _SampleOneOf_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*SampleOneOf) switch tag { case 1: // test_oneof.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field1{math.Float64frombits(x)} return true, err case 2: // test_oneof.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // test_oneof.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field3{int32(x)} return true, err case 4: // test_oneof.Field4 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field4{int64(x)} return true, err case 5: // test_oneof.Field5 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field5{uint32(x)} return true, err case 6: // test_oneof.Field6 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field6{x} return true, err case 7: // test_oneof.Field7 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.TestOneof = &SampleOneOf_Field7{int32(x)} return true, err case 8: // test_oneof.Field8 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag64() m.TestOneof = &SampleOneOf_Field8{int64(x)} return true, err case 9: // test_oneof.Field9 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field9{uint32(x)} return true, err case 10: // test_oneof.Field10 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field10{int32(x)} return true, err case 11: // test_oneof.Field11 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field11{x} return true, err case 12: // test_oneof.Field12 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field12{int64(x)} return true, err case 13: // test_oneof.Field13 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field13{x != 0} return true, err case 14: // test_oneof.Field14 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.TestOneof = &SampleOneOf_Field14{x} return true, err case 15: // test_oneof.Field15 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.TestOneof = &SampleOneOf_Field15{x} return true, err case 16: // test_oneof.sub_message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.TestOneof = &SampleOneOf_SubMessage{msg} return true, err default: return false, nil } } func _SampleOneOf_OneofSizer(msg proto.Message) (n int) { m := msg.(*SampleOneOf) // test_oneof switch x := m.TestOneof.(type) { case *SampleOneOf_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case *SampleOneOf_Field4: n += proto.SizeVarint(4<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field4)) case *SampleOneOf_Field5: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field5)) case *SampleOneOf_Field6: n += proto.SizeVarint(6<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field6)) case *SampleOneOf_Field7: n += proto.SizeVarint(7<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.Field7) << 1) ^ uint32((int32(x.Field7) >> 31)))) case *SampleOneOf_Field8: n += proto.SizeVarint(8<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(uint64(x.Field8<<1) ^ uint64((int64(x.Field8) >> 63)))) case *SampleOneOf_Field9: n += proto.SizeVarint(9<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field10: n += proto.SizeVarint(10<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field11: n += proto.SizeVarint(11<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field12: n += proto.SizeVarint(12<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field13: n += proto.SizeVarint(13<<3 | proto.WireVarint) n += 1 case *SampleOneOf_Field14: n += proto.SizeVarint(14<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field14))) n += len(x.Field14) case *SampleOneOf_Field15: n += proto.SizeVarint(15<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field15))) n += len(x.Field15) case *SampleOneOf_SubMessage: s := proto.Size(x.SubMessage) n += proto.SizeVarint(16<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*Subby)(nil), "one.Subby") proto.RegisterType((*SampleOneOf)(nil), "one.SampleOneOf") } func (this *Subby) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *SampleOneOf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func OneDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3935 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0x26, 0x7e, 0x09, 0x1c, 0x80, 0xe0, 0xf2, 0x92, 0x96, 0x20, 0x26, 0x86, 0x28, 0xfa, 0x8f, 0xb6, 0x6b, 0xd2, 0xa6, 0x44, 0xfd, 0x40, 0x4d, 0x5c, 0x90, 0x84, 0x28, 0xaa, 0x24, 0xc1, 0x2c, 0xc8, 0x58, 0x4e, 0x1f, 0x76, 0x16, 0x8b, 0x0b, 0x70, 0xa5, 0xc5, 0xee, 0x66, 0x77, 0x21, 0x99, 0x9a, 0x3e, 0xa8, 0xe3, 0xfe, 0x4c, 0xa6, 0xd3, 0xff, 0xce, 0xd4, 0x71, 0x1d, 0xb7, 0xcd, 0x4c, 0xeb, 0x34, 0xe9, 0x4f, 0xd2, 0xb4, 0x69, 0xda, 0xa7, 0xbe, 0xa4, 0xf5, 0x53, 0x27, 0x79, 0xeb, 0x43, 0x1e, 0x2c, 0xd6, 0x33, 0x4d, 0x5b, 0xb7, 0x75, 0x1b, 0x3f, 0x64, 0xc6, 0x2f, 0x9d, 0xfb, 0xb7, 0xbb, 0xf8, 0xa1, 0x16, 0xcc, 0x8c, 0x9d, 0x27, 0x72, 0xcf, 0x39, 0xdf, 0xb7, 0xe7, 0x9e, 0x7b, 0xee, 0x3d, 0xe7, 0x5e, 0x2c, 0x7c, 0xed, 0x32, 0xcc, 0xb5, 0x2d, 0xab, 0x6d, 0xe0, 0x25, 0xdb, 0xb1, 0x3c, 0xab, 0xd1, 0x6d, 0x2d, 0x35, 0xb1, 0xab, 0x39, 0xba, 0xed, 0x59, 0xce, 0x22, 0x95, 0xa1, 0x49, 0x66, 0xb1, 0x28, 0x2c, 0xe6, 0xb7, 0x61, 0xea, 0x9a, 0x6e, 0xe0, 0x75, 0xdf, 0xb0, 0x8e, 0x3d, 0x74, 0x19, 0x92, 0x2d, 0xdd, 0xc0, 0xc5, 0xd8, 0x5c, 0x62, 0x21, 0xb7, 0xfc, 0xf8, 0x62, 0x1f, 0x68, 0xb1, 0x17, 0xb1, 0x4b, 0xc4, 0x32, 0x45, 0xcc, 0xbf, 0x9b, 0x84, 0xe9, 0x21, 0x5a, 0x84, 0x20, 0x69, 0xaa, 0x1d, 0xc2, 0x18, 0x5b, 0xc8, 0xca, 0xf4, 0x7f, 0x54, 0x84, 0x71, 0x5b, 0xd5, 0x6e, 0xab, 0x6d, 0x5c, 0x8c, 0x53, 0xb1, 0x78, 0x44, 0x25, 0x80, 0x26, 0xb6, 0xb1, 0xd9, 0xc4, 0xa6, 0x76, 0x58, 0x4c, 0xcc, 0x25, 0x16, 0xb2, 0x72, 0x48, 0x82, 0x9e, 0x85, 0x29, 0xbb, 0xdb, 0x30, 0x74, 0x4d, 0x09, 0x99, 0xc1, 0x5c, 0x62, 0x21, 0x25, 0x4b, 0x4c, 0xb1, 0x1e, 0x18, 0x3f, 0x05, 0x93, 0x77, 0xb1, 0x7a, 0x3b, 0x6c, 0x9a, 0xa3, 0xa6, 0x05, 0x22, 0x0e, 0x19, 0xae, 0x41, 0xbe, 0x83, 0x5d, 0x57, 0x6d, 0x63, 0xc5, 0x3b, 0xb4, 0x71, 0x31, 0x49, 0x47, 0x3f, 0x37, 0x30, 0xfa, 0xfe, 0x91, 0xe7, 0x38, 0x6a, 0xef, 0xd0, 0xc6, 0xa8, 0x02, 0x59, 0x6c, 0x76, 0x3b, 0x8c, 0x21, 0x75, 0x4c, 0xfc, 0xaa, 0x66, 0xb7, 0xd3, 0xcf, 0x92, 0x21, 0x30, 0x4e, 0x31, 0xee, 0x62, 0xe7, 0x8e, 0xae, 0xe1, 0x62, 0x9a, 0x12, 0x3c, 0x35, 0x40, 0x50, 0x67, 0xfa, 0x7e, 0x0e, 0x81, 0x43, 0x6b, 0x90, 0xc5, 0xaf, 0x78, 0xd8, 0x74, 0x75, 0xcb, 0x2c, 0x8e, 0x53, 0x92, 0x27, 0x86, 0xcc, 0x22, 0x36, 0x9a, 0xfd, 0x14, 0x01, 0x0e, 0x5d, 0x84, 0x71, 0xcb, 0xf6, 0x74, 0xcb, 0x74, 0x8b, 0x99, 0xb9, 0xd8, 0x42, 0x6e, 0xf9, 0x93, 0x43, 0x13, 0xa1, 0xc6, 0x6c, 0x64, 0x61, 0x8c, 0x36, 0x41, 0x72, 0xad, 0xae, 0xa3, 0x61, 0x45, 0xb3, 0x9a, 0x58, 0xd1, 0xcd, 0x96, 0x55, 0xcc, 0x52, 0x82, 0xb3, 0x83, 0x03, 0xa1, 0x86, 0x6b, 0x56, 0x13, 0x6f, 0x9a, 0x2d, 0x4b, 0x2e, 0xb8, 0x3d, 0xcf, 0xe8, 0x14, 0xa4, 0xdd, 0x43, 0xd3, 0x53, 0x5f, 0x29, 0xe6, 0x69, 0x86, 0xf0, 0xa7, 0xf9, 0xbf, 0x4b, 0xc3, 0xe4, 0x28, 0x29, 0x76, 0x15, 0x52, 0x2d, 0x32, 0xca, 0x62, 0xfc, 0x24, 0x31, 0x60, 0x98, 0xde, 0x20, 0xa6, 0x7f, 0xcc, 0x20, 0x56, 0x20, 0x67, 0x62, 0xd7, 0xc3, 0x4d, 0x96, 0x11, 0x89, 0x11, 0x73, 0x0a, 0x18, 0x68, 0x30, 0xa5, 0x92, 0x3f, 0x56, 0x4a, 0xdd, 0x84, 0x49, 0xdf, 0x25, 0xc5, 0x51, 0xcd, 0xb6, 0xc8, 0xcd, 0xa5, 0x28, 0x4f, 0x16, 0xab, 0x02, 0x27, 0x13, 0x98, 0x5c, 0xc0, 0x3d, 0xcf, 0x68, 0x1d, 0xc0, 0x32, 0xb1, 0xd5, 0x52, 0x9a, 0x58, 0x33, 0x8a, 0x99, 0x63, 0xa2, 0x54, 0x23, 0x26, 0x03, 0x51, 0xb2, 0x98, 0x54, 0x33, 0xd0, 0x95, 0x20, 0xd5, 0xc6, 0x8f, 0xc9, 0x94, 0x6d, 0xb6, 0xc8, 0x06, 0xb2, 0x6d, 0x1f, 0x0a, 0x0e, 0x26, 0x79, 0x8f, 0x9b, 0x7c, 0x64, 0x59, 0xea, 0xc4, 0x62, 0xe4, 0xc8, 0x64, 0x0e, 0x63, 0x03, 0x9b, 0x70, 0xc2, 0x8f, 0xe8, 0x31, 0xf0, 0x05, 0x0a, 0x4d, 0x2b, 0xa0, 0xbb, 0x50, 0x5e, 0x08, 0x77, 0xd4, 0x0e, 0x9e, 0xbd, 0x07, 0x85, 0xde, 0xf0, 0xa0, 0x19, 0x48, 0xb9, 0x9e, 0xea, 0x78, 0x34, 0x0b, 0x53, 0x32, 0x7b, 0x40, 0x12, 0x24, 0xb0, 0xd9, 0xa4, 0xbb, 0x5c, 0x4a, 0x26, 0xff, 0xa2, 0x9f, 0x09, 0x06, 0x9c, 0xa0, 0x03, 0x7e, 0x72, 0x70, 0x46, 0x7b, 0x98, 0xfb, 0xc7, 0x3d, 0x7b, 0x09, 0x26, 0x7a, 0x06, 0x30, 0xea, 0xab, 0xe7, 0x7f, 0x1e, 0x1e, 0x19, 0x4a, 0x8d, 0x6e, 0xc2, 0x4c, 0xd7, 0xd4, 0x4d, 0x0f, 0x3b, 0xb6, 0x83, 0x49, 0xc6, 0xb2, 0x57, 0x15, 0xff, 0x6d, 0xfc, 0x98, 0x9c, 0xdb, 0x0f, 0x5b, 0x33, 0x16, 0x79, 0xba, 0x3b, 0x28, 0x7c, 0x26, 0x9b, 0xf9, 0xc1, 0xb8, 0x74, 0xff, 0xfe, 0xfd, 0xfb, 0xf1, 0xf9, 0xd7, 0xd2, 0x30, 0x33, 0x6c, 0xcd, 0x0c, 0x5d, 0xbe, 0xa7, 0x20, 0x6d, 0x76, 0x3b, 0x0d, 0xec, 0xd0, 0x20, 0xa5, 0x64, 0xfe, 0x84, 0x2a, 0x90, 0x32, 0xd4, 0x06, 0x36, 0x8a, 0xc9, 0xb9, 0xd8, 0x42, 0x61, 0xf9, 0xd9, 0x91, 0x56, 0xe5, 0xe2, 0x16, 0x81, 0xc8, 0x0c, 0x89, 0x3e, 0x0d, 0x49, 0xbe, 0x45, 0x13, 0x86, 0x67, 0x46, 0x63, 0x20, 0x6b, 0x49, 0xa6, 0x38, 0xf4, 0x09, 0xc8, 0x92, 0xbf, 0x2c, 0x37, 0xd2, 0xd4, 0xe7, 0x0c, 0x11, 0x90, 0xbc, 0x40, 0xb3, 0x90, 0xa1, 0xcb, 0xa4, 0x89, 0x45, 0x69, 0xf3, 0x9f, 0x49, 0x62, 0x35, 0x71, 0x4b, 0xed, 0x1a, 0x9e, 0x72, 0x47, 0x35, 0xba, 0x98, 0x26, 0x7c, 0x56, 0xce, 0x73, 0xe1, 0x67, 0x89, 0x0c, 0x9d, 0x85, 0x1c, 0x5b, 0x55, 0xba, 0xd9, 0xc4, 0xaf, 0xd0, 0xdd, 0x33, 0x25, 0xb3, 0x85, 0xb6, 0x49, 0x24, 0xe4, 0xf5, 0xb7, 0x5c, 0xcb, 0x14, 0xa9, 0x49, 0x5f, 0x41, 0x04, 0xf4, 0xf5, 0x97, 0xfa, 0x37, 0xee, 0x47, 0x87, 0x0f, 0xaf, 0x3f, 0xa7, 0xe6, 0xbf, 0x15, 0x87, 0x24, 0xdd, 0x2f, 0x26, 0x21, 0xb7, 0xf7, 0xf2, 0x6e, 0x55, 0x59, 0xaf, 0xed, 0xaf, 0x6e, 0x55, 0xa5, 0x18, 0x2a, 0x00, 0x50, 0xc1, 0xb5, 0xad, 0x5a, 0x65, 0x4f, 0x8a, 0xfb, 0xcf, 0x9b, 0x3b, 0x7b, 0x17, 0x2f, 0x48, 0x09, 0x1f, 0xb0, 0xcf, 0x04, 0xc9, 0xb0, 0xc1, 0xf9, 0x65, 0x29, 0x85, 0x24, 0xc8, 0x33, 0x82, 0xcd, 0x9b, 0xd5, 0xf5, 0x8b, 0x17, 0xa4, 0x74, 0xaf, 0xe4, 0xfc, 0xb2, 0x34, 0x8e, 0x26, 0x20, 0x4b, 0x25, 0xab, 0xb5, 0xda, 0x96, 0x94, 0xf1, 0x39, 0xeb, 0x7b, 0xf2, 0xe6, 0xce, 0x86, 0x94, 0xf5, 0x39, 0x37, 0xe4, 0xda, 0xfe, 0xae, 0x04, 0x3e, 0xc3, 0x76, 0xb5, 0x5e, 0xaf, 0x6c, 0x54, 0xa5, 0x9c, 0x6f, 0xb1, 0xfa, 0xf2, 0x5e, 0xb5, 0x2e, 0xe5, 0x7b, 0xdc, 0x3a, 0xbf, 0x2c, 0x4d, 0xf8, 0xaf, 0xa8, 0xee, 0xec, 0x6f, 0x4b, 0x05, 0x34, 0x05, 0x13, 0xec, 0x15, 0xc2, 0x89, 0xc9, 0x3e, 0xd1, 0xc5, 0x0b, 0x92, 0x14, 0x38, 0xc2, 0x58, 0xa6, 0x7a, 0x04, 0x17, 0x2f, 0x48, 0x68, 0x7e, 0x0d, 0x52, 0x34, 0xbb, 0x10, 0x82, 0xc2, 0x56, 0x65, 0xb5, 0xba, 0xa5, 0xd4, 0x76, 0xf7, 0x36, 0x6b, 0x3b, 0x95, 0x2d, 0x29, 0x16, 0xc8, 0xe4, 0xea, 0x67, 0xf6, 0x37, 0xe5, 0xea, 0xba, 0x14, 0x0f, 0xcb, 0x76, 0xab, 0x95, 0xbd, 0xea, 0xba, 0x94, 0x98, 0xd7, 0x60, 0x66, 0xd8, 0x3e, 0x39, 0x74, 0x65, 0x84, 0xa6, 0x38, 0x7e, 0xcc, 0x14, 0x53, 0xae, 0x81, 0x29, 0xfe, 0x72, 0x0c, 0xa6, 0x87, 0xd4, 0x8a, 0xa1, 0x2f, 0x79, 0x11, 0x52, 0x2c, 0x45, 0x59, 0xf5, 0x7c, 0x7a, 0x68, 0xd1, 0xa1, 0x09, 0x3b, 0x50, 0x41, 0x29, 0x2e, 0xdc, 0x41, 0x24, 0x8e, 0xe9, 0x20, 0x08, 0xc5, 0x80, 0x93, 0xaf, 0xc6, 0xa0, 0x78, 0x1c, 0x77, 0xc4, 0x46, 0x11, 0xef, 0xd9, 0x28, 0xae, 0xf6, 0x3b, 0x70, 0xee, 0xf8, 0x31, 0x0c, 0x78, 0xf1, 0x56, 0x0c, 0x4e, 0x0d, 0x6f, 0xb4, 0x86, 0xfa, 0xf0, 0x69, 0x48, 0x77, 0xb0, 0x77, 0x60, 0x89, 0x66, 0xe3, 0xc9, 0x21, 0x25, 0x8c, 0xa8, 0xfb, 0x63, 0xc5, 0x51, 0xe1, 0x1a, 0x98, 0x38, 0xae, 0x5b, 0x62, 0xde, 0x0c, 0x78, 0xfa, 0x85, 0x38, 0x3c, 0x32, 0x94, 0x7c, 0xa8, 0xa3, 0x8f, 0x02, 0xe8, 0xa6, 0xdd, 0xf5, 0x58, 0x43, 0xc1, 0xf6, 0xa7, 0x2c, 0x95, 0xd0, 0xb5, 0x4f, 0xf6, 0x9e, 0xae, 0xe7, 0xeb, 0x13, 0x54, 0x0f, 0x4c, 0x44, 0x0d, 0x2e, 0x07, 0x8e, 0x26, 0xa9, 0xa3, 0xa5, 0x63, 0x46, 0x3a, 0x50, 0xab, 0x9f, 0x07, 0x49, 0x33, 0x74, 0x6c, 0x7a, 0x8a, 0xeb, 0x39, 0x58, 0xed, 0xe8, 0x66, 0x9b, 0x6e, 0xc0, 0x99, 0x72, 0xaa, 0xa5, 0x1a, 0x2e, 0x96, 0x27, 0x99, 0xba, 0x2e, 0xb4, 0x04, 0x41, 0x6b, 0x9c, 0x13, 0x42, 0xa4, 0x7b, 0x10, 0x4c, 0xed, 0x23, 0xe6, 0xbf, 0x99, 0x81, 0x5c, 0xa8, 0x2d, 0x45, 0xe7, 0x20, 0x7f, 0x4b, 0xbd, 0xa3, 0x2a, 0xe2, 0xa8, 0xc1, 0x22, 0x91, 0x23, 0xb2, 0x5d, 0x7e, 0xdc, 0x78, 0x1e, 0x66, 0xa8, 0x89, 0xd5, 0xf5, 0xb0, 0xa3, 0x68, 0x86, 0xea, 0xba, 0x34, 0x68, 0x19, 0x6a, 0x8a, 0x88, 0xae, 0x46, 0x54, 0x6b, 0x42, 0x83, 0x56, 0x60, 0x9a, 0x22, 0x3a, 0x5d, 0xc3, 0xd3, 0x6d, 0x03, 0x2b, 0xe4, 0xf0, 0xe3, 0xd2, 0x8d, 0xd8, 0xf7, 0x6c, 0x8a, 0x58, 0x6c, 0x73, 0x03, 0xe2, 0x91, 0x8b, 0xd6, 0xe1, 0x51, 0x0a, 0x6b, 0x63, 0x13, 0x3b, 0xaa, 0x87, 0x15, 0xfc, 0xf9, 0xae, 0x6a, 0xb8, 0x8a, 0x6a, 0x36, 0x95, 0x03, 0xd5, 0x3d, 0x28, 0xce, 0x10, 0x82, 0xd5, 0x78, 0x31, 0x26, 0x9f, 0x21, 0x86, 0x1b, 0xdc, 0xae, 0x4a, 0xcd, 0x2a, 0x66, 0xf3, 0xba, 0xea, 0x1e, 0xa0, 0x32, 0x9c, 0xa2, 0x2c, 0xae, 0xe7, 0xe8, 0x66, 0x5b, 0xd1, 0x0e, 0xb0, 0x76, 0x5b, 0xe9, 0x7a, 0xad, 0xcb, 0xc5, 0x4f, 0x84, 0xdf, 0x4f, 0x3d, 0xac, 0x53, 0x9b, 0x35, 0x62, 0xb2, 0xef, 0xb5, 0x2e, 0xa3, 0x3a, 0xe4, 0xc9, 0x64, 0x74, 0xf4, 0x7b, 0x58, 0x69, 0x59, 0x0e, 0xad, 0x2c, 0x85, 0x21, 0x2b, 0x3b, 0x14, 0xc1, 0xc5, 0x1a, 0x07, 0x6c, 0x5b, 0x4d, 0x5c, 0x4e, 0xd5, 0x77, 0xab, 0xd5, 0x75, 0x39, 0x27, 0x58, 0xae, 0x59, 0x0e, 0x49, 0xa8, 0xb6, 0xe5, 0x07, 0x38, 0xc7, 0x12, 0xaa, 0x6d, 0x89, 0xf0, 0xae, 0xc0, 0xb4, 0xa6, 0xb1, 0x31, 0xeb, 0x9a, 0xc2, 0x8f, 0x28, 0x6e, 0x51, 0xea, 0x09, 0x96, 0xa6, 0x6d, 0x30, 0x03, 0x9e, 0xe3, 0x2e, 0xba, 0x02, 0x8f, 0x04, 0xc1, 0x0a, 0x03, 0xa7, 0x06, 0x46, 0xd9, 0x0f, 0x5d, 0x81, 0x69, 0xfb, 0x70, 0x10, 0x88, 0x7a, 0xde, 0x68, 0x1f, 0xf6, 0xc3, 0x2e, 0xc1, 0x8c, 0x7d, 0x60, 0x0f, 0xe2, 0xa6, 0xc3, 0x38, 0x64, 0x1f, 0xd8, 0xfd, 0xc0, 0x27, 0xe8, 0x79, 0xd5, 0xc1, 0x9a, 0xea, 0xe1, 0x66, 0xf1, 0x74, 0xd8, 0x3c, 0xa4, 0x40, 0x4b, 0x20, 0x69, 0x9a, 0x82, 0x4d, 0xb5, 0x61, 0x60, 0x45, 0x75, 0xb0, 0xa9, 0xba, 0xc5, 0xb3, 0x61, 0xe3, 0x82, 0xa6, 0x55, 0xa9, 0xb6, 0x42, 0x95, 0xe8, 0x19, 0x98, 0xb2, 0x1a, 0xb7, 0x34, 0x96, 0x92, 0x8a, 0xed, 0xe0, 0x96, 0xfe, 0x4a, 0xf1, 0x71, 0x1a, 0xdf, 0x49, 0xa2, 0xa0, 0x09, 0xb9, 0x4b, 0xc5, 0xe8, 0x69, 0x90, 0x34, 0xf7, 0x40, 0x75, 0x6c, 0xda, 0x13, 0xb8, 0xb6, 0xaa, 0xe1, 0xe2, 0x13, 0xcc, 0x94, 0xc9, 0x77, 0x84, 0x98, 0x2c, 0x09, 0xf7, 0xae, 0xde, 0xf2, 0x04, 0xe3, 0x53, 0x6c, 0x49, 0x50, 0x19, 0x67, 0x5b, 0x00, 0x89, 0x84, 0xa2, 0xe7, 0xc5, 0x0b, 0xd4, 0xac, 0x60, 0x1f, 0xd8, 0xe1, 0xf7, 0x3e, 0x06, 0x13, 0xc4, 0x32, 0x78, 0xe9, 0xd3, 0xac, 0x9f, 0xb1, 0x0f, 0x42, 0x6f, 0xfc, 0xc8, 0x5a, 0xcb, 0xf9, 0x32, 0xe4, 0xc3, 0xf9, 0x89, 0xb2, 0xc0, 0x32, 0x54, 0x8a, 0x91, 0x5a, 0xbf, 0x56, 0x5b, 0x27, 0x55, 0xfa, 0x73, 0x55, 0x29, 0x4e, 0xba, 0x85, 0xad, 0xcd, 0xbd, 0xaa, 0x22, 0xef, 0xef, 0xec, 0x6d, 0x6e, 0x57, 0xa5, 0x44, 0xb8, 0x2d, 0xfd, 0x4e, 0x1c, 0x0a, 0xbd, 0x27, 0x0c, 0xf4, 0xd3, 0x70, 0x5a, 0x5c, 0x07, 0xb8, 0xd8, 0x53, 0xee, 0xea, 0x0e, 0x5d, 0x32, 0x1d, 0x95, 0x75, 0xd8, 0xfe, 0xa4, 0xcd, 0x70, 0xab, 0x3a, 0xf6, 0x5e, 0xd2, 0x1d, 0xb2, 0x20, 0x3a, 0xaa, 0x87, 0xb6, 0xe0, 0xac, 0x69, 0x29, 0xae, 0xa7, 0x9a, 0x4d, 0xd5, 0x69, 0x2a, 0xc1, 0x45, 0x8c, 0xa2, 0x6a, 0x1a, 0x76, 0x5d, 0x8b, 0x95, 0x2a, 0x9f, 0xe5, 0x93, 0xa6, 0x55, 0xe7, 0xc6, 0xc1, 0x1e, 0x5e, 0xe1, 0xa6, 0x7d, 0x09, 0x96, 0x38, 0x2e, 0xc1, 0x3e, 0x01, 0xd9, 0x8e, 0x6a, 0x2b, 0xd8, 0xf4, 0x9c, 0x43, 0xda, 0x57, 0x66, 0xe4, 0x4c, 0x47, 0xb5, 0xab, 0xe4, 0xf9, 0xe3, 0x69, 0xef, 0xbf, 0x9f, 0x80, 0x7c, 0xb8, 0xb7, 0x24, 0xad, 0xba, 0x46, 0xeb, 0x48, 0x8c, 0xee, 0x34, 0x8f, 0x3d, 0xb4, 0x13, 0x5d, 0x5c, 0x23, 0x05, 0xa6, 0x9c, 0x66, 0x1d, 0x9f, 0xcc, 0x90, 0xa4, 0xb8, 0x93, 0xbd, 0x05, 0xb3, 0x53, 0x4c, 0x46, 0xe6, 0x4f, 0x68, 0x03, 0xd2, 0xb7, 0x5c, 0xca, 0x9d, 0xa6, 0xdc, 0x8f, 0x3f, 0x9c, 0xfb, 0x46, 0x9d, 0x92, 0x67, 0x6f, 0xd4, 0x95, 0x9d, 0x9a, 0xbc, 0x5d, 0xd9, 0x92, 0x39, 0x1c, 0x9d, 0x81, 0xa4, 0xa1, 0xde, 0x3b, 0xec, 0x2d, 0x45, 0x54, 0x34, 0x6a, 0xe0, 0xcf, 0x40, 0xf2, 0x2e, 0x56, 0x6f, 0xf7, 0x16, 0x00, 0x2a, 0xfa, 0x08, 0x53, 0x7f, 0x09, 0x52, 0x34, 0x5e, 0x08, 0x80, 0x47, 0x4c, 0x1a, 0x43, 0x19, 0x48, 0xae, 0xd5, 0x64, 0x92, 0xfe, 0x12, 0xe4, 0x99, 0x54, 0xd9, 0xdd, 0xac, 0xae, 0x55, 0xa5, 0xf8, 0xfc, 0x0a, 0xa4, 0x59, 0x10, 0xc8, 0xd2, 0xf0, 0xc3, 0x20, 0x8d, 0xf1, 0x47, 0xce, 0x11, 0x13, 0xda, 0xfd, 0xed, 0xd5, 0xaa, 0x2c, 0xc5, 0xc3, 0xd3, 0xeb, 0x42, 0x3e, 0xdc, 0x56, 0x7e, 0x3c, 0x39, 0xf5, 0xf7, 0x31, 0xc8, 0x85, 0xda, 0x44, 0xd2, 0xa0, 0xa8, 0x86, 0x61, 0xdd, 0x55, 0x54, 0x43, 0x57, 0x5d, 0x9e, 0x14, 0x40, 0x45, 0x15, 0x22, 0x19, 0x75, 0xd2, 0x3e, 0x16, 0xe7, 0xdf, 0x8c, 0x81, 0xd4, 0xdf, 0x62, 0xf6, 0x39, 0x18, 0xfb, 0x89, 0x3a, 0xf8, 0x46, 0x0c, 0x0a, 0xbd, 0x7d, 0x65, 0x9f, 0x7b, 0xe7, 0x7e, 0xa2, 0xee, 0xbd, 0x13, 0x87, 0x89, 0x9e, 0x6e, 0x72, 0x54, 0xef, 0x3e, 0x0f, 0x53, 0x7a, 0x13, 0x77, 0x6c, 0xcb, 0xc3, 0xa6, 0x76, 0xa8, 0x18, 0xf8, 0x0e, 0x36, 0x8a, 0xf3, 0x74, 0xa3, 0x58, 0x7a, 0x78, 0xbf, 0xba, 0xb8, 0x19, 0xe0, 0xb6, 0x08, 0xac, 0x3c, 0xbd, 0xb9, 0x5e, 0xdd, 0xde, 0xad, 0xed, 0x55, 0x77, 0xd6, 0x5e, 0x56, 0xf6, 0x77, 0x7e, 0x76, 0xa7, 0xf6, 0xd2, 0x8e, 0x2c, 0xe9, 0x7d, 0x66, 0x1f, 0xe1, 0x52, 0xdf, 0x05, 0xa9, 0xdf, 0x29, 0x74, 0x1a, 0x86, 0xb9, 0x25, 0x8d, 0xa1, 0x69, 0x98, 0xdc, 0xa9, 0x29, 0xf5, 0xcd, 0xf5, 0xaa, 0x52, 0xbd, 0x76, 0xad, 0xba, 0xb6, 0x57, 0x67, 0x07, 0x78, 0xdf, 0x7a, 0xaf, 0x77, 0x51, 0xbf, 0x9e, 0x80, 0xe9, 0x21, 0x9e, 0xa0, 0x0a, 0x3f, 0x3b, 0xb0, 0xe3, 0xcc, 0x73, 0xa3, 0x78, 0xbf, 0x48, 0x4a, 0xfe, 0xae, 0xea, 0x78, 0xfc, 0xa8, 0xf1, 0x34, 0x90, 0x28, 0x99, 0x9e, 0xde, 0xd2, 0xb1, 0xc3, 0xef, 0x3b, 0xd8, 0x81, 0x62, 0x32, 0x90, 0xb3, 0x2b, 0x8f, 0x9f, 0x02, 0x64, 0x5b, 0xae, 0xee, 0xe9, 0x77, 0xb0, 0xa2, 0x9b, 0xe2, 0x72, 0x84, 0x1c, 0x30, 0x92, 0xb2, 0x24, 0x34, 0x9b, 0xa6, 0xe7, 0x5b, 0x9b, 0xb8, 0xad, 0xf6, 0x59, 0x93, 0x0d, 0x3c, 0x21, 0x4b, 0x42, 0xe3, 0x5b, 0x9f, 0x83, 0x7c, 0xd3, 0xea, 0x92, 0xae, 0x8b, 0xd9, 0x91, 0x7a, 0x11, 0x93, 0x73, 0x4c, 0xe6, 0x9b, 0xf0, 0x7e, 0x3a, 0xb8, 0x95, 0xc9, 0xcb, 0x39, 0x26, 0x63, 0x26, 0x4f, 0xc1, 0xa4, 0xda, 0x6e, 0x3b, 0x84, 0x5c, 0x10, 0xb1, 0x13, 0x42, 0xc1, 0x17, 0x53, 0xc3, 0xd9, 0x1b, 0x90, 0x11, 0x71, 0x20, 0x25, 0x99, 0x44, 0x42, 0xb1, 0xd9, 0xcd, 0x5c, 0x7c, 0x21, 0x2b, 0x67, 0x4c, 0xa1, 0x3c, 0x07, 0x79, 0xdd, 0x55, 0x82, 0x4b, 0xe6, 0xf8, 0x5c, 0x7c, 0x21, 0x23, 0xe7, 0x74, 0xd7, 0xbf, 0xa0, 0x9b, 0x7f, 0x2b, 0x0e, 0x85, 0xde, 0x4b, 0x72, 0xb4, 0x0e, 0x19, 0xc3, 0xd2, 0x54, 0x9a, 0x5a, 0xec, 0x17, 0x9a, 0x85, 0x88, 0x7b, 0xf5, 0xc5, 0x2d, 0x6e, 0x2f, 0xfb, 0xc8, 0xd9, 0x7f, 0x8e, 0x41, 0x46, 0x88, 0xd1, 0x29, 0x48, 0xda, 0xaa, 0x77, 0x40, 0xe9, 0x52, 0xab, 0x71, 0x29, 0x26, 0xd3, 0x67, 0x22, 0x77, 0x6d, 0xd5, 0xa4, 0x29, 0xc0, 0xe5, 0xe4, 0x99, 0xcc, 0xab, 0x81, 0xd5, 0x26, 0x3d, 0x7e, 0x58, 0x9d, 0x0e, 0x36, 0x3d, 0x57, 0xcc, 0x2b, 0x97, 0xaf, 0x71, 0x31, 0x7a, 0x16, 0xa6, 0x3c, 0x47, 0xd5, 0x8d, 0x1e, 0xdb, 0x24, 0xb5, 0x95, 0x84, 0xc2, 0x37, 0x2e, 0xc3, 0x19, 0xc1, 0xdb, 0xc4, 0x9e, 0xaa, 0x1d, 0xe0, 0x66, 0x00, 0x4a, 0xd3, 0x1b, 0xd8, 0xd3, 0xdc, 0x60, 0x9d, 0xeb, 0x05, 0x76, 0xfe, 0x7b, 0x31, 0x98, 0x12, 0x07, 0xa6, 0xa6, 0x1f, 0xac, 0x6d, 0x00, 0xd5, 0x34, 0x2d, 0x2f, 0x1c, 0xae, 0xc1, 0x54, 0x1e, 0xc0, 0x2d, 0x56, 0x7c, 0x90, 0x1c, 0x22, 0x98, 0xed, 0x00, 0x04, 0x9a, 0x63, 0xc3, 0x76, 0x16, 0x72, 0xfc, 0x17, 0x10, 0xfa, 0x33, 0x1a, 0x3b, 0x62, 0x03, 0x13, 0x91, 0x93, 0x15, 0x9a, 0x81, 0x54, 0x03, 0xb7, 0x75, 0x93, 0xdf, 0x6b, 0xb2, 0x07, 0x71, 0x57, 0x9b, 0xf4, 0xef, 0x6a, 0x57, 0x6f, 0xc2, 0xb4, 0x66, 0x75, 0xfa, 0xdd, 0x5d, 0x95, 0xfa, 0x8e, 0xf9, 0xee, 0xf5, 0xd8, 0xe7, 0x20, 0x68, 0x31, 0xbf, 0x1c, 0x4f, 0x6c, 0xec, 0xae, 0x7e, 0x35, 0x3e, 0xbb, 0xc1, 0x70, 0xbb, 0x62, 0x98, 0x32, 0x6e, 0x19, 0x58, 0x23, 0xae, 0xc3, 0x0f, 0x9f, 0x84, 0xe7, 0xda, 0xba, 0x77, 0xd0, 0x6d, 0x2c, 0x6a, 0x56, 0x67, 0xa9, 0x6d, 0xb5, 0xad, 0xe0, 0x67, 0x43, 0xf2, 0x44, 0x1f, 0xe8, 0x7f, 0xfc, 0xa7, 0xc3, 0xac, 0x2f, 0x9d, 0x8d, 0xfc, 0x9d, 0xb1, 0xbc, 0x03, 0xd3, 0xdc, 0x58, 0xa1, 0xbf, 0x5d, 0xb0, 0x23, 0x04, 0x7a, 0xe8, 0xfd, 0x4f, 0xf1, 0x1b, 0xef, 0xd2, 0x5a, 0x2d, 0x4f, 0x71, 0x28, 0xd1, 0xb1, 0x53, 0x46, 0x59, 0x86, 0x47, 0x7a, 0xf8, 0xd8, 0xba, 0xc4, 0x4e, 0x04, 0xe3, 0x77, 0x38, 0xe3, 0x74, 0x88, 0xb1, 0xce, 0xa1, 0xe5, 0x35, 0x98, 0x38, 0x09, 0xd7, 0x3f, 0x72, 0xae, 0x3c, 0x0e, 0x93, 0x6c, 0xc0, 0x24, 0x25, 0xd1, 0xba, 0xae, 0x67, 0x75, 0xe8, 0xa6, 0xf7, 0x70, 0x9a, 0x7f, 0x7a, 0x97, 0x2d, 0x94, 0x02, 0x81, 0xad, 0xf9, 0xa8, 0x72, 0x19, 0xe8, 0xcf, 0x35, 0x4d, 0xac, 0x19, 0x11, 0x0c, 0x6f, 0x73, 0x47, 0x7c, 0xfb, 0xf2, 0x67, 0x61, 0x86, 0xfc, 0x4f, 0xf7, 0xa4, 0xb0, 0x27, 0xd1, 0xb7, 0x5d, 0xc5, 0xef, 0xbd, 0xca, 0xd6, 0xe2, 0xb4, 0x4f, 0x10, 0xf2, 0x29, 0x34, 0x8b, 0x6d, 0xec, 0x79, 0xd8, 0x71, 0x15, 0xd5, 0x18, 0xe6, 0x5e, 0xe8, 0xba, 0xa0, 0xf8, 0xc5, 0xf7, 0x7a, 0x67, 0x71, 0x83, 0x21, 0x2b, 0x86, 0x51, 0xde, 0x87, 0xd3, 0x43, 0xb2, 0x62, 0x04, 0xce, 0xd7, 0x39, 0xe7, 0xcc, 0x40, 0x66, 0x10, 0xda, 0x5d, 0x10, 0x72, 0x7f, 0x2e, 0x47, 0xe0, 0xfc, 0x7d, 0xce, 0x89, 0x38, 0x56, 0x4c, 0x29, 0x61, 0xbc, 0x01, 0x53, 0x77, 0xb0, 0xd3, 0xb0, 0x5c, 0x7e, 0x45, 0x33, 0x02, 0xdd, 0x1b, 0x9c, 0x6e, 0x92, 0x03, 0xe9, 0x9d, 0x0d, 0xe1, 0xba, 0x02, 0x99, 0x96, 0xaa, 0xe1, 0x11, 0x28, 0xbe, 0xc4, 0x29, 0xc6, 0x89, 0x3d, 0x81, 0x56, 0x20, 0xdf, 0xb6, 0x78, 0x59, 0x8a, 0x86, 0xbf, 0xc9, 0xe1, 0x39, 0x81, 0xe1, 0x14, 0xb6, 0x65, 0x77, 0x0d, 0x52, 0xb3, 0xa2, 0x29, 0xfe, 0x40, 0x50, 0x08, 0x0c, 0xa7, 0x38, 0x41, 0x58, 0xff, 0x50, 0x50, 0xb8, 0xa1, 0x78, 0xbe, 0x08, 0x39, 0xcb, 0x34, 0x0e, 0x2d, 0x73, 0x14, 0x27, 0xfe, 0x88, 0x33, 0x00, 0x87, 0x10, 0x82, 0xab, 0x90, 0x1d, 0x75, 0x22, 0xfe, 0xf8, 0x3d, 0xb1, 0x3c, 0xc4, 0x0c, 0x6c, 0xc0, 0xa4, 0xd8, 0xa0, 0x74, 0xcb, 0x1c, 0x81, 0xe2, 0x4f, 0x38, 0x45, 0x21, 0x04, 0xe3, 0xc3, 0xf0, 0xb0, 0xeb, 0xb5, 0xf1, 0x28, 0x24, 0x6f, 0x89, 0x61, 0x70, 0x08, 0x0f, 0x65, 0x03, 0x9b, 0xda, 0xc1, 0x68, 0x0c, 0x5f, 0x11, 0xa1, 0x14, 0x18, 0x42, 0xb1, 0x06, 0x13, 0x1d, 0xd5, 0x71, 0x0f, 0x54, 0x63, 0xa4, 0xe9, 0xf8, 0x53, 0xce, 0x91, 0xf7, 0x41, 0x3c, 0x22, 0x5d, 0xf3, 0x24, 0x34, 0x5f, 0x15, 0x11, 0x09, 0xc1, 0xf8, 0xd2, 0x73, 0x3d, 0x7a, 0x9f, 0x75, 0x12, 0xb6, 0xaf, 0x89, 0xa5, 0xc7, 0xb0, 0xdb, 0x61, 0xc6, 0xab, 0x90, 0x75, 0xf5, 0x7b, 0x23, 0xd1, 0xfc, 0x99, 0x98, 0x69, 0x0a, 0x20, 0xe0, 0x97, 0xe1, 0xcc, 0xd0, 0x32, 0x31, 0x02, 0xd9, 0x9f, 0x73, 0xb2, 0x53, 0x43, 0x4a, 0x05, 0xdf, 0x12, 0x4e, 0x4a, 0xf9, 0x17, 0x62, 0x4b, 0xc0, 0x7d, 0x5c, 0xbb, 0xe4, 0xa0, 0xe0, 0xaa, 0xad, 0x93, 0x45, 0xed, 0x2f, 0x45, 0xd4, 0x18, 0xb6, 0x27, 0x6a, 0x7b, 0x70, 0x8a, 0x33, 0x9e, 0x6c, 0x5e, 0xbf, 0x2e, 0x36, 0x56, 0x86, 0xde, 0xef, 0x9d, 0xdd, 0x9f, 0x83, 0x59, 0x3f, 0x9c, 0xa2, 0x23, 0x75, 0x95, 0x8e, 0x6a, 0x8f, 0xc0, 0xfc, 0x0d, 0xce, 0x2c, 0x76, 0x7c, 0xbf, 0xa5, 0x75, 0xb7, 0x55, 0x9b, 0x90, 0xdf, 0x84, 0xa2, 0x20, 0xef, 0x9a, 0x0e, 0xd6, 0xac, 0xb6, 0xa9, 0xdf, 0xc3, 0xcd, 0x11, 0xa8, 0xff, 0xaa, 0x6f, 0xaa, 0xf6, 0x43, 0x70, 0xc2, 0xbc, 0x09, 0x92, 0xdf, 0xab, 0x28, 0x7a, 0xc7, 0xb6, 0x1c, 0x2f, 0x82, 0xf1, 0x9b, 0x62, 0xa6, 0x7c, 0xdc, 0x26, 0x85, 0x95, 0xab, 0x50, 0xa0, 0x8f, 0xa3, 0xa6, 0xe4, 0x5f, 0x73, 0xa2, 0x89, 0x00, 0xc5, 0x37, 0x0e, 0xcd, 0xea, 0xd8, 0xaa, 0x33, 0xca, 0xfe, 0xf7, 0x37, 0x62, 0xe3, 0xe0, 0x10, 0xbe, 0x71, 0x78, 0x87, 0x36, 0x26, 0xd5, 0x7e, 0x04, 0x86, 0x6f, 0x89, 0x8d, 0x43, 0x60, 0x38, 0x85, 0x68, 0x18, 0x46, 0xa0, 0xf8, 0x5b, 0x41, 0x21, 0x30, 0x84, 0xe2, 0x33, 0x41, 0xa1, 0x75, 0x70, 0x5b, 0x77, 0x3d, 0x87, 0xf5, 0xc1, 0x0f, 0xa7, 0xfa, 0xf6, 0x7b, 0xbd, 0x4d, 0x98, 0x1c, 0x82, 0x96, 0x6f, 0xc0, 0x64, 0x5f, 0x8b, 0x81, 0xa2, 0xbe, 0xfd, 0x28, 0xfe, 0xc2, 0x07, 0x7c, 0x33, 0xea, 0xed, 0x30, 0xca, 0x5b, 0x64, 0xde, 0x7b, 0xfb, 0x80, 0x68, 0xb2, 0x57, 0x3f, 0xf0, 0xa7, 0xbe, 0xa7, 0x0d, 0x28, 0x5f, 0x83, 0x89, 0x9e, 0x1e, 0x20, 0x9a, 0xea, 0x17, 0x39, 0x55, 0x3e, 0xdc, 0x02, 0x94, 0x57, 0x20, 0x49, 0xea, 0x79, 0x34, 0xfc, 0x97, 0x38, 0x9c, 0x9a, 0x97, 0x3f, 0x05, 0x19, 0x51, 0xc7, 0xa3, 0xa1, 0xbf, 0xcc, 0xa1, 0x3e, 0x84, 0xc0, 0x45, 0x0d, 0x8f, 0x86, 0xff, 0x8a, 0x80, 0x0b, 0x08, 0x81, 0x8f, 0x1e, 0xc2, 0x7f, 0xf8, 0xd5, 0x24, 0xdf, 0x87, 0x45, 0xec, 0xae, 0xc2, 0x38, 0x2f, 0xde, 0xd1, 0xe8, 0x2f, 0xf0, 0x97, 0x0b, 0x44, 0xf9, 0x12, 0xa4, 0x46, 0x0c, 0xf8, 0xaf, 0x71, 0x28, 0xb3, 0x2f, 0xaf, 0x41, 0x2e, 0x54, 0xb0, 0xa3, 0xe1, 0xbf, 0xce, 0xe1, 0x61, 0x14, 0x71, 0x9d, 0x17, 0xec, 0x68, 0x82, 0xdf, 0x10, 0xae, 0x73, 0x04, 0x09, 0x9b, 0xa8, 0xd5, 0xd1, 0xe8, 0xdf, 0x14, 0x51, 0x17, 0x90, 0xf2, 0x8b, 0x90, 0xf5, 0xf7, 0xdf, 0x68, 0xfc, 0x6f, 0x71, 0x7c, 0x80, 0x21, 0x11, 0x08, 0xed, 0xff, 0xd1, 0x14, 0xbf, 0x2d, 0x22, 0x10, 0x42, 0x91, 0x65, 0xd4, 0x5f, 0xd3, 0xa3, 0x99, 0x7e, 0x47, 0x2c, 0xa3, 0xbe, 0x92, 0x4e, 0x66, 0x93, 0x6e, 0x83, 0xd1, 0x14, 0xbf, 0x2b, 0x66, 0x93, 0xda, 0x13, 0x37, 0xfa, 0x8b, 0x64, 0x34, 0xc7, 0xef, 0x09, 0x37, 0xfa, 0x6a, 0x64, 0x79, 0x17, 0xd0, 0x60, 0x81, 0x8c, 0xe6, 0x7b, 0x8d, 0xf3, 0x4d, 0x0d, 0xd4, 0xc7, 0xf2, 0x4b, 0x70, 0x6a, 0x78, 0x71, 0x8c, 0x66, 0xfd, 0xe2, 0x07, 0x7d, 0xc7, 0x99, 0x70, 0x6d, 0x2c, 0xef, 0x05, 0xbb, 0x6c, 0xb8, 0x30, 0x46, 0xd3, 0xbe, 0xfe, 0x41, 0xef, 0x46, 0x1b, 0xae, 0x8b, 0xe5, 0x0a, 0x40, 0x50, 0x93, 0xa2, 0xb9, 0xde, 0xe0, 0x5c, 0x21, 0x10, 0x59, 0x1a, 0xbc, 0x24, 0x45, 0xe3, 0xbf, 0x24, 0x96, 0x06, 0x47, 0x90, 0xa5, 0x21, 0xaa, 0x51, 0x34, 0xfa, 0x4d, 0xb1, 0x34, 0x04, 0xa4, 0x7c, 0x15, 0x32, 0x66, 0xd7, 0x30, 0x48, 0x6e, 0xa1, 0x87, 0x7f, 0xce, 0x54, 0xfc, 0xf7, 0x0f, 0x39, 0x58, 0x00, 0xca, 0x2b, 0x90, 0xc2, 0x9d, 0x06, 0x6e, 0x46, 0x21, 0xff, 0xe3, 0x43, 0xb1, 0x9f, 0x10, 0xeb, 0xf2, 0x8b, 0x00, 0xec, 0x30, 0x4d, 0x7f, 0x25, 0x8a, 0xc0, 0xfe, 0xe7, 0x87, 0xfc, 0x4b, 0x89, 0x00, 0x12, 0x10, 0xb0, 0xef, 0x2e, 0x1e, 0x4e, 0xf0, 0x5e, 0x2f, 0x01, 0x3d, 0x80, 0x5f, 0x81, 0xf1, 0x5b, 0xae, 0x65, 0x7a, 0x6a, 0x3b, 0x0a, 0xfd, 0x5f, 0x1c, 0x2d, 0xec, 0x49, 0xc0, 0x3a, 0x96, 0x83, 0x3d, 0xb5, 0xed, 0x46, 0x61, 0xff, 0x9b, 0x63, 0x7d, 0x00, 0x01, 0x6b, 0xaa, 0xeb, 0x8d, 0x32, 0xee, 0xff, 0x11, 0x60, 0x01, 0x20, 0x4e, 0x93, 0xff, 0x6f, 0xe3, 0xc3, 0x28, 0xec, 0xfb, 0xc2, 0x69, 0x6e, 0x5f, 0xfe, 0x14, 0x64, 0xc9, 0xbf, 0xec, 0xeb, 0xa1, 0x08, 0xf0, 0xff, 0x72, 0x70, 0x80, 0x20, 0x6f, 0x76, 0xbd, 0xa6, 0xa7, 0x47, 0x07, 0xfb, 0xff, 0xf8, 0x4c, 0x0b, 0xfb, 0x72, 0x05, 0x72, 0xae, 0xd7, 0x6c, 0x76, 0x79, 0x47, 0x13, 0x01, 0xff, 0xe1, 0x87, 0xfe, 0x21, 0xd7, 0xc7, 0xac, 0x9e, 0x1b, 0x7e, 0x59, 0x07, 0x1b, 0xd6, 0x86, 0xc5, 0xae, 0xe9, 0xe0, 0xb5, 0x14, 0xcc, 0x6a, 0x56, 0xa7, 0x61, 0xb9, 0x4b, 0xfe, 0x46, 0xb2, 0x64, 0x99, 0xdc, 0x1a, 0x25, 0x2c, 0x13, 0xcf, 0x9e, 0xec, 0x5a, 0x6e, 0xfe, 0x0c, 0xa4, 0xea, 0xdd, 0x46, 0xe3, 0x10, 0x49, 0x90, 0x70, 0xbb, 0x0d, 0xfe, 0x7d, 0x0b, 0xf9, 0x77, 0xfe, 0xfb, 0x09, 0xc8, 0xd5, 0xd5, 0x8e, 0x6d, 0xe0, 0x9a, 0x89, 0x6b, 0x2d, 0x54, 0x84, 0x34, 0x1d, 0xc5, 0x0b, 0xd4, 0x28, 0x76, 0x7d, 0x4c, 0xe6, 0xcf, 0xbe, 0x66, 0x99, 0xde, 0x55, 0xc6, 0x7d, 0xcd, 0xb2, 0xaf, 0x39, 0xcf, 0xae, 0x2a, 0x7d, 0xcd, 0x79, 0x5f, 0x73, 0x81, 0x5e, 0x58, 0x26, 0x7c, 0xcd, 0x05, 0x5f, 0xb3, 0x42, 0x2f, 0xe4, 0x27, 0x7c, 0xcd, 0x8a, 0xaf, 0xb9, 0x48, 0xaf, 0xe0, 0x93, 0xbe, 0xe6, 0xa2, 0xaf, 0xb9, 0x44, 0x6f, 0xde, 0xa7, 0x7c, 0xcd, 0x25, 0x5f, 0x73, 0x99, 0xde, 0xb6, 0x23, 0x5f, 0x73, 0xd9, 0xd7, 0x5c, 0xa1, 0x9f, 0xb1, 0x8c, 0xfb, 0x9a, 0x2b, 0x68, 0x16, 0xc6, 0xd9, 0xc8, 0x9e, 0xa7, 0x3f, 0xc9, 0x4e, 0x5e, 0x1f, 0x93, 0x85, 0x20, 0xd0, 0xbd, 0x40, 0x3f, 0x55, 0x49, 0x07, 0xba, 0x17, 0x02, 0xdd, 0x32, 0xfd, 0xe0, 0x5c, 0x0a, 0x74, 0xcb, 0x81, 0xee, 0x7c, 0x71, 0x82, 0x4c, 0x7e, 0xa0, 0x3b, 0x1f, 0xe8, 0x2e, 0x14, 0x0b, 0x24, 0xfe, 0x81, 0xee, 0x42, 0xa0, 0x5b, 0x29, 0x4e, 0xce, 0xc5, 0x16, 0xf2, 0x81, 0x6e, 0x05, 0x3d, 0x07, 0x39, 0xb7, 0xdb, 0x50, 0xf8, 0x17, 0x04, 0xf4, 0x93, 0x98, 0xdc, 0x32, 0x2c, 0x92, 0x8c, 0xa0, 0x93, 0x7a, 0x7d, 0x4c, 0x06, 0xb7, 0xdb, 0xe0, 0xbb, 0xe3, 0x6a, 0x1e, 0xe8, 0x65, 0x82, 0x42, 0x3f, 0x04, 0x5d, 0x5d, 0x7f, 0xfb, 0x41, 0x69, 0xec, 0xbb, 0x0f, 0x4a, 0x63, 0xff, 0xf2, 0xa0, 0x34, 0xf6, 0xce, 0x83, 0x52, 0xec, 0xfd, 0x07, 0xa5, 0xd8, 0x8f, 0x1e, 0x94, 0x62, 0xf7, 0x8f, 0x4a, 0xb1, 0xaf, 0x1c, 0x95, 0x62, 0x5f, 0x3f, 0x2a, 0xc5, 0xbe, 0x7d, 0x54, 0x8a, 0xbd, 0x7d, 0x54, 0x8a, 0x7d, 0xf7, 0xa8, 0x34, 0xf6, 0xce, 0x51, 0x29, 0xf6, 0x83, 0xa3, 0xd2, 0xd8, 0xfb, 0x47, 0xa5, 0xd8, 0x8f, 0x8e, 0x4a, 0x63, 0xf7, 0xff, 0xb5, 0x34, 0xd6, 0x48, 0xd3, 0x34, 0x3a, 0xff, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xca, 0x17, 0x2a, 0x8a, 0x3f, 0x32, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Subby) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Subby") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Subby but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Subby but is not nil && this == nil") } if this.Sub != that1.Sub { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } return nil } func (this *Subby) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Sub != that1.Sub { return false } return true } func (this *SampleOneOf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf) if !ok { that2, ok := that.(SampleOneOf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf but is not nil && this == nil") } if that1.TestOneof == nil { if this.TestOneof != nil { return fmt.Errorf("this.TestOneof != nil && that1.TestOneof == nil") } } else if this.TestOneof == nil { return fmt.Errorf("this.TestOneof == nil && that1.TestOneof != nil") } else if err := this.TestOneof.VerboseEqual(that1.TestOneof); err != nil { return err } return nil } func (this *SampleOneOf_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field1) if !ok { that2, ok := that.(SampleOneOf_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *SampleOneOf_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field2) if !ok { that2, ok := that.(SampleOneOf_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *SampleOneOf_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field3) if !ok { that2, ok := that.(SampleOneOf_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *SampleOneOf_Field4) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field4) if !ok { that2, ok := that.(SampleOneOf_Field4) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field4") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field4 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field4 but is not nil && this == nil") } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } return nil } func (this *SampleOneOf_Field5) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field5) if !ok { that2, ok := that.(SampleOneOf_Field5) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field5") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field5 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field5 but is not nil && this == nil") } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } return nil } func (this *SampleOneOf_Field6) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field6) if !ok { that2, ok := that.(SampleOneOf_Field6) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field6") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field6 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field6 but is not nil && this == nil") } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } return nil } func (this *SampleOneOf_Field7) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field7) if !ok { that2, ok := that.(SampleOneOf_Field7) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field7") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field7 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field7 but is not nil && this == nil") } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } return nil } func (this *SampleOneOf_Field8) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field8) if !ok { that2, ok := that.(SampleOneOf_Field8) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field8") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field8 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field8 but is not nil && this == nil") } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } return nil } func (this *SampleOneOf_Field9) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field9) if !ok { that2, ok := that.(SampleOneOf_Field9) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field9") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field9 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field9 but is not nil && this == nil") } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } return nil } func (this *SampleOneOf_Field10) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field10) if !ok { that2, ok := that.(SampleOneOf_Field10) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field10") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field10 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field10 but is not nil && this == nil") } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } return nil } func (this *SampleOneOf_Field11) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field11) if !ok { that2, ok := that.(SampleOneOf_Field11) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field11") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field11 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field11 but is not nil && this == nil") } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } return nil } func (this *SampleOneOf_Field12) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field12) if !ok { that2, ok := that.(SampleOneOf_Field12) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field12") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field12 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field12 but is not nil && this == nil") } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } return nil } func (this *SampleOneOf_Field13) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field13) if !ok { that2, ok := that.(SampleOneOf_Field13) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field13") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field13 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field13 but is not nil && this == nil") } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } return nil } func (this *SampleOneOf_Field14) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field14) if !ok { that2, ok := that.(SampleOneOf_Field14) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field14") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field14 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field14 but is not nil && this == nil") } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } return nil } func (this *SampleOneOf_Field15) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field15) if !ok { that2, ok := that.(SampleOneOf_Field15) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field15") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field15 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field15 but is not nil && this == nil") } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } return nil } func (this *SampleOneOf_SubMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_SubMessage) if !ok { that2, ok := that.(SampleOneOf_SubMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_SubMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_SubMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_SubMessage but is not nil && this == nil") } if !this.SubMessage.Equal(that1.SubMessage) { return fmt.Errorf("SubMessage this(%v) Not Equal that(%v)", this.SubMessage, that1.SubMessage) } return nil } func (this *SampleOneOf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf) if !ok { that2, ok := that.(SampleOneOf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.TestOneof == nil { if this.TestOneof != nil { return false } } else if this.TestOneof == nil { return false } else if !this.TestOneof.Equal(that1.TestOneof) { return false } return true } func (this *SampleOneOf_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field1) if !ok { that2, ok := that.(SampleOneOf_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *SampleOneOf_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field2) if !ok { that2, ok := that.(SampleOneOf_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *SampleOneOf_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field3) if !ok { that2, ok := that.(SampleOneOf_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *SampleOneOf_Field4) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field4) if !ok { that2, ok := that.(SampleOneOf_Field4) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field4 != that1.Field4 { return false } return true } func (this *SampleOneOf_Field5) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field5) if !ok { that2, ok := that.(SampleOneOf_Field5) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field5 != that1.Field5 { return false } return true } func (this *SampleOneOf_Field6) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field6) if !ok { that2, ok := that.(SampleOneOf_Field6) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field6 != that1.Field6 { return false } return true } func (this *SampleOneOf_Field7) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field7) if !ok { that2, ok := that.(SampleOneOf_Field7) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field7 != that1.Field7 { return false } return true } func (this *SampleOneOf_Field8) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field8) if !ok { that2, ok := that.(SampleOneOf_Field8) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field8 != that1.Field8 { return false } return true } func (this *SampleOneOf_Field9) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field9) if !ok { that2, ok := that.(SampleOneOf_Field9) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field9 != that1.Field9 { return false } return true } func (this *SampleOneOf_Field10) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field10) if !ok { that2, ok := that.(SampleOneOf_Field10) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field10 != that1.Field10 { return false } return true } func (this *SampleOneOf_Field11) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field11) if !ok { that2, ok := that.(SampleOneOf_Field11) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field11 != that1.Field11 { return false } return true } func (this *SampleOneOf_Field12) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field12) if !ok { that2, ok := that.(SampleOneOf_Field12) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field12 != that1.Field12 { return false } return true } func (this *SampleOneOf_Field13) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field13) if !ok { that2, ok := that.(SampleOneOf_Field13) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field13 != that1.Field13 { return false } return true } func (this *SampleOneOf_Field14) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field14) if !ok { that2, ok := that.(SampleOneOf_Field14) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field14 != that1.Field14 { return false } return true } func (this *SampleOneOf_Field15) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field15) if !ok { that2, ok := that.(SampleOneOf_Field15) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } return true } func (this *SampleOneOf_SubMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_SubMessage) if !ok { that2, ok := that.(SampleOneOf_SubMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage.Equal(that1.SubMessage) { return false } return true } func (this *Subby) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&one.Subby{") s = append(s, "Sub: "+fmt.Sprintf("%#v", this.Sub)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *SampleOneOf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&one.SampleOneOf{") if this.TestOneof != nil { s = append(s, "TestOneof: "+fmt.Sprintf("%#v", this.TestOneof)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *SampleOneOf_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *SampleOneOf_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *SampleOneOf_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *SampleOneOf_Field4) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field4{` + `Field4:` + fmt.Sprintf("%#v", this.Field4) + `}`}, ", ") return s } func (this *SampleOneOf_Field5) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field5{` + `Field5:` + fmt.Sprintf("%#v", this.Field5) + `}`}, ", ") return s } func (this *SampleOneOf_Field6) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field6{` + `Field6:` + fmt.Sprintf("%#v", this.Field6) + `}`}, ", ") return s } func (this *SampleOneOf_Field7) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field7{` + `Field7:` + fmt.Sprintf("%#v", this.Field7) + `}`}, ", ") return s } func (this *SampleOneOf_Field8) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field8{` + `Field8:` + fmt.Sprintf("%#v", this.Field8) + `}`}, ", ") return s } func (this *SampleOneOf_Field9) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field9{` + `Field9:` + fmt.Sprintf("%#v", this.Field9) + `}`}, ", ") return s } func (this *SampleOneOf_Field10) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field10{` + `Field10:` + fmt.Sprintf("%#v", this.Field10) + `}`}, ", ") return s } func (this *SampleOneOf_Field11) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field11{` + `Field11:` + fmt.Sprintf("%#v", this.Field11) + `}`}, ", ") return s } func (this *SampleOneOf_Field12) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field12{` + `Field12:` + fmt.Sprintf("%#v", this.Field12) + `}`}, ", ") return s } func (this *SampleOneOf_Field13) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field13{` + `Field13:` + fmt.Sprintf("%#v", this.Field13) + `}`}, ", ") return s } func (this *SampleOneOf_Field14) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field14{` + `Field14:` + fmt.Sprintf("%#v", this.Field14) + `}`}, ", ") return s } func (this *SampleOneOf_Field15) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field15{` + `Field15:` + fmt.Sprintf("%#v", this.Field15) + `}`}, ", ") return s } func (this *SampleOneOf_SubMessage) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_SubMessage{` + `SubMessage:` + fmt.Sprintf("%#v", this.SubMessage) + `}`}, ", ") return s } func valueToGoStringOne(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Subby) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Subby) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Sub) > 0 { dAtA[i] = 0xa i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Sub))) i += copy(dAtA[i:], m.Sub) } return i, nil } func (m *SampleOneOf) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *SampleOneOf) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.TestOneof != nil { nn1, err := m.TestOneof.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn1 } return i, nil } func (m *SampleOneOf_Field1) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 return i, nil } func (m *SampleOneOf_Field2) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 return i, nil } func (m *SampleOneOf_Field3) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x18 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field3)) return i, nil } func (m *SampleOneOf_Field4) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x20 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field4)) return i, nil } func (m *SampleOneOf_Field5) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x28 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field5)) return i, nil } func (m *SampleOneOf_Field6) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x30 i++ i = encodeVarintOne(dAtA, i, uint64(m.Field6)) return i, nil } func (m *SampleOneOf_Field7) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x38 i++ i = encodeVarintOne(dAtA, i, uint64((uint32(m.Field7)<<1)^uint32((m.Field7>>31)))) return i, nil } func (m *SampleOneOf_Field8) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x40 i++ i = encodeVarintOne(dAtA, i, uint64((uint64(m.Field8)<<1)^uint64((m.Field8>>63)))) return i, nil } func (m *SampleOneOf_Field9) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field9)) i += 4 return i, nil } func (m *SampleOneOf_Field10) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field10)) i += 4 return i, nil } func (m *SampleOneOf_Field11) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field11)) i += 8 return i, nil } func (m *SampleOneOf_Field12) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field12)) i += 8 return i, nil } func (m *SampleOneOf_Field13) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x68 i++ if m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ return i, nil } func (m *SampleOneOf_Field14) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x72 i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field14))) i += copy(dAtA[i:], m.Field14) return i, nil } func (m *SampleOneOf_Field15) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintOne(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } return i, nil } func (m *SampleOneOf_SubMessage) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.SubMessage != nil { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ i = encodeVarintOne(dAtA, i, uint64(m.SubMessage.Size())) n2, err := m.SubMessage.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } return i, nil } func encodeVarintOne(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedSubby(r randyOne, easy bool) *Subby { this := &Subby{} this.Sub = string(randStringOne(r)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedSampleOneOf(r randyOne, easy bool) *SampleOneOf { this := &SampleOneOf{} oneofNumber_TestOneof := []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}[r.Intn(16)] switch oneofNumber_TestOneof { case 1: this.TestOneof = NewPopulatedSampleOneOf_Field1(r, easy) case 2: this.TestOneof = NewPopulatedSampleOneOf_Field2(r, easy) case 3: this.TestOneof = NewPopulatedSampleOneOf_Field3(r, easy) case 4: this.TestOneof = NewPopulatedSampleOneOf_Field4(r, easy) case 5: this.TestOneof = NewPopulatedSampleOneOf_Field5(r, easy) case 6: this.TestOneof = NewPopulatedSampleOneOf_Field6(r, easy) case 7: this.TestOneof = NewPopulatedSampleOneOf_Field7(r, easy) case 8: this.TestOneof = NewPopulatedSampleOneOf_Field8(r, easy) case 9: this.TestOneof = NewPopulatedSampleOneOf_Field9(r, easy) case 10: this.TestOneof = NewPopulatedSampleOneOf_Field10(r, easy) case 11: this.TestOneof = NewPopulatedSampleOneOf_Field11(r, easy) case 12: this.TestOneof = NewPopulatedSampleOneOf_Field12(r, easy) case 13: this.TestOneof = NewPopulatedSampleOneOf_Field13(r, easy) case 14: this.TestOneof = NewPopulatedSampleOneOf_Field14(r, easy) case 15: this.TestOneof = NewPopulatedSampleOneOf_Field15(r, easy) case 16: this.TestOneof = NewPopulatedSampleOneOf_SubMessage(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedSampleOneOf_Field1(r randyOne, easy bool) *SampleOneOf_Field1 { this := &SampleOneOf_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedSampleOneOf_Field2(r randyOne, easy bool) *SampleOneOf_Field2 { this := &SampleOneOf_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedSampleOneOf_Field3(r randyOne, easy bool) *SampleOneOf_Field3 { this := &SampleOneOf_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedSampleOneOf_Field4(r randyOne, easy bool) *SampleOneOf_Field4 { this := &SampleOneOf_Field4{} this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } return this } func NewPopulatedSampleOneOf_Field5(r randyOne, easy bool) *SampleOneOf_Field5 { this := &SampleOneOf_Field5{} this.Field5 = uint32(r.Uint32()) return this } func NewPopulatedSampleOneOf_Field6(r randyOne, easy bool) *SampleOneOf_Field6 { this := &SampleOneOf_Field6{} this.Field6 = uint64(uint64(r.Uint32())) return this } func NewPopulatedSampleOneOf_Field7(r randyOne, easy bool) *SampleOneOf_Field7 { this := &SampleOneOf_Field7{} this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } return this } func NewPopulatedSampleOneOf_Field8(r randyOne, easy bool) *SampleOneOf_Field8 { this := &SampleOneOf_Field8{} this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } return this } func NewPopulatedSampleOneOf_Field9(r randyOne, easy bool) *SampleOneOf_Field9 { this := &SampleOneOf_Field9{} this.Field9 = uint32(r.Uint32()) return this } func NewPopulatedSampleOneOf_Field10(r randyOne, easy bool) *SampleOneOf_Field10 { this := &SampleOneOf_Field10{} this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } return this } func NewPopulatedSampleOneOf_Field11(r randyOne, easy bool) *SampleOneOf_Field11 { this := &SampleOneOf_Field11{} this.Field11 = uint64(uint64(r.Uint32())) return this } func NewPopulatedSampleOneOf_Field12(r randyOne, easy bool) *SampleOneOf_Field12 { this := &SampleOneOf_Field12{} this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } return this } func NewPopulatedSampleOneOf_Field13(r randyOne, easy bool) *SampleOneOf_Field13 { this := &SampleOneOf_Field13{} this.Field13 = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedSampleOneOf_Field14(r randyOne, easy bool) *SampleOneOf_Field14 { this := &SampleOneOf_Field14{} this.Field14 = string(randStringOne(r)) return this } func NewPopulatedSampleOneOf_Field15(r randyOne, easy bool) *SampleOneOf_Field15 { this := &SampleOneOf_Field15{} v1 := r.Intn(100) this.Field15 = make([]byte, v1) for i := 0; i < v1; i++ { this.Field15[i] = byte(r.Intn(256)) } return this } func NewPopulatedSampleOneOf_SubMessage(r randyOne, easy bool) *SampleOneOf_SubMessage { this := &SampleOneOf_SubMessage{} this.SubMessage = NewPopulatedSubby(r, easy) return this } type randyOne interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneOne(r randyOne) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringOne(r randyOne) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneOne(r) } return string(tmps) } func randUnrecognizedOne(r randyOne, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldOne(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldOne(dAtA []byte, r randyOne, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateOne(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateOne(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateOne(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Subby) Size() (n int) { var l int _ = l l = len(m.Sub) if l > 0 { n += 1 + l + sovOne(uint64(l)) } return n } func (m *SampleOneOf) Size() (n int) { var l int _ = l if m.TestOneof != nil { n += m.TestOneof.Size() } return n } func (m *SampleOneOf_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *SampleOneOf_Field4) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field4)) return n } func (m *SampleOneOf_Field5) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field5)) return n } func (m *SampleOneOf_Field6) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field6)) return n } func (m *SampleOneOf_Field7) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field7)) return n } func (m *SampleOneOf_Field8) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field8)) return n } func (m *SampleOneOf_Field9) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field10) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field11) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field12) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field13) Size() (n int) { var l int _ = l n += 2 return n } func (m *SampleOneOf_Field14) Size() (n int) { var l int _ = l l = len(m.Field14) n += 1 + l + sovOne(uint64(l)) return n } func (m *SampleOneOf_Field15) Size() (n int) { var l int _ = l if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovOne(uint64(l)) } return n } func (m *SampleOneOf_SubMessage) Size() (n int) { var l int _ = l if m.SubMessage != nil { l = m.SubMessage.Size() n += 2 + l + sovOne(uint64(l)) } return n } func sovOne(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozOne(x uint64) (n int) { return sovOne(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Subby) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Subby{`, `Sub:` + fmt.Sprintf("%v", this.Sub) + `,`, `}`, }, "") return s } func (this *SampleOneOf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf{`, `TestOneof:` + fmt.Sprintf("%v", this.TestOneof) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field4) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field4{`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field5) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field5{`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field6) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field6{`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field7) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field7{`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field8) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field8{`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field9) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field9{`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field10) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field10{`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field11) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field11{`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field12) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field12{`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field13) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field13{`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field14) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field14{`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field15) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field15{`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `}`, }, "") return s } func (this *SampleOneOf_SubMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_SubMessage{`, `SubMessage:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func valueToStringOne(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/marshaler/one.proto", fileDescriptorOne) } var fileDescriptorOne = []byte{ // 407 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0xd2, 0xbf, 0x4f, 0x1b, 0x31, 0x14, 0x07, 0x70, 0x3f, 0x8e, 0x24, 0xe0, 0x84, 0x92, 0xde, 0xf4, 0x9a, 0xe1, 0xc9, 0x62, 0xf2, 0x42, 0xd2, 0xdc, 0x25, 0xfc, 0x58, 0x51, 0x55, 0x65, 0xa9, 0x90, 0xc2, 0x1f, 0x80, 0x62, 0xea, 0x04, 0xa4, 0x5c, 0x8c, 0x72, 0x77, 0x43, 0x37, 0xfe, 0x9c, 0x8e, 0x1d, 0xfb, 0x27, 0x30, 0x32, 0x76, 0xe8, 0xc0, 0xb9, 0x4b, 0x47, 0x46, 0xc6, 0x2a, 0x97, 0xf2, 0xbc, 0xbd, 0xaf, 0x3f, 0xf6, 0x60, 0xfb, 0x2b, 0x7b, 0x37, 0x2e, 0x33, 0x2e, 0x1f, 0x64, 0xb3, 0x75, 0x7e, 0x3b, 0x5b, 0xda, 0xf5, 0xc0, 0xad, 0x6c, 0xff, 0x7e, 0xed, 0x0a, 0x17, 0x47, 0x6e, 0x65, 0x7b, 0xc7, 0x8b, 0xbb, 0xe2, 0xb6, 0x34, 0xfd, 0x1b, 0x97, 0x0d, 0x16, 0x6e, 0xe1, 0x06, 0xb5, 0x99, 0x72, 0x5e, 0xa7, 0x3a, 0xd4, 0xd3, 0xf6, 0xcc, 0xd1, 0x07, 0xd9, 0xb8, 0x2a, 0x8d, 0xf9, 0x16, 0x77, 0x65, 0x94, 0x97, 0x06, 0x41, 0x81, 0xde, 0x9f, 0x6e, 0xc6, 0xa3, 0xdf, 0x91, 0x6c, 0x5f, 0xcd, 0xb2, 0xfb, 0xa5, 0xbd, 0x5c, 0xd9, 0xcb, 0x79, 0x8c, 0xb2, 0xf9, 0xf9, 0xce, 0x2e, 0xbf, 0x0e, 0xeb, 0x4d, 0x30, 0x11, 0xd3, 0xff, 0x99, 0x25, 0xc1, 0x1d, 0x05, 0x7a, 0x87, 0x25, 0x61, 0x49, 0x31, 0x52, 0xa0, 0x1b, 0x2c, 0x29, 0xcb, 0x08, 0x77, 0x15, 0xe8, 0x88, 0x65, 0xc4, 0x32, 0xc6, 0x86, 0x02, 0x7d, 0xc0, 0x32, 0x66, 0x39, 0xc1, 0xa6, 0x02, 0xbd, 0xcb, 0x72, 0xc2, 0x72, 0x8a, 0x2d, 0x05, 0xfa, 0x3d, 0xcb, 0x29, 0xcb, 0x19, 0xee, 0x29, 0xd0, 0x31, 0xcb, 0x19, 0xcb, 0x39, 0xee, 0x2b, 0xd0, 0x2d, 0x96, 0xf3, 0xb8, 0x27, 0x5b, 0xdb, 0x9b, 0x7d, 0x44, 0xa9, 0x40, 0x1f, 0x4e, 0xc4, 0xf4, 0x6d, 0x21, 0xd8, 0x10, 0xdb, 0x0a, 0x74, 0x33, 0xd8, 0x30, 0x58, 0x82, 0x1d, 0x05, 0xba, 0x1b, 0x2c, 0x09, 0x96, 0xe2, 0x81, 0x02, 0xbd, 0x17, 0x2c, 0x0d, 0x36, 0xc2, 0x77, 0x9b, 0xf7, 0x0f, 0x36, 0x0a, 0x36, 0xc6, 0x43, 0x05, 0xba, 0x13, 0x6c, 0x1c, 0x1f, 0xcb, 0x76, 0x5e, 0x9a, 0xeb, 0xcc, 0xe6, 0xf9, 0x6c, 0x61, 0xb1, 0xab, 0x40, 0xb7, 0x13, 0xd9, 0xdf, 0x34, 0xa2, 0xfe, 0xd4, 0x89, 0x98, 0xca, 0xbc, 0x34, 0x5f, 0xb6, 0x7e, 0xd1, 0x91, 0xb2, 0xb0, 0x79, 0x71, 0xed, 0x56, 0xd6, 0xcd, 0x2f, 0x3e, 0x3d, 0x56, 0x24, 0x9e, 0x2a, 0x12, 0xbf, 0x2a, 0x12, 0xcf, 0x15, 0xc1, 0x4b, 0x45, 0xf0, 0x5a, 0x11, 0x3c, 0x78, 0x82, 0xef, 0x9e, 0xe0, 0x87, 0x27, 0xf8, 0xe9, 0x09, 0x1e, 0x3d, 0xc1, 0x93, 0x27, 0xf1, 0xec, 0x09, 0xfe, 0x7a, 0x12, 0x2f, 0x9e, 0xe0, 0xd5, 0x93, 0x78, 0xf8, 0x43, 0xc2, 0x34, 0xeb, 0x1a, 0xa5, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x34, 0x55, 0x0b, 0x2b, 0x98, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/oneof3/combos/marshaler/one.proto000066400000000000000000000053221317075173200246250ustar00rootroot00000000000000// 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 = "proto3"; package one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { string sub = 1; } message SampleOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } golang-gogoprotobuf-0.5/test/oneof3/combos/marshaler/onepb_test.go000066400000000000000000000270341317075173200254540ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/marshaler/one.proto It has these top-level messages: Subby SampleOneOf */ package one import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSubbyProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSubbyMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSampleOneOfMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSampleOneOfJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubbyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneDescription(t *testing.T) { OneDescription() } func TestSubbyVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSampleOneOfVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSubbyGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSampleOneOfGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSubbySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSampleOneOfSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSubbyStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestSampleOneOfStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/oneof3/combos/neither/000077500000000000000000000000001317075173200224355ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof3/combos/neither/one.pb.go000066400000000000000000002430301317075173200241470ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/neither/one.proto It has these top-level messages: Subby SampleOneOf */ package one import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Subby struct { Sub string `protobuf:"bytes,1,opt,name=sub,proto3" json:"sub,omitempty"` } func (m *Subby) Reset() { *m = Subby{} } func (*Subby) ProtoMessage() {} func (*Subby) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{0} } type SampleOneOf struct { // Types that are valid to be assigned to TestOneof: // *SampleOneOf_Field1 // *SampleOneOf_Field2 // *SampleOneOf_Field3 // *SampleOneOf_Field4 // *SampleOneOf_Field5 // *SampleOneOf_Field6 // *SampleOneOf_Field7 // *SampleOneOf_Field8 // *SampleOneOf_Field9 // *SampleOneOf_Field10 // *SampleOneOf_Field11 // *SampleOneOf_Field12 // *SampleOneOf_Field13 // *SampleOneOf_Field14 // *SampleOneOf_Field15 // *SampleOneOf_SubMessage TestOneof isSampleOneOf_TestOneof `protobuf_oneof:"test_oneof"` } func (m *SampleOneOf) Reset() { *m = SampleOneOf{} } func (*SampleOneOf) ProtoMessage() {} func (*SampleOneOf) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{1} } type isSampleOneOf_TestOneof interface { isSampleOneOf_TestOneof() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type SampleOneOf_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,proto3,oneof"` } type SampleOneOf_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,proto3,oneof"` } type SampleOneOf_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,proto3,oneof"` } type SampleOneOf_Field4 struct { Field4 int64 `protobuf:"varint,4,opt,name=Field4,proto3,oneof"` } type SampleOneOf_Field5 struct { Field5 uint32 `protobuf:"varint,5,opt,name=Field5,proto3,oneof"` } type SampleOneOf_Field6 struct { Field6 uint64 `protobuf:"varint,6,opt,name=Field6,proto3,oneof"` } type SampleOneOf_Field7 struct { Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7,proto3,oneof"` } type SampleOneOf_Field8 struct { Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8,proto3,oneof"` } type SampleOneOf_Field9 struct { Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9,proto3,oneof"` } type SampleOneOf_Field10 struct { Field10 int32 `protobuf:"fixed32,10,opt,name=Field10,proto3,oneof"` } type SampleOneOf_Field11 struct { Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11,proto3,oneof"` } type SampleOneOf_Field12 struct { Field12 int64 `protobuf:"fixed64,12,opt,name=Field12,proto3,oneof"` } type SampleOneOf_Field13 struct { Field13 bool `protobuf:"varint,13,opt,name=Field13,proto3,oneof"` } type SampleOneOf_Field14 struct { Field14 string `protobuf:"bytes,14,opt,name=Field14,proto3,oneof"` } type SampleOneOf_Field15 struct { Field15 []byte `protobuf:"bytes,15,opt,name=Field15,proto3,oneof"` } type SampleOneOf_SubMessage struct { SubMessage *Subby `protobuf:"bytes,16,opt,name=sub_message,json=subMessage,oneof"` } func (*SampleOneOf_Field1) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field2) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field3) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field4) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field5) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field6) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field7) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field8) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field9) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field10) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field11) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field12) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field13) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field14) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field15) isSampleOneOf_TestOneof() {} func (*SampleOneOf_SubMessage) isSampleOneOf_TestOneof() {} func (m *SampleOneOf) GetTestOneof() isSampleOneOf_TestOneof { if m != nil { return m.TestOneof } return nil } func (m *SampleOneOf) GetField1() float64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field1); ok { return x.Field1 } return 0 } func (m *SampleOneOf) GetField2() float32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field2); ok { return x.Field2 } return 0 } func (m *SampleOneOf) GetField3() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field3); ok { return x.Field3 } return 0 } func (m *SampleOneOf) GetField4() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field4); ok { return x.Field4 } return 0 } func (m *SampleOneOf) GetField5() uint32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field5); ok { return x.Field5 } return 0 } func (m *SampleOneOf) GetField6() uint64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field6); ok { return x.Field6 } return 0 } func (m *SampleOneOf) GetField7() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field7); ok { return x.Field7 } return 0 } func (m *SampleOneOf) GetField8() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field8); ok { return x.Field8 } return 0 } func (m *SampleOneOf) GetField9() uint32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field9); ok { return x.Field9 } return 0 } func (m *SampleOneOf) GetField10() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field10); ok { return x.Field10 } return 0 } func (m *SampleOneOf) GetField11() uint64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field11); ok { return x.Field11 } return 0 } func (m *SampleOneOf) GetField12() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field12); ok { return x.Field12 } return 0 } func (m *SampleOneOf) GetField13() bool { if x, ok := m.GetTestOneof().(*SampleOneOf_Field13); ok { return x.Field13 } return false } func (m *SampleOneOf) GetField14() string { if x, ok := m.GetTestOneof().(*SampleOneOf_Field14); ok { return x.Field14 } return "" } func (m *SampleOneOf) GetField15() []byte { if x, ok := m.GetTestOneof().(*SampleOneOf_Field15); ok { return x.Field15 } return nil } func (m *SampleOneOf) GetSubMessage() *Subby { if x, ok := m.GetTestOneof().(*SampleOneOf_SubMessage); ok { return x.SubMessage } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*SampleOneOf) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _SampleOneOf_OneofMarshaler, _SampleOneOf_OneofUnmarshaler, _SampleOneOf_OneofSizer, []interface{}{ (*SampleOneOf_Field1)(nil), (*SampleOneOf_Field2)(nil), (*SampleOneOf_Field3)(nil), (*SampleOneOf_Field4)(nil), (*SampleOneOf_Field5)(nil), (*SampleOneOf_Field6)(nil), (*SampleOneOf_Field7)(nil), (*SampleOneOf_Field8)(nil), (*SampleOneOf_Field9)(nil), (*SampleOneOf_Field10)(nil), (*SampleOneOf_Field11)(nil), (*SampleOneOf_Field12)(nil), (*SampleOneOf_Field13)(nil), (*SampleOneOf_Field14)(nil), (*SampleOneOf_Field15)(nil), (*SampleOneOf_SubMessage)(nil), } } func _SampleOneOf_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*SampleOneOf) // test_oneof switch x := m.TestOneof.(type) { case *SampleOneOf_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *SampleOneOf_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *SampleOneOf_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case *SampleOneOf_Field4: _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field4)) case *SampleOneOf_Field5: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field5)) case *SampleOneOf_Field6: _ = b.EncodeVarint(6<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field6)) case *SampleOneOf_Field7: _ = b.EncodeVarint(7<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Field7)) case *SampleOneOf_Field8: _ = b.EncodeVarint(8<<3 | proto.WireVarint) _ = b.EncodeZigzag64(uint64(x.Field8)) case *SampleOneOf_Field9: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field9)) case *SampleOneOf_Field10: _ = b.EncodeVarint(10<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field10)) case *SampleOneOf_Field11: _ = b.EncodeVarint(11<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field11)) case *SampleOneOf_Field12: _ = b.EncodeVarint(12<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field12)) case *SampleOneOf_Field13: t := uint64(0) if x.Field13 { t = 1 } _ = b.EncodeVarint(13<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *SampleOneOf_Field14: _ = b.EncodeVarint(14<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field14) case *SampleOneOf_Field15: _ = b.EncodeVarint(15<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field15) case *SampleOneOf_SubMessage: _ = b.EncodeVarint(16<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage); err != nil { return err } case nil: default: return fmt.Errorf("SampleOneOf.TestOneof has unexpected type %T", x) } return nil } func _SampleOneOf_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*SampleOneOf) switch tag { case 1: // test_oneof.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field1{math.Float64frombits(x)} return true, err case 2: // test_oneof.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // test_oneof.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field3{int32(x)} return true, err case 4: // test_oneof.Field4 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field4{int64(x)} return true, err case 5: // test_oneof.Field5 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field5{uint32(x)} return true, err case 6: // test_oneof.Field6 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field6{x} return true, err case 7: // test_oneof.Field7 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.TestOneof = &SampleOneOf_Field7{int32(x)} return true, err case 8: // test_oneof.Field8 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag64() m.TestOneof = &SampleOneOf_Field8{int64(x)} return true, err case 9: // test_oneof.Field9 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field9{uint32(x)} return true, err case 10: // test_oneof.Field10 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field10{int32(x)} return true, err case 11: // test_oneof.Field11 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field11{x} return true, err case 12: // test_oneof.Field12 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field12{int64(x)} return true, err case 13: // test_oneof.Field13 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field13{x != 0} return true, err case 14: // test_oneof.Field14 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.TestOneof = &SampleOneOf_Field14{x} return true, err case 15: // test_oneof.Field15 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.TestOneof = &SampleOneOf_Field15{x} return true, err case 16: // test_oneof.sub_message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.TestOneof = &SampleOneOf_SubMessage{msg} return true, err default: return false, nil } } func _SampleOneOf_OneofSizer(msg proto.Message) (n int) { m := msg.(*SampleOneOf) // test_oneof switch x := m.TestOneof.(type) { case *SampleOneOf_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case *SampleOneOf_Field4: n += proto.SizeVarint(4<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field4)) case *SampleOneOf_Field5: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field5)) case *SampleOneOf_Field6: n += proto.SizeVarint(6<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field6)) case *SampleOneOf_Field7: n += proto.SizeVarint(7<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.Field7) << 1) ^ uint32((int32(x.Field7) >> 31)))) case *SampleOneOf_Field8: n += proto.SizeVarint(8<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(uint64(x.Field8<<1) ^ uint64((int64(x.Field8) >> 63)))) case *SampleOneOf_Field9: n += proto.SizeVarint(9<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field10: n += proto.SizeVarint(10<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field11: n += proto.SizeVarint(11<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field12: n += proto.SizeVarint(12<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field13: n += proto.SizeVarint(13<<3 | proto.WireVarint) n += 1 case *SampleOneOf_Field14: n += proto.SizeVarint(14<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field14))) n += len(x.Field14) case *SampleOneOf_Field15: n += proto.SizeVarint(15<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field15))) n += len(x.Field15) case *SampleOneOf_SubMessage: s := proto.Size(x.SubMessage) n += proto.SizeVarint(16<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*Subby)(nil), "one.Subby") proto.RegisterType((*SampleOneOf)(nil), "one.SampleOneOf") } func (this *Subby) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *SampleOneOf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func OneDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3939 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x7a, 0x4b, 0x70, 0x23, 0xd7, 0x75, 0x36, 0xf1, 0x24, 0x70, 0x00, 0x82, 0xcd, 0x4b, 0x6a, 0x06, 0x43, 0x59, 0x18, 0x0e, 0xf5, 0xa2, 0xa4, 0x5f, 0xa4, 0xc4, 0x19, 0xce, 0x03, 0xf3, 0xdb, 0x0a, 0x48, 0x62, 0x38, 0x9c, 0x90, 0x04, 0xdd, 0x20, 0xad, 0x91, 0xb3, 0xe8, 0x6a, 0x34, 0x2e, 0xc0, 0x9e, 0x69, 0x74, 0xb7, 0xbb, 0x1b, 0x33, 0xe2, 0x54, 0x16, 0x93, 0x52, 0x1e, 0xe5, 0x4a, 0xe5, 0x9d, 0x4a, 0x6c, 0x45, 0x56, 0x12, 0x57, 0x25, 0x72, 0xec, 0x3c, 0xec, 0x38, 0x71, 0x9c, 0xac, 0xb2, 0x71, 0xa2, 0x55, 0xca, 0xde, 0x65, 0xe1, 0x85, 0x86, 0x51, 0x55, 0x9c, 0x44, 0x49, 0x94, 0x58, 0x0b, 0x57, 0x69, 0x93, 0xba, 0xaf, 0xee, 0xc6, 0x83, 0xd3, 0xa0, 0xab, 0x24, 0xaf, 0xc8, 0x3e, 0xe7, 0x7c, 0x5f, 0x9f, 0x7b, 0xee, 0xb9, 0xf7, 0x9c, 0x7b, 0xd1, 0xf0, 0xb5, 0xcb, 0x30, 0xd7, 0xb6, 0xac, 0xb6, 0x81, 0x97, 0x6c, 0xc7, 0xf2, 0xac, 0x46, 0xb7, 0xb5, 0xd4, 0xc4, 0xae, 0xe6, 0xe8, 0xb6, 0x67, 0x39, 0x8b, 0x54, 0x86, 0x26, 0x99, 0xc5, 0xa2, 0xb0, 0x98, 0xdf, 0x86, 0xa9, 0x6b, 0xba, 0x81, 0xd7, 0x7d, 0xc3, 0x3a, 0xf6, 0xd0, 0x65, 0x48, 0xb6, 0x74, 0x03, 0x17, 0x63, 0x73, 0x89, 0x85, 0xdc, 0xf2, 0x13, 0x8b, 0x7d, 0xa0, 0xc5, 0x5e, 0xc4, 0x2e, 0x11, 0xcb, 0x14, 0x31, 0xff, 0x6e, 0x12, 0xa6, 0x87, 0x68, 0x11, 0x82, 0xa4, 0xa9, 0x76, 0x08, 0x63, 0x6c, 0x21, 0x2b, 0xd3, 0xff, 0x51, 0x11, 0xc6, 0x6d, 0x55, 0xbb, 0xad, 0xb6, 0x71, 0x31, 0x4e, 0xc5, 0xe2, 0x11, 0x95, 0x00, 0x9a, 0xd8, 0xc6, 0x66, 0x13, 0x9b, 0xda, 0x61, 0x31, 0x31, 0x97, 0x58, 0xc8, 0xca, 0x21, 0x09, 0x7a, 0x0e, 0xa6, 0xec, 0x6e, 0xc3, 0xd0, 0x35, 0x25, 0x64, 0x06, 0x73, 0x89, 0x85, 0x94, 0x2c, 0x31, 0xc5, 0x7a, 0x60, 0xfc, 0x34, 0x4c, 0xde, 0xc5, 0xea, 0xed, 0xb0, 0x69, 0x8e, 0x9a, 0x16, 0x88, 0x38, 0x64, 0xb8, 0x06, 0xf9, 0x0e, 0x76, 0x5d, 0xb5, 0x8d, 0x15, 0xef, 0xd0, 0xc6, 0xc5, 0x24, 0x1d, 0xfd, 0xdc, 0xc0, 0xe8, 0xfb, 0x47, 0x9e, 0xe3, 0xa8, 0xbd, 0x43, 0x1b, 0xa3, 0x0a, 0x64, 0xb1, 0xd9, 0xed, 0x30, 0x86, 0xd4, 0x31, 0xf1, 0xab, 0x9a, 0xdd, 0x4e, 0x3f, 0x4b, 0x86, 0xc0, 0x38, 0xc5, 0xb8, 0x8b, 0x9d, 0x3b, 0xba, 0x86, 0x8b, 0x69, 0x4a, 0xf0, 0xf4, 0x00, 0x41, 0x9d, 0xe9, 0xfb, 0x39, 0x04, 0x0e, 0xad, 0x41, 0x16, 0xbf, 0xea, 0x61, 0xd3, 0xd5, 0x2d, 0xb3, 0x38, 0x4e, 0x49, 0x9e, 0x1c, 0x32, 0x8b, 0xd8, 0x68, 0xf6, 0x53, 0x04, 0x38, 0x74, 0x11, 0xc6, 0x2d, 0xdb, 0xd3, 0x2d, 0xd3, 0x2d, 0x66, 0xe6, 0x62, 0x0b, 0xb9, 0xe5, 0x4f, 0x0c, 0x4d, 0x84, 0x1a, 0xb3, 0x91, 0x85, 0x31, 0xda, 0x04, 0xc9, 0xb5, 0xba, 0x8e, 0x86, 0x15, 0xcd, 0x6a, 0x62, 0x45, 0x37, 0x5b, 0x56, 0x31, 0x4b, 0x09, 0xce, 0x0e, 0x0e, 0x84, 0x1a, 0xae, 0x59, 0x4d, 0xbc, 0x69, 0xb6, 0x2c, 0xb9, 0xe0, 0xf6, 0x3c, 0xa3, 0x53, 0x90, 0x76, 0x0f, 0x4d, 0x4f, 0x7d, 0xb5, 0x98, 0xa7, 0x19, 0xc2, 0x9f, 0xe6, 0xff, 0x36, 0x0d, 0x93, 0xa3, 0xa4, 0xd8, 0x55, 0x48, 0xb5, 0xc8, 0x28, 0x8b, 0xf1, 0x93, 0xc4, 0x80, 0x61, 0x7a, 0x83, 0x98, 0xfe, 0x31, 0x83, 0x58, 0x81, 0x9c, 0x89, 0x5d, 0x0f, 0x37, 0x59, 0x46, 0x24, 0x46, 0xcc, 0x29, 0x60, 0xa0, 0xc1, 0x94, 0x4a, 0xfe, 0x58, 0x29, 0x75, 0x13, 0x26, 0x7d, 0x97, 0x14, 0x47, 0x35, 0xdb, 0x22, 0x37, 0x97, 0xa2, 0x3c, 0x59, 0xac, 0x0a, 0x9c, 0x4c, 0x60, 0x72, 0x01, 0xf7, 0x3c, 0xa3, 0x75, 0x00, 0xcb, 0xc4, 0x56, 0x4b, 0x69, 0x62, 0xcd, 0x28, 0x66, 0x8e, 0x89, 0x52, 0x8d, 0x98, 0x0c, 0x44, 0xc9, 0x62, 0x52, 0xcd, 0x40, 0x57, 0x82, 0x54, 0x1b, 0x3f, 0x26, 0x53, 0xb6, 0xd9, 0x22, 0x1b, 0xc8, 0xb6, 0x7d, 0x28, 0x38, 0x98, 0xe4, 0x3d, 0x6e, 0xf2, 0x91, 0x65, 0xa9, 0x13, 0x8b, 0x91, 0x23, 0x93, 0x39, 0x8c, 0x0d, 0x6c, 0xc2, 0x09, 0x3f, 0xa2, 0xc7, 0xc1, 0x17, 0x28, 0x34, 0xad, 0x80, 0xee, 0x42, 0x79, 0x21, 0xdc, 0x51, 0x3b, 0x78, 0xf6, 0x1e, 0x14, 0x7a, 0xc3, 0x83, 0x66, 0x20, 0xe5, 0x7a, 0xaa, 0xe3, 0xd1, 0x2c, 0x4c, 0xc9, 0xec, 0x01, 0x49, 0x90, 0xc0, 0x66, 0x93, 0xee, 0x72, 0x29, 0x99, 0xfc, 0x8b, 0x7e, 0x2a, 0x18, 0x70, 0x82, 0x0e, 0xf8, 0xa9, 0xc1, 0x19, 0xed, 0x61, 0xee, 0x1f, 0xf7, 0xec, 0x25, 0x98, 0xe8, 0x19, 0xc0, 0xa8, 0xaf, 0x9e, 0xff, 0x59, 0x78, 0x64, 0x28, 0x35, 0xba, 0x09, 0x33, 0x5d, 0x53, 0x37, 0x3d, 0xec, 0xd8, 0x0e, 0x26, 0x19, 0xcb, 0x5e, 0x55, 0xfc, 0xd7, 0xf1, 0x63, 0x72, 0x6e, 0x3f, 0x6c, 0xcd, 0x58, 0xe4, 0xe9, 0xee, 0xa0, 0xf0, 0xd9, 0x6c, 0xe6, 0x07, 0xe3, 0xd2, 0xfd, 0xfb, 0xf7, 0xef, 0xc7, 0xe7, 0xbf, 0x90, 0x86, 0x99, 0x61, 0x6b, 0x66, 0xe8, 0xf2, 0x3d, 0x05, 0x69, 0xb3, 0xdb, 0x69, 0x60, 0x87, 0x06, 0x29, 0x25, 0xf3, 0x27, 0x54, 0x81, 0x94, 0xa1, 0x36, 0xb0, 0x51, 0x4c, 0xce, 0xc5, 0x16, 0x0a, 0xcb, 0xcf, 0x8d, 0xb4, 0x2a, 0x17, 0xb7, 0x08, 0x44, 0x66, 0x48, 0xf4, 0x29, 0x48, 0xf2, 0x2d, 0x9a, 0x30, 0x3c, 0x3b, 0x1a, 0x03, 0x59, 0x4b, 0x32, 0xc5, 0xa1, 0x47, 0x21, 0x4b, 0xfe, 0xb2, 0xdc, 0x48, 0x53, 0x9f, 0x33, 0x44, 0x40, 0xf2, 0x02, 0xcd, 0x42, 0x86, 0x2e, 0x93, 0x26, 0x16, 0xa5, 0xcd, 0x7f, 0x26, 0x89, 0xd5, 0xc4, 0x2d, 0xb5, 0x6b, 0x78, 0xca, 0x1d, 0xd5, 0xe8, 0x62, 0x9a, 0xf0, 0x59, 0x39, 0xcf, 0x85, 0x9f, 0x21, 0x32, 0x74, 0x16, 0x72, 0x6c, 0x55, 0xe9, 0x66, 0x13, 0xbf, 0x4a, 0x77, 0xcf, 0x94, 0xcc, 0x16, 0xda, 0x26, 0x91, 0x90, 0xd7, 0xdf, 0x72, 0x2d, 0x53, 0xa4, 0x26, 0x7d, 0x05, 0x11, 0xd0, 0xd7, 0x5f, 0xea, 0xdf, 0xb8, 0x1f, 0x1b, 0x3e, 0xbc, 0xfe, 0x9c, 0x9a, 0xff, 0x56, 0x1c, 0x92, 0x74, 0xbf, 0x98, 0x84, 0xdc, 0xde, 0x2b, 0xbb, 0x55, 0x65, 0xbd, 0xb6, 0xbf, 0xba, 0x55, 0x95, 0x62, 0xa8, 0x00, 0x40, 0x05, 0xd7, 0xb6, 0x6a, 0x95, 0x3d, 0x29, 0xee, 0x3f, 0x6f, 0xee, 0xec, 0x5d, 0xbc, 0x20, 0x25, 0x7c, 0xc0, 0x3e, 0x13, 0x24, 0xc3, 0x06, 0xe7, 0x97, 0xa5, 0x14, 0x92, 0x20, 0xcf, 0x08, 0x36, 0x6f, 0x56, 0xd7, 0x2f, 0x5e, 0x90, 0xd2, 0xbd, 0x92, 0xf3, 0xcb, 0xd2, 0x38, 0x9a, 0x80, 0x2c, 0x95, 0xac, 0xd6, 0x6a, 0x5b, 0x52, 0xc6, 0xe7, 0xac, 0xef, 0xc9, 0x9b, 0x3b, 0x1b, 0x52, 0xd6, 0xe7, 0xdc, 0x90, 0x6b, 0xfb, 0xbb, 0x12, 0xf8, 0x0c, 0xdb, 0xd5, 0x7a, 0xbd, 0xb2, 0x51, 0x95, 0x72, 0xbe, 0xc5, 0xea, 0x2b, 0x7b, 0xd5, 0xba, 0x94, 0xef, 0x71, 0xeb, 0xfc, 0xb2, 0x34, 0xe1, 0xbf, 0xa2, 0xba, 0xb3, 0xbf, 0x2d, 0x15, 0xd0, 0x14, 0x4c, 0xb0, 0x57, 0x08, 0x27, 0x26, 0xfb, 0x44, 0x17, 0x2f, 0x48, 0x52, 0xe0, 0x08, 0x63, 0x99, 0xea, 0x11, 0x5c, 0xbc, 0x20, 0xa1, 0xf9, 0x35, 0x48, 0xd1, 0xec, 0x42, 0x08, 0x0a, 0x5b, 0x95, 0xd5, 0xea, 0x96, 0x52, 0xdb, 0xdd, 0xdb, 0xac, 0xed, 0x54, 0xb6, 0xa4, 0x58, 0x20, 0x93, 0xab, 0x9f, 0xde, 0xdf, 0x94, 0xab, 0xeb, 0x52, 0x3c, 0x2c, 0xdb, 0xad, 0x56, 0xf6, 0xaa, 0xeb, 0x52, 0x62, 0x5e, 0x83, 0x99, 0x61, 0xfb, 0xe4, 0xd0, 0x95, 0x11, 0x9a, 0xe2, 0xf8, 0x31, 0x53, 0x4c, 0xb9, 0x06, 0xa6, 0xf8, 0xcb, 0x31, 0x98, 0x1e, 0x52, 0x2b, 0x86, 0xbe, 0xe4, 0x25, 0x48, 0xb1, 0x14, 0x65, 0xd5, 0xf3, 0x99, 0xa1, 0x45, 0x87, 0x26, 0xec, 0x40, 0x05, 0xa5, 0xb8, 0x70, 0x07, 0x91, 0x38, 0xa6, 0x83, 0x20, 0x14, 0x03, 0x4e, 0xbe, 0x16, 0x83, 0xe2, 0x71, 0xdc, 0x11, 0x1b, 0x45, 0xbc, 0x67, 0xa3, 0xb8, 0xda, 0xef, 0xc0, 0xb9, 0xe3, 0xc7, 0x30, 0xe0, 0xc5, 0x5b, 0x31, 0x38, 0x35, 0xbc, 0xd1, 0x1a, 0xea, 0xc3, 0xa7, 0x20, 0xdd, 0xc1, 0xde, 0x81, 0x25, 0x9a, 0x8d, 0xa7, 0x86, 0x94, 0x30, 0xa2, 0xee, 0x8f, 0x15, 0x47, 0x85, 0x6b, 0x60, 0xe2, 0xb8, 0x6e, 0x89, 0x79, 0x33, 0xe0, 0xe9, 0xe7, 0xe3, 0xf0, 0xc8, 0x50, 0xf2, 0xa1, 0x8e, 0x3e, 0x06, 0xa0, 0x9b, 0x76, 0xd7, 0x63, 0x0d, 0x05, 0xdb, 0x9f, 0xb2, 0x54, 0x42, 0xd7, 0x3e, 0xd9, 0x7b, 0xba, 0x9e, 0xaf, 0x4f, 0x50, 0x3d, 0x30, 0x11, 0x35, 0xb8, 0x1c, 0x38, 0x9a, 0xa4, 0x8e, 0x96, 0x8e, 0x19, 0xe9, 0x40, 0xad, 0x7e, 0x01, 0x24, 0xcd, 0xd0, 0xb1, 0xe9, 0x29, 0xae, 0xe7, 0x60, 0xb5, 0xa3, 0x9b, 0x6d, 0xba, 0x01, 0x67, 0xca, 0xa9, 0x96, 0x6a, 0xb8, 0x58, 0x9e, 0x64, 0xea, 0xba, 0xd0, 0x12, 0x04, 0xad, 0x71, 0x4e, 0x08, 0x91, 0xee, 0x41, 0x30, 0xb5, 0x8f, 0x98, 0xff, 0x66, 0x06, 0x72, 0xa1, 0xb6, 0x14, 0x9d, 0x83, 0xfc, 0x2d, 0xf5, 0x8e, 0xaa, 0x88, 0xa3, 0x06, 0x8b, 0x44, 0x8e, 0xc8, 0x76, 0xf9, 0x71, 0xe3, 0x05, 0x98, 0xa1, 0x26, 0x56, 0xd7, 0xc3, 0x8e, 0xa2, 0x19, 0xaa, 0xeb, 0xd2, 0xa0, 0x65, 0xa8, 0x29, 0x22, 0xba, 0x1a, 0x51, 0xad, 0x09, 0x0d, 0x5a, 0x81, 0x69, 0x8a, 0xe8, 0x74, 0x0d, 0x4f, 0xb7, 0x0d, 0xac, 0x90, 0xc3, 0x8f, 0x4b, 0x37, 0x62, 0xdf, 0xb3, 0x29, 0x62, 0xb1, 0xcd, 0x0d, 0x88, 0x47, 0x2e, 0x5a, 0x87, 0xc7, 0x28, 0xac, 0x8d, 0x4d, 0xec, 0xa8, 0x1e, 0x56, 0xf0, 0xe7, 0xba, 0xaa, 0xe1, 0x2a, 0xaa, 0xd9, 0x54, 0x0e, 0x54, 0xf7, 0xa0, 0x38, 0x43, 0x08, 0x56, 0xe3, 0xc5, 0x98, 0x7c, 0x86, 0x18, 0x6e, 0x70, 0xbb, 0x2a, 0x35, 0xab, 0x98, 0xcd, 0xeb, 0xaa, 0x7b, 0x80, 0xca, 0x70, 0x8a, 0xb2, 0xb8, 0x9e, 0xa3, 0x9b, 0x6d, 0x45, 0x3b, 0xc0, 0xda, 0x6d, 0xa5, 0xeb, 0xb5, 0x2e, 0x17, 0x1f, 0x0d, 0xbf, 0x9f, 0x7a, 0x58, 0xa7, 0x36, 0x6b, 0xc4, 0x64, 0xdf, 0x6b, 0x5d, 0x46, 0x75, 0xc8, 0x93, 0xc9, 0xe8, 0xe8, 0xf7, 0xb0, 0xd2, 0xb2, 0x1c, 0x5a, 0x59, 0x0a, 0x43, 0x56, 0x76, 0x28, 0x82, 0x8b, 0x35, 0x0e, 0xd8, 0xb6, 0x9a, 0xb8, 0x9c, 0xaa, 0xef, 0x56, 0xab, 0xeb, 0x72, 0x4e, 0xb0, 0x5c, 0xb3, 0x1c, 0x92, 0x50, 0x6d, 0xcb, 0x0f, 0x70, 0x8e, 0x25, 0x54, 0xdb, 0x12, 0xe1, 0x5d, 0x81, 0x69, 0x4d, 0x63, 0x63, 0xd6, 0x35, 0x85, 0x1f, 0x51, 0xdc, 0xa2, 0xd4, 0x13, 0x2c, 0x4d, 0xdb, 0x60, 0x06, 0x3c, 0xc7, 0x5d, 0x74, 0x05, 0x1e, 0x09, 0x82, 0x15, 0x06, 0x4e, 0x0d, 0x8c, 0xb2, 0x1f, 0xba, 0x02, 0xd3, 0xf6, 0xe1, 0x20, 0x10, 0xf5, 0xbc, 0xd1, 0x3e, 0xec, 0x87, 0x5d, 0x82, 0x19, 0xfb, 0xc0, 0x1e, 0xc4, 0x4d, 0x87, 0x71, 0xc8, 0x3e, 0xb0, 0xfb, 0x81, 0x4f, 0xd2, 0xf3, 0xaa, 0x83, 0x35, 0xd5, 0xc3, 0xcd, 0xe2, 0xe9, 0xb0, 0x79, 0x48, 0x81, 0x96, 0x40, 0xd2, 0x34, 0x05, 0x9b, 0x6a, 0xc3, 0xc0, 0x8a, 0xea, 0x60, 0x53, 0x75, 0x8b, 0x67, 0xc3, 0xc6, 0x05, 0x4d, 0xab, 0x52, 0x6d, 0x85, 0x2a, 0xd1, 0xb3, 0x30, 0x65, 0x35, 0x6e, 0x69, 0x2c, 0x25, 0x15, 0xdb, 0xc1, 0x2d, 0xfd, 0xd5, 0xe2, 0x13, 0x34, 0xbe, 0x93, 0x44, 0x41, 0x13, 0x72, 0x97, 0x8a, 0xd1, 0x33, 0x20, 0x69, 0xee, 0x81, 0xea, 0xd8, 0xb4, 0x27, 0x70, 0x6d, 0x55, 0xc3, 0xc5, 0x27, 0x99, 0x29, 0x93, 0xef, 0x08, 0x31, 0x59, 0x12, 0xee, 0x5d, 0xbd, 0xe5, 0x09, 0xc6, 0xa7, 0xd9, 0x92, 0xa0, 0x32, 0xce, 0xb6, 0x00, 0x12, 0x09, 0x45, 0xcf, 0x8b, 0x17, 0xa8, 0x59, 0xc1, 0x3e, 0xb0, 0xc3, 0xef, 0x7d, 0x1c, 0x26, 0x88, 0x65, 0xf0, 0xd2, 0x67, 0x58, 0x3f, 0x63, 0x1f, 0x84, 0xde, 0xf8, 0x91, 0xb5, 0x96, 0xf3, 0x65, 0xc8, 0x87, 0xf3, 0x13, 0x65, 0x81, 0x65, 0xa8, 0x14, 0x23, 0xb5, 0x7e, 0xad, 0xb6, 0x4e, 0xaa, 0xf4, 0x67, 0xab, 0x52, 0x9c, 0x74, 0x0b, 0x5b, 0x9b, 0x7b, 0x55, 0x45, 0xde, 0xdf, 0xd9, 0xdb, 0xdc, 0xae, 0x4a, 0x89, 0x70, 0x5b, 0xfa, 0x9d, 0x38, 0x14, 0x7a, 0x4f, 0x18, 0xe8, 0xff, 0xc3, 0x69, 0x71, 0x1d, 0xe0, 0x62, 0x4f, 0xb9, 0xab, 0x3b, 0x74, 0xc9, 0x74, 0x54, 0xd6, 0x61, 0xfb, 0x93, 0x36, 0xc3, 0xad, 0xea, 0xd8, 0x7b, 0x59, 0x77, 0xc8, 0x82, 0xe8, 0xa8, 0x1e, 0xda, 0x82, 0xb3, 0xa6, 0xa5, 0xb8, 0x9e, 0x6a, 0x36, 0x55, 0xa7, 0xa9, 0x04, 0x17, 0x31, 0x8a, 0xaa, 0x69, 0xd8, 0x75, 0x2d, 0x56, 0xaa, 0x7c, 0x96, 0x4f, 0x98, 0x56, 0x9d, 0x1b, 0x07, 0x7b, 0x78, 0x85, 0x9b, 0xf6, 0x25, 0x58, 0xe2, 0xb8, 0x04, 0x7b, 0x14, 0xb2, 0x1d, 0xd5, 0x56, 0xb0, 0xe9, 0x39, 0x87, 0xb4, 0xaf, 0xcc, 0xc8, 0x99, 0x8e, 0x6a, 0x57, 0xc9, 0xf3, 0xc7, 0xd3, 0xde, 0x7f, 0x3f, 0x01, 0xf9, 0x70, 0x6f, 0x49, 0x5a, 0x75, 0x8d, 0xd6, 0x91, 0x18, 0xdd, 0x69, 0x1e, 0x7f, 0x68, 0x27, 0xba, 0xb8, 0x46, 0x0a, 0x4c, 0x39, 0xcd, 0x3a, 0x3e, 0x99, 0x21, 0x49, 0x71, 0x27, 0x7b, 0x0b, 0x66, 0xa7, 0x98, 0x8c, 0xcc, 0x9f, 0xd0, 0x06, 0xa4, 0x6f, 0xb9, 0x94, 0x3b, 0x4d, 0xb9, 0x9f, 0x78, 0x38, 0xf7, 0x8d, 0x3a, 0x25, 0xcf, 0xde, 0xa8, 0x2b, 0x3b, 0x35, 0x79, 0xbb, 0xb2, 0x25, 0x73, 0x38, 0x3a, 0x03, 0x49, 0x43, 0xbd, 0x77, 0xd8, 0x5b, 0x8a, 0xa8, 0x68, 0xd4, 0xc0, 0x9f, 0x81, 0xe4, 0x5d, 0xac, 0xde, 0xee, 0x2d, 0x00, 0x54, 0xf4, 0x11, 0xa6, 0xfe, 0x12, 0xa4, 0x68, 0xbc, 0x10, 0x00, 0x8f, 0x98, 0x34, 0x86, 0x32, 0x90, 0x5c, 0xab, 0xc9, 0x24, 0xfd, 0x25, 0xc8, 0x33, 0xa9, 0xb2, 0xbb, 0x59, 0x5d, 0xab, 0x4a, 0xf1, 0xf9, 0x15, 0x48, 0xb3, 0x20, 0x90, 0xa5, 0xe1, 0x87, 0x41, 0x1a, 0xe3, 0x8f, 0x9c, 0x23, 0x26, 0xb4, 0xfb, 0xdb, 0xab, 0x55, 0x59, 0x8a, 0x87, 0xa7, 0xd7, 0x85, 0x7c, 0xb8, 0xad, 0xfc, 0x78, 0x72, 0xea, 0xef, 0x62, 0x90, 0x0b, 0xb5, 0x89, 0xa4, 0x41, 0x51, 0x0d, 0xc3, 0xba, 0xab, 0xa8, 0x86, 0xae, 0xba, 0x3c, 0x29, 0x80, 0x8a, 0x2a, 0x44, 0x32, 0xea, 0xa4, 0x7d, 0x2c, 0xce, 0xbf, 0x19, 0x03, 0xa9, 0xbf, 0xc5, 0xec, 0x73, 0x30, 0xf6, 0x13, 0x75, 0xf0, 0x8d, 0x18, 0x14, 0x7a, 0xfb, 0xca, 0x3e, 0xf7, 0xce, 0xfd, 0x44, 0xdd, 0x7b, 0x27, 0x0e, 0x13, 0x3d, 0xdd, 0xe4, 0xa8, 0xde, 0x7d, 0x0e, 0xa6, 0xf4, 0x26, 0xee, 0xd8, 0x96, 0x87, 0x4d, 0xed, 0x50, 0x31, 0xf0, 0x1d, 0x6c, 0x14, 0xe7, 0xe9, 0x46, 0xb1, 0xf4, 0xf0, 0x7e, 0x75, 0x71, 0x33, 0xc0, 0x6d, 0x11, 0x58, 0x79, 0x7a, 0x73, 0xbd, 0xba, 0xbd, 0x5b, 0xdb, 0xab, 0xee, 0xac, 0xbd, 0xa2, 0xec, 0xef, 0xfc, 0xf4, 0x4e, 0xed, 0xe5, 0x1d, 0x59, 0xd2, 0xfb, 0xcc, 0x3e, 0xc2, 0xa5, 0xbe, 0x0b, 0x52, 0xbf, 0x53, 0xe8, 0x34, 0x0c, 0x73, 0x4b, 0x1a, 0x43, 0xd3, 0x30, 0xb9, 0x53, 0x53, 0xea, 0x9b, 0xeb, 0x55, 0xa5, 0x7a, 0xed, 0x5a, 0x75, 0x6d, 0xaf, 0xce, 0x0e, 0xf0, 0xbe, 0xf5, 0x5e, 0xef, 0xa2, 0x7e, 0x3d, 0x01, 0xd3, 0x43, 0x3c, 0x41, 0x15, 0x7e, 0x76, 0x60, 0xc7, 0x99, 0xe7, 0x47, 0xf1, 0x7e, 0x91, 0x94, 0xfc, 0x5d, 0xd5, 0xf1, 0xf8, 0x51, 0xe3, 0x19, 0x20, 0x51, 0x32, 0x3d, 0xbd, 0xa5, 0x63, 0x87, 0xdf, 0x77, 0xb0, 0x03, 0xc5, 0x64, 0x20, 0x67, 0x57, 0x1e, 0xff, 0x0f, 0x90, 0x6d, 0xb9, 0xba, 0xa7, 0xdf, 0xc1, 0x8a, 0x6e, 0x8a, 0xcb, 0x11, 0x72, 0xc0, 0x48, 0xca, 0x92, 0xd0, 0x6c, 0x9a, 0x9e, 0x6f, 0x6d, 0xe2, 0xb6, 0xda, 0x67, 0x4d, 0x36, 0xf0, 0x84, 0x2c, 0x09, 0x8d, 0x6f, 0x7d, 0x0e, 0xf2, 0x4d, 0xab, 0x4b, 0xba, 0x2e, 0x66, 0x47, 0xea, 0x45, 0x4c, 0xce, 0x31, 0x99, 0x6f, 0xc2, 0xfb, 0xe9, 0xe0, 0x56, 0x26, 0x2f, 0xe7, 0x98, 0x8c, 0x99, 0x3c, 0x0d, 0x93, 0x6a, 0xbb, 0xed, 0x10, 0x72, 0x41, 0xc4, 0x4e, 0x08, 0x05, 0x5f, 0x4c, 0x0d, 0x67, 0x6f, 0x40, 0x46, 0xc4, 0x81, 0x94, 0x64, 0x12, 0x09, 0xc5, 0x66, 0x37, 0x73, 0xf1, 0x85, 0xac, 0x9c, 0x31, 0x85, 0xf2, 0x1c, 0xe4, 0x75, 0x57, 0x09, 0x2e, 0x99, 0xe3, 0x73, 0xf1, 0x85, 0x8c, 0x9c, 0xd3, 0x5d, 0xff, 0x82, 0x6e, 0xfe, 0xad, 0x38, 0x14, 0x7a, 0x2f, 0xc9, 0xd1, 0x3a, 0x64, 0x0c, 0x4b, 0x53, 0x69, 0x6a, 0xb1, 0x5f, 0x68, 0x16, 0x22, 0xee, 0xd5, 0x17, 0xb7, 0xb8, 0xbd, 0xec, 0x23, 0x67, 0xff, 0x29, 0x06, 0x19, 0x21, 0x46, 0xa7, 0x20, 0x69, 0xab, 0xde, 0x01, 0xa5, 0x4b, 0xad, 0xc6, 0xa5, 0x98, 0x4c, 0x9f, 0x89, 0xdc, 0xb5, 0x55, 0x93, 0xa6, 0x00, 0x97, 0x93, 0x67, 0x32, 0xaf, 0x06, 0x56, 0x9b, 0xf4, 0xf8, 0x61, 0x75, 0x3a, 0xd8, 0xf4, 0x5c, 0x31, 0xaf, 0x5c, 0xbe, 0xc6, 0xc5, 0xe8, 0x39, 0x98, 0xf2, 0x1c, 0x55, 0x37, 0x7a, 0x6c, 0x93, 0xd4, 0x56, 0x12, 0x0a, 0xdf, 0xb8, 0x0c, 0x67, 0x04, 0x6f, 0x13, 0x7b, 0xaa, 0x76, 0x80, 0x9b, 0x01, 0x28, 0x4d, 0x6f, 0x60, 0x4f, 0x73, 0x83, 0x75, 0xae, 0x17, 0xd8, 0xf9, 0xef, 0xc5, 0x60, 0x4a, 0x1c, 0x98, 0x9a, 0x7e, 0xb0, 0xb6, 0x01, 0x54, 0xd3, 0xb4, 0xbc, 0x70, 0xb8, 0x06, 0x53, 0x79, 0x00, 0xb7, 0x58, 0xf1, 0x41, 0x72, 0x88, 0x60, 0xb6, 0x03, 0x10, 0x68, 0x8e, 0x0d, 0xdb, 0x59, 0xc8, 0xf1, 0x5f, 0x40, 0xe8, 0xcf, 0x68, 0xec, 0x88, 0x0d, 0x4c, 0x44, 0x4e, 0x56, 0x68, 0x06, 0x52, 0x0d, 0xdc, 0xd6, 0x4d, 0x7e, 0xaf, 0xc9, 0x1e, 0xc4, 0x5d, 0x6d, 0xd2, 0xbf, 0xab, 0x5d, 0xbd, 0x09, 0xd3, 0x9a, 0xd5, 0xe9, 0x77, 0x77, 0x55, 0xea, 0x3b, 0xe6, 0xbb, 0xd7, 0x63, 0x9f, 0x85, 0xa0, 0xc5, 0xfc, 0x72, 0x3c, 0xb1, 0xb1, 0xbb, 0xfa, 0xd5, 0xf8, 0xec, 0x06, 0xc3, 0xed, 0x8a, 0x61, 0xca, 0xb8, 0x65, 0x60, 0x8d, 0xb8, 0x0e, 0x3f, 0x7c, 0x0a, 0x9e, 0x6f, 0xeb, 0xde, 0x41, 0xb7, 0xb1, 0xa8, 0x59, 0x9d, 0xa5, 0xb6, 0xd5, 0xb6, 0x82, 0x9f, 0x0d, 0xc9, 0x13, 0x7d, 0xa0, 0xff, 0xf1, 0x9f, 0x0e, 0xb3, 0xbe, 0x74, 0x36, 0xf2, 0x77, 0xc6, 0xf2, 0x0e, 0x4c, 0x73, 0x63, 0x85, 0xfe, 0x76, 0xc1, 0x8e, 0x10, 0xe8, 0xa1, 0xf7, 0x3f, 0xc5, 0x6f, 0xbc, 0x4b, 0x6b, 0xb5, 0x3c, 0xc5, 0xa1, 0x44, 0xc7, 0x4e, 0x19, 0x65, 0x19, 0x1e, 0xe9, 0xe1, 0x63, 0xeb, 0x12, 0x3b, 0x11, 0x8c, 0xdf, 0xe1, 0x8c, 0xd3, 0x21, 0xc6, 0x3a, 0x87, 0x96, 0xd7, 0x60, 0xe2, 0x24, 0x5c, 0xff, 0xc0, 0xb9, 0xf2, 0x38, 0x4c, 0xb2, 0x01, 0x93, 0x94, 0x44, 0xeb, 0xba, 0x9e, 0xd5, 0xa1, 0x9b, 0xde, 0xc3, 0x69, 0xfe, 0xf1, 0x5d, 0xb6, 0x50, 0x0a, 0x04, 0xb6, 0xe6, 0xa3, 0xca, 0x65, 0xa0, 0x3f, 0xd7, 0x34, 0xb1, 0x66, 0x44, 0x30, 0xbc, 0xcd, 0x1d, 0xf1, 0xed, 0xcb, 0x9f, 0x81, 0x19, 0xf2, 0x3f, 0xdd, 0x93, 0xc2, 0x9e, 0x44, 0xdf, 0x76, 0x15, 0xbf, 0xf7, 0x1a, 0x5b, 0x8b, 0xd3, 0x3e, 0x41, 0xc8, 0xa7, 0xd0, 0x2c, 0xb6, 0xb1, 0xe7, 0x61, 0xc7, 0x55, 0x54, 0x63, 0x98, 0x7b, 0xa1, 0xeb, 0x82, 0xe2, 0x17, 0xdf, 0xeb, 0x9d, 0xc5, 0x0d, 0x86, 0xac, 0x18, 0x46, 0x79, 0x1f, 0x4e, 0x0f, 0xc9, 0x8a, 0x11, 0x38, 0x5f, 0xe7, 0x9c, 0x33, 0x03, 0x99, 0x41, 0x68, 0x77, 0x41, 0xc8, 0xfd, 0xb9, 0x1c, 0x81, 0xf3, 0xf7, 0x38, 0x27, 0xe2, 0x58, 0x31, 0xa5, 0x84, 0xf1, 0x06, 0x4c, 0xdd, 0xc1, 0x4e, 0xc3, 0x72, 0xf9, 0x15, 0xcd, 0x08, 0x74, 0x6f, 0x70, 0xba, 0x49, 0x0e, 0xa4, 0x77, 0x36, 0x84, 0xeb, 0x0a, 0x64, 0x5a, 0xaa, 0x86, 0x47, 0xa0, 0xf8, 0x12, 0xa7, 0x18, 0x27, 0xf6, 0x04, 0x5a, 0x81, 0x7c, 0xdb, 0xe2, 0x65, 0x29, 0x1a, 0xfe, 0x26, 0x87, 0xe7, 0x04, 0x86, 0x53, 0xd8, 0x96, 0xdd, 0x35, 0x48, 0xcd, 0x8a, 0xa6, 0xf8, 0x7d, 0x41, 0x21, 0x30, 0x9c, 0xe2, 0x04, 0x61, 0xfd, 0x03, 0x41, 0xe1, 0x86, 0xe2, 0xf9, 0x12, 0xe4, 0x2c, 0xd3, 0x38, 0xb4, 0xcc, 0x51, 0x9c, 0xf8, 0x43, 0xce, 0x00, 0x1c, 0x42, 0x08, 0xae, 0x42, 0x76, 0xd4, 0x89, 0xf8, 0xa3, 0xf7, 0xc4, 0xf2, 0x10, 0x33, 0xb0, 0x01, 0x93, 0x62, 0x83, 0xd2, 0x2d, 0x73, 0x04, 0x8a, 0x3f, 0xe6, 0x14, 0x85, 0x10, 0x8c, 0x0f, 0xc3, 0xc3, 0xae, 0xd7, 0xc6, 0xa3, 0x90, 0xbc, 0x25, 0x86, 0xc1, 0x21, 0x3c, 0x94, 0x0d, 0x6c, 0x6a, 0x07, 0xa3, 0x31, 0x7c, 0x45, 0x84, 0x52, 0x60, 0x08, 0xc5, 0x1a, 0x4c, 0x74, 0x54, 0xc7, 0x3d, 0x50, 0x8d, 0x91, 0xa6, 0xe3, 0x4f, 0x38, 0x47, 0xde, 0x07, 0xf1, 0x88, 0x74, 0xcd, 0x93, 0xd0, 0x7c, 0x55, 0x44, 0x24, 0x04, 0xe3, 0x4b, 0xcf, 0xf5, 0xe8, 0x7d, 0xd6, 0x49, 0xd8, 0xbe, 0x26, 0x96, 0x1e, 0xc3, 0x6e, 0x87, 0x19, 0xaf, 0x42, 0xd6, 0xd5, 0xef, 0x8d, 0x44, 0xf3, 0xa7, 0x62, 0xa6, 0x29, 0x80, 0x80, 0x5f, 0x81, 0x33, 0x43, 0xcb, 0xc4, 0x08, 0x64, 0x7f, 0xc6, 0xc9, 0x4e, 0x0d, 0x29, 0x15, 0x7c, 0x4b, 0x38, 0x29, 0xe5, 0x9f, 0x8b, 0x2d, 0x01, 0xf7, 0x71, 0xed, 0x92, 0x83, 0x82, 0xab, 0xb6, 0x4e, 0x16, 0xb5, 0xbf, 0x10, 0x51, 0x63, 0xd8, 0x9e, 0xa8, 0xed, 0xc1, 0x29, 0xce, 0x78, 0xb2, 0x79, 0xfd, 0xba, 0xd8, 0x58, 0x19, 0x7a, 0xbf, 0x77, 0x76, 0x7f, 0x06, 0x66, 0xfd, 0x70, 0x8a, 0x8e, 0xd4, 0x55, 0x3a, 0xaa, 0x3d, 0x02, 0xf3, 0x37, 0x38, 0xb3, 0xd8, 0xf1, 0xfd, 0x96, 0xd6, 0xdd, 0x56, 0x6d, 0x42, 0x7e, 0x13, 0x8a, 0x82, 0xbc, 0x6b, 0x3a, 0x58, 0xb3, 0xda, 0xa6, 0x7e, 0x0f, 0x37, 0x47, 0xa0, 0xfe, 0xcb, 0xbe, 0xa9, 0xda, 0x0f, 0xc1, 0x09, 0xf3, 0x26, 0x48, 0x7e, 0xaf, 0xa2, 0xe8, 0x1d, 0xdb, 0x72, 0xbc, 0x08, 0xc6, 0x6f, 0x8a, 0x99, 0xf2, 0x71, 0x9b, 0x14, 0x56, 0xae, 0x42, 0x81, 0x3e, 0x8e, 0x9a, 0x92, 0x7f, 0xc5, 0x89, 0x26, 0x02, 0x14, 0xdf, 0x38, 0x34, 0xab, 0x63, 0xab, 0xce, 0x28, 0xfb, 0xdf, 0x5f, 0x8b, 0x8d, 0x83, 0x43, 0xf8, 0xc6, 0xe1, 0x1d, 0xda, 0x98, 0x54, 0xfb, 0x11, 0x18, 0xbe, 0x25, 0x36, 0x0e, 0x81, 0xe1, 0x14, 0xa2, 0x61, 0x18, 0x81, 0xe2, 0x6f, 0x04, 0x85, 0xc0, 0x10, 0x8a, 0x4f, 0x07, 0x85, 0xd6, 0xc1, 0x6d, 0xdd, 0xf5, 0x1c, 0xd6, 0x07, 0x3f, 0x9c, 0xea, 0xdb, 0xef, 0xf5, 0x36, 0x61, 0x72, 0x08, 0x5a, 0xbe, 0x01, 0x93, 0x7d, 0x2d, 0x06, 0x8a, 0xfa, 0xf6, 0xa3, 0xf8, 0x73, 0x1f, 0xf0, 0xcd, 0xa8, 0xb7, 0xc3, 0x28, 0x6f, 0x91, 0x79, 0xef, 0xed, 0x03, 0xa2, 0xc9, 0x5e, 0xfb, 0xc0, 0x9f, 0xfa, 0x9e, 0x36, 0xa0, 0x7c, 0x0d, 0x26, 0x7a, 0x7a, 0x80, 0x68, 0xaa, 0x9f, 0xe7, 0x54, 0xf9, 0x70, 0x0b, 0x50, 0x5e, 0x81, 0x24, 0xa9, 0xe7, 0xd1, 0xf0, 0x5f, 0xe0, 0x70, 0x6a, 0x5e, 0xfe, 0x24, 0x64, 0x44, 0x1d, 0x8f, 0x86, 0xfe, 0x22, 0x87, 0xfa, 0x10, 0x02, 0x17, 0x35, 0x3c, 0x1a, 0xfe, 0x4b, 0x02, 0x2e, 0x20, 0x04, 0x3e, 0x7a, 0x08, 0xff, 0xfe, 0x97, 0x93, 0x7c, 0x1f, 0x16, 0xb1, 0xbb, 0x0a, 0xe3, 0xbc, 0x78, 0x47, 0xa3, 0x3f, 0xcf, 0x5f, 0x2e, 0x10, 0xe5, 0x4b, 0x90, 0x1a, 0x31, 0xe0, 0xbf, 0xc2, 0xa1, 0xcc, 0xbe, 0xbc, 0x06, 0xb9, 0x50, 0xc1, 0x8e, 0x86, 0xff, 0x2a, 0x87, 0x87, 0x51, 0xc4, 0x75, 0x5e, 0xb0, 0xa3, 0x09, 0x7e, 0x4d, 0xb8, 0xce, 0x11, 0x24, 0x6c, 0xa2, 0x56, 0x47, 0xa3, 0x7f, 0x5d, 0x44, 0x5d, 0x40, 0xca, 0x2f, 0x41, 0xd6, 0xdf, 0x7f, 0xa3, 0xf1, 0xbf, 0xc1, 0xf1, 0x01, 0x86, 0x44, 0x20, 0xb4, 0xff, 0x47, 0x53, 0xfc, 0xa6, 0x88, 0x40, 0x08, 0x45, 0x96, 0x51, 0x7f, 0x4d, 0x8f, 0x66, 0xfa, 0x2d, 0xb1, 0x8c, 0xfa, 0x4a, 0x3a, 0x99, 0x4d, 0xba, 0x0d, 0x46, 0x53, 0xfc, 0xb6, 0x98, 0x4d, 0x6a, 0x4f, 0xdc, 0xe8, 0x2f, 0x92, 0xd1, 0x1c, 0xbf, 0x2b, 0xdc, 0xe8, 0xab, 0x91, 0xe5, 0x5d, 0x40, 0x83, 0x05, 0x32, 0x9a, 0xef, 0x0b, 0x9c, 0x6f, 0x6a, 0xa0, 0x3e, 0x96, 0x5f, 0x86, 0x53, 0xc3, 0x8b, 0x63, 0x34, 0xeb, 0x17, 0x3f, 0xe8, 0x3b, 0xce, 0x84, 0x6b, 0x63, 0x79, 0x2f, 0xd8, 0x65, 0xc3, 0x85, 0x31, 0x9a, 0xf6, 0xf5, 0x0f, 0x7a, 0x37, 0xda, 0x70, 0x5d, 0x2c, 0x57, 0x00, 0x82, 0x9a, 0x14, 0xcd, 0xf5, 0x06, 0xe7, 0x0a, 0x81, 0xc8, 0xd2, 0xe0, 0x25, 0x29, 0x1a, 0xff, 0x25, 0xb1, 0x34, 0x38, 0x82, 0x2c, 0x0d, 0x51, 0x8d, 0xa2, 0xd1, 0x6f, 0x8a, 0xa5, 0x21, 0x20, 0xe5, 0xab, 0x90, 0x31, 0xbb, 0x86, 0x41, 0x72, 0x0b, 0x3d, 0xfc, 0x73, 0xa6, 0xe2, 0xbf, 0x7d, 0xc8, 0xc1, 0x02, 0x50, 0x5e, 0x81, 0x14, 0xee, 0x34, 0x70, 0x33, 0x0a, 0xf9, 0xef, 0x1f, 0x8a, 0xfd, 0x84, 0x58, 0x97, 0x5f, 0x02, 0x60, 0x87, 0x69, 0xfa, 0x2b, 0x51, 0x04, 0xf6, 0x3f, 0x3e, 0xe4, 0x5f, 0x4a, 0x04, 0x90, 0x80, 0x80, 0x7d, 0x77, 0xf1, 0x70, 0x82, 0xf7, 0x7a, 0x09, 0xe8, 0x01, 0xfc, 0x0a, 0x8c, 0xdf, 0x72, 0x2d, 0xd3, 0x53, 0xdb, 0x51, 0xe8, 0xff, 0xe4, 0x68, 0x61, 0x4f, 0x02, 0xd6, 0xb1, 0x1c, 0xec, 0xa9, 0x6d, 0x37, 0x0a, 0xfb, 0x5f, 0x1c, 0xeb, 0x03, 0x08, 0x58, 0x53, 0x5d, 0x6f, 0x94, 0x71, 0xff, 0xb7, 0x00, 0x0b, 0x00, 0x71, 0x9a, 0xfc, 0x7f, 0x1b, 0x1f, 0x46, 0x61, 0xdf, 0x17, 0x4e, 0x73, 0xfb, 0xf2, 0x27, 0x21, 0x4b, 0xfe, 0x65, 0x5f, 0x0f, 0x45, 0x80, 0xff, 0x87, 0x83, 0x03, 0x04, 0x79, 0xb3, 0xeb, 0x35, 0x3d, 0x3d, 0x3a, 0xd8, 0xff, 0xcb, 0x67, 0x5a, 0xd8, 0x97, 0x2b, 0x90, 0x73, 0xbd, 0x66, 0xb3, 0xcb, 0x3b, 0x9a, 0x08, 0xf8, 0x0f, 0x3f, 0xf4, 0x0f, 0xb9, 0x3e, 0x66, 0xf5, 0xdc, 0xf0, 0xcb, 0x3a, 0xd8, 0xb0, 0x36, 0x2c, 0x76, 0x4d, 0x07, 0xbf, 0x93, 0x82, 0xa2, 0x66, 0x75, 0x1a, 0x96, 0xbb, 0x64, 0x62, 0xdd, 0x3b, 0xc0, 0xce, 0x92, 0x65, 0x72, 0x5b, 0x94, 0xb0, 0x4c, 0x3c, 0x7b, 0xb2, 0x4b, 0xb9, 0xf9, 0x33, 0x90, 0xaa, 0x77, 0x1b, 0x8d, 0x43, 0x24, 0x41, 0xc2, 0xed, 0x36, 0xf8, 0xd7, 0x2d, 0xe4, 0xdf, 0xf9, 0xef, 0x27, 0x20, 0x57, 0x57, 0x3b, 0xb6, 0x81, 0x6b, 0x26, 0xae, 0xb5, 0x50, 0x11, 0xd2, 0x74, 0x0c, 0x2f, 0x52, 0xa3, 0xd8, 0xf5, 0x31, 0x99, 0x3f, 0xfb, 0x9a, 0x65, 0x7a, 0x53, 0x19, 0xf7, 0x35, 0xcb, 0xbe, 0xe6, 0x3c, 0xbb, 0xa8, 0xf4, 0x35, 0xe7, 0x7d, 0xcd, 0x05, 0x7a, 0x5d, 0x99, 0xf0, 0x35, 0x17, 0x7c, 0xcd, 0x0a, 0xbd, 0x8e, 0x9f, 0xf0, 0x35, 0x2b, 0xbe, 0xe6, 0x22, 0xbd, 0x80, 0x4f, 0xfa, 0x9a, 0x8b, 0xbe, 0xe6, 0x12, 0xbd, 0x77, 0x9f, 0xf2, 0x35, 0x97, 0x7c, 0xcd, 0x65, 0x7a, 0xd7, 0x8e, 0x7c, 0xcd, 0x65, 0x5f, 0x73, 0x85, 0x7e, 0xc4, 0x32, 0xee, 0x6b, 0xae, 0xa0, 0x59, 0x18, 0x67, 0x23, 0x7b, 0x81, 0xfe, 0x20, 0x3b, 0x79, 0x7d, 0x4c, 0x16, 0x82, 0x40, 0xf7, 0x22, 0xfd, 0x50, 0x25, 0x1d, 0xe8, 0x5e, 0x0c, 0x74, 0xcb, 0xf4, 0x73, 0x73, 0x29, 0xd0, 0x2d, 0x07, 0xba, 0xf3, 0xc5, 0x09, 0x32, 0xf5, 0x81, 0xee, 0x7c, 0xa0, 0xbb, 0x50, 0x2c, 0x90, 0xf8, 0x07, 0xba, 0x0b, 0x81, 0x6e, 0xa5, 0x38, 0x39, 0x17, 0x5b, 0xc8, 0x07, 0xba, 0x15, 0xf4, 0x3c, 0xe4, 0xdc, 0x6e, 0x43, 0xe1, 0xdf, 0x0f, 0xd0, 0x0f, 0x62, 0x72, 0xcb, 0xb0, 0x48, 0x32, 0x82, 0x4e, 0xea, 0xf5, 0x31, 0x19, 0xdc, 0x6e, 0x83, 0xef, 0x8d, 0xab, 0x79, 0xa0, 0x57, 0x09, 0x0a, 0xfd, 0x0c, 0x74, 0x75, 0xfd, 0xed, 0x07, 0xa5, 0xb1, 0xef, 0x3e, 0x28, 0x8d, 0xfd, 0xf3, 0x83, 0xd2, 0xd8, 0x3b, 0x0f, 0x4a, 0xb1, 0xf7, 0x1f, 0x94, 0x62, 0x3f, 0x7a, 0x50, 0x8a, 0xdd, 0x3f, 0x2a, 0xc5, 0xbe, 0x72, 0x54, 0x8a, 0x7d, 0xfd, 0xa8, 0x14, 0xfb, 0xf6, 0x51, 0x29, 0xf6, 0xf6, 0x51, 0x69, 0xec, 0xbb, 0x47, 0xa5, 0xb1, 0x77, 0x8e, 0x4a, 0xb1, 0x1f, 0x1c, 0x95, 0xc6, 0xde, 0x3f, 0x2a, 0xc5, 0x7e, 0x74, 0x54, 0x1a, 0xbb, 0xff, 0x2f, 0xa5, 0xb1, 0x46, 0x9a, 0xa6, 0xd1, 0xf9, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x69, 0xab, 0x09, 0x8d, 0x3d, 0x32, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Subby) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Subby") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Subby but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Subby but is not nil && this == nil") } if this.Sub != that1.Sub { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } return nil } func (this *Subby) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Sub != that1.Sub { return false } return true } func (this *SampleOneOf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf) if !ok { that2, ok := that.(SampleOneOf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf but is not nil && this == nil") } if that1.TestOneof == nil { if this.TestOneof != nil { return fmt.Errorf("this.TestOneof != nil && that1.TestOneof == nil") } } else if this.TestOneof == nil { return fmt.Errorf("this.TestOneof == nil && that1.TestOneof != nil") } else if err := this.TestOneof.VerboseEqual(that1.TestOneof); err != nil { return err } return nil } func (this *SampleOneOf_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field1) if !ok { that2, ok := that.(SampleOneOf_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *SampleOneOf_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field2) if !ok { that2, ok := that.(SampleOneOf_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *SampleOneOf_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field3) if !ok { that2, ok := that.(SampleOneOf_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *SampleOneOf_Field4) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field4) if !ok { that2, ok := that.(SampleOneOf_Field4) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field4") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field4 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field4 but is not nil && this == nil") } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } return nil } func (this *SampleOneOf_Field5) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field5) if !ok { that2, ok := that.(SampleOneOf_Field5) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field5") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field5 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field5 but is not nil && this == nil") } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } return nil } func (this *SampleOneOf_Field6) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field6) if !ok { that2, ok := that.(SampleOneOf_Field6) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field6") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field6 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field6 but is not nil && this == nil") } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } return nil } func (this *SampleOneOf_Field7) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field7) if !ok { that2, ok := that.(SampleOneOf_Field7) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field7") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field7 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field7 but is not nil && this == nil") } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } return nil } func (this *SampleOneOf_Field8) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field8) if !ok { that2, ok := that.(SampleOneOf_Field8) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field8") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field8 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field8 but is not nil && this == nil") } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } return nil } func (this *SampleOneOf_Field9) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field9) if !ok { that2, ok := that.(SampleOneOf_Field9) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field9") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field9 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field9 but is not nil && this == nil") } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } return nil } func (this *SampleOneOf_Field10) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field10) if !ok { that2, ok := that.(SampleOneOf_Field10) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field10") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field10 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field10 but is not nil && this == nil") } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } return nil } func (this *SampleOneOf_Field11) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field11) if !ok { that2, ok := that.(SampleOneOf_Field11) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field11") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field11 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field11 but is not nil && this == nil") } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } return nil } func (this *SampleOneOf_Field12) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field12) if !ok { that2, ok := that.(SampleOneOf_Field12) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field12") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field12 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field12 but is not nil && this == nil") } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } return nil } func (this *SampleOneOf_Field13) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field13) if !ok { that2, ok := that.(SampleOneOf_Field13) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field13") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field13 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field13 but is not nil && this == nil") } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } return nil } func (this *SampleOneOf_Field14) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field14) if !ok { that2, ok := that.(SampleOneOf_Field14) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field14") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field14 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field14 but is not nil && this == nil") } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } return nil } func (this *SampleOneOf_Field15) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field15) if !ok { that2, ok := that.(SampleOneOf_Field15) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field15") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field15 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field15 but is not nil && this == nil") } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } return nil } func (this *SampleOneOf_SubMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_SubMessage) if !ok { that2, ok := that.(SampleOneOf_SubMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_SubMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_SubMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_SubMessage but is not nil && this == nil") } if !this.SubMessage.Equal(that1.SubMessage) { return fmt.Errorf("SubMessage this(%v) Not Equal that(%v)", this.SubMessage, that1.SubMessage) } return nil } func (this *SampleOneOf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf) if !ok { that2, ok := that.(SampleOneOf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.TestOneof == nil { if this.TestOneof != nil { return false } } else if this.TestOneof == nil { return false } else if !this.TestOneof.Equal(that1.TestOneof) { return false } return true } func (this *SampleOneOf_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field1) if !ok { that2, ok := that.(SampleOneOf_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *SampleOneOf_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field2) if !ok { that2, ok := that.(SampleOneOf_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *SampleOneOf_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field3) if !ok { that2, ok := that.(SampleOneOf_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *SampleOneOf_Field4) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field4) if !ok { that2, ok := that.(SampleOneOf_Field4) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field4 != that1.Field4 { return false } return true } func (this *SampleOneOf_Field5) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field5) if !ok { that2, ok := that.(SampleOneOf_Field5) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field5 != that1.Field5 { return false } return true } func (this *SampleOneOf_Field6) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field6) if !ok { that2, ok := that.(SampleOneOf_Field6) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field6 != that1.Field6 { return false } return true } func (this *SampleOneOf_Field7) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field7) if !ok { that2, ok := that.(SampleOneOf_Field7) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field7 != that1.Field7 { return false } return true } func (this *SampleOneOf_Field8) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field8) if !ok { that2, ok := that.(SampleOneOf_Field8) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field8 != that1.Field8 { return false } return true } func (this *SampleOneOf_Field9) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field9) if !ok { that2, ok := that.(SampleOneOf_Field9) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field9 != that1.Field9 { return false } return true } func (this *SampleOneOf_Field10) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field10) if !ok { that2, ok := that.(SampleOneOf_Field10) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field10 != that1.Field10 { return false } return true } func (this *SampleOneOf_Field11) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field11) if !ok { that2, ok := that.(SampleOneOf_Field11) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field11 != that1.Field11 { return false } return true } func (this *SampleOneOf_Field12) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field12) if !ok { that2, ok := that.(SampleOneOf_Field12) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field12 != that1.Field12 { return false } return true } func (this *SampleOneOf_Field13) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field13) if !ok { that2, ok := that.(SampleOneOf_Field13) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field13 != that1.Field13 { return false } return true } func (this *SampleOneOf_Field14) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field14) if !ok { that2, ok := that.(SampleOneOf_Field14) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field14 != that1.Field14 { return false } return true } func (this *SampleOneOf_Field15) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field15) if !ok { that2, ok := that.(SampleOneOf_Field15) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } return true } func (this *SampleOneOf_SubMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_SubMessage) if !ok { that2, ok := that.(SampleOneOf_SubMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage.Equal(that1.SubMessage) { return false } return true } func (this *Subby) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&one.Subby{") s = append(s, "Sub: "+fmt.Sprintf("%#v", this.Sub)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *SampleOneOf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&one.SampleOneOf{") if this.TestOneof != nil { s = append(s, "TestOneof: "+fmt.Sprintf("%#v", this.TestOneof)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *SampleOneOf_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *SampleOneOf_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *SampleOneOf_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *SampleOneOf_Field4) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field4{` + `Field4:` + fmt.Sprintf("%#v", this.Field4) + `}`}, ", ") return s } func (this *SampleOneOf_Field5) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field5{` + `Field5:` + fmt.Sprintf("%#v", this.Field5) + `}`}, ", ") return s } func (this *SampleOneOf_Field6) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field6{` + `Field6:` + fmt.Sprintf("%#v", this.Field6) + `}`}, ", ") return s } func (this *SampleOneOf_Field7) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field7{` + `Field7:` + fmt.Sprintf("%#v", this.Field7) + `}`}, ", ") return s } func (this *SampleOneOf_Field8) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field8{` + `Field8:` + fmt.Sprintf("%#v", this.Field8) + `}`}, ", ") return s } func (this *SampleOneOf_Field9) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field9{` + `Field9:` + fmt.Sprintf("%#v", this.Field9) + `}`}, ", ") return s } func (this *SampleOneOf_Field10) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field10{` + `Field10:` + fmt.Sprintf("%#v", this.Field10) + `}`}, ", ") return s } func (this *SampleOneOf_Field11) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field11{` + `Field11:` + fmt.Sprintf("%#v", this.Field11) + `}`}, ", ") return s } func (this *SampleOneOf_Field12) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field12{` + `Field12:` + fmt.Sprintf("%#v", this.Field12) + `}`}, ", ") return s } func (this *SampleOneOf_Field13) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field13{` + `Field13:` + fmt.Sprintf("%#v", this.Field13) + `}`}, ", ") return s } func (this *SampleOneOf_Field14) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field14{` + `Field14:` + fmt.Sprintf("%#v", this.Field14) + `}`}, ", ") return s } func (this *SampleOneOf_Field15) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field15{` + `Field15:` + fmt.Sprintf("%#v", this.Field15) + `}`}, ", ") return s } func (this *SampleOneOf_SubMessage) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_SubMessage{` + `SubMessage:` + fmt.Sprintf("%#v", this.SubMessage) + `}`}, ", ") return s } func valueToGoStringOne(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedSubby(r randyOne, easy bool) *Subby { this := &Subby{} this.Sub = string(randStringOne(r)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedSampleOneOf(r randyOne, easy bool) *SampleOneOf { this := &SampleOneOf{} oneofNumber_TestOneof := []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}[r.Intn(16)] switch oneofNumber_TestOneof { case 1: this.TestOneof = NewPopulatedSampleOneOf_Field1(r, easy) case 2: this.TestOneof = NewPopulatedSampleOneOf_Field2(r, easy) case 3: this.TestOneof = NewPopulatedSampleOneOf_Field3(r, easy) case 4: this.TestOneof = NewPopulatedSampleOneOf_Field4(r, easy) case 5: this.TestOneof = NewPopulatedSampleOneOf_Field5(r, easy) case 6: this.TestOneof = NewPopulatedSampleOneOf_Field6(r, easy) case 7: this.TestOneof = NewPopulatedSampleOneOf_Field7(r, easy) case 8: this.TestOneof = NewPopulatedSampleOneOf_Field8(r, easy) case 9: this.TestOneof = NewPopulatedSampleOneOf_Field9(r, easy) case 10: this.TestOneof = NewPopulatedSampleOneOf_Field10(r, easy) case 11: this.TestOneof = NewPopulatedSampleOneOf_Field11(r, easy) case 12: this.TestOneof = NewPopulatedSampleOneOf_Field12(r, easy) case 13: this.TestOneof = NewPopulatedSampleOneOf_Field13(r, easy) case 14: this.TestOneof = NewPopulatedSampleOneOf_Field14(r, easy) case 15: this.TestOneof = NewPopulatedSampleOneOf_Field15(r, easy) case 16: this.TestOneof = NewPopulatedSampleOneOf_SubMessage(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedSampleOneOf_Field1(r randyOne, easy bool) *SampleOneOf_Field1 { this := &SampleOneOf_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedSampleOneOf_Field2(r randyOne, easy bool) *SampleOneOf_Field2 { this := &SampleOneOf_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedSampleOneOf_Field3(r randyOne, easy bool) *SampleOneOf_Field3 { this := &SampleOneOf_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedSampleOneOf_Field4(r randyOne, easy bool) *SampleOneOf_Field4 { this := &SampleOneOf_Field4{} this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } return this } func NewPopulatedSampleOneOf_Field5(r randyOne, easy bool) *SampleOneOf_Field5 { this := &SampleOneOf_Field5{} this.Field5 = uint32(r.Uint32()) return this } func NewPopulatedSampleOneOf_Field6(r randyOne, easy bool) *SampleOneOf_Field6 { this := &SampleOneOf_Field6{} this.Field6 = uint64(uint64(r.Uint32())) return this } func NewPopulatedSampleOneOf_Field7(r randyOne, easy bool) *SampleOneOf_Field7 { this := &SampleOneOf_Field7{} this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } return this } func NewPopulatedSampleOneOf_Field8(r randyOne, easy bool) *SampleOneOf_Field8 { this := &SampleOneOf_Field8{} this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } return this } func NewPopulatedSampleOneOf_Field9(r randyOne, easy bool) *SampleOneOf_Field9 { this := &SampleOneOf_Field9{} this.Field9 = uint32(r.Uint32()) return this } func NewPopulatedSampleOneOf_Field10(r randyOne, easy bool) *SampleOneOf_Field10 { this := &SampleOneOf_Field10{} this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } return this } func NewPopulatedSampleOneOf_Field11(r randyOne, easy bool) *SampleOneOf_Field11 { this := &SampleOneOf_Field11{} this.Field11 = uint64(uint64(r.Uint32())) return this } func NewPopulatedSampleOneOf_Field12(r randyOne, easy bool) *SampleOneOf_Field12 { this := &SampleOneOf_Field12{} this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } return this } func NewPopulatedSampleOneOf_Field13(r randyOne, easy bool) *SampleOneOf_Field13 { this := &SampleOneOf_Field13{} this.Field13 = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedSampleOneOf_Field14(r randyOne, easy bool) *SampleOneOf_Field14 { this := &SampleOneOf_Field14{} this.Field14 = string(randStringOne(r)) return this } func NewPopulatedSampleOneOf_Field15(r randyOne, easy bool) *SampleOneOf_Field15 { this := &SampleOneOf_Field15{} v1 := r.Intn(100) this.Field15 = make([]byte, v1) for i := 0; i < v1; i++ { this.Field15[i] = byte(r.Intn(256)) } return this } func NewPopulatedSampleOneOf_SubMessage(r randyOne, easy bool) *SampleOneOf_SubMessage { this := &SampleOneOf_SubMessage{} this.SubMessage = NewPopulatedSubby(r, easy) return this } type randyOne interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneOne(r randyOne) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringOne(r randyOne) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneOne(r) } return string(tmps) } func randUnrecognizedOne(r randyOne, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldOne(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldOne(dAtA []byte, r randyOne, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateOne(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateOne(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateOne(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Subby) Size() (n int) { var l int _ = l l = len(m.Sub) if l > 0 { n += 1 + l + sovOne(uint64(l)) } return n } func (m *SampleOneOf) Size() (n int) { var l int _ = l if m.TestOneof != nil { n += m.TestOneof.Size() } return n } func (m *SampleOneOf_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *SampleOneOf_Field4) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field4)) return n } func (m *SampleOneOf_Field5) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field5)) return n } func (m *SampleOneOf_Field6) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field6)) return n } func (m *SampleOneOf_Field7) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field7)) return n } func (m *SampleOneOf_Field8) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field8)) return n } func (m *SampleOneOf_Field9) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field10) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field11) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field12) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field13) Size() (n int) { var l int _ = l n += 2 return n } func (m *SampleOneOf_Field14) Size() (n int) { var l int _ = l l = len(m.Field14) n += 1 + l + sovOne(uint64(l)) return n } func (m *SampleOneOf_Field15) Size() (n int) { var l int _ = l if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovOne(uint64(l)) } return n } func (m *SampleOneOf_SubMessage) Size() (n int) { var l int _ = l if m.SubMessage != nil { l = m.SubMessage.Size() n += 2 + l + sovOne(uint64(l)) } return n } func sovOne(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozOne(x uint64) (n int) { return sovOne(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Subby) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Subby{`, `Sub:` + fmt.Sprintf("%v", this.Sub) + `,`, `}`, }, "") return s } func (this *SampleOneOf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf{`, `TestOneof:` + fmt.Sprintf("%v", this.TestOneof) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field4) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field4{`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field5) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field5{`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field6) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field6{`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field7) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field7{`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field8) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field8{`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field9) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field9{`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field10) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field10{`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field11) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field11{`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field12) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field12{`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field13) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field13{`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field14) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field14{`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field15) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field15{`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `}`, }, "") return s } func (this *SampleOneOf_SubMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_SubMessage{`, `SubMessage:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func valueToStringOne(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/neither/one.proto", fileDescriptorOne) } var fileDescriptorOne = []byte{ // 405 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0xd2, 0xbf, 0x4f, 0x1b, 0x31, 0x14, 0x07, 0x70, 0x3f, 0x8e, 0x24, 0xe0, 0x84, 0x92, 0xde, 0xf4, 0xca, 0xf0, 0x64, 0x31, 0x79, 0x21, 0x69, 0xee, 0x12, 0x7e, 0xac, 0xa8, 0xaa, 0xb2, 0x54, 0x48, 0xe1, 0x0f, 0x40, 0x98, 0x3a, 0x21, 0x12, 0x77, 0x46, 0xdc, 0xdd, 0xd0, 0x8d, 0x3f, 0xa7, 0x63, 0xc7, 0xfe, 0x09, 0x8c, 0x8c, 0x1d, 0x3a, 0x70, 0xee, 0xd2, 0x91, 0x31, 0x63, 0x95, 0x4b, 0x79, 0xde, 0xde, 0xd7, 0x1f, 0x7b, 0xb0, 0xfd, 0x95, 0x78, 0xe3, 0x32, 0xe3, 0x8a, 0x61, 0x6e, 0x97, 0xe5, 0xad, 0x7d, 0x18, 0xba, 0xdc, 0x0e, 0xee, 0x1f, 0x5c, 0xe9, 0xe2, 0xc8, 0xe5, 0xf6, 0xe0, 0x68, 0xb1, 0x2c, 0x6f, 0x2b, 0x33, 0xb8, 0x71, 0xd9, 0x70, 0xe1, 0x16, 0x6e, 0xd8, 0x98, 0xa9, 0xe6, 0x4d, 0x6a, 0x42, 0x33, 0x6d, 0xce, 0x1c, 0x7e, 0x90, 0xad, 0xcb, 0xca, 0x98, 0x6f, 0x71, 0x5f, 0x46, 0x45, 0x65, 0x10, 0x14, 0xe8, 0xdd, 0xd9, 0x7a, 0x3c, 0xfc, 0x1d, 0xc9, 0xee, 0xe5, 0x75, 0x76, 0x7f, 0x67, 0x2f, 0x72, 0x7b, 0x31, 0x8f, 0x51, 0xb6, 0x3f, 0x2f, 0xed, 0xdd, 0xd7, 0x51, 0xb3, 0x09, 0xa6, 0x62, 0xf6, 0x3f, 0xb3, 0x24, 0xb8, 0xa5, 0x40, 0x6f, 0xb1, 0x24, 0x2c, 0x29, 0x46, 0x0a, 0x74, 0x8b, 0x25, 0x65, 0x19, 0xe3, 0xb6, 0x02, 0x1d, 0xb1, 0x8c, 0x59, 0x26, 0xd8, 0x52, 0xa0, 0xf7, 0x58, 0x26, 0x2c, 0xc7, 0xd8, 0x56, 0xa0, 0xb7, 0x59, 0x8e, 0x59, 0x4e, 0xb0, 0xa3, 0x40, 0xbf, 0x67, 0x39, 0x61, 0x39, 0xc5, 0x1d, 0x05, 0x3a, 0x66, 0x39, 0x65, 0x39, 0xc3, 0x5d, 0x05, 0xba, 0xc3, 0x72, 0x16, 0x1f, 0xc8, 0xce, 0xe6, 0x66, 0x1f, 0x51, 0x2a, 0xd0, 0xfb, 0x53, 0x31, 0x7b, 0x5b, 0x08, 0x36, 0xc2, 0xae, 0x02, 0xdd, 0x0e, 0x36, 0x0a, 0x96, 0x60, 0x4f, 0x81, 0xee, 0x07, 0x4b, 0x82, 0xa5, 0xb8, 0xa7, 0x40, 0xef, 0x04, 0x4b, 0x83, 0x8d, 0xf1, 0xdd, 0xfa, 0xfd, 0x83, 0x8d, 0x83, 0x4d, 0x70, 0x5f, 0x81, 0xee, 0x05, 0x9b, 0xc4, 0x47, 0xb2, 0x5b, 0x54, 0xe6, 0x2a, 0xb3, 0x45, 0x71, 0xbd, 0xb0, 0xd8, 0x57, 0xa0, 0xbb, 0x89, 0x1c, 0xac, 0x1b, 0xd1, 0x7c, 0xea, 0x54, 0xcc, 0x64, 0x51, 0x99, 0x2f, 0x1b, 0x3f, 0xef, 0x49, 0x59, 0xda, 0xa2, 0xbc, 0x72, 0xb9, 0x75, 0xf3, 0xf3, 0x4f, 0x4f, 0x35, 0x89, 0xe7, 0x9a, 0xc4, 0xaf, 0x9a, 0xc4, 0x4b, 0x4d, 0xf0, 0x5a, 0x13, 0xac, 0x6a, 0x82, 0x47, 0x4f, 0xf0, 0xdd, 0x13, 0xfc, 0xf0, 0x04, 0x3f, 0x3d, 0xc1, 0x93, 0x27, 0xf1, 0xec, 0x49, 0xbc, 0x78, 0x82, 0xbf, 0x9e, 0xc4, 0xab, 0x27, 0x58, 0x79, 0x12, 0x8f, 0x7f, 0x48, 0x98, 0x76, 0x53, 0xa3, 0xf4, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x04, 0xd2, 0x98, 0x96, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/oneof3/combos/neither/one.proto000066400000000000000000000053231317075173200243060ustar00rootroot00000000000000// 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 = "proto3"; package one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { string sub = 1; } message SampleOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } golang-gogoprotobuf-0.5/test/oneof3/combos/neither/onepb_test.go000066400000000000000000000240221317075173200251260ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/neither/one.proto It has these top-level messages: Subby SampleOneOf */ package one import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSubbyProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSampleOneOfProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSubbyJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSampleOneOfJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubbyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneDescription(t *testing.T) { OneDescription() } func TestSubbyVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSampleOneOfVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSubbyGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSampleOneOfGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSubbySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSampleOneOfSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSubbyStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestSampleOneOfStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/oneof3/combos/unmarshaler/000077500000000000000000000000001317075173200233205ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneof3/combos/unmarshaler/one.pb.go000066400000000000000000002723471317075173200250470ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/one.proto It has these top-level messages: Subby SampleOneOf */ package one import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import io "io" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Subby struct { Sub string `protobuf:"bytes,1,opt,name=sub,proto3" json:"sub,omitempty"` } func (m *Subby) Reset() { *m = Subby{} } func (*Subby) ProtoMessage() {} func (*Subby) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{0} } type SampleOneOf struct { // Types that are valid to be assigned to TestOneof: // *SampleOneOf_Field1 // *SampleOneOf_Field2 // *SampleOneOf_Field3 // *SampleOneOf_Field4 // *SampleOneOf_Field5 // *SampleOneOf_Field6 // *SampleOneOf_Field7 // *SampleOneOf_Field8 // *SampleOneOf_Field9 // *SampleOneOf_Field10 // *SampleOneOf_Field11 // *SampleOneOf_Field12 // *SampleOneOf_Field13 // *SampleOneOf_Field14 // *SampleOneOf_Field15 // *SampleOneOf_SubMessage TestOneof isSampleOneOf_TestOneof `protobuf_oneof:"test_oneof"` } func (m *SampleOneOf) Reset() { *m = SampleOneOf{} } func (*SampleOneOf) ProtoMessage() {} func (*SampleOneOf) Descriptor() ([]byte, []int) { return fileDescriptorOne, []int{1} } type isSampleOneOf_TestOneof interface { isSampleOneOf_TestOneof() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type SampleOneOf_Field1 struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1,proto3,oneof"` } type SampleOneOf_Field2 struct { Field2 float32 `protobuf:"fixed32,2,opt,name=Field2,proto3,oneof"` } type SampleOneOf_Field3 struct { Field3 int32 `protobuf:"varint,3,opt,name=Field3,proto3,oneof"` } type SampleOneOf_Field4 struct { Field4 int64 `protobuf:"varint,4,opt,name=Field4,proto3,oneof"` } type SampleOneOf_Field5 struct { Field5 uint32 `protobuf:"varint,5,opt,name=Field5,proto3,oneof"` } type SampleOneOf_Field6 struct { Field6 uint64 `protobuf:"varint,6,opt,name=Field6,proto3,oneof"` } type SampleOneOf_Field7 struct { Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7,proto3,oneof"` } type SampleOneOf_Field8 struct { Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8,proto3,oneof"` } type SampleOneOf_Field9 struct { Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9,proto3,oneof"` } type SampleOneOf_Field10 struct { Field10 int32 `protobuf:"fixed32,10,opt,name=Field10,proto3,oneof"` } type SampleOneOf_Field11 struct { Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11,proto3,oneof"` } type SampleOneOf_Field12 struct { Field12 int64 `protobuf:"fixed64,12,opt,name=Field12,proto3,oneof"` } type SampleOneOf_Field13 struct { Field13 bool `protobuf:"varint,13,opt,name=Field13,proto3,oneof"` } type SampleOneOf_Field14 struct { Field14 string `protobuf:"bytes,14,opt,name=Field14,proto3,oneof"` } type SampleOneOf_Field15 struct { Field15 []byte `protobuf:"bytes,15,opt,name=Field15,proto3,oneof"` } type SampleOneOf_SubMessage struct { SubMessage *Subby `protobuf:"bytes,16,opt,name=sub_message,json=subMessage,oneof"` } func (*SampleOneOf_Field1) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field2) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field3) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field4) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field5) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field6) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field7) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field8) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field9) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field10) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field11) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field12) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field13) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field14) isSampleOneOf_TestOneof() {} func (*SampleOneOf_Field15) isSampleOneOf_TestOneof() {} func (*SampleOneOf_SubMessage) isSampleOneOf_TestOneof() {} func (m *SampleOneOf) GetTestOneof() isSampleOneOf_TestOneof { if m != nil { return m.TestOneof } return nil } func (m *SampleOneOf) GetField1() float64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field1); ok { return x.Field1 } return 0 } func (m *SampleOneOf) GetField2() float32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field2); ok { return x.Field2 } return 0 } func (m *SampleOneOf) GetField3() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field3); ok { return x.Field3 } return 0 } func (m *SampleOneOf) GetField4() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field4); ok { return x.Field4 } return 0 } func (m *SampleOneOf) GetField5() uint32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field5); ok { return x.Field5 } return 0 } func (m *SampleOneOf) GetField6() uint64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field6); ok { return x.Field6 } return 0 } func (m *SampleOneOf) GetField7() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field7); ok { return x.Field7 } return 0 } func (m *SampleOneOf) GetField8() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field8); ok { return x.Field8 } return 0 } func (m *SampleOneOf) GetField9() uint32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field9); ok { return x.Field9 } return 0 } func (m *SampleOneOf) GetField10() int32 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field10); ok { return x.Field10 } return 0 } func (m *SampleOneOf) GetField11() uint64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field11); ok { return x.Field11 } return 0 } func (m *SampleOneOf) GetField12() int64 { if x, ok := m.GetTestOneof().(*SampleOneOf_Field12); ok { return x.Field12 } return 0 } func (m *SampleOneOf) GetField13() bool { if x, ok := m.GetTestOneof().(*SampleOneOf_Field13); ok { return x.Field13 } return false } func (m *SampleOneOf) GetField14() string { if x, ok := m.GetTestOneof().(*SampleOneOf_Field14); ok { return x.Field14 } return "" } func (m *SampleOneOf) GetField15() []byte { if x, ok := m.GetTestOneof().(*SampleOneOf_Field15); ok { return x.Field15 } return nil } func (m *SampleOneOf) GetSubMessage() *Subby { if x, ok := m.GetTestOneof().(*SampleOneOf_SubMessage); ok { return x.SubMessage } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*SampleOneOf) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _SampleOneOf_OneofMarshaler, _SampleOneOf_OneofUnmarshaler, _SampleOneOf_OneofSizer, []interface{}{ (*SampleOneOf_Field1)(nil), (*SampleOneOf_Field2)(nil), (*SampleOneOf_Field3)(nil), (*SampleOneOf_Field4)(nil), (*SampleOneOf_Field5)(nil), (*SampleOneOf_Field6)(nil), (*SampleOneOf_Field7)(nil), (*SampleOneOf_Field8)(nil), (*SampleOneOf_Field9)(nil), (*SampleOneOf_Field10)(nil), (*SampleOneOf_Field11)(nil), (*SampleOneOf_Field12)(nil), (*SampleOneOf_Field13)(nil), (*SampleOneOf_Field14)(nil), (*SampleOneOf_Field15)(nil), (*SampleOneOf_SubMessage)(nil), } } func _SampleOneOf_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*SampleOneOf) // test_oneof switch x := m.TestOneof.(type) { case *SampleOneOf_Field1: _ = b.EncodeVarint(1<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.Field1)) case *SampleOneOf_Field2: _ = b.EncodeVarint(2<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(math.Float32bits(x.Field2))) case *SampleOneOf_Field3: _ = b.EncodeVarint(3<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field3)) case *SampleOneOf_Field4: _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field4)) case *SampleOneOf_Field5: _ = b.EncodeVarint(5<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field5)) case *SampleOneOf_Field6: _ = b.EncodeVarint(6<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.Field6)) case *SampleOneOf_Field7: _ = b.EncodeVarint(7<<3 | proto.WireVarint) _ = b.EncodeZigzag32(uint64(x.Field7)) case *SampleOneOf_Field8: _ = b.EncodeVarint(8<<3 | proto.WireVarint) _ = b.EncodeZigzag64(uint64(x.Field8)) case *SampleOneOf_Field9: _ = b.EncodeVarint(9<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field9)) case *SampleOneOf_Field10: _ = b.EncodeVarint(10<<3 | proto.WireFixed32) _ = b.EncodeFixed32(uint64(x.Field10)) case *SampleOneOf_Field11: _ = b.EncodeVarint(11<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field11)) case *SampleOneOf_Field12: _ = b.EncodeVarint(12<<3 | proto.WireFixed64) _ = b.EncodeFixed64(uint64(x.Field12)) case *SampleOneOf_Field13: t := uint64(0) if x.Field13 { t = 1 } _ = b.EncodeVarint(13<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *SampleOneOf_Field14: _ = b.EncodeVarint(14<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.Field14) case *SampleOneOf_Field15: _ = b.EncodeVarint(15<<3 | proto.WireBytes) _ = b.EncodeRawBytes(x.Field15) case *SampleOneOf_SubMessage: _ = b.EncodeVarint(16<<3 | proto.WireBytes) if err := b.EncodeMessage(x.SubMessage); err != nil { return err } case nil: default: return fmt.Errorf("SampleOneOf.TestOneof has unexpected type %T", x) } return nil } func _SampleOneOf_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*SampleOneOf) switch tag { case 1: // test_oneof.Field1 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field1{math.Float64frombits(x)} return true, err case 2: // test_oneof.Field2 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field2{math.Float32frombits(uint32(x))} return true, err case 3: // test_oneof.Field3 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field3{int32(x)} return true, err case 4: // test_oneof.Field4 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field4{int64(x)} return true, err case 5: // test_oneof.Field5 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field5{uint32(x)} return true, err case 6: // test_oneof.Field6 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field6{x} return true, err case 7: // test_oneof.Field7 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag32() m.TestOneof = &SampleOneOf_Field7{int32(x)} return true, err case 8: // test_oneof.Field8 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeZigzag64() m.TestOneof = &SampleOneOf_Field8{int64(x)} return true, err case 9: // test_oneof.Field9 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field9{uint32(x)} return true, err case 10: // test_oneof.Field10 if wire != proto.WireFixed32 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed32() m.TestOneof = &SampleOneOf_Field10{int32(x)} return true, err case 11: // test_oneof.Field11 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field11{x} return true, err case 12: // test_oneof.Field12 if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.TestOneof = &SampleOneOf_Field12{int64(x)} return true, err case 13: // test_oneof.Field13 if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.TestOneof = &SampleOneOf_Field13{x != 0} return true, err case 14: // test_oneof.Field14 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.TestOneof = &SampleOneOf_Field14{x} return true, err case 15: // test_oneof.Field15 if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) m.TestOneof = &SampleOneOf_Field15{x} return true, err case 16: // test_oneof.sub_message if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Subby) err := b.DecodeMessage(msg) m.TestOneof = &SampleOneOf_SubMessage{msg} return true, err default: return false, nil } } func _SampleOneOf_OneofSizer(msg proto.Message) (n int) { m := msg.(*SampleOneOf) // test_oneof switch x := m.TestOneof.(type) { case *SampleOneOf_Field1: n += proto.SizeVarint(1<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field2: n += proto.SizeVarint(2<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field3: n += proto.SizeVarint(3<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field3)) case *SampleOneOf_Field4: n += proto.SizeVarint(4<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field4)) case *SampleOneOf_Field5: n += proto.SizeVarint(5<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field5)) case *SampleOneOf_Field6: n += proto.SizeVarint(6<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.Field6)) case *SampleOneOf_Field7: n += proto.SizeVarint(7<<3 | proto.WireVarint) n += proto.SizeVarint(uint64((uint32(x.Field7) << 1) ^ uint32((int32(x.Field7) >> 31)))) case *SampleOneOf_Field8: n += proto.SizeVarint(8<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(uint64(x.Field8<<1) ^ uint64((int64(x.Field8) >> 63)))) case *SampleOneOf_Field9: n += proto.SizeVarint(9<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field10: n += proto.SizeVarint(10<<3 | proto.WireFixed32) n += 4 case *SampleOneOf_Field11: n += proto.SizeVarint(11<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field12: n += proto.SizeVarint(12<<3 | proto.WireFixed64) n += 8 case *SampleOneOf_Field13: n += proto.SizeVarint(13<<3 | proto.WireVarint) n += 1 case *SampleOneOf_Field14: n += proto.SizeVarint(14<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field14))) n += len(x.Field14) case *SampleOneOf_Field15: n += proto.SizeVarint(15<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.Field15))) n += len(x.Field15) case *SampleOneOf_SubMessage: s := proto.Size(x.SubMessage) n += proto.SizeVarint(16<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*Subby)(nil), "one.Subby") proto.RegisterType((*SampleOneOf)(nil), "one.SampleOneOf") } func (this *Subby) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func (this *SampleOneOf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return OneDescription() } func OneDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3935 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0x26, 0x7e, 0x09, 0x1c, 0x80, 0xe0, 0xf2, 0x92, 0x96, 0x20, 0xc6, 0x86, 0x28, 0xfa, 0x8f, 0xb6, 0x6b, 0xd2, 0xa6, 0x44, 0xfd, 0x40, 0x4d, 0x5c, 0x90, 0x84, 0x28, 0xaa, 0x24, 0xc1, 0x2c, 0xc8, 0x58, 0x4e, 0x1f, 0x76, 0x16, 0x8b, 0x0b, 0x70, 0xa5, 0xc5, 0xee, 0x66, 0x77, 0x21, 0x99, 0x9a, 0x3e, 0xa8, 0xe3, 0xfe, 0x4c, 0xa6, 0xd3, 0xff, 0xce, 0x34, 0x71, 0x1d, 0xb7, 0xcd, 0x4c, 0xeb, 0x34, 0xe9, 0x4f, 0xd2, 0xb4, 0x69, 0xda, 0xa7, 0xbe, 0xa4, 0xf5, 0x53, 0x27, 0x79, 0xeb, 0x43, 0x1e, 0x2c, 0xd6, 0x33, 0x4d, 0x5b, 0xb7, 0x75, 0x1b, 0x3f, 0x64, 0xc6, 0x2f, 0x9d, 0xfb, 0xb7, 0xbb, 0xf8, 0xa1, 0x16, 0xcc, 0x8c, 0x9d, 0x27, 0x72, 0xcf, 0x39, 0xdf, 0xb7, 0xe7, 0x9e, 0x7b, 0xee, 0x3d, 0xe7, 0x5e, 0x2c, 0x7c, 0xed, 0x32, 0xcc, 0xb5, 0x2d, 0xab, 0x6d, 0xe0, 0x25, 0xdb, 0xb1, 0x3c, 0xab, 0xd1, 0x6d, 0x2d, 0x35, 0xb1, 0xab, 0x39, 0xba, 0xed, 0x59, 0xce, 0x22, 0x95, 0xa1, 0x49, 0x66, 0xb1, 0x28, 0x2c, 0xe6, 0xb7, 0x61, 0xea, 0x9a, 0x6e, 0xe0, 0x75, 0xdf, 0xb0, 0x8e, 0x3d, 0x74, 0x19, 0x92, 0x2d, 0xdd, 0xc0, 0xc5, 0xd8, 0x5c, 0x62, 0x21, 0xb7, 0xfc, 0xc4, 0x62, 0x1f, 0x68, 0xb1, 0x17, 0xb1, 0x4b, 0xc4, 0x32, 0x45, 0xcc, 0xbf, 0x9b, 0x84, 0xe9, 0x21, 0x5a, 0x84, 0x20, 0x69, 0xaa, 0x1d, 0xc2, 0x18, 0x5b, 0xc8, 0xca, 0xf4, 0x7f, 0x54, 0x84, 0x71, 0x5b, 0xd5, 0x6e, 0xab, 0x6d, 0x5c, 0x8c, 0x53, 0xb1, 0x78, 0x44, 0x25, 0x80, 0x26, 0xb6, 0xb1, 0xd9, 0xc4, 0xa6, 0x76, 0x58, 0x4c, 0xcc, 0x25, 0x16, 0xb2, 0x72, 0x48, 0x82, 0x9e, 0x83, 0x29, 0xbb, 0xdb, 0x30, 0x74, 0x4d, 0x09, 0x99, 0xc1, 0x5c, 0x62, 0x21, 0x25, 0x4b, 0x4c, 0xb1, 0x1e, 0x18, 0x3f, 0x0d, 0x93, 0x77, 0xb1, 0x7a, 0x3b, 0x6c, 0x9a, 0xa3, 0xa6, 0x05, 0x22, 0x0e, 0x19, 0xae, 0x41, 0xbe, 0x83, 0x5d, 0x57, 0x6d, 0x63, 0xc5, 0x3b, 0xb4, 0x71, 0x31, 0x49, 0x47, 0x3f, 0x37, 0x30, 0xfa, 0xfe, 0x91, 0xe7, 0x38, 0x6a, 0xef, 0xd0, 0xc6, 0xa8, 0x02, 0x59, 0x6c, 0x76, 0x3b, 0x8c, 0x21, 0x75, 0x4c, 0xfc, 0xaa, 0x66, 0xb7, 0xd3, 0xcf, 0x92, 0x21, 0x30, 0x4e, 0x31, 0xee, 0x62, 0xe7, 0x8e, 0xae, 0xe1, 0x62, 0x9a, 0x12, 0x3c, 0x3d, 0x40, 0x50, 0x67, 0xfa, 0x7e, 0x0e, 0x81, 0x43, 0x6b, 0x90, 0xc5, 0xaf, 0x7a, 0xd8, 0x74, 0x75, 0xcb, 0x2c, 0x8e, 0x53, 0x92, 0x27, 0x87, 0xcc, 0x22, 0x36, 0x9a, 0xfd, 0x14, 0x01, 0x0e, 0x5d, 0x84, 0x71, 0xcb, 0xf6, 0x74, 0xcb, 0x74, 0x8b, 0x99, 0xb9, 0xd8, 0x42, 0x6e, 0xf9, 0xd1, 0xa1, 0x89, 0x50, 0x63, 0x36, 0xb2, 0x30, 0x46, 0x9b, 0x20, 0xb9, 0x56, 0xd7, 0xd1, 0xb0, 0xa2, 0x59, 0x4d, 0xac, 0xe8, 0x66, 0xcb, 0x2a, 0x66, 0x29, 0xc1, 0xd9, 0xc1, 0x81, 0x50, 0xc3, 0x35, 0xab, 0x89, 0x37, 0xcd, 0x96, 0x25, 0x17, 0xdc, 0x9e, 0x67, 0x74, 0x0a, 0xd2, 0xee, 0xa1, 0xe9, 0xa9, 0xaf, 0x16, 0xf3, 0x34, 0x43, 0xf8, 0xd3, 0xfc, 0xdf, 0xa5, 0x61, 0x72, 0x94, 0x14, 0xbb, 0x0a, 0xa9, 0x16, 0x19, 0x65, 0x31, 0x7e, 0x92, 0x18, 0x30, 0x4c, 0x6f, 0x10, 0xd3, 0x3f, 0x66, 0x10, 0x2b, 0x90, 0x33, 0xb1, 0xeb, 0xe1, 0x26, 0xcb, 0x88, 0xc4, 0x88, 0x39, 0x05, 0x0c, 0x34, 0x98, 0x52, 0xc9, 0x1f, 0x2b, 0xa5, 0x6e, 0xc2, 0xa4, 0xef, 0x92, 0xe2, 0xa8, 0x66, 0x5b, 0xe4, 0xe6, 0x52, 0x94, 0x27, 0x8b, 0x55, 0x81, 0x93, 0x09, 0x4c, 0x2e, 0xe0, 0x9e, 0x67, 0xb4, 0x0e, 0x60, 0x99, 0xd8, 0x6a, 0x29, 0x4d, 0xac, 0x19, 0xc5, 0xcc, 0x31, 0x51, 0xaa, 0x11, 0x93, 0x81, 0x28, 0x59, 0x4c, 0xaa, 0x19, 0xe8, 0x4a, 0x90, 0x6a, 0xe3, 0xc7, 0x64, 0xca, 0x36, 0x5b, 0x64, 0x03, 0xd9, 0xb6, 0x0f, 0x05, 0x07, 0x93, 0xbc, 0xc7, 0x4d, 0x3e, 0xb2, 0x2c, 0x75, 0x62, 0x31, 0x72, 0x64, 0x32, 0x87, 0xb1, 0x81, 0x4d, 0x38, 0xe1, 0x47, 0xf4, 0x38, 0xf8, 0x02, 0x85, 0xa6, 0x15, 0xd0, 0x5d, 0x28, 0x2f, 0x84, 0x3b, 0x6a, 0x07, 0xcf, 0xde, 0x83, 0x42, 0x6f, 0x78, 0xd0, 0x0c, 0xa4, 0x5c, 0x4f, 0x75, 0x3c, 0x9a, 0x85, 0x29, 0x99, 0x3d, 0x20, 0x09, 0x12, 0xd8, 0x6c, 0xd2, 0x5d, 0x2e, 0x25, 0x93, 0x7f, 0xd1, 0xcf, 0x04, 0x03, 0x4e, 0xd0, 0x01, 0x3f, 0x35, 0x38, 0xa3, 0x3d, 0xcc, 0xfd, 0xe3, 0x9e, 0xbd, 0x04, 0x13, 0x3d, 0x03, 0x18, 0xf5, 0xd5, 0xf3, 0x3f, 0x0f, 0x8f, 0x0c, 0xa5, 0x46, 0x37, 0x61, 0xa6, 0x6b, 0xea, 0xa6, 0x87, 0x1d, 0xdb, 0xc1, 0x24, 0x63, 0xd9, 0xab, 0x8a, 0xff, 0x36, 0x7e, 0x4c, 0xce, 0xed, 0x87, 0xad, 0x19, 0x8b, 0x3c, 0xdd, 0x1d, 0x14, 0x3e, 0x9b, 0xcd, 0xfc, 0x60, 0x5c, 0xba, 0x7f, 0xff, 0xfe, 0xfd, 0xf8, 0xfc, 0x17, 0xd2, 0x30, 0x33, 0x6c, 0xcd, 0x0c, 0x5d, 0xbe, 0xa7, 0x20, 0x6d, 0x76, 0x3b, 0x0d, 0xec, 0xd0, 0x20, 0xa5, 0x64, 0xfe, 0x84, 0x2a, 0x90, 0x32, 0xd4, 0x06, 0x36, 0x8a, 0xc9, 0xb9, 0xd8, 0x42, 0x61, 0xf9, 0xb9, 0x91, 0x56, 0xe5, 0xe2, 0x16, 0x81, 0xc8, 0x0c, 0x89, 0x3e, 0x05, 0x49, 0xbe, 0x45, 0x13, 0x86, 0x67, 0x47, 0x63, 0x20, 0x6b, 0x49, 0xa6, 0x38, 0xf4, 0x09, 0xc8, 0x92, 0xbf, 0x2c, 0x37, 0xd2, 0xd4, 0xe7, 0x0c, 0x11, 0x90, 0xbc, 0x40, 0xb3, 0x90, 0xa1, 0xcb, 0xa4, 0x89, 0x45, 0x69, 0xf3, 0x9f, 0x49, 0x62, 0x35, 0x71, 0x4b, 0xed, 0x1a, 0x9e, 0x72, 0x47, 0x35, 0xba, 0x98, 0x26, 0x7c, 0x56, 0xce, 0x73, 0xe1, 0x67, 0x88, 0x0c, 0x9d, 0x85, 0x1c, 0x5b, 0x55, 0xba, 0xd9, 0xc4, 0xaf, 0xd2, 0xdd, 0x33, 0x25, 0xb3, 0x85, 0xb6, 0x49, 0x24, 0xe4, 0xf5, 0xb7, 0x5c, 0xcb, 0x14, 0xa9, 0x49, 0x5f, 0x41, 0x04, 0xf4, 0xf5, 0x97, 0xfa, 0x37, 0xee, 0xc7, 0x86, 0x0f, 0xaf, 0x3f, 0xa7, 0xe6, 0xbf, 0x15, 0x87, 0x24, 0xdd, 0x2f, 0x26, 0x21, 0xb7, 0xf7, 0xca, 0x6e, 0x55, 0x59, 0xaf, 0xed, 0xaf, 0x6e, 0x55, 0xa5, 0x18, 0x2a, 0x00, 0x50, 0xc1, 0xb5, 0xad, 0x5a, 0x65, 0x4f, 0x8a, 0xfb, 0xcf, 0x9b, 0x3b, 0x7b, 0x17, 0x2f, 0x48, 0x09, 0x1f, 0xb0, 0xcf, 0x04, 0xc9, 0xb0, 0xc1, 0xf9, 0x65, 0x29, 0x85, 0x24, 0xc8, 0x33, 0x82, 0xcd, 0x9b, 0xd5, 0xf5, 0x8b, 0x17, 0xa4, 0x74, 0xaf, 0xe4, 0xfc, 0xb2, 0x34, 0x8e, 0x26, 0x20, 0x4b, 0x25, 0xab, 0xb5, 0xda, 0x96, 0x94, 0xf1, 0x39, 0xeb, 0x7b, 0xf2, 0xe6, 0xce, 0x86, 0x94, 0xf5, 0x39, 0x37, 0xe4, 0xda, 0xfe, 0xae, 0x04, 0x3e, 0xc3, 0x76, 0xb5, 0x5e, 0xaf, 0x6c, 0x54, 0xa5, 0x9c, 0x6f, 0xb1, 0xfa, 0xca, 0x5e, 0xb5, 0x2e, 0xe5, 0x7b, 0xdc, 0x3a, 0xbf, 0x2c, 0x4d, 0xf8, 0xaf, 0xa8, 0xee, 0xec, 0x6f, 0x4b, 0x05, 0x34, 0x05, 0x13, 0xec, 0x15, 0xc2, 0x89, 0xc9, 0x3e, 0xd1, 0xc5, 0x0b, 0x92, 0x14, 0x38, 0xc2, 0x58, 0xa6, 0x7a, 0x04, 0x17, 0x2f, 0x48, 0x68, 0x7e, 0x0d, 0x52, 0x34, 0xbb, 0x10, 0x82, 0xc2, 0x56, 0x65, 0xb5, 0xba, 0xa5, 0xd4, 0x76, 0xf7, 0x36, 0x6b, 0x3b, 0x95, 0x2d, 0x29, 0x16, 0xc8, 0xe4, 0xea, 0xa7, 0xf7, 0x37, 0xe5, 0xea, 0xba, 0x14, 0x0f, 0xcb, 0x76, 0xab, 0x95, 0xbd, 0xea, 0xba, 0x94, 0x98, 0xd7, 0x60, 0x66, 0xd8, 0x3e, 0x39, 0x74, 0x65, 0x84, 0xa6, 0x38, 0x7e, 0xcc, 0x14, 0x53, 0xae, 0x81, 0x29, 0xfe, 0x72, 0x0c, 0xa6, 0x87, 0xd4, 0x8a, 0xa1, 0x2f, 0x79, 0x09, 0x52, 0x2c, 0x45, 0x59, 0xf5, 0x7c, 0x66, 0x68, 0xd1, 0xa1, 0x09, 0x3b, 0x50, 0x41, 0x29, 0x2e, 0xdc, 0x41, 0x24, 0x8e, 0xe9, 0x20, 0x08, 0xc5, 0x80, 0x93, 0xaf, 0xc5, 0xa0, 0x78, 0x1c, 0x77, 0xc4, 0x46, 0x11, 0xef, 0xd9, 0x28, 0xae, 0xf6, 0x3b, 0x70, 0xee, 0xf8, 0x31, 0x0c, 0x78, 0xf1, 0x56, 0x0c, 0x4e, 0x0d, 0x6f, 0xb4, 0x86, 0xfa, 0xf0, 0x29, 0x48, 0x77, 0xb0, 0x77, 0x60, 0x89, 0x66, 0xe3, 0xa9, 0x21, 0x25, 0x8c, 0xa8, 0xfb, 0x63, 0xc5, 0x51, 0xe1, 0x1a, 0x98, 0x38, 0xae, 0x5b, 0x62, 0xde, 0x0c, 0x78, 0xfa, 0xf9, 0x38, 0x3c, 0x32, 0x94, 0x7c, 0xa8, 0xa3, 0x8f, 0x01, 0xe8, 0xa6, 0xdd, 0xf5, 0x58, 0x43, 0xc1, 0xf6, 0xa7, 0x2c, 0x95, 0xd0, 0xb5, 0x4f, 0xf6, 0x9e, 0xae, 0xe7, 0xeb, 0x13, 0x54, 0x0f, 0x4c, 0x44, 0x0d, 0x2e, 0x07, 0x8e, 0x26, 0xa9, 0xa3, 0xa5, 0x63, 0x46, 0x3a, 0x50, 0xab, 0x5f, 0x00, 0x49, 0x33, 0x74, 0x6c, 0x7a, 0x8a, 0xeb, 0x39, 0x58, 0xed, 0xe8, 0x66, 0x9b, 0x6e, 0xc0, 0x99, 0x72, 0xaa, 0xa5, 0x1a, 0x2e, 0x96, 0x27, 0x99, 0xba, 0x2e, 0xb4, 0x04, 0x41, 0x6b, 0x9c, 0x13, 0x42, 0xa4, 0x7b, 0x10, 0x4c, 0xed, 0x23, 0xe6, 0xbf, 0x99, 0x81, 0x5c, 0xa8, 0x2d, 0x45, 0xe7, 0x20, 0x7f, 0x4b, 0xbd, 0xa3, 0x2a, 0xe2, 0xa8, 0xc1, 0x22, 0x91, 0x23, 0xb2, 0x5d, 0x7e, 0xdc, 0x78, 0x01, 0x66, 0xa8, 0x89, 0xd5, 0xf5, 0xb0, 0xa3, 0x68, 0x86, 0xea, 0xba, 0x34, 0x68, 0x19, 0x6a, 0x8a, 0x88, 0xae, 0x46, 0x54, 0x6b, 0x42, 0x83, 0x56, 0x60, 0x9a, 0x22, 0x3a, 0x5d, 0xc3, 0xd3, 0x6d, 0x03, 0x2b, 0xe4, 0xf0, 0xe3, 0xd2, 0x8d, 0xd8, 0xf7, 0x6c, 0x8a, 0x58, 0x6c, 0x73, 0x03, 0xe2, 0x91, 0x8b, 0xd6, 0xe1, 0x31, 0x0a, 0x6b, 0x63, 0x13, 0x3b, 0xaa, 0x87, 0x15, 0xfc, 0xb9, 0xae, 0x6a, 0xb8, 0x8a, 0x6a, 0x36, 0x95, 0x03, 0xd5, 0x3d, 0x28, 0xce, 0x10, 0x82, 0xd5, 0x78, 0x31, 0x26, 0x9f, 0x21, 0x86, 0x1b, 0xdc, 0xae, 0x4a, 0xcd, 0x2a, 0x66, 0xf3, 0xba, 0xea, 0x1e, 0xa0, 0x32, 0x9c, 0xa2, 0x2c, 0xae, 0xe7, 0xe8, 0x66, 0x5b, 0xd1, 0x0e, 0xb0, 0x76, 0x5b, 0xe9, 0x7a, 0xad, 0xcb, 0xc5, 0x4f, 0x84, 0xdf, 0x4f, 0x3d, 0xac, 0x53, 0x9b, 0x35, 0x62, 0xb2, 0xef, 0xb5, 0x2e, 0xa3, 0x3a, 0xe4, 0xc9, 0x64, 0x74, 0xf4, 0x7b, 0x58, 0x69, 0x59, 0x0e, 0xad, 0x2c, 0x85, 0x21, 0x2b, 0x3b, 0x14, 0xc1, 0xc5, 0x1a, 0x07, 0x6c, 0x5b, 0x4d, 0x5c, 0x4e, 0xd5, 0x77, 0xab, 0xd5, 0x75, 0x39, 0x27, 0x58, 0xae, 0x59, 0x0e, 0x49, 0xa8, 0xb6, 0xe5, 0x07, 0x38, 0xc7, 0x12, 0xaa, 0x6d, 0x89, 0xf0, 0xae, 0xc0, 0xb4, 0xa6, 0xb1, 0x31, 0xeb, 0x9a, 0xc2, 0x8f, 0x28, 0x6e, 0x51, 0xea, 0x09, 0x96, 0xa6, 0x6d, 0x30, 0x03, 0x9e, 0xe3, 0x2e, 0xba, 0x02, 0x8f, 0x04, 0xc1, 0x0a, 0x03, 0xa7, 0x06, 0x46, 0xd9, 0x0f, 0x5d, 0x81, 0x69, 0xfb, 0x70, 0x10, 0x88, 0x7a, 0xde, 0x68, 0x1f, 0xf6, 0xc3, 0x2e, 0xc1, 0x8c, 0x7d, 0x60, 0x0f, 0xe2, 0xa6, 0xc3, 0x38, 0x64, 0x1f, 0xd8, 0xfd, 0xc0, 0x27, 0xe9, 0x79, 0xd5, 0xc1, 0x9a, 0xea, 0xe1, 0x66, 0xf1, 0x74, 0xd8, 0x3c, 0xa4, 0x40, 0x4b, 0x20, 0x69, 0x9a, 0x82, 0x4d, 0xb5, 0x61, 0x60, 0x45, 0x75, 0xb0, 0xa9, 0xba, 0xc5, 0xb3, 0x61, 0xe3, 0x82, 0xa6, 0x55, 0xa9, 0xb6, 0x42, 0x95, 0xe8, 0x59, 0x98, 0xb2, 0x1a, 0xb7, 0x34, 0x96, 0x92, 0x8a, 0xed, 0xe0, 0x96, 0xfe, 0x6a, 0xf1, 0x09, 0x1a, 0xdf, 0x49, 0xa2, 0xa0, 0x09, 0xb9, 0x4b, 0xc5, 0xe8, 0x19, 0x90, 0x34, 0xf7, 0x40, 0x75, 0x6c, 0xda, 0x13, 0xb8, 0xb6, 0xaa, 0xe1, 0xe2, 0x93, 0xcc, 0x94, 0xc9, 0x77, 0x84, 0x98, 0x2c, 0x09, 0xf7, 0xae, 0xde, 0xf2, 0x04, 0xe3, 0xd3, 0x6c, 0x49, 0x50, 0x19, 0x67, 0x5b, 0x00, 0x89, 0x84, 0xa2, 0xe7, 0xc5, 0x0b, 0xd4, 0xac, 0x60, 0x1f, 0xd8, 0xe1, 0xf7, 0x3e, 0x0e, 0x13, 0xc4, 0x32, 0x78, 0xe9, 0x33, 0xac, 0x9f, 0xb1, 0x0f, 0x42, 0x6f, 0xfc, 0xc8, 0x5a, 0xcb, 0xf9, 0x32, 0xe4, 0xc3, 0xf9, 0x89, 0xb2, 0xc0, 0x32, 0x54, 0x8a, 0x91, 0x5a, 0xbf, 0x56, 0x5b, 0x27, 0x55, 0xfa, 0xb3, 0x55, 0x29, 0x4e, 0xba, 0x85, 0xad, 0xcd, 0xbd, 0xaa, 0x22, 0xef, 0xef, 0xec, 0x6d, 0x6e, 0x57, 0xa5, 0x44, 0xb8, 0x2d, 0xfd, 0x4e, 0x1c, 0x0a, 0xbd, 0x27, 0x0c, 0xf4, 0xd3, 0x70, 0x5a, 0x5c, 0x07, 0xb8, 0xd8, 0x53, 0xee, 0xea, 0x0e, 0x5d, 0x32, 0x1d, 0x95, 0x75, 0xd8, 0xfe, 0xa4, 0xcd, 0x70, 0xab, 0x3a, 0xf6, 0x5e, 0xd6, 0x1d, 0xb2, 0x20, 0x3a, 0xaa, 0x87, 0xb6, 0xe0, 0xac, 0x69, 0x29, 0xae, 0xa7, 0x9a, 0x4d, 0xd5, 0x69, 0x2a, 0xc1, 0x45, 0x8c, 0xa2, 0x6a, 0x1a, 0x76, 0x5d, 0x8b, 0x95, 0x2a, 0x9f, 0xe5, 0x51, 0xd3, 0xaa, 0x73, 0xe3, 0x60, 0x0f, 0xaf, 0x70, 0xd3, 0xbe, 0x04, 0x4b, 0x1c, 0x97, 0x60, 0x9f, 0x80, 0x6c, 0x47, 0xb5, 0x15, 0x6c, 0x7a, 0xce, 0x21, 0xed, 0x2b, 0x33, 0x72, 0xa6, 0xa3, 0xda, 0x55, 0xf2, 0xfc, 0xf1, 0xb4, 0xf7, 0xdf, 0x4f, 0x40, 0x3e, 0xdc, 0x5b, 0x92, 0x56, 0x5d, 0xa3, 0x75, 0x24, 0x46, 0x77, 0x9a, 0xc7, 0x1f, 0xda, 0x89, 0x2e, 0xae, 0x91, 0x02, 0x53, 0x4e, 0xb3, 0x8e, 0x4f, 0x66, 0x48, 0x52, 0xdc, 0xc9, 0xde, 0x82, 0xd9, 0x29, 0x26, 0x23, 0xf3, 0x27, 0xb4, 0x01, 0xe9, 0x5b, 0x2e, 0xe5, 0x4e, 0x53, 0xee, 0x27, 0x1e, 0xce, 0x7d, 0xa3, 0x4e, 0xc9, 0xb3, 0x37, 0xea, 0xca, 0x4e, 0x4d, 0xde, 0xae, 0x6c, 0xc9, 0x1c, 0x8e, 0xce, 0x40, 0xd2, 0x50, 0xef, 0x1d, 0xf6, 0x96, 0x22, 0x2a, 0x1a, 0x35, 0xf0, 0x67, 0x20, 0x79, 0x17, 0xab, 0xb7, 0x7b, 0x0b, 0x00, 0x15, 0x7d, 0x84, 0xa9, 0xbf, 0x04, 0x29, 0x1a, 0x2f, 0x04, 0xc0, 0x23, 0x26, 0x8d, 0xa1, 0x0c, 0x24, 0xd7, 0x6a, 0x32, 0x49, 0x7f, 0x09, 0xf2, 0x4c, 0xaa, 0xec, 0x6e, 0x56, 0xd7, 0xaa, 0x52, 0x7c, 0x7e, 0x05, 0xd2, 0x2c, 0x08, 0x64, 0x69, 0xf8, 0x61, 0x90, 0xc6, 0xf8, 0x23, 0xe7, 0x88, 0x09, 0xed, 0xfe, 0xf6, 0x6a, 0x55, 0x96, 0xe2, 0xe1, 0xe9, 0x75, 0x21, 0x1f, 0x6e, 0x2b, 0x3f, 0x9e, 0x9c, 0xfa, 0xfb, 0x18, 0xe4, 0x42, 0x6d, 0x22, 0x69, 0x50, 0x54, 0xc3, 0xb0, 0xee, 0x2a, 0xaa, 0xa1, 0xab, 0x2e, 0x4f, 0x0a, 0xa0, 0xa2, 0x0a, 0x91, 0x8c, 0x3a, 0x69, 0x1f, 0x8b, 0xf3, 0x6f, 0xc6, 0x40, 0xea, 0x6f, 0x31, 0xfb, 0x1c, 0x8c, 0xfd, 0x44, 0x1d, 0x7c, 0x23, 0x06, 0x85, 0xde, 0xbe, 0xb2, 0xcf, 0xbd, 0x73, 0x3f, 0x51, 0xf7, 0xde, 0x89, 0xc3, 0x44, 0x4f, 0x37, 0x39, 0xaa, 0x77, 0x9f, 0x83, 0x29, 0xbd, 0x89, 0x3b, 0xb6, 0xe5, 0x61, 0x53, 0x3b, 0x54, 0x0c, 0x7c, 0x07, 0x1b, 0xc5, 0x79, 0xba, 0x51, 0x2c, 0x3d, 0xbc, 0x5f, 0x5d, 0xdc, 0x0c, 0x70, 0x5b, 0x04, 0x56, 0x9e, 0xde, 0x5c, 0xaf, 0x6e, 0xef, 0xd6, 0xf6, 0xaa, 0x3b, 0x6b, 0xaf, 0x28, 0xfb, 0x3b, 0x3f, 0xbb, 0x53, 0x7b, 0x79, 0x47, 0x96, 0xf4, 0x3e, 0xb3, 0x8f, 0x70, 0xa9, 0xef, 0x82, 0xd4, 0xef, 0x14, 0x3a, 0x0d, 0xc3, 0xdc, 0x92, 0xc6, 0xd0, 0x34, 0x4c, 0xee, 0xd4, 0x94, 0xfa, 0xe6, 0x7a, 0x55, 0xa9, 0x5e, 0xbb, 0x56, 0x5d, 0xdb, 0xab, 0xb3, 0x03, 0xbc, 0x6f, 0xbd, 0xd7, 0xbb, 0xa8, 0x5f, 0x4f, 0xc0, 0xf4, 0x10, 0x4f, 0x50, 0x85, 0x9f, 0x1d, 0xd8, 0x71, 0xe6, 0xf9, 0x51, 0xbc, 0x5f, 0x24, 0x25, 0x7f, 0x57, 0x75, 0x3c, 0x7e, 0xd4, 0x78, 0x06, 0x48, 0x94, 0x4c, 0x4f, 0x6f, 0xe9, 0xd8, 0xe1, 0xf7, 0x1d, 0xec, 0x40, 0x31, 0x19, 0xc8, 0xd9, 0x95, 0xc7, 0x4f, 0x01, 0xb2, 0x2d, 0x57, 0xf7, 0xf4, 0x3b, 0x58, 0xd1, 0x4d, 0x71, 0x39, 0x42, 0x0e, 0x18, 0x49, 0x59, 0x12, 0x9a, 0x4d, 0xd3, 0xf3, 0xad, 0x4d, 0xdc, 0x56, 0xfb, 0xac, 0xc9, 0x06, 0x9e, 0x90, 0x25, 0xa1, 0xf1, 0xad, 0xcf, 0x41, 0xbe, 0x69, 0x75, 0x49, 0xd7, 0xc5, 0xec, 0x48, 0xbd, 0x88, 0xc9, 0x39, 0x26, 0xf3, 0x4d, 0x78, 0x3f, 0x1d, 0xdc, 0xca, 0xe4, 0xe5, 0x1c, 0x93, 0x31, 0x93, 0xa7, 0x61, 0x52, 0x6d, 0xb7, 0x1d, 0x42, 0x2e, 0x88, 0xd8, 0x09, 0xa1, 0xe0, 0x8b, 0xa9, 0xe1, 0xec, 0x0d, 0xc8, 0x88, 0x38, 0x90, 0x92, 0x4c, 0x22, 0xa1, 0xd8, 0xec, 0x66, 0x2e, 0xbe, 0x90, 0x95, 0x33, 0xa6, 0x50, 0x9e, 0x83, 0xbc, 0xee, 0x2a, 0xc1, 0x25, 0x73, 0x7c, 0x2e, 0xbe, 0x90, 0x91, 0x73, 0xba, 0xeb, 0x5f, 0xd0, 0xcd, 0xbf, 0x15, 0x87, 0x42, 0xef, 0x25, 0x39, 0x5a, 0x87, 0x8c, 0x61, 0x69, 0x2a, 0x4d, 0x2d, 0xf6, 0x0b, 0xcd, 0x42, 0xc4, 0xbd, 0xfa, 0xe2, 0x16, 0xb7, 0x97, 0x7d, 0xe4, 0xec, 0x3f, 0xc7, 0x20, 0x23, 0xc4, 0xe8, 0x14, 0x24, 0x6d, 0xd5, 0x3b, 0xa0, 0x74, 0xa9, 0xd5, 0xb8, 0x14, 0x93, 0xe9, 0x33, 0x91, 0xbb, 0xb6, 0x6a, 0xd2, 0x14, 0xe0, 0x72, 0xf2, 0x4c, 0xe6, 0xd5, 0xc0, 0x6a, 0x93, 0x1e, 0x3f, 0xac, 0x4e, 0x07, 0x9b, 0x9e, 0x2b, 0xe6, 0x95, 0xcb, 0xd7, 0xb8, 0x18, 0x3d, 0x07, 0x53, 0x9e, 0xa3, 0xea, 0x46, 0x8f, 0x6d, 0x92, 0xda, 0x4a, 0x42, 0xe1, 0x1b, 0x97, 0xe1, 0x8c, 0xe0, 0x6d, 0x62, 0x4f, 0xd5, 0x0e, 0x70, 0x33, 0x00, 0xa5, 0xe9, 0x0d, 0xec, 0x69, 0x6e, 0xb0, 0xce, 0xf5, 0x02, 0x3b, 0xff, 0xbd, 0x18, 0x4c, 0x89, 0x03, 0x53, 0xd3, 0x0f, 0xd6, 0x36, 0x80, 0x6a, 0x9a, 0x96, 0x17, 0x0e, 0xd7, 0x60, 0x2a, 0x0f, 0xe0, 0x16, 0x2b, 0x3e, 0x48, 0x0e, 0x11, 0xcc, 0x76, 0x00, 0x02, 0xcd, 0xb1, 0x61, 0x3b, 0x0b, 0x39, 0xfe, 0x0b, 0x08, 0xfd, 0x19, 0x8d, 0x1d, 0xb1, 0x81, 0x89, 0xc8, 0xc9, 0x0a, 0xcd, 0x40, 0xaa, 0x81, 0xdb, 0xba, 0xc9, 0xef, 0x35, 0xd9, 0x83, 0xb8, 0xab, 0x4d, 0xfa, 0x77, 0xb5, 0xab, 0x37, 0x61, 0x5a, 0xb3, 0x3a, 0xfd, 0xee, 0xae, 0x4a, 0x7d, 0xc7, 0x7c, 0xf7, 0x7a, 0xec, 0xb3, 0x10, 0xb4, 0x98, 0x5f, 0x8e, 0x27, 0x36, 0x76, 0x57, 0xbf, 0x1a, 0x9f, 0xdd, 0x60, 0xb8, 0x5d, 0x31, 0x4c, 0x19, 0xb7, 0x0c, 0xac, 0x11, 0xd7, 0xe1, 0x87, 0x4f, 0xc1, 0xf3, 0x6d, 0xdd, 0x3b, 0xe8, 0x36, 0x16, 0x35, 0xab, 0xb3, 0xd4, 0xb6, 0xda, 0x56, 0xf0, 0xb3, 0x21, 0x79, 0xa2, 0x0f, 0xf4, 0x3f, 0xfe, 0xd3, 0x61, 0xd6, 0x97, 0xce, 0x46, 0xfe, 0xce, 0x58, 0xde, 0x81, 0x69, 0x6e, 0xac, 0xd0, 0xdf, 0x2e, 0xd8, 0x11, 0x02, 0x3d, 0xf4, 0xfe, 0xa7, 0xf8, 0x8d, 0x77, 0x69, 0xad, 0x96, 0xa7, 0x38, 0x94, 0xe8, 0xd8, 0x29, 0xa3, 0x2c, 0xc3, 0x23, 0x3d, 0x7c, 0x6c, 0x5d, 0x62, 0x27, 0x82, 0xf1, 0x3b, 0x9c, 0x71, 0x3a, 0xc4, 0x58, 0xe7, 0xd0, 0xf2, 0x1a, 0x4c, 0x9c, 0x84, 0xeb, 0x1f, 0x39, 0x57, 0x1e, 0x87, 0x49, 0x36, 0x60, 0x92, 0x92, 0x68, 0x5d, 0xd7, 0xb3, 0x3a, 0x74, 0xd3, 0x7b, 0x38, 0xcd, 0x3f, 0xbd, 0xcb, 0x16, 0x4a, 0x81, 0xc0, 0xd6, 0x7c, 0x54, 0xb9, 0x0c, 0xf4, 0xe7, 0x9a, 0x26, 0xd6, 0x8c, 0x08, 0x86, 0xb7, 0xb9, 0x23, 0xbe, 0x7d, 0xf9, 0x33, 0x30, 0x43, 0xfe, 0xa7, 0x7b, 0x52, 0xd8, 0x93, 0xe8, 0xdb, 0xae, 0xe2, 0xf7, 0x5e, 0x63, 0x6b, 0x71, 0xda, 0x27, 0x08, 0xf9, 0x14, 0x9a, 0xc5, 0x36, 0xf6, 0x3c, 0xec, 0xb8, 0x8a, 0x6a, 0x0c, 0x73, 0x2f, 0x74, 0x5d, 0x50, 0xfc, 0xe2, 0x7b, 0xbd, 0xb3, 0xb8, 0xc1, 0x90, 0x15, 0xc3, 0x28, 0xef, 0xc3, 0xe9, 0x21, 0x59, 0x31, 0x02, 0xe7, 0xeb, 0x9c, 0x73, 0x66, 0x20, 0x33, 0x08, 0xed, 0x2e, 0x08, 0xb9, 0x3f, 0x97, 0x23, 0x70, 0xfe, 0x3e, 0xe7, 0x44, 0x1c, 0x2b, 0xa6, 0x94, 0x30, 0xde, 0x80, 0xa9, 0x3b, 0xd8, 0x69, 0x58, 0x2e, 0xbf, 0xa2, 0x19, 0x81, 0xee, 0x0d, 0x4e, 0x37, 0xc9, 0x81, 0xf4, 0xce, 0x86, 0x70, 0x5d, 0x81, 0x4c, 0x4b, 0xd5, 0xf0, 0x08, 0x14, 0x5f, 0xe2, 0x14, 0xe3, 0xc4, 0x9e, 0x40, 0x2b, 0x90, 0x6f, 0x5b, 0xbc, 0x2c, 0x45, 0xc3, 0xdf, 0xe4, 0xf0, 0x9c, 0xc0, 0x70, 0x0a, 0xdb, 0xb2, 0xbb, 0x06, 0xa9, 0x59, 0xd1, 0x14, 0x7f, 0x20, 0x28, 0x04, 0x86, 0x53, 0x9c, 0x20, 0xac, 0x7f, 0x28, 0x28, 0xdc, 0x50, 0x3c, 0x5f, 0x82, 0x9c, 0x65, 0x1a, 0x87, 0x96, 0x39, 0x8a, 0x13, 0x7f, 0xc4, 0x19, 0x80, 0x43, 0x08, 0xc1, 0x55, 0xc8, 0x8e, 0x3a, 0x11, 0x7f, 0xfc, 0x9e, 0x58, 0x1e, 0x62, 0x06, 0x36, 0x60, 0x52, 0x6c, 0x50, 0xba, 0x65, 0x8e, 0x40, 0xf1, 0x27, 0x9c, 0xa2, 0x10, 0x82, 0xf1, 0x61, 0x78, 0xd8, 0xf5, 0xda, 0x78, 0x14, 0x92, 0xb7, 0xc4, 0x30, 0x38, 0x84, 0x87, 0xb2, 0x81, 0x4d, 0xed, 0x60, 0x34, 0x86, 0xaf, 0x88, 0x50, 0x0a, 0x0c, 0xa1, 0x58, 0x83, 0x89, 0x8e, 0xea, 0xb8, 0x07, 0xaa, 0x31, 0xd2, 0x74, 0xfc, 0x29, 0xe7, 0xc8, 0xfb, 0x20, 0x1e, 0x91, 0xae, 0x79, 0x12, 0x9a, 0xaf, 0x8a, 0x88, 0x84, 0x60, 0x7c, 0xe9, 0xb9, 0x1e, 0xbd, 0xcf, 0x3a, 0x09, 0xdb, 0xd7, 0xc4, 0xd2, 0x63, 0xd8, 0xed, 0x30, 0xe3, 0x55, 0xc8, 0xba, 0xfa, 0xbd, 0x91, 0x68, 0xfe, 0x4c, 0xcc, 0x34, 0x05, 0x10, 0xf0, 0x2b, 0x70, 0x66, 0x68, 0x99, 0x18, 0x81, 0xec, 0xcf, 0x39, 0xd9, 0xa9, 0x21, 0xa5, 0x82, 0x6f, 0x09, 0x27, 0xa5, 0xfc, 0x0b, 0xb1, 0x25, 0xe0, 0x3e, 0xae, 0x5d, 0x72, 0x50, 0x70, 0xd5, 0xd6, 0xc9, 0xa2, 0xf6, 0x97, 0x22, 0x6a, 0x0c, 0xdb, 0x13, 0xb5, 0x3d, 0x38, 0xc5, 0x19, 0x4f, 0x36, 0xaf, 0x5f, 0x17, 0x1b, 0x2b, 0x43, 0xef, 0xf7, 0xce, 0xee, 0xcf, 0xc1, 0xac, 0x1f, 0x4e, 0xd1, 0x91, 0xba, 0x4a, 0x47, 0xb5, 0x47, 0x60, 0xfe, 0x06, 0x67, 0x16, 0x3b, 0xbe, 0xdf, 0xd2, 0xba, 0xdb, 0xaa, 0x4d, 0xc8, 0x6f, 0x42, 0x51, 0x90, 0x77, 0x4d, 0x07, 0x6b, 0x56, 0xdb, 0xd4, 0xef, 0xe1, 0xe6, 0x08, 0xd4, 0x7f, 0xd5, 0x37, 0x55, 0xfb, 0x21, 0x38, 0x61, 0xde, 0x04, 0xc9, 0xef, 0x55, 0x14, 0xbd, 0x63, 0x5b, 0x8e, 0x17, 0xc1, 0xf8, 0x4d, 0x31, 0x53, 0x3e, 0x6e, 0x93, 0xc2, 0xca, 0x55, 0x28, 0xd0, 0xc7, 0x51, 0x53, 0xf2, 0xaf, 0x39, 0xd1, 0x44, 0x80, 0xe2, 0x1b, 0x87, 0x66, 0x75, 0x6c, 0xd5, 0x19, 0x65, 0xff, 0xfb, 0x1b, 0xb1, 0x71, 0x70, 0x08, 0xdf, 0x38, 0xbc, 0x43, 0x1b, 0x93, 0x6a, 0x3f, 0x02, 0xc3, 0xb7, 0xc4, 0xc6, 0x21, 0x30, 0x9c, 0x42, 0x34, 0x0c, 0x23, 0x50, 0xfc, 0xad, 0xa0, 0x10, 0x18, 0x42, 0xf1, 0xe9, 0xa0, 0xd0, 0x3a, 0xb8, 0xad, 0xbb, 0x9e, 0xc3, 0xfa, 0xe0, 0x87, 0x53, 0x7d, 0xfb, 0xbd, 0xde, 0x26, 0x4c, 0x0e, 0x41, 0xcb, 0x37, 0x60, 0xb2, 0xaf, 0xc5, 0x40, 0x51, 0xdf, 0x7e, 0x14, 0x7f, 0xe1, 0x03, 0xbe, 0x19, 0xf5, 0x76, 0x18, 0xe5, 0x2d, 0x32, 0xef, 0xbd, 0x7d, 0x40, 0x34, 0xd9, 0x6b, 0x1f, 0xf8, 0x53, 0xdf, 0xd3, 0x06, 0x94, 0xaf, 0xc1, 0x44, 0x4f, 0x0f, 0x10, 0x4d, 0xf5, 0x8b, 0x9c, 0x2a, 0x1f, 0x6e, 0x01, 0xca, 0x2b, 0x90, 0x24, 0xf5, 0x3c, 0x1a, 0xfe, 0x4b, 0x1c, 0x4e, 0xcd, 0xcb, 0x9f, 0x84, 0x8c, 0xa8, 0xe3, 0xd1, 0xd0, 0x5f, 0xe6, 0x50, 0x1f, 0x42, 0xe0, 0xa2, 0x86, 0x47, 0xc3, 0x7f, 0x45, 0xc0, 0x05, 0x84, 0xc0, 0x47, 0x0f, 0xe1, 0x3f, 0xfc, 0x6a, 0x92, 0xef, 0xc3, 0x22, 0x76, 0x57, 0x61, 0x9c, 0x17, 0xef, 0x68, 0xf4, 0xe7, 0xf9, 0xcb, 0x05, 0xa2, 0x7c, 0x09, 0x52, 0x23, 0x06, 0xfc, 0xd7, 0x38, 0x94, 0xd9, 0x97, 0xd7, 0x20, 0x17, 0x2a, 0xd8, 0xd1, 0xf0, 0x5f, 0xe7, 0xf0, 0x30, 0x8a, 0xb8, 0xce, 0x0b, 0x76, 0x34, 0xc1, 0x6f, 0x08, 0xd7, 0x39, 0x82, 0x84, 0x4d, 0xd4, 0xea, 0x68, 0xf4, 0x6f, 0x8a, 0xa8, 0x0b, 0x48, 0xf9, 0x25, 0xc8, 0xfa, 0xfb, 0x6f, 0x34, 0xfe, 0xb7, 0x38, 0x3e, 0xc0, 0x90, 0x08, 0x84, 0xf6, 0xff, 0x68, 0x8a, 0xdf, 0x16, 0x11, 0x08, 0xa1, 0xc8, 0x32, 0xea, 0xaf, 0xe9, 0xd1, 0x4c, 0xbf, 0x23, 0x96, 0x51, 0x5f, 0x49, 0x27, 0xb3, 0x49, 0xb7, 0xc1, 0x68, 0x8a, 0xdf, 0x15, 0xb3, 0x49, 0xed, 0x89, 0x1b, 0xfd, 0x45, 0x32, 0x9a, 0xe3, 0xf7, 0x84, 0x1b, 0x7d, 0x35, 0xb2, 0xbc, 0x0b, 0x68, 0xb0, 0x40, 0x46, 0xf3, 0x7d, 0x81, 0xf3, 0x4d, 0x0d, 0xd4, 0xc7, 0xf2, 0xcb, 0x70, 0x6a, 0x78, 0x71, 0x8c, 0x66, 0xfd, 0xe2, 0x07, 0x7d, 0xc7, 0x99, 0x70, 0x6d, 0x2c, 0xef, 0x05, 0xbb, 0x6c, 0xb8, 0x30, 0x46, 0xd3, 0xbe, 0xfe, 0x41, 0xef, 0x46, 0x1b, 0xae, 0x8b, 0xe5, 0x0a, 0x40, 0x50, 0x93, 0xa2, 0xb9, 0xde, 0xe0, 0x5c, 0x21, 0x10, 0x59, 0x1a, 0xbc, 0x24, 0x45, 0xe3, 0xbf, 0x24, 0x96, 0x06, 0x47, 0x90, 0xa5, 0x21, 0xaa, 0x51, 0x34, 0xfa, 0x4d, 0xb1, 0x34, 0x04, 0xa4, 0x7c, 0x15, 0x32, 0x66, 0xd7, 0x30, 0x48, 0x6e, 0xa1, 0x87, 0x7f, 0xce, 0x54, 0xfc, 0xf7, 0x0f, 0x39, 0x58, 0x00, 0xca, 0x2b, 0x90, 0xc2, 0x9d, 0x06, 0x6e, 0x46, 0x21, 0xff, 0xe3, 0x43, 0xb1, 0x9f, 0x10, 0xeb, 0xf2, 0x4b, 0x00, 0xec, 0x30, 0x4d, 0x7f, 0x25, 0x8a, 0xc0, 0xfe, 0xe7, 0x87, 0xfc, 0x4b, 0x89, 0x00, 0x12, 0x10, 0xb0, 0xef, 0x2e, 0x1e, 0x4e, 0xf0, 0x5e, 0x2f, 0x01, 0x3d, 0x80, 0x5f, 0x81, 0xf1, 0x5b, 0xae, 0x65, 0x7a, 0x6a, 0x3b, 0x0a, 0xfd, 0x5f, 0x1c, 0x2d, 0xec, 0x49, 0xc0, 0x3a, 0x96, 0x83, 0x3d, 0xb5, 0xed, 0x46, 0x61, 0xff, 0x9b, 0x63, 0x7d, 0x00, 0x01, 0x6b, 0xaa, 0xeb, 0x8d, 0x32, 0xee, 0xff, 0x11, 0x60, 0x01, 0x20, 0x4e, 0x93, 0xff, 0x6f, 0xe3, 0xc3, 0x28, 0xec, 0xfb, 0xc2, 0x69, 0x6e, 0x5f, 0xfe, 0x24, 0x64, 0xc9, 0xbf, 0xec, 0xeb, 0xa1, 0x08, 0xf0, 0xff, 0x72, 0x70, 0x80, 0x20, 0x6f, 0x76, 0xbd, 0xa6, 0xa7, 0x47, 0x07, 0xfb, 0xff, 0xf8, 0x4c, 0x0b, 0xfb, 0x72, 0x05, 0x72, 0xae, 0xd7, 0x6c, 0x76, 0x79, 0x47, 0x13, 0x01, 0xff, 0xe1, 0x87, 0xfe, 0x21, 0xd7, 0xc7, 0xac, 0x9e, 0x1b, 0x7e, 0x59, 0x07, 0x1b, 0xd6, 0x86, 0xc5, 0xae, 0xe9, 0xe0, 0xf5, 0x14, 0x3c, 0xaa, 0x59, 0x9d, 0x86, 0xe5, 0x2e, 0x85, 0xb6, 0xa1, 0x25, 0xcb, 0xe4, 0xf6, 0x28, 0x61, 0x99, 0x78, 0xf6, 0x64, 0x17, 0x73, 0xf3, 0x67, 0x20, 0x55, 0xef, 0x36, 0x1a, 0x87, 0x48, 0x82, 0x84, 0xdb, 0x6d, 0xf0, 0x2f, 0x5c, 0xc8, 0xbf, 0xf3, 0xdf, 0x4f, 0x40, 0xae, 0xae, 0x76, 0x6c, 0x03, 0xd7, 0x4c, 0x5c, 0x6b, 0xa1, 0x22, 0xa4, 0xe9, 0x38, 0x5e, 0xa4, 0x46, 0xb1, 0xeb, 0x63, 0x32, 0x7f, 0xf6, 0x35, 0xcb, 0xf4, 0xb6, 0x32, 0xee, 0x6b, 0x96, 0x7d, 0xcd, 0x79, 0x76, 0x59, 0xe9, 0x6b, 0xce, 0xfb, 0x9a, 0x0b, 0xf4, 0xca, 0x32, 0xe1, 0x6b, 0x2e, 0xf8, 0x9a, 0x15, 0x7a, 0x25, 0x3f, 0xe1, 0x6b, 0x56, 0x7c, 0xcd, 0x45, 0x7a, 0x09, 0x9f, 0xf4, 0x35, 0x17, 0x7d, 0xcd, 0x25, 0x7a, 0xf7, 0x3e, 0xe5, 0x6b, 0x2e, 0xf9, 0x9a, 0xcb, 0xf4, 0xbe, 0x1d, 0xf9, 0x9a, 0xcb, 0xbe, 0xe6, 0x0a, 0xfd, 0x90, 0x65, 0xdc, 0xd7, 0x5c, 0x41, 0xb3, 0x30, 0xce, 0x46, 0xf6, 0x02, 0xfd, 0x51, 0x76, 0xf2, 0xfa, 0x98, 0x2c, 0x04, 0x81, 0xee, 0x45, 0xfa, 0xb1, 0x4a, 0x3a, 0xd0, 0xbd, 0x18, 0xe8, 0x96, 0xe9, 0x27, 0xe7, 0x52, 0xa0, 0x5b, 0x0e, 0x74, 0xe7, 0x8b, 0x13, 0x64, 0xfa, 0x03, 0xdd, 0xf9, 0x40, 0x77, 0xa1, 0x58, 0x20, 0xf1, 0x0f, 0x74, 0x17, 0x02, 0xdd, 0x4a, 0x71, 0x72, 0x2e, 0xb6, 0x90, 0x0f, 0x74, 0x2b, 0xe8, 0x79, 0xc8, 0xb9, 0xdd, 0x86, 0xc2, 0xbf, 0x21, 0xa0, 0x1f, 0xc5, 0xe4, 0x96, 0x61, 0x91, 0x64, 0x04, 0x9d, 0xd4, 0xeb, 0x63, 0x32, 0xb8, 0xdd, 0x06, 0xdf, 0x1f, 0x57, 0xf3, 0x40, 0xaf, 0x13, 0x14, 0xfa, 0x29, 0xe8, 0xea, 0xfa, 0xdb, 0x0f, 0x4a, 0x63, 0xdf, 0x7d, 0x50, 0x1a, 0xfb, 0x97, 0x07, 0xa5, 0xb1, 0x77, 0x1e, 0x94, 0x62, 0xef, 0x3f, 0x28, 0xc5, 0x7e, 0xf4, 0xa0, 0x14, 0xbb, 0x7f, 0x54, 0x8a, 0x7d, 0xe5, 0xa8, 0x14, 0xfb, 0xfa, 0x51, 0x29, 0xf6, 0xed, 0xa3, 0x52, 0xec, 0xed, 0xa3, 0xd2, 0xd8, 0x77, 0x8f, 0x4a, 0xb1, 0x77, 0x8e, 0x4a, 0xb1, 0x1f, 0x1c, 0x95, 0xc6, 0xde, 0x3f, 0x2a, 0xc5, 0x7e, 0x74, 0x54, 0x1a, 0xbb, 0xff, 0xaf, 0xa5, 0xb1, 0x46, 0x9a, 0xa6, 0xd1, 0xf9, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xc6, 0x2e, 0xe1, 0x8c, 0x41, 0x32, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *Subby) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Subby") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Subby but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Subby but is not nil && this == nil") } if this.Sub != that1.Sub { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } return nil } func (this *Subby) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Subby) if !ok { that2, ok := that.(Subby) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Sub != that1.Sub { return false } return true } func (this *SampleOneOf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf) if !ok { that2, ok := that.(SampleOneOf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf but is not nil && this == nil") } if that1.TestOneof == nil { if this.TestOneof != nil { return fmt.Errorf("this.TestOneof != nil && that1.TestOneof == nil") } } else if this.TestOneof == nil { return fmt.Errorf("this.TestOneof == nil && that1.TestOneof != nil") } else if err := this.TestOneof.VerboseEqual(that1.TestOneof); err != nil { return err } return nil } func (this *SampleOneOf_Field1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field1) if !ok { that2, ok := that.(SampleOneOf_Field1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field1 but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *SampleOneOf_Field2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field2) if !ok { that2, ok := that.(SampleOneOf_Field2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field2 but is not nil && this == nil") } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } return nil } func (this *SampleOneOf_Field3) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field3) if !ok { that2, ok := that.(SampleOneOf_Field3) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field3") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field3 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field3 but is not nil && this == nil") } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *SampleOneOf_Field4) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field4) if !ok { that2, ok := that.(SampleOneOf_Field4) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field4") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field4 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field4 but is not nil && this == nil") } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } return nil } func (this *SampleOneOf_Field5) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field5) if !ok { that2, ok := that.(SampleOneOf_Field5) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field5") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field5 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field5 but is not nil && this == nil") } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } return nil } func (this *SampleOneOf_Field6) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field6) if !ok { that2, ok := that.(SampleOneOf_Field6) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field6") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field6 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field6 but is not nil && this == nil") } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } return nil } func (this *SampleOneOf_Field7) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field7) if !ok { that2, ok := that.(SampleOneOf_Field7) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field7") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field7 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field7 but is not nil && this == nil") } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } return nil } func (this *SampleOneOf_Field8) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field8) if !ok { that2, ok := that.(SampleOneOf_Field8) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field8") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field8 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field8 but is not nil && this == nil") } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } return nil } func (this *SampleOneOf_Field9) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field9) if !ok { that2, ok := that.(SampleOneOf_Field9) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field9") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field9 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field9 but is not nil && this == nil") } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } return nil } func (this *SampleOneOf_Field10) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field10) if !ok { that2, ok := that.(SampleOneOf_Field10) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field10") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field10 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field10 but is not nil && this == nil") } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } return nil } func (this *SampleOneOf_Field11) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field11) if !ok { that2, ok := that.(SampleOneOf_Field11) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field11") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field11 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field11 but is not nil && this == nil") } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } return nil } func (this *SampleOneOf_Field12) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field12) if !ok { that2, ok := that.(SampleOneOf_Field12) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field12") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field12 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field12 but is not nil && this == nil") } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } return nil } func (this *SampleOneOf_Field13) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field13) if !ok { that2, ok := that.(SampleOneOf_Field13) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field13") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field13 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field13 but is not nil && this == nil") } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } return nil } func (this *SampleOneOf_Field14) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field14) if !ok { that2, ok := that.(SampleOneOf_Field14) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field14") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field14 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field14 but is not nil && this == nil") } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } return nil } func (this *SampleOneOf_Field15) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_Field15) if !ok { that2, ok := that.(SampleOneOf_Field15) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_Field15") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_Field15 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_Field15 but is not nil && this == nil") } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } return nil } func (this *SampleOneOf_SubMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SampleOneOf_SubMessage) if !ok { that2, ok := that.(SampleOneOf_SubMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SampleOneOf_SubMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SampleOneOf_SubMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SampleOneOf_SubMessage but is not nil && this == nil") } if !this.SubMessage.Equal(that1.SubMessage) { return fmt.Errorf("SubMessage this(%v) Not Equal that(%v)", this.SubMessage, that1.SubMessage) } return nil } func (this *SampleOneOf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf) if !ok { that2, ok := that.(SampleOneOf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.TestOneof == nil { if this.TestOneof != nil { return false } } else if this.TestOneof == nil { return false } else if !this.TestOneof.Equal(that1.TestOneof) { return false } return true } func (this *SampleOneOf_Field1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field1) if !ok { that2, ok := that.(SampleOneOf_Field1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } return true } func (this *SampleOneOf_Field2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field2) if !ok { that2, ok := that.(SampleOneOf_Field2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != that1.Field2 { return false } return true } func (this *SampleOneOf_Field3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field3) if !ok { that2, ok := that.(SampleOneOf_Field3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field3 != that1.Field3 { return false } return true } func (this *SampleOneOf_Field4) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field4) if !ok { that2, ok := that.(SampleOneOf_Field4) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field4 != that1.Field4 { return false } return true } func (this *SampleOneOf_Field5) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field5) if !ok { that2, ok := that.(SampleOneOf_Field5) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field5 != that1.Field5 { return false } return true } func (this *SampleOneOf_Field6) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field6) if !ok { that2, ok := that.(SampleOneOf_Field6) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field6 != that1.Field6 { return false } return true } func (this *SampleOneOf_Field7) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field7) if !ok { that2, ok := that.(SampleOneOf_Field7) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field7 != that1.Field7 { return false } return true } func (this *SampleOneOf_Field8) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field8) if !ok { that2, ok := that.(SampleOneOf_Field8) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field8 != that1.Field8 { return false } return true } func (this *SampleOneOf_Field9) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field9) if !ok { that2, ok := that.(SampleOneOf_Field9) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field9 != that1.Field9 { return false } return true } func (this *SampleOneOf_Field10) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field10) if !ok { that2, ok := that.(SampleOneOf_Field10) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field10 != that1.Field10 { return false } return true } func (this *SampleOneOf_Field11) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field11) if !ok { that2, ok := that.(SampleOneOf_Field11) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field11 != that1.Field11 { return false } return true } func (this *SampleOneOf_Field12) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field12) if !ok { that2, ok := that.(SampleOneOf_Field12) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field12 != that1.Field12 { return false } return true } func (this *SampleOneOf_Field13) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field13) if !ok { that2, ok := that.(SampleOneOf_Field13) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field13 != that1.Field13 { return false } return true } func (this *SampleOneOf_Field14) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field14) if !ok { that2, ok := that.(SampleOneOf_Field14) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field14 != that1.Field14 { return false } return true } func (this *SampleOneOf_Field15) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_Field15) if !ok { that2, ok := that.(SampleOneOf_Field15) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } return true } func (this *SampleOneOf_SubMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SampleOneOf_SubMessage) if !ok { that2, ok := that.(SampleOneOf_SubMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.SubMessage.Equal(that1.SubMessage) { return false } return true } func (this *Subby) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&one.Subby{") s = append(s, "Sub: "+fmt.Sprintf("%#v", this.Sub)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *SampleOneOf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 20) s = append(s, "&one.SampleOneOf{") if this.TestOneof != nil { s = append(s, "TestOneof: "+fmt.Sprintf("%#v", this.TestOneof)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *SampleOneOf_Field1) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field1{` + `Field1:` + fmt.Sprintf("%#v", this.Field1) + `}`}, ", ") return s } func (this *SampleOneOf_Field2) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field2{` + `Field2:` + fmt.Sprintf("%#v", this.Field2) + `}`}, ", ") return s } func (this *SampleOneOf_Field3) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field3{` + `Field3:` + fmt.Sprintf("%#v", this.Field3) + `}`}, ", ") return s } func (this *SampleOneOf_Field4) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field4{` + `Field4:` + fmt.Sprintf("%#v", this.Field4) + `}`}, ", ") return s } func (this *SampleOneOf_Field5) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field5{` + `Field5:` + fmt.Sprintf("%#v", this.Field5) + `}`}, ", ") return s } func (this *SampleOneOf_Field6) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field6{` + `Field6:` + fmt.Sprintf("%#v", this.Field6) + `}`}, ", ") return s } func (this *SampleOneOf_Field7) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field7{` + `Field7:` + fmt.Sprintf("%#v", this.Field7) + `}`}, ", ") return s } func (this *SampleOneOf_Field8) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field8{` + `Field8:` + fmt.Sprintf("%#v", this.Field8) + `}`}, ", ") return s } func (this *SampleOneOf_Field9) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field9{` + `Field9:` + fmt.Sprintf("%#v", this.Field9) + `}`}, ", ") return s } func (this *SampleOneOf_Field10) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field10{` + `Field10:` + fmt.Sprintf("%#v", this.Field10) + `}`}, ", ") return s } func (this *SampleOneOf_Field11) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field11{` + `Field11:` + fmt.Sprintf("%#v", this.Field11) + `}`}, ", ") return s } func (this *SampleOneOf_Field12) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field12{` + `Field12:` + fmt.Sprintf("%#v", this.Field12) + `}`}, ", ") return s } func (this *SampleOneOf_Field13) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field13{` + `Field13:` + fmt.Sprintf("%#v", this.Field13) + `}`}, ", ") return s } func (this *SampleOneOf_Field14) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field14{` + `Field14:` + fmt.Sprintf("%#v", this.Field14) + `}`}, ", ") return s } func (this *SampleOneOf_Field15) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_Field15{` + `Field15:` + fmt.Sprintf("%#v", this.Field15) + `}`}, ", ") return s } func (this *SampleOneOf_SubMessage) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&one.SampleOneOf_SubMessage{` + `SubMessage:` + fmt.Sprintf("%#v", this.SubMessage) + `}`}, ", ") return s } func valueToGoStringOne(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedSubby(r randyOne, easy bool) *Subby { this := &Subby{} this.Sub = string(randStringOne(r)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedSampleOneOf(r randyOne, easy bool) *SampleOneOf { this := &SampleOneOf{} oneofNumber_TestOneof := []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}[r.Intn(16)] switch oneofNumber_TestOneof { case 1: this.TestOneof = NewPopulatedSampleOneOf_Field1(r, easy) case 2: this.TestOneof = NewPopulatedSampleOneOf_Field2(r, easy) case 3: this.TestOneof = NewPopulatedSampleOneOf_Field3(r, easy) case 4: this.TestOneof = NewPopulatedSampleOneOf_Field4(r, easy) case 5: this.TestOneof = NewPopulatedSampleOneOf_Field5(r, easy) case 6: this.TestOneof = NewPopulatedSampleOneOf_Field6(r, easy) case 7: this.TestOneof = NewPopulatedSampleOneOf_Field7(r, easy) case 8: this.TestOneof = NewPopulatedSampleOneOf_Field8(r, easy) case 9: this.TestOneof = NewPopulatedSampleOneOf_Field9(r, easy) case 10: this.TestOneof = NewPopulatedSampleOneOf_Field10(r, easy) case 11: this.TestOneof = NewPopulatedSampleOneOf_Field11(r, easy) case 12: this.TestOneof = NewPopulatedSampleOneOf_Field12(r, easy) case 13: this.TestOneof = NewPopulatedSampleOneOf_Field13(r, easy) case 14: this.TestOneof = NewPopulatedSampleOneOf_Field14(r, easy) case 15: this.TestOneof = NewPopulatedSampleOneOf_Field15(r, easy) case 16: this.TestOneof = NewPopulatedSampleOneOf_SubMessage(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedSampleOneOf_Field1(r randyOne, easy bool) *SampleOneOf_Field1 { this := &SampleOneOf_Field1{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } return this } func NewPopulatedSampleOneOf_Field2(r randyOne, easy bool) *SampleOneOf_Field2 { this := &SampleOneOf_Field2{} this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } return this } func NewPopulatedSampleOneOf_Field3(r randyOne, easy bool) *SampleOneOf_Field3 { this := &SampleOneOf_Field3{} this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } return this } func NewPopulatedSampleOneOf_Field4(r randyOne, easy bool) *SampleOneOf_Field4 { this := &SampleOneOf_Field4{} this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } return this } func NewPopulatedSampleOneOf_Field5(r randyOne, easy bool) *SampleOneOf_Field5 { this := &SampleOneOf_Field5{} this.Field5 = uint32(r.Uint32()) return this } func NewPopulatedSampleOneOf_Field6(r randyOne, easy bool) *SampleOneOf_Field6 { this := &SampleOneOf_Field6{} this.Field6 = uint64(uint64(r.Uint32())) return this } func NewPopulatedSampleOneOf_Field7(r randyOne, easy bool) *SampleOneOf_Field7 { this := &SampleOneOf_Field7{} this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } return this } func NewPopulatedSampleOneOf_Field8(r randyOne, easy bool) *SampleOneOf_Field8 { this := &SampleOneOf_Field8{} this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } return this } func NewPopulatedSampleOneOf_Field9(r randyOne, easy bool) *SampleOneOf_Field9 { this := &SampleOneOf_Field9{} this.Field9 = uint32(r.Uint32()) return this } func NewPopulatedSampleOneOf_Field10(r randyOne, easy bool) *SampleOneOf_Field10 { this := &SampleOneOf_Field10{} this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } return this } func NewPopulatedSampleOneOf_Field11(r randyOne, easy bool) *SampleOneOf_Field11 { this := &SampleOneOf_Field11{} this.Field11 = uint64(uint64(r.Uint32())) return this } func NewPopulatedSampleOneOf_Field12(r randyOne, easy bool) *SampleOneOf_Field12 { this := &SampleOneOf_Field12{} this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } return this } func NewPopulatedSampleOneOf_Field13(r randyOne, easy bool) *SampleOneOf_Field13 { this := &SampleOneOf_Field13{} this.Field13 = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedSampleOneOf_Field14(r randyOne, easy bool) *SampleOneOf_Field14 { this := &SampleOneOf_Field14{} this.Field14 = string(randStringOne(r)) return this } func NewPopulatedSampleOneOf_Field15(r randyOne, easy bool) *SampleOneOf_Field15 { this := &SampleOneOf_Field15{} v1 := r.Intn(100) this.Field15 = make([]byte, v1) for i := 0; i < v1; i++ { this.Field15[i] = byte(r.Intn(256)) } return this } func NewPopulatedSampleOneOf_SubMessage(r randyOne, easy bool) *SampleOneOf_SubMessage { this := &SampleOneOf_SubMessage{} this.SubMessage = NewPopulatedSubby(r, easy) return this } type randyOne interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneOne(r randyOne) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringOne(r randyOne) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneOne(r) } return string(tmps) } func randUnrecognizedOne(r randyOne, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldOne(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldOne(dAtA []byte, r randyOne, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateOne(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateOne(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateOne(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateOne(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Subby) Size() (n int) { var l int _ = l l = len(m.Sub) if l > 0 { n += 1 + l + sovOne(uint64(l)) } return n } func (m *SampleOneOf) Size() (n int) { var l int _ = l if m.TestOneof != nil { n += m.TestOneof.Size() } return n } func (m *SampleOneOf_Field1) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field2) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field3) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field3)) return n } func (m *SampleOneOf_Field4) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field4)) return n } func (m *SampleOneOf_Field5) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field5)) return n } func (m *SampleOneOf_Field6) Size() (n int) { var l int _ = l n += 1 + sovOne(uint64(m.Field6)) return n } func (m *SampleOneOf_Field7) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field7)) return n } func (m *SampleOneOf_Field8) Size() (n int) { var l int _ = l n += 1 + sozOne(uint64(m.Field8)) return n } func (m *SampleOneOf_Field9) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field10) Size() (n int) { var l int _ = l n += 5 return n } func (m *SampleOneOf_Field11) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field12) Size() (n int) { var l int _ = l n += 9 return n } func (m *SampleOneOf_Field13) Size() (n int) { var l int _ = l n += 2 return n } func (m *SampleOneOf_Field14) Size() (n int) { var l int _ = l l = len(m.Field14) n += 1 + l + sovOne(uint64(l)) return n } func (m *SampleOneOf_Field15) Size() (n int) { var l int _ = l if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovOne(uint64(l)) } return n } func (m *SampleOneOf_SubMessage) Size() (n int) { var l int _ = l if m.SubMessage != nil { l = m.SubMessage.Size() n += 2 + l + sovOne(uint64(l)) } return n } func sovOne(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozOne(x uint64) (n int) { return sovOne(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Subby) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Subby{`, `Sub:` + fmt.Sprintf("%v", this.Sub) + `,`, `}`, }, "") return s } func (this *SampleOneOf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf{`, `TestOneof:` + fmt.Sprintf("%v", this.TestOneof) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field1{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field2{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field3{`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field4) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field4{`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field5) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field5{`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field6) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field6{`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field7) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field7{`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field8) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field8{`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field9) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field9{`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field10) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field10{`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field11) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field11{`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field12) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field12{`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field13) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field13{`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field14) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field14{`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `}`, }, "") return s } func (this *SampleOneOf_Field15) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_Field15{`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `}`, }, "") return s } func (this *SampleOneOf_SubMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&SampleOneOf_SubMessage{`, `SubMessage:` + strings.Replace(fmt.Sprintf("%v", this.SubMessage), "Subby", "Subby", 1) + `,`, `}`, }, "") return s } func valueToStringOne(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Subby) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Subby: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Subby: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sub", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Sub = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *SampleOneOf) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: SampleOneOf: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: SampleOneOf: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &SampleOneOf_Field1{float64(math.Float64frombits(v))} case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &SampleOneOf_Field2{float32(math.Float32frombits(v))} case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &SampleOneOf_Field3{v} case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &SampleOneOf_Field4{v} case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &SampleOneOf_Field5{v} case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.TestOneof = &SampleOneOf_Field6{v} case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.TestOneof = &SampleOneOf_Field7{v} case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.TestOneof = &SampleOneOf_Field8{int64(v)} case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &SampleOneOf_Field9{v} case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.TestOneof = &SampleOneOf_Field10{v} case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &SampleOneOf_Field11{v} case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.TestOneof = &SampleOneOf_Field12{v} case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.TestOneof = &SampleOneOf_Field13{b} case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.TestOneof = &SampleOneOf_Field14{string(dAtA[iNdEx:postIndex])} iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } v := make([]byte, postIndex-iNdEx) copy(v, dAtA[iNdEx:postIndex]) m.TestOneof = &SampleOneOf_Field15{v} iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SubMessage", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowOne } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthOne } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &Subby{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.TestOneof = &SampleOneOf_SubMessage{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipOne(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthOne } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipOne(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthOne } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowOne } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipOne(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthOne = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowOne = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/unmarshaler/one.proto", fileDescriptorOne) } var fileDescriptorOne = []byte{ // 409 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0xd2, 0xbf, 0x4f, 0x1b, 0x31, 0x14, 0x07, 0x70, 0x3f, 0x8e, 0x24, 0xe0, 0x84, 0x92, 0xde, 0xf4, 0x8a, 0xaa, 0x27, 0x8b, 0xc9, 0x0b, 0x49, 0x73, 0x97, 0xf0, 0x63, 0x45, 0x55, 0x95, 0xa5, 0x42, 0x0a, 0x7f, 0x00, 0x8a, 0xa9, 0x13, 0x90, 0x72, 0x67, 0x94, 0xcb, 0x0d, 0xdd, 0xf8, 0x73, 0x3a, 0x76, 0xec, 0x9f, 0xc0, 0xc8, 0xd8, 0xa1, 0x03, 0xe7, 0x2e, 0x1d, 0x19, 0x33, 0x56, 0xb9, 0xb4, 0xcf, 0xdb, 0xfb, 0xfa, 0x63, 0x0f, 0xb6, 0xbf, 0xf2, 0xfd, 0xad, 0xcb, 0x8c, 0x2b, 0xfa, 0x65, 0x9e, 0x4d, 0x97, 0xc5, 0xdd, 0x74, 0x61, 0x97, 0x7d, 0x97, 0xdb, 0xde, 0xc3, 0xd2, 0xad, 0x5c, 0x1c, 0xb9, 0xdc, 0x1e, 0x9d, 0xcc, 0xef, 0x57, 0x77, 0xa5, 0xe9, 0xdd, 0xba, 0xac, 0x3f, 0x77, 0x73, 0xd7, 0xaf, 0xcd, 0x94, 0xb3, 0x3a, 0xd5, 0xa1, 0x9e, 0xb6, 0x67, 0x8e, 0xdf, 0xc9, 0xc6, 0x75, 0x69, 0xcc, 0xd7, 0xb8, 0x2b, 0xa3, 0xa2, 0x34, 0x08, 0x0a, 0xf4, 0xfe, 0x64, 0x33, 0x1e, 0xff, 0x8a, 0x64, 0xfb, 0x7a, 0x9a, 0x3d, 0x2c, 0xec, 0x55, 0x6e, 0xaf, 0x66, 0x31, 0xca, 0xe6, 0xa7, 0x7b, 0xbb, 0xf8, 0x32, 0xa8, 0x37, 0xc1, 0x58, 0x4c, 0xfe, 0x65, 0x96, 0x04, 0x77, 0x14, 0xe8, 0x1d, 0x96, 0x84, 0x25, 0xc5, 0x48, 0x81, 0x6e, 0xb0, 0xa4, 0x2c, 0x43, 0xdc, 0x55, 0xa0, 0x23, 0x96, 0x21, 0xcb, 0x08, 0x1b, 0x0a, 0xf4, 0x01, 0xcb, 0x88, 0xe5, 0x14, 0x9b, 0x0a, 0xf4, 0x2e, 0xcb, 0x29, 0xcb, 0x19, 0xb6, 0x14, 0xe8, 0xb7, 0x2c, 0x67, 0x2c, 0xe7, 0xb8, 0xa7, 0x40, 0xc7, 0x2c, 0xe7, 0x2c, 0x17, 0xb8, 0xaf, 0x40, 0xb7, 0x58, 0x2e, 0xe2, 0x23, 0xd9, 0xda, 0xde, 0xec, 0x03, 0x4a, 0x05, 0xfa, 0x70, 0x2c, 0x26, 0xff, 0x17, 0x82, 0x0d, 0xb0, 0xad, 0x40, 0x37, 0x83, 0x0d, 0x82, 0x25, 0xd8, 0x51, 0xa0, 0xbb, 0xc1, 0x92, 0x60, 0x29, 0x1e, 0x28, 0xd0, 0x7b, 0xc1, 0xd2, 0x60, 0x43, 0x7c, 0xb3, 0x79, 0xff, 0x60, 0xc3, 0x60, 0x23, 0x3c, 0x54, 0xa0, 0x3b, 0xc1, 0x46, 0xf1, 0x89, 0x6c, 0x17, 0xa5, 0xb9, 0xc9, 0x6c, 0x51, 0x4c, 0xe7, 0x16, 0xbb, 0x0a, 0x74, 0x3b, 0x91, 0xbd, 0x4d, 0x23, 0xea, 0x4f, 0x1d, 0x8b, 0x89, 0x2c, 0x4a, 0xf3, 0x79, 0xeb, 0x97, 0x1d, 0x29, 0x57, 0xb6, 0x58, 0xdd, 0xb8, 0xdc, 0xba, 0xd9, 0xe5, 0xc7, 0xa7, 0x8a, 0xc4, 0x73, 0x45, 0xe2, 0x67, 0x45, 0xe2, 0xa5, 0x22, 0x78, 0xad, 0x08, 0xd6, 0x15, 0xc1, 0xa3, 0x27, 0xf8, 0xe6, 0x09, 0xbe, 0x7b, 0x82, 0x1f, 0x9e, 0xe0, 0xc9, 0x93, 0x78, 0xf6, 0x04, 0x2f, 0x9e, 0xe0, 0x8f, 0x27, 0xf1, 0xea, 0x09, 0xd6, 0x9e, 0xc4, 0xe3, 0x6f, 0x12, 0xa6, 0x59, 0xd7, 0x28, 0xfd, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x3b, 0xfb, 0xd3, 0x99, 0x9a, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/oneof3/combos/unmarshaler/one.proto000066400000000000000000000053221317075173200251700ustar00rootroot00000000000000// 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 = "proto3"; package one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { string sub = 1; } message SampleOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } golang-gogoprotobuf-0.5/test/oneof3/combos/unmarshaler/onepb_test.go000066400000000000000000000240321317075173200260120ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/one.proto /* Package one is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/one.proto It has these top-level messages: Subby SampleOneOf */ package one import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSubbyProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSampleOneOfProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSubbyJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Subby{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSampleOneOfJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SampleOneOf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubbyProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubbyProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Subby{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSampleOneOfProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneDescription(t *testing.T) { OneDescription() } func TestSubbyVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Subby{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSampleOneOfVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &SampleOneOf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSubbyGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSampleOneOfGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSubbySize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSubby(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSampleOneOfSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSampleOneOf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestSubbyStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSubby(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestSampleOneOfStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSampleOneOf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/oneof3/doc.go000066400000000000000000000000171317075173200206070ustar00rootroot00000000000000package oneof3 golang-gogoprotobuf-0.5/test/oneof3/one.proto000066400000000000000000000053231317075173200213660ustar00rootroot00000000000000// 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 = "proto3"; package one; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Subby { string sub = 1; } message SampleOneOf { oneof test_oneof { double Field1 = 1; float Field2 = 2; int32 Field3 = 3; int64 Field4 = 4; uint32 Field5 = 5; uint64 Field6 = 6; sint32 Field7 = 7; sint64 Field8 = 8; fixed32 Field9 = 9; sfixed32 Field10 = 10; fixed64 Field11 = 11; sfixed64 Field12 = 12; bool Field13 = 13; string Field14 = 14; bytes Field15 = 15; Subby sub_message = 16; } } golang-gogoprotobuf-0.5/test/oneofembed/000077500000000000000000000000001317075173200204275ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/oneofembed/Makefile000066400000000000000000000030041317075173200220640ustar00rootroot00000000000000# 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: protoc-min-version --proto_path=../../../../../:../../protobuf/:. --version="3.0.0" --gogo_out=. *.proto golang-gogoprotobuf-0.5/test/oneofembed/oneofembed.pb.go000066400000000000000000000231221317075173200234610ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: oneofembed.proto /* Package proto is a generated protocol buffer package. It is generated from these files: oneofembed.proto It has these top-level messages: Foo Bar */ package proto import proto1 "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto1.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto1.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Foo struct { *Bar `protobuf:"bytes,1,opt,name=bar,embedded=bar" json:"bar,omitempty"` } func (m *Foo) Reset() { *m = Foo{} } func (m *Foo) String() string { return proto1.CompactTextString(m) } func (*Foo) ProtoMessage() {} func (*Foo) Descriptor() ([]byte, []int) { return fileDescriptorOneofembed, []int{0} } type Bar struct { // Types that are valid to be assigned to Pick: // *Bar_A // *Bar_B Pick isBar_Pick `protobuf_oneof:"pick"` } func (m *Bar) Reset() { *m = Bar{} } func (m *Bar) String() string { return proto1.CompactTextString(m) } func (*Bar) ProtoMessage() {} func (*Bar) Descriptor() ([]byte, []int) { return fileDescriptorOneofembed, []int{1} } type isBar_Pick interface { isBar_Pick() Equal(interface{}) bool } type Bar_A struct { A bool `protobuf:"varint,11,opt,name=a,proto3,oneof"` } type Bar_B struct { B bool `protobuf:"varint,12,opt,name=b,proto3,oneof"` } func (*Bar_A) isBar_Pick() {} func (*Bar_B) isBar_Pick() {} func (m *Bar) GetPick() isBar_Pick { if m != nil { return m.Pick } return nil } func (m *Bar) GetA() bool { if x, ok := m.GetPick().(*Bar_A); ok { return x.A } return false } func (m *Bar) GetB() bool { if x, ok := m.GetPick().(*Bar_B); ok { return x.B } return false } // XXX_OneofFuncs is for the internal use of the proto package. func (*Bar) XXX_OneofFuncs() (func(msg proto1.Message, b *proto1.Buffer) error, func(msg proto1.Message, tag, wire int, b *proto1.Buffer) (bool, error), func(msg proto1.Message) (n int), []interface{}) { return _Bar_OneofMarshaler, _Bar_OneofUnmarshaler, _Bar_OneofSizer, []interface{}{ (*Bar_A)(nil), (*Bar_B)(nil), } } func _Bar_OneofMarshaler(msg proto1.Message, b *proto1.Buffer) error { m := msg.(*Bar) // pick switch x := m.Pick.(type) { case *Bar_A: t := uint64(0) if x.A { t = 1 } _ = b.EncodeVarint(11<<3 | proto1.WireVarint) _ = b.EncodeVarint(t) case *Bar_B: t := uint64(0) if x.B { t = 1 } _ = b.EncodeVarint(12<<3 | proto1.WireVarint) _ = b.EncodeVarint(t) case nil: default: return fmt.Errorf("Bar.Pick has unexpected type %T", x) } return nil } func _Bar_OneofUnmarshaler(msg proto1.Message, tag, wire int, b *proto1.Buffer) (bool, error) { m := msg.(*Bar) switch tag { case 11: // pick.a if wire != proto1.WireVarint { return true, proto1.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Pick = &Bar_A{x != 0} return true, err case 12: // pick.b if wire != proto1.WireVarint { return true, proto1.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Pick = &Bar_B{x != 0} return true, err default: return false, nil } } func _Bar_OneofSizer(msg proto1.Message) (n int) { m := msg.(*Bar) // pick switch x := m.Pick.(type) { case *Bar_A: n += proto1.SizeVarint(11<<3 | proto1.WireVarint) n += 1 case *Bar_B: n += proto1.SizeVarint(12<<3 | proto1.WireVarint) n += 1 case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto1.RegisterType((*Foo)(nil), "proto.Foo") proto1.RegisterType((*Bar)(nil), "proto.Bar") } func (this *Foo) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Foo) if !ok { that2, ok := that.(Foo) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Bar.Equal(that1.Bar) { return false } return true } func (this *Bar) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Bar) if !ok { that2, ok := that.(Bar) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Pick == nil { if this.Pick != nil { return false } } else if this.Pick == nil { return false } else if !this.Pick.Equal(that1.Pick) { return false } return true } func (this *Bar_A) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Bar_A) if !ok { that2, ok := that.(Bar_A) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.A != that1.A { return false } return true } func (this *Bar_B) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Bar_B) if !ok { that2, ok := that.(Bar_B) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.B != that1.B { return false } return true } func NewPopulatedFoo(r randyOneofembed, easy bool) *Foo { this := &Foo{} if r.Intn(10) != 0 { this.Bar = NewPopulatedBar(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedBar(r randyOneofembed, easy bool) *Bar { this := &Bar{} oneofNumber_Pick := []int32{11, 12}[r.Intn(2)] switch oneofNumber_Pick { case 11: this.Pick = NewPopulatedBar_A(r, easy) case 12: this.Pick = NewPopulatedBar_B(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedBar_A(r randyOneofembed, easy bool) *Bar_A { this := &Bar_A{} this.A = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedBar_B(r randyOneofembed, easy bool) *Bar_B { this := &Bar_B{} this.B = bool(bool(r.Intn(2) == 0)) return this } type randyOneofembed interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneOneofembed(r randyOneofembed) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringOneofembed(r randyOneofembed) string { v1 := r.Intn(100) tmps := make([]rune, v1) for i := 0; i < v1; i++ { tmps[i] = randUTF8RuneOneofembed(r) } return string(tmps) } func randUnrecognizedOneofembed(r randyOneofembed, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldOneofembed(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldOneofembed(dAtA []byte, r randyOneofembed, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateOneofembed(dAtA, uint64(key)) v2 := r.Int63() if r.Intn(2) == 0 { v2 *= -1 } dAtA = encodeVarintPopulateOneofembed(dAtA, uint64(v2)) case 1: dAtA = encodeVarintPopulateOneofembed(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateOneofembed(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateOneofembed(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateOneofembed(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateOneofembed(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func init() { proto1.RegisterFile("oneofembed.proto", fileDescriptorOneofembed) } var fileDescriptorOneofembed = []byte{ // 171 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xc8, 0xcf, 0x4b, 0xcd, 0x4f, 0x4b, 0xcd, 0x4d, 0x4a, 0x4d, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x05, 0x53, 0x52, 0xba, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xe9, 0xf9, 0xe9, 0xf9, 0xfa, 0x60, 0xe1, 0xa4, 0xd2, 0x34, 0x30, 0x0f, 0xcc, 0x01, 0xb3, 0x20, 0xba, 0x94, 0x34, 0xb9, 0x98, 0xdd, 0xf2, 0xf3, 0x85, 0x94, 0xb8, 0x98, 0x93, 0x12, 0x8b, 0x24, 0x18, 0x15, 0x18, 0x35, 0xb8, 0x8d, 0xb8, 0x20, 0x72, 0x7a, 0x4e, 0x89, 0x45, 0x4e, 0x2c, 0x17, 0xee, 0xc9, 0x33, 0x06, 0x81, 0x24, 0x95, 0x74, 0xb9, 0x98, 0x9d, 0x12, 0x8b, 0x84, 0xf8, 0xb8, 0x18, 0x13, 0x25, 0xb8, 0x15, 0x18, 0x35, 0x38, 0x3c, 0x18, 0x82, 0x18, 0x13, 0x41, 0xfc, 0x24, 0x09, 0x1e, 0x18, 0x3f, 0xc9, 0x89, 0x8d, 0x8b, 0xa5, 0x20, 0x33, 0x39, 0xdb, 0x89, 0xe7, 0xc7, 0x43, 0x39, 0xc6, 0x15, 0x8f, 0xe4, 0x18, 0x77, 0x3c, 0x92, 0x63, 0x4c, 0x62, 0x03, 0x1b, 0x69, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x56, 0x58, 0x05, 0x27, 0xb8, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/oneofembed/oneofembed.proto000066400000000000000000000034421317075173200236220ustar00rootroot00000000000000// 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 = "proto3"; package proto; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.populate_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.testgen_all) = true; message Foo { Bar bar = 1 [(gogoproto.embed) = true]; } message Bar { oneof pick { bool a = 11; bool b = 12; } } golang-gogoprotobuf-0.5/test/oneofembed/oneofembedpb_test.go000066400000000000000000000125621317075173200244500ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: oneofembed.proto /* Package proto is a generated protocol buffer package. It is generated from these files: oneofembed.proto It has these top-level messages: Foo Bar */ package proto import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto1 "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto1.Marshal var _ = fmt.Errorf var _ = math.Inf func TestFooProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFoo(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Foo{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestBarProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBar(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Bar{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFooJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFoo(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Foo{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestBarJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBar(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Bar{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFooProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFoo(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Foo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFooProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFoo(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Foo{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBarProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBar(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Bar{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBarProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBar(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Bar{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/packed/000077500000000000000000000000001317075173200175535ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/packed/Makefile000066400000000000000000000027541317075173200212230ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. packed.proto) golang-gogoprotobuf-0.5/test/packed/doc.go000066400000000000000000000000171317075173200206450ustar00rootroot00000000000000package packed golang-gogoprotobuf-0.5/test/packed/packed.pb.go000066400000000000000000003023311317075173200217330ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: packed.proto /* Package packed is a generated protocol buffer package. It is generated from these files: packed.proto It has these top-level messages: NinRepNative NinRepPackedNative NinRepNativeUnsafe NinRepPackedNativeUnsafe */ package packed import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type NinRepNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNative) Reset() { *m = NinRepNative{} } func (m *NinRepNative) String() string { return proto.CompactTextString(m) } func (*NinRepNative) ProtoMessage() {} func (*NinRepNative) Descriptor() ([]byte, []int) { return fileDescriptorPacked, []int{0} } func (m *NinRepNative) GetField1() []float64 { if m != nil { return m.Field1 } return nil } func (m *NinRepNative) GetField2() []float32 { if m != nil { return m.Field2 } return nil } func (m *NinRepNative) GetField3() []int32 { if m != nil { return m.Field3 } return nil } func (m *NinRepNative) GetField4() []int64 { if m != nil { return m.Field4 } return nil } func (m *NinRepNative) GetField5() []uint32 { if m != nil { return m.Field5 } return nil } func (m *NinRepNative) GetField6() []uint64 { if m != nil { return m.Field6 } return nil } func (m *NinRepNative) GetField7() []int32 { if m != nil { return m.Field7 } return nil } func (m *NinRepNative) GetField8() []int64 { if m != nil { return m.Field8 } return nil } func (m *NinRepNative) GetField9() []uint32 { if m != nil { return m.Field9 } return nil } func (m *NinRepNative) GetField10() []int32 { if m != nil { return m.Field10 } return nil } func (m *NinRepNative) GetField11() []uint64 { if m != nil { return m.Field11 } return nil } func (m *NinRepNative) GetField12() []int64 { if m != nil { return m.Field12 } return nil } func (m *NinRepNative) GetField13() []bool { if m != nil { return m.Field13 } return nil } type NinRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepPackedNative) Reset() { *m = NinRepPackedNative{} } func (m *NinRepPackedNative) String() string { return proto.CompactTextString(m) } func (*NinRepPackedNative) ProtoMessage() {} func (*NinRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorPacked, []int{1} } func (m *NinRepPackedNative) GetField1() []float64 { if m != nil { return m.Field1 } return nil } func (m *NinRepPackedNative) GetField2() []float32 { if m != nil { return m.Field2 } return nil } func (m *NinRepPackedNative) GetField3() []int32 { if m != nil { return m.Field3 } return nil } func (m *NinRepPackedNative) GetField4() []int64 { if m != nil { return m.Field4 } return nil } func (m *NinRepPackedNative) GetField5() []uint32 { if m != nil { return m.Field5 } return nil } func (m *NinRepPackedNative) GetField6() []uint64 { if m != nil { return m.Field6 } return nil } func (m *NinRepPackedNative) GetField7() []int32 { if m != nil { return m.Field7 } return nil } func (m *NinRepPackedNative) GetField8() []int64 { if m != nil { return m.Field8 } return nil } func (m *NinRepPackedNative) GetField9() []uint32 { if m != nil { return m.Field9 } return nil } func (m *NinRepPackedNative) GetField10() []int32 { if m != nil { return m.Field10 } return nil } func (m *NinRepPackedNative) GetField11() []uint64 { if m != nil { return m.Field11 } return nil } func (m *NinRepPackedNative) GetField12() []int64 { if m != nil { return m.Field12 } return nil } func (m *NinRepPackedNative) GetField13() []bool { if m != nil { return m.Field13 } return nil } type NinRepNativeUnsafe struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNativeUnsafe) Reset() { *m = NinRepNativeUnsafe{} } func (m *NinRepNativeUnsafe) String() string { return proto.CompactTextString(m) } func (*NinRepNativeUnsafe) ProtoMessage() {} func (*NinRepNativeUnsafe) Descriptor() ([]byte, []int) { return fileDescriptorPacked, []int{2} } func (m *NinRepNativeUnsafe) GetField1() []float64 { if m != nil { return m.Field1 } return nil } func (m *NinRepNativeUnsafe) GetField2() []float32 { if m != nil { return m.Field2 } return nil } func (m *NinRepNativeUnsafe) GetField3() []int32 { if m != nil { return m.Field3 } return nil } func (m *NinRepNativeUnsafe) GetField4() []int64 { if m != nil { return m.Field4 } return nil } func (m *NinRepNativeUnsafe) GetField5() []uint32 { if m != nil { return m.Field5 } return nil } func (m *NinRepNativeUnsafe) GetField6() []uint64 { if m != nil { return m.Field6 } return nil } func (m *NinRepNativeUnsafe) GetField7() []int32 { if m != nil { return m.Field7 } return nil } func (m *NinRepNativeUnsafe) GetField8() []int64 { if m != nil { return m.Field8 } return nil } func (m *NinRepNativeUnsafe) GetField9() []uint32 { if m != nil { return m.Field9 } return nil } func (m *NinRepNativeUnsafe) GetField10() []int32 { if m != nil { return m.Field10 } return nil } func (m *NinRepNativeUnsafe) GetField11() []uint64 { if m != nil { return m.Field11 } return nil } func (m *NinRepNativeUnsafe) GetField12() []int64 { if m != nil { return m.Field12 } return nil } func (m *NinRepNativeUnsafe) GetField13() []bool { if m != nil { return m.Field13 } return nil } type NinRepPackedNativeUnsafe struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepPackedNativeUnsafe) Reset() { *m = NinRepPackedNativeUnsafe{} } func (m *NinRepPackedNativeUnsafe) String() string { return proto.CompactTextString(m) } func (*NinRepPackedNativeUnsafe) ProtoMessage() {} func (*NinRepPackedNativeUnsafe) Descriptor() ([]byte, []int) { return fileDescriptorPacked, []int{3} } func (m *NinRepPackedNativeUnsafe) GetField1() []float64 { if m != nil { return m.Field1 } return nil } func (m *NinRepPackedNativeUnsafe) GetField2() []float32 { if m != nil { return m.Field2 } return nil } func (m *NinRepPackedNativeUnsafe) GetField3() []int32 { if m != nil { return m.Field3 } return nil } func (m *NinRepPackedNativeUnsafe) GetField4() []int64 { if m != nil { return m.Field4 } return nil } func (m *NinRepPackedNativeUnsafe) GetField5() []uint32 { if m != nil { return m.Field5 } return nil } func (m *NinRepPackedNativeUnsafe) GetField6() []uint64 { if m != nil { return m.Field6 } return nil } func (m *NinRepPackedNativeUnsafe) GetField7() []int32 { if m != nil { return m.Field7 } return nil } func (m *NinRepPackedNativeUnsafe) GetField8() []int64 { if m != nil { return m.Field8 } return nil } func (m *NinRepPackedNativeUnsafe) GetField9() []uint32 { if m != nil { return m.Field9 } return nil } func (m *NinRepPackedNativeUnsafe) GetField10() []int32 { if m != nil { return m.Field10 } return nil } func (m *NinRepPackedNativeUnsafe) GetField11() []uint64 { if m != nil { return m.Field11 } return nil } func (m *NinRepPackedNativeUnsafe) GetField12() []int64 { if m != nil { return m.Field12 } return nil } func (m *NinRepPackedNativeUnsafe) GetField13() []bool { if m != nil { return m.Field13 } return nil } func init() { proto.RegisterType((*NinRepNative)(nil), "packed.NinRepNative") proto.RegisterType((*NinRepPackedNative)(nil), "packed.NinRepPackedNative") proto.RegisterType((*NinRepNativeUnsafe)(nil), "packed.NinRepNativeUnsafe") proto.RegisterType((*NinRepPackedNativeUnsafe)(nil), "packed.NinRepPackedNativeUnsafe") } func NewPopulatedNinRepNative(r randyPacked, easy bool) *NinRepNative { this := &NinRepNative{} if r.Intn(10) != 0 { v1 := r.Intn(10) this.Field1 = make([]float64, v1) for i := 0; i < v1; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v2 := r.Intn(10) this.Field2 = make([]float32, v2) for i := 0; i < v2; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v3 := r.Intn(10) this.Field3 = make([]int32, v3) for i := 0; i < v3; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v4 := r.Intn(10) this.Field4 = make([]int64, v4) for i := 0; i < v4; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v5 := r.Intn(10) this.Field5 = make([]uint32, v5) for i := 0; i < v5; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v6 := r.Intn(10) this.Field6 = make([]uint64, v6) for i := 0; i < v6; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v7 := r.Intn(10) this.Field7 = make([]int32, v7) for i := 0; i < v7; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v8 := r.Intn(10) this.Field8 = make([]int64, v8) for i := 0; i < v8; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v9 := r.Intn(10) this.Field9 = make([]uint32, v9) for i := 0; i < v9; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.Field10 = make([]int32, v10) for i := 0; i < v10; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v11 := r.Intn(10) this.Field11 = make([]uint64, v11) for i := 0; i < v11; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.Field12 = make([]int64, v12) for i := 0; i < v12; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v13 := r.Intn(10) this.Field13 = make([]bool, v13) for i := 0; i < v13; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedPacked(r, 14) } return this } func NewPopulatedNinRepPackedNative(r randyPacked, easy bool) *NinRepPackedNative { this := &NinRepPackedNative{} if r.Intn(10) != 0 { v14 := r.Intn(10) this.Field1 = make([]float64, v14) for i := 0; i < v14; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v15 := r.Intn(10) this.Field2 = make([]float32, v15) for i := 0; i < v15; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v16 := r.Intn(10) this.Field3 = make([]int32, v16) for i := 0; i < v16; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v17 := r.Intn(10) this.Field4 = make([]int64, v17) for i := 0; i < v17; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Field5 = make([]uint32, v18) for i := 0; i < v18; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.Field6 = make([]uint64, v19) for i := 0; i < v19; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Field7 = make([]int32, v20) for i := 0; i < v20; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Field8 = make([]int64, v21) for i := 0; i < v21; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Field9 = make([]uint32, v22) for i := 0; i < v22; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Field10 = make([]int32, v23) for i := 0; i < v23; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Field11 = make([]uint64, v24) for i := 0; i < v24; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Field12 = make([]int64, v25) for i := 0; i < v25; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v26 := r.Intn(10) this.Field13 = make([]bool, v26) for i := 0; i < v26; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedPacked(r, 14) } return this } func NewPopulatedNinRepNativeUnsafe(r randyPacked, easy bool) *NinRepNativeUnsafe { this := &NinRepNativeUnsafe{} if r.Intn(10) != 0 { v27 := r.Intn(10) this.Field1 = make([]float64, v27) for i := 0; i < v27; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v28 := r.Intn(10) this.Field2 = make([]float32, v28) for i := 0; i < v28; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v29 := r.Intn(10) this.Field3 = make([]int32, v29) for i := 0; i < v29; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v30 := r.Intn(10) this.Field4 = make([]int64, v30) for i := 0; i < v30; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v31 := r.Intn(10) this.Field5 = make([]uint32, v31) for i := 0; i < v31; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v32 := r.Intn(10) this.Field6 = make([]uint64, v32) for i := 0; i < v32; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v33 := r.Intn(10) this.Field7 = make([]int32, v33) for i := 0; i < v33; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v34 := r.Intn(10) this.Field8 = make([]int64, v34) for i := 0; i < v34; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v35 := r.Intn(10) this.Field9 = make([]uint32, v35) for i := 0; i < v35; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.Field10 = make([]int32, v36) for i := 0; i < v36; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v37 := r.Intn(10) this.Field11 = make([]uint64, v37) for i := 0; i < v37; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v38 := r.Intn(10) this.Field12 = make([]int64, v38) for i := 0; i < v38; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v39 := r.Intn(10) this.Field13 = make([]bool, v39) for i := 0; i < v39; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedPacked(r, 14) } return this } func NewPopulatedNinRepPackedNativeUnsafe(r randyPacked, easy bool) *NinRepPackedNativeUnsafe { this := &NinRepPackedNativeUnsafe{} if r.Intn(10) != 0 { v40 := r.Intn(10) this.Field1 = make([]float64, v40) for i := 0; i < v40; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v41 := r.Intn(10) this.Field2 = make([]float32, v41) for i := 0; i < v41; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v42 := r.Intn(10) this.Field3 = make([]int32, v42) for i := 0; i < v42; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v43 := r.Intn(10) this.Field4 = make([]int64, v43) for i := 0; i < v43; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v44 := r.Intn(10) this.Field5 = make([]uint32, v44) for i := 0; i < v44; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v45 := r.Intn(10) this.Field6 = make([]uint64, v45) for i := 0; i < v45; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v46 := r.Intn(10) this.Field7 = make([]int32, v46) for i := 0; i < v46; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v47 := r.Intn(10) this.Field8 = make([]int64, v47) for i := 0; i < v47; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v48 := r.Intn(10) this.Field9 = make([]uint32, v48) for i := 0; i < v48; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v49 := r.Intn(10) this.Field10 = make([]int32, v49) for i := 0; i < v49; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v50 := r.Intn(10) this.Field11 = make([]uint64, v50) for i := 0; i < v50; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v51 := r.Intn(10) this.Field12 = make([]int64, v51) for i := 0; i < v51; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v52 := r.Intn(10) this.Field13 = make([]bool, v52) for i := 0; i < v52; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedPacked(r, 14) } return this } type randyPacked interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RunePacked(r randyPacked) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringPacked(r randyPacked) string { v53 := r.Intn(100) tmps := make([]rune, v53) for i := 0; i < v53; i++ { tmps[i] = randUTF8RunePacked(r) } return string(tmps) } func randUnrecognizedPacked(r randyPacked, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldPacked(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldPacked(dAtA []byte, r randyPacked, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulatePacked(dAtA, uint64(key)) v54 := r.Int63() if r.Intn(2) == 0 { v54 *= -1 } dAtA = encodeVarintPopulatePacked(dAtA, uint64(v54)) case 1: dAtA = encodeVarintPopulatePacked(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulatePacked(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulatePacked(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulatePacked(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulatePacked(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *NinRepNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } default: iNdEx = preIndex skippy, err := skipPacked(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthPacked } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepPackedNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepPackedNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepPackedNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } default: iNdEx = preIndex skippy, err := skipPacked(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthPacked } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepNativeUnsafe) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepNativeUnsafe: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepNativeUnsafe: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } default: iNdEx = preIndex skippy, err := skipPacked(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthPacked } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinRepPackedNativeUnsafe) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinRepPackedNativeUnsafe: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinRepPackedNativeUnsafe: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = append(m.Field1, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } case 2: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = append(m.Field3, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 4: if wireType == 0 { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = append(m.Field4, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } case 5: if wireType == 0 { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = append(m.Field5, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } case 6: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = append(m.Field6, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } case 7: if wireType == 0 { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = append(m.Field7, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } case 8: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = append(m.Field8, int64(v)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } case 9: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = append(m.Field9, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } case 10: if wireType == 5 { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = append(m.Field10, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } case 11: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = append(m.Field11, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } case 12: if wireType == 1 { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = append(m.Field12, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } case 13: if wireType == 0 { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthPacked } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPacked } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = append(m.Field13, bool(v != 0)) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } default: iNdEx = preIndex skippy, err := skipPacked(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthPacked } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipPacked(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowPacked } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowPacked } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowPacked } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthPacked } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowPacked } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipPacked(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthPacked = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowPacked = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("packed.proto", fileDescriptorPacked) } var fileDescriptorPacked = []byte{ // 388 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x92, 0xbf, 0x4e, 0xfa, 0x50, 0x14, 0xc7, 0xd3, 0x9e, 0x52, 0xf8, 0xdd, 0x1f, 0x44, 0xec, 0x60, 0x4e, 0x08, 0xd1, 0x1b, 0xa6, 0xbb, 0x08, 0xb6, 0xe5, 0xaf, 0x23, 0x83, 0x23, 0x31, 0x24, 0x3e, 0x00, 0x7f, 0x0a, 0x36, 0x2a, 0x25, 0x0a, 0x3e, 0x86, 0x71, 0xf0, 0x05, 0x7c, 0x13, 0x1f, 0xc2, 0xc9, 0xcd, 0xb7, 0x70, 0x34, 0xb4, 0xa7, 0xa7, 0x17, 0x1c, 0x1d, 0x5c, 0xd8, 0xb8, 0x9f, 0x4f, 0x18, 0xfa, 0xf9, 0x1e, 0x51, 0x5c, 0x8e, 0x26, 0x37, 0xc1, 0xb4, 0xbe, 0xbc, 0x8f, 0x56, 0x91, 0x63, 0x27, 0xaf, 0xca, 0xe9, 0x3c, 0x5c, 0x5d, 0xaf, 0xc7, 0xf5, 0x49, 0x74, 0xd7, 0x98, 0x47, 0xf3, 0xa8, 0x11, 0xeb, 0xf1, 0x7a, 0x16, 0xbf, 0xe2, 0x47, 0xfc, 0x2b, 0xf9, 0x5b, 0xed, 0xdd, 0x14, 0xc5, 0x41, 0xb8, 0x18, 0x06, 0xcb, 0xc1, 0x68, 0x15, 0x3e, 0x06, 0xce, 0x91, 0xb0, 0x2f, 0xc2, 0xe0, 0x76, 0xea, 0xa2, 0x21, 0x41, 0x19, 0x43, 0x7a, 0x31, 0xf7, 0xd0, 0x94, 0xa0, 0x4c, 0xe2, 0x1e, 0x73, 0x1f, 0x41, 0x82, 0xca, 0x11, 0xf7, 0x99, 0x37, 0xd1, 0x92, 0xa0, 0x80, 0x78, 0x93, 0x79, 0x0b, 0x73, 0x12, 0x54, 0x89, 0x78, 0x8b, 0x79, 0x1b, 0x6d, 0x09, 0xca, 0x22, 0xde, 0x66, 0xde, 0xc1, 0xbc, 0x04, 0x75, 0x48, 0xbc, 0xc3, 0xbc, 0x8b, 0x05, 0x09, 0xca, 0x21, 0xde, 0x65, 0xde, 0xc3, 0x7f, 0x12, 0x54, 0x9e, 0x78, 0xcf, 0x41, 0x91, 0x4f, 0xbe, 0xe4, 0x0c, 0x85, 0x04, 0x75, 0x30, 0x4c, 0x9f, 0x99, 0x71, 0xf1, 0xbf, 0x04, 0x65, 0xa7, 0xc6, 0xcd, 0x8c, 0x87, 0x45, 0x09, 0xaa, 0x9c, 0x1a, 0x2f, 0x33, 0x3e, 0x96, 0x24, 0xa8, 0x42, 0x6a, 0xfc, 0x73, 0xeb, 0xf9, 0xf5, 0xc4, 0xa8, 0x3d, 0x81, 0x70, 0x92, 0xac, 0x97, 0xf1, 0x2c, 0x14, 0xb7, 0xb2, 0x1d, 0xb7, 0x6f, 0x96, 0xb3, 0xc0, 0x95, 0xed, 0xc0, 0x9a, 0xf3, 0xd8, 0x51, 0x64, 0xcd, 0xf9, 0xec, 0x28, 0xb4, 0xe6, 0x9a, 0xec, 0x28, 0xb6, 0xe6, 0x5a, 0xec, 0x28, 0xb8, 0xe6, 0xda, 0xec, 0x28, 0xba, 0xe6, 0x3a, 0xec, 0x28, 0xbc, 0xe6, 0xba, 0xec, 0x28, 0xbe, 0xe6, 0x7a, 0x4e, 0x75, 0x67, 0x80, 0x58, 0xf2, 0x08, 0xd5, 0x9d, 0x11, 0x74, 0xeb, 0x66, 0x96, 0x86, 0xd0, 0xad, 0x97, 0x59, 0x1a, 0x43, 0xb7, 0xe9, 0x20, 0x1f, 0x66, 0x3a, 0x48, 0x32, 0xc5, 0xd5, 0xe2, 0x61, 0x34, 0xdb, 0x5f, 0xfb, 0xaf, 0xaf, 0xfd, 0x6d, 0x13, 0xf7, 0x05, 0x04, 0xfe, 0xbc, 0x76, 0x4a, 0xbc, 0xbf, 0xf9, 0x3f, 0xb8, 0xf9, 0xcd, 0x2c, 0x7d, 0xeb, 0xeb, 0xf3, 0xd8, 0xf8, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x13, 0x20, 0xf1, 0x6c, 0x27, 0x06, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/packed/packed.proto000066400000000000000000000074041317075173200220740ustar00rootroot00000000000000// 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 packed; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.populate_all) = true; message NinRepNative { option (gogoproto.unmarshaler) = true; repeated double Field1 = 1; repeated float Field2 = 2; repeated int32 Field3 = 3; repeated int64 Field4 = 4; repeated uint32 Field5 = 5; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated sint64 Field8 = 8; repeated fixed32 Field9 = 9; repeated sfixed32 Field10 = 10; repeated fixed64 Field11 = 11; repeated sfixed64 Field12 = 12; repeated bool Field13 = 13; } message NinRepPackedNative { option (gogoproto.unmarshaler) = true; repeated double Field1 = 1 [packed = true]; repeated float Field2 = 2 [packed = true]; repeated int32 Field3 = 3 [packed = true]; repeated int64 Field4 = 4 [packed = true]; repeated uint32 Field5 = 5 [packed = true]; repeated uint64 Field6 = 6 [packed = true]; repeated sint32 Field7 = 7 [packed = true]; repeated sint64 Field8 = 8 [packed = true]; repeated fixed32 Field9 = 9 [packed = true]; repeated sfixed32 Field10 = 10 [packed = true]; repeated fixed64 Field11 = 11 [packed = true]; repeated sfixed64 Field12 = 12 [packed = true]; repeated bool Field13 = 13 [packed = true]; } message NinRepNativeUnsafe { option (gogoproto.unsafe_unmarshaler) = true; repeated double Field1 = 1; repeated float Field2 = 2; repeated int32 Field3 = 3; repeated int64 Field4 = 4; repeated uint32 Field5 = 5; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated sint64 Field8 = 8; repeated fixed32 Field9 = 9; repeated sfixed32 Field10 = 10; repeated fixed64 Field11 = 11; repeated sfixed64 Field12 = 12; repeated bool Field13 = 13; } message NinRepPackedNativeUnsafe { option (gogoproto.unsafe_unmarshaler) = true; repeated double Field1 = 1 [packed = true]; repeated float Field2 = 2 [packed = true]; repeated int32 Field3 = 3 [packed = true]; repeated int64 Field4 = 4 [packed = true]; repeated uint32 Field5 = 5 [packed = true]; repeated uint64 Field6 = 6 [packed = true]; repeated sint32 Field7 = 7 [packed = true]; repeated sint64 Field8 = 8 [packed = true]; repeated fixed32 Field9 = 9 [packed = true]; repeated sfixed32 Field10 = 10 [packed = true]; repeated fixed64 Field11 = 11 [packed = true]; repeated sfixed64 Field12 = 12 [packed = true]; repeated bool Field13 = 13 [packed = true]; } golang-gogoprotobuf-0.5/test/packed/packed_test.go000066400000000000000000000302461317075173200223750ustar00rootroot00000000000000// 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. package packed import ( "bytes" "fmt" "github.com/gogo/protobuf/proto" math_rand "math/rand" "testing" "time" "unsafe" ) /* https://github.com/gogo/protobuf/issues/detail?id=21 https://developers.google.com/protocol-buffers/docs/proto#options In 2.3.0 and later, this change is safe, as parsers for packable fields will always accept both formats, */ func TestSafeIssue21(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) msg1 := NewPopulatedNinRepNative(popr, true) data1, err := proto.Marshal(msg1) if err != nil { t.Fatal(err) } packedmsg := &NinRepPackedNative{} err = proto.Unmarshal(data1, packedmsg) if err != nil { t.Fatal(err) } if len(packedmsg.XXX_unrecognized) != 0 { t.Fatalf("packed msg unmarshaled unrecognized fields, even though there aren't any") } if err := VerboseEqual(msg1, packedmsg); err != nil { t.Fatalf("%v", err) } } func TestUnsafeIssue21(t *testing.T) { var bigendian uint32 = 0x01020304 if *(*byte)(unsafe.Pointer(&bigendian)) == 1 { t.Skip("unsafe does not work on big endian architectures") } popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) msg1 := NewPopulatedNinRepNativeUnsafe(popr, true) data1, err := proto.Marshal(msg1) if err != nil { t.Fatal(err) } packedmsg := &NinRepPackedNativeUnsafe{} err = proto.Unmarshal(data1, packedmsg) if err != nil { t.Fatal(err) } if len(packedmsg.XXX_unrecognized) != 0 { t.Fatalf("packed msg unmarshaled unrecognized fields, even though there aren't any") } if err := VerboseEqualUnsafe(msg1, packedmsg); err != nil { t.Fatalf("%v", err) } } func VerboseEqual(this *NinRepNative, that *NinRepPackedNative) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } else if this == nil { return fmt.Errorf("that != nil && this == nil") } if len(this.Field1) != len(that.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that.Field1)) } for i := range this.Field1 { if this.Field1[i] != that.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that.Field1[i]) } } if len(this.Field2) != len(that.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that.Field2)) } for i := range this.Field2 { if this.Field2[i] != that.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that.Field2[i]) } } if len(this.Field3) != len(that.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that.Field3)) } for i := range this.Field3 { if this.Field3[i] != that.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that.Field3[i]) } } if len(this.Field4) != len(that.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that.Field4)) } for i := range this.Field4 { if this.Field4[i] != that.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that.Field4[i]) } } if len(this.Field5) != len(that.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that.Field5)) } for i := range this.Field5 { if this.Field5[i] != that.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that.Field5[i]) } } if len(this.Field6) != len(that.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that.Field6)) } for i := range this.Field6 { if this.Field6[i] != that.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that.Field6[i]) } } if len(this.Field7) != len(that.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that.Field7)) } for i := range this.Field7 { if this.Field7[i] != that.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that.Field7[i]) } } if len(this.Field8) != len(that.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that.Field8)) } for i := range this.Field8 { if this.Field8[i] != that.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that.Field8[i]) } } if len(this.Field9) != len(that.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that.Field9)) } for i := range this.Field9 { if this.Field9[i] != that.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that.Field9[i]) } } if len(this.Field10) != len(that.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that.Field10)) } for i := range this.Field10 { if this.Field10[i] != that.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that.Field10[i]) } } if len(this.Field11) != len(that.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that.Field11)) } for i := range this.Field11 { if this.Field11[i] != that.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that.Field11[i]) } } if len(this.Field12) != len(that.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that.Field12)) } for i := range this.Field12 { if this.Field12[i] != that.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that.Field12[i]) } } if len(this.Field13) != len(that.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that.Field13)) } for i := range this.Field13 { if this.Field13[i] != that.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that.XXX_unrecognized) } return nil } func VerboseEqualUnsafe(this *NinRepNativeUnsafe, that *NinRepPackedNativeUnsafe) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } else if this == nil { return fmt.Errorf("that != nil && this == nil") } if len(this.Field1) != len(that.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that.Field1)) } for i := range this.Field1 { if this.Field1[i] != that.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that.Field1[i]) } } if len(this.Field2) != len(that.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that.Field2)) } for i := range this.Field2 { if this.Field2[i] != that.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that.Field2[i]) } } if len(this.Field3) != len(that.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that.Field3)) } for i := range this.Field3 { if this.Field3[i] != that.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that.Field3[i]) } } if len(this.Field4) != len(that.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that.Field4)) } for i := range this.Field4 { if this.Field4[i] != that.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that.Field4[i]) } } if len(this.Field5) != len(that.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that.Field5)) } for i := range this.Field5 { if this.Field5[i] != that.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that.Field5[i]) } } if len(this.Field6) != len(that.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that.Field6)) } for i := range this.Field6 { if this.Field6[i] != that.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that.Field6[i]) } } if len(this.Field7) != len(that.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that.Field7)) } for i := range this.Field7 { if this.Field7[i] != that.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that.Field7[i]) } } if len(this.Field8) != len(that.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that.Field8)) } for i := range this.Field8 { if this.Field8[i] != that.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that.Field8[i]) } } if len(this.Field9) != len(that.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that.Field9)) } for i := range this.Field9 { if this.Field9[i] != that.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that.Field9[i]) } } if len(this.Field10) != len(that.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that.Field10)) } for i := range this.Field10 { if this.Field10[i] != that.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that.Field10[i]) } } if len(this.Field11) != len(that.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that.Field11)) } for i := range this.Field11 { if this.Field11[i] != that.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that.Field11[i]) } } if len(this.Field12) != len(that.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that.Field12)) } for i := range this.Field12 { if this.Field12[i] != that.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that.Field12[i]) } } if len(this.Field13) != len(that.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that.Field13)) } for i := range this.Field13 { if this.Field13[i] != that.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that.XXX_unrecognized) } return nil } golang-gogoprotobuf-0.5/test/proto3extension/000077500000000000000000000000001317075173200215075ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/proto3extension/Makefile000066400000000000000000000033051317075173200231500ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2016, 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 go install github.com/gogo/protobuf/protoc-min-version protoc-min-version --version="3.0.0" --gogo_out=Mgoogle/protobuf/descriptor.proto=github.com/gogo/protobuf/protoc-gen-gogo/descriptor:. --proto_path=../../../../../:../../protobuf/:. *.protogolang-gogoprotobuf-0.5/test/proto3extension/proto3ext.pb.go000066400000000000000000000047111317075173200244100ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto3ext.proto /* Package proto3extension is a generated protocol buffer package. It is generated from these files: proto3ext.proto It has these top-level messages: */ package proto3extension import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import google_protobuf "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package var E_Primary = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*bool)(nil), Field: 51234, Name: "proto3extension.primary", Tag: "varint,51234,opt,name=primary", Filename: "proto3ext.proto", } var E_Index = &proto.ExtensionDesc{ ExtendedType: (*google_protobuf.FieldOptions)(nil), ExtensionType: (*bool)(nil), Field: 51235, Name: "proto3extension.index", Tag: "varint,51235,opt,name=index", Filename: "proto3ext.proto", } func init() { proto.RegisterExtension(E_Primary) proto.RegisterExtension(E_Index) } func init() { proto.RegisterFile("proto3ext.proto", fileDescriptorProto3Ext) } var fileDescriptorProto3Ext = []byte{ // 137 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2f, 0x28, 0xca, 0x2f, 0xc9, 0x37, 0x4e, 0xad, 0x28, 0xd1, 0x03, 0xb3, 0x84, 0x10, 0x02, 0xa9, 0x79, 0xc5, 0x99, 0xf9, 0x79, 0x52, 0x0a, 0xe9, 0xf9, 0xf9, 0xe9, 0x39, 0xa9, 0xfa, 0x60, 0xf1, 0xa4, 0xd2, 0x34, 0xfd, 0x94, 0xd4, 0xe2, 0xe4, 0xa2, 0xcc, 0x82, 0x92, 0xfc, 0x22, 0x88, 0x16, 0x2b, 0x4b, 0x2e, 0xf6, 0x82, 0xa2, 0xcc, 0xdc, 0xc4, 0xa2, 0x4a, 0x21, 0x59, 0x3d, 0x88, 0x6a, 0x3d, 0x98, 0x6a, 0x3d, 0xb7, 0xcc, 0xd4, 0x9c, 0x14, 0xff, 0x82, 0x92, 0xcc, 0xfc, 0xbc, 0x62, 0x89, 0x45, 0x13, 0x98, 0x15, 0x18, 0x35, 0x38, 0x82, 0x60, 0xea, 0xad, 0x4c, 0xb9, 0x58, 0x33, 0xf3, 0x52, 0x52, 0x2b, 0x08, 0x69, 0x5c, 0x0c, 0xd5, 0x08, 0x51, 0x9d, 0xc4, 0x06, 0x71, 0x24, 0x20, 0x00, 0x00, 0xff, 0xff, 0xff, 0xd4, 0x32, 0x01, 0xbe, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/proto3extension/proto3ext.proto000066400000000000000000000002611317075173200245420ustar00rootroot00000000000000syntax = "proto3"; package proto3extension; import "google/protobuf/descriptor.proto"; extend google.protobuf.FieldOptions { bool primary = 51234; bool index = 51235; } golang-gogoprotobuf-0.5/test/protosize/000077500000000000000000000000001317075173200203625ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/protosize/Makefile000066400000000000000000000027571317075173200220350ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. protosize.proto) golang-gogoprotobuf-0.5/test/protosize/protosize.pb.go000066400000000000000000000335101317075173200233510ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: protosize.proto /* Package protosize is a generated protocol buffer package. It is generated from these files: protosize.proto It has these top-level messages: SizeMessage */ package protosize import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type SizeMessage struct { Size *int64 `protobuf:"varint,1,opt,name=size" json:"size,omitempty"` ProtoSize_ *int64 `protobuf:"varint,2,opt,name=proto_size,json=protoSize" json:"proto_size,omitempty"` Equal_ *bool `protobuf:"varint,3,opt,name=Equal" json:"Equal,omitempty"` String_ *string `protobuf:"bytes,4,opt,name=String" json:"String,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *SizeMessage) Reset() { *m = SizeMessage{} } func (m *SizeMessage) String() string { return proto.CompactTextString(m) } func (*SizeMessage) ProtoMessage() {} func (*SizeMessage) Descriptor() ([]byte, []int) { return fileDescriptorProtosize, []int{0} } func (m *SizeMessage) GetSize() int64 { if m != nil && m.Size != nil { return *m.Size } return 0 } func (m *SizeMessage) GetProtoSize_() int64 { if m != nil && m.ProtoSize_ != nil { return *m.ProtoSize_ } return 0 } func (m *SizeMessage) GetEqual_() bool { if m != nil && m.Equal_ != nil { return *m.Equal_ } return false } func (m *SizeMessage) GetString_() string { if m != nil && m.String_ != nil { return *m.String_ } return "" } func init() { proto.RegisterType((*SizeMessage)(nil), "protosize.SizeMessage") } func (this *SizeMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SizeMessage) if !ok { that2, ok := that.(SizeMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Size != nil && that1.Size != nil { if *this.Size != *that1.Size { return false } } else if this.Size != nil { return false } else if that1.Size != nil { return false } if this.ProtoSize_ != nil && that1.ProtoSize_ != nil { if *this.ProtoSize_ != *that1.ProtoSize_ { return false } } else if this.ProtoSize_ != nil { return false } else if that1.ProtoSize_ != nil { return false } if this.Equal_ != nil && that1.Equal_ != nil { if *this.Equal_ != *that1.Equal_ { return false } } else if this.Equal_ != nil { return false } else if that1.Equal_ != nil { return false } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return false } } else if this.String_ != nil { return false } else if that1.String_ != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (m *SizeMessage) Marshal() (dAtA []byte, err error) { size := m.ProtoSize() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *SizeMessage) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Size != nil { dAtA[i] = 0x8 i++ i = encodeVarintProtosize(dAtA, i, uint64(*m.Size)) } if m.ProtoSize_ != nil { dAtA[i] = 0x10 i++ i = encodeVarintProtosize(dAtA, i, uint64(*m.ProtoSize_)) } if m.Equal_ != nil { dAtA[i] = 0x18 i++ if *m.Equal_ { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.String_ != nil { dAtA[i] = 0x22 i++ i = encodeVarintProtosize(dAtA, i, uint64(len(*m.String_))) i += copy(dAtA[i:], *m.String_) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintProtosize(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedSizeMessage(r randyProtosize, easy bool) *SizeMessage { this := &SizeMessage{} if r.Intn(10) != 0 { v1 := int64(r.Int63()) if r.Intn(2) == 0 { v1 *= -1 } this.Size = &v1 } if r.Intn(10) != 0 { v2 := int64(r.Int63()) if r.Intn(2) == 0 { v2 *= -1 } this.ProtoSize_ = &v2 } if r.Intn(10) != 0 { v3 := bool(bool(r.Intn(2) == 0)) this.Equal_ = &v3 } if r.Intn(10) != 0 { v4 := string(randStringProtosize(r)) this.String_ = &v4 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedProtosize(r, 5) } return this } type randyProtosize interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneProtosize(r randyProtosize) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringProtosize(r randyProtosize) string { v5 := r.Intn(100) tmps := make([]rune, v5) for i := 0; i < v5; i++ { tmps[i] = randUTF8RuneProtosize(r) } return string(tmps) } func randUnrecognizedProtosize(r randyProtosize, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldProtosize(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldProtosize(dAtA []byte, r randyProtosize, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateProtosize(dAtA, uint64(key)) v6 := r.Int63() if r.Intn(2) == 0 { v6 *= -1 } dAtA = encodeVarintPopulateProtosize(dAtA, uint64(v6)) case 1: dAtA = encodeVarintPopulateProtosize(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateProtosize(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateProtosize(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateProtosize(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateProtosize(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *SizeMessage) ProtoSize() (n int) { var l int _ = l if m.Size != nil { n += 1 + sovProtosize(uint64(*m.Size)) } if m.ProtoSize_ != nil { n += 1 + sovProtosize(uint64(*m.ProtoSize_)) } if m.Equal_ != nil { n += 2 } if m.String_ != nil { l = len(*m.String_) n += 1 + l + sovProtosize(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovProtosize(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozProtosize(x uint64) (n int) { return sovProtosize(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *SizeMessage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProtosize } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: SizeMessage: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: SizeMessage: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Size", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProtosize } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Size = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field ProtoSize_", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProtosize } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.ProtoSize_ = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Equal_", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProtosize } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Equal_ = &b case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field String_", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProtosize } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthProtosize } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.String_ = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipProtosize(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthProtosize } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipProtosize(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProtosize } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProtosize } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProtosize } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthProtosize } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProtosize } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipProtosize(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthProtosize = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowProtosize = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("protosize.proto", fileDescriptorProtosize) } var fileDescriptorProtosize = []byte{ // 182 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2f, 0x28, 0xca, 0x2f, 0xc9, 0x2f, 0xce, 0xac, 0x4a, 0xd5, 0x03, 0xb3, 0x84, 0x38, 0xe1, 0x02, 0x52, 0xba, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xe9, 0xf9, 0xe9, 0xf9, 0xfa, 0x60, 0xa9, 0xa4, 0xd2, 0x34, 0x30, 0x0f, 0xcc, 0x01, 0xb3, 0x20, 0x3a, 0x95, 0xf2, 0xb8, 0xb8, 0x83, 0x33, 0xab, 0x52, 0x7d, 0x53, 0x8b, 0x8b, 0x13, 0xd3, 0x53, 0x85, 0x84, 0xb8, 0x58, 0x40, 0xa6, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x30, 0x07, 0x81, 0xd9, 0x42, 0xb2, 0x5c, 0x5c, 0x60, 0xb5, 0xf1, 0x60, 0x19, 0x26, 0xb0, 0x0c, 0xc4, 0x42, 0x90, 0x4e, 0x21, 0x11, 0x2e, 0x56, 0xd7, 0xc2, 0xd2, 0xc4, 0x1c, 0x09, 0x66, 0x05, 0x46, 0x0d, 0x8e, 0x20, 0x08, 0x47, 0x48, 0x8c, 0x8b, 0x2d, 0xb8, 0xa4, 0x28, 0x33, 0x2f, 0x5d, 0x82, 0x45, 0x81, 0x51, 0x83, 0x33, 0x08, 0xca, 0x73, 0x92, 0xf8, 0xf1, 0x50, 0x8e, 0x71, 0xc5, 0x23, 0x39, 0xc6, 0x1d, 0x8f, 0xe4, 0x18, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0x71, 0xc1, 0x63, 0x39, 0x46, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8b, 0xf7, 0x87, 0xb3, 0xd5, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/protosize/protosize.proto000066400000000000000000000036041317075173200235100ustar00rootroot00000000000000// 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 protosize; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.marshaler_all) = true; option (gogoproto.protosizer_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.equal_all) = true; message SizeMessage { optional int64 size = 1; optional int64 proto_size = 2; optional bool Equal = 3; optional string String = 4; } golang-gogoprotobuf-0.5/test/protosize/protosize_test.go000066400000000000000000000031511317075173200240060ustar00rootroot00000000000000// 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. package protosize // We expect that Size field will have no suffix and ProtoSize will be present var ( _ = SizeMessage{}.Size _ = (&SizeMessage{}).GetSize _ = (&SizeMessage{}).ProtoSize ) golang-gogoprotobuf-0.5/test/protosize/protosizepb_test.go000066400000000000000000000110421317075173200243260ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: protosize.proto /* Package protosize is a generated protocol buffer package. It is generated from these files: protosize.proto It has these top-level messages: SizeMessage */ package protosize import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSizeMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SizeMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSizeMessageMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, false) size := p.ProtoSize() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SizeMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSizeMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SizeMessage{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSizeMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &SizeMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSizeMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &SizeMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSizeMessageProtoSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.ProtoSize() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/registration/000077500000000000000000000000001317075173200210365ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/registration/.gitignore000066400000000000000000000000221317075173200230200ustar00rootroot00000000000000*.pb.go *_test.go golang-gogoprotobuf-0.5/test/registration/Makefile000066400000000000000000000031411317075173200224750ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2017, 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. test: go install github.com/gogo/protobuf/protoc-gen-gogo (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. registration.proto) cp registration_test.go.in registration_test.go go test ./... golang-gogoprotobuf-0.5/test/registration/registration.proto000066400000000000000000000032631317075173200246410ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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 = "proto3"; package registration; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_registration) = true; enum AnEnum { A_VALUE = 0; ANOTHER_VALUE = 1; } message AMessage { string a_string = 1; uint32 a_uint = 2; } golang-gogoprotobuf-0.5/test/registration/registration_test.go.in000066400000000000000000000057271317075173200255560ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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. package registration import ( "testing" gogoproto "github.com/gogo/protobuf/proto" golangproto "github.com/golang/protobuf/proto" ) func TestEnumRegistered(t *testing.T) { wantMap := map[string]int32{ "A_VALUE": 0, "ANOTHER_VALUE": 1, } gotMap := golangproto.EnumValueMap("registration.AnEnum") for k, want := range wantMap { got, ok := gotMap[k] if !ok { t.Errorf("Enum value %q was not registered with golang/protobuf", k) } if got != want { t.Errorf("Enum value %q was different with golang/protobuf: want %v, got %v", k, want, got) } } gotMap = gogoproto.EnumValueMap("registration.AnEnum") for k, want := range wantMap { got, ok := gotMap[k] if !ok { t.Errorf("Enum value %q was not registered with gogo/protobuf", k) } if got != want { t.Errorf("Enum value %q was different with gogo/protobuf: want %v, got %v", k, want, got) } } } func TestMessageRegistered(t *testing.T) { got := golangproto.MessageType("registration.AMessage") if got == nil { t.Error(`Message "AMessage" was not registered with golang/protobuf`) } got = gogoproto.MessageType("registration.AMessage") if got == nil { t.Error(`Message "AMessage" was not registered with gogo/protobuf`) } } func TestFileRegistered(t *testing.T) { got := golangproto.FileDescriptor("registration.proto") if got == nil { t.Error(`File "registration.proto" was not registered with golang/protobuf`) } got = gogoproto.FileDescriptor("registration.proto") if got == nil { t.Error(`File "registration.proto" was not registered with gogo/protobuf`) } } golang-gogoprotobuf-0.5/test/required/000077500000000000000000000000001317075173200201445ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/required/Makefile000066400000000000000000000027651317075173200216160ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. requiredexample.proto) golang-gogoprotobuf-0.5/test/required/requiredexample.pb.go000066400000000000000000001545521317075173200243030ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: requiredexample.proto /* Package required is a generated protocol buffer package. It is generated from these files: requiredexample.proto It has these top-level messages: RequiredExample NidOptNative NinOptNative NestedNinOptNative */ package required import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type RequiredExample struct { TheRequiredString *string `protobuf:"bytes,1,req,name=theRequiredString" json:"theRequiredString,omitempty"` TheOptionalString *string `protobuf:"bytes,2,opt,name=theOptionalString" json:"theOptionalString,omitempty"` TheRepeatedStrings []string `protobuf:"bytes,3,rep,name=theRepeatedStrings" json:"theRepeatedStrings,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *RequiredExample) Reset() { *m = RequiredExample{} } func (m *RequiredExample) String() string { return proto.CompactTextString(m) } func (*RequiredExample) ProtoMessage() {} func (*RequiredExample) Descriptor() ([]byte, []int) { return fileDescriptorRequiredexample, []int{0} } func (m *RequiredExample) GetTheRequiredString() string { if m != nil && m.TheRequiredString != nil { return *m.TheRequiredString } return "" } func (m *RequiredExample) GetTheOptionalString() string { if m != nil && m.TheOptionalString != nil { return *m.TheOptionalString } return "" } func (m *RequiredExample) GetTheRepeatedStrings() []string { if m != nil { return m.TheRepeatedStrings } return nil } type NidOptNative struct { Field1 float64 `protobuf:"fixed64,1,req,name=Field1" json:"Field1"` Field2 float32 `protobuf:"fixed32,2,req,name=Field2" json:"Field2"` Field3 int32 `protobuf:"varint,3,req,name=Field3" json:"Field3"` Field4 int64 `protobuf:"varint,4,req,name=Field4" json:"Field4"` Field5 uint32 `protobuf:"varint,5,req,name=Field5" json:"Field5"` Field6 uint64 `protobuf:"varint,6,req,name=Field6" json:"Field6"` Field7 int32 `protobuf:"zigzag32,7,req,name=Field7" json:"Field7"` Field8 int64 `protobuf:"zigzag64,8,req,name=Field8" json:"Field8"` Field9 uint32 `protobuf:"fixed32,9,req,name=Field9" json:"Field9"` Field10 int32 `protobuf:"fixed32,10,req,name=Field10" json:"Field10"` Field11 uint64 `protobuf:"fixed64,11,req,name=Field11" json:"Field11"` Field12 int64 `protobuf:"fixed64,12,req,name=Field12" json:"Field12"` Field13 bool `protobuf:"varint,13,req,name=Field13" json:"Field13"` Field14 string `protobuf:"bytes,14,req,name=Field14" json:"Field14"` Field15 []byte `protobuf:"bytes,15,req,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptNative) Reset() { *m = NidOptNative{} } func (m *NidOptNative) String() string { return proto.CompactTextString(m) } func (*NidOptNative) ProtoMessage() {} func (*NidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorRequiredexample, []int{1} } func (m *NidOptNative) GetField1() float64 { if m != nil { return m.Field1 } return 0 } func (m *NidOptNative) GetField2() float32 { if m != nil { return m.Field2 } return 0 } func (m *NidOptNative) GetField3() int32 { if m != nil { return m.Field3 } return 0 } func (m *NidOptNative) GetField4() int64 { if m != nil { return m.Field4 } return 0 } func (m *NidOptNative) GetField5() uint32 { if m != nil { return m.Field5 } return 0 } func (m *NidOptNative) GetField6() uint64 { if m != nil { return m.Field6 } return 0 } func (m *NidOptNative) GetField7() int32 { if m != nil { return m.Field7 } return 0 } func (m *NidOptNative) GetField8() int64 { if m != nil { return m.Field8 } return 0 } func (m *NidOptNative) GetField9() uint32 { if m != nil { return m.Field9 } return 0 } func (m *NidOptNative) GetField10() int32 { if m != nil { return m.Field10 } return 0 } func (m *NidOptNative) GetField11() uint64 { if m != nil { return m.Field11 } return 0 } func (m *NidOptNative) GetField12() int64 { if m != nil { return m.Field12 } return 0 } func (m *NidOptNative) GetField13() bool { if m != nil { return m.Field13 } return false } func (m *NidOptNative) GetField14() string { if m != nil { return m.Field14 } return "" } func (m *NidOptNative) GetField15() []byte { if m != nil { return m.Field15 } return nil } type NinOptNative struct { Field1 *float64 `protobuf:"fixed64,1,req,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,req,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,req,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,req,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,req,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,req,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,req,name=Field7" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,req,name=Field8" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,req,name=Field9" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,req,name=Field10" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,req,name=Field11" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,req,name=Field12" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,req,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,req,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,req,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNative) Reset() { *m = NinOptNative{} } func (m *NinOptNative) String() string { return proto.CompactTextString(m) } func (*NinOptNative) ProtoMessage() {} func (*NinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorRequiredexample, []int{2} } func (m *NinOptNative) GetField1() float64 { if m != nil && m.Field1 != nil { return *m.Field1 } return 0 } func (m *NinOptNative) GetField2() float32 { if m != nil && m.Field2 != nil { return *m.Field2 } return 0 } func (m *NinOptNative) GetField3() int32 { if m != nil && m.Field3 != nil { return *m.Field3 } return 0 } func (m *NinOptNative) GetField4() int64 { if m != nil && m.Field4 != nil { return *m.Field4 } return 0 } func (m *NinOptNative) GetField5() uint32 { if m != nil && m.Field5 != nil { return *m.Field5 } return 0 } func (m *NinOptNative) GetField6() uint64 { if m != nil && m.Field6 != nil { return *m.Field6 } return 0 } func (m *NinOptNative) GetField7() int32 { if m != nil && m.Field7 != nil { return *m.Field7 } return 0 } func (m *NinOptNative) GetField8() int64 { if m != nil && m.Field8 != nil { return *m.Field8 } return 0 } func (m *NinOptNative) GetField9() uint32 { if m != nil && m.Field9 != nil { return *m.Field9 } return 0 } func (m *NinOptNative) GetField10() int32 { if m != nil && m.Field10 != nil { return *m.Field10 } return 0 } func (m *NinOptNative) GetField11() uint64 { if m != nil && m.Field11 != nil { return *m.Field11 } return 0 } func (m *NinOptNative) GetField12() int64 { if m != nil && m.Field12 != nil { return *m.Field12 } return 0 } func (m *NinOptNative) GetField13() bool { if m != nil && m.Field13 != nil { return *m.Field13 } return false } func (m *NinOptNative) GetField14() string { if m != nil && m.Field14 != nil { return *m.Field14 } return "" } func (m *NinOptNative) GetField15() []byte { if m != nil { return m.Field15 } return nil } type NestedNinOptNative struct { NestedNinOpts []*NinOptNative `protobuf:"bytes,1,rep,name=NestedNinOpts" json:"NestedNinOpts,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedNinOptNative) Reset() { *m = NestedNinOptNative{} } func (m *NestedNinOptNative) String() string { return proto.CompactTextString(m) } func (*NestedNinOptNative) ProtoMessage() {} func (*NestedNinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorRequiredexample, []int{3} } func (m *NestedNinOptNative) GetNestedNinOpts() []*NinOptNative { if m != nil { return m.NestedNinOpts } return nil } func init() { proto.RegisterType((*RequiredExample)(nil), "required.RequiredExample") proto.RegisterType((*NidOptNative)(nil), "required.NidOptNative") proto.RegisterType((*NinOptNative)(nil), "required.NinOptNative") proto.RegisterType((*NestedNinOptNative)(nil), "required.NestedNinOptNative") } func (m *RequiredExample) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *RequiredExample) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.TheRequiredString == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("theRequiredString") } else { dAtA[i] = 0xa i++ i = encodeVarintRequiredexample(dAtA, i, uint64(len(*m.TheRequiredString))) i += copy(dAtA[i:], *m.TheRequiredString) } if m.TheOptionalString != nil { dAtA[i] = 0x12 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(len(*m.TheOptionalString))) i += copy(dAtA[i:], *m.TheOptionalString) } if len(m.TheRepeatedStrings) > 0 { for _, s := range m.TheRepeatedStrings { dAtA[i] = 0x1a i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NidOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NidOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Field1)))) i += 8 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Field2)))) i += 4 dAtA[i] = 0x18 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(m.Field3)) dAtA[i] = 0x20 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(m.Field4)) dAtA[i] = 0x28 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(m.Field5)) dAtA[i] = 0x30 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(m.Field6)) dAtA[i] = 0x38 i++ i = encodeVarintRequiredexample(dAtA, i, uint64((uint32(m.Field7)<<1)^uint32((m.Field7>>31)))) dAtA[i] = 0x40 i++ i = encodeVarintRequiredexample(dAtA, i, uint64((uint64(m.Field8)<<1)^uint64((m.Field8>>63)))) dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field9)) i += 4 dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(m.Field10)) i += 4 dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field11)) i += 8 dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(m.Field12)) i += 8 dAtA[i] = 0x68 i++ if m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x72 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(len(m.Field14))) i += copy(dAtA[i:], m.Field14) if m.Field15 != nil { dAtA[i] = 0x7a i++ i = encodeVarintRequiredexample(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NinOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NinOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field1") } else { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field1)))) i += 8 } if m.Field2 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field2") } else { dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(*m.Field2)))) i += 4 } if m.Field3 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field3") } else { dAtA[i] = 0x18 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(*m.Field3)) } if m.Field4 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field4") } else { dAtA[i] = 0x20 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(*m.Field4)) } if m.Field5 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field5") } else { dAtA[i] = 0x28 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(*m.Field5)) } if m.Field6 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field6") } else { dAtA[i] = 0x30 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(*m.Field6)) } if m.Field7 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field7") } else { dAtA[i] = 0x38 i++ i = encodeVarintRequiredexample(dAtA, i, uint64((uint32(*m.Field7)<<1)^uint32((*m.Field7>>31)))) } if m.Field8 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field8") } else { dAtA[i] = 0x40 i++ i = encodeVarintRequiredexample(dAtA, i, uint64((uint64(*m.Field8)<<1)^uint64((*m.Field8>>63)))) } if m.Field9 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field9") } else { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field9)) i += 4 } if m.Field10 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field10") } else { dAtA[i] = 0x55 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(*m.Field10)) i += 4 } if m.Field11 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field11") } else { dAtA[i] = 0x59 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field11)) i += 8 } if m.Field12 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field12") } else { dAtA[i] = 0x61 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(*m.Field12)) i += 8 } if m.Field13 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field13") } else { dAtA[i] = 0x68 i++ if *m.Field13 { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Field14 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field14") } else { dAtA[i] = 0x72 i++ i = encodeVarintRequiredexample(dAtA, i, uint64(len(*m.Field14))) i += copy(dAtA[i:], *m.Field14) } if m.Field15 == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field15") } else { dAtA[i] = 0x7a i++ i = encodeVarintRequiredexample(dAtA, i, uint64(len(m.Field15))) i += copy(dAtA[i:], m.Field15) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *NestedNinOptNative) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NestedNinOptNative) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NestedNinOpts) > 0 { for _, msg := range m.NestedNinOpts { dAtA[i] = 0xa i++ i = encodeVarintRequiredexample(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintRequiredexample(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedRequiredExample(r randyRequiredexample, easy bool) *RequiredExample { this := &RequiredExample{} v1 := string(randStringRequiredexample(r)) this.TheRequiredString = &v1 if r.Intn(10) != 0 { v2 := string(randStringRequiredexample(r)) this.TheOptionalString = &v2 } if r.Intn(10) != 0 { v3 := r.Intn(10) this.TheRepeatedStrings = make([]string, v3) for i := 0; i < v3; i++ { this.TheRepeatedStrings[i] = string(randStringRequiredexample(r)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedRequiredexample(r, 4) } return this } func NewPopulatedNidOptNative(r randyRequiredexample, easy bool) *NidOptNative { this := &NidOptNative{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } this.Field5 = uint32(r.Uint32()) this.Field6 = uint64(uint64(r.Uint32())) this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } this.Field9 = uint32(r.Uint32()) this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } this.Field11 = uint64(uint64(r.Uint32())) this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } this.Field13 = bool(bool(r.Intn(2) == 0)) this.Field14 = string(randStringRequiredexample(r)) v4 := r.Intn(100) this.Field15 = make([]byte, v4) for i := 0; i < v4; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedRequiredexample(r, 16) } return this } func NewPopulatedNinOptNative(r randyRequiredexample, easy bool) *NinOptNative { this := &NinOptNative{} v5 := float64(r.Float64()) if r.Intn(2) == 0 { v5 *= -1 } this.Field1 = &v5 v6 := float32(r.Float32()) if r.Intn(2) == 0 { v6 *= -1 } this.Field2 = &v6 v7 := int32(r.Int31()) if r.Intn(2) == 0 { v7 *= -1 } this.Field3 = &v7 v8 := int64(r.Int63()) if r.Intn(2) == 0 { v8 *= -1 } this.Field4 = &v8 v9 := uint32(r.Uint32()) this.Field5 = &v9 v10 := uint64(uint64(r.Uint32())) this.Field6 = &v10 v11 := int32(r.Int31()) if r.Intn(2) == 0 { v11 *= -1 } this.Field7 = &v11 v12 := int64(r.Int63()) if r.Intn(2) == 0 { v12 *= -1 } this.Field8 = &v12 v13 := uint32(r.Uint32()) this.Field9 = &v13 v14 := int32(r.Int31()) if r.Intn(2) == 0 { v14 *= -1 } this.Field10 = &v14 v15 := uint64(uint64(r.Uint32())) this.Field11 = &v15 v16 := int64(r.Int63()) if r.Intn(2) == 0 { v16 *= -1 } this.Field12 = &v16 v17 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v17 v18 := string(randStringRequiredexample(r)) this.Field14 = &v18 v19 := r.Intn(100) this.Field15 = make([]byte, v19) for i := 0; i < v19; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedRequiredexample(r, 16) } return this } func NewPopulatedNestedNinOptNative(r randyRequiredexample, easy bool) *NestedNinOptNative { this := &NestedNinOptNative{} if r.Intn(10) != 0 { v20 := r.Intn(5) this.NestedNinOpts = make([]*NinOptNative, v20) for i := 0; i < v20; i++ { this.NestedNinOpts[i] = NewPopulatedNinOptNative(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedRequiredexample(r, 2) } return this } type randyRequiredexample interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneRequiredexample(r randyRequiredexample) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringRequiredexample(r randyRequiredexample) string { v21 := r.Intn(100) tmps := make([]rune, v21) for i := 0; i < v21; i++ { tmps[i] = randUTF8RuneRequiredexample(r) } return string(tmps) } func randUnrecognizedRequiredexample(r randyRequiredexample, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldRequiredexample(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldRequiredexample(dAtA []byte, r randyRequiredexample, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateRequiredexample(dAtA, uint64(key)) v22 := r.Int63() if r.Intn(2) == 0 { v22 *= -1 } dAtA = encodeVarintPopulateRequiredexample(dAtA, uint64(v22)) case 1: dAtA = encodeVarintPopulateRequiredexample(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateRequiredexample(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateRequiredexample(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateRequiredexample(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateRequiredexample(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *RequiredExample) Size() (n int) { var l int _ = l if m.TheRequiredString != nil { l = len(*m.TheRequiredString) n += 1 + l + sovRequiredexample(uint64(l)) } if m.TheOptionalString != nil { l = len(*m.TheOptionalString) n += 1 + l + sovRequiredexample(uint64(l)) } if len(m.TheRepeatedStrings) > 0 { for _, s := range m.TheRepeatedStrings { l = len(s) n += 1 + l + sovRequiredexample(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptNative) Size() (n int) { var l int _ = l n += 9 n += 5 n += 1 + sovRequiredexample(uint64(m.Field3)) n += 1 + sovRequiredexample(uint64(m.Field4)) n += 1 + sovRequiredexample(uint64(m.Field5)) n += 1 + sovRequiredexample(uint64(m.Field6)) n += 1 + sozRequiredexample(uint64(m.Field7)) n += 1 + sozRequiredexample(uint64(m.Field8)) n += 5 n += 5 n += 9 n += 9 n += 2 l = len(m.Field14) n += 1 + l + sovRequiredexample(uint64(l)) if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovRequiredexample(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNative) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovRequiredexample(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovRequiredexample(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovRequiredexample(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovRequiredexample(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozRequiredexample(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozRequiredexample(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovRequiredexample(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovRequiredexample(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedNinOptNative) Size() (n int) { var l int _ = l if len(m.NestedNinOpts) > 0 { for _, e := range m.NestedNinOpts { l = e.Size() n += 1 + l + sovRequiredexample(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovRequiredexample(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozRequiredexample(x uint64) (n int) { return sovRequiredexample(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *RequiredExample) Unmarshal(dAtA []byte) error { var hasFields [1]uint64 l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: RequiredExample: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: RequiredExample: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field TheRequiredString", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthRequiredexample } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.TheRequiredString = &s iNdEx = postIndex hasFields[0] |= uint64(0x00000001) case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field TheOptionalString", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthRequiredexample } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.TheOptionalString = &s iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field TheRepeatedStrings", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthRequiredexample } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.TheRepeatedStrings = append(m.TheRepeatedStrings, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRequiredexample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthRequiredexample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if hasFields[0]&uint64(0x00000001) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("theRequiredString") } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NidOptNative) Unmarshal(dAtA []byte) error { var hasFields [1]uint64 l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NidOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NidOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field1 = float64(math.Float64frombits(v)) hasFields[0] |= uint64(0x00000001) case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field2 = float32(math.Float32frombits(v)) hasFields[0] |= uint64(0x00000002) case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } m.Field3 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field3 |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } hasFields[0] |= uint64(0x00000004) case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } m.Field4 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field4 |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } hasFields[0] |= uint64(0x00000008) case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } m.Field5 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field5 |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } hasFields[0] |= uint64(0x00000010) case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } m.Field6 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Field6 |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } hasFields[0] |= uint64(0x00000020) case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = v hasFields[0] |= uint64(0x00000040) case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Field8 = int64(v) hasFields[0] |= uint64(0x00000080) case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } m.Field9 = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.Field9 = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 hasFields[0] |= uint64(0x00000100) case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } m.Field10 = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.Field10 = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 hasFields[0] |= uint64(0x00000200) case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } m.Field11 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Field11 = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 hasFields[0] |= uint64(0x00000400) case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } m.Field12 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Field12 = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 hasFields[0] |= uint64(0x00000800) case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Field13 = bool(v != 0) hasFields[0] |= uint64(0x00001000) case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthRequiredexample } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field14 = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex hasFields[0] |= uint64(0x00002000) case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthRequiredexample } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex hasFields[0] |= uint64(0x00004000) default: iNdEx = preIndex skippy, err := skipRequiredexample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthRequiredexample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if hasFields[0]&uint64(0x00000001) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field1") } if hasFields[0]&uint64(0x00000002) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field2") } if hasFields[0]&uint64(0x00000004) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field3") } if hasFields[0]&uint64(0x00000008) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field4") } if hasFields[0]&uint64(0x00000010) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field5") } if hasFields[0]&uint64(0x00000020) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field6") } if hasFields[0]&uint64(0x00000040) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field7") } if hasFields[0]&uint64(0x00000080) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field8") } if hasFields[0]&uint64(0x00000100) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field9") } if hasFields[0]&uint64(0x00000200) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field10") } if hasFields[0]&uint64(0x00000400) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field11") } if hasFields[0]&uint64(0x00000800) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field12") } if hasFields[0]&uint64(0x00001000) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field13") } if hasFields[0]&uint64(0x00002000) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field14") } if hasFields[0]&uint64(0x00004000) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field15") } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NinOptNative) Unmarshal(dAtA []byte) error { var hasFields [1]uint64 l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NinOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NinOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field1 = &v2 hasFields[0] |= uint64(0x00000001) case 2: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field2 = &v2 hasFields[0] |= uint64(0x00000002) case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v hasFields[0] |= uint64(0x00000004) case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field4 = &v hasFields[0] |= uint64(0x00000008) case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field5 = &v hasFields[0] |= uint64(0x00000010) case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v hasFields[0] |= uint64(0x00000020) case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Field7 = &v hasFields[0] |= uint64(0x00000040) case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field8", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) v2 := int64(v) m.Field8 = &v2 hasFields[0] |= uint64(0x00000080) case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field9", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field9 = &v hasFields[0] |= uint64(0x00000100) case 10: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Field10", wireType) } var v int32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Field10 = &v hasFields[0] |= uint64(0x00000200) case 11: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field11", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field11 = &v hasFields[0] |= uint64(0x00000400) case 12: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field12", wireType) } var v int64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Field12 = &v hasFields[0] |= uint64(0x00000800) case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field13", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Field13 = &b hasFields[0] |= uint64(0x00001000) case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field14", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthRequiredexample } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field14 = &s iNdEx = postIndex hasFields[0] |= uint64(0x00002000) case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field15", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthRequiredexample } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field15 = append(m.Field15[:0], dAtA[iNdEx:postIndex]...) if m.Field15 == nil { m.Field15 = []byte{} } iNdEx = postIndex hasFields[0] |= uint64(0x00004000) default: iNdEx = preIndex skippy, err := skipRequiredexample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthRequiredexample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if hasFields[0]&uint64(0x00000001) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field1") } if hasFields[0]&uint64(0x00000002) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field2") } if hasFields[0]&uint64(0x00000004) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field3") } if hasFields[0]&uint64(0x00000008) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field4") } if hasFields[0]&uint64(0x00000010) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field5") } if hasFields[0]&uint64(0x00000020) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field6") } if hasFields[0]&uint64(0x00000040) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field7") } if hasFields[0]&uint64(0x00000080) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field8") } if hasFields[0]&uint64(0x00000100) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field9") } if hasFields[0]&uint64(0x00000200) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field10") } if hasFields[0]&uint64(0x00000400) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field11") } if hasFields[0]&uint64(0x00000800) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field12") } if hasFields[0]&uint64(0x00001000) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field13") } if hasFields[0]&uint64(0x00002000) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field14") } if hasFields[0]&uint64(0x00004000) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Field15") } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NestedNinOptNative) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedNinOptNative: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedNinOptNative: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NestedNinOpts", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowRequiredexample } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthRequiredexample } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.NestedNinOpts = append(m.NestedNinOpts, &NinOptNative{}) if err := m.NestedNinOpts[len(m.NestedNinOpts)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRequiredexample(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthRequiredexample } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipRequiredexample(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowRequiredexample } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowRequiredexample } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowRequiredexample } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthRequiredexample } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowRequiredexample } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipRequiredexample(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthRequiredexample = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowRequiredexample = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("requiredexample.proto", fileDescriptorRequiredexample) } var fileDescriptorRequiredexample = []byte{ // 469 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0xd4, 0xdd, 0x8e, 0xd2, 0x40, 0x14, 0xc0, 0x71, 0x3b, 0x65, 0xf9, 0x98, 0x05, 0xd9, 0x6d, 0xe2, 0xe4, 0xc4, 0x98, 0x7a, 0xc2, 0xd5, 0x5c, 0x68, 0x57, 0x0a, 0xec, 0x47, 0xe2, 0xd5, 0x26, 0x7a, 0xc9, 0x26, 0xf5, 0x09, 0x58, 0x19, 0xd9, 0x26, 0x2c, 0xad, 0x30, 0x18, 0xaf, 0x7d, 0x0f, 0xdf, 0x67, 0x2f, 0x7d, 0x00, 0x63, 0x94, 0xa7, 0xf0, 0xd2, 0x58, 0xda, 0x33, 0x9c, 0xea, 0x1d, 0x3d, 0xff, 0x33, 0x13, 0xc8, 0x8f, 0x54, 0x3e, 0x59, 0x9b, 0x8f, 0xdb, 0x74, 0x6d, 0xe6, 0xe6, 0xf3, 0xec, 0x3e, 0x5f, 0x9a, 0x28, 0x5f, 0x67, 0x36, 0x0b, 0xda, 0xd5, 0xf8, 0xe9, 0xcb, 0x45, 0x6a, 0xef, 0xb6, 0xb7, 0xd1, 0xfb, 0xec, 0xfe, 0x6c, 0x91, 0x2d, 0xb2, 0xb3, 0x62, 0xe1, 0x76, 0xfb, 0xa1, 0x78, 0x2a, 0x1e, 0x8a, 0x4f, 0xfb, 0x83, 0x83, 0xaf, 0x9e, 0xec, 0x27, 0xe5, 0xd9, 0x37, 0xfb, 0x2b, 0x83, 0x17, 0xf2, 0xd4, 0xde, 0x99, 0x6a, 0xfa, 0xce, 0xae, 0xd3, 0xd5, 0x02, 0x3c, 0x14, 0xba, 0x93, 0xfc, 0x1b, 0xca, 0xed, 0x9b, 0xdc, 0xa6, 0xd9, 0x6a, 0xb6, 0x2c, 0xb7, 0x05, 0x7a, 0xe5, 0x36, 0x0f, 0x41, 0x24, 0x83, 0xe2, 0x8a, 0xdc, 0xcc, 0x6c, 0x75, 0xc5, 0x06, 0x7c, 0xf4, 0x75, 0x27, 0xf9, 0x4f, 0x19, 0x7c, 0xf7, 0x65, 0x77, 0x9a, 0xce, 0x6f, 0x72, 0x3b, 0x9d, 0xd9, 0xf4, 0x93, 0x09, 0x9e, 0xc9, 0xe6, 0xdb, 0xd4, 0x2c, 0xe7, 0xc3, 0xe2, 0x1b, 0x79, 0xd7, 0x8d, 0x87, 0x1f, 0xcf, 0x1f, 0x25, 0xe5, 0x8c, 0x6a, 0x0c, 0x02, 0x85, 0x16, 0xac, 0xc6, 0x54, 0x47, 0xe0, 0xa3, 0xd0, 0x47, 0xac, 0x8e, 0xa8, 0x8e, 0xa1, 0x81, 0x42, 0xfb, 0xac, 0x8e, 0xa9, 0x4e, 0xe0, 0x08, 0x85, 0xee, 0xb1, 0x3a, 0xa1, 0x7a, 0x0e, 0x4d, 0x14, 0xba, 0xc1, 0xea, 0x39, 0xd5, 0x0b, 0x68, 0xa1, 0xd0, 0xa7, 0xac, 0x5e, 0x50, 0xbd, 0x84, 0x36, 0x0a, 0x1d, 0xb0, 0x7a, 0x49, 0xf5, 0x0a, 0x3a, 0x28, 0x74, 0x8b, 0xd5, 0xab, 0x20, 0x94, 0xad, 0xfd, 0x2f, 0x7f, 0x05, 0x12, 0x85, 0xee, 0x97, 0xb9, 0x1a, 0xba, 0x3e, 0x84, 0x63, 0x14, 0xba, 0xc9, 0xfb, 0xd0, 0xf5, 0x18, 0xba, 0x28, 0xf4, 0x09, 0xef, 0xb1, 0xeb, 0x23, 0xe8, 0xa1, 0xd0, 0x6d, 0xde, 0x47, 0xae, 0x8f, 0xe1, 0xf1, 0xdf, 0x3f, 0x08, 0xef, 0x63, 0xd7, 0x27, 0xd0, 0x47, 0xa1, 0xbb, 0xbc, 0x4f, 0x06, 0x5f, 0x0a, 0xde, 0x95, 0xe3, 0x55, 0x9c, 0x97, 0x60, 0x15, 0x87, 0x25, 0x52, 0xc5, 0x49, 0x09, 0x53, 0x71, 0x4c, 0x62, 0x54, 0x9c, 0x91, 0x00, 0x15, 0x07, 0x24, 0x3a, 0xc5, 0xe9, 0x08, 0x4d, 0x71, 0x34, 0xe2, 0x52, 0x9c, 0x8b, 0xa0, 0xa0, 0x06, 0xe5, 0x88, 0xa0, 0x46, 0xe4, 0x70, 0xa0, 0x86, 0xe3, 0x58, 0xa0, 0xc6, 0xe2, 0x40, 0xa0, 0x06, 0xe2, 0x28, 0xa0, 0x46, 0xe1, 0x10, 0x12, 0x19, 0x4c, 0xcd, 0xc6, 0x9a, 0x39, 0x93, 0x78, 0x2d, 0x7b, 0x87, 0xd3, 0x0d, 0x78, 0xe8, 0xeb, 0xe3, 0x58, 0x45, 0xd5, 0xab, 0x26, 0x3a, 0x5c, 0x4f, 0xf8, 0xf2, 0xf5, 0xc9, 0xef, 0x5f, 0xa1, 0xf7, 0xb0, 0x0b, 0xbd, 0x6f, 0xbb, 0xd0, 0xfb, 0xb9, 0x0b, 0xbd, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x03, 0x9e, 0xae, 0x5f, 0xba, 0x04, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/required/requiredexample.proto000066400000000000000000000065611317075173200244350ustar00rootroot00000000000000// 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 required; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.populate_all) = true; message RequiredExample { required string theRequiredString = 1; optional string theOptionalString = 2; repeated string theRepeatedStrings = 3; } message NidOptNative { required double Field1 = 1 [(gogoproto.nullable) = false]; required float Field2 = 2 [(gogoproto.nullable) = false]; required int32 Field3 = 3 [(gogoproto.nullable) = false]; required int64 Field4 = 4 [(gogoproto.nullable) = false]; required uint32 Field5 = 5 [(gogoproto.nullable) = false]; required uint64 Field6 = 6 [(gogoproto.nullable) = false]; required sint32 Field7 = 7 [(gogoproto.nullable) = false]; required sint64 Field8 = 8 [(gogoproto.nullable) = false]; required fixed32 Field9 = 9 [(gogoproto.nullable) = false]; required sfixed32 Field10 = 10 [(gogoproto.nullable) = false]; required fixed64 Field11 = 11 [(gogoproto.nullable) = false]; required sfixed64 Field12 = 12 [(gogoproto.nullable) = false]; required bool Field13 = 13 [(gogoproto.nullable) = false]; required string Field14 = 14 [(gogoproto.nullable) = false]; required bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinOptNative { required double Field1 = 1; required float Field2 = 2; required int32 Field3 = 3; required int64 Field4 = 4; required uint32 Field5 = 5; required uint64 Field6 = 6; required sint32 Field7 = 7; required sint64 Field8 = 8; required fixed32 Field9 = 9; required sfixed32 Field10 = 10; required fixed64 Field11 = 11; required sfixed64 Field12 = 12; required bool Field13 = 13; required string Field14 = 14; required bytes Field15 = 15; } message NestedNinOptNative { repeated NinOptNative NestedNinOpts = 1; } golang-gogoprotobuf-0.5/test/required/requiredexamplepb_test.go000066400000000000000000000144641317075173200252610ustar00rootroot00000000000000// 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. package required import ( "github.com/gogo/protobuf/proto" "github.com/gogo/protobuf/test" "math/rand" "reflect" "strconv" "testing" "time" ) func TestMarshalToErrorsWhenRequiredFieldIsNotPresent(t *testing.T) { data := RequiredExample{} buf, err := proto.Marshal(&data) if err == nil { t.Fatalf("err == nil; was %v instead", err) } if err.Error() != `proto: required field "theRequiredString" not set` { t.Fatalf(`err.Error() != "proto: required field "theRequiredString" not set"; was "%s" instead`, err.Error()) } if len(buf) != 0 { t.Fatalf(`len(buf) != 0; was %d instead`, len(buf)) } } func TestMarshalToSucceedsWhenRequiredFieldIsPresent(t *testing.T) { data := RequiredExample{ TheRequiredString: proto.String("present"), } buf, err := proto.Marshal(&data) if err != nil { t.Fatalf("err != nil; was %v instead", err) } if len(buf) == 0 { t.Fatalf(`len(buf) == 0; expected nonzero`) } } func TestUnmarshalErrorsWhenRequiredFieldIsNotPresent(t *testing.T) { missingRequiredField := []byte{0x12, 0x8, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c} data := RequiredExample{} err := proto.Unmarshal(missingRequiredField, &data) if err == nil { t.Fatalf("err == nil; was %v instead", err) } if err.Error() != `proto: required field "theRequiredString" not set` { t.Fatalf(`err.Error() != "proto: required field "theRequiredString" not set"; was "%s" instead`, err.Error()) } } func TestUnmarshalSucceedsWhenRequiredIsNotPresent(t *testing.T) { dataOut := RequiredExample{ TheRequiredString: proto.String("present"), } encodedMessage, err := proto.Marshal(&dataOut) if err != nil { t.Fatalf("Unexpected error when marshalling dataOut: %v", err) } dataIn := RequiredExample{} err = proto.Unmarshal(encodedMessage, &dataIn) if err != nil { t.Fatalf("err != nil; was %v instead", err) } } func TestUnmarshalPopulatedOptionalFieldsAsRequiredSucceeds(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) dataOut := test.NewPopulatedNidOptNative(r, true) encodedMessage, err := proto.Marshal(dataOut) if err != nil { t.Fatalf("Unexpected error when marshalling dataOut: %v", err) } dataIn := NidOptNative{} err = proto.Unmarshal(encodedMessage, &dataIn) if err != nil { t.Fatalf("err != nil; was %v instead", err) } } func TestUnmarshalPartiallyPopulatedOptionalFieldsFails(t *testing.T) { // Fill in all fields, then randomly remove one. dataOut := &test.NinOptNative{ Field1: proto.Float64(0), Field2: proto.Float32(0), Field3: proto.Int32(0), Field4: proto.Int64(0), Field5: proto.Uint32(0), Field6: proto.Uint64(0), Field7: proto.Int32(0), Field8: proto.Int64(0), Field9: proto.Uint32(0), Field10: proto.Int32(0), Field11: proto.Uint64(0), Field12: proto.Int64(0), Field13: proto.Bool(false), Field14: proto.String("0"), Field15: []byte("0"), } r := rand.New(rand.NewSource(time.Now().UnixNano())) fieldName := "Field" + strconv.Itoa(r.Intn(15)+1) field := reflect.ValueOf(dataOut).Elem().FieldByName(fieldName) fieldType := field.Type() field.Set(reflect.Zero(fieldType)) encodedMessage, err := proto.Marshal(dataOut) if err != nil { t.Fatalf("Unexpected error when marshalling dataOut: %v", err) } dataIn := NidOptNative{} err = proto.Unmarshal(encodedMessage, &dataIn) if err.Error() != `proto: required field "`+fieldName+`" not set` { t.Fatalf(`err.Error() != "proto: required field "`+fieldName+`" not set"; was "%s" instead`, err.Error()) } } func TestMarshalFailsWithoutAllFieldsSet(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) dataOut := NewPopulatedNinOptNative(r, true) fieldName := "Field" + strconv.Itoa(r.Intn(15)+1) field := reflect.ValueOf(dataOut).Elem().FieldByName(fieldName) fieldType := field.Type() field.Set(reflect.Zero(fieldType)) encodedMessage, err := proto.Marshal(dataOut) if err.Error() != `proto: required field "`+fieldName+`" not set` { t.Fatalf(`err.Error() != "proto: required field "`+fieldName+`" not set"; was "%s" instead`, err.Error()) } if len(encodedMessage) > 0 { t.Fatalf("Got some bytes from marshal, expected none.") } } func TestMissingFieldsOnRepeatedNestedTypes(t *testing.T) { r := rand.New(rand.NewSource(time.Now().UnixNano())) dataOut := &NestedNinOptNative{ NestedNinOpts: []*NinOptNative{ NewPopulatedNinOptNative(r, true), NewPopulatedNinOptNative(r, true), NewPopulatedNinOptNative(r, true), }, } middle := dataOut.GetNestedNinOpts()[1] fieldName := "Field" + strconv.Itoa(r.Intn(15)+1) field := reflect.ValueOf(middle).Elem().FieldByName(fieldName) fieldType := field.Type() field.Set(reflect.Zero(fieldType)) encodedMessage, err := proto.Marshal(dataOut) if err.Error() != `proto: required field "`+fieldName+`" not set` { t.Fatalf(`err.Error() != "proto: required field "`+fieldName+`" not set"; was "%s" instead`, err.Error()) } if len(encodedMessage) > 0 { t.Fatalf("Got some bytes from marshal, expected none.") } } golang-gogoprotobuf-0.5/test/sizerconflict/000077500000000000000000000000001317075173200212025ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/sizerconflict/doc.go000066400000000000000000000000261317075173200222740ustar00rootroot00000000000000package sizerconflict golang-gogoprotobuf-0.5/test/sizerconflict/sizerconflict.proto000066400000000000000000000032771317075173200251560ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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 = "proto3"; package sizerconflict; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.sizer_all) = true; option (gogoproto.protosizer_all) = true; message Value { oneof type { int64 type_one = 1; uint64 type_two = 2; } } golang-gogoprotobuf-0.5/test/sizerconflict/sizerconflict_test.go000066400000000000000000000037151317075173200254540ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2017, 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. package sizerconflict import ( "os" "os/exec" "strings" "testing" ) func TestSizerConflict(t *testing.T) { cmd := exec.Command("protoc", "--gogo_out=.", "-I=../../../../../:../../protobuf/:./", "sizerconflict.proto") data, err := cmd.CombinedOutput() if err == nil && !strings.Contains(string(data), "Plugin failed with status code 1") { t.Errorf("Expected error, got: %s", data) if err = os.Remove("sizerconflict.pb.go"); err != nil { t.Error(err) } } t.Logf("received expected error = %v and output = %v", err, string(data)) } golang-gogoprotobuf-0.5/test/sizeunderscore/000077500000000000000000000000001317075173200213705ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/sizeunderscore/Makefile000066400000000000000000000027641317075173200230410ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. sizeunderscore.proto) golang-gogoprotobuf-0.5/test/sizeunderscore/sizeunderscore.pb.go000066400000000000000000000316101317075173200253640ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: sizeunderscore.proto /* Package sizeunderscore is a generated protocol buffer package. It is generated from these files: sizeunderscore.proto It has these top-level messages: SizeMessage */ package sizeunderscore import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type SizeMessage struct { Size_ *int64 `protobuf:"varint,1,opt,name=size" json:"size,omitempty"` Equal_ *bool `protobuf:"varint,2,opt,name=Equal" json:"Equal,omitempty"` String_ *string `protobuf:"bytes,3,opt,name=String" json:"String,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *SizeMessage) Reset() { *m = SizeMessage{} } func (m *SizeMessage) String() string { return proto.CompactTextString(m) } func (*SizeMessage) ProtoMessage() {} func (*SizeMessage) Descriptor() ([]byte, []int) { return fileDescriptorSizeunderscore, []int{0} } func (m *SizeMessage) GetSize_() int64 { if m != nil && m.Size_ != nil { return *m.Size_ } return 0 } func (m *SizeMessage) GetEqual_() bool { if m != nil && m.Equal_ != nil { return *m.Equal_ } return false } func (m *SizeMessage) GetString_() string { if m != nil && m.String_ != nil { return *m.String_ } return "" } func init() { proto.RegisterType((*SizeMessage)(nil), "sizeunderscore.SizeMessage") } func (this *SizeMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SizeMessage) if !ok { that2, ok := that.(SizeMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Size_ != nil && that1.Size_ != nil { if *this.Size_ != *that1.Size_ { return false } } else if this.Size_ != nil { return false } else if that1.Size_ != nil { return false } if this.Equal_ != nil && that1.Equal_ != nil { if *this.Equal_ != *that1.Equal_ { return false } } else if this.Equal_ != nil { return false } else if that1.Equal_ != nil { return false } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return false } } else if this.String_ != nil { return false } else if that1.String_ != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (m *SizeMessage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *SizeMessage) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Size_ != nil { dAtA[i] = 0x8 i++ i = encodeVarintSizeunderscore(dAtA, i, uint64(*m.Size_)) } if m.Equal_ != nil { dAtA[i] = 0x10 i++ if *m.Equal_ { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.String_ != nil { dAtA[i] = 0x1a i++ i = encodeVarintSizeunderscore(dAtA, i, uint64(len(*m.String_))) i += copy(dAtA[i:], *m.String_) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintSizeunderscore(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedSizeMessage(r randySizeunderscore, easy bool) *SizeMessage { this := &SizeMessage{} if r.Intn(10) != 0 { v1 := int64(r.Int63()) if r.Intn(2) == 0 { v1 *= -1 } this.Size_ = &v1 } if r.Intn(10) != 0 { v2 := bool(bool(r.Intn(2) == 0)) this.Equal_ = &v2 } if r.Intn(10) != 0 { v3 := string(randStringSizeunderscore(r)) this.String_ = &v3 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedSizeunderscore(r, 4) } return this } type randySizeunderscore interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneSizeunderscore(r randySizeunderscore) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringSizeunderscore(r randySizeunderscore) string { v4 := r.Intn(100) tmps := make([]rune, v4) for i := 0; i < v4; i++ { tmps[i] = randUTF8RuneSizeunderscore(r) } return string(tmps) } func randUnrecognizedSizeunderscore(r randySizeunderscore, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldSizeunderscore(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldSizeunderscore(dAtA []byte, r randySizeunderscore, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateSizeunderscore(dAtA, uint64(key)) v5 := r.Int63() if r.Intn(2) == 0 { v5 *= -1 } dAtA = encodeVarintPopulateSizeunderscore(dAtA, uint64(v5)) case 1: dAtA = encodeVarintPopulateSizeunderscore(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateSizeunderscore(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateSizeunderscore(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateSizeunderscore(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateSizeunderscore(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *SizeMessage) Size() (n int) { var l int _ = l if m.Size_ != nil { n += 1 + sovSizeunderscore(uint64(*m.Size_)) } if m.Equal_ != nil { n += 2 } if m.String_ != nil { l = len(*m.String_) n += 1 + l + sovSizeunderscore(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovSizeunderscore(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozSizeunderscore(x uint64) (n int) { return sovSizeunderscore(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *SizeMessage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowSizeunderscore } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: SizeMessage: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: SizeMessage: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Size_", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowSizeunderscore } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Size_ = &v case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Equal_", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowSizeunderscore } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Equal_ = &b case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field String_", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowSizeunderscore } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthSizeunderscore } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.String_ = &s iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipSizeunderscore(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthSizeunderscore } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipSizeunderscore(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowSizeunderscore } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowSizeunderscore } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowSizeunderscore } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthSizeunderscore } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowSizeunderscore } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipSizeunderscore(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthSizeunderscore = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowSizeunderscore = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("sizeunderscore.proto", fileDescriptorSizeunderscore) } var fileDescriptorSizeunderscore = []byte{ // 174 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x29, 0xce, 0xac, 0x4a, 0x2d, 0xcd, 0x4b, 0x49, 0x2d, 0x2a, 0x4e, 0xce, 0x2f, 0x4a, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x43, 0x15, 0x95, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0x2b, 0x4b, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0xa2, 0x5d, 0xc9, 0x9f, 0x8b, 0x3b, 0x38, 0xb3, 0x2a, 0xd5, 0x37, 0xb5, 0xb8, 0x38, 0x31, 0x3d, 0x55, 0x48, 0x88, 0x8b, 0x05, 0x64, 0x9e, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x73, 0x10, 0x98, 0x2d, 0x24, 0xc2, 0xc5, 0xea, 0x5a, 0x58, 0x9a, 0x98, 0x23, 0xc1, 0xa4, 0xc0, 0xa8, 0xc1, 0x11, 0x04, 0xe1, 0x08, 0x89, 0x71, 0xb1, 0x05, 0x97, 0x14, 0x65, 0xe6, 0xa5, 0x4b, 0x30, 0x2b, 0x30, 0x6a, 0x70, 0x06, 0x41, 0x79, 0x4e, 0x12, 0x3f, 0x1e, 0xca, 0x31, 0xae, 0x78, 0x24, 0xc7, 0xb8, 0xe3, 0x91, 0x1c, 0xe3, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x08, 0x08, 0x00, 0x00, 0xff, 0xff, 0x37, 0x1c, 0x48, 0xa4, 0xc0, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/sizeunderscore/sizeunderscore.proto000066400000000000000000000035441317075173200255270ustar00rootroot00000000000000// 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 sizeunderscore; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.equal_all) = true; message SizeMessage { optional int64 size = 1; optional bool Equal = 2; optional string String = 3; } golang-gogoprotobuf-0.5/test/sizeunderscore/sizeunderscorepb_test.go000066400000000000000000000110471317075173200263470ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: sizeunderscore.proto /* Package sizeunderscore is a generated protocol buffer package. It is generated from these files: sizeunderscore.proto It has these top-level messages: SizeMessage */ package sizeunderscore import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestSizeMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SizeMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestSizeMessageMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SizeMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSizeMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &SizeMessage{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSizeMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &SizeMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSizeMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &SizeMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSizeMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSizeMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/stdtypes/000077500000000000000000000000001317075173200202035ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/stdtypes/Makefile000066400000000000000000000034701317075173200216470ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2016, 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-min-version go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=\ Mgoogle/protobuf/duration.proto=github.com/gogo/protobuf/types,\ Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types\ :. \ --proto_path=../../../../../:../../protobuf/:. stdtypes.proto test: go test -race -run=TestConcurrentTextMarshal .golang-gogoprotobuf-0.5/test/stdtypes/concurrency_test.go000066400000000000000000000010211317075173200241150ustar00rootroot00000000000000package stdtypes import ( "io/ioutil" "sync" "testing" "github.com/gogo/protobuf/proto" ) func TestConcurrentTextMarshal(t *testing.T) { // Verify that there are no race conditions when calling // TextMarshaler.Marshal on a protobuf message that contains a StdDuration std := StdTypes{} var wg sync.WaitGroup tm := proto.TextMarshaler{} for i := 0; i < 2; i++ { wg.Add(1) go func() { defer wg.Done() err := tm.Marshal(ioutil.Discard, &std) if err != nil { t.Fatal(err) } }() } wg.Wait() } golang-gogoprotobuf-0.5/test/stdtypes/stdtypes.pb.go000066400000000000000000001212311317075173200230110ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: stdtypes.proto /* Package stdtypes is a generated protocol buffer package. It is generated from these files: stdtypes.proto It has these top-level messages: StdTypes RepStdTypes MapStdTypes OneofStdTypes */ package stdtypes import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" import time "time" import github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf var _ = time.Kitchen // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type StdTypes struct { NullableTimestamp *time.Time `protobuf:"bytes,1,opt,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty"` NullableDuration *time.Duration `protobuf:"bytes,2,opt,name=nullableDuration,stdduration" json:"nullableDuration,omitempty"` Timestamp time.Time `protobuf:"bytes,3,opt,name=timestamp,stdtime" json:"timestamp"` Duration time.Duration `protobuf:"bytes,4,opt,name=duration,stdduration" json:"duration"` } func (m *StdTypes) Reset() { *m = StdTypes{} } func (m *StdTypes) String() string { return proto.CompactTextString(m) } func (*StdTypes) ProtoMessage() {} func (*StdTypes) Descriptor() ([]byte, []int) { return fileDescriptorStdtypes, []int{0} } func (m *StdTypes) GetNullableTimestamp() *time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *StdTypes) GetNullableDuration() *time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *StdTypes) GetTimestamp() time.Time { if m != nil { return m.Timestamp } return time.Time{} } func (m *StdTypes) GetDuration() time.Duration { if m != nil { return m.Duration } return 0 } type RepStdTypes struct { NullableTimestamps []*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamps,stdtime" json:"nullableTimestamps,omitempty"` NullableDurations []*time.Duration `protobuf:"bytes,2,rep,name=nullableDurations,stdduration" json:"nullableDurations,omitempty"` Timestamps []time.Time `protobuf:"bytes,3,rep,name=timestamps,stdtime" json:"timestamps"` Durations []time.Duration `protobuf:"bytes,4,rep,name=durations,stdduration" json:"durations"` } func (m *RepStdTypes) Reset() { *m = RepStdTypes{} } func (m *RepStdTypes) String() string { return proto.CompactTextString(m) } func (*RepStdTypes) ProtoMessage() {} func (*RepStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorStdtypes, []int{1} } func (m *RepStdTypes) GetNullableTimestamps() []*time.Time { if m != nil { return m.NullableTimestamps } return nil } func (m *RepStdTypes) GetNullableDurations() []*time.Duration { if m != nil { return m.NullableDurations } return nil } func (m *RepStdTypes) GetTimestamps() []time.Time { if m != nil { return m.Timestamps } return nil } func (m *RepStdTypes) GetDurations() []time.Duration { if m != nil { return m.Durations } return nil } type MapStdTypes struct { NullableTimestamp map[int32]*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Timestamp map[int32]time.Time `protobuf:"bytes,2,rep,name=timestamp,stdtime" json:"timestamp" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` NullableDuration map[int32]*time.Duration `protobuf:"bytes,3,rep,name=nullableDuration,stdduration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Duration map[int32]time.Duration `protobuf:"bytes,4,rep,name=duration,stdduration" json:"duration" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapStdTypes) Reset() { *m = MapStdTypes{} } func (m *MapStdTypes) String() string { return proto.CompactTextString(m) } func (*MapStdTypes) ProtoMessage() {} func (*MapStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorStdtypes, []int{2} } func (m *MapStdTypes) GetNullableTimestamp() map[int32]*time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *MapStdTypes) GetTimestamp() map[int32]time.Time { if m != nil { return m.Timestamp } return nil } func (m *MapStdTypes) GetNullableDuration() map[int32]*time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *MapStdTypes) GetDuration() map[int32]time.Duration { if m != nil { return m.Duration } return nil } type OneofStdTypes struct { // Types that are valid to be assigned to OneOfStdTimes: // *OneofStdTypes_Timestamp // *OneofStdTypes_Duration OneOfStdTimes isOneofStdTypes_OneOfStdTimes `protobuf_oneof:"OneOfStdTimes"` } func (m *OneofStdTypes) Reset() { *m = OneofStdTypes{} } func (m *OneofStdTypes) String() string { return proto.CompactTextString(m) } func (*OneofStdTypes) ProtoMessage() {} func (*OneofStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorStdtypes, []int{3} } type isOneofStdTypes_OneOfStdTimes interface { isOneofStdTypes_OneOfStdTimes() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type OneofStdTypes_Timestamp struct { Timestamp *time.Time `protobuf:"bytes,1,opt,name=timestamp,oneof,stdtime"` } type OneofStdTypes_Duration struct { Duration *time.Duration `protobuf:"bytes,2,opt,name=duration,oneof,stdduration"` } func (*OneofStdTypes_Timestamp) isOneofStdTypes_OneOfStdTimes() {} func (*OneofStdTypes_Duration) isOneofStdTypes_OneOfStdTimes() {} func (m *OneofStdTypes) GetOneOfStdTimes() isOneofStdTypes_OneOfStdTimes { if m != nil { return m.OneOfStdTimes } return nil } func (m *OneofStdTypes) GetTimestamp() *time.Time { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Timestamp); ok { return x.Timestamp } return nil } func (m *OneofStdTypes) GetDuration() *time.Duration { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Duration); ok { return x.Duration } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofStdTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofStdTypes_OneofMarshaler, _OneofStdTypes_OneofUnmarshaler, _OneofStdTypes_OneofSizer, []interface{}{ (*OneofStdTypes_Timestamp)(nil), (*OneofStdTypes_Duration)(nil), } } func _OneofStdTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: _ = b.EncodeVarint(1<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdTimeMarshal(*x.Timestamp) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case *OneofStdTypes_Duration: _ = b.EncodeVarint(2<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdDurationMarshal(*x.Duration) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case nil: default: return fmt.Errorf("OneofStdTypes.OneOfStdTimes has unexpected type %T", x) } return nil } func _OneofStdTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofStdTypes) switch tag { case 1: // OneOfStdTimes.timestamp if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Time) if err2 := github_com_gogo_protobuf_types.StdTimeUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Timestamp{c} return true, err case 2: // OneOfStdTimes.duration if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Duration) if err2 := github_com_gogo_protobuf_types.StdDurationUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Duration{c} return true, err default: return false, nil } } func _OneofStdTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: s := github_com_gogo_protobuf_types.SizeOfStdTime(*x.Timestamp) n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *OneofStdTypes_Duration: s := github_com_gogo_protobuf_types.SizeOfStdDuration(*x.Duration) n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*StdTypes)(nil), "stdtypes.StdTypes") proto.RegisterType((*RepStdTypes)(nil), "stdtypes.RepStdTypes") proto.RegisterType((*MapStdTypes)(nil), "stdtypes.MapStdTypes") proto.RegisterType((*OneofStdTypes)(nil), "stdtypes.OneofStdTypes") } func (this *StdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *StdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *StdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *StdTypes but is not nil && this == nil") } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return fmt.Errorf("this.NullableTimestamp != nil && that1.NullableTimestamp == nil") } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", this.NullableTimestamp, that1.NullableTimestamp) } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", *this.NullableDuration, *that1.NullableDuration) } } else if this.NullableDuration != nil { return fmt.Errorf("this.NullableDuration == nil && that.NullableDuration != nil") } else if that1.NullableDuration != nil { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", this.NullableDuration, that1.NullableDuration) } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } if this.Duration != that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *StdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return false } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return false } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return false } } else if this.NullableDuration != nil { return false } else if that1.NullableDuration != nil { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } if this.Duration != that1.Duration { return false } return true } func (this *RepStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *RepStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *RepStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *RepStdTypes but is not nil && this == nil") } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return fmt.Errorf("NullableTimestamps this(%v) Not Equal that(%v)", len(this.NullableTimestamps), len(that1.NullableTimestamps)) } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return fmt.Errorf("NullableTimestamps this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamps[i], i, that1.NullableTimestamps[i]) } } if len(this.NullableDurations) != len(that1.NullableDurations) { return fmt.Errorf("NullableDurations this(%v) Not Equal that(%v)", len(this.NullableDurations), len(that1.NullableDurations)) } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDurations this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDurations[i], i, that1.NullableDurations[i]) } } if len(this.Timestamps) != len(that1.Timestamps) { return fmt.Errorf("Timestamps this(%v) Not Equal that(%v)", len(this.Timestamps), len(that1.Timestamps)) } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return fmt.Errorf("Timestamps this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamps[i], i, that1.Timestamps[i]) } } if len(this.Durations) != len(that1.Durations) { return fmt.Errorf("Durations this(%v) Not Equal that(%v)", len(this.Durations), len(that1.Durations)) } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return fmt.Errorf("Durations this[%v](%v) Not Equal that[%v](%v)", i, this.Durations[i], i, that1.Durations[i]) } } return nil } func (this *RepStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return false } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return false } } if len(this.NullableDurations) != len(that1.NullableDurations) { return false } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Timestamps) != len(that1.Timestamps) { return false } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return false } } if len(this.Durations) != len(that1.Durations) { return false } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return false } } return true } func (this *MapStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapStdTypes but is not nil && this == nil") } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", len(this.NullableTimestamp), len(that1.NullableTimestamp)) } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return fmt.Errorf("NullableTimestamp this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamp[i], i, that1.NullableTimestamp[i]) } } if len(this.Timestamp) != len(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", len(this.Timestamp), len(that1.Timestamp)) } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return fmt.Errorf("Timestamp this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamp[i], i, that1.Timestamp[i]) } } if len(this.NullableDuration) != len(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", len(this.NullableDuration), len(that1.NullableDuration)) } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDuration this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDuration[i], i, that1.NullableDuration[i]) } } if len(this.Duration) != len(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", len(this.Duration), len(that1.Duration)) } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return fmt.Errorf("Duration this[%v](%v) Not Equal that[%v](%v)", i, this.Duration[i], i, that1.Duration[i]) } } return nil } func (this *MapStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return false } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return false } } if len(this.Timestamp) != len(that1.Timestamp) { return false } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return false } } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Duration) != len(that1.Duration) { return false } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return false } } return true } func (this *OneofStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes but is not nil && this == nil") } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return fmt.Errorf("this.OneOfStdTimes != nil && that1.OneOfStdTimes == nil") } } else if this.OneOfStdTimes == nil { return fmt.Errorf("this.OneOfStdTimes == nil && that1.OneOfStdTimes != nil") } else if err := this.OneOfStdTimes.VerboseEqual(that1.OneOfStdTimes); err != nil { return err } return nil } func (this *OneofStdTypes_Timestamp) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Timestamp") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is not nil && this == nil") } if that1.Timestamp == nil { if this.Timestamp != nil { return fmt.Errorf("this.Timestamp != nil && that1.Timestamp == nil") } } else if !this.Timestamp.Equal(*that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *OneofStdTypes_Duration) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Duration") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Duration but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Duration but is not nil && this == nil") } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", *this.Duration, *that1.Duration) } } else if this.Duration != nil { return fmt.Errorf("this.Duration == nil && that.Duration != nil") } else if that1.Duration != nil { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *OneofStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return false } } else if this.OneOfStdTimes == nil { return false } else if !this.OneOfStdTimes.Equal(that1.OneOfStdTimes) { return false } return true } func (this *OneofStdTypes_Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Timestamp == nil { if this.Timestamp != nil { return false } } else if !this.Timestamp.Equal(*that1.Timestamp) { return false } return true } func (this *OneofStdTypes_Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return false } } else if this.Duration != nil { return false } else if that1.Duration != nil { return false } return true } func (this *StdTypes) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&stdtypes.StdTypes{") s = append(s, "NullableTimestamp: "+fmt.Sprintf("%#v", this.NullableTimestamp)+",\n") s = append(s, "NullableDuration: "+fmt.Sprintf("%#v", this.NullableDuration)+",\n") s = append(s, "Timestamp: "+fmt.Sprintf("%#v", this.Timestamp)+",\n") s = append(s, "Duration: "+fmt.Sprintf("%#v", this.Duration)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *RepStdTypes) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&stdtypes.RepStdTypes{") s = append(s, "NullableTimestamps: "+fmt.Sprintf("%#v", this.NullableTimestamps)+",\n") s = append(s, "NullableDurations: "+fmt.Sprintf("%#v", this.NullableDurations)+",\n") s = append(s, "Timestamps: "+fmt.Sprintf("%#v", this.Timestamps)+",\n") s = append(s, "Durations: "+fmt.Sprintf("%#v", this.Durations)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *MapStdTypes) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&stdtypes.MapStdTypes{") keysForNullableTimestamp := make([]int32, 0, len(this.NullableTimestamp)) for k := range this.NullableTimestamp { keysForNullableTimestamp = append(keysForNullableTimestamp, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNullableTimestamp) mapStringForNullableTimestamp := "map[int32]*time.Time{" for _, k := range keysForNullableTimestamp { mapStringForNullableTimestamp += fmt.Sprintf("%#v: %#v,", k, this.NullableTimestamp[k]) } mapStringForNullableTimestamp += "}" if this.NullableTimestamp != nil { s = append(s, "NullableTimestamp: "+mapStringForNullableTimestamp+",\n") } keysForTimestamp := make([]int32, 0, len(this.Timestamp)) for k := range this.Timestamp { keysForTimestamp = append(keysForTimestamp, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForTimestamp) mapStringForTimestamp := "map[int32]time.Time{" for _, k := range keysForTimestamp { mapStringForTimestamp += fmt.Sprintf("%#v: %#v,", k, this.Timestamp[k]) } mapStringForTimestamp += "}" if this.Timestamp != nil { s = append(s, "Timestamp: "+mapStringForTimestamp+",\n") } keysForNullableDuration := make([]int32, 0, len(this.NullableDuration)) for k := range this.NullableDuration { keysForNullableDuration = append(keysForNullableDuration, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNullableDuration) mapStringForNullableDuration := "map[int32]*time.Duration{" for _, k := range keysForNullableDuration { mapStringForNullableDuration += fmt.Sprintf("%#v: %#v,", k, this.NullableDuration[k]) } mapStringForNullableDuration += "}" if this.NullableDuration != nil { s = append(s, "NullableDuration: "+mapStringForNullableDuration+",\n") } keysForDuration := make([]int32, 0, len(this.Duration)) for k := range this.Duration { keysForDuration = append(keysForDuration, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForDuration) mapStringForDuration := "map[int32]time.Duration{" for _, k := range keysForDuration { mapStringForDuration += fmt.Sprintf("%#v: %#v,", k, this.Duration[k]) } mapStringForDuration += "}" if this.Duration != nil { s = append(s, "Duration: "+mapStringForDuration+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OneofStdTypes) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&stdtypes.OneofStdTypes{") if this.OneOfStdTimes != nil { s = append(s, "OneOfStdTimes: "+fmt.Sprintf("%#v", this.OneOfStdTimes)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OneofStdTypes_Timestamp) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&stdtypes.OneofStdTypes_Timestamp{` + `Timestamp:` + fmt.Sprintf("%#v", this.Timestamp) + `}`}, ", ") return s } func (this *OneofStdTypes_Duration) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&stdtypes.OneofStdTypes_Duration{` + `Duration:` + fmt.Sprintf("%#v", this.Duration) + `}`}, ", ") return s } func valueToGoStringStdtypes(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedStdTypes(r randyStdtypes, easy bool) *StdTypes { this := &StdTypes{} if r.Intn(10) != 0 { this.NullableTimestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } if r.Intn(10) != 0 { this.NullableDuration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } v1 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamp = *v1 v2 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Duration = *v2 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedRepStdTypes(r randyStdtypes, easy bool) *RepStdTypes { this := &RepStdTypes{} if r.Intn(10) != 0 { v3 := r.Intn(5) this.NullableTimestamps = make([]*time.Time, v3) for i := 0; i < v3; i++ { this.NullableTimestamps[i] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v4 := r.Intn(5) this.NullableDurations = make([]*time.Duration, v4) for i := 0; i < v4; i++ { this.NullableDurations[i] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v5 := r.Intn(5) this.Timestamps = make([]time.Time, v5) for i := 0; i < v5; i++ { v6 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamps[i] = *v6 } } if r.Intn(10) != 0 { v7 := r.Intn(5) this.Durations = make([]time.Duration, v7) for i := 0; i < v7; i++ { v8 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Durations[i] = *v8 } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMapStdTypes(r randyStdtypes, easy bool) *MapStdTypes { this := &MapStdTypes{} if r.Intn(10) != 0 { v9 := r.Intn(10) this.NullableTimestamp = make(map[int32]*time.Time) for i := 0; i < v9; i++ { this.NullableTimestamp[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v10 := r.Intn(10) this.Timestamp = make(map[int32]time.Time) for i := 0; i < v10; i++ { this.Timestamp[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v11 := r.Intn(10) this.NullableDuration = make(map[int32]*time.Duration) for i := 0; i < v11; i++ { this.NullableDuration[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v12 := r.Intn(10) this.Duration = make(map[int32]time.Duration) for i := 0; i < v12; i++ { this.Duration[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofStdTypes(r randyStdtypes, easy bool) *OneofStdTypes { this := &OneofStdTypes{} oneofNumber_OneOfStdTimes := []int32{1, 2}[r.Intn(2)] switch oneofNumber_OneOfStdTimes { case 1: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Timestamp(r, easy) case 2: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Duration(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofStdTypes_Timestamp(r randyStdtypes, easy bool) *OneofStdTypes_Timestamp { this := &OneofStdTypes_Timestamp{} this.Timestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) return this } func NewPopulatedOneofStdTypes_Duration(r randyStdtypes, easy bool) *OneofStdTypes_Duration { this := &OneofStdTypes_Duration{} this.Duration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) return this } type randyStdtypes interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneStdtypes(r randyStdtypes) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringStdtypes(r randyStdtypes) string { v13 := r.Intn(100) tmps := make([]rune, v13) for i := 0; i < v13; i++ { tmps[i] = randUTF8RuneStdtypes(r) } return string(tmps) } func randUnrecognizedStdtypes(r randyStdtypes, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldStdtypes(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldStdtypes(dAtA []byte, r randyStdtypes, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateStdtypes(dAtA, uint64(key)) v14 := r.Int63() if r.Intn(2) == 0 { v14 *= -1 } dAtA = encodeVarintPopulateStdtypes(dAtA, uint64(v14)) case 1: dAtA = encodeVarintPopulateStdtypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateStdtypes(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateStdtypes(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateStdtypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateStdtypes(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *StdTypes) Size() (n int) { var l int _ = l if m.NullableTimestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.NullableTimestamp) n += 1 + l + sovStdtypes(uint64(l)) } if m.NullableDuration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.NullableDuration) n += 1 + l + sovStdtypes(uint64(l)) } l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp) n += 1 + l + sovStdtypes(uint64(l)) l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.Duration) n += 1 + l + sovStdtypes(uint64(l)) return n } func (m *RepStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamps) > 0 { for _, e := range m.NullableTimestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(*e) n += 1 + l + sovStdtypes(uint64(l)) } } if len(m.NullableDurations) > 0 { for _, e := range m.NullableDurations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*e) n += 1 + l + sovStdtypes(uint64(l)) } } if len(m.Timestamps) > 0 { for _, e := range m.Timestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(e) n += 1 + l + sovStdtypes(uint64(l)) } } if len(m.Durations) > 0 { for _, e := range m.Durations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(e) n += 1 + l + sovStdtypes(uint64(l)) } } return n } func (m *MapStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamp) > 0 { for k, v := range m.NullableTimestamp { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*v) l += 1 + sovStdtypes(uint64(l)) } mapEntrySize := 1 + sovStdtypes(uint64(k)) + l n += mapEntrySize + 1 + sovStdtypes(uint64(mapEntrySize)) } } if len(m.Timestamp) > 0 { for k, v := range m.Timestamp { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdTime(v) mapEntrySize := 1 + sovStdtypes(uint64(k)) + 1 + l + sovStdtypes(uint64(l)) n += mapEntrySize + 1 + sovStdtypes(uint64(mapEntrySize)) } } if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*v) l += 1 + sovStdtypes(uint64(l)) } mapEntrySize := 1 + sovStdtypes(uint64(k)) + l n += mapEntrySize + 1 + sovStdtypes(uint64(mapEntrySize)) } } if len(m.Duration) > 0 { for k, v := range m.Duration { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdDuration(v) mapEntrySize := 1 + sovStdtypes(uint64(k)) + 1 + l + sovStdtypes(uint64(l)) n += mapEntrySize + 1 + sovStdtypes(uint64(mapEntrySize)) } } return n } func (m *OneofStdTypes) Size() (n int) { var l int _ = l if m.OneOfStdTimes != nil { n += m.OneOfStdTimes.Size() } return n } func (m *OneofStdTypes_Timestamp) Size() (n int) { var l int _ = l if m.Timestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.Timestamp) n += 1 + l + sovStdtypes(uint64(l)) } return n } func (m *OneofStdTypes_Duration) Size() (n int) { var l int _ = l if m.Duration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.Duration) n += 1 + l + sovStdtypes(uint64(l)) } return n } func sovStdtypes(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozStdtypes(x uint64) (n int) { return sovStdtypes(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func init() { proto.RegisterFile("stdtypes.proto", fileDescriptorStdtypes) } var fileDescriptorStdtypes = []byte{ // 540 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0x31, 0x6f, 0xd3, 0x40, 0x1c, 0xc5, 0x7d, 0x4e, 0x82, 0xd2, 0x7f, 0xd4, 0x52, 0x4e, 0x02, 0x19, 0x0f, 0x97, 0x2a, 0x30, 0x20, 0x51, 0x1c, 0x04, 0x0b, 0x42, 0x42, 0x80, 0x55, 0xa4, 0x22, 0x68, 0x8b, 0x42, 0x85, 0x58, 0x40, 0x75, 0x88, 0x6b, 0x22, 0x9c, 0x5c, 0x14, 0x9f, 0x91, 0xb2, 0xf1, 0x11, 0x18, 0x59, 0xd9, 0x18, 0xd8, 0x61, 0x64, 0xec, 0xc8, 0x8e, 0x04, 0x8d, 0xf9, 0x02, 0x8c, 0x1d, 0x91, 0xcf, 0x3e, 0x9f, 0x13, 0x5f, 0xea, 0x2c, 0xdd, 0x7c, 0xf1, 0xff, 0xfd, 0xee, 0xe5, 0xf9, 0xdd, 0xc1, 0x5a, 0xc0, 0x7a, 0x6c, 0x32, 0x72, 0x03, 0x6b, 0x34, 0xa6, 0x8c, 0xe2, 0xba, 0x58, 0x9b, 0x37, 0xbc, 0x3e, 0x7b, 0x1b, 0x76, 0xad, 0x37, 0x74, 0xd0, 0xf6, 0xa8, 0x47, 0xdb, 0x7c, 0xa0, 0x1b, 0x1e, 0xf2, 0x15, 0x5f, 0xf0, 0xa7, 0x44, 0x68, 0x12, 0x8f, 0x52, 0xcf, 0x77, 0xe5, 0x54, 0x2f, 0x1c, 0x3b, 0xac, 0x4f, 0x87, 0xe9, 0xfb, 0xe6, 0xfc, 0x7b, 0xd6, 0x1f, 0xb8, 0x01, 0x73, 0x06, 0xa3, 0x64, 0xa0, 0xf5, 0x55, 0x87, 0xfa, 0x73, 0xd6, 0xdb, 0x8f, 0x37, 0xc7, 0xbb, 0x70, 0x61, 0x18, 0xfa, 0xbe, 0xd3, 0xf5, 0xdd, 0x7d, 0x31, 0x67, 0xa0, 0x0d, 0x74, 0xad, 0x71, 0xcb, 0xb4, 0x12, 0x92, 0x25, 0x48, 0x56, 0x36, 0x61, 0x57, 0x3f, 0xfe, 0x69, 0xa2, 0x4e, 0x51, 0x8a, 0x9f, 0xc0, 0xba, 0xf8, 0x71, 0x2b, 0xf5, 0x65, 0xe8, 0x1c, 0x77, 0xb9, 0x80, 0x13, 0x03, 0x76, 0xf5, 0x53, 0x4c, 0x2b, 0x08, 0xb1, 0x0d, 0x2b, 0x99, 0x79, 0xa3, 0x52, 0x6a, 0xaa, 0x7e, 0xf4, 0xbb, 0xa9, 0x71, 0x63, 0x52, 0x86, 0xef, 0x43, 0x5d, 0x04, 0x64, 0x54, 0xcb, 0x8c, 0x70, 0x02, 0x37, 0x93, 0x89, 0x5a, 0xdf, 0x74, 0x68, 0x74, 0xdc, 0x51, 0x96, 0xd8, 0x33, 0xc0, 0x85, 0xbf, 0x1d, 0x18, 0x68, 0xa3, 0xb2, 0x54, 0x64, 0x0a, 0x2d, 0xde, 0x91, 0xdf, 0x40, 0x38, 0x09, 0x0c, 0x9d, 0x03, 0x4b, 0x43, 0x2b, 0x2a, 0xf1, 0x16, 0x00, 0x93, 0xc6, 0x2a, 0xa5, 0xc6, 0x64, 0x6c, 0x39, 0x1d, 0x7e, 0x08, 0x2b, 0xbd, 0xcc, 0x4c, 0xb5, 0xcc, 0x8c, 0x0c, 0x4e, 0xaa, 0x5a, 0xbf, 0x6a, 0xd0, 0xd8, 0x71, 0x64, 0x72, 0x07, 0xea, 0xae, 0xc5, 0xe8, 0x4d, 0x2b, 0x3b, 0x1e, 0x39, 0x85, 0xb5, 0x3b, 0x3f, 0xfe, 0x68, 0xc8, 0xc6, 0x93, 0xc5, 0xed, 0x7b, 0x9a, 0x2f, 0x4c, 0x92, 0xe0, 0x55, 0x35, 0x79, 0x8e, 0xa8, 0xac, 0xce, 0x2b, 0x45, 0x97, 0x93, 0x38, 0xaf, 0x9f, 0x6e, 0x57, 0x4c, 0xa7, 0x6e, 0x17, 0xb4, 0xfb, 0xf1, 0x4c, 0x33, 0x63, 0xec, 0x15, 0x35, 0x76, 0x16, 0xa7, 0xe8, 0xa8, 0x79, 0x00, 0x97, 0xd4, 0x51, 0xe1, 0x75, 0xa8, 0xbc, 0x73, 0x27, 0xfc, 0x44, 0xd7, 0x3a, 0xf1, 0x23, 0xbe, 0x09, 0xb5, 0xf7, 0x8e, 0x1f, 0xba, 0xe9, 0xb1, 0x3c, 0xa5, 0x19, 0x9d, 0x64, 0xf0, 0xae, 0x7e, 0x07, 0x99, 0x2f, 0x61, 0xed, 0x8c, 0xc8, 0xaf, 0xe1, 0xa2, 0x32, 0x37, 0xc5, 0x06, 0xed, 0xd9, 0x0d, 0x16, 0xf7, 0x31, 0xcf, 0x7f, 0x01, 0xab, 0x67, 0xc1, 0x6d, 0x7d, 0x46, 0xb0, 0xba, 0x37, 0x74, 0xe9, 0x61, 0xd6, 0xef, 0x07, 0xf9, 0xf6, 0x2d, 0x79, 0x87, 0x6e, 0x6b, 0xf9, 0xc6, 0xdd, 0xcb, 0x55, 0x62, 0xb9, 0x5b, 0x73, 0x5b, 0x93, 0x35, 0xb0, 0xcf, 0x73, 0x47, 0x7b, 0xdc, 0x51, 0xcc, 0xb4, 0x37, 0x8f, 0xa7, 0x04, 0xfd, 0x9b, 0x12, 0x74, 0x32, 0x25, 0xe8, 0x4b, 0x44, 0xd0, 0xf7, 0x88, 0xa0, 0x1f, 0x11, 0x41, 0x47, 0x11, 0xd1, 0x7e, 0x46, 0x44, 0x3b, 0x8e, 0x08, 0x3a, 0x89, 0x88, 0xf6, 0xe1, 0x2f, 0xd1, 0xba, 0xe7, 0xf8, 0x1e, 0xb7, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x00, 0x68, 0x05, 0x4b, 0xab, 0x06, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/stdtypes/stdtypes.proto000066400000000000000000000067471317075173200231650ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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 = "proto3"; package stdtypes; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message StdTypes { google.protobuf.Timestamp nullableTimestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration nullableDuration = 2 [(gogoproto.stdduration) = true]; google.protobuf.Timestamp timestamp = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message RepStdTypes { repeated google.protobuf.Timestamp nullableTimestamps = 1 [(gogoproto.stdtime) = true]; repeated google.protobuf.Duration nullableDurations = 2 [(gogoproto.stdduration) = true]; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message MapStdTypes { map nullableTimestamp = 1 [(gogoproto.stdtime) = true]; map timestamp = 2 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; map nullableDuration = 3 [(gogoproto.stdduration) = true]; map duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message OneofStdTypes { oneof OneOfStdTimes { google.protobuf.Timestamp timestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration duration = 2 [(gogoproto.stdduration) = true]; } } golang-gogoprotobuf-0.5/test/stdtypes/stdtypespb_test.go000066400000000000000000000572201317075173200240000ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: stdtypes.proto /* Package stdtypes is a generated protocol buffer package. It is generated from these files: stdtypes.proto It has these top-level messages: StdTypes RepStdTypes MapStdTypes OneofStdTypes */ package stdtypes import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &StdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkRepStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRepStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedRepStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &RepStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMapStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMapStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMapStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MapStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkOneofStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOneofStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOneofStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OneofStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRepStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRepStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOneofStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestStdTypesGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedStdTypes(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestRepStdTypesGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepStdTypes(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMapStdTypesGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapStdTypes(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOneofStdTypesGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofStdTypes(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRepStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMapStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOneofStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/t.go000066400000000000000000000021531317075173200171170ustar00rootroot00000000000000package test import ( "encoding/json" "strings" "github.com/gogo/protobuf/proto" ) type T struct { Data string } func (gt *T) protoType() *ProtoType { return &ProtoType{ Field2: >.Data, } } func (gt T) Equal(other T) bool { return gt.protoType().Equal(other.protoType()) } func (gt *T) Size() int { proto := &ProtoType{ Field2: >.Data, } return proto.Size() } func NewPopulatedT(r randyThetest) *T { data := NewPopulatedProtoType(r, false).Field2 gt := &T{} if data != nil { gt.Data = *data } return gt } func (r T) Marshal() ([]byte, error) { return proto.Marshal(r.protoType()) } func (r *T) Unmarshal(data []byte) error { pr := &ProtoType{} err := proto.Unmarshal(data, pr) if err != nil { return err } if pr.Field2 != nil { r.Data = *pr.Field2 } return nil } func (gt T) MarshalJSON() ([]byte, error) { return json.Marshal(gt.Data) } func (gt *T) UnmarshalJSON(data []byte) error { var s string err := json.Unmarshal(data, &s) if err != nil { return err } *gt = T{Data: s} return nil } func (gt T) Compare(other T) int { return strings.Compare(gt.Data, other.Data) } golang-gogoprotobuf-0.5/test/tags/000077500000000000000000000000001317075173200172625ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/tags/Makefile000066400000000000000000000027521317075173200207300ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. tags.proto) golang-gogoprotobuf-0.5/test/tags/doc.go000066400000000000000000000000151317075173200203520ustar00rootroot00000000000000package tags golang-gogoprotobuf-0.5/test/tags/tags.pb.go000066400000000000000000000135211317075173200211510ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: tags.proto /* Package tags is a generated protocol buffer package. It is generated from these files: tags.proto It has these top-level messages: Outside Inside */ package tags import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Outside struct { *Inside `protobuf:"bytes,1,opt,name=Inside,embedded=Inside" json:""` Field2 *string `protobuf:"bytes,2,opt,name=Field2" json:"MyField2" xml:",comment"` XXX_unrecognized []byte `json:"-"` } func (m *Outside) Reset() { *m = Outside{} } func (m *Outside) String() string { return proto.CompactTextString(m) } func (*Outside) ProtoMessage() {} func (*Outside) Descriptor() ([]byte, []int) { return fileDescriptorTags, []int{0} } func (m *Outside) GetField2() string { if m != nil && m.Field2 != nil { return *m.Field2 } return "" } type Inside struct { Field1 *string `protobuf:"bytes,1,opt,name=Field1" json:"MyField1" xml:",chardata"` XXX_unrecognized []byte `json:"-"` } func (m *Inside) Reset() { *m = Inside{} } func (m *Inside) String() string { return proto.CompactTextString(m) } func (*Inside) ProtoMessage() {} func (*Inside) Descriptor() ([]byte, []int) { return fileDescriptorTags, []int{1} } func (m *Inside) GetField1() string { if m != nil && m.Field1 != nil { return *m.Field1 } return "" } func init() { proto.RegisterType((*Outside)(nil), "tags.Outside") proto.RegisterType((*Inside)(nil), "tags.Inside") } func NewPopulatedOutside(r randyTags, easy bool) *Outside { this := &Outside{} if r.Intn(10) != 0 { this.Inside = NewPopulatedInside(r, easy) } if r.Intn(10) != 0 { v1 := string(randStringTags(r)) this.Field2 = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedTags(r, 3) } return this } func NewPopulatedInside(r randyTags, easy bool) *Inside { this := &Inside{} if r.Intn(10) != 0 { v2 := string(randStringTags(r)) this.Field1 = &v2 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedTags(r, 2) } return this } type randyTags interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTags(r randyTags) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTags(r randyTags) string { v3 := r.Intn(100) tmps := make([]rune, v3) for i := 0; i < v3; i++ { tmps[i] = randUTF8RuneTags(r) } return string(tmps) } func randUnrecognizedTags(r randyTags, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTags(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTags(dAtA []byte, r randyTags, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTags(dAtA, uint64(key)) v4 := r.Int63() if r.Intn(2) == 0 { v4 *= -1 } dAtA = encodeVarintPopulateTags(dAtA, uint64(v4)) case 1: dAtA = encodeVarintPopulateTags(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTags(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTags(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTags(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTags(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func init() { proto.RegisterFile("tags.proto", fileDescriptorTags) } var fileDescriptorTags = []byte{ // 203 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2a, 0x49, 0x4c, 0x2f, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x01, 0xb1, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0x92, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0x34, 0x29, 0x15, 0x72, 0xb1, 0xfb, 0x97, 0x96, 0x14, 0x67, 0xa6, 0xa4, 0x0a, 0xe9, 0x71, 0xb1, 0x79, 0xe6, 0x81, 0x58, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0x3c, 0x7a, 0x60, 0xc3, 0x21, 0x62, 0x4e, 0x1c, 0x17, 0xee, 0xc9, 0x33, 0xbe, 0xba, 0x27, 0xcf, 0x10, 0x04, 0x55, 0x25, 0x64, 0xc6, 0xc5, 0xe6, 0x96, 0x99, 0x9a, 0x93, 0x62, 0x24, 0xc1, 0xa4, 0xc0, 0xa8, 0xc1, 0xe9, 0x24, 0xf7, 0xea, 0x9e, 0x3c, 0x87, 0x6f, 0x25, 0x44, 0xec, 0xd3, 0x3d, 0x79, 0xbe, 0x8a, 0xdc, 0x1c, 0x2b, 0x25, 0x9d, 0xe4, 0xfc, 0xdc, 0xdc, 0xd4, 0xbc, 0x12, 0xa5, 0x20, 0xa8, 0x6a, 0x25, 0x47, 0x98, 0x3d, 0x42, 0xe6, 0x50, 0x13, 0x0c, 0xc1, 0x36, 0x72, 0x3a, 0xc9, 0x23, 0x99, 0x60, 0xf8, 0xe9, 0x9e, 0x3c, 0x3f, 0xd4, 0x84, 0x8c, 0xc4, 0xa2, 0x94, 0xc4, 0x92, 0x44, 0x98, 0x11, 0x86, 0x4e, 0x2c, 0x3f, 0x1e, 0xca, 0x31, 0x02, 0x02, 0x00, 0x00, 0xff, 0xff, 0x57, 0x12, 0x09, 0x10, 0xfd, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/tags/tags.proto000066400000000000000000000035761317075173200213200ustar00rootroot00000000000000// 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 tags; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.populate_all) = true; message Outside { optional Inside Inside = 1 [(gogoproto.embed) = true, (gogoproto.jsontag) = ""]; optional string Field2 = 2 [(gogoproto.jsontag) = "MyField2", (gogoproto.moretags) = "xml:\",comment\""]; } message Inside { optional string Field1 = 1 [(gogoproto.jsontag) = "MyField1", (gogoproto.moretags) = "xml:\",chardata\""]; } golang-gogoprotobuf-0.5/test/tags/tags_test.go000066400000000000000000000064631317075173200216170ustar00rootroot00000000000000// 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. package tags import ( "bytes" "encoding/json" "encoding/xml" math_rand "math/rand" "testing" "time" ) type MyJson struct { MyField1 string MyField2 string } func NewPopulatedMyJson(r randyTags) *MyJson { this := &MyJson{} if r.Intn(10) != 0 { this.MyField1 = randStringTags(r) } if r.Intn(10) != 0 { this.MyField2 = randStringTags(r) } return this } func TestJson(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) msg1 := NewPopulatedMyJson(popr) data, err := json.Marshal(msg1) if err != nil { panic(err) } outside := &Outside{} err = json.Unmarshal(data, outside) if err != nil { panic(err) } if outside.GetField1() != msg1.MyField1 { t.Fatalf("proto field1 %s != %s", outside.GetField1(), msg1.MyField1) } if outside.GetField2() != msg1.MyField2 { t.Fatalf("proto field2 %s != %s", outside.GetField2(), msg1.MyField2) } data2, err := json.Marshal(outside) if err != nil { panic(err) } msg2 := &MyJson{} err = json.Unmarshal(data2, msg2) if err != nil { panic(err) } if msg2.MyField1 != msg1.MyField1 { t.Fatalf("proto field1 %s != %s", msg2.MyField1, msg1.MyField1) } if msg2.MyField2 != msg1.MyField2 { t.Fatalf("proto field2 %s != %s", msg2.MyField2, msg1.MyField2) } } func TestXml(t *testing.T) { s := "Field1Value" field1 := "Field1Value" field2 := "Field2Value" msg1 := &Outside{} err := xml.Unmarshal([]byte(s), msg1) if err != nil { panic(err) } msg2 := &Outside{ Inside: &Inside{ Field1: &field1, }, Field2: &field2, } if msg1.GetField1() != msg2.GetField1() { t.Fatalf("field1 expected %s got %s", msg2.GetField1(), msg1.GetField1()) } if err != nil { panic(err) } data, err := xml.Marshal(msg2) if err != nil { panic(err) } if !bytes.Equal(data, []byte(s)) { t.Fatalf("expected %s got %s", s, string(data)) } } golang-gogoprotobuf-0.5/test/theproto3/000077500000000000000000000000001317075173200202535ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/theproto3/Makefile000066400000000000000000000034641317075173200217220ustar00rootroot00000000000000# 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-combo go install github.com/gogo/protobuf/protoc-gen-gogo cp header.proto theproto3.proto cat maps.proto >> theproto3.proto cat footer.proto >> theproto3.proto protoc-gen-combo --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. theproto3.proto find combos -type d -not -name combos -exec cp proto3_test.go.in {}/proto3_test.go \; golang-gogoprotobuf-0.5/test/theproto3/combos/000077500000000000000000000000001317075173200215355ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/theproto3/combos/both/000077500000000000000000000000001317075173200224715ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/theproto3/combos/both/proto3_test.go000066400000000000000000000111171317075173200253060ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package theproto3 import ( "reflect" "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": {}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestCustomTypeSize(t *testing.T) { m := &Uint128Pair{} m.Size() // Should not panic. } func TestCustomTypeMarshalUnmarshal(t *testing.T) { m1 := &Uint128Pair{} if b, err := proto.Marshal(m1); err != nil { t.Fatal(err) } else { m2 := &Uint128Pair{} if err := proto.Unmarshal(b, m2); err != nil { t.Fatal(err) } if !reflect.DeepEqual(m1, m2) { t.Errorf("expected %+v, got %+v", m1, m2) } } } func TestNotPackedToPacked(t *testing.T) { input := []uint64{1, 10e9} notpacked := &NotPacked{Key: input} if data, err := proto.Marshal(notpacked); err != nil { t.Fatal(err) } else { packed := &Message{} if err := proto.Unmarshal(data, packed); err != nil { t.Fatal(err) } output := packed.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } func TestPackedToNotPacked(t *testing.T) { input := []uint64{1, 10e9} packed := &Message{Key: input} if data, err := proto.Marshal(packed); err != nil { t.Fatal(err) } else { notpacked := &NotPacked{} if err := proto.Unmarshal(data, notpacked); err != nil { t.Fatal(err) } output := notpacked.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } golang-gogoprotobuf-0.5/test/theproto3/combos/both/theproto3.pb.go000066400000000000000000012271511317075173200253600ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/theproto3.proto /* Package theproto3 is a generated protocol buffer package. It is generated from these files: combos/both/theproto3.proto It has these top-level messages: Message Nested AllMaps AllMapsOrdered MessageWithMap FloatingPoint Uint128Pair ContainsNestedMap NotPacked */ package theproto3 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import test "github.com/gogo/protobuf/test/combos/both" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapEnum int32 const ( MA MapEnum = 0 MB MapEnum = 1 MC MapEnum = 2 ) var MapEnum_name = map[int32]string{ 0: "MA", 1: "MB", 2: "MC", } var MapEnum_value = map[string]int32{ "MA": 0, "MB": 1, "MC": 2, } func (MapEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0} } type Message_Humour int32 const ( UNKNOWN Message_Humour = 0 PUNS Message_Humour = 1 SLAPSTICK Message_Humour = 2 BILL_BAILEY Message_Humour = 3 ) var Message_Humour_name = map[int32]string{ 0: "UNKNOWN", 1: "PUNS", 2: "SLAPSTICK", 3: "BILL_BAILEY", } var Message_Humour_value = map[string]int32{ "UNKNOWN": 0, "PUNS": 1, "SLAPSTICK": 2, "BILL_BAILEY": 3, } func (Message_Humour) EnumDescriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0, 0} } type Message struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Hilarity Message_Humour `protobuf:"varint,2,opt,name=hilarity,proto3,enum=theproto3.Message_Humour" json:"hilarity,omitempty"` HeightInCm uint32 `protobuf:"varint,3,opt,name=height_in_cm,json=heightInCm,proto3" json:"height_in_cm,omitempty"` Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` ResultCount int64 `protobuf:"varint,7,opt,name=result_count,json=resultCount,proto3" json:"result_count,omitempty"` TrueScotsman bool `protobuf:"varint,8,opt,name=true_scotsman,json=trueScotsman,proto3" json:"true_scotsman,omitempty"` Score float32 `protobuf:"fixed32,9,opt,name=score,proto3" json:"score,omitempty"` Key []uint64 `protobuf:"varint,5,rep,packed,name=key" json:"key,omitempty"` Nested *Nested `protobuf:"bytes,6,opt,name=nested" json:"nested,omitempty"` Terrain map[int64]*Nested `protobuf:"bytes,10,rep,name=terrain" json:"terrain,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Proto2Field *test.NinOptNative `protobuf:"bytes,11,opt,name=proto2_field,json=proto2Field" json:"proto2_field,omitempty"` Proto2Value map[int64]*test.NinOptEnum `protobuf:"bytes,13,rep,name=proto2_value,json=proto2Value" json:"proto2_value,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *Message) Reset() { *m = Message{} } func (*Message) ProtoMessage() {} func (*Message) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0} } type Nested struct { Bunny string `protobuf:"bytes,1,opt,name=bunny,proto3" json:"bunny,omitempty"` } func (m *Nested) Reset() { *m = Nested{} } func (*Nested) ProtoMessage() {} func (*Nested) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{1} } type AllMaps struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key,proto3" protobuf_val:"zigzag32,2,opt,name=value,proto3"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"zigzag64,2,opt,name=value,proto3"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=theproto3.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *AllMaps) Reset() { *m = AllMaps{} } func (*AllMaps) ProtoMessage() {} func (*AllMaps) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{2} } type AllMapsOrdered struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key,proto3" protobuf_val:"zigzag32,2,opt,name=value,proto3"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"zigzag64,2,opt,name=value,proto3"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=theproto3.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *AllMapsOrdered) Reset() { *m = AllMapsOrdered{} } func (*AllMapsOrdered) ProtoMessage() {} func (*AllMapsOrdered) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{3} } type MessageWithMap struct { NameMapping map[int32]string `protobuf:"bytes,1,rep,name=name_mapping,json=nameMapping" json:"name_mapping,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` MsgMapping map[int64]*FloatingPoint `protobuf:"bytes,2,rep,name=msg_mapping,json=msgMapping" json:"msg_mapping,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` ByteMapping map[bool][]byte `protobuf:"bytes,3,rep,name=byte_mapping,json=byteMapping" json:"byte_mapping,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MessageWithMap) Reset() { *m = MessageWithMap{} } func (*MessageWithMap) ProtoMessage() {} func (*MessageWithMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{4} } type FloatingPoint struct { F float64 `protobuf:"fixed64,1,opt,name=f,proto3" json:"f,omitempty"` } func (m *FloatingPoint) Reset() { *m = FloatingPoint{} } func (*FloatingPoint) ProtoMessage() {} func (*FloatingPoint) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{5} } type Uint128Pair struct { Left github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,1,opt,name=left,proto3,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"left"` Right *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=right,proto3,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"right,omitempty"` } func (m *Uint128Pair) Reset() { *m = Uint128Pair{} } func (*Uint128Pair) ProtoMessage() {} func (*Uint128Pair) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{6} } type ContainsNestedMap struct { } func (m *ContainsNestedMap) Reset() { *m = ContainsNestedMap{} } func (*ContainsNestedMap) ProtoMessage() {} func (*ContainsNestedMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{7} } type ContainsNestedMap_NestedMap struct { NestedMapField map[string]float64 `protobuf:"bytes,1,rep,name=NestedMapField" json:"NestedMapField,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` } func (m *ContainsNestedMap_NestedMap) Reset() { *m = ContainsNestedMap_NestedMap{} } func (*ContainsNestedMap_NestedMap) ProtoMessage() {} func (*ContainsNestedMap_NestedMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{7, 0} } type NotPacked struct { Key []uint64 `protobuf:"varint,5,rep,name=key" json:"key,omitempty"` } func (m *NotPacked) Reset() { *m = NotPacked{} } func (*NotPacked) ProtoMessage() {} func (*NotPacked) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{8} } func init() { proto.RegisterType((*Message)(nil), "theproto3.Message") proto.RegisterType((*Nested)(nil), "theproto3.Nested") proto.RegisterType((*AllMaps)(nil), "theproto3.AllMaps") proto.RegisterType((*AllMapsOrdered)(nil), "theproto3.AllMapsOrdered") proto.RegisterType((*MessageWithMap)(nil), "theproto3.MessageWithMap") proto.RegisterType((*FloatingPoint)(nil), "theproto3.FloatingPoint") proto.RegisterType((*Uint128Pair)(nil), "theproto3.Uint128Pair") proto.RegisterType((*ContainsNestedMap)(nil), "theproto3.ContainsNestedMap") proto.RegisterType((*ContainsNestedMap_NestedMap)(nil), "theproto3.ContainsNestedMap.NestedMap") proto.RegisterType((*NotPacked)(nil), "theproto3.NotPacked") proto.RegisterEnum("theproto3.MapEnum", MapEnum_name, MapEnum_value) proto.RegisterEnum("theproto3.Message_Humour", Message_Humour_name, Message_Humour_value) } func (this *Message) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *Nested) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *AllMaps) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *AllMapsOrdered) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *MessageWithMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *FloatingPoint) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *Uint128Pair) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *ContainsNestedMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *ContainsNestedMap_NestedMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *NotPacked) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func Theproto3Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 7910 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x70, 0x23, 0xd7, 0x99, 0xde, 0x34, 0x1a, 0x24, 0xc1, 0x1f, 0x20, 0xd9, 0x6c, 0xce, 0x50, 0x10, 0x35, 0x22, 0x67, 0xa0, 0xd1, 0x88, 0xa2, 0x2d, 0xce, 0x0c, 0x87, 0x73, 0xc3, 0x58, 0xd2, 0x02, 0x20, 0x38, 0xe2, 0x98, 0x37, 0x37, 0x49, 0x4b, 0xb3, 0x4e, 0x05, 0xd5, 0x04, 0x0e, 0x49, 0x48, 0x40, 0x37, 0x16, 0xdd, 0x90, 0x44, 0x55, 0x2a, 0xa5, 0xac, 0x93, 0x8d, 0x37, 0xa9, 0x5c, 0x37, 0xa9, 0x78, 0x1d, 0x5f, 0xe4, 0x4d, 0x6d, 0xec, 0xdd, 0xcd, 0xc5, 0xeb, 0xdd, 0x38, 0x9b, 0xad, 0x54, 0x56, 0x79, 0x70, 0x32, 0x79, 0x49, 0x79, 0x93, 0x97, 0x94, 0x2b, 0xa5, 0xb2, 0xc6, 0x4e, 0xc5, 0x49, 0x9c, 0xc4, 0xd9, 0x75, 0x55, 0xb6, 0xca, 0xfb, 0xb0, 0x75, 0x6e, 0xdd, 0xe7, 0x1c, 0x34, 0xd0, 0xe0, 0x48, 0xb2, 0xfd, 0xa0, 0x97, 0x19, 0xf4, 0x39, 0xff, 0xf7, 0xf5, 0xdf, 0xff, 0xed, 0xfc, 0x7d, 0xba, 0x01, 0xc2, 0x6f, 0xdd, 0x84, 0x73, 0x87, 0xae, 0x7b, 0xd8, 0x40, 0x97, 0x5a, 0x6d, 0xd7, 0x77, 0xf7, 0x3b, 0x07, 0x97, 0x6a, 0xc8, 0xab, 0xb6, 0xeb, 0x2d, 0xdf, 0x6d, 0x2f, 0x92, 0x31, 0x73, 0x82, 0x4a, 0x2c, 0x72, 0x89, 0xdc, 0x06, 0x4c, 0xae, 0xd6, 0x1b, 0x68, 0x25, 0x10, 0xdc, 0x41, 0xbe, 0x79, 0x13, 0x92, 0x07, 0xf5, 0x06, 0xca, 0x6a, 0xe7, 0xf4, 0xf9, 0xf4, 0xd2, 0x85, 0x45, 0x05, 0xb4, 0x28, 0x23, 0xb6, 0xf1, 0xb0, 0x45, 0x10, 0xb9, 0xef, 0x25, 0x61, 0x2a, 0x62, 0xd6, 0x34, 0x21, 0xe9, 0xd8, 0x4d, 0xcc, 0xa8, 0xcd, 0x8f, 0x5a, 0xe4, 0xb3, 0x99, 0x85, 0x91, 0x96, 0x5d, 0x7d, 0xc5, 0x3e, 0x44, 0xd9, 0x04, 0x19, 0xe6, 0x87, 0xe6, 0x2c, 0x40, 0x0d, 0xb5, 0x90, 0x53, 0x43, 0x4e, 0xf5, 0x38, 0xab, 0x9f, 0xd3, 0xe7, 0x47, 0x2d, 0x61, 0xc4, 0xfc, 0x08, 0x4c, 0xb6, 0x3a, 0xfb, 0x8d, 0x7a, 0xb5, 0x22, 0x88, 0xc1, 0x39, 0x7d, 0x7e, 0xc8, 0x32, 0xe8, 0xc4, 0x4a, 0x28, 0xfc, 0x14, 0x4c, 0xbc, 0x86, 0xec, 0x57, 0x44, 0xd1, 0x34, 0x11, 0x1d, 0xc7, 0xc3, 0x82, 0x60, 0x09, 0x32, 0x4d, 0xe4, 0x79, 0xf6, 0x21, 0xaa, 0xf8, 0xc7, 0x2d, 0x94, 0x4d, 0x92, 0xab, 0x3f, 0xd7, 0x75, 0xf5, 0xea, 0x95, 0xa7, 0x19, 0x6a, 0xf7, 0xb8, 0x85, 0xcc, 0x02, 0x8c, 0x22, 0xa7, 0xd3, 0xa4, 0x0c, 0x43, 0x3d, 0xec, 0x57, 0x76, 0x3a, 0x4d, 0x95, 0x25, 0x85, 0x61, 0x8c, 0x62, 0xc4, 0x43, 0xed, 0x57, 0xeb, 0x55, 0x94, 0x1d, 0x26, 0x04, 0x4f, 0x75, 0x11, 0xec, 0xd0, 0x79, 0x95, 0x83, 0xe3, 0xcc, 0x12, 0x8c, 0xa2, 0xd7, 0x7d, 0xe4, 0x78, 0x75, 0xd7, 0xc9, 0x8e, 0x10, 0x92, 0x27, 0x23, 0xbc, 0x88, 0x1a, 0x35, 0x95, 0x22, 0xc4, 0x99, 0xd7, 0x61, 0xc4, 0x6d, 0xf9, 0x75, 0xd7, 0xf1, 0xb2, 0xa9, 0x73, 0xda, 0x7c, 0x7a, 0xe9, 0x6c, 0x64, 0x20, 0x6c, 0x51, 0x19, 0x8b, 0x0b, 0x9b, 0x6b, 0x60, 0x78, 0x6e, 0xa7, 0x5d, 0x45, 0x95, 0xaa, 0x5b, 0x43, 0x95, 0xba, 0x73, 0xe0, 0x66, 0x47, 0x09, 0xc1, 0x5c, 0xf7, 0x85, 0x10, 0xc1, 0x92, 0x5b, 0x43, 0x6b, 0xce, 0x81, 0x6b, 0x8d, 0x7b, 0xd2, 0xb1, 0x39, 0x0d, 0xc3, 0xde, 0xb1, 0xe3, 0xdb, 0xaf, 0x67, 0x33, 0x24, 0x42, 0xd8, 0x51, 0xee, 0x5f, 0x0d, 0xc3, 0xc4, 0x20, 0x21, 0x76, 0x1b, 0x86, 0x0e, 0xf0, 0x55, 0x66, 0x13, 0x27, 0xb1, 0x01, 0xc5, 0xc8, 0x46, 0x1c, 0x7e, 0x48, 0x23, 0x16, 0x20, 0xed, 0x20, 0xcf, 0x47, 0x35, 0x1a, 0x11, 0xfa, 0x80, 0x31, 0x05, 0x14, 0xd4, 0x1d, 0x52, 0xc9, 0x87, 0x0a, 0xa9, 0x97, 0x60, 0x22, 0x50, 0xa9, 0xd2, 0xb6, 0x9d, 0x43, 0x1e, 0x9b, 0x97, 0xe2, 0x34, 0x59, 0x2c, 0x73, 0x9c, 0x85, 0x61, 0xd6, 0x38, 0x92, 0x8e, 0xcd, 0x15, 0x00, 0xd7, 0x41, 0xee, 0x41, 0xa5, 0x86, 0xaa, 0x8d, 0x6c, 0xaa, 0x87, 0x95, 0xb6, 0xb0, 0x48, 0x97, 0x95, 0x5c, 0x3a, 0x5a, 0x6d, 0x98, 0xb7, 0xc2, 0x50, 0x1b, 0xe9, 0x11, 0x29, 0x1b, 0x34, 0xc9, 0xba, 0xa2, 0x6d, 0x0f, 0xc6, 0xdb, 0x08, 0xc7, 0x3d, 0xaa, 0xb1, 0x2b, 0x1b, 0x25, 0x4a, 0x2c, 0xc6, 0x5e, 0x99, 0xc5, 0x60, 0xf4, 0xc2, 0xc6, 0xda, 0xe2, 0xa1, 0xf9, 0x04, 0x04, 0x03, 0x15, 0x12, 0x56, 0x40, 0xaa, 0x50, 0x86, 0x0f, 0x6e, 0xda, 0x4d, 0x34, 0xf3, 0x06, 0x8c, 0xcb, 0xe6, 0x31, 0x4f, 0xc3, 0x90, 0xe7, 0xdb, 0x6d, 0x9f, 0x44, 0xe1, 0x90, 0x45, 0x0f, 0x4c, 0x03, 0x74, 0xe4, 0xd4, 0x48, 0x95, 0x1b, 0xb2, 0xf0, 0x47, 0xf3, 0xe7, 0xc2, 0x0b, 0xd6, 0xc9, 0x05, 0x5f, 0xec, 0xf6, 0xa8, 0xc4, 0xac, 0x5e, 0xf7, 0xcc, 0x0d, 0x18, 0x93, 0x2e, 0x60, 0xd0, 0x53, 0xe7, 0xfe, 0x02, 0x9c, 0x89, 0xa4, 0x36, 0x5f, 0x82, 0xd3, 0x1d, 0xa7, 0xee, 0xf8, 0xa8, 0xdd, 0x6a, 0x23, 0x1c, 0xb1, 0xf4, 0x54, 0xd9, 0xff, 0x3e, 0xd2, 0x23, 0xe6, 0xf6, 0x44, 0x69, 0xca, 0x62, 0x4d, 0x75, 0xba, 0x07, 0x17, 0x46, 0x53, 0xdf, 0x1f, 0x31, 0xde, 0x7c, 0xf3, 0xcd, 0x37, 0x13, 0xb9, 0xcf, 0x0e, 0xc3, 0xe9, 0xa8, 0x9c, 0x89, 0x4c, 0xdf, 0x69, 0x18, 0x76, 0x3a, 0xcd, 0x7d, 0xd4, 0x26, 0x46, 0x1a, 0xb2, 0xd8, 0x91, 0x59, 0x80, 0xa1, 0x86, 0xbd, 0x8f, 0x1a, 0xd9, 0xe4, 0x39, 0x6d, 0x7e, 0x7c, 0xe9, 0x23, 0x03, 0x65, 0xe5, 0xe2, 0x3a, 0x86, 0x58, 0x14, 0x69, 0x3e, 0x07, 0x49, 0x56, 0xa2, 0x31, 0xc3, 0xc2, 0x60, 0x0c, 0x38, 0x97, 0x2c, 0x82, 0x33, 0x1f, 0x83, 0x51, 0xfc, 0x3f, 0x8d, 0x8d, 0x61, 0xa2, 0x73, 0x0a, 0x0f, 0xe0, 0xb8, 0x30, 0x67, 0x20, 0x45, 0xd2, 0xa4, 0x86, 0xf8, 0xd2, 0x16, 0x1c, 0xe3, 0xc0, 0xaa, 0xa1, 0x03, 0xbb, 0xd3, 0xf0, 0x2b, 0xaf, 0xda, 0x8d, 0x0e, 0x22, 0x01, 0x3f, 0x6a, 0x65, 0xd8, 0xe0, 0x27, 0xf1, 0x98, 0x39, 0x07, 0x69, 0x9a, 0x55, 0x75, 0xa7, 0x86, 0x5e, 0x27, 0xd5, 0x73, 0xc8, 0xa2, 0x89, 0xb6, 0x86, 0x47, 0xf0, 0xe9, 0x5f, 0xf6, 0x5c, 0x87, 0x87, 0x26, 0x39, 0x05, 0x1e, 0x20, 0xa7, 0xbf, 0xa1, 0x16, 0xee, 0xc7, 0xa3, 0x2f, 0x4f, 0x8d, 0xa9, 0xdc, 0x37, 0x12, 0x90, 0x24, 0xf5, 0x62, 0x02, 0xd2, 0xbb, 0xf7, 0xb6, 0xcb, 0x95, 0x95, 0xad, 0xbd, 0xe2, 0x7a, 0xd9, 0xd0, 0xcc, 0x71, 0x00, 0x32, 0xb0, 0xba, 0xbe, 0x55, 0xd8, 0x35, 0x12, 0xc1, 0xf1, 0xda, 0xe6, 0xee, 0xf5, 0x65, 0x43, 0x0f, 0x00, 0x7b, 0x74, 0x20, 0x29, 0x0a, 0x5c, 0x5d, 0x32, 0x86, 0x4c, 0x03, 0x32, 0x94, 0x60, 0xed, 0xa5, 0xf2, 0xca, 0xf5, 0x65, 0x63, 0x58, 0x1e, 0xb9, 0xba, 0x64, 0x8c, 0x98, 0x63, 0x30, 0x4a, 0x46, 0x8a, 0x5b, 0x5b, 0xeb, 0x46, 0x2a, 0xe0, 0xdc, 0xd9, 0xb5, 0xd6, 0x36, 0xef, 0x18, 0xa3, 0x01, 0xe7, 0x1d, 0x6b, 0x6b, 0x6f, 0xdb, 0x80, 0x80, 0x61, 0xa3, 0xbc, 0xb3, 0x53, 0xb8, 0x53, 0x36, 0xd2, 0x81, 0x44, 0xf1, 0xde, 0x6e, 0x79, 0xc7, 0xc8, 0x48, 0x6a, 0x5d, 0x5d, 0x32, 0xc6, 0x82, 0x53, 0x94, 0x37, 0xf7, 0x36, 0x8c, 0x71, 0x73, 0x12, 0xc6, 0xe8, 0x29, 0xb8, 0x12, 0x13, 0xca, 0xd0, 0xf5, 0x65, 0xc3, 0x08, 0x15, 0xa1, 0x2c, 0x93, 0xd2, 0xc0, 0xf5, 0x65, 0xc3, 0xcc, 0x95, 0x60, 0x88, 0x44, 0x97, 0x69, 0xc2, 0xf8, 0x7a, 0xa1, 0x58, 0x5e, 0xaf, 0x6c, 0x6d, 0xef, 0xae, 0x6d, 0x6d, 0x16, 0xd6, 0x0d, 0x2d, 0x1c, 0xb3, 0xca, 0x9f, 0xd8, 0x5b, 0xb3, 0xca, 0x2b, 0x46, 0x42, 0x1c, 0xdb, 0x2e, 0x17, 0x76, 0xcb, 0x2b, 0x86, 0x9e, 0xab, 0xc2, 0xe9, 0xa8, 0x3a, 0x19, 0x99, 0x19, 0x82, 0x8b, 0x13, 0x3d, 0x5c, 0x4c, 0xb8, 0xba, 0x5c, 0xfc, 0x6b, 0x1a, 0x4c, 0x45, 0xac, 0x15, 0x91, 0x27, 0x79, 0x1e, 0x86, 0x68, 0x88, 0xd2, 0xd5, 0xf3, 0xe9, 0xc8, 0x45, 0x87, 0x04, 0x6c, 0xd7, 0x0a, 0x4a, 0x70, 0x62, 0x07, 0xa1, 0xf7, 0xe8, 0x20, 0x30, 0x45, 0x97, 0x92, 0x9f, 0xd6, 0x20, 0xdb, 0x8b, 0x3b, 0xa6, 0x50, 0x24, 0xa4, 0x42, 0x71, 0x5b, 0x55, 0xe0, 0x7c, 0xef, 0x6b, 0xe8, 0xd2, 0xe2, 0x2b, 0x1a, 0x4c, 0x47, 0x37, 0x5a, 0x91, 0x3a, 0x3c, 0x07, 0xc3, 0x4d, 0xe4, 0x1f, 0xb9, 0xbc, 0xd9, 0xb8, 0x18, 0xb1, 0x84, 0xe1, 0x69, 0xd5, 0x56, 0x0c, 0x25, 0xae, 0x81, 0x7a, 0xaf, 0x6e, 0x89, 0x6a, 0xd3, 0xa5, 0xe9, 0x2f, 0x27, 0xe0, 0x4c, 0x24, 0x79, 0xa4, 0xa2, 0x8f, 0x03, 0xd4, 0x9d, 0x56, 0xc7, 0xa7, 0x0d, 0x05, 0xad, 0x4f, 0xa3, 0x64, 0x84, 0xe4, 0x3e, 0xae, 0x3d, 0x1d, 0x3f, 0x98, 0xd7, 0xc9, 0x3c, 0xd0, 0x21, 0x22, 0x70, 0x33, 0x54, 0x34, 0x49, 0x14, 0x9d, 0xed, 0x71, 0xa5, 0x5d, 0x6b, 0xf5, 0x65, 0x30, 0xaa, 0x8d, 0x3a, 0x72, 0xfc, 0x8a, 0xe7, 0xb7, 0x91, 0xdd, 0xac, 0x3b, 0x87, 0xa4, 0x00, 0xa7, 0xf2, 0x43, 0x07, 0x76, 0xc3, 0x43, 0xd6, 0x04, 0x9d, 0xde, 0xe1, 0xb3, 0x18, 0x41, 0xd6, 0xb8, 0xb6, 0x80, 0x18, 0x96, 0x10, 0x74, 0x3a, 0x40, 0xe4, 0x7e, 0x27, 0x05, 0x69, 0xa1, 0x2d, 0x35, 0xcf, 0x43, 0xe6, 0x65, 0xfb, 0x55, 0xbb, 0xc2, 0x6f, 0x35, 0xa8, 0x25, 0xd2, 0x78, 0x6c, 0x9b, 0xdd, 0x6e, 0x5c, 0x86, 0xd3, 0x44, 0xc4, 0xed, 0xf8, 0xa8, 0x5d, 0xa9, 0x36, 0x6c, 0xcf, 0x23, 0x46, 0x4b, 0x11, 0x51, 0x13, 0xcf, 0x6d, 0xe1, 0xa9, 0x12, 0x9f, 0x31, 0xaf, 0xc1, 0x14, 0x41, 0x34, 0x3b, 0x0d, 0xbf, 0xde, 0x6a, 0xa0, 0x0a, 0xbe, 0xf9, 0xf1, 0x48, 0x21, 0x0e, 0x34, 0x9b, 0xc4, 0x12, 0x1b, 0x4c, 0x00, 0x6b, 0xe4, 0x99, 0x2b, 0xf0, 0x38, 0x81, 0x1d, 0x22, 0x07, 0xb5, 0x6d, 0x1f, 0x55, 0xd0, 0x2f, 0x74, 0xec, 0x86, 0x57, 0xb1, 0x9d, 0x5a, 0xe5, 0xc8, 0xf6, 0x8e, 0xb2, 0xa7, 0x31, 0x41, 0x31, 0x91, 0xd5, 0xac, 0x47, 0xb1, 0xe0, 0x1d, 0x26, 0x57, 0x26, 0x62, 0x05, 0xa7, 0xf6, 0x82, 0xed, 0x1d, 0x99, 0x79, 0x98, 0x26, 0x2c, 0x9e, 0xdf, 0xae, 0x3b, 0x87, 0x95, 0xea, 0x11, 0xaa, 0xbe, 0x52, 0xe9, 0xf8, 0x07, 0x37, 0xb3, 0x8f, 0x89, 0xe7, 0x27, 0x1a, 0xee, 0x10, 0x99, 0x12, 0x16, 0xd9, 0xf3, 0x0f, 0x6e, 0x9a, 0x3b, 0x90, 0xc1, 0xce, 0x68, 0xd6, 0xdf, 0x40, 0x95, 0x03, 0xb7, 0x4d, 0x56, 0x96, 0xf1, 0x88, 0xcc, 0x16, 0x2c, 0xb8, 0xb8, 0xc5, 0x00, 0x1b, 0x6e, 0x0d, 0xe5, 0x87, 0x76, 0xb6, 0xcb, 0xe5, 0x15, 0x2b, 0xcd, 0x59, 0x56, 0xdd, 0x36, 0x0e, 0xa8, 0x43, 0x37, 0x30, 0x70, 0x9a, 0x06, 0xd4, 0xa1, 0xcb, 0xcd, 0x7b, 0x0d, 0xa6, 0xaa, 0x55, 0x7a, 0xcd, 0xf5, 0x6a, 0x85, 0xdd, 0xa2, 0x78, 0x59, 0x43, 0x32, 0x56, 0xb5, 0x7a, 0x87, 0x0a, 0xb0, 0x18, 0xf7, 0xcc, 0x5b, 0x70, 0x26, 0x34, 0x96, 0x08, 0x9c, 0xec, 0xba, 0x4a, 0x15, 0x7a, 0x0d, 0xa6, 0x5a, 0xc7, 0xdd, 0x40, 0x53, 0x3a, 0x63, 0xeb, 0x58, 0x85, 0xdd, 0x80, 0xd3, 0xad, 0xa3, 0x56, 0x37, 0x6e, 0x4a, 0xc4, 0x99, 0xad, 0xa3, 0x96, 0x0a, 0x7c, 0x92, 0xdc, 0xaf, 0xb6, 0x51, 0xd5, 0xf6, 0x51, 0x2d, 0xfb, 0x88, 0x28, 0x2e, 0x4c, 0x98, 0x97, 0xc0, 0xa8, 0x56, 0x2b, 0xc8, 0xb1, 0xf7, 0x1b, 0xa8, 0x62, 0xb7, 0x91, 0x63, 0x7b, 0xd9, 0x39, 0x51, 0x78, 0xbc, 0x5a, 0x2d, 0x93, 0xd9, 0x02, 0x99, 0x34, 0x17, 0x60, 0xd2, 0xdd, 0x7f, 0xb9, 0x4a, 0x43, 0xb2, 0xd2, 0x6a, 0xa3, 0x83, 0xfa, 0xeb, 0xd9, 0x0b, 0xc4, 0xbe, 0x13, 0x78, 0x82, 0x04, 0xe4, 0x36, 0x19, 0x36, 0x9f, 0x06, 0xa3, 0xea, 0x1d, 0xd9, 0xed, 0x16, 0xe9, 0x09, 0xbc, 0x96, 0x5d, 0x45, 0xd9, 0x27, 0xa9, 0x28, 0x1d, 0xdf, 0xe4, 0xc3, 0x38, 0x25, 0xbc, 0xd7, 0xea, 0x07, 0x3e, 0x67, 0x7c, 0x8a, 0xa6, 0x04, 0x19, 0x63, 0x6c, 0xf3, 0x60, 0x60, 0x53, 0x48, 0x27, 0x9e, 0x27, 0x62, 0xe3, 0xad, 0xa3, 0x96, 0x78, 0xde, 0x27, 0x60, 0x0c, 0x4b, 0x86, 0x27, 0x7d, 0x9a, 0xf6, 0x33, 0xad, 0x23, 0xe1, 0x8c, 0x1f, 0x58, 0x6b, 0x99, 0xcb, 0x43, 0x46, 0x8c, 0x4f, 0x73, 0x14, 0x68, 0x84, 0x1a, 0x1a, 0x5e, 0xeb, 0x4b, 0x5b, 0x2b, 0x78, 0x95, 0xfe, 0xf9, 0xb2, 0x91, 0xc0, 0xdd, 0xc2, 0xfa, 0xda, 0x6e, 0xb9, 0x62, 0xed, 0x6d, 0xee, 0xae, 0x6d, 0x94, 0x0d, 0x5d, 0x6c, 0x4b, 0xbf, 0x99, 0x80, 0x71, 0xf9, 0x0e, 0xc3, 0xfc, 0x18, 0x3c, 0xc2, 0xb7, 0x03, 0x3c, 0xe4, 0x57, 0x5e, 0xab, 0xb7, 0x49, 0xca, 0x34, 0x6d, 0xda, 0x61, 0x07, 0x4e, 0x3b, 0xcd, 0xa4, 0x76, 0x90, 0xff, 0x62, 0xbd, 0x8d, 0x13, 0xa2, 0x69, 0xfb, 0xe6, 0x3a, 0xcc, 0x39, 0x6e, 0xc5, 0xf3, 0x6d, 0xa7, 0x66, 0xb7, 0x6b, 0x95, 0x70, 0x23, 0xa6, 0x62, 0x57, 0xab, 0xc8, 0xf3, 0x5c, 0xba, 0x54, 0x05, 0x2c, 0x67, 0x1d, 0x77, 0x87, 0x09, 0x87, 0x35, 0xbc, 0xc0, 0x44, 0x95, 0x00, 0xd3, 0x7b, 0x05, 0xd8, 0x63, 0x30, 0xda, 0xb4, 0x5b, 0x15, 0xe4, 0xf8, 0xed, 0x63, 0xd2, 0x57, 0xa6, 0xac, 0x54, 0xd3, 0x6e, 0x95, 0xf1, 0xf1, 0x4f, 0xa6, 0xbd, 0xff, 0xaf, 0x3a, 0x64, 0xc4, 0xde, 0x12, 0xb7, 0xea, 0x55, 0xb2, 0x8e, 0x68, 0xa4, 0xd2, 0x3c, 0xd1, 0xb7, 0x13, 0x5d, 0x2c, 0xe1, 0x05, 0x26, 0x3f, 0x4c, 0x3b, 0x3e, 0x8b, 0x22, 0xf1, 0xe2, 0x8e, 0x6b, 0x0b, 0xa2, 0x77, 0x31, 0x29, 0x8b, 0x1d, 0x99, 0x77, 0x60, 0xf8, 0x65, 0x8f, 0x70, 0x0f, 0x13, 0xee, 0x0b, 0xfd, 0xb9, 0xef, 0xee, 0x10, 0xf2, 0xd1, 0xbb, 0x3b, 0x95, 0xcd, 0x2d, 0x6b, 0xa3, 0xb0, 0x6e, 0x31, 0xb8, 0xf9, 0x28, 0x24, 0x1b, 0xf6, 0x1b, 0xc7, 0xf2, 0x52, 0x44, 0x86, 0x06, 0x35, 0xfc, 0xa3, 0x90, 0x7c, 0x0d, 0xd9, 0xaf, 0xc8, 0x0b, 0x00, 0x19, 0xfa, 0x00, 0x43, 0xff, 0x12, 0x0c, 0x11, 0x7b, 0x99, 0x00, 0xcc, 0x62, 0xc6, 0x29, 0x33, 0x05, 0xc9, 0xd2, 0x96, 0x85, 0xc3, 0xdf, 0x80, 0x0c, 0x1d, 0xad, 0x6c, 0xaf, 0x95, 0x4b, 0x65, 0x23, 0x91, 0xbb, 0x06, 0xc3, 0xd4, 0x08, 0x38, 0x35, 0x02, 0x33, 0x18, 0xa7, 0xd8, 0x21, 0xe3, 0xd0, 0xf8, 0xec, 0xde, 0x46, 0xb1, 0x6c, 0x19, 0x09, 0xd1, 0xbd, 0x1e, 0x64, 0xc4, 0xb6, 0xf2, 0x27, 0x13, 0x53, 0xbf, 0xaf, 0x41, 0x5a, 0x68, 0x13, 0x71, 0x83, 0x62, 0x37, 0x1a, 0xee, 0x6b, 0x15, 0xbb, 0x51, 0xb7, 0x3d, 0x16, 0x14, 0x40, 0x86, 0x0a, 0x78, 0x64, 0x50, 0xa7, 0xfd, 0x44, 0x94, 0xff, 0xa2, 0x06, 0x86, 0xda, 0x62, 0x2a, 0x0a, 0x6a, 0x3f, 0x55, 0x05, 0x3f, 0xaf, 0xc1, 0xb8, 0xdc, 0x57, 0x2a, 0xea, 0x9d, 0xff, 0xa9, 0xaa, 0xf7, 0x9d, 0x04, 0x8c, 0x49, 0xdd, 0xe4, 0xa0, 0xda, 0xfd, 0x02, 0x4c, 0xd6, 0x6b, 0xa8, 0xd9, 0x72, 0x7d, 0xe4, 0x54, 0x8f, 0x2b, 0x0d, 0xf4, 0x2a, 0x6a, 0x64, 0x73, 0xa4, 0x50, 0x5c, 0xea, 0xdf, 0xaf, 0x2e, 0xae, 0x85, 0xb8, 0x75, 0x0c, 0xcb, 0x4f, 0xad, 0xad, 0x94, 0x37, 0xb6, 0xb7, 0x76, 0xcb, 0x9b, 0xa5, 0x7b, 0x95, 0xbd, 0xcd, 0x8f, 0x6f, 0x6e, 0xbd, 0xb8, 0x69, 0x19, 0x75, 0x45, 0xec, 0x03, 0x4c, 0xf5, 0x6d, 0x30, 0x54, 0xa5, 0xcc, 0x47, 0x20, 0x4a, 0x2d, 0xe3, 0x94, 0x39, 0x05, 0x13, 0x9b, 0x5b, 0x95, 0x9d, 0xb5, 0x95, 0x72, 0xa5, 0xbc, 0xba, 0x5a, 0x2e, 0xed, 0xee, 0xd0, 0x1b, 0xf8, 0x40, 0x7a, 0x57, 0x4e, 0xea, 0xcf, 0xe9, 0x30, 0x15, 0xa1, 0x89, 0x59, 0x60, 0xf7, 0x0e, 0xf4, 0x76, 0xe6, 0x99, 0x41, 0xb4, 0x5f, 0xc4, 0x4b, 0xfe, 0xb6, 0xdd, 0xf6, 0xd9, 0xad, 0xc6, 0xd3, 0x80, 0xad, 0xe4, 0xf8, 0xf5, 0x83, 0x3a, 0x6a, 0xb3, 0xfd, 0x0e, 0x7a, 0x43, 0x31, 0x11, 0x8e, 0xd3, 0x2d, 0x8f, 0x8f, 0x82, 0xd9, 0x72, 0xbd, 0xba, 0x5f, 0x7f, 0x15, 0x55, 0xea, 0x0e, 0xdf, 0x1c, 0xc1, 0x37, 0x18, 0x49, 0xcb, 0xe0, 0x33, 0x6b, 0x8e, 0x1f, 0x48, 0x3b, 0xe8, 0xd0, 0x56, 0xa4, 0x71, 0x01, 0xd7, 0x2d, 0x83, 0xcf, 0x04, 0xd2, 0xe7, 0x21, 0x53, 0x73, 0x3b, 0xb8, 0xeb, 0xa2, 0x72, 0x78, 0xbd, 0xd0, 0xac, 0x34, 0x1d, 0x0b, 0x44, 0x58, 0x3f, 0x1d, 0xee, 0xca, 0x64, 0xac, 0x34, 0x1d, 0xa3, 0x22, 0x4f, 0xc1, 0x84, 0x7d, 0x78, 0xd8, 0xc6, 0xe4, 0x9c, 0x88, 0xde, 0x21, 0x8c, 0x07, 0xc3, 0x44, 0x70, 0xe6, 0x2e, 0xa4, 0xb8, 0x1d, 0xf0, 0x92, 0x8c, 0x2d, 0x51, 0x69, 0xd1, 0x9d, 0xb9, 0xc4, 0xfc, 0xa8, 0x95, 0x72, 0xf8, 0xe4, 0x79, 0xc8, 0xd4, 0xbd, 0x4a, 0xb8, 0xc9, 0x9c, 0x38, 0x97, 0x98, 0x4f, 0x59, 0xe9, 0xba, 0x17, 0x6c, 0xd0, 0xe5, 0xbe, 0x92, 0x80, 0x71, 0x79, 0x93, 0xdc, 0x5c, 0x81, 0x54, 0xc3, 0xad, 0xda, 0x24, 0xb4, 0xe8, 0x13, 0x9a, 0xf9, 0x98, 0x7d, 0xf5, 0xc5, 0x75, 0x26, 0x6f, 0x05, 0xc8, 0x99, 0xff, 0xa8, 0x41, 0x8a, 0x0f, 0x9b, 0xd3, 0x90, 0x6c, 0xd9, 0xfe, 0x11, 0xa1, 0x1b, 0x2a, 0x26, 0x0c, 0xcd, 0x22, 0xc7, 0x78, 0xdc, 0x6b, 0xd9, 0x0e, 0x09, 0x01, 0x36, 0x8e, 0x8f, 0xb1, 0x5f, 0x1b, 0xc8, 0xae, 0x91, 0xdb, 0x0f, 0xb7, 0xd9, 0x44, 0x8e, 0xef, 0x71, 0xbf, 0xb2, 0xf1, 0x12, 0x1b, 0x36, 0x3f, 0x02, 0x93, 0x7e, 0xdb, 0xae, 0x37, 0x24, 0xd9, 0x24, 0x91, 0x35, 0xf8, 0x44, 0x20, 0x9c, 0x87, 0x47, 0x39, 0x6f, 0x0d, 0xf9, 0x76, 0xf5, 0x08, 0xd5, 0x42, 0xd0, 0x30, 0xd9, 0x81, 0x7d, 0x84, 0x09, 0xac, 0xb0, 0x79, 0x8e, 0xcd, 0xfd, 0xa1, 0x06, 0x93, 0xfc, 0x86, 0xa9, 0x16, 0x18, 0x6b, 0x03, 0xc0, 0x76, 0x1c, 0xd7, 0x17, 0xcd, 0xd5, 0x1d, 0xca, 0x5d, 0xb8, 0xc5, 0x42, 0x00, 0xb2, 0x04, 0x82, 0x99, 0x26, 0x40, 0x38, 0xd3, 0xd3, 0x6c, 0x73, 0x90, 0x66, 0x4f, 0x40, 0xc8, 0x63, 0x34, 0x7a, 0x8b, 0x0d, 0x74, 0x08, 0xdf, 0x59, 0x99, 0xa7, 0x61, 0x68, 0x1f, 0x1d, 0xd6, 0x1d, 0xb6, 0xaf, 0x49, 0x0f, 0xf8, 0x5e, 0x6d, 0x32, 0xd8, 0xab, 0x2d, 0xbe, 0x04, 0x53, 0x55, 0xb7, 0xa9, 0xaa, 0x5b, 0x34, 0x94, 0xdb, 0x7c, 0xef, 0x05, 0xed, 0xe7, 0x21, 0x6c, 0x31, 0x7f, 0x2d, 0xa1, 0xdf, 0xd9, 0x2e, 0xfe, 0x66, 0x62, 0xe6, 0x0e, 0xc5, 0x6d, 0xf3, 0xcb, 0xb4, 0xd0, 0x41, 0x03, 0x55, 0xb1, 0xea, 0xf0, 0xc7, 0x17, 0xe1, 0x99, 0xc3, 0xba, 0x7f, 0xd4, 0xd9, 0x5f, 0xac, 0xba, 0xcd, 0x4b, 0x87, 0xee, 0xa1, 0x1b, 0x3e, 0x36, 0xc4, 0x47, 0xe4, 0x80, 0x7c, 0x62, 0x8f, 0x0e, 0x47, 0x83, 0xd1, 0x99, 0xd8, 0xe7, 0x8c, 0xf9, 0x4d, 0x98, 0x62, 0xc2, 0x15, 0xf2, 0xec, 0x82, 0xde, 0x42, 0x98, 0x7d, 0xf7, 0x7f, 0xb2, 0xbf, 0xfd, 0x3d, 0xb2, 0x56, 0x5b, 0x93, 0x0c, 0x8a, 0xe7, 0xe8, 0x5d, 0x46, 0xde, 0x82, 0x33, 0x12, 0x1f, 0xcd, 0x4b, 0xd4, 0x8e, 0x61, 0xfc, 0x26, 0x63, 0x9c, 0x12, 0x18, 0x77, 0x18, 0x34, 0x5f, 0x82, 0xb1, 0x93, 0x70, 0xfd, 0x3b, 0xc6, 0x95, 0x41, 0x22, 0xc9, 0x1d, 0x98, 0x20, 0x24, 0xd5, 0x8e, 0xe7, 0xbb, 0x4d, 0x52, 0xf4, 0xfa, 0xd3, 0xfc, 0xfb, 0xef, 0xd1, 0x44, 0x19, 0xc7, 0xb0, 0x52, 0x80, 0xca, 0xe7, 0x81, 0x3c, 0xae, 0xa9, 0xa1, 0x6a, 0x23, 0x86, 0xe1, 0x3e, 0x53, 0x24, 0x90, 0xcf, 0x7f, 0x12, 0x4e, 0xe3, 0xcf, 0xa4, 0x26, 0x89, 0x9a, 0xc4, 0xef, 0x76, 0x65, 0xff, 0xf0, 0xd3, 0x34, 0x17, 0xa7, 0x02, 0x02, 0x41, 0x27, 0xc1, 0x8b, 0x87, 0xc8, 0xf7, 0x51, 0xdb, 0xab, 0xd8, 0x8d, 0x28, 0xf5, 0x84, 0xed, 0x82, 0xec, 0xaf, 0xfe, 0x40, 0xf6, 0xe2, 0x1d, 0x8a, 0x2c, 0x34, 0x1a, 0xf9, 0x3d, 0x78, 0x24, 0x22, 0x2a, 0x06, 0xe0, 0xfc, 0x1c, 0xe3, 0x3c, 0xdd, 0x15, 0x19, 0x98, 0x76, 0x1b, 0xf8, 0x78, 0xe0, 0xcb, 0x01, 0x38, 0xff, 0x21, 0xe3, 0x34, 0x19, 0x96, 0xbb, 0x14, 0x33, 0xde, 0x85, 0xc9, 0x57, 0x51, 0x7b, 0xdf, 0xf5, 0xd8, 0x16, 0xcd, 0x00, 0x74, 0x9f, 0x67, 0x74, 0x13, 0x0c, 0x48, 0xf6, 0x6c, 0x30, 0xd7, 0x2d, 0x48, 0x1d, 0xd8, 0x55, 0x34, 0x00, 0xc5, 0x17, 0x18, 0xc5, 0x08, 0x96, 0xc7, 0xd0, 0x02, 0x64, 0x0e, 0x5d, 0xb6, 0x2c, 0xc5, 0xc3, 0xbf, 0xc8, 0xe0, 0x69, 0x8e, 0x61, 0x14, 0x2d, 0xb7, 0xd5, 0x69, 0xe0, 0x35, 0x2b, 0x9e, 0xe2, 0x4b, 0x9c, 0x82, 0x63, 0x18, 0xc5, 0x09, 0xcc, 0xfa, 0x16, 0xa7, 0xf0, 0x04, 0x7b, 0x3e, 0x0f, 0x69, 0xd7, 0x69, 0x1c, 0xbb, 0xce, 0x20, 0x4a, 0x7c, 0x99, 0x31, 0x00, 0x83, 0x60, 0x82, 0xdb, 0x30, 0x3a, 0xa8, 0x23, 0x7e, 0xfd, 0x07, 0x3c, 0x3d, 0xb8, 0x07, 0xee, 0xc0, 0x04, 0x2f, 0x50, 0x75, 0xd7, 0x19, 0x80, 0xe2, 0x1f, 0x33, 0x8a, 0x71, 0x01, 0xc6, 0x2e, 0xc3, 0x47, 0x9e, 0x7f, 0x88, 0x06, 0x21, 0xf9, 0x0a, 0xbf, 0x0c, 0x06, 0x61, 0xa6, 0xdc, 0x47, 0x4e, 0xf5, 0x68, 0x30, 0x86, 0xaf, 0x72, 0x53, 0x72, 0x0c, 0xa6, 0x28, 0xc1, 0x58, 0xd3, 0x6e, 0x7b, 0x47, 0x76, 0x63, 0x20, 0x77, 0xfc, 0x06, 0xe3, 0xc8, 0x04, 0x20, 0x66, 0x91, 0x8e, 0x73, 0x12, 0x9a, 0xdf, 0xe4, 0x16, 0x11, 0x60, 0x2c, 0xf5, 0x3c, 0x9f, 0xec, 0x67, 0x9d, 0x84, 0xed, 0xb7, 0x78, 0xea, 0x51, 0xec, 0x86, 0xc8, 0x78, 0x1b, 0x46, 0xbd, 0xfa, 0x1b, 0x03, 0xd1, 0xfc, 0x13, 0xee, 0x69, 0x02, 0xc0, 0xe0, 0x7b, 0xf0, 0x68, 0xe4, 0x32, 0x31, 0x00, 0xd9, 0x3f, 0x65, 0x64, 0xd3, 0x11, 0x4b, 0x05, 0x2b, 0x09, 0x27, 0xa5, 0xfc, 0x67, 0xbc, 0x24, 0x20, 0x85, 0x6b, 0x1b, 0xdf, 0x28, 0x78, 0xf6, 0xc1, 0xc9, 0xac, 0xf6, 0xcf, 0xb9, 0xd5, 0x28, 0x56, 0xb2, 0xda, 0x2e, 0x4c, 0x33, 0xc6, 0x93, 0xf9, 0xf5, 0x6b, 0xbc, 0xb0, 0x52, 0xf4, 0x9e, 0xec, 0xdd, 0x4f, 0xc1, 0x4c, 0x60, 0x4e, 0xde, 0x91, 0x7a, 0x95, 0xa6, 0xdd, 0x1a, 0x80, 0xf9, 0xb7, 0x19, 0x33, 0xaf, 0xf8, 0x41, 0x4b, 0xeb, 0x6d, 0xd8, 0x2d, 0x4c, 0xfe, 0x12, 0x64, 0x39, 0x79, 0xc7, 0x69, 0xa3, 0xaa, 0x7b, 0xe8, 0xd4, 0xdf, 0x40, 0xb5, 0x01, 0xa8, 0xbf, 0xae, 0xb8, 0x6a, 0x4f, 0x80, 0x63, 0xe6, 0x35, 0x30, 0x82, 0x5e, 0xa5, 0x52, 0x6f, 0xb6, 0xdc, 0xb6, 0x1f, 0xc3, 0xf8, 0x3b, 0xdc, 0x53, 0x01, 0x6e, 0x8d, 0xc0, 0xf2, 0x65, 0x18, 0x27, 0x87, 0x83, 0x86, 0xe4, 0xef, 0x32, 0xa2, 0xb1, 0x10, 0xc5, 0x0a, 0x47, 0xd5, 0x6d, 0xb6, 0xec, 0xf6, 0x20, 0xf5, 0xef, 0x5f, 0xf0, 0xc2, 0xc1, 0x20, 0xac, 0x70, 0xf8, 0xc7, 0x2d, 0x84, 0x57, 0xfb, 0x01, 0x18, 0xbe, 0xc1, 0x0b, 0x07, 0xc7, 0x30, 0x0a, 0xde, 0x30, 0x0c, 0x40, 0xf1, 0x2f, 0x39, 0x05, 0xc7, 0x60, 0x8a, 0x4f, 0x84, 0x0b, 0x6d, 0x1b, 0x1d, 0xd6, 0x3d, 0xbf, 0x4d, 0xfb, 0xe0, 0xfe, 0x54, 0xbf, 0xf7, 0x03, 0xb9, 0x09, 0xb3, 0x04, 0x68, 0xfe, 0x2e, 0x4c, 0x28, 0x2d, 0x86, 0x19, 0xf7, 0xee, 0x47, 0xf6, 0x2f, 0xfd, 0x88, 0x15, 0x23, 0xb9, 0xc3, 0xc8, 0xaf, 0x63, 0xbf, 0xcb, 0x7d, 0x40, 0x3c, 0xd9, 0xa7, 0x7f, 0x14, 0xb8, 0x5e, 0x6a, 0x03, 0xf2, 0xab, 0x30, 0x26, 0xf5, 0x00, 0xf1, 0x54, 0x7f, 0x99, 0x51, 0x65, 0xc4, 0x16, 0x20, 0x7f, 0x0d, 0x92, 0x78, 0x3d, 0x8f, 0x87, 0xff, 0x15, 0x06, 0x27, 0xe2, 0xf9, 0x67, 0x21, 0xc5, 0xd7, 0xf1, 0x78, 0xe8, 0x2f, 0x31, 0x68, 0x00, 0xc1, 0x70, 0xbe, 0x86, 0xc7, 0xc3, 0xff, 0x2a, 0x87, 0x73, 0x08, 0x86, 0x0f, 0x6e, 0xc2, 0xb7, 0xff, 0x7a, 0x92, 0xd5, 0x61, 0x6e, 0xbb, 0xdb, 0x30, 0xc2, 0x16, 0xef, 0x78, 0xf4, 0x2f, 0xb3, 0x93, 0x73, 0x44, 0xfe, 0x06, 0x0c, 0x0d, 0x68, 0xf0, 0xbf, 0xc1, 0xa0, 0x54, 0x3e, 0x5f, 0x82, 0xb4, 0xb0, 0x60, 0xc7, 0xc3, 0xff, 0x26, 0x83, 0x8b, 0x28, 0xac, 0x3a, 0x5b, 0xb0, 0xe3, 0x09, 0xfe, 0x16, 0x57, 0x9d, 0x21, 0xb0, 0xd9, 0xf8, 0x5a, 0x1d, 0x8f, 0xfe, 0xdb, 0xdc, 0xea, 0x1c, 0x92, 0x7f, 0x1e, 0x46, 0x83, 0xfa, 0x1b, 0x8f, 0xff, 0x3b, 0x0c, 0x1f, 0x62, 0xb0, 0x05, 0x84, 0xfa, 0x1f, 0x4f, 0xf1, 0x77, 0xb9, 0x05, 0x04, 0x14, 0x4e, 0x23, 0x75, 0x4d, 0x8f, 0x67, 0xfa, 0x15, 0x9e, 0x46, 0xca, 0x92, 0x8e, 0xbd, 0x49, 0xca, 0x60, 0x3c, 0xc5, 0xdf, 0xe3, 0xde, 0x24, 0xf2, 0x58, 0x0d, 0x75, 0x91, 0x8c, 0xe7, 0xf8, 0x07, 0x5c, 0x0d, 0x65, 0x8d, 0xcc, 0x6f, 0x83, 0xd9, 0xbd, 0x40, 0xc6, 0xf3, 0x7d, 0x96, 0xf1, 0x4d, 0x76, 0xad, 0x8f, 0xf9, 0x17, 0x61, 0x3a, 0x7a, 0x71, 0x8c, 0x67, 0xfd, 0xd5, 0x1f, 0x29, 0xb7, 0x33, 0xe2, 0xda, 0x98, 0xdf, 0x0d, 0xab, 0xac, 0xb8, 0x30, 0xc6, 0xd3, 0x7e, 0xee, 0x47, 0x72, 0xa1, 0x15, 0xd7, 0xc5, 0x7c, 0x01, 0x20, 0x5c, 0x93, 0xe2, 0xb9, 0x3e, 0xcf, 0xb8, 0x04, 0x10, 0x4e, 0x0d, 0xb6, 0x24, 0xc5, 0xe3, 0xbf, 0xc0, 0x53, 0x83, 0x21, 0x70, 0x6a, 0xf0, 0xd5, 0x28, 0x1e, 0xfd, 0x45, 0x9e, 0x1a, 0x1c, 0x92, 0xbf, 0x0d, 0x29, 0xa7, 0xd3, 0x68, 0xe0, 0xd8, 0x32, 0xfb, 0xbf, 0xce, 0x94, 0xfd, 0x1f, 0x3f, 0x66, 0x60, 0x0e, 0xc8, 0x5f, 0x83, 0x21, 0xd4, 0xdc, 0x47, 0xb5, 0x38, 0xe4, 0xff, 0xfc, 0x31, 0xaf, 0x27, 0x58, 0x3a, 0xff, 0x3c, 0x00, 0xbd, 0x99, 0x26, 0x4f, 0x89, 0x62, 0xb0, 0xff, 0xeb, 0xc7, 0xec, 0x4d, 0x89, 0x10, 0x12, 0x12, 0xd0, 0xf7, 0x2e, 0xfa, 0x13, 0xfc, 0x40, 0x26, 0x20, 0x37, 0xe0, 0xb7, 0x60, 0xe4, 0x65, 0xcf, 0x75, 0x7c, 0xfb, 0x30, 0x0e, 0xfd, 0xbf, 0x19, 0x9a, 0xcb, 0x63, 0x83, 0x35, 0xdd, 0x36, 0xf2, 0xed, 0x43, 0x2f, 0x0e, 0xfb, 0x7f, 0x18, 0x36, 0x00, 0x60, 0x70, 0xd5, 0xf6, 0xfc, 0x41, 0xae, 0xfb, 0xff, 0x72, 0x30, 0x07, 0x60, 0xa5, 0xf1, 0xe7, 0x57, 0xd0, 0x71, 0x1c, 0xf6, 0x87, 0x5c, 0x69, 0x26, 0x9f, 0x7f, 0x16, 0x46, 0xf1, 0x47, 0xfa, 0xf6, 0x50, 0x0c, 0xf8, 0xff, 0x31, 0x70, 0x88, 0xc0, 0x67, 0xf6, 0xfc, 0x9a, 0x5f, 0x8f, 0x37, 0xf6, 0x1f, 0x31, 0x4f, 0x73, 0xf9, 0x7c, 0x01, 0xd2, 0x9e, 0x5f, 0xab, 0x75, 0x58, 0x47, 0x13, 0x03, 0xff, 0xe3, 0x1f, 0x07, 0x37, 0xb9, 0x01, 0xa6, 0x78, 0x3e, 0x7a, 0xb3, 0x0e, 0xee, 0xb8, 0x77, 0x5c, 0xba, 0x4d, 0x07, 0xff, 0xad, 0x01, 0x37, 0x7a, 0xee, 0xba, 0xe1, 0x45, 0xe4, 0x52, 0xd5, 0x6d, 0xee, 0xbb, 0xde, 0xa5, 0x7d, 0xd7, 0x3f, 0xba, 0xe4, 0x1f, 0x21, 0x3c, 0xc6, 0xf6, 0xdf, 0x92, 0xf8, 0xf3, 0xcc, 0xc9, 0x36, 0xed, 0xc8, 0xf3, 0xd8, 0xcd, 0x3a, 0xd6, 0x7b, 0x93, 0x6c, 0x89, 0x9b, 0x67, 0x61, 0x98, 0x5c, 0xc9, 0x15, 0xf2, 0xd8, 0x49, 0x2b, 0x26, 0xef, 0xbf, 0x33, 0x77, 0xca, 0x62, 0x63, 0xc1, 0xec, 0x12, 0xd9, 0xb3, 0x4c, 0x48, 0xb3, 0x4b, 0xc1, 0xec, 0x55, 0xba, 0x6d, 0x29, 0xcd, 0x5e, 0x0d, 0x66, 0x97, 0xc9, 0x06, 0xa6, 0x2e, 0xcd, 0x2e, 0x07, 0xb3, 0xd7, 0xc8, 0x26, 0xfd, 0x98, 0x34, 0x7b, 0x2d, 0x98, 0xbd, 0x4e, 0xb6, 0xe6, 0x93, 0xd2, 0xec, 0xf5, 0x60, 0xf6, 0x06, 0xd9, 0x95, 0x9f, 0x94, 0x66, 0x6f, 0x04, 0xb3, 0x37, 0xc9, 0x6e, 0xbc, 0x29, 0xcd, 0xde, 0x0c, 0x66, 0x6f, 0x91, 0x57, 0x5d, 0x46, 0xa4, 0xd9, 0x5b, 0xe6, 0x2c, 0x8c, 0xd0, 0x2b, 0xbf, 0x4c, 0x1e, 0xdd, 0x4e, 0xb0, 0x69, 0x3e, 0x18, 0xce, 0x5f, 0x21, 0xaf, 0xb5, 0x0c, 0xcb, 0xf3, 0x57, 0xc2, 0xf9, 0x25, 0xf2, 0x82, 0xba, 0x21, 0xcf, 0x2f, 0x85, 0xf3, 0x57, 0xb3, 0x63, 0xe4, 0xd5, 0x1e, 0x69, 0xfe, 0x6a, 0x38, 0xbf, 0x9c, 0x1d, 0xc7, 0xc1, 0x2c, 0xcf, 0x2f, 0x87, 0xf3, 0xd7, 0xb2, 0x13, 0xe7, 0xb4, 0xf9, 0x8c, 0x3c, 0x7f, 0x2d, 0xf7, 0x8b, 0xc4, 0xbd, 0x4e, 0xe8, 0xde, 0x69, 0xd9, 0xbd, 0x81, 0x63, 0xa7, 0x65, 0xc7, 0x06, 0x2e, 0x9d, 0x96, 0x5d, 0x1a, 0x38, 0x73, 0x5a, 0x76, 0x66, 0xe0, 0xc6, 0x69, 0xd9, 0x8d, 0x81, 0x03, 0xa7, 0x65, 0x07, 0x06, 0xae, 0x9b, 0x96, 0x5d, 0x17, 0x38, 0x6d, 0x5a, 0x76, 0x5a, 0xe0, 0xae, 0x69, 0xd9, 0x5d, 0x81, 0xa3, 0xb2, 0x8a, 0xa3, 0x42, 0x17, 0x65, 0x15, 0x17, 0x85, 0xce, 0xc9, 0x2a, 0xce, 0x09, 0xdd, 0x92, 0x55, 0xdc, 0x12, 0x3a, 0x24, 0xab, 0x38, 0x24, 0x74, 0x45, 0x56, 0x71, 0x45, 0xe8, 0x04, 0x96, 0x63, 0x16, 0x6a, 0x45, 0xe4, 0x98, 0xde, 0x37, 0xc7, 0xf4, 0xbe, 0x39, 0xa6, 0xf7, 0xcd, 0x31, 0xbd, 0x6f, 0x8e, 0xe9, 0x7d, 0x73, 0x4c, 0xef, 0x9b, 0x63, 0x7a, 0xdf, 0x1c, 0xd3, 0xfb, 0xe6, 0x98, 0xde, 0x3f, 0xc7, 0xf4, 0x98, 0x1c, 0xd3, 0x63, 0x72, 0x4c, 0x8f, 0xc9, 0x31, 0x3d, 0x26, 0xc7, 0xf4, 0x98, 0x1c, 0xd3, 0x7b, 0xe6, 0x58, 0xe8, 0xde, 0x69, 0xd9, 0xbd, 0x91, 0x39, 0xa6, 0xf7, 0xc8, 0x31, 0xbd, 0x47, 0x8e, 0xe9, 0x3d, 0x72, 0x4c, 0xef, 0x91, 0x63, 0x7a, 0x8f, 0x1c, 0xd3, 0x7b, 0xe4, 0x98, 0xde, 0x23, 0xc7, 0xf4, 0x5e, 0x39, 0xa6, 0xf7, 0xcc, 0x31, 0xbd, 0x67, 0x8e, 0xe9, 0x3d, 0x73, 0x4c, 0xef, 0x99, 0x63, 0x7a, 0xcf, 0x1c, 0xd3, 0xc5, 0x1c, 0xfb, 0xd7, 0x3a, 0x98, 0x34, 0xc7, 0xb6, 0xc9, 0xcb, 0x3f, 0xcc, 0x15, 0xb3, 0x4a, 0xa6, 0x0d, 0x63, 0xd7, 0x19, 0xa1, 0x4b, 0x66, 0x95, 0x5c, 0x93, 0xe7, 0x97, 0x82, 0x79, 0x9e, 0x6d, 0xf2, 0xfc, 0xd5, 0x60, 0x9e, 0xe7, 0x9b, 0x3c, 0xbf, 0x1c, 0xcc, 0xf3, 0x8c, 0x93, 0xe7, 0xaf, 0x05, 0xf3, 0x3c, 0xe7, 0xe4, 0xf9, 0xeb, 0xc1, 0x3c, 0xcf, 0x3a, 0x79, 0xfe, 0x46, 0x30, 0xcf, 0xf3, 0x4e, 0x9e, 0xbf, 0x19, 0xcc, 0xf3, 0xcc, 0x93, 0xe7, 0x6f, 0x99, 0xe7, 0xd4, 0xdc, 0xe3, 0x02, 0x81, 0x6b, 0xcf, 0xa9, 0xd9, 0xa7, 0x48, 0x5c, 0x09, 0x25, 0x78, 0xfe, 0x29, 0x12, 0x4b, 0xa1, 0x04, 0xcf, 0x40, 0x45, 0xe2, 0x6a, 0xee, 0x33, 0xc4, 0x7d, 0x8e, 0xea, 0xbe, 0x19, 0xc5, 0x7d, 0x09, 0xc1, 0x75, 0x33, 0x8a, 0xeb, 0x12, 0x82, 0xdb, 0x66, 0x14, 0xb7, 0x25, 0x04, 0x97, 0xcd, 0x28, 0x2e, 0x4b, 0x08, 0xee, 0x9a, 0x51, 0xdc, 0x95, 0x10, 0x5c, 0x35, 0xa3, 0xb8, 0x2a, 0x21, 0xb8, 0x69, 0x46, 0x71, 0x53, 0x42, 0x70, 0xd1, 0x8c, 0xe2, 0xa2, 0x84, 0xe0, 0x9e, 0x19, 0xc5, 0x3d, 0x09, 0xc1, 0x35, 0x67, 0x55, 0xd7, 0x24, 0x44, 0xb7, 0x9c, 0x55, 0xdd, 0x92, 0x10, 0x5d, 0x72, 0x56, 0x75, 0x49, 0x42, 0x74, 0xc7, 0x59, 0xd5, 0x1d, 0x09, 0xd1, 0x15, 0x7f, 0x9a, 0xe0, 0x1d, 0xe1, 0x8e, 0xdf, 0xee, 0x54, 0xfd, 0xf7, 0xd4, 0x11, 0x5e, 0x96, 0xda, 0x87, 0xf4, 0x92, 0xb9, 0x48, 0x1a, 0x56, 0xb1, 0xe3, 0x54, 0x56, 0xb0, 0xcb, 0x52, 0x63, 0x21, 0x20, 0x9c, 0x68, 0xc4, 0xf2, 0x7b, 0xea, 0x0d, 0x2f, 0x4b, 0x6d, 0x46, 0xbc, 0x7e, 0x37, 0x3f, 0xf0, 0x8e, 0xed, 0xed, 0x04, 0xef, 0xd8, 0x98, 0xf9, 0x4f, 0xda, 0xb1, 0x2d, 0xc4, 0x9b, 0x3c, 0x30, 0xf6, 0x42, 0xbc, 0xb1, 0xbb, 0x56, 0x9d, 0x41, 0x3b, 0xb8, 0x85, 0x78, 0xd3, 0x06, 0x46, 0x7d, 0x7f, 0xfb, 0x2d, 0x16, 0xc1, 0x16, 0x6a, 0x45, 0x44, 0xf0, 0x49, 0xfb, 0xad, 0xcb, 0x52, 0x29, 0x39, 0x69, 0x04, 0xeb, 0x27, 0x8e, 0xe0, 0x93, 0x76, 0x5e, 0x97, 0xa5, 0xf2, 0x72, 0xe2, 0x08, 0xfe, 0x00, 0xfa, 0x21, 0x16, 0xc1, 0xa1, 0xf9, 0x4f, 0xda, 0x0f, 0x2d, 0xc4, 0x9b, 0x3c, 0x32, 0x82, 0xf5, 0x13, 0x44, 0xf0, 0x20, 0xfd, 0xd1, 0x42, 0xbc, 0x69, 0xa3, 0x23, 0xf8, 0x3d, 0x77, 0x33, 0x5f, 0xd2, 0x60, 0x72, 0xb3, 0x5e, 0x2b, 0x37, 0xf7, 0x51, 0xad, 0x86, 0x6a, 0xcc, 0x8e, 0x97, 0xa5, 0x4a, 0xd0, 0xc3, 0xd5, 0xdf, 0x7a, 0x67, 0x2e, 0xb4, 0xf0, 0x35, 0x48, 0x51, 0x9b, 0x5e, 0xbe, 0x9c, 0xbd, 0xaf, 0xc5, 0x54, 0xb8, 0x40, 0xd4, 0x3c, 0xcf, 0x61, 0x57, 0x2e, 0x67, 0xff, 0x93, 0x26, 0x54, 0xb9, 0x60, 0x38, 0xf7, 0x2b, 0x44, 0x43, 0xe7, 0x3d, 0x6b, 0x78, 0x69, 0x20, 0x0d, 0x05, 0xdd, 0x1e, 0xeb, 0xd2, 0x4d, 0xd0, 0xaa, 0x03, 0x13, 0x9b, 0xf5, 0xda, 0x26, 0xf9, 0x6a, 0xf4, 0x20, 0x2a, 0x51, 0x19, 0xa5, 0x1e, 0x5c, 0x96, 0xc2, 0x52, 0x44, 0x04, 0x21, 0x2d, 0xd7, 0x88, 0x5c, 0x1d, 0x9f, 0xd6, 0x91, 0x4e, 0xbb, 0xd0, 0xeb, 0xb4, 0x61, 0x65, 0x0f, 0x4e, 0xb8, 0xd0, 0xeb, 0x84, 0x61, 0x0e, 0x05, 0xa7, 0x7a, 0x9d, 0x2f, 0xce, 0xf4, 0x2d, 0x1c, 0xf3, 0x2c, 0x24, 0xd6, 0xe8, 0x1b, 0xc2, 0x99, 0x62, 0x06, 0x2b, 0xf5, 0xed, 0x77, 0xe6, 0x92, 0x7b, 0x9d, 0x7a, 0xcd, 0x4a, 0xac, 0xd5, 0xcc, 0xbb, 0x30, 0xf4, 0x49, 0xf6, 0x05, 0x3d, 0x2c, 0xb0, 0xcc, 0x04, 0x3e, 0x1a, 0xb3, 0xc5, 0x44, 0xa8, 0x17, 0xf7, 0xea, 0x8e, 0x7f, 0x65, 0xe9, 0xa6, 0x45, 0x29, 0x72, 0x7f, 0x0e, 0x80, 0x9e, 0x73, 0xc5, 0xf6, 0x8e, 0xcc, 0x4d, 0xce, 0x4c, 0x4f, 0x7d, 0xf3, 0xdb, 0xef, 0xcc, 0x2d, 0x0f, 0xc2, 0xfa, 0x4c, 0xcd, 0xf6, 0x8e, 0x9e, 0xf1, 0x8f, 0x5b, 0x68, 0xb1, 0x78, 0xec, 0x23, 0x8f, 0xb3, 0xb7, 0xf8, 0xaa, 0xc7, 0xae, 0x2b, 0x2b, 0x5c, 0x57, 0x4a, 0xba, 0xa6, 0x55, 0xf9, 0x9a, 0x2e, 0x3f, 0xec, 0xf5, 0xbc, 0xce, 0x17, 0x09, 0xc5, 0x92, 0x7a, 0x9c, 0x25, 0xf5, 0xf7, 0x6a, 0xc9, 0x16, 0xaf, 0x8f, 0xca, 0xb5, 0xea, 0xfd, 0xae, 0x55, 0x7f, 0x2f, 0xd7, 0xfa, 0xff, 0x69, 0xb6, 0x06, 0xf9, 0xb4, 0xe7, 0xd0, 0xb7, 0x13, 0x7f, 0xb6, 0xf6, 0x82, 0xde, 0xd7, 0x2e, 0x20, 0x9f, 0xbc, 0xff, 0xd6, 0x9c, 0x96, 0xfb, 0x52, 0x82, 0x5f, 0x39, 0x4d, 0xa4, 0x87, 0xbb, 0xf2, 0x9f, 0x95, 0x9e, 0xea, 0x83, 0xb0, 0xd0, 0x17, 0x35, 0x98, 0xee, 0xaa, 0xe4, 0xd4, 0x4c, 0xef, 0x6f, 0x39, 0x77, 0x4e, 0x5a, 0xce, 0x99, 0x82, 0xbf, 0xab, 0xc1, 0x69, 0xa5, 0xbc, 0x52, 0xf5, 0x2e, 0x29, 0xea, 0x3d, 0xd2, 0x7d, 0x26, 0x22, 0x28, 0x68, 0x27, 0xba, 0x57, 0x01, 0x08, 0xcc, 0x81, 0xdf, 0x97, 0x15, 0xbf, 0x9f, 0x0d, 0x00, 0x11, 0xe6, 0xe2, 0x11, 0xc0, 0xd4, 0x76, 0x21, 0xb9, 0xdb, 0x46, 0xc8, 0x9c, 0x85, 0xc4, 0x56, 0x9b, 0x69, 0x38, 0x4e, 0xf1, 0x5b, 0xed, 0x62, 0xdb, 0x76, 0xaa, 0x47, 0x56, 0x62, 0xab, 0x6d, 0x9e, 0x07, 0xbd, 0xc0, 0x7e, 0x80, 0x21, 0xbd, 0x34, 0x41, 0x05, 0x0a, 0x4e, 0x8d, 0x49, 0xe0, 0x39, 0x73, 0x16, 0x92, 0xeb, 0xc8, 0x3e, 0x60, 0x4a, 0x00, 0x95, 0xc1, 0x23, 0x16, 0x19, 0x67, 0x27, 0x7c, 0x09, 0x52, 0x9c, 0xd8, 0xbc, 0x80, 0x11, 0x07, 0x3e, 0x3b, 0x2d, 0x43, 0x60, 0x75, 0xd8, 0xca, 0x45, 0x66, 0xcd, 0x8b, 0x30, 0x64, 0xd5, 0x0f, 0x8f, 0x7c, 0x76, 0xf2, 0x6e, 0x31, 0x3a, 0x9d, 0xbb, 0x07, 0xa3, 0x81, 0x46, 0xef, 0x33, 0xf5, 0x0a, 0xbd, 0x34, 0x73, 0x46, 0x5c, 0x4f, 0xf8, 0xbe, 0x25, 0x1d, 0x32, 0xcf, 0x41, 0x6a, 0xc7, 0x6f, 0x87, 0x45, 0x9f, 0x77, 0xa4, 0xc1, 0x68, 0xee, 0x17, 0x35, 0x48, 0xad, 0x20, 0xd4, 0x22, 0x06, 0x7f, 0x12, 0x92, 0x2b, 0xee, 0x6b, 0x0e, 0x53, 0x70, 0x92, 0x59, 0x14, 0x4f, 0x33, 0x9b, 0x92, 0x69, 0xf3, 0x49, 0xd1, 0xee, 0x53, 0x81, 0xdd, 0x05, 0x39, 0x62, 0xfb, 0x9c, 0x64, 0x7b, 0xe6, 0x40, 0x2c, 0xd4, 0x65, 0xff, 0x1b, 0x90, 0x16, 0xce, 0x62, 0xce, 0x33, 0x35, 0x12, 0x2a, 0x50, 0xb4, 0x15, 0x96, 0xc8, 0x21, 0x18, 0x93, 0x4e, 0x8c, 0xa1, 0x82, 0x89, 0x7b, 0x40, 0x89, 0x99, 0x17, 0x64, 0x33, 0x47, 0x8b, 0x32, 0x53, 0x5f, 0xa6, 0x36, 0x22, 0xe6, 0xbe, 0x40, 0x83, 0xb3, 0xb7, 0x13, 0xf1, 0xe7, 0xdc, 0x10, 0xe8, 0x9b, 0xf5, 0x46, 0xee, 0x59, 0x00, 0x9a, 0xf2, 0x65, 0xa7, 0xd3, 0x54, 0xb2, 0x6e, 0x9c, 0x1b, 0x78, 0xf7, 0x08, 0xed, 0x22, 0x8f, 0x88, 0xc8, 0xfd, 0x14, 0x2e, 0x30, 0x40, 0x53, 0x8c, 0xe0, 0x9f, 0x8e, 0xc5, 0x47, 0x76, 0x62, 0x58, 0x34, 0x4b, 0x45, 0xef, 0x21, 0xbf, 0xe0, 0xb8, 0xfe, 0x11, 0x6a, 0x2b, 0x88, 0x25, 0xf3, 0xaa, 0x94, 0xb0, 0xe3, 0x4b, 0x8f, 0x05, 0x88, 0x9e, 0xa0, 0xab, 0xb9, 0xaf, 0x11, 0x05, 0x71, 0x2b, 0xd0, 0x75, 0x81, 0xfa, 0x00, 0x17, 0x68, 0x5e, 0x97, 0xfa, 0xb7, 0x3e, 0x6a, 0x2a, 0xb7, 0x96, 0xb7, 0xa4, 0xfb, 0x9c, 0xfe, 0xca, 0xca, 0xf7, 0x98, 0xdc, 0xa6, 0x5c, 0xe5, 0xa7, 0x63, 0x55, 0xee, 0xd1, 0xdd, 0x9e, 0xd4, 0xa6, 0xfa, 0xa0, 0x36, 0xfd, 0xfd, 0xa0, 0xe3, 0xa0, 0x3f, 0x26, 0x41, 0x7e, 0xbb, 0xc4, 0xfc, 0x68, 0xac, 0xef, 0xf3, 0x5a, 0x29, 0x50, 0x75, 0x79, 0x50, 0xf7, 0xe7, 0x13, 0xc5, 0x62, 0xa0, 0xee, 0x8d, 0x13, 0x84, 0x40, 0x3e, 0x51, 0x2a, 0x05, 0x65, 0x3b, 0xf5, 0x99, 0xb7, 0xe6, 0xb4, 0xaf, 0xbe, 0x35, 0x77, 0x2a, 0xf7, 0x1b, 0x1a, 0x4c, 0x32, 0x49, 0x21, 0x70, 0x9f, 0x51, 0x94, 0x3f, 0xc3, 0x6b, 0x46, 0x94, 0x05, 0x7e, 0x62, 0xc1, 0xfb, 0x4d, 0x0d, 0xb2, 0x5d, 0xba, 0x72, 0x7b, 0x5f, 0x1e, 0x48, 0xe5, 0xbc, 0x56, 0xfe, 0xe9, 0xdb, 0xfc, 0x1e, 0x0c, 0xed, 0xd6, 0x9b, 0xa8, 0x8d, 0x57, 0x02, 0xfc, 0x81, 0xaa, 0xcc, 0x1f, 0xe6, 0xd0, 0x21, 0x3e, 0x47, 0x95, 0x93, 0xe6, 0x96, 0xcc, 0x2c, 0x24, 0x57, 0x6c, 0xdf, 0x26, 0x1a, 0x64, 0x82, 0xfa, 0x6a, 0xfb, 0x76, 0xee, 0x2a, 0x64, 0x36, 0x8e, 0xc9, 0x2b, 0x34, 0x35, 0xf2, 0x7a, 0x88, 0xdc, 0xfd, 0xf1, 0x7e, 0xf5, 0xca, 0xc2, 0x50, 0xaa, 0x66, 0xdc, 0xd7, 0xf2, 0x49, 0xa2, 0xcf, 0xab, 0x30, 0xbe, 0x85, 0xd5, 0x26, 0x38, 0x02, 0x3b, 0x07, 0xda, 0x86, 0xdc, 0x08, 0x89, 0xac, 0x96, 0xb6, 0xa1, 0xb4, 0x8f, 0x7a, 0x60, 0x1e, 0xa5, 0x6d, 0xd3, 0x83, 0xb6, 0x6d, 0x21, 0x99, 0x1a, 0x37, 0x26, 0x17, 0x92, 0x29, 0x30, 0xc6, 0xd8, 0x79, 0xff, 0x83, 0x0e, 0x06, 0x6d, 0x75, 0x56, 0xd0, 0x41, 0xdd, 0xa9, 0xfb, 0xdd, 0xfd, 0x6a, 0xa0, 0xb1, 0xf9, 0x3c, 0x8c, 0x62, 0x93, 0xae, 0xb2, 0x9f, 0x30, 0xc3, 0xa6, 0x3f, 0xcf, 0x5a, 0x14, 0x85, 0x82, 0x0d, 0x90, 0xd0, 0x09, 0x31, 0xe6, 0x2a, 0xe8, 0x9b, 0x9b, 0x1b, 0x6c, 0x71, 0x5b, 0xee, 0x0b, 0x65, 0x6f, 0xe0, 0xb0, 0x23, 0x36, 0xe6, 0x1d, 0x5a, 0x98, 0xc0, 0x5c, 0x86, 0xc4, 0xe6, 0x06, 0x6b, 0x78, 0x2f, 0x0c, 0x42, 0x63, 0x25, 0x36, 0x37, 0x66, 0xfe, 0x8d, 0x06, 0x63, 0xd2, 0xa8, 0x99, 0x83, 0x0c, 0x1d, 0x10, 0x2e, 0x77, 0xd8, 0x92, 0xc6, 0xb8, 0xce, 0x89, 0xf7, 0xa8, 0xf3, 0x4c, 0x01, 0x26, 0x94, 0x71, 0x73, 0x11, 0x4c, 0x71, 0x88, 0x29, 0x41, 0x7f, 0x3e, 0x29, 0x62, 0x26, 0xf7, 0x38, 0x40, 0x68, 0xd7, 0xe0, 0x57, 0x7f, 0x36, 0xcb, 0x3b, 0xbb, 0xe5, 0x15, 0x43, 0xcb, 0x7d, 0x43, 0x83, 0x34, 0x6b, 0x5b, 0xab, 0x6e, 0x0b, 0x99, 0x45, 0xd0, 0x0a, 0x2c, 0x82, 0x1e, 0x4e, 0x6f, 0xad, 0x60, 0x5e, 0x02, 0xad, 0x38, 0xb8, 0xab, 0xb5, 0xa2, 0xb9, 0x04, 0x5a, 0x89, 0x39, 0x78, 0x30, 0xcf, 0x68, 0xa5, 0xdc, 0x1f, 0xe9, 0x30, 0x25, 0xb6, 0xd1, 0xbc, 0x9e, 0x9c, 0x97, 0xef, 0x9b, 0xf2, 0xa3, 0x57, 0x96, 0xae, 0x2e, 0x2f, 0xe2, 0x7f, 0x82, 0x90, 0xcc, 0xc9, 0xb7, 0x50, 0x79, 0x08, 0x44, 0xae, 0xf4, 0x7a, 0x4f, 0x24, 0x9f, 0x14, 0x18, 0xba, 0xde, 0x13, 0x91, 0x66, 0xbb, 0xde, 0x13, 0x91, 0x66, 0xbb, 0xde, 0x13, 0x91, 0x66, 0xbb, 0x9e, 0x05, 0x48, 0xb3, 0x5d, 0xef, 0x89, 0x48, 0xb3, 0x5d, 0xef, 0x89, 0x48, 0xb3, 0xdd, 0xef, 0x89, 0xb0, 0xe9, 0x9e, 0xef, 0x89, 0xc8, 0xf3, 0xdd, 0xef, 0x89, 0xc8, 0xf3, 0xdd, 0xef, 0x89, 0xe4, 0x93, 0x7e, 0xbb, 0x83, 0x7a, 0x3f, 0x75, 0x90, 0xf1, 0xfd, 0x6e, 0x02, 0xc3, 0x0a, 0xbc, 0x05, 0x13, 0x74, 0x43, 0xa2, 0xe4, 0x3a, 0xbe, 0x5d, 0x77, 0x50, 0xdb, 0xfc, 0x18, 0x64, 0xe8, 0x10, 0xbd, 0xcd, 0x89, 0xba, 0x0d, 0xa4, 0xf3, 0xac, 0xde, 0x4a, 0xd2, 0xb9, 0x3f, 0x4d, 0xc2, 0x34, 0x1d, 0xd8, 0xb4, 0x9b, 0x48, 0x7a, 0xcb, 0xe8, 0xa2, 0xf2, 0x4c, 0x69, 0x1c, 0xc3, 0x1f, 0xbc, 0x33, 0x47, 0x47, 0x0b, 0x41, 0x34, 0x5d, 0x54, 0x9e, 0x2e, 0xc9, 0x72, 0xe1, 0x02, 0x74, 0x51, 0x79, 0xf3, 0x48, 0x96, 0x0b, 0xd6, 0x9b, 0x40, 0x8e, 0xbf, 0x83, 0x24, 0xcb, 0xad, 0x04, 0x51, 0x76, 0x51, 0x79, 0x1b, 0x49, 0x96, 0x2b, 0x07, 0xf1, 0x76, 0x51, 0x79, 0xf6, 0x24, 0xcb, 0xad, 0x06, 0x91, 0x77, 0x51, 0x79, 0x0a, 0x25, 0xcb, 0xdd, 0x09, 0x62, 0xf0, 0xa2, 0xf2, 0xae, 0x92, 0x2c, 0xf7, 0x42, 0x10, 0x8d, 0x17, 0x95, 0xb7, 0x96, 0x64, 0xb9, 0xb5, 0x20, 0x2e, 0xe7, 0xd5, 0xf7, 0x97, 0x64, 0xc1, 0xbb, 0x61, 0x84, 0xce, 0xab, 0x6f, 0x32, 0xc9, 0x92, 0x1f, 0x0f, 0x63, 0x75, 0x5e, 0x7d, 0xa7, 0x49, 0x96, 0x5c, 0x0f, 0xa3, 0x76, 0x5e, 0x7d, 0x56, 0x26, 0x4b, 0x6e, 0x84, 0xf1, 0x3b, 0xaf, 0x3e, 0x35, 0x93, 0x25, 0x37, 0xc3, 0x48, 0x9e, 0x57, 0x9f, 0x9f, 0xc9, 0x92, 0x5b, 0xe1, 0x26, 0xfa, 0x1f, 0x28, 0xe1, 0x27, 0xbc, 0x05, 0x95, 0x53, 0xc2, 0x0f, 0x22, 0x42, 0x4f, 0x29, 0x64, 0x82, 0x4c, 0x18, 0x76, 0x39, 0x25, 0xec, 0x20, 0x22, 0xe4, 0x72, 0x4a, 0xc8, 0x41, 0x44, 0xb8, 0xe5, 0x94, 0x70, 0x83, 0x88, 0x50, 0xcb, 0x29, 0xa1, 0x06, 0x11, 0x61, 0x96, 0x53, 0xc2, 0x0c, 0x22, 0x42, 0x2c, 0xa7, 0x84, 0x18, 0x44, 0x84, 0x57, 0x4e, 0x09, 0x2f, 0x88, 0x08, 0xad, 0x0b, 0x6a, 0x68, 0x41, 0x54, 0x58, 0x5d, 0x50, 0xc3, 0x0a, 0xa2, 0x42, 0xea, 0x09, 0x35, 0xa4, 0x46, 0x1f, 0xbc, 0x33, 0x37, 0x84, 0x87, 0x84, 0x68, 0xba, 0xa0, 0x46, 0x13, 0x44, 0x45, 0xd2, 0x05, 0x35, 0x92, 0x20, 0x2a, 0x8a, 0x2e, 0xa8, 0x51, 0x04, 0x51, 0x11, 0xf4, 0xb6, 0x1a, 0x41, 0xe1, 0x3b, 0x3e, 0x39, 0xe5, 0x91, 0x62, 0x5c, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x48, 0x04, 0xe9, 0x03, 0x45, 0x90, 0xde, 0x2b, 0x82, 0x2e, 0xa8, 0x6f, 0x3c, 0x40, 0x54, 0x41, 0xba, 0xa0, 0x3e, 0xfa, 0x8c, 0x0f, 0x21, 0x7d, 0xa0, 0x10, 0xd2, 0x7b, 0x85, 0xd0, 0x1f, 0xe8, 0x30, 0x25, 0x85, 0x10, 0x7b, 0x3e, 0xf4, 0x7e, 0x55, 0xa0, 0xeb, 0x03, 0xbc, 0x60, 0x11, 0x15, 0x53, 0xd7, 0x07, 0x78, 0x48, 0xdd, 0x2f, 0xce, 0xba, 0xab, 0x50, 0x79, 0x80, 0x2a, 0xb4, 0x1a, 0xc4, 0xd0, 0xf5, 0x01, 0x5e, 0xbc, 0xe8, 0x8e, 0xbd, 0x9b, 0xfd, 0x8a, 0xc0, 0x0b, 0x03, 0x15, 0x81, 0xb5, 0x81, 0x8a, 0xc0, 0xdd, 0xd0, 0x83, 0xbf, 0x94, 0x80, 0xd3, 0xa1, 0x07, 0xe9, 0x27, 0xf2, 0x1b, 0x49, 0x39, 0xe1, 0x11, 0x95, 0xc9, 0x1f, 0xdb, 0x08, 0x6e, 0x4c, 0xac, 0xd5, 0xcc, 0x6d, 0xf9, 0x61, 0x55, 0xfe, 0xa4, 0x0f, 0x70, 0x04, 0x8f, 0xb3, 0xcd, 0xd0, 0x0b, 0xa0, 0xaf, 0xd5, 0x3c, 0x52, 0x2d, 0xa2, 0x4e, 0x5b, 0xb2, 0xf0, 0xb4, 0x69, 0xc1, 0x30, 0x11, 0xf7, 0x88, 0x7b, 0xdf, 0xcb, 0x89, 0x57, 0x2c, 0xc6, 0x94, 0x7b, 0x5b, 0x83, 0x73, 0x52, 0x28, 0xbf, 0x3f, 0x8f, 0x0c, 0x6e, 0x0f, 0xf4, 0xc8, 0x40, 0x4a, 0x90, 0xf0, 0xf1, 0xc1, 0x53, 0xdd, 0x4f, 0xaa, 0xc5, 0x2c, 0x51, 0x1f, 0x25, 0xfc, 0x45, 0x18, 0x0f, 0xaf, 0x80, 0xdc, 0xb3, 0x5d, 0x8b, 0xdf, 0xcd, 0x8c, 0x4a, 0xcd, 0x6b, 0xca, 0x2e, 0x5a, 0x5f, 0x58, 0x90, 0xad, 0xb9, 0x3c, 0x4c, 0x6c, 0xca, 0x5f, 0xe6, 0x89, 0xdb, 0x8c, 0x48, 0xe1, 0xd6, 0xfc, 0xfe, 0x97, 0xe7, 0x4e, 0xe5, 0x3e, 0x0a, 0x19, 0xf1, 0xfb, 0x3a, 0x0a, 0x70, 0x94, 0x03, 0xf3, 0xc9, 0x6f, 0x61, 0xe9, 0xbf, 0xaf, 0xc1, 0x19, 0x51, 0xfc, 0xc5, 0xba, 0x7f, 0xb4, 0xe6, 0xe0, 0x9e, 0xfe, 0x59, 0x48, 0x21, 0xe6, 0x38, 0xf6, 0x73, 0x27, 0xec, 0x3e, 0x32, 0x52, 0x7c, 0x91, 0xfc, 0x6b, 0x05, 0x10, 0x65, 0x8f, 0x83, 0x9f, 0x76, 0x69, 0xe6, 0x49, 0x18, 0xa2, 0xfc, 0xb2, 0x5e, 0x63, 0x8a, 0x5e, 0xbf, 0x1e, 0xa1, 0x17, 0x89, 0x23, 0xf3, 0xae, 0xa4, 0x97, 0x70, 0xbb, 0x1a, 0x29, 0xbe, 0xc8, 0x83, 0xaf, 0x98, 0xc2, 0xfd, 0x1f, 0x89, 0xa8, 0x78, 0x25, 0xe7, 0x21, 0x55, 0x56, 0x65, 0xa2, 0xf5, 0x5c, 0x81, 0xe4, 0xa6, 0x5b, 0x23, 0x3f, 0xc4, 0x42, 0x7e, 0xb8, 0x97, 0x19, 0x99, 0xfd, 0x8a, 0xef, 0x45, 0x48, 0x95, 0x8e, 0xea, 0x8d, 0x5a, 0x1b, 0x39, 0xec, 0x99, 0x3d, 0xdb, 0x42, 0xc7, 0x18, 0x2b, 0x98, 0xcb, 0x95, 0x60, 0x72, 0xd3, 0x75, 0x8a, 0xc7, 0xbe, 0x58, 0x37, 0x16, 0x95, 0x14, 0x61, 0xcf, 0x7c, 0xc8, 0x37, 0x40, 0xb0, 0x40, 0x71, 0xe8, 0xdb, 0xef, 0xcc, 0x69, 0xbb, 0xc1, 0xfe, 0xf9, 0x06, 0x3c, 0xc2, 0xd2, 0xa7, 0x8b, 0x6a, 0x29, 0x8e, 0x6a, 0x94, 0x3d, 0xa7, 0x16, 0xe8, 0xd6, 0x30, 0x9d, 0x13, 0x49, 0xf7, 0x70, 0x9a, 0xe1, 0xa6, 0xa8, 0xaf, 0x66, 0xfa, 0x89, 0x34, 0x8b, 0xa4, 0x5b, 0x8c, 0xa3, 0x53, 0x34, 0x7b, 0x02, 0x46, 0x83, 0x39, 0x21, 0x1a, 0xc4, 0x4c, 0x59, 0x5a, 0xc8, 0x41, 0x5a, 0x48, 0x58, 0x73, 0x08, 0xb4, 0x82, 0x71, 0x0a, 0xff, 0x57, 0x34, 0x34, 0xfc, 0x5f, 0xc9, 0x48, 0x2c, 0x3c, 0x09, 0x13, 0xca, 0xfe, 0x25, 0x9e, 0x59, 0x31, 0x00, 0xff, 0x57, 0x36, 0xd2, 0x33, 0xc9, 0xcf, 0xfc, 0xa3, 0xd9, 0x53, 0x0b, 0xb7, 0xc1, 0xec, 0xde, 0xe9, 0x34, 0x87, 0x21, 0x51, 0xc0, 0x94, 0x8f, 0x40, 0xa2, 0x58, 0x34, 0xb4, 0x99, 0x89, 0xbf, 0xf6, 0x85, 0x73, 0xe9, 0x22, 0xf9, 0x32, 0xf2, 0x3d, 0xe4, 0x17, 0x8b, 0x0c, 0xfc, 0x1c, 0x9c, 0x89, 0xdc, 0x29, 0xc5, 0xf8, 0x52, 0x89, 0xe2, 0x57, 0x56, 0xba, 0xf0, 0x2b, 0x2b, 0x04, 0xaf, 0xe5, 0xf9, 0x13, 0xe7, 0x82, 0x19, 0xb1, 0x2f, 0x99, 0xad, 0x09, 0x4f, 0xb8, 0x0b, 0xf9, 0xe7, 0x98, 0x6c, 0x31, 0x52, 0x16, 0xc5, 0x3c, 0xb1, 0x2e, 0xe6, 0x4b, 0x0c, 0x5f, 0x8a, 0xc4, 0x1f, 0x28, 0x8f, 0x55, 0xe5, 0x15, 0x82, 0x91, 0x94, 0x02, 0x85, 0x57, 0x22, 0x49, 0x8e, 0x84, 0x97, 0xdd, 0x57, 0x02, 0x85, 0xcb, 0x91, 0xb2, 0xf5, 0x98, 0x97, 0xbe, 0xca, 0xf9, 0x4b, 0x6c, 0x91, 0x2f, 0x5c, 0x31, 0xcf, 0xf0, 0x1c, 0x95, 0x2a, 0x30, 0x33, 0x10, 0x97, 0xca, 0x97, 0x18, 0xa0, 0xd8, 0x13, 0xd0, 0xdb, 0x4a, 0x1c, 0x99, 0x7f, 0x81, 0x91, 0x94, 0x7a, 0x92, 0xc4, 0x98, 0x8a, 0xc3, 0x8b, 0xbb, 0xf7, 0xdf, 0x9d, 0x3d, 0xf5, 0xad, 0x77, 0x67, 0x4f, 0xfd, 0x97, 0x77, 0x67, 0x4f, 0x7d, 0xe7, 0xdd, 0x59, 0xed, 0xfb, 0xef, 0xce, 0x6a, 0x3f, 0x7c, 0x77, 0x56, 0xfb, 0x93, 0x77, 0x67, 0xb5, 0x37, 0x1f, 0xcc, 0x6a, 0x5f, 0x7d, 0x30, 0xab, 0x7d, 0xed, 0xc1, 0xac, 0xf6, 0x7b, 0x0f, 0x66, 0xb5, 0xb7, 0x1f, 0xcc, 0x6a, 0xf7, 0x1f, 0xcc, 0x6a, 0xdf, 0x7a, 0x30, 0xab, 0x7d, 0xe7, 0xc1, 0xac, 0xf6, 0xfd, 0x07, 0xb3, 0xa7, 0x7e, 0xf8, 0x60, 0x56, 0xfb, 0x93, 0x07, 0xb3, 0xa7, 0xde, 0xfc, 0xee, 0xec, 0xa9, 0xb7, 0xbe, 0x3b, 0x7b, 0xea, 0xab, 0xdf, 0x9d, 0xd5, 0xe0, 0x3b, 0xcb, 0xf0, 0x98, 0xf2, 0x4d, 0x32, 0xd2, 0x0d, 0x5c, 0xe5, 0xbf, 0xe5, 0x14, 0x0c, 0x9c, 0xf0, 0x0b, 0x65, 0x33, 0x0f, 0xfb, 0xf5, 0xb5, 0xdc, 0xbf, 0x1d, 0x82, 0x11, 0xbe, 0x0d, 0x1c, 0xf5, 0xab, 0xd4, 0xd7, 0x20, 0x75, 0x54, 0x6f, 0xd8, 0xed, 0xba, 0x7f, 0xcc, 0xf6, 0x3f, 0x1f, 0x5d, 0x0c, 0xd5, 0xe6, 0x3b, 0xa6, 0x2f, 0x74, 0x9a, 0x6e, 0xa7, 0x6d, 0x05, 0xa2, 0xe6, 0x39, 0xc8, 0x1c, 0xa1, 0xfa, 0xe1, 0x91, 0x5f, 0xa9, 0x3b, 0x95, 0x6a, 0x93, 0xb4, 0xc9, 0x63, 0x16, 0xd0, 0xb1, 0x35, 0xa7, 0xd4, 0xc4, 0x27, 0xab, 0xd9, 0xbe, 0x4d, 0x6e, 0xcf, 0x33, 0x16, 0xf9, 0x6c, 0x9e, 0x87, 0x4c, 0x1b, 0x79, 0x9d, 0x86, 0x5f, 0xa9, 0xba, 0x1d, 0xc7, 0x27, 0x8d, 0xac, 0x6e, 0xa5, 0xe9, 0x58, 0x09, 0x0f, 0x99, 0x4f, 0xc0, 0x98, 0xdf, 0xee, 0xa0, 0x8a, 0x57, 0x75, 0x7d, 0xaf, 0x69, 0x3b, 0xa4, 0x91, 0x4d, 0x59, 0x19, 0x3c, 0xb8, 0xc3, 0xc6, 0xc8, 0xdf, 0x5c, 0xa8, 0xba, 0x6d, 0x44, 0xee, 0xa3, 0x13, 0x16, 0x3d, 0x30, 0x0d, 0xd0, 0x5f, 0x41, 0xc7, 0xe4, 0x4e, 0x2d, 0x69, 0xe1, 0x8f, 0xe6, 0xd3, 0x30, 0x4c, 0xff, 0xa0, 0x07, 0x69, 0xab, 0xc9, 0x53, 0xeb, 0xe0, 0xd2, 0xe8, 0xee, 0xac, 0xc5, 0x04, 0xcc, 0x5b, 0x30, 0xe2, 0xa3, 0x76, 0xdb, 0xae, 0x3b, 0xe4, 0xae, 0x29, 0xbd, 0x34, 0x17, 0x61, 0x86, 0x5d, 0x2a, 0x41, 0x7e, 0xd8, 0xd5, 0xe2, 0xf2, 0xe6, 0x35, 0xc8, 0x10, 0xb9, 0xa5, 0x0a, 0xfd, 0xa3, 0x27, 0xe9, 0x9e, 0x81, 0x9c, 0xa6, 0x72, 0xfc, 0x21, 0x01, 0x87, 0xd1, 0x1f, 0xb5, 0x1b, 0x23, 0xa7, 0x7d, 0x22, 0xe2, 0xb4, 0xa4, 0xe6, 0x2e, 0x91, 0x7e, 0x91, 0x9e, 0x9a, 0xf1, 0xd0, 0x9f, 0xbd, 0xdb, 0x80, 0x8c, 0xa8, 0x17, 0x37, 0x03, 0xed, 0x7b, 0x88, 0x19, 0x9e, 0x0a, 0x7f, 0x50, 0xbe, 0x87, 0x15, 0xe8, 0x7c, 0x3e, 0x71, 0x53, 0x9b, 0xd9, 0x06, 0x43, 0x3d, 0x5f, 0x04, 0xe5, 0x45, 0x99, 0xd2, 0x10, 0x2f, 0x96, 0x6c, 0x91, 0x87, 0x8c, 0xb9, 0xe7, 0x61, 0x98, 0xc6, 0x8f, 0x99, 0x86, 0x91, 0xf0, 0xf7, 0x12, 0x53, 0x90, 0xdc, 0xde, 0xdb, 0xdc, 0xa1, 0x3f, 0x7c, 0xba, 0xb3, 0x5e, 0xd8, 0xde, 0xd9, 0x5d, 0x2b, 0x7d, 0xdc, 0x48, 0x98, 0x13, 0x90, 0x2e, 0xae, 0xad, 0xaf, 0x57, 0x8a, 0x85, 0xb5, 0xf5, 0xf2, 0x3d, 0x43, 0xcf, 0xcd, 0xc2, 0x30, 0xd5, 0x93, 0xfc, 0x80, 0x5b, 0xc7, 0x71, 0x8e, 0x79, 0xdf, 0x40, 0x0e, 0x72, 0x5f, 0x37, 0x61, 0xa4, 0xd0, 0x68, 0x6c, 0xd8, 0x2d, 0xcf, 0x7c, 0x11, 0x26, 0xe9, 0x4f, 0x49, 0xec, 0xba, 0x2b, 0xe4, 0x77, 0x06, 0x71, 0x55, 0xd0, 0xd8, 0x0f, 0xe9, 0x87, 0xd7, 0xcd, 0xc4, 0x17, 0xbb, 0x64, 0xa9, 0x81, 0xbb, 0x39, 0xcc, 0x5d, 0x30, 0xf8, 0xe0, 0x6a, 0xc3, 0xb5, 0x7d, 0xcc, 0x9b, 0x60, 0x3f, 0x03, 0xd8, 0x9b, 0x97, 0x8b, 0x52, 0xda, 0x2e, 0x06, 0xf3, 0x63, 0x90, 0x5a, 0x73, 0xfc, 0xab, 0x4b, 0x98, 0x8d, 0xff, 0x91, 0x9a, 0x6e, 0x36, 0x2e, 0x42, 0x59, 0x02, 0x04, 0x43, 0x5f, 0x5f, 0xc6, 0xe8, 0x64, 0x3f, 0x34, 0x11, 0x09, 0xd1, 0xe4, 0xd0, 0x7c, 0x1e, 0x46, 0xf1, 0x6d, 0x09, 0x3d, 0xf9, 0x10, 0xef, 0x59, 0xbb, 0xe0, 0x81, 0x0c, 0xc5, 0x87, 0x18, 0x4e, 0x40, 0xcf, 0x3f, 0xdc, 0x97, 0x40, 0x50, 0x20, 0xc4, 0x60, 0x82, 0x9d, 0x40, 0x83, 0x91, 0x9e, 0x04, 0x3b, 0x8a, 0x06, 0x3b, 0xa2, 0x06, 0x3b, 0x81, 0x06, 0xa9, 0xbe, 0x04, 0xa2, 0x06, 0xc1, 0xb1, 0x59, 0x04, 0x58, 0xad, 0xbf, 0x8e, 0x6a, 0x54, 0x05, 0xfa, 0x27, 0x6c, 0x72, 0x11, 0x0c, 0xa1, 0x10, 0xa5, 0x10, 0x50, 0x66, 0x19, 0xd2, 0x3b, 0x07, 0x21, 0x09, 0x74, 0xe5, 0x71, 0xa0, 0xc6, 0x81, 0xc2, 0x22, 0xe2, 0x02, 0x55, 0xe8, 0xc5, 0xa4, 0xfb, 0xab, 0x22, 0x5c, 0x8d, 0x80, 0x0a, 0x55, 0xa1, 0x24, 0x99, 0x18, 0x55, 0x04, 0x16, 0x11, 0x87, 0x8b, 0x61, 0xd1, 0x75, 0xb1, 0x24, 0xab, 0x4a, 0x73, 0x11, 0x14, 0x4c, 0x82, 0x15, 0x43, 0x76, 0x44, 0x3c, 0x42, 0x82, 0x1c, 0x83, 0xc7, 0x7b, 0x7b, 0x84, 0xcb, 0x70, 0x8f, 0xf0, 0x63, 0x31, 0xcf, 0xc8, 0xab, 0xac, 0x98, 0x67, 0x22, 0x36, 0xcf, 0xb8, 0xa8, 0x92, 0x67, 0x7c, 0xd8, 0xfc, 0x04, 0x4c, 0xf0, 0x31, 0x5c, 0x9e, 0x30, 0xa9, 0xc1, 0xfe, 0xc8, 0x57, 0x6f, 0x52, 0x26, 0x49, 0x39, 0x55, 0xbc, 0xb9, 0x09, 0xe3, 0x7c, 0x68, 0xc3, 0x23, 0x97, 0x3b, 0xc9, 0xfe, 0x00, 0x45, 0x6f, 0x46, 0x2a, 0x48, 0x09, 0x15, 0xf4, 0xcc, 0x0a, 0x4c, 0x47, 0x57, 0x23, 0xb1, 0xfc, 0x8e, 0xd2, 0xf2, 0x7b, 0x5a, 0x2c, 0xbf, 0x9a, 0x58, 0xbe, 0x4b, 0x70, 0x26, 0xb2, 0xf6, 0xc4, 0x91, 0x24, 0x44, 0x92, 0xdb, 0x30, 0x26, 0x95, 0x1c, 0x11, 0x3c, 0x14, 0x01, 0x1e, 0xea, 0x06, 0x87, 0xa1, 0x15, 0xb1, 0x7a, 0x48, 0x60, 0x5d, 0x04, 0x7f, 0x0c, 0xc6, 0xe5, 0x7a, 0x23, 0xa2, 0xc7, 0x22, 0xd0, 0x63, 0x11, 0xe8, 0xe8, 0x73, 0x27, 0x23, 0xd0, 0x49, 0x05, 0xbd, 0xd3, 0xf3, 0xdc, 0x93, 0x11, 0xe8, 0xc9, 0x08, 0x74, 0xf4, 0xb9, 0xcd, 0x08, 0xb4, 0x29, 0xa2, 0x9f, 0x85, 0x09, 0xa5, 0xc4, 0x88, 0xf0, 0x91, 0x08, 0xf8, 0x88, 0x08, 0x7f, 0x0e, 0x0c, 0xb5, 0xb8, 0x88, 0xf8, 0x89, 0x08, 0xfc, 0x44, 0xd4, 0xe9, 0xa3, 0xb5, 0x1f, 0x8e, 0x80, 0x0f, 0x47, 0x9e, 0x3e, 0x1a, 0x6f, 0x44, 0xe0, 0x0d, 0x11, 0x9f, 0x87, 0x8c, 0x58, 0x4d, 0x44, 0x6c, 0x2a, 0x02, 0x9b, 0x52, 0xed, 0x2e, 0x15, 0x93, 0xb8, 0x48, 0x1f, 0xed, 0x91, 0x2e, 0x52, 0x09, 0x89, 0x23, 0xc9, 0x88, 0x24, 0x9f, 0x84, 0xd3, 0x51, 0x25, 0x23, 0x82, 0x63, 0x5e, 0xe4, 0x18, 0xc7, 0x3d, 0x62, 0xd8, 0xec, 0xd9, 0x2d, 0xa5, 0x71, 0x9a, 0xf9, 0x14, 0x4c, 0x45, 0x14, 0x8e, 0x08, 0xda, 0x45, 0xb9, 0x1b, 0xcb, 0x0a, 0xb4, 0xa4, 0x08, 0xd4, 0x9d, 0xc3, 0x6d, 0xb7, 0xee, 0xf8, 0x62, 0x57, 0xf6, 0x8d, 0x29, 0x18, 0x67, 0xe5, 0x69, 0xab, 0x5d, 0x43, 0x6d, 0x54, 0x33, 0xff, 0x7c, 0xef, 0xde, 0xe9, 0x72, 0x77, 0x51, 0x63, 0xa8, 0x13, 0xb4, 0x50, 0x9f, 0xea, 0xd9, 0x42, 0x5d, 0x8a, 0xa7, 0x8f, 0xeb, 0xa4, 0x4a, 0x5d, 0x9d, 0xd4, 0x53, 0xbd, 0x49, 0x7b, 0x35, 0x54, 0xa5, 0xae, 0x86, 0xaa, 0x3f, 0x49, 0x64, 0x5f, 0xb5, 0xda, 0xdd, 0x57, 0xcd, 0xf7, 0x66, 0xe9, 0xdd, 0x5e, 0xad, 0x76, 0xb7, 0x57, 0x31, 0x3c, 0xd1, 0x5d, 0xd6, 0x6a, 0x77, 0x97, 0xd5, 0x87, 0xa7, 0x77, 0xb3, 0xb5, 0xda, 0xdd, 0x6c, 0xc5, 0xf0, 0x44, 0xf7, 0x5c, 0x6b, 0x11, 0x3d, 0xd7, 0xd3, 0xbd, 0x89, 0xfa, 0xb5, 0x5e, 0xeb, 0x51, 0xad, 0xd7, 0x42, 0x1f, 0xa5, 0xfa, 0x76, 0x60, 0x6b, 0x11, 0x1d, 0x58, 0x9c, 0x62, 0x3d, 0x1a, 0xb1, 0xf5, 0xa8, 0x46, 0x2c, 0x56, 0xb1, 0x5e, 0xfd, 0xd8, 0xcf, 0xa9, 0xfd, 0xd8, 0xc5, 0xde, 0x4c, 0xd1, 0x6d, 0xd9, 0x6a, 0x77, 0x5b, 0x36, 0x1f, 0x97, 0x73, 0x51, 0xdd, 0xd9, 0xa7, 0x7a, 0x76, 0x67, 0x03, 0xa4, 0x70, 0x5c, 0x93, 0xf6, 0x52, 0xaf, 0x26, 0x6d, 0x31, 0x9e, 0xbb, 0x7f, 0xaf, 0xb6, 0xd7, 0xa3, 0x57, 0x7b, 0x26, 0x9e, 0xf8, 0xc3, 0x96, 0xed, 0xc3, 0x96, 0xed, 0xc3, 0x96, 0xed, 0xc3, 0x96, 0xed, 0xa7, 0xdf, 0xb2, 0xe5, 0x93, 0x9f, 0xfd, 0xf2, 0x9c, 0x96, 0xfb, 0xcf, 0x7a, 0xf0, 0x37, 0xb3, 0x5e, 0xac, 0xfb, 0x47, 0xb8, 0xbc, 0x6d, 0x40, 0x86, 0xfc, 0xb5, 0x8b, 0xa6, 0xdd, 0x6a, 0xd5, 0x9d, 0x43, 0xd6, 0xb3, 0x2d, 0x74, 0x6f, 0x25, 0x32, 0x00, 0xf9, 0x7b, 0x21, 0x1b, 0x54, 0x98, 0x2d, 0x37, 0x4e, 0x38, 0x62, 0xde, 0x85, 0x74, 0xd3, 0x3b, 0x0c, 0xd8, 0x12, 0x5d, 0x0b, 0xa1, 0xc2, 0x46, 0xaf, 0x34, 0x24, 0x83, 0x66, 0x30, 0x80, 0x55, 0xdb, 0x3f, 0xf6, 0x43, 0xd5, 0xf4, 0x38, 0xd5, 0xb0, 0x4f, 0x65, 0xd5, 0xf6, 0xc3, 0x11, 0x1c, 0xb6, 0xaa, 0xee, 0x71, 0x95, 0x4e, 0x0a, 0x9e, 0x17, 0x61, 0x42, 0xd1, 0x36, 0x22, 0xe7, 0x1f, 0xc2, 0x37, 0x58, 0x31, 0x55, 0xf3, 0xb8, 0x9c, 0x10, 0x03, 0x32, 0xf7, 0x38, 0x8c, 0x49, 0xdc, 0x66, 0x06, 0xb4, 0x03, 0xf6, 0x3d, 0x4a, 0xed, 0x20, 0xf7, 0x25, 0x0d, 0xd2, 0xec, 0x1d, 0x82, 0x6d, 0xbb, 0xde, 0x36, 0x5f, 0x80, 0x64, 0x83, 0x7f, 0x97, 0xe9, 0x61, 0xbf, 0x37, 0x4b, 0x18, 0xcc, 0x55, 0x18, 0x6a, 0x07, 0xdf, 0x75, 0x7a, 0xa8, 0x2f, 0xc3, 0x12, 0x78, 0xee, 0xbe, 0x06, 0x93, 0xec, 0x15, 0x57, 0x8f, 0xbd, 0xf9, 0x6c, 0xb7, 0x66, 0xbe, 0xae, 0xc1, 0x68, 0x70, 0x64, 0xee, 0xc3, 0x78, 0x70, 0x40, 0xdf, 0xae, 0xa7, 0x91, 0x9a, 0x17, 0x2c, 0xdc, 0xc5, 0xb1, 0x18, 0xf1, 0x89, 0x3e, 0x85, 0xa2, 0x6b, 0xb2, 0x3c, 0x38, 0x53, 0x80, 0xa9, 0x08, 0xb1, 0x93, 0x2c, 0xc8, 0xb9, 0xf3, 0x30, 0xba, 0xe9, 0xfa, 0xf4, 0x27, 0x73, 0xcc, 0xd3, 0xc2, 0x53, 0x85, 0x62, 0xc2, 0x38, 0x45, 0xc0, 0x0b, 0xe7, 0x61, 0x84, 0x65, 0xbf, 0x39, 0x0c, 0x89, 0x8d, 0x82, 0x71, 0x8a, 0xfc, 0x5f, 0x34, 0x34, 0xf2, 0x7f, 0xc9, 0x48, 0x14, 0xd7, 0xdf, 0xcf, 0x47, 0x4c, 0xfb, 0xc3, 0xd4, 0x3c, 0x7f, 0x16, 0x00, 0x00, 0xff, 0xff, 0xa7, 0xc9, 0x6c, 0x3e, 0x6f, 0x80, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x MapEnum) String() string { s, ok := MapEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x Message_Humour) String() string { s, ok := Message_Humour_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *Message) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Message") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Message but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Message but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Hilarity != that1.Hilarity { return fmt.Errorf("Hilarity this(%v) Not Equal that(%v)", this.Hilarity, that1.Hilarity) } if this.HeightInCm != that1.HeightInCm { return fmt.Errorf("HeightInCm this(%v) Not Equal that(%v)", this.HeightInCm, that1.HeightInCm) } if !bytes.Equal(this.Data, that1.Data) { return fmt.Errorf("Data this(%v) Not Equal that(%v)", this.Data, that1.Data) } if this.ResultCount != that1.ResultCount { return fmt.Errorf("ResultCount this(%v) Not Equal that(%v)", this.ResultCount, that1.ResultCount) } if this.TrueScotsman != that1.TrueScotsman { return fmt.Errorf("TrueScotsman this(%v) Not Equal that(%v)", this.TrueScotsman, that1.TrueScotsman) } if this.Score != that1.Score { return fmt.Errorf("Score this(%v) Not Equal that(%v)", this.Score, that1.Score) } if len(this.Key) != len(that1.Key) { return fmt.Errorf("Key this(%v) Not Equal that(%v)", len(this.Key), len(that1.Key)) } for i := range this.Key { if this.Key[i] != that1.Key[i] { return fmt.Errorf("Key this[%v](%v) Not Equal that[%v](%v)", i, this.Key[i], i, that1.Key[i]) } } if !this.Nested.Equal(that1.Nested) { return fmt.Errorf("Nested this(%v) Not Equal that(%v)", this.Nested, that1.Nested) } if len(this.Terrain) != len(that1.Terrain) { return fmt.Errorf("Terrain this(%v) Not Equal that(%v)", len(this.Terrain), len(that1.Terrain)) } for i := range this.Terrain { if !this.Terrain[i].Equal(that1.Terrain[i]) { return fmt.Errorf("Terrain this[%v](%v) Not Equal that[%v](%v)", i, this.Terrain[i], i, that1.Terrain[i]) } } if !this.Proto2Field.Equal(that1.Proto2Field) { return fmt.Errorf("Proto2Field this(%v) Not Equal that(%v)", this.Proto2Field, that1.Proto2Field) } if len(this.Proto2Value) != len(that1.Proto2Value) { return fmt.Errorf("Proto2Value this(%v) Not Equal that(%v)", len(this.Proto2Value), len(that1.Proto2Value)) } for i := range this.Proto2Value { if !this.Proto2Value[i].Equal(that1.Proto2Value[i]) { return fmt.Errorf("Proto2Value this[%v](%v) Not Equal that[%v](%v)", i, this.Proto2Value[i], i, that1.Proto2Value[i]) } } return nil } func (this *Message) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Hilarity != that1.Hilarity { return false } if this.HeightInCm != that1.HeightInCm { return false } if !bytes.Equal(this.Data, that1.Data) { return false } if this.ResultCount != that1.ResultCount { return false } if this.TrueScotsman != that1.TrueScotsman { return false } if this.Score != that1.Score { return false } if len(this.Key) != len(that1.Key) { return false } for i := range this.Key { if this.Key[i] != that1.Key[i] { return false } } if !this.Nested.Equal(that1.Nested) { return false } if len(this.Terrain) != len(that1.Terrain) { return false } for i := range this.Terrain { if !this.Terrain[i].Equal(that1.Terrain[i]) { return false } } if !this.Proto2Field.Equal(that1.Proto2Field) { return false } if len(this.Proto2Value) != len(that1.Proto2Value) { return false } for i := range this.Proto2Value { if !this.Proto2Value[i].Equal(that1.Proto2Value[i]) { return false } } return true } func (this *Nested) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Nested) if !ok { that2, ok := that.(Nested) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Nested") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Nested but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Nested but is not nil && this == nil") } if this.Bunny != that1.Bunny { return fmt.Errorf("Bunny this(%v) Not Equal that(%v)", this.Bunny, that1.Bunny) } return nil } func (this *Nested) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Nested) if !ok { that2, ok := that.(Nested) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Bunny != that1.Bunny { return false } return true } func (this *AllMaps) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMaps") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMaps but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMaps but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } return nil } func (this *AllMaps) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } return true } func (this *AllMapsOrdered) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMapsOrdered") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMapsOrdered but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMapsOrdered but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } return nil } func (this *AllMapsOrdered) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } return true } func (this *MessageWithMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MessageWithMap) if !ok { that2, ok := that.(MessageWithMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MessageWithMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MessageWithMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MessageWithMap but is not nil && this == nil") } if len(this.NameMapping) != len(that1.NameMapping) { return fmt.Errorf("NameMapping this(%v) Not Equal that(%v)", len(this.NameMapping), len(that1.NameMapping)) } for i := range this.NameMapping { if this.NameMapping[i] != that1.NameMapping[i] { return fmt.Errorf("NameMapping this[%v](%v) Not Equal that[%v](%v)", i, this.NameMapping[i], i, that1.NameMapping[i]) } } if len(this.MsgMapping) != len(that1.MsgMapping) { return fmt.Errorf("MsgMapping this(%v) Not Equal that(%v)", len(this.MsgMapping), len(that1.MsgMapping)) } for i := range this.MsgMapping { if !this.MsgMapping[i].Equal(that1.MsgMapping[i]) { return fmt.Errorf("MsgMapping this[%v](%v) Not Equal that[%v](%v)", i, this.MsgMapping[i], i, that1.MsgMapping[i]) } } if len(this.ByteMapping) != len(that1.ByteMapping) { return fmt.Errorf("ByteMapping this(%v) Not Equal that(%v)", len(this.ByteMapping), len(that1.ByteMapping)) } for i := range this.ByteMapping { if !bytes.Equal(this.ByteMapping[i], that1.ByteMapping[i]) { return fmt.Errorf("ByteMapping this[%v](%v) Not Equal that[%v](%v)", i, this.ByteMapping[i], i, that1.ByteMapping[i]) } } return nil } func (this *MessageWithMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MessageWithMap) if !ok { that2, ok := that.(MessageWithMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NameMapping) != len(that1.NameMapping) { return false } for i := range this.NameMapping { if this.NameMapping[i] != that1.NameMapping[i] { return false } } if len(this.MsgMapping) != len(that1.MsgMapping) { return false } for i := range this.MsgMapping { if !this.MsgMapping[i].Equal(that1.MsgMapping[i]) { return false } } if len(this.ByteMapping) != len(that1.ByteMapping) { return false } for i := range this.ByteMapping { if !bytes.Equal(this.ByteMapping[i], that1.ByteMapping[i]) { return false } } return true } func (this *FloatingPoint) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FloatingPoint") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FloatingPoint but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FloatingPoint but is not nil && this == nil") } if this.F != that1.F { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } return nil } func (this *FloatingPoint) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.F != that1.F { return false } return true } func (this *Uint128Pair) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Uint128Pair) if !ok { that2, ok := that.(Uint128Pair) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Uint128Pair") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Uint128Pair but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Uint128Pair but is not nil && this == nil") } if !this.Left.Equal(that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if that1.Right == nil { if this.Right != nil { return fmt.Errorf("this.Right != nil && that1.Right == nil") } } else if !this.Right.Equal(*that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } return nil } func (this *Uint128Pair) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Uint128Pair) if !ok { that2, ok := that.(Uint128Pair) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(that1.Left) { return false } if that1.Right == nil { if this.Right != nil { return false } } else if !this.Right.Equal(*that1.Right) { return false } return true } func (this *ContainsNestedMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ContainsNestedMap) if !ok { that2, ok := that.(ContainsNestedMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ContainsNestedMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ContainsNestedMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ContainsNestedMap but is not nil && this == nil") } return nil } func (this *ContainsNestedMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ContainsNestedMap) if !ok { that2, ok := that.(ContainsNestedMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } return true } func (this *ContainsNestedMap_NestedMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ContainsNestedMap_NestedMap) if !ok { that2, ok := that.(ContainsNestedMap_NestedMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ContainsNestedMap_NestedMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ContainsNestedMap_NestedMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ContainsNestedMap_NestedMap but is not nil && this == nil") } if len(this.NestedMapField) != len(that1.NestedMapField) { return fmt.Errorf("NestedMapField this(%v) Not Equal that(%v)", len(this.NestedMapField), len(that1.NestedMapField)) } for i := range this.NestedMapField { if this.NestedMapField[i] != that1.NestedMapField[i] { return fmt.Errorf("NestedMapField this[%v](%v) Not Equal that[%v](%v)", i, this.NestedMapField[i], i, that1.NestedMapField[i]) } } return nil } func (this *ContainsNestedMap_NestedMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ContainsNestedMap_NestedMap) if !ok { that2, ok := that.(ContainsNestedMap_NestedMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NestedMapField) != len(that1.NestedMapField) { return false } for i := range this.NestedMapField { if this.NestedMapField[i] != that1.NestedMapField[i] { return false } } return true } func (this *NotPacked) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NotPacked) if !ok { that2, ok := that.(NotPacked) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NotPacked") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NotPacked but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NotPacked but is not nil && this == nil") } if len(this.Key) != len(that1.Key) { return fmt.Errorf("Key this(%v) Not Equal that(%v)", len(this.Key), len(that1.Key)) } for i := range this.Key { if this.Key[i] != that1.Key[i] { return fmt.Errorf("Key this[%v](%v) Not Equal that[%v](%v)", i, this.Key[i], i, that1.Key[i]) } } return nil } func (this *NotPacked) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NotPacked) if !ok { that2, ok := that.(NotPacked) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Key) != len(that1.Key) { return false } for i := range this.Key { if this.Key[i] != that1.Key[i] { return false } } return true } type MessageFace interface { Proto() github_com_gogo_protobuf_proto.Message GetName() string GetHilarity() Message_Humour GetHeightInCm() uint32 GetData() []byte GetResultCount() int64 GetTrueScotsman() bool GetScore() float32 GetKey() []uint64 GetNested() *Nested GetTerrain() map[int64]*Nested GetProto2Field() *test.NinOptNative GetProto2Value() map[int64]*test.NinOptEnum } func (this *Message) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Message) TestProto() github_com_gogo_protobuf_proto.Message { return NewMessageFromFace(this) } func (this *Message) GetName() string { return this.Name } func (this *Message) GetHilarity() Message_Humour { return this.Hilarity } func (this *Message) GetHeightInCm() uint32 { return this.HeightInCm } func (this *Message) GetData() []byte { return this.Data } func (this *Message) GetResultCount() int64 { return this.ResultCount } func (this *Message) GetTrueScotsman() bool { return this.TrueScotsman } func (this *Message) GetScore() float32 { return this.Score } func (this *Message) GetKey() []uint64 { return this.Key } func (this *Message) GetNested() *Nested { return this.Nested } func (this *Message) GetTerrain() map[int64]*Nested { return this.Terrain } func (this *Message) GetProto2Field() *test.NinOptNative { return this.Proto2Field } func (this *Message) GetProto2Value() map[int64]*test.NinOptEnum { return this.Proto2Value } func NewMessageFromFace(that MessageFace) *Message { this := &Message{} this.Name = that.GetName() this.Hilarity = that.GetHilarity() this.HeightInCm = that.GetHeightInCm() this.Data = that.GetData() this.ResultCount = that.GetResultCount() this.TrueScotsman = that.GetTrueScotsman() this.Score = that.GetScore() this.Key = that.GetKey() this.Nested = that.GetNested() this.Terrain = that.GetTerrain() this.Proto2Field = that.GetProto2Field() this.Proto2Value = that.GetProto2Value() return this } type NestedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetBunny() string } func (this *Nested) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Nested) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedFromFace(this) } func (this *Nested) GetBunny() string { return this.Bunny } func NewNestedFromFace(that NestedFace) *Nested { this := &Nested{} this.Bunny = that.GetBunny() return this } type AllMapsFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMaps) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMaps) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsFromFace(this) } func (this *AllMaps) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMaps) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMaps) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMaps) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMaps) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMaps) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMaps) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMaps) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMaps) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMaps) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMaps) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMaps) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMaps) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMaps) GetStringMap() map[string]string { return this.StringMap } func (this *AllMaps) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMaps) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMaps) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsFromFace(that AllMapsFace) *AllMaps { this := &AllMaps{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type AllMapsOrderedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMapsOrdered) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMapsOrdered) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsOrderedFromFace(this) } func (this *AllMapsOrdered) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMapsOrdered) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMapsOrdered) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMapsOrdered) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMapsOrdered) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMapsOrdered) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMapsOrdered) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMapsOrdered) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMapsOrdered) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMapsOrdered) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMapsOrdered) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMapsOrdered) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMapsOrdered) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMapsOrdered) GetStringMap() map[string]string { return this.StringMap } func (this *AllMapsOrdered) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMapsOrdered) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMapsOrdered) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsOrderedFromFace(that AllMapsOrderedFace) *AllMapsOrdered { this := &AllMapsOrdered{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type MessageWithMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNameMapping() map[int32]string GetMsgMapping() map[int64]*FloatingPoint GetByteMapping() map[bool][]byte } func (this *MessageWithMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *MessageWithMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewMessageWithMapFromFace(this) } func (this *MessageWithMap) GetNameMapping() map[int32]string { return this.NameMapping } func (this *MessageWithMap) GetMsgMapping() map[int64]*FloatingPoint { return this.MsgMapping } func (this *MessageWithMap) GetByteMapping() map[bool][]byte { return this.ByteMapping } func NewMessageWithMapFromFace(that MessageWithMapFace) *MessageWithMap { this := &MessageWithMap{} this.NameMapping = that.GetNameMapping() this.MsgMapping = that.GetMsgMapping() this.ByteMapping = that.GetByteMapping() return this } type FloatingPointFace interface { Proto() github_com_gogo_protobuf_proto.Message GetF() float64 } func (this *FloatingPoint) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *FloatingPoint) TestProto() github_com_gogo_protobuf_proto.Message { return NewFloatingPointFromFace(this) } func (this *FloatingPoint) GetF() float64 { return this.F } func NewFloatingPointFromFace(that FloatingPointFace) *FloatingPoint { this := &FloatingPoint{} this.F = that.GetF() return this } type Uint128PairFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() github_com_gogo_protobuf_test_custom.Uint128 GetRight() *github_com_gogo_protobuf_test_custom.Uint128 } func (this *Uint128Pair) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Uint128Pair) TestProto() github_com_gogo_protobuf_proto.Message { return NewUint128PairFromFace(this) } func (this *Uint128Pair) GetLeft() github_com_gogo_protobuf_test_custom.Uint128 { return this.Left } func (this *Uint128Pair) GetRight() *github_com_gogo_protobuf_test_custom.Uint128 { return this.Right } func NewUint128PairFromFace(that Uint128PairFace) *Uint128Pair { this := &Uint128Pair{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type ContainsNestedMapFace interface { Proto() github_com_gogo_protobuf_proto.Message } func (this *ContainsNestedMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ContainsNestedMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewContainsNestedMapFromFace(this) } func NewContainsNestedMapFromFace(that ContainsNestedMapFace) *ContainsNestedMap { this := &ContainsNestedMap{} return this } type ContainsNestedMap_NestedMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedMapField() map[string]float64 } func (this *ContainsNestedMap_NestedMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ContainsNestedMap_NestedMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewContainsNestedMap_NestedMapFromFace(this) } func (this *ContainsNestedMap_NestedMap) GetNestedMapField() map[string]float64 { return this.NestedMapField } func NewContainsNestedMap_NestedMapFromFace(that ContainsNestedMap_NestedMapFace) *ContainsNestedMap_NestedMap { this := &ContainsNestedMap_NestedMap{} this.NestedMapField = that.GetNestedMapField() return this } type NotPackedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetKey() []uint64 } func (this *NotPacked) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NotPacked) TestProto() github_com_gogo_protobuf_proto.Message { return NewNotPackedFromFace(this) } func (this *NotPacked) GetKey() []uint64 { return this.Key } func NewNotPackedFromFace(that NotPackedFace) *NotPacked { this := &NotPacked{} this.Key = that.GetKey() return this } func (this *Message) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 16) s = append(s, "&theproto3.Message{") s = append(s, "Name: "+fmt.Sprintf("%#v", this.Name)+",\n") s = append(s, "Hilarity: "+fmt.Sprintf("%#v", this.Hilarity)+",\n") s = append(s, "HeightInCm: "+fmt.Sprintf("%#v", this.HeightInCm)+",\n") s = append(s, "Data: "+fmt.Sprintf("%#v", this.Data)+",\n") s = append(s, "ResultCount: "+fmt.Sprintf("%#v", this.ResultCount)+",\n") s = append(s, "TrueScotsman: "+fmt.Sprintf("%#v", this.TrueScotsman)+",\n") s = append(s, "Score: "+fmt.Sprintf("%#v", this.Score)+",\n") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") if this.Nested != nil { s = append(s, "Nested: "+fmt.Sprintf("%#v", this.Nested)+",\n") } keysForTerrain := make([]int64, 0, len(this.Terrain)) for k := range this.Terrain { keysForTerrain = append(keysForTerrain, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForTerrain) mapStringForTerrain := "map[int64]*Nested{" for _, k := range keysForTerrain { mapStringForTerrain += fmt.Sprintf("%#v: %#v,", k, this.Terrain[k]) } mapStringForTerrain += "}" if this.Terrain != nil { s = append(s, "Terrain: "+mapStringForTerrain+",\n") } if this.Proto2Field != nil { s = append(s, "Proto2Field: "+fmt.Sprintf("%#v", this.Proto2Field)+",\n") } keysForProto2Value := make([]int64, 0, len(this.Proto2Value)) for k := range this.Proto2Value { keysForProto2Value = append(keysForProto2Value, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForProto2Value) mapStringForProto2Value := "map[int64]*test.NinOptEnum{" for _, k := range keysForProto2Value { mapStringForProto2Value += fmt.Sprintf("%#v: %#v,", k, this.Proto2Value[k]) } mapStringForProto2Value += "}" if this.Proto2Value != nil { s = append(s, "Proto2Value: "+mapStringForProto2Value+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Nested) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.Nested{") s = append(s, "Bunny: "+fmt.Sprintf("%#v", this.Bunny)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *AllMaps) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&theproto3.AllMaps{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMapsOrdered) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&theproto3.AllMapsOrdered{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MessageWithMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&theproto3.MessageWithMap{") keysForNameMapping := make([]int32, 0, len(this.NameMapping)) for k := range this.NameMapping { keysForNameMapping = append(keysForNameMapping, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNameMapping) mapStringForNameMapping := "map[int32]string{" for _, k := range keysForNameMapping { mapStringForNameMapping += fmt.Sprintf("%#v: %#v,", k, this.NameMapping[k]) } mapStringForNameMapping += "}" if this.NameMapping != nil { s = append(s, "NameMapping: "+mapStringForNameMapping+",\n") } keysForMsgMapping := make([]int64, 0, len(this.MsgMapping)) for k := range this.MsgMapping { keysForMsgMapping = append(keysForMsgMapping, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForMsgMapping) mapStringForMsgMapping := "map[int64]*FloatingPoint{" for _, k := range keysForMsgMapping { mapStringForMsgMapping += fmt.Sprintf("%#v: %#v,", k, this.MsgMapping[k]) } mapStringForMsgMapping += "}" if this.MsgMapping != nil { s = append(s, "MsgMapping: "+mapStringForMsgMapping+",\n") } keysForByteMapping := make([]bool, 0, len(this.ByteMapping)) for k := range this.ByteMapping { keysForByteMapping = append(keysForByteMapping, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForByteMapping) mapStringForByteMapping := "map[bool][]byte{" for _, k := range keysForByteMapping { mapStringForByteMapping += fmt.Sprintf("%#v: %#v,", k, this.ByteMapping[k]) } mapStringForByteMapping += "}" if this.ByteMapping != nil { s = append(s, "ByteMapping: "+mapStringForByteMapping+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FloatingPoint) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.FloatingPoint{") s = append(s, "F: "+fmt.Sprintf("%#v", this.F)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *Uint128Pair) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&theproto3.Uint128Pair{") s = append(s, "Left: "+fmt.Sprintf("%#v", this.Left)+",\n") s = append(s, "Right: "+fmt.Sprintf("%#v", this.Right)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *ContainsNestedMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&theproto3.ContainsNestedMap{") s = append(s, "}") return strings.Join(s, "") } func (this *ContainsNestedMap_NestedMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.ContainsNestedMap_NestedMap{") keysForNestedMapField := make([]string, 0, len(this.NestedMapField)) for k := range this.NestedMapField { keysForNestedMapField = append(keysForNestedMapField, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNestedMapField) mapStringForNestedMapField := "map[string]float64{" for _, k := range keysForNestedMapField { mapStringForNestedMapField += fmt.Sprintf("%#v: %#v,", k, this.NestedMapField[k]) } mapStringForNestedMapField += "}" if this.NestedMapField != nil { s = append(s, "NestedMapField: "+mapStringForNestedMapField+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NotPacked) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.NotPacked{") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringTheproto3(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Message) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Message) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Name) > 0 { dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(m.Name))) i += copy(dAtA[i:], m.Name) } if m.Hilarity != 0 { dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Hilarity)) } if m.HeightInCm != 0 { dAtA[i] = 0x18 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.HeightInCm)) } if len(m.Data) > 0 { dAtA[i] = 0x22 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(m.Data))) i += copy(dAtA[i:], m.Data) } if len(m.Key) > 0 { dAtA2 := make([]byte, len(m.Key)*10) var j1 int for _, num := range m.Key { for num >= 1<<7 { dAtA2[j1] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j1++ } dAtA2[j1] = uint8(num) j1++ } dAtA[i] = 0x2a i++ i = encodeVarintTheproto3(dAtA, i, uint64(j1)) i += copy(dAtA[i:], dAtA2[:j1]) } if m.Nested != nil { dAtA[i] = 0x32 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Nested.Size())) n3, err := m.Nested.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 } if m.ResultCount != 0 { dAtA[i] = 0x38 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.ResultCount)) } if m.TrueScotsman { dAtA[i] = 0x40 i++ if m.TrueScotsman { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Score != 0 { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Score)))) i += 4 } if len(m.Terrain) > 0 { for k := range m.Terrain { dAtA[i] = 0x52 i++ v := m.Terrain[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + sovTheproto3(uint64(k)) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n4, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n4 } } } if m.Proto2Field != nil { dAtA[i] = 0x5a i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Proto2Field.Size())) n5, err := m.Proto2Field.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n5 } if len(m.Proto2Value) > 0 { for k := range m.Proto2Value { dAtA[i] = 0x6a i++ v := m.Proto2Value[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + sovTheproto3(uint64(k)) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n6, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n6 } } } return i, nil } func (m *Nested) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Nested) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Bunny) > 0 { dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(m.Bunny))) i += copy(dAtA[i:], m.Bunny) } return i, nil } func (m *AllMaps) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllMaps) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StringToDoubleMap) > 0 { for k := range m.StringToDoubleMap { dAtA[i] = 0xa i++ v := m.StringToDoubleMap[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } if len(m.StringToFloatMap) > 0 { for k := range m.StringToFloatMap { dAtA[i] = 0x12 i++ v := m.StringToFloatMap[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(v)))) i += 4 } } if len(m.Int32Map) > 0 { for k := range m.Int32Map { dAtA[i] = 0x1a i++ v := m.Int32Map[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Int64Map) > 0 { for k := range m.Int64Map { dAtA[i] = 0x22 i++ v := m.Int64Map[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Uint32Map) > 0 { for k := range m.Uint32Map { dAtA[i] = 0x2a i++ v := m.Uint32Map[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Uint64Map) > 0 { for k := range m.Uint64Map { dAtA[i] = 0x32 i++ v := m.Uint64Map[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Sint32Map) > 0 { for k := range m.Sint32Map { dAtA[i] = 0x3a i++ v := m.Sint32Map[k] mapSize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint32(k)<<1)^uint32((k>>31)))) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint32(v)<<1)^uint32((v>>31)))) } } if len(m.Sint64Map) > 0 { for k := range m.Sint64Map { dAtA[i] = 0x42 i++ v := m.Sint64Map[k] mapSize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(v)<<1)^uint64((v>>63)))) } } if len(m.Fixed32Map) > 0 { for k := range m.Fixed32Map { dAtA[i] = 0x4a i++ v := m.Fixed32Map[k] mapSize := 1 + 4 + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Sfixed32Map) > 0 { for k := range m.Sfixed32Map { dAtA[i] = 0x52 i++ v := m.Sfixed32Map[k] mapSize := 1 + 4 + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Fixed64Map) > 0 { for k := range m.Fixed64Map { dAtA[i] = 0x5a i++ v := m.Fixed64Map[k] mapSize := 1 + 8 + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.Sfixed64Map) > 0 { for k := range m.Sfixed64Map { dAtA[i] = 0x62 i++ v := m.Sfixed64Map[k] mapSize := 1 + 8 + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.BoolMap) > 0 { for k := range m.BoolMap { dAtA[i] = 0x6a i++ v := m.BoolMap[k] mapSize := 1 + 1 + 1 + 1 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x10 i++ if v { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.StringMap) > 0 { for k := range m.StringMap { dAtA[i] = 0x72 i++ v := m.StringMap[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.StringToBytesMap) > 0 { for k := range m.StringToBytesMap { dAtA[i] = 0x7a i++ v := m.StringToBytesMap[k] byteSize := 0 if len(v) > 0 { byteSize = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + byteSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if len(v) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } if len(m.StringToEnumMap) > 0 { for k := range m.StringToEnumMap { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ v := m.StringToEnumMap[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.StringToMsgMap) > 0 { for k := range m.StringToMsgMap { dAtA[i] = 0x8a i++ dAtA[i] = 0x1 i++ v := m.StringToMsgMap[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n7, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n7 } } } return i, nil } func (m *AllMapsOrdered) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllMapsOrdered) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StringToDoubleMap) > 0 { keysForStringToDoubleMap := make([]string, 0, len(m.StringToDoubleMap)) for k := range m.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) for _, k := range keysForStringToDoubleMap { dAtA[i] = 0xa i++ v := m.StringToDoubleMap[string(k)] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } if len(m.StringToFloatMap) > 0 { keysForStringToFloatMap := make([]string, 0, len(m.StringToFloatMap)) for k := range m.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) for _, k := range keysForStringToFloatMap { dAtA[i] = 0x12 i++ v := m.StringToFloatMap[string(k)] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(v)))) i += 4 } } if len(m.Int32Map) > 0 { keysForInt32Map := make([]int32, 0, len(m.Int32Map)) for k := range m.Int32Map { keysForInt32Map = append(keysForInt32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) for _, k := range keysForInt32Map { dAtA[i] = 0x1a i++ v := m.Int32Map[int32(k)] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Int64Map) > 0 { keysForInt64Map := make([]int64, 0, len(m.Int64Map)) for k := range m.Int64Map { keysForInt64Map = append(keysForInt64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) for _, k := range keysForInt64Map { dAtA[i] = 0x22 i++ v := m.Int64Map[int64(k)] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Uint32Map) > 0 { keysForUint32Map := make([]uint32, 0, len(m.Uint32Map)) for k := range m.Uint32Map { keysForUint32Map = append(keysForUint32Map, uint32(k)) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) for _, k := range keysForUint32Map { dAtA[i] = 0x2a i++ v := m.Uint32Map[uint32(k)] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Uint64Map) > 0 { keysForUint64Map := make([]uint64, 0, len(m.Uint64Map)) for k := range m.Uint64Map { keysForUint64Map = append(keysForUint64Map, uint64(k)) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) for _, k := range keysForUint64Map { dAtA[i] = 0x32 i++ v := m.Uint64Map[uint64(k)] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Sint32Map) > 0 { keysForSint32Map := make([]int32, 0, len(m.Sint32Map)) for k := range m.Sint32Map { keysForSint32Map = append(keysForSint32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) for _, k := range keysForSint32Map { dAtA[i] = 0x3a i++ v := m.Sint32Map[int32(k)] mapSize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint32(k)<<1)^uint32((k>>31)))) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint32(v)<<1)^uint32((v>>31)))) } } if len(m.Sint64Map) > 0 { keysForSint64Map := make([]int64, 0, len(m.Sint64Map)) for k := range m.Sint64Map { keysForSint64Map = append(keysForSint64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) for _, k := range keysForSint64Map { dAtA[i] = 0x42 i++ v := m.Sint64Map[int64(k)] mapSize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(v)<<1)^uint64((v>>63)))) } } if len(m.Fixed32Map) > 0 { keysForFixed32Map := make([]uint32, 0, len(m.Fixed32Map)) for k := range m.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, uint32(k)) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) for _, k := range keysForFixed32Map { dAtA[i] = 0x4a i++ v := m.Fixed32Map[uint32(k)] mapSize := 1 + 4 + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Sfixed32Map) > 0 { keysForSfixed32Map := make([]int32, 0, len(m.Sfixed32Map)) for k := range m.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) for _, k := range keysForSfixed32Map { dAtA[i] = 0x52 i++ v := m.Sfixed32Map[int32(k)] mapSize := 1 + 4 + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Fixed64Map) > 0 { keysForFixed64Map := make([]uint64, 0, len(m.Fixed64Map)) for k := range m.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, uint64(k)) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) for _, k := range keysForFixed64Map { dAtA[i] = 0x5a i++ v := m.Fixed64Map[uint64(k)] mapSize := 1 + 8 + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.Sfixed64Map) > 0 { keysForSfixed64Map := make([]int64, 0, len(m.Sfixed64Map)) for k := range m.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) for _, k := range keysForSfixed64Map { dAtA[i] = 0x62 i++ v := m.Sfixed64Map[int64(k)] mapSize := 1 + 8 + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.BoolMap) > 0 { keysForBoolMap := make([]bool, 0, len(m.BoolMap)) for k := range m.BoolMap { keysForBoolMap = append(keysForBoolMap, bool(k)) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) for _, k := range keysForBoolMap { dAtA[i] = 0x6a i++ v := m.BoolMap[bool(k)] mapSize := 1 + 1 + 1 + 1 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x10 i++ if v { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.StringMap) > 0 { keysForStringMap := make([]string, 0, len(m.StringMap)) for k := range m.StringMap { keysForStringMap = append(keysForStringMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) for _, k := range keysForStringMap { dAtA[i] = 0x72 i++ v := m.StringMap[string(k)] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.StringToBytesMap) > 0 { keysForStringToBytesMap := make([]string, 0, len(m.StringToBytesMap)) for k := range m.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) for _, k := range keysForStringToBytesMap { dAtA[i] = 0x7a i++ v := m.StringToBytesMap[string(k)] byteSize := 0 if len(v) > 0 { byteSize = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + byteSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if len(v) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } if len(m.StringToEnumMap) > 0 { keysForStringToEnumMap := make([]string, 0, len(m.StringToEnumMap)) for k := range m.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) for _, k := range keysForStringToEnumMap { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ v := m.StringToEnumMap[string(k)] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.StringToMsgMap) > 0 { keysForStringToMsgMap := make([]string, 0, len(m.StringToMsgMap)) for k := range m.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) for _, k := range keysForStringToMsgMap { dAtA[i] = 0x8a i++ dAtA[i] = 0x1 i++ v := m.StringToMsgMap[string(k)] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n8, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n8 } } } return i, nil } func (m *MessageWithMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MessageWithMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NameMapping) > 0 { for k := range m.NameMapping { dAtA[i] = 0xa i++ v := m.NameMapping[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + len(v) + sovTheproto3(uint64(len(v))) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.MsgMapping) > 0 { for k := range m.MsgMapping { dAtA[i] = 0x12 i++ v := m.MsgMapping[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + sozTheproto3(uint64(k)) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n9, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n9 } } } if len(m.ByteMapping) > 0 { for k := range m.ByteMapping { dAtA[i] = 0x1a i++ v := m.ByteMapping[k] byteSize := 0 if len(v) > 0 { byteSize = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapSize := 1 + 1 + byteSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ if len(v) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } return i, nil } func (m *FloatingPoint) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FloatingPoint) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.F != 0 { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.F)))) i += 8 } return i, nil } func (m *Uint128Pair) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Uint128Pair) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Left.Size())) n10, err := m.Left.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n10 if m.Right != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Right.Size())) n11, err := m.Right.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n11 } return i, nil } func (m *ContainsNestedMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ContainsNestedMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l return i, nil } func (m *ContainsNestedMap_NestedMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ContainsNestedMap_NestedMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NestedMapField) > 0 { for k := range m.NestedMapField { dAtA[i] = 0xa i++ v := m.NestedMapField[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } return i, nil } func (m *NotPacked) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NotPacked) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Key) > 0 { for _, num := range m.Key { dAtA[i] = 0x28 i++ i = encodeVarintTheproto3(dAtA, i, uint64(num)) } } return i, nil } func encodeVarintTheproto3(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedMessage(r randyTheproto3, easy bool) *Message { this := &Message{} this.Name = string(randStringTheproto3(r)) this.Hilarity = Message_Humour([]int32{0, 1, 2, 3}[r.Intn(4)]) this.HeightInCm = uint32(r.Uint32()) v1 := r.Intn(100) this.Data = make([]byte, v1) for i := 0; i < v1; i++ { this.Data[i] = byte(r.Intn(256)) } v2 := r.Intn(10) this.Key = make([]uint64, v2) for i := 0; i < v2; i++ { this.Key[i] = uint64(uint64(r.Uint32())) } if r.Intn(10) != 0 { this.Nested = NewPopulatedNested(r, easy) } this.ResultCount = int64(r.Int63()) if r.Intn(2) == 0 { this.ResultCount *= -1 } this.TrueScotsman = bool(bool(r.Intn(2) == 0)) this.Score = float32(r.Float32()) if r.Intn(2) == 0 { this.Score *= -1 } if r.Intn(10) != 0 { v3 := r.Intn(10) this.Terrain = make(map[int64]*Nested) for i := 0; i < v3; i++ { this.Terrain[int64(r.Int63())] = NewPopulatedNested(r, easy) } } if r.Intn(10) != 0 { this.Proto2Field = test.NewPopulatedNinOptNative(r, easy) } if r.Intn(10) != 0 { v4 := r.Intn(10) this.Proto2Value = make(map[int64]*test.NinOptEnum) for i := 0; i < v4; i++ { this.Proto2Value[int64(r.Int63())] = test.NewPopulatedNinOptEnum(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNested(r randyTheproto3, easy bool) *Nested { this := &Nested{} this.Bunny = string(randStringTheproto3(r)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedAllMaps(r randyTheproto3, easy bool) *AllMaps { this := &AllMaps{} if r.Intn(10) != 0 { v5 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v5; i++ { v6 := randStringTheproto3(r) this.StringToDoubleMap[v6] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v6] *= -1 } } } if r.Intn(10) != 0 { v7 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v7; i++ { v8 := randStringTheproto3(r) this.StringToFloatMap[v8] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v8] *= -1 } } } if r.Intn(10) != 0 { v9 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v9; i++ { v10 := int32(r.Int31()) this.Int32Map[v10] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v10] *= -1 } } } if r.Intn(10) != 0 { v11 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v11; i++ { v12 := int64(r.Int63()) this.Int64Map[v12] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v12] *= -1 } } } if r.Intn(10) != 0 { v13 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v13; i++ { v14 := uint32(r.Uint32()) this.Uint32Map[v14] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v15 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v15; i++ { v16 := uint64(uint64(r.Uint32())) this.Uint64Map[v16] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v17 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v17; i++ { v18 := int32(r.Int31()) this.Sint32Map[v18] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v18] *= -1 } } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v19; i++ { v20 := int64(r.Int63()) this.Sint64Map[v20] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v20] *= -1 } } } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v21; i++ { v22 := uint32(r.Uint32()) this.Fixed32Map[v22] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v23; i++ { v24 := int32(r.Int31()) this.Sfixed32Map[v24] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v24] *= -1 } } } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v25; i++ { v26 := uint64(uint64(r.Uint32())) this.Fixed64Map[v26] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v27 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v27; i++ { v28 := int64(r.Int63()) this.Sfixed64Map[v28] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v28] *= -1 } } } if r.Intn(10) != 0 { v29 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v29; i++ { v30 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v30] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v31 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v31; i++ { this.StringMap[randStringTheproto3(r)] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v32 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v32; i++ { v33 := r.Intn(100) v34 := randStringTheproto3(r) this.StringToBytesMap[v34] = make([]byte, v33) for i := 0; i < v33; i++ { this.StringToBytesMap[v34][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v35 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v35; i++ { this.StringToEnumMap[randStringTheproto3(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v36; i++ { this.StringToMsgMap[randStringTheproto3(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedAllMapsOrdered(r randyTheproto3, easy bool) *AllMapsOrdered { this := &AllMapsOrdered{} if r.Intn(10) != 0 { v37 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v37; i++ { v38 := randStringTheproto3(r) this.StringToDoubleMap[v38] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v38] *= -1 } } } if r.Intn(10) != 0 { v39 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v39; i++ { v40 := randStringTheproto3(r) this.StringToFloatMap[v40] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v40] *= -1 } } } if r.Intn(10) != 0 { v41 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v41; i++ { v42 := int32(r.Int31()) this.Int32Map[v42] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v42] *= -1 } } } if r.Intn(10) != 0 { v43 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v43; i++ { v44 := int64(r.Int63()) this.Int64Map[v44] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v44] *= -1 } } } if r.Intn(10) != 0 { v45 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v45; i++ { v46 := uint32(r.Uint32()) this.Uint32Map[v46] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v47 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v47; i++ { v48 := uint64(uint64(r.Uint32())) this.Uint64Map[v48] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v49 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v49; i++ { v50 := int32(r.Int31()) this.Sint32Map[v50] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v50] *= -1 } } } if r.Intn(10) != 0 { v51 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v51; i++ { v52 := int64(r.Int63()) this.Sint64Map[v52] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v52] *= -1 } } } if r.Intn(10) != 0 { v53 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v53; i++ { v54 := uint32(r.Uint32()) this.Fixed32Map[v54] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v55 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v55; i++ { v56 := int32(r.Int31()) this.Sfixed32Map[v56] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v56] *= -1 } } } if r.Intn(10) != 0 { v57 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v57; i++ { v58 := uint64(uint64(r.Uint32())) this.Fixed64Map[v58] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v59 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v59; i++ { v60 := int64(r.Int63()) this.Sfixed64Map[v60] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v60] *= -1 } } } if r.Intn(10) != 0 { v61 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v61; i++ { v62 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v62] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v63 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v63; i++ { this.StringMap[randStringTheproto3(r)] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v64; i++ { v65 := r.Intn(100) v66 := randStringTheproto3(r) this.StringToBytesMap[v66] = make([]byte, v65) for i := 0; i < v65; i++ { this.StringToBytesMap[v66][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v67 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v67; i++ { this.StringToEnumMap[randStringTheproto3(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v68; i++ { this.StringToMsgMap[randStringTheproto3(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMessageWithMap(r randyTheproto3, easy bool) *MessageWithMap { this := &MessageWithMap{} if r.Intn(10) != 0 { v69 := r.Intn(10) this.NameMapping = make(map[int32]string) for i := 0; i < v69; i++ { this.NameMapping[int32(r.Int31())] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v70 := r.Intn(10) this.MsgMapping = make(map[int64]*FloatingPoint) for i := 0; i < v70; i++ { this.MsgMapping[int64(r.Int63())] = NewPopulatedFloatingPoint(r, easy) } } if r.Intn(10) != 0 { v71 := r.Intn(10) this.ByteMapping = make(map[bool][]byte) for i := 0; i < v71; i++ { v72 := r.Intn(100) v73 := bool(bool(r.Intn(2) == 0)) this.ByteMapping[v73] = make([]byte, v72) for i := 0; i < v72; i++ { this.ByteMapping[v73][i] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFloatingPoint(r randyTheproto3, easy bool) *FloatingPoint { this := &FloatingPoint{} this.F = float64(r.Float64()) if r.Intn(2) == 0 { this.F *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUint128Pair(r randyTheproto3, easy bool) *Uint128Pair { this := &Uint128Pair{} v74 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Left = *v74 this.Right = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedContainsNestedMap(r randyTheproto3, easy bool) *ContainsNestedMap { this := &ContainsNestedMap{} if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedContainsNestedMap_NestedMap(r randyTheproto3, easy bool) *ContainsNestedMap_NestedMap { this := &ContainsNestedMap_NestedMap{} if r.Intn(10) != 0 { v75 := r.Intn(10) this.NestedMapField = make(map[string]float64) for i := 0; i < v75; i++ { v76 := randStringTheproto3(r) this.NestedMapField[v76] = float64(r.Float64()) if r.Intn(2) == 0 { this.NestedMapField[v76] *= -1 } } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNotPacked(r randyTheproto3, easy bool) *NotPacked { this := &NotPacked{} v77 := r.Intn(10) this.Key = make([]uint64, v77) for i := 0; i < v77; i++ { this.Key[i] = uint64(uint64(r.Uint32())) } if !easy && r.Intn(10) != 0 { } return this } type randyTheproto3 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTheproto3(r randyTheproto3) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTheproto3(r randyTheproto3) string { v78 := r.Intn(100) tmps := make([]rune, v78) for i := 0; i < v78; i++ { tmps[i] = randUTF8RuneTheproto3(r) } return string(tmps) } func randUnrecognizedTheproto3(r randyTheproto3, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTheproto3(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTheproto3(dAtA []byte, r randyTheproto3, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) v79 := r.Int63() if r.Intn(2) == 0 { v79 *= -1 } dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(v79)) case 1: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTheproto3(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Message) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } if m.Hilarity != 0 { n += 1 + sovTheproto3(uint64(m.Hilarity)) } if m.HeightInCm != 0 { n += 1 + sovTheproto3(uint64(m.HeightInCm)) } l = len(m.Data) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } if len(m.Key) > 0 { l = 0 for _, e := range m.Key { l += sovTheproto3(uint64(e)) } n += 1 + sovTheproto3(uint64(l)) + l } if m.Nested != nil { l = m.Nested.Size() n += 1 + l + sovTheproto3(uint64(l)) } if m.ResultCount != 0 { n += 1 + sovTheproto3(uint64(m.ResultCount)) } if m.TrueScotsman { n += 2 } if m.Score != 0 { n += 5 } if len(m.Terrain) > 0 { for k, v := range m.Terrain { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sovTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if m.Proto2Field != nil { l = m.Proto2Field.Size() n += 1 + l + sovTheproto3(uint64(l)) } if len(m.Proto2Value) > 0 { for k, v := range m.Proto2Value { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sovTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *Nested) Size() (n int) { var l int _ = l l = len(m.Bunny) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } return n } func (m *AllMaps) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *AllMapsOrdered) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *MessageWithMap) Size() (n int) { var l int _ = l if len(m.NameMapping) > 0 { for k, v := range m.NameMapping { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.MsgMapping) > 0 { for k, v := range m.MsgMapping { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sozTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.ByteMapping) > 0 { for k, v := range m.ByteMapping { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + 1 + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *FloatingPoint) Size() (n int) { var l int _ = l if m.F != 0 { n += 9 } return n } func (m *Uint128Pair) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovTheproto3(uint64(l)) if m.Right != nil { l = m.Right.Size() n += 1 + l + sovTheproto3(uint64(l)) } return n } func (m *ContainsNestedMap) Size() (n int) { var l int _ = l return n } func (m *ContainsNestedMap_NestedMap) Size() (n int) { var l int _ = l if len(m.NestedMapField) > 0 { for k, v := range m.NestedMapField { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *NotPacked) Size() (n int) { var l int _ = l if len(m.Key) > 0 { for _, e := range m.Key { n += 1 + sovTheproto3(uint64(e)) } } return n } func sovTheproto3(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTheproto3(x uint64) (n int) { return sovTheproto3(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Message) String() string { if this == nil { return "nil" } keysForTerrain := make([]int64, 0, len(this.Terrain)) for k := range this.Terrain { keysForTerrain = append(keysForTerrain, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForTerrain) mapStringForTerrain := "map[int64]*Nested{" for _, k := range keysForTerrain { mapStringForTerrain += fmt.Sprintf("%v: %v,", k, this.Terrain[k]) } mapStringForTerrain += "}" keysForProto2Value := make([]int64, 0, len(this.Proto2Value)) for k := range this.Proto2Value { keysForProto2Value = append(keysForProto2Value, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForProto2Value) mapStringForProto2Value := "map[int64]*test.NinOptEnum{" for _, k := range keysForProto2Value { mapStringForProto2Value += fmt.Sprintf("%v: %v,", k, this.Proto2Value[k]) } mapStringForProto2Value += "}" s := strings.Join([]string{`&Message{`, `Name:` + fmt.Sprintf("%v", this.Name) + `,`, `Hilarity:` + fmt.Sprintf("%v", this.Hilarity) + `,`, `HeightInCm:` + fmt.Sprintf("%v", this.HeightInCm) + `,`, `Data:` + fmt.Sprintf("%v", this.Data) + `,`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `Nested:` + strings.Replace(fmt.Sprintf("%v", this.Nested), "Nested", "Nested", 1) + `,`, `ResultCount:` + fmt.Sprintf("%v", this.ResultCount) + `,`, `TrueScotsman:` + fmt.Sprintf("%v", this.TrueScotsman) + `,`, `Score:` + fmt.Sprintf("%v", this.Score) + `,`, `Terrain:` + mapStringForTerrain + `,`, `Proto2Field:` + strings.Replace(fmt.Sprintf("%v", this.Proto2Field), "NinOptNative", "test.NinOptNative", 1) + `,`, `Proto2Value:` + mapStringForProto2Value + `,`, `}`, }, "") return s } func (this *Nested) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Nested{`, `Bunny:` + fmt.Sprintf("%v", this.Bunny) + `,`, `}`, }, "") return s } func (this *AllMaps) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMaps{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `}`, }, "") return s } func (this *AllMapsOrdered) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMapsOrdered{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `}`, }, "") return s } func (this *MessageWithMap) String() string { if this == nil { return "nil" } keysForNameMapping := make([]int32, 0, len(this.NameMapping)) for k := range this.NameMapping { keysForNameMapping = append(keysForNameMapping, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNameMapping) mapStringForNameMapping := "map[int32]string{" for _, k := range keysForNameMapping { mapStringForNameMapping += fmt.Sprintf("%v: %v,", k, this.NameMapping[k]) } mapStringForNameMapping += "}" keysForMsgMapping := make([]int64, 0, len(this.MsgMapping)) for k := range this.MsgMapping { keysForMsgMapping = append(keysForMsgMapping, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForMsgMapping) mapStringForMsgMapping := "map[int64]*FloatingPoint{" for _, k := range keysForMsgMapping { mapStringForMsgMapping += fmt.Sprintf("%v: %v,", k, this.MsgMapping[k]) } mapStringForMsgMapping += "}" keysForByteMapping := make([]bool, 0, len(this.ByteMapping)) for k := range this.ByteMapping { keysForByteMapping = append(keysForByteMapping, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForByteMapping) mapStringForByteMapping := "map[bool][]byte{" for _, k := range keysForByteMapping { mapStringForByteMapping += fmt.Sprintf("%v: %v,", k, this.ByteMapping[k]) } mapStringForByteMapping += "}" s := strings.Join([]string{`&MessageWithMap{`, `NameMapping:` + mapStringForNameMapping + `,`, `MsgMapping:` + mapStringForMsgMapping + `,`, `ByteMapping:` + mapStringForByteMapping + `,`, `}`, }, "") return s } func (this *FloatingPoint) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FloatingPoint{`, `F:` + fmt.Sprintf("%v", this.F) + `,`, `}`, }, "") return s } func (this *Uint128Pair) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Uint128Pair{`, `Left:` + fmt.Sprintf("%v", this.Left) + `,`, `Right:` + fmt.Sprintf("%v", this.Right) + `,`, `}`, }, "") return s } func (this *ContainsNestedMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ContainsNestedMap{`, `}`, }, "") return s } func (this *ContainsNestedMap_NestedMap) String() string { if this == nil { return "nil" } keysForNestedMapField := make([]string, 0, len(this.NestedMapField)) for k := range this.NestedMapField { keysForNestedMapField = append(keysForNestedMapField, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNestedMapField) mapStringForNestedMapField := "map[string]float64{" for _, k := range keysForNestedMapField { mapStringForNestedMapField += fmt.Sprintf("%v: %v,", k, this.NestedMapField[k]) } mapStringForNestedMapField += "}" s := strings.Join([]string{`&ContainsNestedMap_NestedMap{`, `NestedMapField:` + mapStringForNestedMapField + `,`, `}`, }, "") return s } func (this *NotPacked) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NotPacked{`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `}`, }, "") return s } func valueToStringTheproto3(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Message) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Message: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Message: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Hilarity", wireType) } m.Hilarity = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Hilarity |= (Message_Humour(b) & 0x7F) << shift if b < 0x80 { break } } case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field HeightInCm", wireType) } m.HeightInCm = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.HeightInCm |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) if m.Data == nil { m.Data = []byte{} } iNdEx = postIndex case 5: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Key = append(m.Key, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Key = append(m.Key, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Nested", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Nested == nil { m.Nested = &Nested{} } if err := m.Nested.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field ResultCount", wireType) } m.ResultCount = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.ResultCount |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field TrueScotsman", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.TrueScotsman = bool(v != 0) case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Score", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Score = float32(math.Float32frombits(v)) case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Terrain", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Terrain == nil { m.Terrain = make(map[int64]*Nested) } var mapkey int64 var mapvalue *Nested for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Nested{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Terrain[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Proto2Field", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Proto2Field == nil { m.Proto2Field = &test.NinOptNative{} } if err := m.Proto2Field.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Proto2Value", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Proto2Value == nil { m.Proto2Value = make(map[int64]*test.NinOptEnum) } var mapkey int64 var mapvalue *test.NinOptEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &test.NinOptEnum{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Proto2Value[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Nested) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Nested: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Nested: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Bunny", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Bunny = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllMaps) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllMaps: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllMaps: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToDoubleMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToDoubleMap == nil { m.StringToDoubleMap = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToDoubleMap[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToFloatMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToFloatMap == nil { m.StringToFloatMap = make(map[string]float32) } var mapkey string var mapvalue float32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 mapvalue = math.Float32frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToFloatMap[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int32Map == nil { m.Int32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int32Map[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int64Map == nil { m.Int64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int64Map[mapkey] = mapvalue iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint32Map == nil { m.Uint32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint32Map[mapkey] = mapvalue iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint64Map == nil { m.Uint64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint64Map[mapkey] = mapvalue iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint32Map == nil { m.Sint32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = int32((uint32(mapkeytemp) >> 1) ^ uint32(((mapkeytemp&1)<<31)>>31)) mapkey = int32(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = int32((uint32(mapvaluetemp) >> 1) ^ uint32(((mapvaluetemp&1)<<31)>>31)) mapvalue = int32(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint32Map[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint64Map == nil { m.Sint64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = (mapvaluetemp >> 1) ^ uint64((int64(mapvaluetemp&1)<<63)>>63) mapvalue = int64(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint64Map[mapkey] = mapvalue iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed32Map == nil { m.Fixed32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed32Map[mapkey] = mapvalue iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed32Map == nil { m.Sfixed32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed32Map[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed64Map == nil { m.Fixed64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed64Map[mapkey] = mapvalue iNdEx = postIndex case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed64Map == nil { m.Sfixed64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed64Map[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BoolMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.BoolMap == nil { m.BoolMap = make(map[bool]bool) } var mapkey bool var mapvalue bool for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapvaluetemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapvalue = bool(mapvaluetemp != 0) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.BoolMap[mapkey] = mapvalue iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringMap == nil { m.StringMap = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringMap[mapkey] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToBytesMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToBytesMap == nil { m.StringToBytesMap = make(map[string][]byte) } var mapkey string mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthTheproto3 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToBytesMap[mapkey] = mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToEnumMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToEnumMap == nil { m.StringToEnumMap = make(map[string]MapEnum) } var mapkey string var mapvalue MapEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (MapEnum(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToEnumMap[mapkey] = mapvalue iNdEx = postIndex case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToMsgMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToMsgMap == nil { m.StringToMsgMap = make(map[string]*FloatingPoint) } var mapkey string var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToMsgMap[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllMapsOrdered) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllMapsOrdered: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllMapsOrdered: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToDoubleMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToDoubleMap == nil { m.StringToDoubleMap = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToDoubleMap[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToFloatMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToFloatMap == nil { m.StringToFloatMap = make(map[string]float32) } var mapkey string var mapvalue float32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 mapvalue = math.Float32frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToFloatMap[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int32Map == nil { m.Int32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int32Map[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int64Map == nil { m.Int64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int64Map[mapkey] = mapvalue iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint32Map == nil { m.Uint32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint32Map[mapkey] = mapvalue iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint64Map == nil { m.Uint64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint64Map[mapkey] = mapvalue iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint32Map == nil { m.Sint32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = int32((uint32(mapkeytemp) >> 1) ^ uint32(((mapkeytemp&1)<<31)>>31)) mapkey = int32(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = int32((uint32(mapvaluetemp) >> 1) ^ uint32(((mapvaluetemp&1)<<31)>>31)) mapvalue = int32(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint32Map[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint64Map == nil { m.Sint64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = (mapvaluetemp >> 1) ^ uint64((int64(mapvaluetemp&1)<<63)>>63) mapvalue = int64(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint64Map[mapkey] = mapvalue iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed32Map == nil { m.Fixed32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed32Map[mapkey] = mapvalue iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed32Map == nil { m.Sfixed32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed32Map[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed64Map == nil { m.Fixed64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed64Map[mapkey] = mapvalue iNdEx = postIndex case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed64Map == nil { m.Sfixed64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed64Map[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BoolMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.BoolMap == nil { m.BoolMap = make(map[bool]bool) } var mapkey bool var mapvalue bool for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapvaluetemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapvalue = bool(mapvaluetemp != 0) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.BoolMap[mapkey] = mapvalue iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringMap == nil { m.StringMap = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringMap[mapkey] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToBytesMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToBytesMap == nil { m.StringToBytesMap = make(map[string][]byte) } var mapkey string mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthTheproto3 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToBytesMap[mapkey] = mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToEnumMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToEnumMap == nil { m.StringToEnumMap = make(map[string]MapEnum) } var mapkey string var mapvalue MapEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (MapEnum(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToEnumMap[mapkey] = mapvalue iNdEx = postIndex case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToMsgMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToMsgMap == nil { m.StringToMsgMap = make(map[string]*FloatingPoint) } var mapkey string var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToMsgMap[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *MessageWithMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MessageWithMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MessageWithMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NameMapping", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NameMapping == nil { m.NameMapping = make(map[int32]string) } var mapkey int32 var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NameMapping[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MsgMapping", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MsgMapping == nil { m.MsgMapping = make(map[int64]*FloatingPoint) } var mapkey int64 var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MsgMapping[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ByteMapping", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.ByteMapping == nil { m.ByteMapping = make(map[bool][]byte) } var mapkey bool mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthTheproto3 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.ByteMapping[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *FloatingPoint) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FloatingPoint: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FloatingPoint: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field F", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.F = float64(math.Float64frombits(v)) default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Uint128Pair) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Uint128Pair: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Uint128Pair: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Left", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Left.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Right", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.Right = &v if err := m.Right.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ContainsNestedMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: ContainsNestedMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: ContainsNestedMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ContainsNestedMap_NestedMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NestedMapField", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NestedMapField == nil { m.NestedMapField = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NestedMapField[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NotPacked) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NotPacked: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NotPacked: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 5: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Key = append(m.Key, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Key = append(m.Key, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipTheproto3(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTheproto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTheproto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTheproto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthTheproto3 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTheproto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipTheproto3(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthTheproto3 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTheproto3 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/both/theproto3.proto", fileDescriptorTheproto3) } var fileDescriptorTheproto3 = []byte{ // 1602 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x99, 0xcf, 0x6f, 0xdb, 0x46, 0x16, 0xc7, 0x35, 0xfa, 0xad, 0xa7, 0x1f, 0xa6, 0x27, 0xd9, 0x85, 0xd6, 0x8b, 0xa5, 0x65, 0x05, 0x48, 0x94, 0x60, 0x23, 0x67, 0x9d, 0x64, 0x37, 0xeb, 0xa6, 0x4d, 0x2d, 0xc5, 0x42, 0xdc, 0xd8, 0x8a, 0x2b, 0xd9, 0x71, 0x8b, 0x00, 0x35, 0x28, 0x9b, 0x96, 0x88, 0x48, 0xa4, 0x21, 0x8e, 0x82, 0xfa, 0x96, 0x3f, 0xa3, 0xb7, 0xa2, 0xb7, 0x1e, 0x8b, 0x1c, 0x8a, 0x1e, 0xdb, 0x9b, 0x8f, 0x01, 0x7a, 0x29, 0x7a, 0x08, 0x62, 0xf5, 0x92, 0x63, 0x8e, 0x39, 0x16, 0x33, 0x43, 0x49, 0x23, 0x72, 0x28, 0x36, 0xbd, 0xf4, 0xe2, 0x93, 0x38, 0xcf, 0xef, 0xfb, 0x99, 0xc7, 0xe1, 0xcc, 0xe3, 0x17, 0x34, 0xfc, 0xf3, 0xc0, 0xea, 0xb5, 0x2c, 0x7b, 0xb9, 0x65, 0x91, 0xce, 0x32, 0xe9, 0xe8, 0xc7, 0x7d, 0x8b, 0x58, 0x37, 0xcb, 0xec, 0x07, 0xa7, 0xc6, 0x81, 0x85, 0xeb, 0x6d, 0x83, 0x74, 0x06, 0xad, 0xf2, 0x81, 0xd5, 0x5b, 0x6e, 0x5b, 0x6d, 0x6b, 0x99, 0xc5, 0x5b, 0x83, 0x23, 0x36, 0x62, 0x03, 0x76, 0xc5, 0x95, 0x0b, 0xff, 0xf3, 0x4d, 0x27, 0xba, 0x4d, 0x96, 0x5d, 0x93, 0xd2, 0x18, 0x17, 0x16, 0x7f, 0x8a, 0x41, 0x62, 0x4b, 0xb7, 0x6d, 0xad, 0xad, 0x63, 0x0c, 0x51, 0x53, 0xeb, 0xe9, 0x79, 0x54, 0x40, 0xa5, 0x54, 0x83, 0x5d, 0xe3, 0xdb, 0x90, 0xec, 0x18, 0x5d, 0xad, 0x6f, 0x90, 0x93, 0x7c, 0xb8, 0x80, 0x4a, 0xb9, 0x95, 0x7f, 0x94, 0x27, 0x65, 0x3b, 0xca, 0xf2, 0x83, 0x41, 0xcf, 0x1a, 0xf4, 0x1b, 0xe3, 0x54, 0x5c, 0x80, 0x4c, 0x47, 0x37, 0xda, 0x1d, 0xb2, 0x6f, 0x98, 0xfb, 0x07, 0xbd, 0x7c, 0xa4, 0x80, 0x4a, 0xd9, 0x06, 0xf0, 0xd8, 0x86, 0x59, 0xed, 0xd1, 0xc9, 0x0e, 0x35, 0xa2, 0xe5, 0xa3, 0x05, 0x54, 0xca, 0x34, 0xd8, 0x35, 0x56, 0x20, 0xf2, 0x54, 0x3f, 0xc9, 0xc7, 0x0a, 0x91, 0x52, 0xb4, 0x41, 0x2f, 0xf1, 0x55, 0x88, 0x9b, 0xba, 0x4d, 0xf4, 0xc3, 0x7c, 0xbc, 0x80, 0x4a, 0xe9, 0x95, 0x79, 0x61, 0xf2, 0x3a, 0xfb, 0x43, 0xc3, 0x49, 0xc0, 0x4b, 0x90, 0xe9, 0xeb, 0xf6, 0xa0, 0x4b, 0xf6, 0x0f, 0xac, 0x81, 0x49, 0xf2, 0x89, 0x02, 0x2a, 0x45, 0x1a, 0x69, 0x1e, 0xab, 0xd2, 0x10, 0xbe, 0x04, 0x59, 0xd2, 0x1f, 0xe8, 0xfb, 0xf6, 0x81, 0x45, 0xec, 0x9e, 0x66, 0xe6, 0x93, 0x05, 0x54, 0x4a, 0x36, 0x32, 0x34, 0xd8, 0x74, 0x62, 0xf8, 0x22, 0xc4, 0xec, 0x03, 0xab, 0xaf, 0xe7, 0x53, 0x05, 0x54, 0x0a, 0x37, 0xf8, 0x00, 0xff, 0x1f, 0x12, 0x44, 0xef, 0xf7, 0x35, 0xc3, 0xcc, 0x43, 0x21, 0x52, 0x4a, 0xaf, 0x2c, 0x4a, 0x96, 0x61, 0x87, 0x67, 0xac, 0x9b, 0xa4, 0x7f, 0xd2, 0x18, 0xe5, 0xe3, 0xdb, 0x90, 0x61, 0x79, 0x2b, 0xfb, 0x47, 0x86, 0xde, 0x3d, 0xcc, 0xa7, 0xd9, 0x9d, 0xe0, 0x32, 0x7b, 0x0a, 0x75, 0xc3, 0x7c, 0x74, 0x4c, 0xea, 0x1a, 0x31, 0x9e, 0xe9, 0x8d, 0x34, 0xcf, 0xab, 0xd1, 0x34, 0x5c, 0x1b, 0xcb, 0x9e, 0x69, 0xdd, 0x81, 0x9e, 0xcf, 0xb2, 0x69, 0x2f, 0x49, 0xa6, 0xdd, 0x66, 0x69, 0x8f, 0x69, 0x16, 0x9f, 0xda, 0xe1, 0xb0, 0xc8, 0xc2, 0x16, 0x64, 0xc4, 0xba, 0x46, 0x8b, 0x8c, 0xd8, 0xf2, 0xb0, 0x45, 0xbe, 0x02, 0x31, 0x3e, 0x45, 0xd8, 0x6f, 0x8d, 0xf9, 0xdf, 0x57, 0xc3, 0x77, 0xd0, 0xc2, 0x36, 0x28, 0xee, 0xf9, 0x24, 0xc8, 0xcb, 0xd3, 0x48, 0x45, 0xbc, 0xd9, 0x75, 0x73, 0xd0, 0x13, 0x88, 0xc5, 0x7b, 0x10, 0xe7, 0xfb, 0x07, 0xa7, 0x21, 0xb1, 0x5b, 0x7f, 0x58, 0x7f, 0xb4, 0x57, 0x57, 0x42, 0x38, 0x09, 0xd1, 0xed, 0xdd, 0x7a, 0x53, 0x41, 0x38, 0x0b, 0xa9, 0xe6, 0xe6, 0xda, 0x76, 0x73, 0x67, 0xa3, 0xfa, 0x50, 0x09, 0xe3, 0x39, 0x48, 0x57, 0x36, 0x36, 0x37, 0xf7, 0x2b, 0x6b, 0x1b, 0x9b, 0xeb, 0x9f, 0x2b, 0x91, 0xa2, 0x0a, 0x71, 0x5e, 0x27, 0x7d, 0x76, 0xad, 0x81, 0x69, 0x9e, 0x38, 0x5b, 0x98, 0x0f, 0x8a, 0x2f, 0x30, 0x24, 0xd6, 0xba, 0xdd, 0x2d, 0xed, 0xd8, 0xc6, 0x7b, 0x30, 0xdf, 0x24, 0x7d, 0xc3, 0x6c, 0xef, 0x58, 0xf7, 0xad, 0x41, 0xab, 0xab, 0x6f, 0x69, 0xc7, 0x79, 0xc4, 0x96, 0xf6, 0xaa, 0x70, 0xdf, 0x4e, 0x7a, 0xd9, 0x93, 0xcb, 0x17, 0xd8, 0xcb, 0xc0, 0x3b, 0xa0, 0x8c, 0x82, 0xb5, 0xae, 0xa5, 0x11, 0xca, 0x0d, 0x33, 0x6e, 0x69, 0x06, 0x77, 0x94, 0xca, 0xb1, 0x1e, 0x02, 0xbe, 0x0b, 0xc9, 0x0d, 0x93, 0xdc, 0x5c, 0xa1, 0xb4, 0x08, 0xa3, 0x15, 0x24, 0xb4, 0x51, 0x0a, 0xa7, 0x8c, 0x15, 0x8e, 0xfa, 0xbf, 0xb7, 0xa8, 0x3a, 0x3a, 0x4b, 0xcd, 0x52, 0x26, 0x6a, 0x36, 0xc4, 0xf7, 0x20, 0xb5, 0x6b, 0x8c, 0x26, 0x8f, 0x31, 0xf9, 0x92, 0x44, 0x3e, 0xce, 0xe1, 0xfa, 0x89, 0x66, 0x04, 0xe0, 0xf3, 0xc7, 0x67, 0x02, 0x84, 0x02, 0x26, 0x1a, 0x0a, 0x68, 0x8e, 0x2b, 0x48, 0xf8, 0x02, 0x9a, 0xae, 0x0a, 0x9a, 0x62, 0x05, 0xcd, 0x71, 0x05, 0xc9, 0x99, 0x00, 0xb1, 0x82, 0xf1, 0x18, 0x57, 0x00, 0x6a, 0xc6, 0x97, 0xfa, 0x21, 0x2f, 0x21, 0xc5, 0x08, 0x45, 0x09, 0x61, 0x92, 0xc4, 0x11, 0x82, 0x0a, 0xaf, 0x43, 0xba, 0x79, 0x34, 0x81, 0x80, 0xe7, 0x1c, 0x8f, 0xcb, 0x38, 0x72, 0x51, 0x44, 0xdd, 0xb8, 0x14, 0x7e, 0x33, 0xe9, 0xd9, 0xa5, 0x08, 0x77, 0x23, 0xa8, 0x26, 0xa5, 0x70, 0x48, 0x26, 0xa0, 0x14, 0x81, 0x22, 0xea, 0x68, 0x33, 0xac, 0x58, 0x16, 0xcd, 0x74, 0xba, 0xd2, 0xa2, 0x04, 0xe1, 0x64, 0x38, 0xcd, 0xd0, 0x19, 0xb1, 0x27, 0xc2, 0x36, 0x39, 0x15, 0xe7, 0xfc, 0x9f, 0xc8, 0x28, 0x67, 0xf4, 0x44, 0x46, 0x63, 0xf1, 0x9c, 0x55, 0x4e, 0x88, 0x6e, 0x53, 0xce, 0x5c, 0xe0, 0x39, 0x1b, 0xa5, 0xba, 0xce, 0xd9, 0x28, 0x8c, 0x3f, 0x85, 0xb9, 0x51, 0x8c, 0xb6, 0x27, 0x0a, 0x55, 0x18, 0xf4, 0xca, 0x0c, 0xa8, 0x93, 0xc9, 0x99, 0x6e, 0x3d, 0xae, 0x43, 0x6e, 0x14, 0xda, 0xb2, 0xd9, 0xed, 0xce, 0x33, 0xe2, 0xe5, 0x19, 0x44, 0x9e, 0xc8, 0x81, 0x2e, 0xf5, 0xc2, 0x7d, 0xf8, 0xbb, 0xbc, 0x1b, 0x89, 0xed, 0x37, 0xc5, 0xdb, 0xef, 0x45, 0xb1, 0xfd, 0x22, 0xb1, 0x7d, 0x57, 0xe1, 0x6f, 0xd2, 0xde, 0x13, 0x04, 0x09, 0x8b, 0x90, 0x0f, 0x20, 0x3b, 0xd5, 0x72, 0x44, 0x71, 0x4c, 0x22, 0x8e, 0x79, 0xc5, 0x93, 0xad, 0x25, 0x79, 0x7b, 0x4c, 0x89, 0x23, 0xa2, 0xf8, 0x2e, 0xe4, 0xa6, 0xfb, 0x8d, 0xa8, 0xce, 0x4a, 0xd4, 0x59, 0x89, 0x5a, 0x3e, 0x77, 0x54, 0xa2, 0x8e, 0xba, 0xd4, 0x4d, 0xdf, 0xb9, 0xe7, 0x25, 0xea, 0x79, 0x89, 0x5a, 0x3e, 0x37, 0x96, 0xa8, 0xb1, 0xa8, 0xfe, 0x10, 0xe6, 0x5c, 0x2d, 0x46, 0x94, 0x27, 0x24, 0xf2, 0x84, 0x28, 0xff, 0x08, 0x14, 0x77, 0x73, 0x11, 0xf5, 0x73, 0x12, 0xfd, 0x9c, 0x6c, 0x7a, 0x79, 0xf5, 0x71, 0x89, 0x3c, 0x2e, 0x9d, 0x5e, 0xae, 0x57, 0x24, 0x7a, 0x45, 0xd4, 0xaf, 0x42, 0x46, 0xec, 0x26, 0xa2, 0x36, 0x29, 0xd1, 0x26, 0xdd, 0xeb, 0x3e, 0xd5, 0x4c, 0x82, 0x76, 0x7a, 0xca, 0xe7, 0xb8, 0x4c, 0xb5, 0x90, 0x20, 0x48, 0x46, 0x84, 0x3c, 0x86, 0x8b, 0xb2, 0x96, 0x21, 0x61, 0x94, 0x44, 0x46, 0x8e, 0x7a, 0xc4, 0x89, 0xd9, 0xa3, 0xaa, 0x29, 0xe3, 0xb4, 0xf0, 0x04, 0x2e, 0x48, 0x1a, 0x87, 0x04, 0x5b, 0x9e, 0x76, 0x63, 0x79, 0x01, 0xcb, 0x9a, 0x80, 0x61, 0xb6, 0xb7, 0x2d, 0xc3, 0x24, 0xa2, 0x2b, 0xfb, 0xfe, 0x02, 0xe4, 0x9c, 0xf6, 0xf4, 0xa8, 0x7f, 0xa8, 0xf7, 0xf5, 0x43, 0xfc, 0x85, 0xbf, 0x77, 0xba, 0xe1, 0x6d, 0x6a, 0x8e, 0xea, 0x3d, 0x2c, 0xd4, 0x13, 0x5f, 0x0b, 0xb5, 0x1c, 0x8c, 0x0f, 0x72, 0x52, 0x55, 0x8f, 0x93, 0xba, 0xe2, 0x0f, 0xf5, 0x33, 0x54, 0x55, 0x8f, 0xa1, 0x9a, 0x0d, 0x91, 0xfa, 0xaa, 0x9a, 0xd7, 0x57, 0x95, 0xfc, 0x29, 0xfe, 0xf6, 0xaa, 0xe6, 0xb5, 0x57, 0x01, 0x1c, 0xb9, 0xcb, 0xaa, 0x79, 0x5d, 0xd6, 0x0c, 0x8e, 0xbf, 0xd9, 0xaa, 0x79, 0xcd, 0x56, 0x00, 0x47, 0xee, 0xb9, 0x36, 0x24, 0x9e, 0xeb, 0xaa, 0x3f, 0x68, 0x96, 0xf5, 0xda, 0x94, 0x59, 0xaf, 0x6b, 0x33, 0x8a, 0x9a, 0xe9, 0xc0, 0x36, 0x24, 0x0e, 0x2c, 0xa8, 0x30, 0x1f, 0x23, 0xb6, 0x29, 0x33, 0x62, 0x81, 0x85, 0xf9, 0xf9, 0xb1, 0x8f, 0xdd, 0x7e, 0xec, 0xb2, 0x3f, 0x49, 0x6e, 0xcb, 0x6a, 0x5e, 0x5b, 0x56, 0x0a, 0x3a, 0x73, 0x32, 0x77, 0xf6, 0xc4, 0xd7, 0x9d, 0xfd, 0x81, 0x23, 0x1c, 0x64, 0xd2, 0x3e, 0xf3, 0x33, 0x69, 0xe5, 0x60, 0xf6, 0x6c, 0xaf, 0xb6, 0xeb, 0xe3, 0xd5, 0xae, 0x07, 0x83, 0xcf, 0x2d, 0xdb, 0xb9, 0x65, 0x3b, 0xb7, 0x6c, 0xe7, 0x96, 0xed, 0xaf, 0xb7, 0x6c, 0xab, 0xd1, 0xaf, 0xbe, 0x59, 0x44, 0xc5, 0x9f, 0x23, 0x90, 0x73, 0xbe, 0x0c, 0xee, 0x19, 0xa4, 0x43, 0xdb, 0xdb, 0x16, 0x64, 0x4c, 0xad, 0xa7, 0xef, 0xf7, 0xb4, 0xe3, 0x63, 0xc3, 0x6c, 0x3b, 0x9e, 0xed, 0x9a, 0xf7, 0x53, 0xa2, 0x23, 0x28, 0xd7, 0xb5, 0x1e, 0xed, 0x55, 0x34, 0xd9, 0x79, 0xdd, 0x98, 0x93, 0x08, 0xfe, 0x04, 0xd2, 0x3d, 0xbb, 0x3d, 0xa6, 0x85, 0x3d, 0x2f, 0x42, 0x17, 0x8d, 0xdf, 0xe9, 0x04, 0x06, 0xbd, 0x71, 0x80, 0x96, 0xd6, 0x3a, 0x21, 0x93, 0xd2, 0x22, 0x41, 0xa5, 0xd1, 0x67, 0x3a, 0x5d, 0x5a, 0x6b, 0x12, 0xa1, 0xdb, 0xd6, 0x5d, 0x7b, 0x50, 0xa7, 0x9b, 0xda, 0x3c, 0x7b, 0x30, 0xe7, 0xaa, 0x56, 0x72, 0xe6, 0xff, 0xc4, 0xb3, 0xa1, 0x85, 0xb9, 0x2b, 0x0f, 0x3a, 0x13, 0xe2, 0x86, 0x2c, 0xfe, 0x0b, 0xb2, 0x53, 0x6c, 0x9c, 0x01, 0x74, 0xc4, 0xa4, 0xa8, 0x81, 0x8e, 0x8a, 0x5f, 0x23, 0x48, 0xd3, 0x3e, 0xf9, 0x9f, 0x95, 0x3b, 0xdb, 0x9a, 0xd1, 0xc7, 0x0f, 0x20, 0xda, 0xd5, 0x8f, 0x08, 0x4b, 0xc8, 0x54, 0x6e, 0x9d, 0xbe, 0x5a, 0x0c, 0xfd, 0xfa, 0x6a, 0xf1, 0xdf, 0x01, 0xff, 0x25, 0x18, 0xd8, 0xc4, 0xea, 0x95, 0x1d, 0x4e, 0x83, 0x11, 0x70, 0x0d, 0x62, 0x7d, 0xa3, 0xdd, 0x21, 0xbc, 0xa4, 0xca, 0x8d, 0xf7, 0xc6, 0x70, 0x79, 0xf1, 0x14, 0xc1, 0x7c, 0xd5, 0x32, 0x89, 0x66, 0x98, 0x36, 0xff, 0x5a, 0x4b, 0xdf, 0x90, 0x2f, 0x10, 0xa4, 0xc6, 0x23, 0xdc, 0x82, 0xdc, 0x78, 0xc0, 0x3e, 0x82, 0x3b, 0x3b, 0x75, 0x55, 0x58, 0x61, 0x0f, 0xa3, 0x2c, 0xb9, 0x62, 0x62, 0xe7, 0x9d, 0x3c, 0x1d, 0x5c, 0x58, 0x83, 0x0b, 0x92, 0xb4, 0xf7, 0x79, 0x21, 0x17, 0x97, 0x20, 0x55, 0xb7, 0xc8, 0xb6, 0x76, 0xf0, 0x94, 0x7d, 0x72, 0x9e, 0xfc, 0xcf, 0xa2, 0x12, 0x56, 0x42, 0x4c, 0x7c, 0x6d, 0x09, 0x12, 0xce, 0xe9, 0xc7, 0x71, 0x08, 0x6f, 0xad, 0x29, 0x21, 0xf6, 0x5b, 0x51, 0x10, 0xfb, 0xad, 0x2a, 0xe1, 0xca, 0xe6, 0xe9, 0x99, 0x1a, 0x7a, 0x79, 0xa6, 0x86, 0x7e, 0x39, 0x53, 0x43, 0xaf, 0xcf, 0x54, 0xf4, 0xe6, 0x4c, 0x45, 0x6f, 0xcf, 0x54, 0xf4, 0xee, 0x4c, 0x45, 0xcf, 0x87, 0x2a, 0xfa, 0x76, 0xa8, 0xa2, 0xef, 0x86, 0x2a, 0xfa, 0x61, 0xa8, 0xa2, 0x1f, 0x87, 0x2a, 0x3a, 0x1d, 0xaa, 0xe8, 0xe5, 0x50, 0x45, 0xaf, 0x87, 0x2a, 0x7a, 0x33, 0x54, 0x43, 0x6f, 0x87, 0x2a, 0x7a, 0x37, 0x54, 0x43, 0xcf, 0x7f, 0x53, 0x43, 0xad, 0x38, 0x5f, 0x9e, 0xdf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x77, 0x56, 0x01, 0x1d, 0x60, 0x1a, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/theproto3/combos/both/theproto3.proto000066400000000000000000000124221317075173200255060ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto3"; package theproto3; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/combos/both/thetest.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Message { enum Humour { UNKNOWN = 0; PUNS = 1; SLAPSTICK = 2; BILL_BAILEY = 3; } string name = 1; Humour hilarity = 2; uint32 height_in_cm = 3; bytes data = 4; int64 result_count = 7; bool true_scotsman = 8; float score = 9; repeated uint64 key = 5; Nested nested = 6; map terrain = 10; test.NinOptNative proto2_field = 11; map proto2_value = 13; } message Nested { string bunny = 1; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message MessageWithMap { map name_mapping = 1; map msg_mapping = 2; map byte_mapping = 3; } message FloatingPoint { double f = 1; } message Uint128Pair { bytes left = 1 [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; bytes right = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message ContainsNestedMap { message NestedMap { map NestedMapField = 1; } } message NotPacked { repeated uint64 key = 5 [packed=false]; }golang-gogoprotobuf-0.5/test/theproto3/combos/both/theproto3pb_test.go000066400000000000000000002157201317075173200263370ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/theproto3.proto /* Package theproto3 is a generated protocol buffer package. It is generated from these files: combos/both/theproto3.proto It has these top-level messages: Message Nested AllMaps AllMapsOrdered MessageWithMap FloatingPoint Uint128Pair ContainsNestedMap NotPacked */ package theproto3 import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/test/combos/both" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMessageMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Message{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nested, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNested(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNested(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Nested{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllMapsMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAllMapsProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMaps(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMaps{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllMapsOrderedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAllMapsOrderedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsOrderedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMapsOrdered(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMapsOrdered{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageWithMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMessageWithMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMessageWithMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MessageWithMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessageWithMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageWithMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessageWithMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MessageWithMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestFloatingPointProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFloatingPointMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkFloatingPointProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkFloatingPointProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedFloatingPoint(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &FloatingPoint{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUint128PairProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUint128PairMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUint128PairProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Uint128Pair, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUint128Pair(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUint128PairProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUint128Pair(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Uint128Pair{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestContainsNestedMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkContainsNestedMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedContainsNestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkContainsNestedMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedContainsNestedMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ContainsNestedMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMap_NestedMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestContainsNestedMap_NestedMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkContainsNestedMap_NestedMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap_NestedMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedContainsNestedMap_NestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkContainsNestedMap_NestedMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedContainsNestedMap_NestedMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ContainsNestedMap_NestedMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNotPackedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNotPackedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNotPackedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NotPacked, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNotPacked(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNotPackedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNotPacked(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NotPacked{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsOrderedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageWithMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFloatingPointJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUint128PairJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestContainsNestedMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNotPackedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Nested{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Nested{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageWithMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageWithMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUint128PairProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUint128PairProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNotPackedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNotPackedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTheproto3Description(t *testing.T) { Theproto3Description() } func TestMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsOrderedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageWithMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFloatingPointVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUint128PairVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestContainsNestedMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestContainsNestedMap_NestedMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNotPackedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsOrderedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestMessageWithMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestFloatingPointFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUint128PairFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestContainsNestedMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestContainsNestedMap_NestedMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNotPackedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestMessageGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsOrderedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMessageWithMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFloatingPointGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUint128PairGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestContainsNestedMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestContainsNestedMap_NestedMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNotPackedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nested, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNested(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsOrderedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMessageWithMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageWithMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MessageWithMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessageWithMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestFloatingPointSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkFloatingPointSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUint128PairSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUint128PairSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Uint128Pair, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUint128Pair(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkContainsNestedMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedContainsNestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMap_NestedMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkContainsNestedMap_NestedMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap_NestedMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedContainsNestedMap_NestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNotPackedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNotPackedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NotPacked, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNotPacked(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMessageStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsOrderedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestMessageWithMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFloatingPointStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUint128PairStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestContainsNestedMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestContainsNestedMap_NestedMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNotPackedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/theproto3/combos/marshaler/000077500000000000000000000000001317075173200235135ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/theproto3/combos/marshaler/proto3_test.go000066400000000000000000000111171317075173200263300ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package theproto3 import ( "reflect" "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": {}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestCustomTypeSize(t *testing.T) { m := &Uint128Pair{} m.Size() // Should not panic. } func TestCustomTypeMarshalUnmarshal(t *testing.T) { m1 := &Uint128Pair{} if b, err := proto.Marshal(m1); err != nil { t.Fatal(err) } else { m2 := &Uint128Pair{} if err := proto.Unmarshal(b, m2); err != nil { t.Fatal(err) } if !reflect.DeepEqual(m1, m2) { t.Errorf("expected %+v, got %+v", m1, m2) } } } func TestNotPackedToPacked(t *testing.T) { input := []uint64{1, 10e9} notpacked := &NotPacked{Key: input} if data, err := proto.Marshal(notpacked); err != nil { t.Fatal(err) } else { packed := &Message{} if err := proto.Unmarshal(data, packed); err != nil { t.Fatal(err) } output := packed.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } func TestPackedToNotPacked(t *testing.T) { input := []uint64{1, 10e9} packed := &Message{Key: input} if data, err := proto.Marshal(packed); err != nil { t.Fatal(err) } else { notpacked := &NotPacked{} if err := proto.Unmarshal(data, notpacked); err != nil { t.Fatal(err) } output := notpacked.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } golang-gogoprotobuf-0.5/test/theproto3/combos/marshaler/theproto3.pb.go000066400000000000000000006663571317075173200264200ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/theproto3.proto /* Package theproto3 is a generated protocol buffer package. It is generated from these files: combos/marshaler/theproto3.proto It has these top-level messages: Message Nested AllMaps AllMapsOrdered MessageWithMap FloatingPoint Uint128Pair ContainsNestedMap NotPacked */ package theproto3 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import test "github.com/gogo/protobuf/test/combos/both" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapEnum int32 const ( MA MapEnum = 0 MB MapEnum = 1 MC MapEnum = 2 ) var MapEnum_name = map[int32]string{ 0: "MA", 1: "MB", 2: "MC", } var MapEnum_value = map[string]int32{ "MA": 0, "MB": 1, "MC": 2, } func (MapEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0} } type Message_Humour int32 const ( UNKNOWN Message_Humour = 0 PUNS Message_Humour = 1 SLAPSTICK Message_Humour = 2 BILL_BAILEY Message_Humour = 3 ) var Message_Humour_name = map[int32]string{ 0: "UNKNOWN", 1: "PUNS", 2: "SLAPSTICK", 3: "BILL_BAILEY", } var Message_Humour_value = map[string]int32{ "UNKNOWN": 0, "PUNS": 1, "SLAPSTICK": 2, "BILL_BAILEY": 3, } func (Message_Humour) EnumDescriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0, 0} } type Message struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Hilarity Message_Humour `protobuf:"varint,2,opt,name=hilarity,proto3,enum=theproto3.Message_Humour" json:"hilarity,omitempty"` HeightInCm uint32 `protobuf:"varint,3,opt,name=height_in_cm,json=heightInCm,proto3" json:"height_in_cm,omitempty"` Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` ResultCount int64 `protobuf:"varint,7,opt,name=result_count,json=resultCount,proto3" json:"result_count,omitempty"` TrueScotsman bool `protobuf:"varint,8,opt,name=true_scotsman,json=trueScotsman,proto3" json:"true_scotsman,omitempty"` Score float32 `protobuf:"fixed32,9,opt,name=score,proto3" json:"score,omitempty"` Key []uint64 `protobuf:"varint,5,rep,packed,name=key" json:"key,omitempty"` Nested *Nested `protobuf:"bytes,6,opt,name=nested" json:"nested,omitempty"` Terrain map[int64]*Nested `protobuf:"bytes,10,rep,name=terrain" json:"terrain,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Proto2Field *test.NinOptNative `protobuf:"bytes,11,opt,name=proto2_field,json=proto2Field" json:"proto2_field,omitempty"` Proto2Value map[int64]*test.NinOptEnum `protobuf:"bytes,13,rep,name=proto2_value,json=proto2Value" json:"proto2_value,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *Message) Reset() { *m = Message{} } func (*Message) ProtoMessage() {} func (*Message) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0} } type Nested struct { Bunny string `protobuf:"bytes,1,opt,name=bunny,proto3" json:"bunny,omitempty"` } func (m *Nested) Reset() { *m = Nested{} } func (*Nested) ProtoMessage() {} func (*Nested) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{1} } type AllMaps struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key,proto3" protobuf_val:"zigzag32,2,opt,name=value,proto3"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"zigzag64,2,opt,name=value,proto3"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=theproto3.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *AllMaps) Reset() { *m = AllMaps{} } func (*AllMaps) ProtoMessage() {} func (*AllMaps) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{2} } type AllMapsOrdered struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key,proto3" protobuf_val:"zigzag32,2,opt,name=value,proto3"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"zigzag64,2,opt,name=value,proto3"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=theproto3.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *AllMapsOrdered) Reset() { *m = AllMapsOrdered{} } func (*AllMapsOrdered) ProtoMessage() {} func (*AllMapsOrdered) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{3} } type MessageWithMap struct { NameMapping map[int32]string `protobuf:"bytes,1,rep,name=name_mapping,json=nameMapping" json:"name_mapping,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` MsgMapping map[int64]*FloatingPoint `protobuf:"bytes,2,rep,name=msg_mapping,json=msgMapping" json:"msg_mapping,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` ByteMapping map[bool][]byte `protobuf:"bytes,3,rep,name=byte_mapping,json=byteMapping" json:"byte_mapping,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MessageWithMap) Reset() { *m = MessageWithMap{} } func (*MessageWithMap) ProtoMessage() {} func (*MessageWithMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{4} } type FloatingPoint struct { F float64 `protobuf:"fixed64,1,opt,name=f,proto3" json:"f,omitempty"` } func (m *FloatingPoint) Reset() { *m = FloatingPoint{} } func (*FloatingPoint) ProtoMessage() {} func (*FloatingPoint) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{5} } type Uint128Pair struct { Left github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,1,opt,name=left,proto3,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"left"` Right *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=right,proto3,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"right,omitempty"` } func (m *Uint128Pair) Reset() { *m = Uint128Pair{} } func (*Uint128Pair) ProtoMessage() {} func (*Uint128Pair) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{6} } type ContainsNestedMap struct { } func (m *ContainsNestedMap) Reset() { *m = ContainsNestedMap{} } func (*ContainsNestedMap) ProtoMessage() {} func (*ContainsNestedMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{7} } type ContainsNestedMap_NestedMap struct { NestedMapField map[string]float64 `protobuf:"bytes,1,rep,name=NestedMapField" json:"NestedMapField,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` } func (m *ContainsNestedMap_NestedMap) Reset() { *m = ContainsNestedMap_NestedMap{} } func (*ContainsNestedMap_NestedMap) ProtoMessage() {} func (*ContainsNestedMap_NestedMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{7, 0} } type NotPacked struct { Key []uint64 `protobuf:"varint,5,rep,name=key" json:"key,omitempty"` } func (m *NotPacked) Reset() { *m = NotPacked{} } func (*NotPacked) ProtoMessage() {} func (*NotPacked) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{8} } func init() { proto.RegisterType((*Message)(nil), "theproto3.Message") proto.RegisterType((*Nested)(nil), "theproto3.Nested") proto.RegisterType((*AllMaps)(nil), "theproto3.AllMaps") proto.RegisterType((*AllMapsOrdered)(nil), "theproto3.AllMapsOrdered") proto.RegisterType((*MessageWithMap)(nil), "theproto3.MessageWithMap") proto.RegisterType((*FloatingPoint)(nil), "theproto3.FloatingPoint") proto.RegisterType((*Uint128Pair)(nil), "theproto3.Uint128Pair") proto.RegisterType((*ContainsNestedMap)(nil), "theproto3.ContainsNestedMap") proto.RegisterType((*ContainsNestedMap_NestedMap)(nil), "theproto3.ContainsNestedMap.NestedMap") proto.RegisterType((*NotPacked)(nil), "theproto3.NotPacked") proto.RegisterEnum("theproto3.MapEnum", MapEnum_name, MapEnum_value) proto.RegisterEnum("theproto3.Message_Humour", Message_Humour_name, Message_Humour_value) } func (this *Message) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *Nested) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *AllMaps) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *AllMapsOrdered) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *MessageWithMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *FloatingPoint) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *Uint128Pair) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *ContainsNestedMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *ContainsNestedMap_NestedMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *NotPacked) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func Theproto3Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 7921 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x70, 0x23, 0xd7, 0x99, 0x1e, 0x1b, 0x0d, 0x92, 0xe0, 0x0f, 0x90, 0x6c, 0x36, 0x47, 0x14, 0x44, 0x8d, 0xc8, 0x19, 0x68, 0x34, 0xa2, 0xb8, 0x16, 0x67, 0x86, 0xc3, 0xb9, 0x61, 0x2c, 0x69, 0x01, 0x10, 0x1c, 0x71, 0xcc, 0x9b, 0x9b, 0xa4, 0xa5, 0x59, 0xa7, 0x82, 0x6a, 0x02, 0x87, 0x24, 0x24, 0xa0, 0x1b, 0x8b, 0x6e, 0x48, 0xa2, 0x2a, 0x95, 0x52, 0xd6, 0xc9, 0xc6, 0x9b, 0x54, 0xae, 0x9b, 0x54, 0xbc, 0x8e, 0x2f, 0xf2, 0xa6, 0x36, 0xf6, 0xee, 0xe6, 0xe2, 0xf5, 0x6e, 0x9c, 0xcd, 0x56, 0x2a, 0xab, 0x3c, 0x38, 0x99, 0xbc, 0xa4, 0xbc, 0xc9, 0x4b, 0xca, 0x95, 0x52, 0x59, 0x63, 0x6f, 0xc5, 0x49, 0x9c, 0xc4, 0xd9, 0x75, 0x55, 0xb6, 0xca, 0xfb, 0x90, 0x3a, 0xb7, 0xee, 0x73, 0x0e, 0x1a, 0x68, 0x70, 0x24, 0xd9, 0xfb, 0xe0, 0x97, 0x19, 0xf4, 0x39, 0xff, 0xf7, 0xf5, 0xdf, 0xff, 0xed, 0xfc, 0x7d, 0xba, 0x01, 0xc2, 0x6f, 0xde, 0x84, 0x73, 0x47, 0xae, 0x7b, 0xd4, 0x40, 0x97, 0x5a, 0x6d, 0xd7, 0x77, 0x0f, 0x3a, 0x87, 0x97, 0x6a, 0xc8, 0xab, 0xb6, 0xeb, 0x2d, 0xdf, 0x6d, 0x2f, 0x91, 0x31, 0x73, 0x92, 0x4a, 0x2c, 0x71, 0x89, 0xdc, 0x26, 0x4c, 0xad, 0xd5, 0x1b, 0x68, 0x35, 0x10, 0xdc, 0x45, 0xbe, 0x79, 0x13, 0x92, 0x87, 0xf5, 0x06, 0xca, 0x6a, 0xe7, 0xf4, 0x85, 0xf4, 0xf2, 0x85, 0x25, 0x05, 0xb4, 0x24, 0x23, 0x76, 0xf0, 0xb0, 0x45, 0x10, 0xb9, 0xef, 0x26, 0x61, 0x3a, 0x62, 0xd6, 0x34, 0x21, 0xe9, 0xd8, 0x4d, 0xcc, 0xa8, 0x2d, 0x8c, 0x59, 0xe4, 0xb3, 0x99, 0x85, 0xd1, 0x96, 0x5d, 0x7d, 0xd5, 0x3e, 0x42, 0xd9, 0x04, 0x19, 0xe6, 0x87, 0xe6, 0x1c, 0x40, 0x0d, 0xb5, 0x90, 0x53, 0x43, 0x4e, 0xf5, 0x24, 0xab, 0x9f, 0xd3, 0x17, 0xc6, 0x2c, 0x61, 0xc4, 0xfc, 0x19, 0x98, 0x6a, 0x75, 0x0e, 0x1a, 0xf5, 0x6a, 0x45, 0x10, 0x83, 0x73, 0xfa, 0xc2, 0xb0, 0x65, 0xd0, 0x89, 0xd5, 0x50, 0xf8, 0x69, 0x98, 0x7c, 0x1d, 0xd9, 0xaf, 0x8a, 0xa2, 0x69, 0x22, 0x3a, 0x81, 0x87, 0x05, 0xc1, 0x12, 0x64, 0x9a, 0xc8, 0xf3, 0xec, 0x23, 0x54, 0xf1, 0x4f, 0x5a, 0x28, 0x9b, 0x24, 0x57, 0x7f, 0xae, 0xeb, 0xea, 0xd5, 0x2b, 0x4f, 0x33, 0xd4, 0xde, 0x49, 0x0b, 0x99, 0x05, 0x18, 0x43, 0x4e, 0xa7, 0x49, 0x19, 0x86, 0x7b, 0xd8, 0xaf, 0xec, 0x74, 0x9a, 0x2a, 0x4b, 0x0a, 0xc3, 0x18, 0xc5, 0xa8, 0x87, 0xda, 0xaf, 0xd5, 0xab, 0x28, 0x3b, 0x42, 0x08, 0x9e, 0xee, 0x22, 0xd8, 0xa5, 0xf3, 0x2a, 0x07, 0xc7, 0x99, 0x25, 0x18, 0x43, 0x6f, 0xf8, 0xc8, 0xf1, 0xea, 0xae, 0x93, 0x1d, 0x25, 0x24, 0x4f, 0x45, 0x78, 0x11, 0x35, 0x6a, 0x2a, 0x45, 0x88, 0x33, 0xaf, 0xc3, 0xa8, 0xdb, 0xf2, 0xeb, 0xae, 0xe3, 0x65, 0x53, 0xe7, 0xb4, 0x85, 0xf4, 0xf2, 0xd9, 0xc8, 0x40, 0xd8, 0xa6, 0x32, 0x16, 0x17, 0x36, 0xd7, 0xc1, 0xf0, 0xdc, 0x4e, 0xbb, 0x8a, 0x2a, 0x55, 0xb7, 0x86, 0x2a, 0x75, 0xe7, 0xd0, 0xcd, 0x8e, 0x11, 0x82, 0xf9, 0xee, 0x0b, 0x21, 0x82, 0x25, 0xb7, 0x86, 0xd6, 0x9d, 0x43, 0xd7, 0x9a, 0xf0, 0xa4, 0x63, 0x73, 0x06, 0x46, 0xbc, 0x13, 0xc7, 0xb7, 0xdf, 0xc8, 0x66, 0x48, 0x84, 0xb0, 0xa3, 0xdc, 0xbf, 0x1a, 0x81, 0xc9, 0x41, 0x42, 0xec, 0x36, 0x0c, 0x1f, 0xe2, 0xab, 0xcc, 0x26, 0x4e, 0x63, 0x03, 0x8a, 0x91, 0x8d, 0x38, 0xf2, 0x90, 0x46, 0x2c, 0x40, 0xda, 0x41, 0x9e, 0x8f, 0x6a, 0x34, 0x22, 0xf4, 0x01, 0x63, 0x0a, 0x28, 0xa8, 0x3b, 0xa4, 0x92, 0x0f, 0x15, 0x52, 0x2f, 0xc3, 0x64, 0xa0, 0x52, 0xa5, 0x6d, 0x3b, 0x47, 0x3c, 0x36, 0x2f, 0xc5, 0x69, 0xb2, 0x54, 0xe6, 0x38, 0x0b, 0xc3, 0xac, 0x09, 0x24, 0x1d, 0x9b, 0xab, 0x00, 0xae, 0x83, 0xdc, 0xc3, 0x4a, 0x0d, 0x55, 0x1b, 0xd9, 0x54, 0x0f, 0x2b, 0x6d, 0x63, 0x91, 0x2e, 0x2b, 0xb9, 0x74, 0xb4, 0xda, 0x30, 0x6f, 0x85, 0xa1, 0x36, 0xda, 0x23, 0x52, 0x36, 0x69, 0x92, 0x75, 0x45, 0xdb, 0x3e, 0x4c, 0xb4, 0x11, 0x8e, 0x7b, 0x54, 0x63, 0x57, 0x36, 0x46, 0x94, 0x58, 0x8a, 0xbd, 0x32, 0x8b, 0xc1, 0xe8, 0x85, 0x8d, 0xb7, 0xc5, 0x43, 0xf3, 0x49, 0x08, 0x06, 0x2a, 0x24, 0xac, 0x80, 0x54, 0xa1, 0x0c, 0x1f, 0xdc, 0xb2, 0x9b, 0x68, 0xf6, 0x4d, 0x98, 0x90, 0xcd, 0x63, 0x9e, 0x81, 0x61, 0xcf, 0xb7, 0xdb, 0x3e, 0x89, 0xc2, 0x61, 0x8b, 0x1e, 0x98, 0x06, 0xe8, 0xc8, 0xa9, 0x91, 0x2a, 0x37, 0x6c, 0xe1, 0x8f, 0xe6, 0xcf, 0x86, 0x17, 0xac, 0x93, 0x0b, 0xbe, 0xd8, 0xed, 0x51, 0x89, 0x59, 0xbd, 0xee, 0xd9, 0x1b, 0x30, 0x2e, 0x5d, 0xc0, 0xa0, 0xa7, 0xce, 0xfd, 0x05, 0x78, 0x24, 0x92, 0xda, 0x7c, 0x19, 0xce, 0x74, 0x9c, 0xba, 0xe3, 0xa3, 0x76, 0xab, 0x8d, 0x70, 0xc4, 0xd2, 0x53, 0x65, 0xff, 0xdb, 0x68, 0x8f, 0x98, 0xdb, 0x17, 0xa5, 0x29, 0x8b, 0x35, 0xdd, 0xe9, 0x1e, 0x5c, 0x1c, 0x4b, 0x7d, 0x6f, 0xd4, 0x78, 0xeb, 0xad, 0xb7, 0xde, 0x4a, 0xe4, 0x3e, 0x33, 0x02, 0x67, 0xa2, 0x72, 0x26, 0x32, 0x7d, 0x67, 0x60, 0xc4, 0xe9, 0x34, 0x0f, 0x50, 0x9b, 0x18, 0x69, 0xd8, 0x62, 0x47, 0x66, 0x01, 0x86, 0x1b, 0xf6, 0x01, 0x6a, 0x64, 0x93, 0xe7, 0xb4, 0x85, 0x89, 0xe5, 0x9f, 0x19, 0x28, 0x2b, 0x97, 0x36, 0x30, 0xc4, 0xa2, 0x48, 0xf3, 0x79, 0x48, 0xb2, 0x12, 0x8d, 0x19, 0x16, 0x07, 0x63, 0xc0, 0xb9, 0x64, 0x11, 0x9c, 0xf9, 0x38, 0x8c, 0xe1, 0xff, 0x69, 0x6c, 0x8c, 0x10, 0x9d, 0x53, 0x78, 0x00, 0xc7, 0x85, 0x39, 0x0b, 0x29, 0x92, 0x26, 0x35, 0xc4, 0x97, 0xb6, 0xe0, 0x18, 0x07, 0x56, 0x0d, 0x1d, 0xda, 0x9d, 0x86, 0x5f, 0x79, 0xcd, 0x6e, 0x74, 0x10, 0x09, 0xf8, 0x31, 0x2b, 0xc3, 0x06, 0x3f, 0x81, 0xc7, 0xcc, 0x79, 0x48, 0xd3, 0xac, 0xaa, 0x3b, 0x35, 0xf4, 0x06, 0xa9, 0x9e, 0xc3, 0x16, 0x4d, 0xb4, 0x75, 0x3c, 0x82, 0x4f, 0xff, 0x8a, 0xe7, 0x3a, 0x3c, 0x34, 0xc9, 0x29, 0xf0, 0x00, 0x39, 0xfd, 0x0d, 0xb5, 0x70, 0x3f, 0x11, 0x7d, 0x79, 0x6a, 0x4c, 0xe5, 0xbe, 0x9e, 0x80, 0x24, 0xa9, 0x17, 0x93, 0x90, 0xde, 0xbb, 0xb7, 0x53, 0xae, 0xac, 0x6e, 0xef, 0x17, 0x37, 0xca, 0x86, 0x66, 0x4e, 0x00, 0x90, 0x81, 0xb5, 0x8d, 0xed, 0xc2, 0x9e, 0x91, 0x08, 0x8e, 0xd7, 0xb7, 0xf6, 0xae, 0xaf, 0x18, 0x7a, 0x00, 0xd8, 0xa7, 0x03, 0x49, 0x51, 0xe0, 0xea, 0xb2, 0x31, 0x6c, 0x1a, 0x90, 0xa1, 0x04, 0xeb, 0x2f, 0x97, 0x57, 0xaf, 0xaf, 0x18, 0x23, 0xf2, 0xc8, 0xd5, 0x65, 0x63, 0xd4, 0x1c, 0x87, 0x31, 0x32, 0x52, 0xdc, 0xde, 0xde, 0x30, 0x52, 0x01, 0xe7, 0xee, 0x9e, 0xb5, 0xbe, 0x75, 0xc7, 0x18, 0x0b, 0x38, 0xef, 0x58, 0xdb, 0xfb, 0x3b, 0x06, 0x04, 0x0c, 0x9b, 0xe5, 0xdd, 0xdd, 0xc2, 0x9d, 0xb2, 0x91, 0x0e, 0x24, 0x8a, 0xf7, 0xf6, 0xca, 0xbb, 0x46, 0x46, 0x52, 0xeb, 0xea, 0xb2, 0x31, 0x1e, 0x9c, 0xa2, 0xbc, 0xb5, 0xbf, 0x69, 0x4c, 0x98, 0x53, 0x30, 0x4e, 0x4f, 0xc1, 0x95, 0x98, 0x54, 0x86, 0xae, 0xaf, 0x18, 0x46, 0xa8, 0x08, 0x65, 0x99, 0x92, 0x06, 0xae, 0xaf, 0x18, 0x66, 0xae, 0x04, 0xc3, 0x24, 0xba, 0x4c, 0x13, 0x26, 0x36, 0x0a, 0xc5, 0xf2, 0x46, 0x65, 0x7b, 0x67, 0x6f, 0x7d, 0x7b, 0xab, 0xb0, 0x61, 0x68, 0xe1, 0x98, 0x55, 0xfe, 0xf8, 0xfe, 0xba, 0x55, 0x5e, 0x35, 0x12, 0xe2, 0xd8, 0x4e, 0xb9, 0xb0, 0x57, 0x5e, 0x35, 0xf4, 0x5c, 0x15, 0xce, 0x44, 0xd5, 0xc9, 0xc8, 0xcc, 0x10, 0x5c, 0x9c, 0xe8, 0xe1, 0x62, 0xc2, 0xd5, 0xe5, 0xe2, 0x5f, 0xd5, 0x60, 0x3a, 0x62, 0xad, 0x88, 0x3c, 0xc9, 0x0b, 0x30, 0x4c, 0x43, 0x94, 0xae, 0x9e, 0xcf, 0x44, 0x2e, 0x3a, 0x24, 0x60, 0xbb, 0x56, 0x50, 0x82, 0x13, 0x3b, 0x08, 0xbd, 0x47, 0x07, 0x81, 0x29, 0xba, 0x94, 0xfc, 0x94, 0x06, 0xd9, 0x5e, 0xdc, 0x31, 0x85, 0x22, 0x21, 0x15, 0x8a, 0xdb, 0xaa, 0x02, 0xe7, 0x7b, 0x5f, 0x43, 0x97, 0x16, 0x5f, 0xd6, 0x60, 0x26, 0xba, 0xd1, 0x8a, 0xd4, 0xe1, 0x79, 0x18, 0x69, 0x22, 0xff, 0xd8, 0xe5, 0xcd, 0xc6, 0xc5, 0x88, 0x25, 0x0c, 0x4f, 0xab, 0xb6, 0x62, 0x28, 0x71, 0x0d, 0xd4, 0x7b, 0x75, 0x4b, 0x54, 0x9b, 0x2e, 0x4d, 0x7f, 0x29, 0x01, 0x8f, 0x44, 0x92, 0x47, 0x2a, 0xfa, 0x04, 0x40, 0xdd, 0x69, 0x75, 0x7c, 0xda, 0x50, 0xd0, 0xfa, 0x34, 0x46, 0x46, 0x48, 0xee, 0xe3, 0xda, 0xd3, 0xf1, 0x83, 0x79, 0x9d, 0xcc, 0x03, 0x1d, 0x22, 0x02, 0x37, 0x43, 0x45, 0x93, 0x44, 0xd1, 0xb9, 0x1e, 0x57, 0xda, 0xb5, 0x56, 0x5f, 0x06, 0xa3, 0xda, 0xa8, 0x23, 0xc7, 0xaf, 0x78, 0x7e, 0x1b, 0xd9, 0xcd, 0xba, 0x73, 0x44, 0x0a, 0x70, 0x2a, 0x3f, 0x7c, 0x68, 0x37, 0x3c, 0x64, 0x4d, 0xd2, 0xe9, 0x5d, 0x3e, 0x8b, 0x11, 0x64, 0x8d, 0x6b, 0x0b, 0x88, 0x11, 0x09, 0x41, 0xa7, 0x03, 0x44, 0xee, 0xb7, 0x53, 0x90, 0x16, 0xda, 0x52, 0xf3, 0x3c, 0x64, 0x5e, 0xb1, 0x5f, 0xb3, 0x2b, 0xfc, 0x56, 0x83, 0x5a, 0x22, 0x8d, 0xc7, 0x76, 0xd8, 0xed, 0xc6, 0x65, 0x38, 0x43, 0x44, 0xdc, 0x8e, 0x8f, 0xda, 0x95, 0x6a, 0xc3, 0xf6, 0x3c, 0x62, 0xb4, 0x14, 0x11, 0x35, 0xf1, 0xdc, 0x36, 0x9e, 0x2a, 0xf1, 0x19, 0xf3, 0x1a, 0x4c, 0x13, 0x44, 0xb3, 0xd3, 0xf0, 0xeb, 0xad, 0x06, 0xaa, 0xe0, 0x9b, 0x1f, 0x8f, 0x14, 0xe2, 0x40, 0xb3, 0x29, 0x2c, 0xb1, 0xc9, 0x04, 0xb0, 0x46, 0x9e, 0xb9, 0x0a, 0x4f, 0x10, 0xd8, 0x11, 0x72, 0x50, 0xdb, 0xf6, 0x51, 0x05, 0xfd, 0x7c, 0xc7, 0x6e, 0x78, 0x15, 0xdb, 0xa9, 0x55, 0x8e, 0x6d, 0xef, 0x38, 0x7b, 0x06, 0x13, 0x14, 0x13, 0x59, 0xcd, 0x7a, 0x0c, 0x0b, 0xde, 0x61, 0x72, 0x65, 0x22, 0x56, 0x70, 0x6a, 0x2f, 0xda, 0xde, 0xb1, 0x99, 0x87, 0x19, 0xc2, 0xe2, 0xf9, 0xed, 0xba, 0x73, 0x54, 0xa9, 0x1e, 0xa3, 0xea, 0xab, 0x95, 0x8e, 0x7f, 0x78, 0x33, 0xfb, 0xb8, 0x78, 0x7e, 0xa2, 0xe1, 0x2e, 0x91, 0x29, 0x61, 0x91, 0x7d, 0xff, 0xf0, 0xa6, 0xb9, 0x0b, 0x19, 0xec, 0x8c, 0x66, 0xfd, 0x4d, 0x54, 0x39, 0x74, 0xdb, 0x64, 0x65, 0x99, 0x88, 0xc8, 0x6c, 0xc1, 0x82, 0x4b, 0xdb, 0x0c, 0xb0, 0xe9, 0xd6, 0x50, 0x7e, 0x78, 0x77, 0xa7, 0x5c, 0x5e, 0xb5, 0xd2, 0x9c, 0x65, 0xcd, 0x6d, 0xe3, 0x80, 0x3a, 0x72, 0x03, 0x03, 0xa7, 0x69, 0x40, 0x1d, 0xb9, 0xdc, 0xbc, 0xd7, 0x60, 0xba, 0x5a, 0xa5, 0xd7, 0x5c, 0xaf, 0x56, 0xd8, 0x2d, 0x8a, 0x97, 0x35, 0x24, 0x63, 0x55, 0xab, 0x77, 0xa8, 0x00, 0x8b, 0x71, 0xcf, 0xbc, 0x05, 0x8f, 0x84, 0xc6, 0x12, 0x81, 0x53, 0x5d, 0x57, 0xa9, 0x42, 0xaf, 0xc1, 0x74, 0xeb, 0xa4, 0x1b, 0x68, 0x4a, 0x67, 0x6c, 0x9d, 0xa8, 0xb0, 0x1b, 0x70, 0xa6, 0x75, 0xdc, 0xea, 0xc6, 0x4d, 0x8b, 0x38, 0xb3, 0x75, 0xdc, 0x52, 0x81, 0x4f, 0x91, 0xfb, 0xd5, 0x36, 0xaa, 0xda, 0x3e, 0xaa, 0x65, 0x1f, 0x15, 0xc5, 0x85, 0x09, 0xf3, 0x12, 0x18, 0xd5, 0x6a, 0x05, 0x39, 0xf6, 0x41, 0x03, 0x55, 0xec, 0x36, 0x72, 0x6c, 0x2f, 0x3b, 0x2f, 0x0a, 0x4f, 0x54, 0xab, 0x65, 0x32, 0x5b, 0x20, 0x93, 0xe6, 0x22, 0x4c, 0xb9, 0x07, 0xaf, 0x54, 0x69, 0x48, 0x56, 0x5a, 0x6d, 0x74, 0x58, 0x7f, 0x23, 0x7b, 0x81, 0xd8, 0x77, 0x12, 0x4f, 0x90, 0x80, 0xdc, 0x21, 0xc3, 0xe6, 0x33, 0x60, 0x54, 0xbd, 0x63, 0xbb, 0xdd, 0x22, 0x3d, 0x81, 0xd7, 0xb2, 0xab, 0x28, 0xfb, 0x14, 0x15, 0xa5, 0xe3, 0x5b, 0x7c, 0x18, 0xa7, 0x84, 0xf7, 0x7a, 0xfd, 0xd0, 0xe7, 0x8c, 0x4f, 0xd3, 0x94, 0x20, 0x63, 0x8c, 0x6d, 0x01, 0x0c, 0x6c, 0x0a, 0xe9, 0xc4, 0x0b, 0x44, 0x6c, 0xa2, 0x75, 0xdc, 0x12, 0xcf, 0xfb, 0x24, 0x8c, 0x63, 0xc9, 0xf0, 0xa4, 0xcf, 0xd0, 0x7e, 0xa6, 0x75, 0x2c, 0x9c, 0xf1, 0x43, 0x6b, 0x2d, 0x73, 0x79, 0xc8, 0x88, 0xf1, 0x69, 0x8e, 0x01, 0x8d, 0x50, 0x43, 0xc3, 0x6b, 0x7d, 0x69, 0x7b, 0x15, 0xaf, 0xd2, 0x3f, 0x57, 0x36, 0x12, 0xb8, 0x5b, 0xd8, 0x58, 0xdf, 0x2b, 0x57, 0xac, 0xfd, 0xad, 0xbd, 0xf5, 0xcd, 0xb2, 0xa1, 0x8b, 0x6d, 0xe9, 0x37, 0x12, 0x30, 0x21, 0xdf, 0x61, 0x98, 0x1f, 0x85, 0x47, 0xf9, 0x76, 0x80, 0x87, 0xfc, 0xca, 0xeb, 0xf5, 0x36, 0x49, 0x99, 0xa6, 0x4d, 0x3b, 0xec, 0xc0, 0x69, 0x67, 0x98, 0xd4, 0x2e, 0xf2, 0x5f, 0xaa, 0xb7, 0x71, 0x42, 0x34, 0x6d, 0xdf, 0xdc, 0x80, 0x79, 0xc7, 0xad, 0x78, 0xbe, 0xed, 0xd4, 0xec, 0x76, 0xad, 0x12, 0x6e, 0xc4, 0x54, 0xec, 0x6a, 0x15, 0x79, 0x9e, 0x4b, 0x97, 0xaa, 0x80, 0xe5, 0xac, 0xe3, 0xee, 0x32, 0xe1, 0xb0, 0x86, 0x17, 0x98, 0xa8, 0x12, 0x60, 0x7a, 0xaf, 0x00, 0x7b, 0x1c, 0xc6, 0x9a, 0x76, 0xab, 0x82, 0x1c, 0xbf, 0x7d, 0x42, 0xfa, 0xca, 0x94, 0x95, 0x6a, 0xda, 0xad, 0x32, 0x3e, 0xfe, 0xf1, 0xb4, 0xf7, 0xff, 0x55, 0x87, 0x8c, 0xd8, 0x5b, 0xe2, 0x56, 0xbd, 0x4a, 0xd6, 0x11, 0x8d, 0x54, 0x9a, 0x27, 0xfb, 0x76, 0xa2, 0x4b, 0x25, 0xbc, 0xc0, 0xe4, 0x47, 0x68, 0xc7, 0x67, 0x51, 0x24, 0x5e, 0xdc, 0x71, 0x6d, 0x41, 0xf4, 0x2e, 0x26, 0x65, 0xb1, 0x23, 0xf3, 0x0e, 0x8c, 0xbc, 0xe2, 0x11, 0xee, 0x11, 0xc2, 0x7d, 0xa1, 0x3f, 0xf7, 0xdd, 0x5d, 0x42, 0x3e, 0x76, 0x77, 0xb7, 0xb2, 0xb5, 0x6d, 0x6d, 0x16, 0x36, 0x2c, 0x06, 0x37, 0x1f, 0x83, 0x64, 0xc3, 0x7e, 0xf3, 0x44, 0x5e, 0x8a, 0xc8, 0xd0, 0xa0, 0x86, 0x7f, 0x0c, 0x92, 0xaf, 0x23, 0xfb, 0x55, 0x79, 0x01, 0x20, 0x43, 0x1f, 0x62, 0xe8, 0x5f, 0x82, 0x61, 0x62, 0x2f, 0x13, 0x80, 0x59, 0xcc, 0x18, 0x32, 0x53, 0x90, 0x2c, 0x6d, 0x5b, 0x38, 0xfc, 0x0d, 0xc8, 0xd0, 0xd1, 0xca, 0xce, 0x7a, 0xb9, 0x54, 0x36, 0x12, 0xb9, 0x6b, 0x30, 0x42, 0x8d, 0x80, 0x53, 0x23, 0x30, 0x83, 0x31, 0xc4, 0x0e, 0x19, 0x87, 0xc6, 0x67, 0xf7, 0x37, 0x8b, 0x65, 0xcb, 0x48, 0x88, 0xee, 0xf5, 0x20, 0x23, 0xb6, 0x95, 0x3f, 0x9e, 0x98, 0xfa, 0x3d, 0x0d, 0xd2, 0x42, 0x9b, 0x88, 0x1b, 0x14, 0xbb, 0xd1, 0x70, 0x5f, 0xaf, 0xd8, 0x8d, 0xba, 0xed, 0xb1, 0xa0, 0x00, 0x32, 0x54, 0xc0, 0x23, 0x83, 0x3a, 0xed, 0xc7, 0xa2, 0xfc, 0x17, 0x34, 0x30, 0xd4, 0x16, 0x53, 0x51, 0x50, 0xfb, 0x89, 0x2a, 0xf8, 0x39, 0x0d, 0x26, 0xe4, 0xbe, 0x52, 0x51, 0xef, 0xfc, 0x4f, 0x54, 0xbd, 0x6f, 0x27, 0x60, 0x5c, 0xea, 0x26, 0x07, 0xd5, 0xee, 0xe7, 0x61, 0xaa, 0x5e, 0x43, 0xcd, 0x96, 0xeb, 0x23, 0xa7, 0x7a, 0x52, 0x69, 0xa0, 0xd7, 0x50, 0x23, 0x9b, 0x23, 0x85, 0xe2, 0x52, 0xff, 0x7e, 0x75, 0x69, 0x3d, 0xc4, 0x6d, 0x60, 0x58, 0x7e, 0x7a, 0x7d, 0xb5, 0xbc, 0xb9, 0xb3, 0xbd, 0x57, 0xde, 0x2a, 0xdd, 0xab, 0xec, 0x6f, 0x7d, 0x6c, 0x6b, 0xfb, 0xa5, 0x2d, 0xcb, 0xa8, 0x2b, 0x62, 0x1f, 0x62, 0xaa, 0xef, 0x80, 0xa1, 0x2a, 0x65, 0x3e, 0x0a, 0x51, 0x6a, 0x19, 0x43, 0xe6, 0x34, 0x4c, 0x6e, 0x6d, 0x57, 0x76, 0xd7, 0x57, 0xcb, 0x95, 0xf2, 0xda, 0x5a, 0xb9, 0xb4, 0xb7, 0x4b, 0x6f, 0xe0, 0x03, 0xe9, 0x3d, 0x39, 0xa9, 0x3f, 0xab, 0xc3, 0x74, 0x84, 0x26, 0x66, 0x81, 0xdd, 0x3b, 0xd0, 0xdb, 0x99, 0x67, 0x07, 0xd1, 0x7e, 0x09, 0x2f, 0xf9, 0x3b, 0x76, 0xdb, 0x67, 0xb7, 0x1a, 0xcf, 0x00, 0xb6, 0x92, 0xe3, 0xd7, 0x0f, 0xeb, 0xa8, 0xcd, 0xf6, 0x3b, 0xe8, 0x0d, 0xc5, 0x64, 0x38, 0x4e, 0xb7, 0x3c, 0x3e, 0x02, 0x66, 0xcb, 0xf5, 0xea, 0x7e, 0xfd, 0x35, 0x54, 0xa9, 0x3b, 0x7c, 0x73, 0x04, 0xdf, 0x60, 0x24, 0x2d, 0x83, 0xcf, 0xac, 0x3b, 0x7e, 0x20, 0xed, 0xa0, 0x23, 0x5b, 0x91, 0xc6, 0x05, 0x5c, 0xb7, 0x0c, 0x3e, 0x13, 0x48, 0x9f, 0x87, 0x4c, 0xcd, 0xed, 0xe0, 0xae, 0x8b, 0xca, 0xe1, 0xf5, 0x42, 0xb3, 0xd2, 0x74, 0x2c, 0x10, 0x61, 0xfd, 0x74, 0xb8, 0x2b, 0x93, 0xb1, 0xd2, 0x74, 0x8c, 0x8a, 0x3c, 0x0d, 0x93, 0xf6, 0xd1, 0x51, 0x1b, 0x93, 0x73, 0x22, 0x7a, 0x87, 0x30, 0x11, 0x0c, 0x13, 0xc1, 0xd9, 0xbb, 0x90, 0xe2, 0x76, 0xc0, 0x4b, 0x32, 0xb6, 0x44, 0xa5, 0x45, 0x77, 0xe6, 0x12, 0x0b, 0x63, 0x56, 0xca, 0xe1, 0x93, 0xe7, 0x21, 0x53, 0xf7, 0x2a, 0xe1, 0x26, 0x73, 0xe2, 0x5c, 0x62, 0x21, 0x65, 0xa5, 0xeb, 0x5e, 0xb0, 0x41, 0x97, 0xfb, 0x72, 0x02, 0x26, 0xe4, 0x4d, 0x72, 0x73, 0x15, 0x52, 0x0d, 0xb7, 0x6a, 0x93, 0xd0, 0xa2, 0x4f, 0x68, 0x16, 0x62, 0xf6, 0xd5, 0x97, 0x36, 0x98, 0xbc, 0x15, 0x20, 0x67, 0xff, 0xa3, 0x06, 0x29, 0x3e, 0x6c, 0xce, 0x40, 0xb2, 0x65, 0xfb, 0xc7, 0x84, 0x6e, 0xb8, 0x98, 0x30, 0x34, 0x8b, 0x1c, 0xe3, 0x71, 0xaf, 0x65, 0x3b, 0x24, 0x04, 0xd8, 0x38, 0x3e, 0xc6, 0x7e, 0x6d, 0x20, 0xbb, 0x46, 0x6e, 0x3f, 0xdc, 0x66, 0x13, 0x39, 0xbe, 0xc7, 0xfd, 0xca, 0xc6, 0x4b, 0x6c, 0xd8, 0xfc, 0x19, 0x98, 0xf2, 0xdb, 0x76, 0xbd, 0x21, 0xc9, 0x26, 0x89, 0xac, 0xc1, 0x27, 0x02, 0xe1, 0x3c, 0x3c, 0xc6, 0x79, 0x6b, 0xc8, 0xb7, 0xab, 0xc7, 0xa8, 0x16, 0x82, 0x46, 0xc8, 0x0e, 0xec, 0xa3, 0x4c, 0x60, 0x95, 0xcd, 0x73, 0x6c, 0xee, 0x0f, 0x34, 0x98, 0xe2, 0x37, 0x4c, 0xb5, 0xc0, 0x58, 0x9b, 0x00, 0xb6, 0xe3, 0xb8, 0xbe, 0x68, 0xae, 0xee, 0x50, 0xee, 0xc2, 0x2d, 0x15, 0x02, 0x90, 0x25, 0x10, 0xcc, 0x36, 0x01, 0xc2, 0x99, 0x9e, 0x66, 0x9b, 0x87, 0x34, 0x7b, 0x02, 0x42, 0x1e, 0xa3, 0xd1, 0x5b, 0x6c, 0xa0, 0x43, 0xf8, 0xce, 0xca, 0x3c, 0x03, 0xc3, 0x07, 0xe8, 0xa8, 0xee, 0xb0, 0x7d, 0x4d, 0x7a, 0xc0, 0xf7, 0x6a, 0x93, 0xc1, 0x5e, 0x6d, 0xf1, 0x65, 0x98, 0xae, 0xba, 0x4d, 0x55, 0xdd, 0xa2, 0xa1, 0xdc, 0xe6, 0x7b, 0x2f, 0x6a, 0x3f, 0x07, 0x61, 0x8b, 0xf9, 0xab, 0x09, 0xfd, 0xce, 0x4e, 0xf1, 0x37, 0x12, 0xb3, 0x77, 0x28, 0x6e, 0x87, 0x5f, 0xa6, 0x85, 0x0e, 0x1b, 0xa8, 0x8a, 0x55, 0x87, 0x3f, 0xbe, 0x08, 0xcf, 0x1e, 0xd5, 0xfd, 0xe3, 0xce, 0xc1, 0x52, 0xd5, 0x6d, 0x5e, 0x3a, 0x72, 0x8f, 0xdc, 0xf0, 0xb1, 0x21, 0x3e, 0x22, 0x07, 0xe4, 0x13, 0x7b, 0x74, 0x38, 0x16, 0x8c, 0xce, 0xc6, 0x3e, 0x67, 0xcc, 0x6f, 0xc1, 0x34, 0x13, 0xae, 0x90, 0x67, 0x17, 0xf4, 0x16, 0xc2, 0xec, 0xbb, 0xff, 0x93, 0xfd, 0xad, 0xef, 0x92, 0xb5, 0xda, 0x9a, 0x62, 0x50, 0x3c, 0x47, 0xef, 0x32, 0xf2, 0x16, 0x3c, 0x22, 0xf1, 0xd1, 0xbc, 0x44, 0xed, 0x18, 0xc6, 0x6f, 0x30, 0xc6, 0x69, 0x81, 0x71, 0x97, 0x41, 0xf3, 0x25, 0x18, 0x3f, 0x0d, 0xd7, 0xbf, 0x63, 0x5c, 0x19, 0x24, 0x92, 0xdc, 0x81, 0x49, 0x42, 0x52, 0xed, 0x78, 0xbe, 0xdb, 0x24, 0x45, 0xaf, 0x3f, 0xcd, 0xbf, 0xff, 0x2e, 0x4d, 0x94, 0x09, 0x0c, 0x2b, 0x05, 0xa8, 0x7c, 0x1e, 0xc8, 0xe3, 0x9a, 0x1a, 0xaa, 0x36, 0x62, 0x18, 0xee, 0x33, 0x45, 0x02, 0xf9, 0xfc, 0x27, 0xe0, 0x0c, 0xfe, 0x4c, 0x6a, 0x92, 0xa8, 0x49, 0xfc, 0x6e, 0x57, 0xf6, 0x0f, 0x3e, 0x45, 0x73, 0x71, 0x3a, 0x20, 0x10, 0x74, 0x12, 0xbc, 0x78, 0x84, 0x7c, 0x1f, 0xb5, 0xbd, 0x8a, 0xdd, 0x88, 0x52, 0x4f, 0xd8, 0x2e, 0xc8, 0xfe, 0xca, 0xf7, 0x65, 0x2f, 0xde, 0xa1, 0xc8, 0x42, 0xa3, 0x91, 0xdf, 0x87, 0x47, 0x23, 0xa2, 0x62, 0x00, 0xce, 0xcf, 0x32, 0xce, 0x33, 0x5d, 0x91, 0x81, 0x69, 0x77, 0x80, 0x8f, 0x07, 0xbe, 0x1c, 0x80, 0xf3, 0x1f, 0x32, 0x4e, 0x93, 0x61, 0xb9, 0x4b, 0x31, 0xe3, 0x5d, 0x98, 0x7a, 0x0d, 0xb5, 0x0f, 0x5c, 0x8f, 0x6d, 0xd1, 0x0c, 0x40, 0xf7, 0x39, 0x46, 0x37, 0xc9, 0x80, 0x64, 0xcf, 0x06, 0x73, 0xdd, 0x82, 0xd4, 0xa1, 0x5d, 0x45, 0x03, 0x50, 0x7c, 0x9e, 0x51, 0x8c, 0x62, 0x79, 0x0c, 0x2d, 0x40, 0xe6, 0xc8, 0x65, 0xcb, 0x52, 0x3c, 0xfc, 0x0b, 0x0c, 0x9e, 0xe6, 0x18, 0x46, 0xd1, 0x72, 0x5b, 0x9d, 0x06, 0x5e, 0xb3, 0xe2, 0x29, 0xbe, 0xc8, 0x29, 0x38, 0x86, 0x51, 0x9c, 0xc2, 0xac, 0x6f, 0x73, 0x0a, 0x4f, 0xb0, 0xe7, 0x0b, 0x90, 0x76, 0x9d, 0xc6, 0x89, 0xeb, 0x0c, 0xa2, 0xc4, 0x97, 0x18, 0x03, 0x30, 0x08, 0x26, 0xb8, 0x0d, 0x63, 0x83, 0x3a, 0xe2, 0xd7, 0xbe, 0xcf, 0xd3, 0x83, 0x7b, 0xe0, 0x0e, 0x4c, 0xf2, 0x02, 0x55, 0x77, 0x9d, 0x01, 0x28, 0xfe, 0x31, 0xa3, 0x98, 0x10, 0x60, 0xec, 0x32, 0x7c, 0xe4, 0xf9, 0x47, 0x68, 0x10, 0x92, 0x2f, 0xf3, 0xcb, 0x60, 0x10, 0x66, 0xca, 0x03, 0xe4, 0x54, 0x8f, 0x07, 0x63, 0xf8, 0x0a, 0x37, 0x25, 0xc7, 0x60, 0x8a, 0x12, 0x8c, 0x37, 0xed, 0xb6, 0x77, 0x6c, 0x37, 0x06, 0x72, 0xc7, 0xaf, 0x33, 0x8e, 0x4c, 0x00, 0x62, 0x16, 0xe9, 0x38, 0xa7, 0xa1, 0xf9, 0x0d, 0x6e, 0x11, 0x01, 0xc6, 0x52, 0xcf, 0xf3, 0xc9, 0x7e, 0xd6, 0x69, 0xd8, 0x7e, 0x93, 0xa7, 0x1e, 0xc5, 0x6e, 0x8a, 0x8c, 0xb7, 0x61, 0xcc, 0xab, 0xbf, 0x39, 0x10, 0xcd, 0x3f, 0xe1, 0x9e, 0x26, 0x00, 0x0c, 0xbe, 0x07, 0x8f, 0x45, 0x2e, 0x13, 0x03, 0x90, 0xfd, 0x53, 0x46, 0x36, 0x13, 0xb1, 0x54, 0xb0, 0x92, 0x70, 0x5a, 0xca, 0x7f, 0xc6, 0x4b, 0x02, 0x52, 0xb8, 0x76, 0xf0, 0x8d, 0x82, 0x67, 0x1f, 0x9e, 0xce, 0x6a, 0xff, 0x9c, 0x5b, 0x8d, 0x62, 0x25, 0xab, 0xed, 0xc1, 0x0c, 0x63, 0x3c, 0x9d, 0x5f, 0xbf, 0xca, 0x0b, 0x2b, 0x45, 0xef, 0xcb, 0xde, 0xfd, 0x24, 0xcc, 0x06, 0xe6, 0xe4, 0x1d, 0xa9, 0x57, 0x69, 0xda, 0xad, 0x01, 0x98, 0x7f, 0x8b, 0x31, 0xf3, 0x8a, 0x1f, 0xb4, 0xb4, 0xde, 0xa6, 0xdd, 0xc2, 0xe4, 0x2f, 0x43, 0x96, 0x93, 0x77, 0x9c, 0x36, 0xaa, 0xba, 0x47, 0x4e, 0xfd, 0x4d, 0x54, 0x1b, 0x80, 0xfa, 0x6b, 0x8a, 0xab, 0xf6, 0x05, 0x38, 0x66, 0x5e, 0x07, 0x23, 0xe8, 0x55, 0x2a, 0xf5, 0x66, 0xcb, 0x6d, 0xfb, 0x31, 0x8c, 0xbf, 0xcd, 0x3d, 0x15, 0xe0, 0xd6, 0x09, 0x2c, 0x5f, 0x86, 0x09, 0x72, 0x38, 0x68, 0x48, 0xfe, 0x0e, 0x23, 0x1a, 0x0f, 0x51, 0xac, 0x70, 0x54, 0xdd, 0x66, 0xcb, 0x6e, 0x0f, 0x52, 0xff, 0xfe, 0x05, 0x2f, 0x1c, 0x0c, 0xc2, 0x0a, 0x87, 0x7f, 0xd2, 0x42, 0x78, 0xb5, 0x1f, 0x80, 0xe1, 0xeb, 0xbc, 0x70, 0x70, 0x0c, 0xa3, 0xe0, 0x0d, 0xc3, 0x00, 0x14, 0xff, 0x92, 0x53, 0x70, 0x0c, 0xa6, 0xf8, 0x78, 0xb8, 0xd0, 0xb6, 0xd1, 0x51, 0xdd, 0xf3, 0xdb, 0xb4, 0x0f, 0xee, 0x4f, 0xf5, 0xbb, 0xdf, 0x97, 0x9b, 0x30, 0x4b, 0x80, 0xe6, 0xef, 0xc2, 0xa4, 0xd2, 0x62, 0x98, 0x71, 0xef, 0x7e, 0x64, 0xff, 0xd2, 0x0f, 0x59, 0x31, 0x92, 0x3b, 0x8c, 0xfc, 0x06, 0xf6, 0xbb, 0xdc, 0x07, 0xc4, 0x93, 0x7d, 0xea, 0x87, 0x81, 0xeb, 0xa5, 0x36, 0x20, 0xbf, 0x06, 0xe3, 0x52, 0x0f, 0x10, 0x4f, 0xf5, 0x97, 0x19, 0x55, 0x46, 0x6c, 0x01, 0xf2, 0xd7, 0x20, 0x89, 0xd7, 0xf3, 0x78, 0xf8, 0x5f, 0x61, 0x70, 0x22, 0x9e, 0x7f, 0x0e, 0x52, 0x7c, 0x1d, 0x8f, 0x87, 0xfe, 0x22, 0x83, 0x06, 0x10, 0x0c, 0xe7, 0x6b, 0x78, 0x3c, 0xfc, 0xaf, 0x72, 0x38, 0x87, 0x60, 0xf8, 0xe0, 0x26, 0x7c, 0xe7, 0xaf, 0x27, 0x59, 0x1d, 0xe6, 0xb6, 0xbb, 0x0d, 0xa3, 0x6c, 0xf1, 0x8e, 0x47, 0xff, 0x12, 0x3b, 0x39, 0x47, 0xe4, 0x6f, 0xc0, 0xf0, 0x80, 0x06, 0xff, 0x1b, 0x0c, 0x4a, 0xe5, 0xf3, 0x25, 0x48, 0x0b, 0x0b, 0x76, 0x3c, 0xfc, 0x6f, 0x32, 0xb8, 0x88, 0xc2, 0xaa, 0xb3, 0x05, 0x3b, 0x9e, 0xe0, 0x6f, 0x71, 0xd5, 0x19, 0x02, 0x9b, 0x8d, 0xaf, 0xd5, 0xf1, 0xe8, 0xbf, 0xcd, 0xad, 0xce, 0x21, 0xf9, 0x17, 0x60, 0x2c, 0xa8, 0xbf, 0xf1, 0xf8, 0xbf, 0xc3, 0xf0, 0x21, 0x06, 0x5b, 0x40, 0xa8, 0xff, 0xf1, 0x14, 0x7f, 0x97, 0x5b, 0x40, 0x40, 0xe1, 0x34, 0x52, 0xd7, 0xf4, 0x78, 0xa6, 0x5f, 0xe6, 0x69, 0xa4, 0x2c, 0xe9, 0xd8, 0x9b, 0xa4, 0x0c, 0xc6, 0x53, 0xfc, 0x3d, 0xee, 0x4d, 0x22, 0x8f, 0xd5, 0x50, 0x17, 0xc9, 0x78, 0x8e, 0x7f, 0xc0, 0xd5, 0x50, 0xd6, 0xc8, 0xfc, 0x0e, 0x98, 0xdd, 0x0b, 0x64, 0x3c, 0xdf, 0x67, 0x18, 0xdf, 0x54, 0xd7, 0xfa, 0x98, 0x7f, 0x09, 0x66, 0xa2, 0x17, 0xc7, 0x78, 0xd6, 0x5f, 0xf9, 0xa1, 0x72, 0x3b, 0x23, 0xae, 0x8d, 0xf9, 0xbd, 0xb0, 0xca, 0x8a, 0x0b, 0x63, 0x3c, 0xed, 0x67, 0x7f, 0x28, 0x17, 0x5a, 0x71, 0x5d, 0xcc, 0x17, 0x00, 0xc2, 0x35, 0x29, 0x9e, 0xeb, 0x73, 0x8c, 0x4b, 0x00, 0xe1, 0xd4, 0x60, 0x4b, 0x52, 0x3c, 0xfe, 0xf3, 0x3c, 0x35, 0x18, 0x02, 0xa7, 0x06, 0x5f, 0x8d, 0xe2, 0xd1, 0x5f, 0xe0, 0xa9, 0xc1, 0x21, 0xf9, 0xdb, 0x90, 0x72, 0x3a, 0x8d, 0x06, 0x8e, 0x2d, 0xb3, 0xff, 0xeb, 0x4c, 0xd9, 0xff, 0xfe, 0x23, 0x06, 0xe6, 0x80, 0xfc, 0x35, 0x18, 0x46, 0xcd, 0x03, 0x54, 0x8b, 0x43, 0xfe, 0x8f, 0x1f, 0xf1, 0x7a, 0x82, 0xa5, 0xf3, 0x2f, 0x00, 0xd0, 0x9b, 0x69, 0xf2, 0x94, 0x28, 0x06, 0xfb, 0x3f, 0x7f, 0xc4, 0xde, 0x94, 0x08, 0x21, 0x21, 0x01, 0x7d, 0xef, 0xa2, 0x3f, 0xc1, 0xf7, 0x65, 0x02, 0x72, 0x03, 0x7e, 0x0b, 0x46, 0x5f, 0xf1, 0x5c, 0xc7, 0xb7, 0x8f, 0xe2, 0xd0, 0xff, 0x8b, 0xa1, 0xb9, 0x3c, 0x36, 0x58, 0xd3, 0x6d, 0x23, 0xdf, 0x3e, 0xf2, 0xe2, 0xb0, 0xff, 0x9b, 0x61, 0x03, 0x00, 0x06, 0x57, 0x6d, 0xcf, 0x1f, 0xe4, 0xba, 0xff, 0x0f, 0x07, 0x73, 0x00, 0x56, 0x1a, 0x7f, 0x7e, 0x15, 0x9d, 0xc4, 0x61, 0x7f, 0xc0, 0x95, 0x66, 0xf2, 0xf9, 0xe7, 0x60, 0x0c, 0x7f, 0xa4, 0x6f, 0x0f, 0xc5, 0x80, 0xff, 0x2f, 0x03, 0x87, 0x08, 0x7c, 0x66, 0xcf, 0xaf, 0xf9, 0xf5, 0x78, 0x63, 0xff, 0x11, 0xf3, 0x34, 0x97, 0xcf, 0x17, 0x20, 0xed, 0xf9, 0xb5, 0x5a, 0x87, 0x75, 0x34, 0x31, 0xf0, 0x3f, 0xfe, 0x51, 0x70, 0x93, 0x1b, 0x60, 0x8a, 0xe7, 0xa3, 0x37, 0xeb, 0xe0, 0x8e, 0x7b, 0xc7, 0xa5, 0xdb, 0x74, 0xf0, 0x87, 0x0d, 0xb8, 0xd1, 0x73, 0xd7, 0x0d, 0x2f, 0x22, 0x97, 0xaa, 0x6e, 0xf3, 0xc0, 0xf5, 0x2e, 0x1d, 0xb8, 0xfe, 0xf1, 0x25, 0xff, 0x18, 0xe1, 0x31, 0xb6, 0xff, 0x96, 0xc4, 0x9f, 0x67, 0x4f, 0xb7, 0x69, 0x47, 0x9e, 0xc7, 0x6e, 0xd5, 0xb1, 0xde, 0x5b, 0x64, 0x4b, 0xdc, 0x3c, 0x0b, 0x23, 0xe4, 0x4a, 0xae, 0x90, 0xc7, 0x4e, 0x5a, 0x31, 0x79, 0xff, 0xdd, 0xf9, 0x21, 0x8b, 0x8d, 0x05, 0xb3, 0xcb, 0x64, 0xcf, 0x32, 0x21, 0xcd, 0x2e, 0x07, 0xb3, 0x57, 0xe9, 0xb6, 0xa5, 0x34, 0x7b, 0x35, 0x98, 0x5d, 0x21, 0x1b, 0x98, 0xba, 0x34, 0xbb, 0x12, 0xcc, 0x5e, 0x23, 0x9b, 0xf4, 0xe3, 0xd2, 0xec, 0xb5, 0x60, 0xf6, 0x3a, 0xd9, 0x9a, 0x4f, 0x4a, 0xb3, 0xd7, 0x83, 0xd9, 0x1b, 0x64, 0x57, 0x7e, 0x4a, 0x9a, 0xbd, 0x11, 0xcc, 0xde, 0x24, 0xbb, 0xf1, 0xa6, 0x34, 0x7b, 0x33, 0x98, 0xbd, 0x45, 0x5e, 0x75, 0x19, 0x95, 0x66, 0x6f, 0x99, 0x73, 0x30, 0x4a, 0xaf, 0xfc, 0x32, 0x79, 0x74, 0x3b, 0xc9, 0xa6, 0xf9, 0x60, 0x38, 0x7f, 0x85, 0xbc, 0xd6, 0x32, 0x22, 0xcf, 0x5f, 0x09, 0xe7, 0x97, 0xc9, 0x0b, 0xea, 0x86, 0x3c, 0xbf, 0x1c, 0xce, 0x5f, 0xcd, 0x8e, 0x93, 0x57, 0x7b, 0xa4, 0xf9, 0xab, 0xe1, 0xfc, 0x4a, 0x76, 0x02, 0x07, 0xb3, 0x3c, 0xbf, 0x12, 0xce, 0x5f, 0xcb, 0x4e, 0x9e, 0xd3, 0x16, 0x32, 0xf2, 0xfc, 0xb5, 0xdc, 0x2f, 0x10, 0xf7, 0x3a, 0xa1, 0x7b, 0x67, 0x64, 0xf7, 0x06, 0x8e, 0x9d, 0x91, 0x1d, 0x1b, 0xb8, 0x74, 0x46, 0x76, 0x69, 0xe0, 0xcc, 0x19, 0xd9, 0x99, 0x81, 0x1b, 0x67, 0x64, 0x37, 0x06, 0x0e, 0x9c, 0x91, 0x1d, 0x18, 0xb8, 0x6e, 0x46, 0x76, 0x5d, 0xe0, 0xb4, 0x19, 0xd9, 0x69, 0x81, 0xbb, 0x66, 0x64, 0x77, 0x05, 0x8e, 0xca, 0x2a, 0x8e, 0x0a, 0x5d, 0x94, 0x55, 0x5c, 0x14, 0x3a, 0x27, 0xab, 0x38, 0x27, 0x74, 0x4b, 0x56, 0x71, 0x4b, 0xe8, 0x90, 0xac, 0xe2, 0x90, 0xd0, 0x15, 0x59, 0xc5, 0x15, 0xa1, 0x13, 0x58, 0x8e, 0x59, 0xa8, 0x15, 0x91, 0x63, 0x7a, 0xdf, 0x1c, 0xd3, 0xfb, 0xe6, 0x98, 0xde, 0x37, 0xc7, 0xf4, 0xbe, 0x39, 0xa6, 0xf7, 0xcd, 0x31, 0xbd, 0x6f, 0x8e, 0xe9, 0x7d, 0x73, 0x4c, 0xef, 0x9b, 0x63, 0x7a, 0xff, 0x1c, 0xd3, 0x63, 0x72, 0x4c, 0x8f, 0xc9, 0x31, 0x3d, 0x26, 0xc7, 0xf4, 0x98, 0x1c, 0xd3, 0x63, 0x72, 0x4c, 0xef, 0x99, 0x63, 0xa1, 0x7b, 0x67, 0x64, 0xf7, 0x46, 0xe6, 0x98, 0xde, 0x23, 0xc7, 0xf4, 0x1e, 0x39, 0xa6, 0xf7, 0xc8, 0x31, 0xbd, 0x47, 0x8e, 0xe9, 0x3d, 0x72, 0x4c, 0xef, 0x91, 0x63, 0x7a, 0x8f, 0x1c, 0xd3, 0x7b, 0xe5, 0x98, 0xde, 0x33, 0xc7, 0xf4, 0x9e, 0x39, 0xa6, 0xf7, 0xcc, 0x31, 0xbd, 0x67, 0x8e, 0xe9, 0x3d, 0x73, 0x4c, 0x17, 0x73, 0xec, 0x5f, 0xeb, 0x60, 0xd2, 0x1c, 0xdb, 0x21, 0x2f, 0xff, 0x30, 0x57, 0xcc, 0x29, 0x99, 0x36, 0x82, 0x5d, 0x67, 0x84, 0x2e, 0x99, 0x53, 0x72, 0x4d, 0x9e, 0x5f, 0x0e, 0xe6, 0x79, 0xb6, 0xc9, 0xf3, 0x57, 0x83, 0x79, 0x9e, 0x6f, 0xf2, 0xfc, 0x4a, 0x30, 0xcf, 0x33, 0x4e, 0x9e, 0xbf, 0x16, 0xcc, 0xf3, 0x9c, 0x93, 0xe7, 0xaf, 0x07, 0xf3, 0x3c, 0xeb, 0xe4, 0xf9, 0x1b, 0xc1, 0x3c, 0xcf, 0x3b, 0x79, 0xfe, 0x66, 0x30, 0xcf, 0x33, 0x4f, 0x9e, 0xbf, 0x65, 0x9e, 0x53, 0x73, 0x8f, 0x0b, 0x04, 0xae, 0x3d, 0xa7, 0x66, 0x9f, 0x22, 0x71, 0x25, 0x94, 0xe0, 0xf9, 0xa7, 0x48, 0x2c, 0x87, 0x12, 0x3c, 0x03, 0x15, 0x89, 0xab, 0xb9, 0x4f, 0x13, 0xf7, 0x39, 0xaa, 0xfb, 0x66, 0x15, 0xf7, 0x25, 0x04, 0xd7, 0xcd, 0x2a, 0xae, 0x4b, 0x08, 0x6e, 0x9b, 0x55, 0xdc, 0x96, 0x10, 0x5c, 0x36, 0xab, 0xb8, 0x2c, 0x21, 0xb8, 0x6b, 0x56, 0x71, 0x57, 0x42, 0x70, 0xd5, 0xac, 0xe2, 0xaa, 0x84, 0xe0, 0xa6, 0x59, 0xc5, 0x4d, 0x09, 0xc1, 0x45, 0xb3, 0x8a, 0x8b, 0x12, 0x82, 0x7b, 0x66, 0x15, 0xf7, 0x24, 0x04, 0xd7, 0x9c, 0x55, 0x5d, 0x93, 0x10, 0xdd, 0x72, 0x56, 0x75, 0x4b, 0x42, 0x74, 0xc9, 0x59, 0xd5, 0x25, 0x09, 0xd1, 0x1d, 0x67, 0x55, 0x77, 0x24, 0x44, 0x57, 0xfc, 0x69, 0x82, 0x77, 0x84, 0xbb, 0x7e, 0xbb, 0x53, 0xf5, 0xdf, 0x57, 0x47, 0x78, 0x59, 0x6a, 0x1f, 0xd2, 0xcb, 0xe6, 0x12, 0x69, 0x58, 0xc5, 0x8e, 0x53, 0x59, 0xc1, 0x2e, 0x4b, 0x8d, 0x85, 0x80, 0x70, 0xa2, 0x11, 0x2b, 0xef, 0xab, 0x37, 0xbc, 0x2c, 0xb5, 0x19, 0xf1, 0xfa, 0xdd, 0xfc, 0xd0, 0x3b, 0xb6, 0x77, 0x12, 0xbc, 0x63, 0x63, 0xe6, 0x3f, 0x6d, 0xc7, 0xb6, 0x18, 0x6f, 0xf2, 0xc0, 0xd8, 0x8b, 0xf1, 0xc6, 0xee, 0x5a, 0x75, 0x06, 0xed, 0xe0, 0x16, 0xe3, 0x4d, 0x1b, 0x18, 0xf5, 0x83, 0xed, 0xb7, 0x58, 0x04, 0x5b, 0xa8, 0x15, 0x11, 0xc1, 0xa7, 0xed, 0xb7, 0x2e, 0x4b, 0xa5, 0xe4, 0xb4, 0x11, 0xac, 0x9f, 0x3a, 0x82, 0x4f, 0xdb, 0x79, 0x5d, 0x96, 0xca, 0xcb, 0xa9, 0x23, 0xf8, 0x43, 0xe8, 0x87, 0x58, 0x04, 0x87, 0xe6, 0x3f, 0x6d, 0x3f, 0xb4, 0x18, 0x6f, 0xf2, 0xc8, 0x08, 0xd6, 0x4f, 0x11, 0xc1, 0x83, 0xf4, 0x47, 0x8b, 0xf1, 0xa6, 0x8d, 0x8e, 0xe0, 0xf7, 0xdd, 0xcd, 0x7c, 0x51, 0x83, 0xa9, 0xad, 0x7a, 0xad, 0xdc, 0x3c, 0x40, 0xb5, 0x1a, 0xaa, 0x31, 0x3b, 0x5e, 0x96, 0x2a, 0x41, 0x0f, 0x57, 0x7f, 0xf3, 0xdd, 0xf9, 0xd0, 0xc2, 0xd7, 0x20, 0x45, 0x6d, 0x7a, 0xf9, 0x72, 0xf6, 0xbe, 0x16, 0x53, 0xe1, 0x02, 0x51, 0xf3, 0x3c, 0x87, 0x5d, 0xb9, 0x9c, 0xfd, 0x4f, 0x9a, 0x50, 0xe5, 0x82, 0xe1, 0xdc, 0x2f, 0x13, 0x0d, 0x9d, 0xf7, 0xad, 0xe1, 0xa5, 0x81, 0x34, 0x14, 0x74, 0x7b, 0xbc, 0x4b, 0x37, 0x41, 0xab, 0x0e, 0x4c, 0x6e, 0xd5, 0x6b, 0x5b, 0xe4, 0xab, 0xd1, 0x83, 0xa8, 0x44, 0x65, 0x94, 0x7a, 0x70, 0x59, 0x0a, 0x4b, 0x11, 0x11, 0x84, 0xb4, 0x5c, 0x23, 0x72, 0x75, 0x7c, 0x5a, 0x47, 0x3a, 0xed, 0x62, 0xaf, 0xd3, 0x86, 0x95, 0x3d, 0x38, 0xe1, 0x62, 0xaf, 0x13, 0x86, 0x39, 0x14, 0x9c, 0xea, 0x0d, 0xbe, 0x38, 0xd3, 0xb7, 0x70, 0xcc, 0xb3, 0x90, 0x58, 0xa7, 0x6f, 0x08, 0x67, 0x8a, 0x19, 0xac, 0xd4, 0xb7, 0xde, 0x9d, 0x4f, 0xee, 0x77, 0xea, 0x35, 0x2b, 0xb1, 0x5e, 0x33, 0xef, 0xc2, 0xf0, 0x27, 0xd8, 0x17, 0xf4, 0xb0, 0xc0, 0x0a, 0x13, 0xf8, 0x48, 0xcc, 0x16, 0x13, 0xa1, 0x5e, 0xda, 0xaf, 0x3b, 0xfe, 0x95, 0xe5, 0x9b, 0x16, 0xa5, 0xc8, 0xfd, 0x39, 0x00, 0x7a, 0xce, 0x55, 0xdb, 0x3b, 0x36, 0xb7, 0x38, 0x33, 0x3d, 0xf5, 0xcd, 0x6f, 0xbd, 0x3b, 0xbf, 0x32, 0x08, 0xeb, 0xb3, 0x35, 0xdb, 0x3b, 0x7e, 0xd6, 0x3f, 0x69, 0xa1, 0xa5, 0xe2, 0x89, 0x8f, 0x3c, 0xce, 0xde, 0xe2, 0xab, 0x1e, 0xbb, 0xae, 0xac, 0x70, 0x5d, 0x29, 0xe9, 0x9a, 0xd6, 0xe4, 0x6b, 0xba, 0xfc, 0xb0, 0xd7, 0xf3, 0x06, 0x5f, 0x24, 0x14, 0x4b, 0xea, 0x71, 0x96, 0xd4, 0xdf, 0xaf, 0x25, 0x5b, 0xbc, 0x3e, 0x2a, 0xd7, 0xaa, 0xf7, 0xbb, 0x56, 0xfd, 0xfd, 0x5c, 0xeb, 0xff, 0xa3, 0xd9, 0x1a, 0xe4, 0xd3, 0xbe, 0x43, 0xdf, 0x4e, 0xfc, 0xb3, 0xb5, 0x17, 0xf4, 0x81, 0x76, 0x01, 0xf9, 0xe4, 0xfd, 0xb7, 0xe7, 0xb5, 0xdc, 0x17, 0x13, 0xfc, 0xca, 0x69, 0x22, 0x3d, 0xdc, 0x95, 0xff, 0x59, 0xe9, 0xa9, 0x3e, 0x0c, 0x0b, 0x7d, 0x41, 0x83, 0x99, 0xae, 0x4a, 0x4e, 0xcd, 0xf4, 0xc1, 0x96, 0x73, 0xe7, 0xb4, 0xe5, 0x9c, 0x29, 0xf8, 0x3b, 0x1a, 0x9c, 0x51, 0xca, 0x2b, 0x55, 0xef, 0x92, 0xa2, 0xde, 0xa3, 0xdd, 0x67, 0x22, 0x82, 0x82, 0x76, 0xa2, 0x7b, 0x15, 0x80, 0xc0, 0x1c, 0xf8, 0x7d, 0x45, 0xf1, 0xfb, 0xd9, 0x00, 0x10, 0x61, 0x2e, 0x1e, 0x01, 0x4c, 0x6d, 0x17, 0x92, 0x7b, 0x6d, 0x84, 0xcc, 0x39, 0x48, 0x6c, 0xb7, 0x99, 0x86, 0x13, 0x14, 0xbf, 0xdd, 0x2e, 0xb6, 0x6d, 0xa7, 0x7a, 0x6c, 0x25, 0xb6, 0xdb, 0xe6, 0x79, 0xd0, 0x0b, 0xec, 0x07, 0x18, 0xd2, 0xcb, 0x93, 0x54, 0xa0, 0xe0, 0xd4, 0x98, 0x04, 0x9e, 0x33, 0xe7, 0x20, 0xb9, 0x81, 0xec, 0x43, 0xa6, 0x04, 0x50, 0x19, 0x3c, 0x62, 0x91, 0x71, 0x76, 0xc2, 0x97, 0x21, 0xc5, 0x89, 0xcd, 0x0b, 0x18, 0x71, 0xe8, 0xb3, 0xd3, 0x32, 0x04, 0x56, 0x87, 0xad, 0x5c, 0x64, 0xd6, 0xbc, 0x08, 0xc3, 0x56, 0xfd, 0xe8, 0xd8, 0x67, 0x27, 0xef, 0x16, 0xa3, 0xd3, 0xb9, 0x7b, 0x30, 0x16, 0x68, 0xf4, 0x01, 0x53, 0xaf, 0xd2, 0x4b, 0x33, 0x67, 0xc5, 0xf5, 0x84, 0xef, 0x5b, 0xd2, 0x21, 0xf3, 0x1c, 0xa4, 0x76, 0xfd, 0x76, 0x58, 0xf4, 0x79, 0x47, 0x1a, 0x8c, 0xe6, 0x7e, 0x41, 0x83, 0xd4, 0x2a, 0x42, 0x2d, 0x62, 0xf0, 0xa7, 0x20, 0xb9, 0xea, 0xbe, 0xee, 0x30, 0x05, 0xa7, 0x98, 0x45, 0xf1, 0x34, 0xb3, 0x29, 0x99, 0x36, 0x9f, 0x12, 0xed, 0x3e, 0x1d, 0xd8, 0x5d, 0x90, 0x23, 0xb6, 0xcf, 0x49, 0xb6, 0x67, 0x0e, 0xc4, 0x42, 0x5d, 0xf6, 0xbf, 0x01, 0x69, 0xe1, 0x2c, 0xe6, 0x02, 0x53, 0x23, 0xa1, 0x02, 0x45, 0x5b, 0x61, 0x89, 0x1c, 0x82, 0x71, 0xe9, 0xc4, 0x18, 0x2a, 0x98, 0xb8, 0x07, 0x94, 0x98, 0x79, 0x51, 0x36, 0x73, 0xb4, 0x28, 0x33, 0xf5, 0x65, 0x6a, 0x23, 0x62, 0xee, 0x0b, 0x34, 0x38, 0x7b, 0x3b, 0x11, 0x7f, 0xce, 0x0d, 0x83, 0xbe, 0x55, 0x6f, 0xe4, 0x9e, 0x03, 0xa0, 0x29, 0x5f, 0x76, 0x3a, 0x4d, 0x25, 0xeb, 0x26, 0xb8, 0x81, 0xf7, 0x8e, 0xd1, 0x1e, 0xf2, 0x88, 0x88, 0xdc, 0x4f, 0xe1, 0x02, 0x03, 0x34, 0xc5, 0x08, 0xfe, 0x99, 0x58, 0x7c, 0x64, 0x27, 0x86, 0x45, 0xb3, 0x54, 0xf4, 0x1e, 0xf2, 0x0b, 0x8e, 0xeb, 0x1f, 0xa3, 0xb6, 0x82, 0x58, 0x36, 0xaf, 0x4a, 0x09, 0x3b, 0xb1, 0xfc, 0x78, 0x80, 0xe8, 0x09, 0xba, 0x9a, 0xfb, 0x2a, 0x51, 0x10, 0xb7, 0x02, 0x5d, 0x17, 0xa8, 0x0f, 0x70, 0x81, 0xe6, 0x75, 0xa9, 0x7f, 0xeb, 0xa3, 0xa6, 0x72, 0x6b, 0x79, 0x4b, 0xba, 0xcf, 0xe9, 0xaf, 0xac, 0x7c, 0x8f, 0xc9, 0x6d, 0xca, 0x55, 0x7e, 0x26, 0x56, 0xe5, 0x1e, 0xdd, 0xed, 0x69, 0x6d, 0xaa, 0x0f, 0x6a, 0xd3, 0xdf, 0x0b, 0x3a, 0x0e, 0xfa, 0x63, 0x12, 0xe4, 0xb7, 0x4b, 0xcc, 0x8f, 0xc4, 0xfa, 0x3e, 0xaf, 0x95, 0x02, 0x55, 0x57, 0x06, 0x75, 0x7f, 0x3e, 0x51, 0x2c, 0x06, 0xea, 0xde, 0x38, 0x45, 0x08, 0xe4, 0x13, 0xa5, 0x52, 0x50, 0xb6, 0x53, 0x9f, 0x7e, 0x7b, 0x5e, 0xfb, 0xca, 0xdb, 0xf3, 0x43, 0xb9, 0x5f, 0xd7, 0x60, 0x8a, 0x49, 0x0a, 0x81, 0xfb, 0xac, 0xa2, 0xfc, 0x23, 0xbc, 0x66, 0x44, 0x59, 0xe0, 0xc7, 0x16, 0xbc, 0xdf, 0xd0, 0x20, 0xdb, 0xa5, 0x2b, 0xb7, 0xf7, 0xe5, 0x81, 0x54, 0xce, 0x6b, 0xe5, 0x9f, 0xbc, 0xcd, 0xef, 0xc1, 0xf0, 0x5e, 0xbd, 0x89, 0xda, 0x78, 0x25, 0xc0, 0x1f, 0xa8, 0xca, 0xfc, 0x61, 0x0e, 0x1d, 0xe2, 0x73, 0x54, 0x39, 0x69, 0x6e, 0xd9, 0xcc, 0x42, 0x72, 0xd5, 0xf6, 0x6d, 0xa2, 0x41, 0x26, 0xa8, 0xaf, 0xb6, 0x6f, 0xe7, 0xae, 0x42, 0x66, 0xf3, 0x84, 0xbc, 0x42, 0x53, 0x23, 0xaf, 0x87, 0xc8, 0xdd, 0x1f, 0xef, 0x57, 0xaf, 0x2c, 0x0e, 0xa7, 0x6a, 0xc6, 0x7d, 0x2d, 0x9f, 0x24, 0xfa, 0xbc, 0x06, 0x13, 0xdb, 0x58, 0x6d, 0x82, 0x23, 0xb0, 0x73, 0xa0, 0x6d, 0xca, 0x8d, 0x90, 0xc8, 0x6a, 0x69, 0x9b, 0x4a, 0xfb, 0xa8, 0x07, 0xe6, 0x51, 0xda, 0x36, 0x3d, 0x68, 0xdb, 0x16, 0x93, 0xa9, 0x09, 0x63, 0x6a, 0x31, 0x99, 0x02, 0x63, 0x9c, 0x9d, 0xf7, 0x3f, 0xe8, 0x60, 0xd0, 0x56, 0x67, 0x15, 0x1d, 0xd6, 0x9d, 0xba, 0xdf, 0xdd, 0xaf, 0x06, 0x1a, 0x9b, 0x2f, 0xc0, 0x18, 0x36, 0xe9, 0x1a, 0xfb, 0x09, 0x33, 0x6c, 0xfa, 0xf3, 0xac, 0x45, 0x51, 0x28, 0xd8, 0x00, 0x09, 0x9d, 0x10, 0x63, 0xae, 0x81, 0xbe, 0xb5, 0xb5, 0xc9, 0x16, 0xb7, 0x95, 0xbe, 0x50, 0xf6, 0x06, 0x0e, 0x3b, 0x62, 0x63, 0xde, 0x91, 0x85, 0x09, 0xcc, 0x15, 0x48, 0x6c, 0x6d, 0xb2, 0x86, 0xf7, 0xc2, 0x20, 0x34, 0x56, 0x62, 0x6b, 0x73, 0xf6, 0xdf, 0x68, 0x30, 0x2e, 0x8d, 0x9a, 0x39, 0xc8, 0xd0, 0x01, 0xe1, 0x72, 0x47, 0x2c, 0x69, 0x8c, 0xeb, 0x9c, 0x78, 0x9f, 0x3a, 0xcf, 0x16, 0x60, 0x52, 0x19, 0x37, 0x97, 0xc0, 0x14, 0x87, 0x98, 0x12, 0xf4, 0xe7, 0x93, 0x22, 0x66, 0x72, 0x4f, 0x00, 0x84, 0x76, 0x0d, 0x7e, 0xf5, 0x67, 0xab, 0xbc, 0xbb, 0x57, 0x5e, 0x35, 0xb4, 0xdc, 0xd7, 0x35, 0x48, 0xb3, 0xb6, 0xb5, 0xea, 0xb6, 0x90, 0x59, 0x04, 0xad, 0xc0, 0x22, 0xe8, 0xe1, 0xf4, 0xd6, 0x0a, 0xe6, 0x25, 0xd0, 0x8a, 0x83, 0xbb, 0x5a, 0x2b, 0x9a, 0xcb, 0xa0, 0x95, 0x98, 0x83, 0x07, 0xf3, 0x8c, 0x56, 0xca, 0xfd, 0x91, 0x0e, 0xd3, 0x62, 0x1b, 0xcd, 0xeb, 0xc9, 0x79, 0xf9, 0xbe, 0x29, 0x3f, 0x76, 0x65, 0xf9, 0xea, 0xca, 0x12, 0xfe, 0x27, 0x08, 0xc9, 0x9c, 0x7c, 0x0b, 0x95, 0x87, 0x40, 0xe4, 0x4a, 0xaf, 0xf7, 0x44, 0xf2, 0x49, 0x81, 0xa1, 0xeb, 0x3d, 0x11, 0x69, 0xb6, 0xeb, 0x3d, 0x11, 0x69, 0xb6, 0xeb, 0x3d, 0x11, 0x69, 0xb6, 0xeb, 0x59, 0x80, 0x34, 0xdb, 0xf5, 0x9e, 0x88, 0x34, 0xdb, 0xf5, 0x9e, 0x88, 0x34, 0xdb, 0xfd, 0x9e, 0x08, 0x9b, 0xee, 0xf9, 0x9e, 0x88, 0x3c, 0xdf, 0xfd, 0x9e, 0x88, 0x3c, 0xdf, 0xfd, 0x9e, 0x48, 0x3e, 0xe9, 0xb7, 0x3b, 0xa8, 0xf7, 0x53, 0x07, 0x19, 0xdf, 0xef, 0x26, 0x30, 0xac, 0xc0, 0xdb, 0x30, 0x49, 0x37, 0x24, 0x4a, 0xae, 0xe3, 0xdb, 0x75, 0x07, 0xb5, 0xcd, 0x8f, 0x42, 0x86, 0x0e, 0xd1, 0xdb, 0x9c, 0xa8, 0xdb, 0x40, 0x3a, 0xcf, 0xea, 0xad, 0x24, 0x9d, 0xfb, 0xd3, 0x24, 0xcc, 0xd0, 0x81, 0x2d, 0xbb, 0x89, 0xa4, 0xb7, 0x8c, 0x2e, 0x2a, 0xcf, 0x94, 0x26, 0x30, 0xfc, 0xc1, 0xbb, 0xf3, 0x74, 0xb4, 0x10, 0x44, 0xd3, 0x45, 0xe5, 0xe9, 0x92, 0x2c, 0x17, 0x2e, 0x40, 0x17, 0x95, 0x37, 0x8f, 0x64, 0xb9, 0x60, 0xbd, 0x09, 0xe4, 0xf8, 0x3b, 0x48, 0xb2, 0xdc, 0x6a, 0x10, 0x65, 0x17, 0x95, 0xb7, 0x91, 0x64, 0xb9, 0x72, 0x10, 0x6f, 0x17, 0x95, 0x67, 0x4f, 0xb2, 0xdc, 0x5a, 0x10, 0x79, 0x17, 0x95, 0xa7, 0x50, 0xb2, 0xdc, 0x9d, 0x20, 0x06, 0x2f, 0x2a, 0xef, 0x2a, 0xc9, 0x72, 0x2f, 0x06, 0xd1, 0x78, 0x51, 0x79, 0x6b, 0x49, 0x96, 0x5b, 0x0f, 0xe2, 0x72, 0x41, 0x7d, 0x7f, 0x49, 0x16, 0xbc, 0x1b, 0x46, 0xe8, 0x82, 0xfa, 0x26, 0x93, 0x2c, 0xf9, 0xb1, 0x30, 0x56, 0x17, 0xd4, 0x77, 0x9a, 0x64, 0xc9, 0x8d, 0x30, 0x6a, 0x17, 0xd4, 0x67, 0x65, 0xb2, 0xe4, 0x66, 0x18, 0xbf, 0x0b, 0xea, 0x53, 0x33, 0x59, 0x72, 0x2b, 0x8c, 0xe4, 0x05, 0xf5, 0xf9, 0x99, 0x2c, 0xb9, 0x1d, 0x6e, 0xa2, 0xff, 0xbe, 0x12, 0x7e, 0xc2, 0x5b, 0x50, 0x39, 0x25, 0xfc, 0x20, 0x22, 0xf4, 0x94, 0x42, 0x26, 0xc8, 0x84, 0x61, 0x97, 0x53, 0xc2, 0x0e, 0x22, 0x42, 0x2e, 0xa7, 0x84, 0x1c, 0x44, 0x84, 0x5b, 0x4e, 0x09, 0x37, 0x88, 0x08, 0xb5, 0x9c, 0x12, 0x6a, 0x10, 0x11, 0x66, 0x39, 0x25, 0xcc, 0x20, 0x22, 0xc4, 0x72, 0x4a, 0x88, 0x41, 0x44, 0x78, 0xe5, 0x94, 0xf0, 0x82, 0x88, 0xd0, 0xba, 0xa0, 0x86, 0x16, 0x44, 0x85, 0xd5, 0x05, 0x35, 0xac, 0x20, 0x2a, 0xa4, 0x9e, 0x54, 0x43, 0x6a, 0xec, 0xc1, 0xbb, 0xf3, 0xc3, 0x78, 0x48, 0x88, 0xa6, 0x0b, 0x6a, 0x34, 0x41, 0x54, 0x24, 0x5d, 0x50, 0x23, 0x09, 0xa2, 0xa2, 0xe8, 0x82, 0x1a, 0x45, 0x10, 0x15, 0x41, 0xef, 0xa8, 0x11, 0x14, 0xbe, 0xe3, 0x93, 0x53, 0x1e, 0x29, 0xc6, 0x45, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x83, 0x44, 0x90, 0x3e, 0x50, 0x04, 0xe9, 0xbd, 0x22, 0xe8, 0x82, 0xfa, 0xc6, 0x03, 0x44, 0x15, 0xa4, 0x0b, 0xea, 0xa3, 0xcf, 0xf8, 0x10, 0xd2, 0x07, 0x0a, 0x21, 0xbd, 0x57, 0x08, 0xfd, 0xbe, 0x0e, 0xd3, 0x52, 0x08, 0xb1, 0xe7, 0x43, 0x1f, 0x54, 0x05, 0xba, 0x3e, 0xc0, 0x0b, 0x16, 0x51, 0x31, 0x75, 0x7d, 0x80, 0x87, 0xd4, 0xfd, 0xe2, 0xac, 0xbb, 0x0a, 0x95, 0x07, 0xa8, 0x42, 0x6b, 0x41, 0x0c, 0x5d, 0x1f, 0xe0, 0xc5, 0x8b, 0xee, 0xd8, 0xbb, 0xd9, 0xaf, 0x08, 0xbc, 0x38, 0x50, 0x11, 0x58, 0x1f, 0xa8, 0x08, 0xdc, 0x0d, 0x3d, 0xf8, 0x8b, 0x09, 0x38, 0x13, 0x7a, 0x90, 0x7e, 0x22, 0xbf, 0x91, 0x94, 0x13, 0x1e, 0x51, 0x99, 0xfc, 0xb1, 0x8d, 0xe0, 0xc6, 0xc4, 0x7a, 0xcd, 0xdc, 0x91, 0x1f, 0x56, 0xe5, 0x4f, 0xfb, 0x00, 0x47, 0xf0, 0x38, 0xdb, 0x0c, 0xbd, 0x00, 0xfa, 0x7a, 0xcd, 0x23, 0xd5, 0x22, 0xea, 0xb4, 0x25, 0x0b, 0x4f, 0x9b, 0x16, 0x8c, 0x10, 0x71, 0x8f, 0xb8, 0xf7, 0xfd, 0x9c, 0x78, 0xd5, 0x62, 0x4c, 0xb9, 0x77, 0x34, 0x38, 0x27, 0x85, 0xf2, 0x07, 0xf3, 0xc8, 0xe0, 0xf6, 0x40, 0x8f, 0x0c, 0xa4, 0x04, 0x09, 0x1f, 0x1f, 0x3c, 0xdd, 0xfd, 0xa4, 0x5a, 0xcc, 0x12, 0xf5, 0x51, 0xc2, 0x5f, 0x84, 0x89, 0xf0, 0x0a, 0xc8, 0x3d, 0xdb, 0xb5, 0xf8, 0xdd, 0xcc, 0xa8, 0xd4, 0xbc, 0xa6, 0xec, 0xa2, 0xf5, 0x85, 0x05, 0xd9, 0x9a, 0xcb, 0xc3, 0xe4, 0x96, 0xfc, 0x65, 0x9e, 0xb8, 0xcd, 0x88, 0x14, 0x6e, 0xcd, 0xef, 0x7f, 0x69, 0x7e, 0x28, 0xf7, 0x11, 0xc8, 0x88, 0xdf, 0xd7, 0x51, 0x80, 0x63, 0x1c, 0x98, 0x4f, 0x7e, 0x13, 0x4b, 0xff, 0x7d, 0x0d, 0x1e, 0x11, 0xc5, 0x5f, 0xaa, 0xfb, 0xc7, 0xeb, 0x0e, 0xee, 0xe9, 0x9f, 0x83, 0x14, 0x62, 0x8e, 0x63, 0x3f, 0x77, 0xc2, 0xee, 0x23, 0x23, 0xc5, 0x97, 0xc8, 0xbf, 0x56, 0x00, 0x51, 0xf6, 0x38, 0xf8, 0x69, 0x97, 0x67, 0x9f, 0x82, 0x61, 0xca, 0x2f, 0xeb, 0x35, 0xae, 0xe8, 0xf5, 0x6b, 0x11, 0x7a, 0x91, 0x38, 0x32, 0xef, 0x4a, 0x7a, 0x09, 0xb7, 0xab, 0x91, 0xe2, 0x4b, 0x3c, 0xf8, 0x8a, 0x29, 0xdc, 0xff, 0x91, 0x88, 0x8a, 0x57, 0x72, 0x01, 0x52, 0x65, 0x55, 0x26, 0x5a, 0xcf, 0x55, 0x48, 0x6e, 0xb9, 0x35, 0xf2, 0x43, 0x2c, 0xe4, 0x87, 0x7b, 0x99, 0x91, 0xd9, 0xaf, 0xf8, 0x5e, 0x84, 0x54, 0xe9, 0xb8, 0xde, 0xa8, 0xb5, 0x91, 0xc3, 0x9e, 0xd9, 0xb3, 0x2d, 0x74, 0x8c, 0xb1, 0x82, 0xb9, 0x5c, 0x09, 0xa6, 0xb6, 0x5c, 0xa7, 0x78, 0xe2, 0x8b, 0x75, 0x63, 0x49, 0x49, 0x11, 0xf6, 0xcc, 0x87, 0x7c, 0x03, 0x04, 0x0b, 0x14, 0x87, 0xbf, 0xf5, 0xee, 0xbc, 0xb6, 0x17, 0xec, 0x9f, 0x6f, 0xc2, 0xa3, 0x2c, 0x7d, 0xba, 0xa8, 0x96, 0xe3, 0xa8, 0xc6, 0xd8, 0x73, 0x6a, 0x81, 0x6e, 0x1d, 0xd3, 0x39, 0x91, 0x74, 0x0f, 0xa7, 0x19, 0x6e, 0x8a, 0xfa, 0x6a, 0xa6, 0x9f, 0x4a, 0xb3, 0x48, 0xba, 0xa5, 0x38, 0x3a, 0x45, 0xb3, 0x27, 0x61, 0x2c, 0x98, 0x13, 0xa2, 0x41, 0xcc, 0x94, 0xe5, 0xc5, 0x1c, 0xa4, 0x85, 0x84, 0x35, 0x87, 0x41, 0x2b, 0x18, 0x43, 0xf8, 0xbf, 0xa2, 0xa1, 0xe1, 0xff, 0x4a, 0x46, 0x62, 0xf1, 0x29, 0x98, 0x54, 0xf6, 0x2f, 0xf1, 0xcc, 0xaa, 0x01, 0xf8, 0xbf, 0xb2, 0x91, 0x9e, 0x4d, 0x7e, 0xfa, 0x1f, 0xcd, 0x0d, 0x2d, 0xde, 0x06, 0xb3, 0x7b, 0xa7, 0xd3, 0x1c, 0x81, 0x44, 0x01, 0x53, 0x3e, 0x0a, 0x89, 0x62, 0xd1, 0xd0, 0x66, 0x27, 0xff, 0xda, 0xe7, 0xcf, 0xa5, 0x8b, 0xe4, 0xcb, 0xc8, 0xf7, 0x90, 0x5f, 0x2c, 0x32, 0xf0, 0xf3, 0xf0, 0x48, 0xe4, 0x4e, 0x29, 0xc6, 0x97, 0x4a, 0x14, 0xbf, 0xba, 0xda, 0x85, 0x5f, 0x5d, 0x25, 0x78, 0x2d, 0xcf, 0x9f, 0x38, 0x17, 0xcc, 0x88, 0x7d, 0xc9, 0x6c, 0x4d, 0x78, 0xc2, 0x5d, 0xc8, 0x3f, 0xcf, 0x64, 0x8b, 0x91, 0xb2, 0x28, 0xe6, 0x89, 0x75, 0x31, 0x5f, 0x62, 0xf8, 0x52, 0x24, 0xfe, 0x50, 0x79, 0xac, 0x2a, 0xaf, 0x10, 0x8c, 0xa4, 0x14, 0x28, 0xbc, 0x1a, 0x49, 0x72, 0x2c, 0xbc, 0xec, 0xbe, 0x1a, 0x28, 0x5c, 0x8e, 0x94, 0xad, 0xc7, 0xbc, 0xf4, 0x55, 0xce, 0x5f, 0x62, 0x8b, 0x7c, 0xe1, 0x8a, 0xf9, 0x08, 0xcf, 0x51, 0xa9, 0x02, 0x33, 0x03, 0x71, 0xa9, 0x7c, 0x89, 0x01, 0x8a, 0x3d, 0x01, 0xbd, 0xad, 0xc4, 0x91, 0xf9, 0x17, 0x19, 0x49, 0xa9, 0x27, 0x49, 0x8c, 0xa9, 0x38, 0xbc, 0xb8, 0x77, 0xff, 0xbd, 0xb9, 0xa1, 0x6f, 0xbe, 0x37, 0x37, 0xf4, 0x5f, 0xde, 0x9b, 0x1b, 0xfa, 0xf6, 0x7b, 0x73, 0xda, 0xf7, 0xde, 0x9b, 0xd3, 0x7e, 0xf0, 0xde, 0x9c, 0xf6, 0x27, 0xef, 0xcd, 0x69, 0x6f, 0x3d, 0x98, 0xd3, 0xbe, 0xf2, 0x60, 0x4e, 0xfb, 0xea, 0x83, 0x39, 0xed, 0x77, 0x1f, 0xcc, 0x69, 0xef, 0x3c, 0x98, 0xd3, 0xee, 0x3f, 0x98, 0xd3, 0xbe, 0xf9, 0x60, 0x4e, 0xfb, 0xf6, 0x83, 0x39, 0xed, 0x7b, 0x0f, 0xe6, 0x86, 0x7e, 0xf0, 0x60, 0x4e, 0xfb, 0x93, 0x07, 0x73, 0x43, 0x6f, 0x7d, 0x67, 0x6e, 0xe8, 0xed, 0xef, 0xcc, 0x0d, 0x7d, 0xe5, 0x3b, 0x73, 0x1a, 0xfc, 0xe1, 0x0a, 0x9c, 0x63, 0xdf, 0x24, 0x0b, 0xbe, 0xb0, 0x7a, 0xc9, 0x3f, 0x46, 0xa4, 0x25, 0xb8, 0xca, 0x7f, 0xd0, 0x29, 0x18, 0x38, 0xe5, 0xb7, 0xca, 0x66, 0x1f, 0xf6, 0x3b, 0x6c, 0xb9, 0x7f, 0x3b, 0x0c, 0xa3, 0x7c, 0x2f, 0x38, 0xea, 0xa7, 0xa9, 0xaf, 0x41, 0xea, 0xb8, 0xde, 0xb0, 0xdb, 0x75, 0xff, 0x84, 0x6d, 0x82, 0x3e, 0xb6, 0x14, 0xaa, 0xcd, 0xb7, 0x4d, 0x5f, 0xec, 0x34, 0xdd, 0x4e, 0xdb, 0x0a, 0x44, 0xcd, 0x73, 0x90, 0x39, 0x46, 0xf5, 0xa3, 0x63, 0xbf, 0x52, 0x77, 0x2a, 0xd5, 0x26, 0xe9, 0x95, 0xc7, 0x2d, 0xa0, 0x63, 0xeb, 0x4e, 0xa9, 0x89, 0x4f, 0x56, 0xb3, 0x7d, 0x9b, 0xdc, 0xa3, 0x67, 0x2c, 0xf2, 0xd9, 0x3c, 0x0f, 0x99, 0x36, 0xf2, 0x3a, 0x0d, 0xbf, 0x52, 0x75, 0x3b, 0x8e, 0x4f, 0xba, 0x59, 0xdd, 0x4a, 0xd3, 0xb1, 0x12, 0x1e, 0x32, 0x9f, 0x84, 0x71, 0xbf, 0xdd, 0x41, 0x15, 0xaf, 0xea, 0xfa, 0x5e, 0xd3, 0x76, 0x48, 0x37, 0x9b, 0xb2, 0x32, 0x78, 0x70, 0x97, 0x8d, 0x91, 0x3f, 0xbc, 0x50, 0x75, 0xdb, 0x88, 0xdc, 0x4c, 0x27, 0x2c, 0x7a, 0x60, 0x1a, 0xa0, 0xbf, 0x8a, 0x4e, 0xc8, 0xed, 0x5a, 0xd2, 0xc2, 0x1f, 0xcd, 0x67, 0x60, 0x84, 0xfe, 0x55, 0x0f, 0xd2, 0x5b, 0x93, 0x47, 0xd7, 0xc1, 0xa5, 0xd1, 0x2d, 0x5a, 0x8b, 0x09, 0x98, 0xb7, 0x60, 0xd4, 0x47, 0xed, 0xb6, 0x5d, 0x77, 0xc8, 0xad, 0x53, 0x7a, 0x79, 0x3e, 0xc2, 0x0c, 0x7b, 0x54, 0x82, 0xfc, 0xba, 0xab, 0xc5, 0xe5, 0xcd, 0x6b, 0x90, 0x21, 0x72, 0xcb, 0x15, 0xfa, 0x97, 0x4f, 0xd2, 0x3d, 0xa3, 0x39, 0x4d, 0xe5, 0xf8, 0x93, 0x02, 0x0e, 0xa3, 0xbf, 0x6c, 0x37, 0x4e, 0x4e, 0xfb, 0x64, 0xc4, 0x69, 0x49, 0xe1, 0x5d, 0x26, 0x4d, 0x23, 0x3d, 0x35, 0xe3, 0xa1, 0xbf, 0x7d, 0xb7, 0x09, 0x19, 0x51, 0x2f, 0x6e, 0x06, 0xda, 0xfc, 0x10, 0x33, 0x3c, 0x1d, 0xfe, 0xaa, 0x7c, 0x0f, 0x2b, 0xd0, 0xf9, 0x7c, 0xe2, 0xa6, 0x36, 0xbb, 0x03, 0x86, 0x7a, 0xbe, 0x08, 0xca, 0x8b, 0x32, 0xa5, 0x21, 0x5e, 0x2c, 0xd9, 0x27, 0x0f, 0x19, 0x73, 0x2f, 0xc0, 0x08, 0x8d, 0x1f, 0x33, 0x0d, 0xa3, 0xe1, 0x8f, 0x26, 0xa6, 0x20, 0xb9, 0xb3, 0xbf, 0xb5, 0x4b, 0x7f, 0xfd, 0x74, 0x77, 0xa3, 0xb0, 0xb3, 0xbb, 0xb7, 0x5e, 0xfa, 0x98, 0x91, 0x30, 0x27, 0x21, 0x5d, 0x5c, 0xdf, 0xd8, 0xa8, 0x14, 0x0b, 0xeb, 0x1b, 0xe5, 0x7b, 0x86, 0x9e, 0x9b, 0x83, 0x11, 0xaa, 0x27, 0xf9, 0x15, 0xb7, 0x8e, 0xe3, 0x9c, 0xf0, 0xe6, 0x81, 0x1c, 0xe4, 0xbe, 0x66, 0xc2, 0x68, 0xa1, 0xd1, 0xd8, 0xb4, 0x5b, 0x9e, 0xf9, 0x12, 0x4c, 0xd1, 0xdf, 0x93, 0xd8, 0x73, 0x57, 0xc9, 0x8f, 0x0d, 0xe2, 0xd2, 0xa0, 0xb1, 0x5f, 0xd3, 0x0f, 0xaf, 0x9b, 0x89, 0x2f, 0x75, 0xc9, 0x52, 0x03, 0x77, 0x73, 0x98, 0x7b, 0x60, 0xf0, 0xc1, 0xb5, 0x86, 0x6b, 0xfb, 0x98, 0x37, 0xc1, 0x7e, 0x0b, 0xb0, 0x37, 0x2f, 0x17, 0xa5, 0xb4, 0x5d, 0x0c, 0xe6, 0x47, 0x21, 0xb5, 0xee, 0xf8, 0x57, 0x97, 0x31, 0x1b, 0xff, 0x4b, 0x35, 0xdd, 0x6c, 0x5c, 0x84, 0xb2, 0x04, 0x08, 0x86, 0xbe, 0xbe, 0x82, 0xd1, 0xc9, 0x7e, 0x68, 0x22, 0x12, 0xa2, 0xc9, 0xa1, 0xf9, 0x02, 0x8c, 0xe1, 0x7b, 0x13, 0x7a, 0xf2, 0x61, 0xde, 0xb8, 0x76, 0xc1, 0x03, 0x19, 0x8a, 0x0f, 0x31, 0x9c, 0x80, 0x9e, 0x7f, 0xa4, 0x2f, 0x81, 0xa0, 0x40, 0x88, 0xc1, 0x04, 0xbb, 0x81, 0x06, 0xa3, 0x3d, 0x09, 0x76, 0x15, 0x0d, 0x76, 0x45, 0x0d, 0x76, 0x03, 0x0d, 0x52, 0x7d, 0x09, 0x44, 0x0d, 0x82, 0x63, 0xb3, 0x08, 0xb0, 0x56, 0x7f, 0x03, 0xd5, 0xa8, 0x0a, 0xf4, 0xef, 0xd8, 0xe4, 0x22, 0x18, 0x42, 0x21, 0x4a, 0x21, 0xa0, 0xcc, 0x32, 0xa4, 0x77, 0x0f, 0x43, 0x12, 0xe8, 0xca, 0xe3, 0x40, 0x8d, 0x43, 0x85, 0x45, 0xc4, 0x05, 0xaa, 0xd0, 0x8b, 0x49, 0xf7, 0x57, 0x45, 0xb8, 0x1a, 0x01, 0x15, 0xaa, 0x42, 0x49, 0x32, 0x31, 0xaa, 0x08, 0x2c, 0x22, 0x0e, 0x17, 0xc3, 0xa2, 0xeb, 0x62, 0x49, 0x56, 0x95, 0xe6, 0x23, 0x28, 0x98, 0x04, 0x2b, 0x86, 0xec, 0x88, 0x78, 0x84, 0x04, 0x39, 0x06, 0x4f, 0xf4, 0xf6, 0x08, 0x97, 0xe1, 0x1e, 0xe1, 0xc7, 0x62, 0x9e, 0x91, 0xf7, 0x59, 0x31, 0xcf, 0x64, 0x6c, 0x9e, 0x71, 0x51, 0x25, 0xcf, 0xf8, 0xb0, 0xf9, 0x71, 0x98, 0xe4, 0x63, 0xb8, 0x3c, 0x61, 0x52, 0x83, 0xfd, 0xa5, 0xaf, 0xde, 0xa4, 0x4c, 0x92, 0x72, 0xaa, 0x78, 0x73, 0x0b, 0x26, 0xf8, 0xd0, 0xa6, 0x47, 0x2e, 0x77, 0x8a, 0xfd, 0x15, 0x8a, 0xde, 0x8c, 0x54, 0x90, 0x12, 0x2a, 0xe8, 0xd9, 0x55, 0x98, 0x89, 0xae, 0x46, 0x62, 0xf9, 0x1d, 0xa3, 0xe5, 0xf7, 0x8c, 0x58, 0x7e, 0x35, 0xb1, 0x7c, 0x97, 0xe0, 0x91, 0xc8, 0xda, 0x13, 0x47, 0x92, 0x10, 0x49, 0x6e, 0xc3, 0xb8, 0x54, 0x72, 0x44, 0xf0, 0x70, 0x04, 0x78, 0xb8, 0x1b, 0x1c, 0x86, 0x56, 0xc4, 0xea, 0x21, 0x81, 0x75, 0x11, 0xfc, 0x51, 0x98, 0x90, 0xeb, 0x8d, 0x88, 0x1e, 0x8f, 0x40, 0x8f, 0x47, 0xa0, 0xa3, 0xcf, 0x9d, 0x8c, 0x40, 0x27, 0x15, 0xf4, 0x6e, 0xcf, 0x73, 0x4f, 0x45, 0xa0, 0xa7, 0x22, 0xd0, 0xd1, 0xe7, 0x36, 0x23, 0xd0, 0xa6, 0x88, 0x7e, 0x0e, 0x26, 0x95, 0x12, 0x23, 0xc2, 0x47, 0x23, 0xe0, 0xa3, 0x22, 0xfc, 0x79, 0x30, 0xd4, 0xe2, 0x22, 0xe2, 0x27, 0x23, 0xf0, 0x93, 0x51, 0xa7, 0x8f, 0xd6, 0x7e, 0x24, 0x02, 0x3e, 0x12, 0x79, 0xfa, 0x68, 0xbc, 0x11, 0x81, 0x37, 0x44, 0x7c, 0x1e, 0x32, 0x62, 0x35, 0x11, 0xb1, 0xa9, 0x08, 0x6c, 0x4a, 0xb5, 0xbb, 0x54, 0x4c, 0xe2, 0x22, 0x7d, 0xac, 0x47, 0xba, 0x48, 0x25, 0x24, 0x8e, 0x24, 0x23, 0x92, 0x7c, 0x02, 0xce, 0x44, 0x95, 0x8c, 0x08, 0x8e, 0x05, 0x91, 0x63, 0x02, 0xf7, 0x88, 0x61, 0xb3, 0x67, 0xb7, 0x94, 0xc6, 0x69, 0xf6, 0x93, 0x30, 0x1d, 0x51, 0x38, 0x22, 0x68, 0x97, 0xe4, 0x6e, 0x2c, 0x2b, 0xd0, 0x92, 0x22, 0x50, 0x77, 0x8e, 0x76, 0xdc, 0xba, 0xe3, 0x8b, 0x5d, 0xd9, 0xd7, 0xa7, 0x61, 0x82, 0x95, 0xa7, 0xed, 0x76, 0x0d, 0xb5, 0x51, 0xcd, 0xfc, 0xf3, 0xbd, 0x7b, 0xa7, 0xcb, 0xdd, 0x45, 0x8d, 0xa1, 0x4e, 0xd1, 0x42, 0x7d, 0xb2, 0x67, 0x0b, 0x75, 0x29, 0x9e, 0x3e, 0xae, 0x93, 0x2a, 0x75, 0x75, 0x52, 0x4f, 0xf7, 0x26, 0xed, 0xd5, 0x50, 0x95, 0xba, 0x1a, 0xaa, 0xfe, 0x24, 0x91, 0x7d, 0xd5, 0x5a, 0x77, 0x5f, 0xb5, 0xd0, 0x9b, 0xa5, 0x77, 0x7b, 0xb5, 0xd6, 0xdd, 0x5e, 0xc5, 0xf0, 0x44, 0x77, 0x59, 0x6b, 0xdd, 0x5d, 0x56, 0x1f, 0x9e, 0xde, 0xcd, 0xd6, 0x5a, 0x77, 0xb3, 0x15, 0xc3, 0x13, 0xdd, 0x73, 0xad, 0x47, 0xf4, 0x5c, 0xcf, 0xf4, 0x26, 0xea, 0xd7, 0x7a, 0x6d, 0x44, 0xb5, 0x5e, 0x8b, 0x7d, 0x94, 0xea, 0xdb, 0x81, 0xad, 0x47, 0x74, 0x60, 0x71, 0x8a, 0xf5, 0x68, 0xc4, 0x36, 0xa2, 0x1a, 0xb1, 0x58, 0xc5, 0x7a, 0xf5, 0x63, 0x3f, 0xab, 0xf6, 0x63, 0x17, 0x7b, 0x33, 0x45, 0xb7, 0x65, 0x6b, 0xdd, 0x6d, 0xd9, 0x42, 0x5c, 0xce, 0x45, 0x75, 0x67, 0x9f, 0xec, 0xd9, 0x9d, 0x0d, 0x90, 0xc2, 0x71, 0x4d, 0xda, 0xcb, 0xbd, 0x9a, 0xb4, 0xa5, 0x78, 0xee, 0xfe, 0xbd, 0xda, 0x7e, 0x8f, 0x5e, 0xed, 0xd9, 0x78, 0xe2, 0x9f, 0xb6, 0x6c, 0x3f, 0x6d, 0xd9, 0x7e, 0xda, 0xb2, 0xfd, 0xb4, 0x65, 0xfb, 0xc9, 0xb7, 0x6c, 0xf9, 0xe4, 0x67, 0xbe, 0x34, 0xaf, 0xe5, 0xfe, 0xb3, 0x1e, 0xfc, 0xe1, 0xac, 0x97, 0xea, 0xfe, 0x31, 0x2e, 0x6f, 0x9b, 0x90, 0x21, 0x7f, 0xf2, 0xa2, 0x69, 0xb7, 0x5a, 0x75, 0xe7, 0x88, 0xf5, 0x6c, 0x8b, 0xdd, 0x5b, 0x89, 0x0c, 0x40, 0xfe, 0x68, 0xc8, 0x26, 0x15, 0x66, 0xcb, 0x8d, 0x13, 0x8e, 0x98, 0x77, 0x21, 0xdd, 0xf4, 0x8e, 0x02, 0xb6, 0x44, 0xd7, 0x42, 0xa8, 0xb0, 0xd1, 0x2b, 0x0d, 0xc9, 0xa0, 0x19, 0x0c, 0x60, 0xd5, 0x0e, 0x4e, 0xfc, 0x50, 0x35, 0x3d, 0x4e, 0x35, 0xec, 0x53, 0x59, 0xb5, 0x83, 0x70, 0x04, 0x87, 0xad, 0xaa, 0x7b, 0x5c, 0xa5, 0x93, 0x82, 0xe7, 0x25, 0x98, 0x54, 0xb4, 0x8d, 0xc8, 0xf9, 0x87, 0xf0, 0x0d, 0x56, 0x4c, 0xd5, 0x3c, 0x2e, 0x27, 0xc4, 0x80, 0xcc, 0x3d, 0x01, 0xe3, 0x12, 0xb7, 0x99, 0x01, 0xed, 0x90, 0x7d, 0x99, 0x52, 0x3b, 0xcc, 0x7d, 0x51, 0x83, 0x34, 0x7b, 0x91, 0x60, 0xc7, 0xae, 0xb7, 0xcd, 0x17, 0x21, 0xd9, 0xe0, 0x5f, 0x68, 0x7a, 0xd8, 0x2f, 0xcf, 0x12, 0x06, 0x73, 0x0d, 0x86, 0xdb, 0xc1, 0x17, 0x9e, 0x1e, 0xea, 0x1b, 0xb1, 0x04, 0x9e, 0xbb, 0xaf, 0xc1, 0x14, 0x7b, 0xcf, 0xd5, 0x63, 0xaf, 0x3f, 0xdb, 0xad, 0xd9, 0xaf, 0x69, 0x30, 0x16, 0x1c, 0x99, 0x07, 0x30, 0x11, 0x1c, 0xd0, 0x57, 0xec, 0x69, 0xa4, 0xe6, 0x05, 0x0b, 0x77, 0x71, 0x2c, 0x45, 0x7c, 0xa2, 0x8f, 0xa2, 0xe8, 0x9a, 0x2c, 0x0f, 0xce, 0x16, 0x60, 0x3a, 0x42, 0xec, 0x34, 0x0b, 0x72, 0xee, 0x3c, 0x8c, 0x6d, 0xb9, 0x3e, 0xfd, 0xdd, 0x1c, 0xf3, 0x8c, 0xf0, 0x54, 0xa1, 0x98, 0x30, 0x86, 0x08, 0x78, 0xf1, 0x3c, 0x8c, 0xb2, 0xec, 0x37, 0x47, 0x20, 0xb1, 0x59, 0x30, 0x86, 0xc8, 0xff, 0x45, 0x43, 0x23, 0xff, 0x97, 0x8c, 0x44, 0x71, 0xe3, 0x21, 0x9f, 0x33, 0x0d, 0x45, 0x3d, 0x67, 0x3a, 0x18, 0xa1, 0xe6, 0xf9, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x76, 0xb0, 0x87, 0x4a, 0x74, 0x80, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x MapEnum) String() string { s, ok := MapEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x Message_Humour) String() string { s, ok := Message_Humour_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *Message) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Message") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Message but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Message but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Hilarity != that1.Hilarity { return fmt.Errorf("Hilarity this(%v) Not Equal that(%v)", this.Hilarity, that1.Hilarity) } if this.HeightInCm != that1.HeightInCm { return fmt.Errorf("HeightInCm this(%v) Not Equal that(%v)", this.HeightInCm, that1.HeightInCm) } if !bytes.Equal(this.Data, that1.Data) { return fmt.Errorf("Data this(%v) Not Equal that(%v)", this.Data, that1.Data) } if this.ResultCount != that1.ResultCount { return fmt.Errorf("ResultCount this(%v) Not Equal that(%v)", this.ResultCount, that1.ResultCount) } if this.TrueScotsman != that1.TrueScotsman { return fmt.Errorf("TrueScotsman this(%v) Not Equal that(%v)", this.TrueScotsman, that1.TrueScotsman) } if this.Score != that1.Score { return fmt.Errorf("Score this(%v) Not Equal that(%v)", this.Score, that1.Score) } if len(this.Key) != len(that1.Key) { return fmt.Errorf("Key this(%v) Not Equal that(%v)", len(this.Key), len(that1.Key)) } for i := range this.Key { if this.Key[i] != that1.Key[i] { return fmt.Errorf("Key this[%v](%v) Not Equal that[%v](%v)", i, this.Key[i], i, that1.Key[i]) } } if !this.Nested.Equal(that1.Nested) { return fmt.Errorf("Nested this(%v) Not Equal that(%v)", this.Nested, that1.Nested) } if len(this.Terrain) != len(that1.Terrain) { return fmt.Errorf("Terrain this(%v) Not Equal that(%v)", len(this.Terrain), len(that1.Terrain)) } for i := range this.Terrain { if !this.Terrain[i].Equal(that1.Terrain[i]) { return fmt.Errorf("Terrain this[%v](%v) Not Equal that[%v](%v)", i, this.Terrain[i], i, that1.Terrain[i]) } } if !this.Proto2Field.Equal(that1.Proto2Field) { return fmt.Errorf("Proto2Field this(%v) Not Equal that(%v)", this.Proto2Field, that1.Proto2Field) } if len(this.Proto2Value) != len(that1.Proto2Value) { return fmt.Errorf("Proto2Value this(%v) Not Equal that(%v)", len(this.Proto2Value), len(that1.Proto2Value)) } for i := range this.Proto2Value { if !this.Proto2Value[i].Equal(that1.Proto2Value[i]) { return fmt.Errorf("Proto2Value this[%v](%v) Not Equal that[%v](%v)", i, this.Proto2Value[i], i, that1.Proto2Value[i]) } } return nil } func (this *Message) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Hilarity != that1.Hilarity { return false } if this.HeightInCm != that1.HeightInCm { return false } if !bytes.Equal(this.Data, that1.Data) { return false } if this.ResultCount != that1.ResultCount { return false } if this.TrueScotsman != that1.TrueScotsman { return false } if this.Score != that1.Score { return false } if len(this.Key) != len(that1.Key) { return false } for i := range this.Key { if this.Key[i] != that1.Key[i] { return false } } if !this.Nested.Equal(that1.Nested) { return false } if len(this.Terrain) != len(that1.Terrain) { return false } for i := range this.Terrain { if !this.Terrain[i].Equal(that1.Terrain[i]) { return false } } if !this.Proto2Field.Equal(that1.Proto2Field) { return false } if len(this.Proto2Value) != len(that1.Proto2Value) { return false } for i := range this.Proto2Value { if !this.Proto2Value[i].Equal(that1.Proto2Value[i]) { return false } } return true } func (this *Nested) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Nested) if !ok { that2, ok := that.(Nested) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Nested") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Nested but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Nested but is not nil && this == nil") } if this.Bunny != that1.Bunny { return fmt.Errorf("Bunny this(%v) Not Equal that(%v)", this.Bunny, that1.Bunny) } return nil } func (this *Nested) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Nested) if !ok { that2, ok := that.(Nested) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Bunny != that1.Bunny { return false } return true } func (this *AllMaps) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMaps") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMaps but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMaps but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } return nil } func (this *AllMaps) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } return true } func (this *AllMapsOrdered) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMapsOrdered") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMapsOrdered but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMapsOrdered but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } return nil } func (this *AllMapsOrdered) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } return true } func (this *MessageWithMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MessageWithMap) if !ok { that2, ok := that.(MessageWithMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MessageWithMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MessageWithMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MessageWithMap but is not nil && this == nil") } if len(this.NameMapping) != len(that1.NameMapping) { return fmt.Errorf("NameMapping this(%v) Not Equal that(%v)", len(this.NameMapping), len(that1.NameMapping)) } for i := range this.NameMapping { if this.NameMapping[i] != that1.NameMapping[i] { return fmt.Errorf("NameMapping this[%v](%v) Not Equal that[%v](%v)", i, this.NameMapping[i], i, that1.NameMapping[i]) } } if len(this.MsgMapping) != len(that1.MsgMapping) { return fmt.Errorf("MsgMapping this(%v) Not Equal that(%v)", len(this.MsgMapping), len(that1.MsgMapping)) } for i := range this.MsgMapping { if !this.MsgMapping[i].Equal(that1.MsgMapping[i]) { return fmt.Errorf("MsgMapping this[%v](%v) Not Equal that[%v](%v)", i, this.MsgMapping[i], i, that1.MsgMapping[i]) } } if len(this.ByteMapping) != len(that1.ByteMapping) { return fmt.Errorf("ByteMapping this(%v) Not Equal that(%v)", len(this.ByteMapping), len(that1.ByteMapping)) } for i := range this.ByteMapping { if !bytes.Equal(this.ByteMapping[i], that1.ByteMapping[i]) { return fmt.Errorf("ByteMapping this[%v](%v) Not Equal that[%v](%v)", i, this.ByteMapping[i], i, that1.ByteMapping[i]) } } return nil } func (this *MessageWithMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MessageWithMap) if !ok { that2, ok := that.(MessageWithMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NameMapping) != len(that1.NameMapping) { return false } for i := range this.NameMapping { if this.NameMapping[i] != that1.NameMapping[i] { return false } } if len(this.MsgMapping) != len(that1.MsgMapping) { return false } for i := range this.MsgMapping { if !this.MsgMapping[i].Equal(that1.MsgMapping[i]) { return false } } if len(this.ByteMapping) != len(that1.ByteMapping) { return false } for i := range this.ByteMapping { if !bytes.Equal(this.ByteMapping[i], that1.ByteMapping[i]) { return false } } return true } func (this *FloatingPoint) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FloatingPoint") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FloatingPoint but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FloatingPoint but is not nil && this == nil") } if this.F != that1.F { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } return nil } func (this *FloatingPoint) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.F != that1.F { return false } return true } func (this *Uint128Pair) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Uint128Pair) if !ok { that2, ok := that.(Uint128Pair) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Uint128Pair") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Uint128Pair but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Uint128Pair but is not nil && this == nil") } if !this.Left.Equal(that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if that1.Right == nil { if this.Right != nil { return fmt.Errorf("this.Right != nil && that1.Right == nil") } } else if !this.Right.Equal(*that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } return nil } func (this *Uint128Pair) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Uint128Pair) if !ok { that2, ok := that.(Uint128Pair) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(that1.Left) { return false } if that1.Right == nil { if this.Right != nil { return false } } else if !this.Right.Equal(*that1.Right) { return false } return true } func (this *ContainsNestedMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ContainsNestedMap) if !ok { that2, ok := that.(ContainsNestedMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ContainsNestedMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ContainsNestedMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ContainsNestedMap but is not nil && this == nil") } return nil } func (this *ContainsNestedMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ContainsNestedMap) if !ok { that2, ok := that.(ContainsNestedMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } return true } func (this *ContainsNestedMap_NestedMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ContainsNestedMap_NestedMap) if !ok { that2, ok := that.(ContainsNestedMap_NestedMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ContainsNestedMap_NestedMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ContainsNestedMap_NestedMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ContainsNestedMap_NestedMap but is not nil && this == nil") } if len(this.NestedMapField) != len(that1.NestedMapField) { return fmt.Errorf("NestedMapField this(%v) Not Equal that(%v)", len(this.NestedMapField), len(that1.NestedMapField)) } for i := range this.NestedMapField { if this.NestedMapField[i] != that1.NestedMapField[i] { return fmt.Errorf("NestedMapField this[%v](%v) Not Equal that[%v](%v)", i, this.NestedMapField[i], i, that1.NestedMapField[i]) } } return nil } func (this *ContainsNestedMap_NestedMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ContainsNestedMap_NestedMap) if !ok { that2, ok := that.(ContainsNestedMap_NestedMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NestedMapField) != len(that1.NestedMapField) { return false } for i := range this.NestedMapField { if this.NestedMapField[i] != that1.NestedMapField[i] { return false } } return true } func (this *NotPacked) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NotPacked) if !ok { that2, ok := that.(NotPacked) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NotPacked") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NotPacked but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NotPacked but is not nil && this == nil") } if len(this.Key) != len(that1.Key) { return fmt.Errorf("Key this(%v) Not Equal that(%v)", len(this.Key), len(that1.Key)) } for i := range this.Key { if this.Key[i] != that1.Key[i] { return fmt.Errorf("Key this[%v](%v) Not Equal that[%v](%v)", i, this.Key[i], i, that1.Key[i]) } } return nil } func (this *NotPacked) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NotPacked) if !ok { that2, ok := that.(NotPacked) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Key) != len(that1.Key) { return false } for i := range this.Key { if this.Key[i] != that1.Key[i] { return false } } return true } type MessageFace interface { Proto() github_com_gogo_protobuf_proto.Message GetName() string GetHilarity() Message_Humour GetHeightInCm() uint32 GetData() []byte GetResultCount() int64 GetTrueScotsman() bool GetScore() float32 GetKey() []uint64 GetNested() *Nested GetTerrain() map[int64]*Nested GetProto2Field() *test.NinOptNative GetProto2Value() map[int64]*test.NinOptEnum } func (this *Message) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Message) TestProto() github_com_gogo_protobuf_proto.Message { return NewMessageFromFace(this) } func (this *Message) GetName() string { return this.Name } func (this *Message) GetHilarity() Message_Humour { return this.Hilarity } func (this *Message) GetHeightInCm() uint32 { return this.HeightInCm } func (this *Message) GetData() []byte { return this.Data } func (this *Message) GetResultCount() int64 { return this.ResultCount } func (this *Message) GetTrueScotsman() bool { return this.TrueScotsman } func (this *Message) GetScore() float32 { return this.Score } func (this *Message) GetKey() []uint64 { return this.Key } func (this *Message) GetNested() *Nested { return this.Nested } func (this *Message) GetTerrain() map[int64]*Nested { return this.Terrain } func (this *Message) GetProto2Field() *test.NinOptNative { return this.Proto2Field } func (this *Message) GetProto2Value() map[int64]*test.NinOptEnum { return this.Proto2Value } func NewMessageFromFace(that MessageFace) *Message { this := &Message{} this.Name = that.GetName() this.Hilarity = that.GetHilarity() this.HeightInCm = that.GetHeightInCm() this.Data = that.GetData() this.ResultCount = that.GetResultCount() this.TrueScotsman = that.GetTrueScotsman() this.Score = that.GetScore() this.Key = that.GetKey() this.Nested = that.GetNested() this.Terrain = that.GetTerrain() this.Proto2Field = that.GetProto2Field() this.Proto2Value = that.GetProto2Value() return this } type NestedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetBunny() string } func (this *Nested) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Nested) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedFromFace(this) } func (this *Nested) GetBunny() string { return this.Bunny } func NewNestedFromFace(that NestedFace) *Nested { this := &Nested{} this.Bunny = that.GetBunny() return this } type AllMapsFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMaps) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMaps) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsFromFace(this) } func (this *AllMaps) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMaps) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMaps) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMaps) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMaps) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMaps) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMaps) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMaps) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMaps) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMaps) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMaps) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMaps) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMaps) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMaps) GetStringMap() map[string]string { return this.StringMap } func (this *AllMaps) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMaps) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMaps) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsFromFace(that AllMapsFace) *AllMaps { this := &AllMaps{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type AllMapsOrderedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMapsOrdered) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMapsOrdered) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsOrderedFromFace(this) } func (this *AllMapsOrdered) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMapsOrdered) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMapsOrdered) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMapsOrdered) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMapsOrdered) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMapsOrdered) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMapsOrdered) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMapsOrdered) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMapsOrdered) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMapsOrdered) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMapsOrdered) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMapsOrdered) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMapsOrdered) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMapsOrdered) GetStringMap() map[string]string { return this.StringMap } func (this *AllMapsOrdered) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMapsOrdered) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMapsOrdered) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsOrderedFromFace(that AllMapsOrderedFace) *AllMapsOrdered { this := &AllMapsOrdered{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type MessageWithMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNameMapping() map[int32]string GetMsgMapping() map[int64]*FloatingPoint GetByteMapping() map[bool][]byte } func (this *MessageWithMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *MessageWithMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewMessageWithMapFromFace(this) } func (this *MessageWithMap) GetNameMapping() map[int32]string { return this.NameMapping } func (this *MessageWithMap) GetMsgMapping() map[int64]*FloatingPoint { return this.MsgMapping } func (this *MessageWithMap) GetByteMapping() map[bool][]byte { return this.ByteMapping } func NewMessageWithMapFromFace(that MessageWithMapFace) *MessageWithMap { this := &MessageWithMap{} this.NameMapping = that.GetNameMapping() this.MsgMapping = that.GetMsgMapping() this.ByteMapping = that.GetByteMapping() return this } type FloatingPointFace interface { Proto() github_com_gogo_protobuf_proto.Message GetF() float64 } func (this *FloatingPoint) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *FloatingPoint) TestProto() github_com_gogo_protobuf_proto.Message { return NewFloatingPointFromFace(this) } func (this *FloatingPoint) GetF() float64 { return this.F } func NewFloatingPointFromFace(that FloatingPointFace) *FloatingPoint { this := &FloatingPoint{} this.F = that.GetF() return this } type Uint128PairFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() github_com_gogo_protobuf_test_custom.Uint128 GetRight() *github_com_gogo_protobuf_test_custom.Uint128 } func (this *Uint128Pair) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Uint128Pair) TestProto() github_com_gogo_protobuf_proto.Message { return NewUint128PairFromFace(this) } func (this *Uint128Pair) GetLeft() github_com_gogo_protobuf_test_custom.Uint128 { return this.Left } func (this *Uint128Pair) GetRight() *github_com_gogo_protobuf_test_custom.Uint128 { return this.Right } func NewUint128PairFromFace(that Uint128PairFace) *Uint128Pair { this := &Uint128Pair{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type ContainsNestedMapFace interface { Proto() github_com_gogo_protobuf_proto.Message } func (this *ContainsNestedMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ContainsNestedMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewContainsNestedMapFromFace(this) } func NewContainsNestedMapFromFace(that ContainsNestedMapFace) *ContainsNestedMap { this := &ContainsNestedMap{} return this } type ContainsNestedMap_NestedMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedMapField() map[string]float64 } func (this *ContainsNestedMap_NestedMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ContainsNestedMap_NestedMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewContainsNestedMap_NestedMapFromFace(this) } func (this *ContainsNestedMap_NestedMap) GetNestedMapField() map[string]float64 { return this.NestedMapField } func NewContainsNestedMap_NestedMapFromFace(that ContainsNestedMap_NestedMapFace) *ContainsNestedMap_NestedMap { this := &ContainsNestedMap_NestedMap{} this.NestedMapField = that.GetNestedMapField() return this } type NotPackedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetKey() []uint64 } func (this *NotPacked) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NotPacked) TestProto() github_com_gogo_protobuf_proto.Message { return NewNotPackedFromFace(this) } func (this *NotPacked) GetKey() []uint64 { return this.Key } func NewNotPackedFromFace(that NotPackedFace) *NotPacked { this := &NotPacked{} this.Key = that.GetKey() return this } func (this *Message) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 16) s = append(s, "&theproto3.Message{") s = append(s, "Name: "+fmt.Sprintf("%#v", this.Name)+",\n") s = append(s, "Hilarity: "+fmt.Sprintf("%#v", this.Hilarity)+",\n") s = append(s, "HeightInCm: "+fmt.Sprintf("%#v", this.HeightInCm)+",\n") s = append(s, "Data: "+fmt.Sprintf("%#v", this.Data)+",\n") s = append(s, "ResultCount: "+fmt.Sprintf("%#v", this.ResultCount)+",\n") s = append(s, "TrueScotsman: "+fmt.Sprintf("%#v", this.TrueScotsman)+",\n") s = append(s, "Score: "+fmt.Sprintf("%#v", this.Score)+",\n") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") if this.Nested != nil { s = append(s, "Nested: "+fmt.Sprintf("%#v", this.Nested)+",\n") } keysForTerrain := make([]int64, 0, len(this.Terrain)) for k := range this.Terrain { keysForTerrain = append(keysForTerrain, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForTerrain) mapStringForTerrain := "map[int64]*Nested{" for _, k := range keysForTerrain { mapStringForTerrain += fmt.Sprintf("%#v: %#v,", k, this.Terrain[k]) } mapStringForTerrain += "}" if this.Terrain != nil { s = append(s, "Terrain: "+mapStringForTerrain+",\n") } if this.Proto2Field != nil { s = append(s, "Proto2Field: "+fmt.Sprintf("%#v", this.Proto2Field)+",\n") } keysForProto2Value := make([]int64, 0, len(this.Proto2Value)) for k := range this.Proto2Value { keysForProto2Value = append(keysForProto2Value, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForProto2Value) mapStringForProto2Value := "map[int64]*test.NinOptEnum{" for _, k := range keysForProto2Value { mapStringForProto2Value += fmt.Sprintf("%#v: %#v,", k, this.Proto2Value[k]) } mapStringForProto2Value += "}" if this.Proto2Value != nil { s = append(s, "Proto2Value: "+mapStringForProto2Value+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Nested) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.Nested{") s = append(s, "Bunny: "+fmt.Sprintf("%#v", this.Bunny)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *AllMaps) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&theproto3.AllMaps{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMapsOrdered) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&theproto3.AllMapsOrdered{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MessageWithMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&theproto3.MessageWithMap{") keysForNameMapping := make([]int32, 0, len(this.NameMapping)) for k := range this.NameMapping { keysForNameMapping = append(keysForNameMapping, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNameMapping) mapStringForNameMapping := "map[int32]string{" for _, k := range keysForNameMapping { mapStringForNameMapping += fmt.Sprintf("%#v: %#v,", k, this.NameMapping[k]) } mapStringForNameMapping += "}" if this.NameMapping != nil { s = append(s, "NameMapping: "+mapStringForNameMapping+",\n") } keysForMsgMapping := make([]int64, 0, len(this.MsgMapping)) for k := range this.MsgMapping { keysForMsgMapping = append(keysForMsgMapping, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForMsgMapping) mapStringForMsgMapping := "map[int64]*FloatingPoint{" for _, k := range keysForMsgMapping { mapStringForMsgMapping += fmt.Sprintf("%#v: %#v,", k, this.MsgMapping[k]) } mapStringForMsgMapping += "}" if this.MsgMapping != nil { s = append(s, "MsgMapping: "+mapStringForMsgMapping+",\n") } keysForByteMapping := make([]bool, 0, len(this.ByteMapping)) for k := range this.ByteMapping { keysForByteMapping = append(keysForByteMapping, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForByteMapping) mapStringForByteMapping := "map[bool][]byte{" for _, k := range keysForByteMapping { mapStringForByteMapping += fmt.Sprintf("%#v: %#v,", k, this.ByteMapping[k]) } mapStringForByteMapping += "}" if this.ByteMapping != nil { s = append(s, "ByteMapping: "+mapStringForByteMapping+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FloatingPoint) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.FloatingPoint{") s = append(s, "F: "+fmt.Sprintf("%#v", this.F)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *Uint128Pair) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&theproto3.Uint128Pair{") s = append(s, "Left: "+fmt.Sprintf("%#v", this.Left)+",\n") s = append(s, "Right: "+fmt.Sprintf("%#v", this.Right)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *ContainsNestedMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&theproto3.ContainsNestedMap{") s = append(s, "}") return strings.Join(s, "") } func (this *ContainsNestedMap_NestedMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.ContainsNestedMap_NestedMap{") keysForNestedMapField := make([]string, 0, len(this.NestedMapField)) for k := range this.NestedMapField { keysForNestedMapField = append(keysForNestedMapField, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNestedMapField) mapStringForNestedMapField := "map[string]float64{" for _, k := range keysForNestedMapField { mapStringForNestedMapField += fmt.Sprintf("%#v: %#v,", k, this.NestedMapField[k]) } mapStringForNestedMapField += "}" if this.NestedMapField != nil { s = append(s, "NestedMapField: "+mapStringForNestedMapField+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NotPacked) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.NotPacked{") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringTheproto3(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Message) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Message) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Name) > 0 { dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(m.Name))) i += copy(dAtA[i:], m.Name) } if m.Hilarity != 0 { dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Hilarity)) } if m.HeightInCm != 0 { dAtA[i] = 0x18 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.HeightInCm)) } if len(m.Data) > 0 { dAtA[i] = 0x22 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(m.Data))) i += copy(dAtA[i:], m.Data) } if len(m.Key) > 0 { dAtA2 := make([]byte, len(m.Key)*10) var j1 int for _, num := range m.Key { for num >= 1<<7 { dAtA2[j1] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 j1++ } dAtA2[j1] = uint8(num) j1++ } dAtA[i] = 0x2a i++ i = encodeVarintTheproto3(dAtA, i, uint64(j1)) i += copy(dAtA[i:], dAtA2[:j1]) } if m.Nested != nil { dAtA[i] = 0x32 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Nested.Size())) n3, err := m.Nested.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 } if m.ResultCount != 0 { dAtA[i] = 0x38 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.ResultCount)) } if m.TrueScotsman { dAtA[i] = 0x40 i++ if m.TrueScotsman { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } if m.Score != 0 { dAtA[i] = 0x4d i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Score)))) i += 4 } if len(m.Terrain) > 0 { for k := range m.Terrain { dAtA[i] = 0x52 i++ v := m.Terrain[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + sovTheproto3(uint64(k)) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n4, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n4 } } } if m.Proto2Field != nil { dAtA[i] = 0x5a i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Proto2Field.Size())) n5, err := m.Proto2Field.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n5 } if len(m.Proto2Value) > 0 { for k := range m.Proto2Value { dAtA[i] = 0x6a i++ v := m.Proto2Value[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + sovTheproto3(uint64(k)) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n6, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n6 } } } return i, nil } func (m *Nested) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Nested) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Bunny) > 0 { dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(m.Bunny))) i += copy(dAtA[i:], m.Bunny) } return i, nil } func (m *AllMaps) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllMaps) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StringToDoubleMap) > 0 { for k := range m.StringToDoubleMap { dAtA[i] = 0xa i++ v := m.StringToDoubleMap[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } if len(m.StringToFloatMap) > 0 { for k := range m.StringToFloatMap { dAtA[i] = 0x12 i++ v := m.StringToFloatMap[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(v)))) i += 4 } } if len(m.Int32Map) > 0 { for k := range m.Int32Map { dAtA[i] = 0x1a i++ v := m.Int32Map[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Int64Map) > 0 { for k := range m.Int64Map { dAtA[i] = 0x22 i++ v := m.Int64Map[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Uint32Map) > 0 { for k := range m.Uint32Map { dAtA[i] = 0x2a i++ v := m.Uint32Map[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Uint64Map) > 0 { for k := range m.Uint64Map { dAtA[i] = 0x32 i++ v := m.Uint64Map[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Sint32Map) > 0 { for k := range m.Sint32Map { dAtA[i] = 0x3a i++ v := m.Sint32Map[k] mapSize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint32(k)<<1)^uint32((k>>31)))) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint32(v)<<1)^uint32((v>>31)))) } } if len(m.Sint64Map) > 0 { for k := range m.Sint64Map { dAtA[i] = 0x42 i++ v := m.Sint64Map[k] mapSize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(v)<<1)^uint64((v>>63)))) } } if len(m.Fixed32Map) > 0 { for k := range m.Fixed32Map { dAtA[i] = 0x4a i++ v := m.Fixed32Map[k] mapSize := 1 + 4 + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Sfixed32Map) > 0 { for k := range m.Sfixed32Map { dAtA[i] = 0x52 i++ v := m.Sfixed32Map[k] mapSize := 1 + 4 + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Fixed64Map) > 0 { for k := range m.Fixed64Map { dAtA[i] = 0x5a i++ v := m.Fixed64Map[k] mapSize := 1 + 8 + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.Sfixed64Map) > 0 { for k := range m.Sfixed64Map { dAtA[i] = 0x62 i++ v := m.Sfixed64Map[k] mapSize := 1 + 8 + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.BoolMap) > 0 { for k := range m.BoolMap { dAtA[i] = 0x6a i++ v := m.BoolMap[k] mapSize := 1 + 1 + 1 + 1 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x10 i++ if v { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.StringMap) > 0 { for k := range m.StringMap { dAtA[i] = 0x72 i++ v := m.StringMap[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.StringToBytesMap) > 0 { for k := range m.StringToBytesMap { dAtA[i] = 0x7a i++ v := m.StringToBytesMap[k] byteSize := 0 if len(v) > 0 { byteSize = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + byteSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if len(v) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } if len(m.StringToEnumMap) > 0 { for k := range m.StringToEnumMap { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ v := m.StringToEnumMap[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.StringToMsgMap) > 0 { for k := range m.StringToMsgMap { dAtA[i] = 0x8a i++ dAtA[i] = 0x1 i++ v := m.StringToMsgMap[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n7, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n7 } } } return i, nil } func (m *AllMapsOrdered) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AllMapsOrdered) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.StringToDoubleMap) > 0 { keysForStringToDoubleMap := make([]string, 0, len(m.StringToDoubleMap)) for k := range m.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) for _, k := range keysForStringToDoubleMap { dAtA[i] = 0xa i++ v := m.StringToDoubleMap[string(k)] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } if len(m.StringToFloatMap) > 0 { keysForStringToFloatMap := make([]string, 0, len(m.StringToFloatMap)) for k := range m.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) for _, k := range keysForStringToFloatMap { dAtA[i] = 0x12 i++ v := m.StringToFloatMap[string(k)] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(v)))) i += 4 } } if len(m.Int32Map) > 0 { keysForInt32Map := make([]int32, 0, len(m.Int32Map)) for k := range m.Int32Map { keysForInt32Map = append(keysForInt32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) for _, k := range keysForInt32Map { dAtA[i] = 0x1a i++ v := m.Int32Map[int32(k)] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Int64Map) > 0 { keysForInt64Map := make([]int64, 0, len(m.Int64Map)) for k := range m.Int64Map { keysForInt64Map = append(keysForInt64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) for _, k := range keysForInt64Map { dAtA[i] = 0x22 i++ v := m.Int64Map[int64(k)] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Uint32Map) > 0 { keysForUint32Map := make([]uint32, 0, len(m.Uint32Map)) for k := range m.Uint32Map { keysForUint32Map = append(keysForUint32Map, uint32(k)) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) for _, k := range keysForUint32Map { dAtA[i] = 0x2a i++ v := m.Uint32Map[uint32(k)] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Uint64Map) > 0 { keysForUint64Map := make([]uint64, 0, len(m.Uint64Map)) for k := range m.Uint64Map { keysForUint64Map = append(keysForUint64Map, uint64(k)) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) for _, k := range keysForUint64Map { dAtA[i] = 0x32 i++ v := m.Uint64Map[uint64(k)] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.Sint32Map) > 0 { keysForSint32Map := make([]int32, 0, len(m.Sint32Map)) for k := range m.Sint32Map { keysForSint32Map = append(keysForSint32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) for _, k := range keysForSint32Map { dAtA[i] = 0x3a i++ v := m.Sint32Map[int32(k)] mapSize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint32(k)<<1)^uint32((k>>31)))) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint32(v)<<1)^uint32((v>>31)))) } } if len(m.Sint64Map) > 0 { keysForSint64Map := make([]int64, 0, len(m.Sint64Map)) for k := range m.Sint64Map { keysForSint64Map = append(keysForSint64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) for _, k := range keysForSint64Map { dAtA[i] = 0x42 i++ v := m.Sint64Map[int64(k)] mapSize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(v)<<1)^uint64((v>>63)))) } } if len(m.Fixed32Map) > 0 { keysForFixed32Map := make([]uint32, 0, len(m.Fixed32Map)) for k := range m.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, uint32(k)) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) for _, k := range keysForFixed32Map { dAtA[i] = 0x4a i++ v := m.Fixed32Map[uint32(k)] mapSize := 1 + 4 + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Sfixed32Map) > 0 { keysForSfixed32Map := make([]int32, 0, len(m.Sfixed32Map)) for k := range m.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, int32(k)) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) for _, k := range keysForSfixed32Map { dAtA[i] = 0x52 i++ v := m.Sfixed32Map[int32(k)] mapSize := 1 + 4 + 1 + 4 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(k)) i += 4 dAtA[i] = 0x15 i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(v)) i += 4 } } if len(m.Fixed64Map) > 0 { keysForFixed64Map := make([]uint64, 0, len(m.Fixed64Map)) for k := range m.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, uint64(k)) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) for _, k := range keysForFixed64Map { dAtA[i] = 0x5a i++ v := m.Fixed64Map[uint64(k)] mapSize := 1 + 8 + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.Sfixed64Map) > 0 { keysForSfixed64Map := make([]int64, 0, len(m.Sfixed64Map)) for k := range m.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, int64(k)) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) for _, k := range keysForSfixed64Map { dAtA[i] = 0x62 i++ v := m.Sfixed64Map[int64(k)] mapSize := 1 + 8 + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(k)) i += 8 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(v)) i += 8 } } if len(m.BoolMap) > 0 { keysForBoolMap := make([]bool, 0, len(m.BoolMap)) for k := range m.BoolMap { keysForBoolMap = append(keysForBoolMap, bool(k)) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) for _, k := range keysForBoolMap { dAtA[i] = 0x6a i++ v := m.BoolMap[bool(k)] mapSize := 1 + 1 + 1 + 1 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ dAtA[i] = 0x10 i++ if v { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } } if len(m.StringMap) > 0 { keysForStringMap := make([]string, 0, len(m.StringMap)) for k := range m.StringMap { keysForStringMap = append(keysForStringMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) for _, k := range keysForStringMap { dAtA[i] = 0x72 i++ v := m.StringMap[string(k)] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.StringToBytesMap) > 0 { keysForStringToBytesMap := make([]string, 0, len(m.StringToBytesMap)) for k := range m.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) for _, k := range keysForStringToBytesMap { dAtA[i] = 0x7a i++ v := m.StringToBytesMap[string(k)] byteSize := 0 if len(v) > 0 { byteSize = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + byteSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if len(v) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } if len(m.StringToEnumMap) > 0 { keysForStringToEnumMap := make([]string, 0, len(m.StringToEnumMap)) for k := range m.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) for _, k := range keysForStringToEnumMap { dAtA[i] = 0x82 i++ dAtA[i] = 0x1 i++ v := m.StringToEnumMap[string(k)] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x10 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v)) } } if len(m.StringToMsgMap) > 0 { keysForStringToMsgMap := make([]string, 0, len(m.StringToMsgMap)) for k := range m.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, string(k)) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) for _, k := range keysForStringToMsgMap { dAtA[i] = 0x8a i++ dAtA[i] = 0x1 i++ v := m.StringToMsgMap[string(k)] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n8, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n8 } } } return i, nil } func (m *MessageWithMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MessageWithMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NameMapping) > 0 { for k := range m.NameMapping { dAtA[i] = 0xa i++ v := m.NameMapping[k] mapSize := 1 + sovTheproto3(uint64(k)) + 1 + len(v) + sovTheproto3(uint64(len(v))) i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } if len(m.MsgMapping) > 0 { for k := range m.MsgMapping { dAtA[i] = 0x12 i++ v := m.MsgMapping[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTheproto3(uint64(msgSize)) } mapSize := 1 + sozTheproto3(uint64(k)) + msgSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTheproto3(dAtA, i, uint64((uint64(k)<<1)^uint64((k>>63)))) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(v.Size())) n9, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n9 } } } if len(m.ByteMapping) > 0 { for k := range m.ByteMapping { dAtA[i] = 0x1a i++ v := m.ByteMapping[k] byteSize := 0 if len(v) > 0 { byteSize = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapSize := 1 + 1 + byteSize i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ if k { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ if len(v) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(v))) i += copy(dAtA[i:], v) } } } return i, nil } func (m *FloatingPoint) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FloatingPoint) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.F != 0 { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.F)))) i += 8 } return i, nil } func (m *Uint128Pair) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Uint128Pair) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Left.Size())) n10, err := m.Left.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n10 if m.Right != nil { dAtA[i] = 0x12 i++ i = encodeVarintTheproto3(dAtA, i, uint64(m.Right.Size())) n11, err := m.Right.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n11 } return i, nil } func (m *ContainsNestedMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ContainsNestedMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l return i, nil } func (m *ContainsNestedMap_NestedMap) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ContainsNestedMap_NestedMap) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NestedMapField) > 0 { for k := range m.NestedMapField { dAtA[i] = 0xa i++ v := m.NestedMapField[k] mapSize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 i = encodeVarintTheproto3(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintTheproto3(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(v)))) i += 8 } } return i, nil } func (m *NotPacked) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NotPacked) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Key) > 0 { for _, num := range m.Key { dAtA[i] = 0x28 i++ i = encodeVarintTheproto3(dAtA, i, uint64(num)) } } return i, nil } func encodeVarintTheproto3(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedMessage(r randyTheproto3, easy bool) *Message { this := &Message{} this.Name = string(randStringTheproto3(r)) this.Hilarity = Message_Humour([]int32{0, 1, 2, 3}[r.Intn(4)]) this.HeightInCm = uint32(r.Uint32()) v1 := r.Intn(100) this.Data = make([]byte, v1) for i := 0; i < v1; i++ { this.Data[i] = byte(r.Intn(256)) } v2 := r.Intn(10) this.Key = make([]uint64, v2) for i := 0; i < v2; i++ { this.Key[i] = uint64(uint64(r.Uint32())) } if r.Intn(10) != 0 { this.Nested = NewPopulatedNested(r, easy) } this.ResultCount = int64(r.Int63()) if r.Intn(2) == 0 { this.ResultCount *= -1 } this.TrueScotsman = bool(bool(r.Intn(2) == 0)) this.Score = float32(r.Float32()) if r.Intn(2) == 0 { this.Score *= -1 } if r.Intn(10) != 0 { v3 := r.Intn(10) this.Terrain = make(map[int64]*Nested) for i := 0; i < v3; i++ { this.Terrain[int64(r.Int63())] = NewPopulatedNested(r, easy) } } if r.Intn(10) != 0 { this.Proto2Field = test.NewPopulatedNinOptNative(r, easy) } if r.Intn(10) != 0 { v4 := r.Intn(10) this.Proto2Value = make(map[int64]*test.NinOptEnum) for i := 0; i < v4; i++ { this.Proto2Value[int64(r.Int63())] = test.NewPopulatedNinOptEnum(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNested(r randyTheproto3, easy bool) *Nested { this := &Nested{} this.Bunny = string(randStringTheproto3(r)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedAllMaps(r randyTheproto3, easy bool) *AllMaps { this := &AllMaps{} if r.Intn(10) != 0 { v5 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v5; i++ { v6 := randStringTheproto3(r) this.StringToDoubleMap[v6] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v6] *= -1 } } } if r.Intn(10) != 0 { v7 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v7; i++ { v8 := randStringTheproto3(r) this.StringToFloatMap[v8] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v8] *= -1 } } } if r.Intn(10) != 0 { v9 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v9; i++ { v10 := int32(r.Int31()) this.Int32Map[v10] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v10] *= -1 } } } if r.Intn(10) != 0 { v11 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v11; i++ { v12 := int64(r.Int63()) this.Int64Map[v12] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v12] *= -1 } } } if r.Intn(10) != 0 { v13 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v13; i++ { v14 := uint32(r.Uint32()) this.Uint32Map[v14] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v15 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v15; i++ { v16 := uint64(uint64(r.Uint32())) this.Uint64Map[v16] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v17 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v17; i++ { v18 := int32(r.Int31()) this.Sint32Map[v18] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v18] *= -1 } } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v19; i++ { v20 := int64(r.Int63()) this.Sint64Map[v20] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v20] *= -1 } } } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v21; i++ { v22 := uint32(r.Uint32()) this.Fixed32Map[v22] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v23; i++ { v24 := int32(r.Int31()) this.Sfixed32Map[v24] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v24] *= -1 } } } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v25; i++ { v26 := uint64(uint64(r.Uint32())) this.Fixed64Map[v26] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v27 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v27; i++ { v28 := int64(r.Int63()) this.Sfixed64Map[v28] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v28] *= -1 } } } if r.Intn(10) != 0 { v29 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v29; i++ { v30 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v30] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v31 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v31; i++ { this.StringMap[randStringTheproto3(r)] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v32 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v32; i++ { v33 := r.Intn(100) v34 := randStringTheproto3(r) this.StringToBytesMap[v34] = make([]byte, v33) for i := 0; i < v33; i++ { this.StringToBytesMap[v34][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v35 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v35; i++ { this.StringToEnumMap[randStringTheproto3(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v36; i++ { this.StringToMsgMap[randStringTheproto3(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedAllMapsOrdered(r randyTheproto3, easy bool) *AllMapsOrdered { this := &AllMapsOrdered{} if r.Intn(10) != 0 { v37 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v37; i++ { v38 := randStringTheproto3(r) this.StringToDoubleMap[v38] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v38] *= -1 } } } if r.Intn(10) != 0 { v39 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v39; i++ { v40 := randStringTheproto3(r) this.StringToFloatMap[v40] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v40] *= -1 } } } if r.Intn(10) != 0 { v41 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v41; i++ { v42 := int32(r.Int31()) this.Int32Map[v42] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v42] *= -1 } } } if r.Intn(10) != 0 { v43 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v43; i++ { v44 := int64(r.Int63()) this.Int64Map[v44] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v44] *= -1 } } } if r.Intn(10) != 0 { v45 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v45; i++ { v46 := uint32(r.Uint32()) this.Uint32Map[v46] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v47 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v47; i++ { v48 := uint64(uint64(r.Uint32())) this.Uint64Map[v48] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v49 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v49; i++ { v50 := int32(r.Int31()) this.Sint32Map[v50] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v50] *= -1 } } } if r.Intn(10) != 0 { v51 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v51; i++ { v52 := int64(r.Int63()) this.Sint64Map[v52] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v52] *= -1 } } } if r.Intn(10) != 0 { v53 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v53; i++ { v54 := uint32(r.Uint32()) this.Fixed32Map[v54] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v55 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v55; i++ { v56 := int32(r.Int31()) this.Sfixed32Map[v56] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v56] *= -1 } } } if r.Intn(10) != 0 { v57 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v57; i++ { v58 := uint64(uint64(r.Uint32())) this.Fixed64Map[v58] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v59 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v59; i++ { v60 := int64(r.Int63()) this.Sfixed64Map[v60] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v60] *= -1 } } } if r.Intn(10) != 0 { v61 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v61; i++ { v62 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v62] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v63 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v63; i++ { this.StringMap[randStringTheproto3(r)] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v64; i++ { v65 := r.Intn(100) v66 := randStringTheproto3(r) this.StringToBytesMap[v66] = make([]byte, v65) for i := 0; i < v65; i++ { this.StringToBytesMap[v66][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v67 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v67; i++ { this.StringToEnumMap[randStringTheproto3(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v68; i++ { this.StringToMsgMap[randStringTheproto3(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMessageWithMap(r randyTheproto3, easy bool) *MessageWithMap { this := &MessageWithMap{} if r.Intn(10) != 0 { v69 := r.Intn(10) this.NameMapping = make(map[int32]string) for i := 0; i < v69; i++ { this.NameMapping[int32(r.Int31())] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v70 := r.Intn(10) this.MsgMapping = make(map[int64]*FloatingPoint) for i := 0; i < v70; i++ { this.MsgMapping[int64(r.Int63())] = NewPopulatedFloatingPoint(r, easy) } } if r.Intn(10) != 0 { v71 := r.Intn(10) this.ByteMapping = make(map[bool][]byte) for i := 0; i < v71; i++ { v72 := r.Intn(100) v73 := bool(bool(r.Intn(2) == 0)) this.ByteMapping[v73] = make([]byte, v72) for i := 0; i < v72; i++ { this.ByteMapping[v73][i] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFloatingPoint(r randyTheproto3, easy bool) *FloatingPoint { this := &FloatingPoint{} this.F = float64(r.Float64()) if r.Intn(2) == 0 { this.F *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUint128Pair(r randyTheproto3, easy bool) *Uint128Pair { this := &Uint128Pair{} v74 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Left = *v74 this.Right = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedContainsNestedMap(r randyTheproto3, easy bool) *ContainsNestedMap { this := &ContainsNestedMap{} if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedContainsNestedMap_NestedMap(r randyTheproto3, easy bool) *ContainsNestedMap_NestedMap { this := &ContainsNestedMap_NestedMap{} if r.Intn(10) != 0 { v75 := r.Intn(10) this.NestedMapField = make(map[string]float64) for i := 0; i < v75; i++ { v76 := randStringTheproto3(r) this.NestedMapField[v76] = float64(r.Float64()) if r.Intn(2) == 0 { this.NestedMapField[v76] *= -1 } } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNotPacked(r randyTheproto3, easy bool) *NotPacked { this := &NotPacked{} v77 := r.Intn(10) this.Key = make([]uint64, v77) for i := 0; i < v77; i++ { this.Key[i] = uint64(uint64(r.Uint32())) } if !easy && r.Intn(10) != 0 { } return this } type randyTheproto3 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTheproto3(r randyTheproto3) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTheproto3(r randyTheproto3) string { v78 := r.Intn(100) tmps := make([]rune, v78) for i := 0; i < v78; i++ { tmps[i] = randUTF8RuneTheproto3(r) } return string(tmps) } func randUnrecognizedTheproto3(r randyTheproto3, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTheproto3(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTheproto3(dAtA []byte, r randyTheproto3, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) v79 := r.Int63() if r.Intn(2) == 0 { v79 *= -1 } dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(v79)) case 1: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTheproto3(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Message) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } if m.Hilarity != 0 { n += 1 + sovTheproto3(uint64(m.Hilarity)) } if m.HeightInCm != 0 { n += 1 + sovTheproto3(uint64(m.HeightInCm)) } l = len(m.Data) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } if len(m.Key) > 0 { l = 0 for _, e := range m.Key { l += sovTheproto3(uint64(e)) } n += 1 + sovTheproto3(uint64(l)) + l } if m.Nested != nil { l = m.Nested.Size() n += 1 + l + sovTheproto3(uint64(l)) } if m.ResultCount != 0 { n += 1 + sovTheproto3(uint64(m.ResultCount)) } if m.TrueScotsman { n += 2 } if m.Score != 0 { n += 5 } if len(m.Terrain) > 0 { for k, v := range m.Terrain { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sovTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if m.Proto2Field != nil { l = m.Proto2Field.Size() n += 1 + l + sovTheproto3(uint64(l)) } if len(m.Proto2Value) > 0 { for k, v := range m.Proto2Value { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sovTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *Nested) Size() (n int) { var l int _ = l l = len(m.Bunny) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } return n } func (m *AllMaps) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *AllMapsOrdered) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *MessageWithMap) Size() (n int) { var l int _ = l if len(m.NameMapping) > 0 { for k, v := range m.NameMapping { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.MsgMapping) > 0 { for k, v := range m.MsgMapping { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sozTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.ByteMapping) > 0 { for k, v := range m.ByteMapping { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + 1 + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *FloatingPoint) Size() (n int) { var l int _ = l if m.F != 0 { n += 9 } return n } func (m *Uint128Pair) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovTheproto3(uint64(l)) if m.Right != nil { l = m.Right.Size() n += 1 + l + sovTheproto3(uint64(l)) } return n } func (m *ContainsNestedMap) Size() (n int) { var l int _ = l return n } func (m *ContainsNestedMap_NestedMap) Size() (n int) { var l int _ = l if len(m.NestedMapField) > 0 { for k, v := range m.NestedMapField { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *NotPacked) Size() (n int) { var l int _ = l if len(m.Key) > 0 { for _, e := range m.Key { n += 1 + sovTheproto3(uint64(e)) } } return n } func sovTheproto3(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTheproto3(x uint64) (n int) { return sovTheproto3(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Message) String() string { if this == nil { return "nil" } keysForTerrain := make([]int64, 0, len(this.Terrain)) for k := range this.Terrain { keysForTerrain = append(keysForTerrain, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForTerrain) mapStringForTerrain := "map[int64]*Nested{" for _, k := range keysForTerrain { mapStringForTerrain += fmt.Sprintf("%v: %v,", k, this.Terrain[k]) } mapStringForTerrain += "}" keysForProto2Value := make([]int64, 0, len(this.Proto2Value)) for k := range this.Proto2Value { keysForProto2Value = append(keysForProto2Value, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForProto2Value) mapStringForProto2Value := "map[int64]*test.NinOptEnum{" for _, k := range keysForProto2Value { mapStringForProto2Value += fmt.Sprintf("%v: %v,", k, this.Proto2Value[k]) } mapStringForProto2Value += "}" s := strings.Join([]string{`&Message{`, `Name:` + fmt.Sprintf("%v", this.Name) + `,`, `Hilarity:` + fmt.Sprintf("%v", this.Hilarity) + `,`, `HeightInCm:` + fmt.Sprintf("%v", this.HeightInCm) + `,`, `Data:` + fmt.Sprintf("%v", this.Data) + `,`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `Nested:` + strings.Replace(fmt.Sprintf("%v", this.Nested), "Nested", "Nested", 1) + `,`, `ResultCount:` + fmt.Sprintf("%v", this.ResultCount) + `,`, `TrueScotsman:` + fmt.Sprintf("%v", this.TrueScotsman) + `,`, `Score:` + fmt.Sprintf("%v", this.Score) + `,`, `Terrain:` + mapStringForTerrain + `,`, `Proto2Field:` + strings.Replace(fmt.Sprintf("%v", this.Proto2Field), "NinOptNative", "test.NinOptNative", 1) + `,`, `Proto2Value:` + mapStringForProto2Value + `,`, `}`, }, "") return s } func (this *Nested) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Nested{`, `Bunny:` + fmt.Sprintf("%v", this.Bunny) + `,`, `}`, }, "") return s } func (this *AllMaps) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMaps{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `}`, }, "") return s } func (this *AllMapsOrdered) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMapsOrdered{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `}`, }, "") return s } func (this *MessageWithMap) String() string { if this == nil { return "nil" } keysForNameMapping := make([]int32, 0, len(this.NameMapping)) for k := range this.NameMapping { keysForNameMapping = append(keysForNameMapping, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNameMapping) mapStringForNameMapping := "map[int32]string{" for _, k := range keysForNameMapping { mapStringForNameMapping += fmt.Sprintf("%v: %v,", k, this.NameMapping[k]) } mapStringForNameMapping += "}" keysForMsgMapping := make([]int64, 0, len(this.MsgMapping)) for k := range this.MsgMapping { keysForMsgMapping = append(keysForMsgMapping, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForMsgMapping) mapStringForMsgMapping := "map[int64]*FloatingPoint{" for _, k := range keysForMsgMapping { mapStringForMsgMapping += fmt.Sprintf("%v: %v,", k, this.MsgMapping[k]) } mapStringForMsgMapping += "}" keysForByteMapping := make([]bool, 0, len(this.ByteMapping)) for k := range this.ByteMapping { keysForByteMapping = append(keysForByteMapping, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForByteMapping) mapStringForByteMapping := "map[bool][]byte{" for _, k := range keysForByteMapping { mapStringForByteMapping += fmt.Sprintf("%v: %v,", k, this.ByteMapping[k]) } mapStringForByteMapping += "}" s := strings.Join([]string{`&MessageWithMap{`, `NameMapping:` + mapStringForNameMapping + `,`, `MsgMapping:` + mapStringForMsgMapping + `,`, `ByteMapping:` + mapStringForByteMapping + `,`, `}`, }, "") return s } func (this *FloatingPoint) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FloatingPoint{`, `F:` + fmt.Sprintf("%v", this.F) + `,`, `}`, }, "") return s } func (this *Uint128Pair) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Uint128Pair{`, `Left:` + fmt.Sprintf("%v", this.Left) + `,`, `Right:` + fmt.Sprintf("%v", this.Right) + `,`, `}`, }, "") return s } func (this *ContainsNestedMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ContainsNestedMap{`, `}`, }, "") return s } func (this *ContainsNestedMap_NestedMap) String() string { if this == nil { return "nil" } keysForNestedMapField := make([]string, 0, len(this.NestedMapField)) for k := range this.NestedMapField { keysForNestedMapField = append(keysForNestedMapField, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNestedMapField) mapStringForNestedMapField := "map[string]float64{" for _, k := range keysForNestedMapField { mapStringForNestedMapField += fmt.Sprintf("%v: %v,", k, this.NestedMapField[k]) } mapStringForNestedMapField += "}" s := strings.Join([]string{`&ContainsNestedMap_NestedMap{`, `NestedMapField:` + mapStringForNestedMapField + `,`, `}`, }, "") return s } func (this *NotPacked) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NotPacked{`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `}`, }, "") return s } func valueToStringTheproto3(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/marshaler/theproto3.proto", fileDescriptorTheproto3) } var fileDescriptorTheproto3 = []byte{ // 1610 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x99, 0xcf, 0x6f, 0xdb, 0x46, 0x16, 0xc7, 0x35, 0xfa, 0xad, 0xa7, 0x1f, 0xa6, 0x27, 0xd9, 0x85, 0xd6, 0xc0, 0xd2, 0xb2, 0x02, 0x24, 0x4a, 0xb0, 0x91, 0xb3, 0x4e, 0xb2, 0x9b, 0xba, 0x69, 0x53, 0x4b, 0xb1, 0x10, 0x37, 0xb6, 0xe2, 0x4a, 0x76, 0xdc, 0x22, 0x40, 0x0d, 0xca, 0xa6, 0x25, 0x22, 0x12, 0x69, 0x90, 0xa3, 0xa0, 0xbe, 0xe5, 0xcf, 0xe8, 0xad, 0xe8, 0xad, 0xc7, 0x22, 0x87, 0xa2, 0xc7, 0xf6, 0xe6, 0x63, 0x80, 0x5e, 0x8a, 0x1e, 0x82, 0x58, 0xbd, 0xe4, 0x98, 0x63, 0x8e, 0xc5, 0xcc, 0x50, 0xd2, 0x48, 0x1c, 0x8a, 0x4d, 0x2f, 0xbd, 0xf8, 0x24, 0xce, 0xf3, 0xfb, 0x7e, 0xe6, 0x71, 0x38, 0xf3, 0xf8, 0x05, 0x0d, 0x85, 0x03, 0xab, 0xd7, 0xb2, 0x9c, 0xe5, 0x9e, 0x66, 0x3b, 0x1d, 0xad, 0xab, 0xdb, 0xcb, 0xa4, 0xa3, 0x1f, 0xdb, 0x16, 0xb1, 0x6e, 0x96, 0xd9, 0x0f, 0x4e, 0x8d, 0x02, 0x0b, 0xd7, 0xdb, 0x06, 0xe9, 0xf4, 0x5b, 0xe5, 0x03, 0xab, 0xb7, 0xdc, 0xb6, 0xda, 0xd6, 0x32, 0x8b, 0xb7, 0xfa, 0x47, 0x6c, 0xc4, 0x06, 0xec, 0x8a, 0x2b, 0x17, 0xfe, 0xef, 0x9b, 0x4e, 0x74, 0x87, 0x2c, 0xbb, 0x33, 0xb7, 0x2c, 0xd2, 0xa1, 0x93, 0xd2, 0x18, 0x17, 0x16, 0x7f, 0x8e, 0x41, 0x62, 0x4b, 0x77, 0x1c, 0xad, 0xad, 0x63, 0x0c, 0x51, 0x53, 0xeb, 0xe9, 0x79, 0x54, 0x40, 0xa5, 0x54, 0x83, 0x5d, 0xe3, 0xdb, 0x90, 0xec, 0x18, 0x5d, 0xcd, 0x36, 0xc8, 0x49, 0x3e, 0x5c, 0x40, 0xa5, 0xdc, 0xca, 0xbf, 0xca, 0xe3, 0xb2, 0x5d, 0x65, 0xf9, 0x41, 0xbf, 0x67, 0xf5, 0xed, 0xc6, 0x28, 0x15, 0x17, 0x20, 0xd3, 0xd1, 0x8d, 0x76, 0x87, 0xec, 0x1b, 0xe6, 0xfe, 0x41, 0x2f, 0x1f, 0x29, 0xa0, 0x52, 0xb6, 0x01, 0x3c, 0xb6, 0x61, 0x56, 0x7b, 0x74, 0xb2, 0x43, 0x8d, 0x68, 0xf9, 0x68, 0x01, 0x95, 0x32, 0x0d, 0x76, 0x8d, 0x15, 0x88, 0x3c, 0xd5, 0x4f, 0xf2, 0xb1, 0x42, 0xa4, 0x14, 0x6d, 0xd0, 0x4b, 0x7c, 0x15, 0xe2, 0xa6, 0xee, 0x10, 0xfd, 0x30, 0x1f, 0x2f, 0xa0, 0x52, 0x7a, 0x65, 0x5e, 0x98, 0xbc, 0xce, 0xfe, 0xd0, 0x70, 0x13, 0xf0, 0x12, 0x64, 0x6c, 0xdd, 0xe9, 0x77, 0xc9, 0xfe, 0x81, 0xd5, 0x37, 0x49, 0x3e, 0x51, 0x40, 0xa5, 0x48, 0x23, 0xcd, 0x63, 0x55, 0x1a, 0xc2, 0x97, 0x20, 0x4b, 0xec, 0xbe, 0xbe, 0xef, 0x1c, 0x58, 0xc4, 0xe9, 0x69, 0x66, 0x3e, 0x59, 0x40, 0xa5, 0x64, 0x23, 0x43, 0x83, 0x4d, 0x37, 0x86, 0x2f, 0x42, 0xcc, 0x39, 0xb0, 0x6c, 0x3d, 0x9f, 0x2a, 0xa0, 0x52, 0xb8, 0xc1, 0x07, 0xf8, 0x03, 0x48, 0x10, 0xdd, 0xb6, 0x35, 0xc3, 0xcc, 0x43, 0x21, 0x52, 0x4a, 0xaf, 0x2c, 0x4a, 0x96, 0x61, 0x87, 0x67, 0xac, 0x9b, 0xc4, 0x3e, 0x69, 0x0c, 0xf3, 0xf1, 0x6d, 0xc8, 0xb0, 0xbc, 0x95, 0xfd, 0x23, 0x43, 0xef, 0x1e, 0xe6, 0xd3, 0xec, 0x4e, 0x70, 0x99, 0x3d, 0x85, 0xba, 0x61, 0x3e, 0x3a, 0x26, 0x75, 0x8d, 0x18, 0xcf, 0xf4, 0x46, 0x9a, 0xe7, 0xd5, 0x68, 0x1a, 0xae, 0x8d, 0x64, 0xcf, 0xb4, 0x6e, 0x5f, 0xcf, 0x67, 0xd9, 0xb4, 0x97, 0x24, 0xd3, 0x6e, 0xb3, 0xb4, 0xc7, 0x34, 0x8b, 0x4f, 0xed, 0x72, 0x58, 0x64, 0x61, 0x0b, 0x32, 0x62, 0x5d, 0xc3, 0x45, 0x46, 0x6c, 0x79, 0xd8, 0x22, 0x5f, 0x81, 0x18, 0x9f, 0x22, 0xec, 0xb7, 0xc6, 0xfc, 0xef, 0xab, 0xe1, 0x3b, 0x68, 0x61, 0x1b, 0x94, 0xe9, 0xf9, 0x24, 0xc8, 0xcb, 0x93, 0x48, 0x45, 0xbc, 0xd9, 0x75, 0xb3, 0xdf, 0x13, 0x88, 0xc5, 0x7b, 0x10, 0xe7, 0xfb, 0x07, 0xa7, 0x21, 0xb1, 0x5b, 0x7f, 0x58, 0x7f, 0xb4, 0x57, 0x57, 0x42, 0x38, 0x09, 0xd1, 0xed, 0xdd, 0x7a, 0x53, 0x41, 0x38, 0x0b, 0xa9, 0xe6, 0xe6, 0xda, 0x76, 0x73, 0x67, 0xa3, 0xfa, 0x50, 0x09, 0xe3, 0x39, 0x48, 0x57, 0x36, 0x36, 0x37, 0xf7, 0x2b, 0x6b, 0x1b, 0x9b, 0xeb, 0x5f, 0x28, 0x91, 0xa2, 0x0a, 0x71, 0x5e, 0x27, 0x7d, 0x76, 0xad, 0xbe, 0x69, 0x9e, 0xb8, 0x5b, 0x98, 0x0f, 0x8a, 0x2f, 0x30, 0x24, 0xd6, 0xba, 0xdd, 0x2d, 0xed, 0xd8, 0xc1, 0x7b, 0x30, 0xdf, 0x24, 0xb6, 0x61, 0xb6, 0x77, 0xac, 0xfb, 0x56, 0xbf, 0xd5, 0xd5, 0xb7, 0xb4, 0xe3, 0x3c, 0x62, 0x4b, 0x7b, 0x55, 0xb8, 0x6f, 0x37, 0xbd, 0xec, 0xc9, 0xe5, 0x0b, 0xec, 0x65, 0xe0, 0x1d, 0x50, 0x86, 0xc1, 0x5a, 0xd7, 0xd2, 0x08, 0xe5, 0x86, 0x19, 0xb7, 0x34, 0x83, 0x3b, 0x4c, 0xe5, 0x58, 0x0f, 0x01, 0xdf, 0x85, 0xe4, 0x86, 0x49, 0x6e, 0xae, 0x50, 0x5a, 0x84, 0xd1, 0x0a, 0x12, 0xda, 0x30, 0x85, 0x53, 0x46, 0x0a, 0x57, 0xfd, 0xbf, 0x5b, 0x54, 0x1d, 0x9d, 0xa5, 0x66, 0x29, 0x63, 0x35, 0x1b, 0xe2, 0x7b, 0x90, 0xda, 0x35, 0x86, 0x93, 0xc7, 0x98, 0x7c, 0x49, 0x22, 0x1f, 0xe5, 0x70, 0xfd, 0x58, 0x33, 0x04, 0xf0, 0xf9, 0xe3, 0x33, 0x01, 0x42, 0x01, 0x63, 0x0d, 0x05, 0x34, 0x47, 0x15, 0x24, 0x7c, 0x01, 0xcd, 0xa9, 0x0a, 0x9a, 0x62, 0x05, 0xcd, 0x51, 0x05, 0xc9, 0x99, 0x00, 0xb1, 0x82, 0xd1, 0x18, 0x57, 0x00, 0x6a, 0xc6, 0x57, 0xfa, 0x21, 0x2f, 0x21, 0xc5, 0x08, 0x45, 0x09, 0x61, 0x9c, 0xc4, 0x11, 0x82, 0x0a, 0xaf, 0x43, 0xba, 0x79, 0x34, 0x86, 0x80, 0xe7, 0x1c, 0x8f, 0xca, 0x38, 0x9a, 0xa2, 0x88, 0xba, 0x51, 0x29, 0xfc, 0x66, 0xd2, 0xb3, 0x4b, 0x11, 0xee, 0x46, 0x50, 0x8d, 0x4b, 0xe1, 0x90, 0x4c, 0x40, 0x29, 0x02, 0x45, 0xd4, 0xd1, 0x66, 0x58, 0xb1, 0x2c, 0x9a, 0xe9, 0x76, 0xa5, 0x45, 0x09, 0xc2, 0xcd, 0x70, 0x9b, 0xa1, 0x3b, 0x62, 0x4f, 0x84, 0x6d, 0x72, 0x2a, 0xce, 0xf9, 0x3f, 0x91, 0x61, 0xce, 0xf0, 0x89, 0x0c, 0xc7, 0xe2, 0x39, 0xab, 0x9c, 0x10, 0xdd, 0xa1, 0x9c, 0xb9, 0xc0, 0x73, 0x36, 0x4c, 0x9d, 0x3a, 0x67, 0xc3, 0x30, 0xfe, 0x0c, 0xe6, 0x86, 0x31, 0xda, 0x9e, 0x28, 0x54, 0x61, 0xd0, 0x2b, 0x33, 0xa0, 0x6e, 0x26, 0x67, 0x4e, 0xeb, 0x71, 0x1d, 0x72, 0xc3, 0xd0, 0x96, 0xc3, 0x6e, 0x77, 0x9e, 0x11, 0x2f, 0xcf, 0x20, 0xf2, 0x44, 0x0e, 0x9c, 0x52, 0x2f, 0xdc, 0x87, 0x7f, 0xca, 0xbb, 0x91, 0xd8, 0x7e, 0x53, 0xbc, 0xfd, 0x5e, 0x14, 0xdb, 0x2f, 0x12, 0xdb, 0x77, 0x15, 0xfe, 0x21, 0xed, 0x3d, 0x41, 0x90, 0xb0, 0x08, 0xf9, 0x10, 0xb2, 0x13, 0x2d, 0x47, 0x14, 0xc7, 0x24, 0xe2, 0x98, 0x57, 0x3c, 0xde, 0x5a, 0x92, 0xb7, 0xc7, 0x84, 0x38, 0x22, 0x8a, 0xef, 0x42, 0x6e, 0xb2, 0xdf, 0x88, 0xea, 0xac, 0x44, 0x9d, 0x95, 0xa8, 0xe5, 0x73, 0x47, 0x25, 0xea, 0xe8, 0x94, 0xba, 0xe9, 0x3b, 0xf7, 0xbc, 0x44, 0x3d, 0x2f, 0x51, 0xcb, 0xe7, 0xc6, 0x12, 0x35, 0x16, 0xd5, 0x1f, 0xc1, 0xdc, 0x54, 0x8b, 0x11, 0xe5, 0x09, 0x89, 0x3c, 0x21, 0xca, 0x3f, 0x06, 0x65, 0xba, 0xb9, 0x88, 0xfa, 0x39, 0x89, 0x7e, 0x4e, 0x36, 0xbd, 0xbc, 0xfa, 0xb8, 0x44, 0x1e, 0x97, 0x4e, 0x2f, 0xd7, 0x2b, 0x12, 0xbd, 0x22, 0xea, 0x57, 0x21, 0x23, 0x76, 0x13, 0x51, 0x9b, 0x94, 0x68, 0x93, 0xd3, 0xeb, 0x3e, 0xd1, 0x4c, 0x82, 0x76, 0x7a, 0xca, 0xe7, 0xb8, 0x4c, 0xb4, 0x90, 0x20, 0x48, 0x46, 0x84, 0x3c, 0x86, 0x8b, 0xb2, 0x96, 0x21, 0x61, 0x94, 0x44, 0x46, 0x8e, 0x7a, 0xc4, 0xb1, 0xd9, 0xa3, 0xaa, 0x09, 0xe3, 0xb4, 0xf0, 0x04, 0x2e, 0x48, 0x1a, 0x87, 0x04, 0x5b, 0x9e, 0x74, 0x63, 0x79, 0x01, 0xcb, 0x9a, 0x80, 0x61, 0xb6, 0xb7, 0x2d, 0xc3, 0x24, 0xa2, 0x2b, 0xfb, 0xe1, 0x02, 0xe4, 0xdc, 0xf6, 0xf4, 0xc8, 0x3e, 0xd4, 0x6d, 0xfd, 0x10, 0x7f, 0xe9, 0xef, 0x9d, 0x6e, 0x78, 0x9b, 0x9a, 0xab, 0x7a, 0x0f, 0x0b, 0xf5, 0xc4, 0xd7, 0x42, 0x2d, 0x07, 0xe3, 0x83, 0x9c, 0x54, 0xd5, 0xe3, 0xa4, 0xae, 0xf8, 0x43, 0xfd, 0x0c, 0x55, 0xd5, 0x63, 0xa8, 0x66, 0x43, 0xa4, 0xbe, 0xaa, 0xe6, 0xf5, 0x55, 0x25, 0x7f, 0x8a, 0xbf, 0xbd, 0xaa, 0x79, 0xed, 0x55, 0x00, 0x47, 0xee, 0xb2, 0x6a, 0x5e, 0x97, 0x35, 0x83, 0xe3, 0x6f, 0xb6, 0x6a, 0x5e, 0xb3, 0x15, 0xc0, 0x91, 0x7b, 0xae, 0x0d, 0x89, 0xe7, 0xba, 0xea, 0x0f, 0x9a, 0x65, 0xbd, 0x36, 0x65, 0xd6, 0xeb, 0xda, 0x8c, 0xa2, 0x66, 0x3a, 0xb0, 0x0d, 0x89, 0x03, 0x0b, 0x2a, 0xcc, 0xc7, 0x88, 0x6d, 0xca, 0x8c, 0x58, 0x60, 0x61, 0x7e, 0x7e, 0xec, 0x93, 0x69, 0x3f, 0x76, 0xd9, 0x9f, 0x24, 0xb7, 0x65, 0x35, 0xaf, 0x2d, 0x2b, 0x05, 0x9d, 0x39, 0x99, 0x3b, 0x7b, 0xe2, 0xeb, 0xce, 0xfe, 0xc4, 0x11, 0x0e, 0x32, 0x69, 0x9f, 0xfb, 0x99, 0xb4, 0x72, 0x30, 0x7b, 0xb6, 0x57, 0xdb, 0xf5, 0xf1, 0x6a, 0xd7, 0x83, 0xc1, 0xe7, 0x96, 0xed, 0xdc, 0xb2, 0x9d, 0x5b, 0xb6, 0x73, 0xcb, 0xf6, 0xf7, 0x5b, 0xb6, 0xd5, 0xe8, 0xd7, 0xdf, 0x2e, 0xa2, 0xe2, 0x2f, 0x11, 0xc8, 0xb9, 0x5f, 0x06, 0xf7, 0x0c, 0xd2, 0xa1, 0xed, 0x6d, 0x0b, 0x32, 0xa6, 0xd6, 0xd3, 0xf7, 0x7b, 0xda, 0xf1, 0xb1, 0x61, 0xb6, 0x5d, 0xcf, 0x76, 0xcd, 0xfb, 0x29, 0xd1, 0x15, 0x94, 0xeb, 0x5a, 0x8f, 0xf6, 0x2a, 0x9a, 0xec, 0xbe, 0x6e, 0xcc, 0x71, 0x04, 0x7f, 0x0a, 0xe9, 0x9e, 0xd3, 0x1e, 0xd1, 0xc2, 0x9e, 0x17, 0xe1, 0x14, 0x8d, 0xdf, 0xe9, 0x18, 0x06, 0xbd, 0x51, 0x80, 0x96, 0xd6, 0x3a, 0x21, 0xe3, 0xd2, 0x22, 0x41, 0xa5, 0xd1, 0x67, 0x3a, 0x59, 0x5a, 0x6b, 0x1c, 0xa1, 0xdb, 0x76, 0xba, 0xf6, 0xa0, 0x4e, 0x37, 0xb1, 0x79, 0xf6, 0x60, 0x6e, 0xaa, 0x5a, 0xc9, 0x99, 0xff, 0x0b, 0xcf, 0x86, 0x16, 0x36, 0x5d, 0x79, 0xd0, 0x99, 0x10, 0x37, 0x64, 0xf1, 0xdf, 0x90, 0x9d, 0x60, 0xe3, 0x0c, 0xa0, 0x23, 0x26, 0x45, 0x0d, 0x74, 0x54, 0xfc, 0x06, 0x41, 0x9a, 0xf6, 0xc9, 0xff, 0xae, 0xdc, 0xd9, 0xd6, 0x0c, 0x1b, 0x3f, 0x80, 0x68, 0x57, 0x3f, 0x22, 0x2c, 0x21, 0x53, 0xb9, 0x75, 0xfa, 0x6a, 0x31, 0xf4, 0xdb, 0xab, 0xc5, 0xff, 0x04, 0xfc, 0x97, 0xa0, 0xef, 0x10, 0xab, 0x57, 0x76, 0x39, 0x0d, 0x46, 0xc0, 0x35, 0x88, 0xd9, 0x46, 0xbb, 0x43, 0x78, 0x49, 0x95, 0x1b, 0xef, 0x8d, 0xe1, 0xf2, 0xe2, 0x29, 0x82, 0xf9, 0xaa, 0x65, 0x12, 0xcd, 0x30, 0x1d, 0xfe, 0xb5, 0x96, 0xbe, 0x21, 0x5f, 0x20, 0x48, 0x8d, 0x46, 0xb8, 0x05, 0xb9, 0xd1, 0x80, 0x7d, 0x04, 0x77, 0x77, 0xea, 0xaa, 0xb0, 0xc2, 0x1e, 0x46, 0x59, 0x72, 0xc5, 0xc4, 0xee, 0x3b, 0x79, 0x32, 0xb8, 0xb0, 0x06, 0x17, 0x24, 0x69, 0xef, 0xf3, 0x42, 0x2e, 0x2e, 0x41, 0xaa, 0x6e, 0x91, 0x6d, 0xed, 0xe0, 0x29, 0xfb, 0xe4, 0x3c, 0xfe, 0x9f, 0x45, 0x25, 0xac, 0x84, 0x98, 0xf8, 0xda, 0x12, 0x24, 0xdc, 0xd3, 0x8f, 0xe3, 0x10, 0xde, 0x5a, 0x53, 0x42, 0xec, 0xb7, 0xa2, 0x20, 0xf6, 0x5b, 0x55, 0xc2, 0x95, 0xcd, 0xd3, 0x33, 0x35, 0xf4, 0xf2, 0x4c, 0x0d, 0xfd, 0x7a, 0xa6, 0x86, 0x5e, 0x9f, 0xa9, 0xe8, 0xcd, 0x99, 0x8a, 0xde, 0x9e, 0xa9, 0xe8, 0xdd, 0x99, 0x8a, 0x9e, 0x0f, 0x54, 0xf4, 0xdd, 0x40, 0x45, 0xdf, 0x0f, 0x54, 0xf4, 0xe3, 0x40, 0x45, 0x3f, 0x0d, 0x54, 0x74, 0x3a, 0x50, 0xd1, 0xcb, 0x81, 0x1a, 0x7a, 0x3d, 0x50, 0xd1, 0x9b, 0x81, 0x1a, 0x7a, 0x3b, 0x50, 0xd1, 0xbb, 0x81, 0x1a, 0x7a, 0xfe, 0xbb, 0x1a, 0x6a, 0xc5, 0xf9, 0xf2, 0xfc, 0x11, 0x00, 0x00, 0xff, 0xff, 0x63, 0x09, 0xf8, 0x62, 0x65, 0x1a, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/theproto3/combos/marshaler/theproto3.proto000066400000000000000000000124231317075173200265310ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto3"; package theproto3; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/combos/both/thetest.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Message { enum Humour { UNKNOWN = 0; PUNS = 1; SLAPSTICK = 2; BILL_BAILEY = 3; } string name = 1; Humour hilarity = 2; uint32 height_in_cm = 3; bytes data = 4; int64 result_count = 7; bool true_scotsman = 8; float score = 9; repeated uint64 key = 5; Nested nested = 6; map terrain = 10; test.NinOptNative proto2_field = 11; map proto2_value = 13; } message Nested { string bunny = 1; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message MessageWithMap { map name_mapping = 1; map msg_mapping = 2; map byte_mapping = 3; } message FloatingPoint { double f = 1; } message Uint128Pair { bytes left = 1 [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; bytes right = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message ContainsNestedMap { message NestedMap { map NestedMapField = 1; } } message NotPacked { repeated uint64 key = 5 [packed=false]; }golang-gogoprotobuf-0.5/test/theproto3/combos/marshaler/theproto3pb_test.go000066400000000000000000002157321317075173200273640ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/theproto3.proto /* Package theproto3 is a generated protocol buffer package. It is generated from these files: combos/marshaler/theproto3.proto It has these top-level messages: Message Nested AllMaps AllMapsOrdered MessageWithMap FloatingPoint Uint128Pair ContainsNestedMap NotPacked */ package theproto3 import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/test/combos/both" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMessageMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Message{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNestedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNestedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nested, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNested(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNested(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Nested{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllMapsMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAllMapsProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMaps(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMaps{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAllMapsOrderedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkAllMapsOrderedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsOrderedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMapsOrdered(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMapsOrdered{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageWithMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMessageWithMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMessageWithMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MessageWithMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessageWithMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageWithMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessageWithMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MessageWithMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestFloatingPointProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestFloatingPointMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkFloatingPointProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkFloatingPointProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedFloatingPoint(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &FloatingPoint{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUint128PairProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUint128PairMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkUint128PairProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Uint128Pair, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUint128Pair(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUint128PairProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUint128Pair(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Uint128Pair{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestContainsNestedMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkContainsNestedMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedContainsNestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkContainsNestedMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedContainsNestedMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ContainsNestedMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMap_NestedMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestContainsNestedMap_NestedMapMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkContainsNestedMap_NestedMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap_NestedMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedContainsNestedMap_NestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkContainsNestedMap_NestedMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedContainsNestedMap_NestedMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ContainsNestedMap_NestedMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNotPackedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNotPackedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkNotPackedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NotPacked, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNotPacked(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNotPackedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNotPacked(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NotPacked{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsOrderedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageWithMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFloatingPointJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUint128PairJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestContainsNestedMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNotPackedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Nested{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Nested{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageWithMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageWithMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUint128PairProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUint128PairProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNotPackedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNotPackedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTheproto3Description(t *testing.T) { Theproto3Description() } func TestMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsOrderedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageWithMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFloatingPointVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUint128PairVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestContainsNestedMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestContainsNestedMap_NestedMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNotPackedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsOrderedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestMessageWithMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestFloatingPointFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUint128PairFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestContainsNestedMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestContainsNestedMap_NestedMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNotPackedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestMessageGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsOrderedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMessageWithMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFloatingPointGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUint128PairGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestContainsNestedMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestContainsNestedMap_NestedMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNotPackedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nested, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNested(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsOrderedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMessageWithMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageWithMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MessageWithMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessageWithMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestFloatingPointSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkFloatingPointSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUint128PairSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUint128PairSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Uint128Pair, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUint128Pair(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkContainsNestedMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedContainsNestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMap_NestedMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkContainsNestedMap_NestedMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap_NestedMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedContainsNestedMap_NestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNotPackedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNotPackedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NotPacked, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNotPacked(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMessageStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsOrderedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestMessageWithMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFloatingPointStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUint128PairStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestContainsNestedMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestContainsNestedMap_NestedMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNotPackedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/theproto3/combos/neither/000077500000000000000000000000001317075173200231735ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/theproto3/combos/neither/proto3_test.go000066400000000000000000000111171317075173200260100ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package theproto3 import ( "reflect" "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": {}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestCustomTypeSize(t *testing.T) { m := &Uint128Pair{} m.Size() // Should not panic. } func TestCustomTypeMarshalUnmarshal(t *testing.T) { m1 := &Uint128Pair{} if b, err := proto.Marshal(m1); err != nil { t.Fatal(err) } else { m2 := &Uint128Pair{} if err := proto.Unmarshal(b, m2); err != nil { t.Fatal(err) } if !reflect.DeepEqual(m1, m2) { t.Errorf("expected %+v, got %+v", m1, m2) } } } func TestNotPackedToPacked(t *testing.T) { input := []uint64{1, 10e9} notpacked := &NotPacked{Key: input} if data, err := proto.Marshal(notpacked); err != nil { t.Fatal(err) } else { packed := &Message{} if err := proto.Unmarshal(data, packed); err != nil { t.Fatal(err) } output := packed.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } func TestPackedToNotPacked(t *testing.T) { input := []uint64{1, 10e9} packed := &Message{Key: input} if data, err := proto.Marshal(packed); err != nil { t.Fatal(err) } else { notpacked := &NotPacked{} if err := proto.Unmarshal(data, notpacked); err != nil { t.Fatal(err) } output := notpacked.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } golang-gogoprotobuf-0.5/test/theproto3/combos/neither/theproto3.pb.go000066400000000000000000005772111317075173200260660ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/theproto3.proto /* Package theproto3 is a generated protocol buffer package. It is generated from these files: combos/neither/theproto3.proto It has these top-level messages: Message Nested AllMaps AllMapsOrdered MessageWithMap FloatingPoint Uint128Pair ContainsNestedMap NotPacked */ package theproto3 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import test "github.com/gogo/protobuf/test/combos/both" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapEnum int32 const ( MA MapEnum = 0 MB MapEnum = 1 MC MapEnum = 2 ) var MapEnum_name = map[int32]string{ 0: "MA", 1: "MB", 2: "MC", } var MapEnum_value = map[string]int32{ "MA": 0, "MB": 1, "MC": 2, } func (MapEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0} } type Message_Humour int32 const ( UNKNOWN Message_Humour = 0 PUNS Message_Humour = 1 SLAPSTICK Message_Humour = 2 BILL_BAILEY Message_Humour = 3 ) var Message_Humour_name = map[int32]string{ 0: "UNKNOWN", 1: "PUNS", 2: "SLAPSTICK", 3: "BILL_BAILEY", } var Message_Humour_value = map[string]int32{ "UNKNOWN": 0, "PUNS": 1, "SLAPSTICK": 2, "BILL_BAILEY": 3, } func (Message_Humour) EnumDescriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0, 0} } type Message struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Hilarity Message_Humour `protobuf:"varint,2,opt,name=hilarity,proto3,enum=theproto3.Message_Humour" json:"hilarity,omitempty"` HeightInCm uint32 `protobuf:"varint,3,opt,name=height_in_cm,json=heightInCm,proto3" json:"height_in_cm,omitempty"` Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` ResultCount int64 `protobuf:"varint,7,opt,name=result_count,json=resultCount,proto3" json:"result_count,omitempty"` TrueScotsman bool `protobuf:"varint,8,opt,name=true_scotsman,json=trueScotsman,proto3" json:"true_scotsman,omitempty"` Score float32 `protobuf:"fixed32,9,opt,name=score,proto3" json:"score,omitempty"` Key []uint64 `protobuf:"varint,5,rep,packed,name=key" json:"key,omitempty"` Nested *Nested `protobuf:"bytes,6,opt,name=nested" json:"nested,omitempty"` Terrain map[int64]*Nested `protobuf:"bytes,10,rep,name=terrain" json:"terrain,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Proto2Field *test.NinOptNative `protobuf:"bytes,11,opt,name=proto2_field,json=proto2Field" json:"proto2_field,omitempty"` Proto2Value map[int64]*test.NinOptEnum `protobuf:"bytes,13,rep,name=proto2_value,json=proto2Value" json:"proto2_value,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *Message) Reset() { *m = Message{} } func (*Message) ProtoMessage() {} func (*Message) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0} } type Nested struct { Bunny string `protobuf:"bytes,1,opt,name=bunny,proto3" json:"bunny,omitempty"` } func (m *Nested) Reset() { *m = Nested{} } func (*Nested) ProtoMessage() {} func (*Nested) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{1} } type AllMaps struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key,proto3" protobuf_val:"zigzag32,2,opt,name=value,proto3"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"zigzag64,2,opt,name=value,proto3"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=theproto3.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *AllMaps) Reset() { *m = AllMaps{} } func (*AllMaps) ProtoMessage() {} func (*AllMaps) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{2} } type AllMapsOrdered struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key,proto3" protobuf_val:"zigzag32,2,opt,name=value,proto3"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"zigzag64,2,opt,name=value,proto3"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=theproto3.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *AllMapsOrdered) Reset() { *m = AllMapsOrdered{} } func (*AllMapsOrdered) ProtoMessage() {} func (*AllMapsOrdered) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{3} } type MessageWithMap struct { NameMapping map[int32]string `protobuf:"bytes,1,rep,name=name_mapping,json=nameMapping" json:"name_mapping,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` MsgMapping map[int64]*FloatingPoint `protobuf:"bytes,2,rep,name=msg_mapping,json=msgMapping" json:"msg_mapping,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` ByteMapping map[bool][]byte `protobuf:"bytes,3,rep,name=byte_mapping,json=byteMapping" json:"byte_mapping,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MessageWithMap) Reset() { *m = MessageWithMap{} } func (*MessageWithMap) ProtoMessage() {} func (*MessageWithMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{4} } type FloatingPoint struct { F float64 `protobuf:"fixed64,1,opt,name=f,proto3" json:"f,omitempty"` } func (m *FloatingPoint) Reset() { *m = FloatingPoint{} } func (*FloatingPoint) ProtoMessage() {} func (*FloatingPoint) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{5} } type Uint128Pair struct { Left github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,1,opt,name=left,proto3,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"left"` Right *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=right,proto3,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"right,omitempty"` } func (m *Uint128Pair) Reset() { *m = Uint128Pair{} } func (*Uint128Pair) ProtoMessage() {} func (*Uint128Pair) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{6} } type ContainsNestedMap struct { } func (m *ContainsNestedMap) Reset() { *m = ContainsNestedMap{} } func (*ContainsNestedMap) ProtoMessage() {} func (*ContainsNestedMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{7} } type ContainsNestedMap_NestedMap struct { NestedMapField map[string]float64 `protobuf:"bytes,1,rep,name=NestedMapField" json:"NestedMapField,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` } func (m *ContainsNestedMap_NestedMap) Reset() { *m = ContainsNestedMap_NestedMap{} } func (*ContainsNestedMap_NestedMap) ProtoMessage() {} func (*ContainsNestedMap_NestedMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{7, 0} } type NotPacked struct { Key []uint64 `protobuf:"varint,5,rep,name=key" json:"key,omitempty"` } func (m *NotPacked) Reset() { *m = NotPacked{} } func (*NotPacked) ProtoMessage() {} func (*NotPacked) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{8} } func init() { proto.RegisterType((*Message)(nil), "theproto3.Message") proto.RegisterType((*Nested)(nil), "theproto3.Nested") proto.RegisterType((*AllMaps)(nil), "theproto3.AllMaps") proto.RegisterType((*AllMapsOrdered)(nil), "theproto3.AllMapsOrdered") proto.RegisterType((*MessageWithMap)(nil), "theproto3.MessageWithMap") proto.RegisterType((*FloatingPoint)(nil), "theproto3.FloatingPoint") proto.RegisterType((*Uint128Pair)(nil), "theproto3.Uint128Pair") proto.RegisterType((*ContainsNestedMap)(nil), "theproto3.ContainsNestedMap") proto.RegisterType((*ContainsNestedMap_NestedMap)(nil), "theproto3.ContainsNestedMap.NestedMap") proto.RegisterType((*NotPacked)(nil), "theproto3.NotPacked") proto.RegisterEnum("theproto3.MapEnum", MapEnum_name, MapEnum_value) proto.RegisterEnum("theproto3.Message_Humour", Message_Humour_name, Message_Humour_value) } func (this *Message) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *Nested) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *AllMaps) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *AllMapsOrdered) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *MessageWithMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *FloatingPoint) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *Uint128Pair) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *ContainsNestedMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *ContainsNestedMap_NestedMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *NotPacked) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func Theproto3Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 7926 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x70, 0x23, 0xd7, 0x99, 0x1e, 0x1b, 0x0d, 0x92, 0xe0, 0x0f, 0x90, 0x6c, 0x36, 0x67, 0x28, 0x88, 0x1a, 0x91, 0x33, 0xd0, 0x68, 0x44, 0xd1, 0x16, 0x87, 0xc3, 0xe1, 0xdc, 0x30, 0x96, 0xb4, 0x00, 0x08, 0x8e, 0x38, 0x26, 0x41, 0xba, 0x49, 0x5a, 0x9a, 0x75, 0x2a, 0xa8, 0x26, 0x70, 0x48, 0xb6, 0x04, 0x74, 0x63, 0xd1, 0x0d, 0x49, 0x54, 0xa5, 0x52, 0xca, 0x3a, 0xd9, 0x78, 0x93, 0xca, 0x75, 0x93, 0x8a, 0xd7, 0xf1, 0x45, 0xde, 0xd4, 0xc6, 0xde, 0xdd, 0x5c, 0xbc, 0xde, 0x8d, 0xb3, 0xd9, 0x4a, 0x65, 0x95, 0x07, 0x27, 0x93, 0x97, 0x94, 0x36, 0x79, 0x49, 0xb9, 0x52, 0x2a, 0x6b, 0xec, 0x54, 0x9c, 0xc4, 0x49, 0x9c, 0x5d, 0x57, 0x65, 0xab, 0xbc, 0x0f, 0x5b, 0xe7, 0xd6, 0x7d, 0x4e, 0xa3, 0x81, 0x06, 0x47, 0x92, 0xed, 0x07, 0xbf, 0xcc, 0xa0, 0xcf, 0xf9, 0xbf, 0xaf, 0xff, 0xfe, 0x6f, 0xe7, 0xef, 0xd3, 0x0d, 0x10, 0x7e, 0xeb, 0x26, 0x9c, 0x3f, 0x72, 0x9c, 0xa3, 0x06, 0xba, 0xdc, 0x6a, 0x3b, 0x9e, 0x73, 0xd0, 0x39, 0xbc, 0x5c, 0x47, 0x6e, 0xad, 0x6d, 0xb5, 0x3c, 0xa7, 0xbd, 0x44, 0xc6, 0xf4, 0x49, 0x2a, 0xb1, 0xc4, 0x25, 0x72, 0x5b, 0x30, 0xb5, 0x6e, 0x35, 0xd0, 0x9a, 0x2f, 0xb8, 0x8b, 0x3c, 0xfd, 0x26, 0x24, 0x0f, 0xad, 0x06, 0xca, 0x2a, 0xe7, 0xd5, 0x85, 0xf4, 0xca, 0xc5, 0xa5, 0x10, 0x68, 0x49, 0x46, 0xec, 0xe0, 0x61, 0x83, 0x20, 0x72, 0xdf, 0x4d, 0xc2, 0x74, 0xc4, 0xac, 0xae, 0x43, 0xd2, 0x36, 0x9b, 0x98, 0x51, 0x59, 0x18, 0x33, 0xc8, 0x67, 0x3d, 0x0b, 0xa3, 0x2d, 0xb3, 0xf6, 0x8a, 0x79, 0x84, 0xb2, 0x09, 0x32, 0xcc, 0x0f, 0xf5, 0x39, 0x80, 0x3a, 0x6a, 0x21, 0xbb, 0x8e, 0xec, 0xda, 0x49, 0x56, 0x3d, 0xaf, 0x2e, 0x8c, 0x19, 0xc2, 0x88, 0xfe, 0x11, 0x98, 0x6a, 0x75, 0x0e, 0x1a, 0x56, 0xad, 0x2a, 0x88, 0xc1, 0x79, 0x75, 0x61, 0xd8, 0xd0, 0xe8, 0xc4, 0x5a, 0x20, 0xfc, 0x14, 0x4c, 0xbe, 0x86, 0xcc, 0x57, 0x44, 0xd1, 0x34, 0x11, 0x9d, 0xc0, 0xc3, 0x82, 0x60, 0x09, 0x32, 0x4d, 0xe4, 0xba, 0xe6, 0x11, 0xaa, 0x7a, 0x27, 0x2d, 0x94, 0x4d, 0x92, 0xab, 0x3f, 0xdf, 0x75, 0xf5, 0xe1, 0x2b, 0x4f, 0x33, 0xd4, 0xde, 0x49, 0x0b, 0xe9, 0x05, 0x18, 0x43, 0x76, 0xa7, 0x49, 0x19, 0x86, 0x7b, 0xd8, 0xaf, 0x6c, 0x77, 0x9a, 0x61, 0x96, 0x14, 0x86, 0x31, 0x8a, 0x51, 0x17, 0xb5, 0x5f, 0xb5, 0x6a, 0x28, 0x3b, 0x42, 0x08, 0x9e, 0xea, 0x22, 0xd8, 0xa5, 0xf3, 0x61, 0x0e, 0x8e, 0xd3, 0x4b, 0x30, 0x86, 0x5e, 0xf7, 0x90, 0xed, 0x5a, 0x8e, 0x9d, 0x1d, 0x25, 0x24, 0x4f, 0x46, 0x78, 0x11, 0x35, 0xea, 0x61, 0x8a, 0x00, 0xa7, 0x5f, 0x87, 0x51, 0xa7, 0xe5, 0x59, 0x8e, 0xed, 0x66, 0x53, 0xe7, 0x95, 0x85, 0xf4, 0xca, 0xb9, 0xc8, 0x40, 0xd8, 0xa6, 0x32, 0x06, 0x17, 0xd6, 0x37, 0x40, 0x73, 0x9d, 0x4e, 0xbb, 0x86, 0xaa, 0x35, 0xa7, 0x8e, 0xaa, 0x96, 0x7d, 0xe8, 0x64, 0xc7, 0x08, 0xc1, 0x7c, 0xf7, 0x85, 0x10, 0xc1, 0x92, 0x53, 0x47, 0x1b, 0xf6, 0xa1, 0x63, 0x4c, 0xb8, 0xd2, 0xb1, 0x3e, 0x03, 0x23, 0xee, 0x89, 0xed, 0x99, 0xaf, 0x67, 0x33, 0x24, 0x42, 0xd8, 0x51, 0xee, 0x5f, 0x8d, 0xc0, 0xe4, 0x20, 0x21, 0x76, 0x1b, 0x86, 0x0f, 0xf1, 0x55, 0x66, 0x13, 0xa7, 0xb1, 0x01, 0xc5, 0xc8, 0x46, 0x1c, 0x79, 0x48, 0x23, 0x16, 0x20, 0x6d, 0x23, 0xd7, 0x43, 0x75, 0x1a, 0x11, 0xea, 0x80, 0x31, 0x05, 0x14, 0xd4, 0x1d, 0x52, 0xc9, 0x87, 0x0a, 0xa9, 0x97, 0x60, 0xd2, 0x57, 0xa9, 0xda, 0x36, 0xed, 0x23, 0x1e, 0x9b, 0x97, 0xe3, 0x34, 0x59, 0x2a, 0x73, 0x9c, 0x81, 0x61, 0xc6, 0x04, 0x92, 0x8e, 0xf5, 0x35, 0x00, 0xc7, 0x46, 0xce, 0x61, 0xb5, 0x8e, 0x6a, 0x8d, 0x6c, 0xaa, 0x87, 0x95, 0xb6, 0xb1, 0x48, 0x97, 0x95, 0x1c, 0x3a, 0x5a, 0x6b, 0xe8, 0xb7, 0x82, 0x50, 0x1b, 0xed, 0x11, 0x29, 0x5b, 0x34, 0xc9, 0xba, 0xa2, 0x6d, 0x1f, 0x26, 0xda, 0x08, 0xc7, 0x3d, 0xaa, 0xb3, 0x2b, 0x1b, 0x23, 0x4a, 0x2c, 0xc5, 0x5e, 0x99, 0xc1, 0x60, 0xf4, 0xc2, 0xc6, 0xdb, 0xe2, 0xa1, 0xfe, 0x04, 0xf8, 0x03, 0x55, 0x12, 0x56, 0x40, 0xaa, 0x50, 0x86, 0x0f, 0x56, 0xcc, 0x26, 0x9a, 0x7d, 0x03, 0x26, 0x64, 0xf3, 0xe8, 0x67, 0x60, 0xd8, 0xf5, 0xcc, 0xb6, 0x47, 0xa2, 0x70, 0xd8, 0xa0, 0x07, 0xba, 0x06, 0x2a, 0xb2, 0xeb, 0xa4, 0xca, 0x0d, 0x1b, 0xf8, 0xa3, 0xfe, 0x73, 0xc1, 0x05, 0xab, 0xe4, 0x82, 0x2f, 0x75, 0x7b, 0x54, 0x62, 0x0e, 0x5f, 0xf7, 0xec, 0x0d, 0x18, 0x97, 0x2e, 0x60, 0xd0, 0x53, 0xe7, 0xfe, 0x02, 0x9c, 0x8d, 0xa4, 0xd6, 0x5f, 0x82, 0x33, 0x1d, 0xdb, 0xb2, 0x3d, 0xd4, 0x6e, 0xb5, 0x11, 0x8e, 0x58, 0x7a, 0xaa, 0xec, 0x7f, 0x1f, 0xed, 0x11, 0x73, 0xfb, 0xa2, 0x34, 0x65, 0x31, 0xa6, 0x3b, 0xdd, 0x83, 0x8b, 0x63, 0xa9, 0xef, 0x8d, 0x6a, 0x6f, 0xbe, 0xf9, 0xe6, 0x9b, 0x89, 0xdc, 0x67, 0x47, 0xe0, 0x4c, 0x54, 0xce, 0x44, 0xa6, 0xef, 0x0c, 0x8c, 0xd8, 0x9d, 0xe6, 0x01, 0x6a, 0x13, 0x23, 0x0d, 0x1b, 0xec, 0x48, 0x2f, 0xc0, 0x70, 0xc3, 0x3c, 0x40, 0x8d, 0x6c, 0xf2, 0xbc, 0xb2, 0x30, 0xb1, 0xf2, 0x91, 0x81, 0xb2, 0x72, 0x69, 0x13, 0x43, 0x0c, 0x8a, 0xd4, 0x9f, 0x83, 0x24, 0x2b, 0xd1, 0x98, 0x61, 0x71, 0x30, 0x06, 0x9c, 0x4b, 0x06, 0xc1, 0xe9, 0x8f, 0xc1, 0x18, 0xfe, 0x9f, 0xc6, 0xc6, 0x08, 0xd1, 0x39, 0x85, 0x07, 0x70, 0x5c, 0xe8, 0xb3, 0x90, 0x22, 0x69, 0x52, 0x47, 0x7c, 0x69, 0xf3, 0x8f, 0x71, 0x60, 0xd5, 0xd1, 0xa1, 0xd9, 0x69, 0x78, 0xd5, 0x57, 0xcd, 0x46, 0x07, 0x91, 0x80, 0x1f, 0x33, 0x32, 0x6c, 0xf0, 0x93, 0x78, 0x4c, 0x9f, 0x87, 0x34, 0xcd, 0x2a, 0xcb, 0xae, 0xa3, 0xd7, 0x49, 0xf5, 0x1c, 0x36, 0x68, 0xa2, 0x6d, 0xe0, 0x11, 0x7c, 0xfa, 0x97, 0x5d, 0xc7, 0xe6, 0xa1, 0x49, 0x4e, 0x81, 0x07, 0xc8, 0xe9, 0x6f, 0x84, 0x0b, 0xf7, 0xe3, 0xd1, 0x97, 0x17, 0x8e, 0xa9, 0xdc, 0x37, 0x12, 0x90, 0x24, 0xf5, 0x62, 0x12, 0xd2, 0x7b, 0xf7, 0x76, 0xca, 0xd5, 0xb5, 0xed, 0xfd, 0xe2, 0x66, 0x59, 0x53, 0xf4, 0x09, 0x00, 0x32, 0xb0, 0xbe, 0xb9, 0x5d, 0xd8, 0xd3, 0x12, 0xfe, 0xf1, 0x46, 0x65, 0xef, 0xfa, 0xaa, 0xa6, 0xfa, 0x80, 0x7d, 0x3a, 0x90, 0x14, 0x05, 0xae, 0xae, 0x68, 0xc3, 0xba, 0x06, 0x19, 0x4a, 0xb0, 0xf1, 0x52, 0x79, 0xed, 0xfa, 0xaa, 0x36, 0x22, 0x8f, 0x5c, 0x5d, 0xd1, 0x46, 0xf5, 0x71, 0x18, 0x23, 0x23, 0xc5, 0xed, 0xed, 0x4d, 0x2d, 0xe5, 0x73, 0xee, 0xee, 0x19, 0x1b, 0x95, 0x3b, 0xda, 0x98, 0xcf, 0x79, 0xc7, 0xd8, 0xde, 0xdf, 0xd1, 0xc0, 0x67, 0xd8, 0x2a, 0xef, 0xee, 0x16, 0xee, 0x94, 0xb5, 0xb4, 0x2f, 0x51, 0xbc, 0xb7, 0x57, 0xde, 0xd5, 0x32, 0x92, 0x5a, 0x57, 0x57, 0xb4, 0x71, 0xff, 0x14, 0xe5, 0xca, 0xfe, 0x96, 0x36, 0xa1, 0x4f, 0xc1, 0x38, 0x3d, 0x05, 0x57, 0x62, 0x32, 0x34, 0x74, 0x7d, 0x55, 0xd3, 0x02, 0x45, 0x28, 0xcb, 0x94, 0x34, 0x70, 0x7d, 0x55, 0xd3, 0x73, 0x25, 0x18, 0x26, 0xd1, 0xa5, 0xeb, 0x30, 0xb1, 0x59, 0x28, 0x96, 0x37, 0xab, 0xdb, 0x3b, 0x7b, 0x1b, 0xdb, 0x95, 0xc2, 0xa6, 0xa6, 0x04, 0x63, 0x46, 0xf9, 0x13, 0xfb, 0x1b, 0x46, 0x79, 0x4d, 0x4b, 0x88, 0x63, 0x3b, 0xe5, 0xc2, 0x5e, 0x79, 0x4d, 0x53, 0x73, 0x35, 0x38, 0x13, 0x55, 0x27, 0x23, 0x33, 0x43, 0x70, 0x71, 0xa2, 0x87, 0x8b, 0x09, 0x57, 0x97, 0x8b, 0x7f, 0x4d, 0x81, 0xe9, 0x88, 0xb5, 0x22, 0xf2, 0x24, 0xcf, 0xc3, 0x30, 0x0d, 0x51, 0xba, 0x7a, 0x3e, 0x1d, 0xb9, 0xe8, 0x90, 0x80, 0xed, 0x5a, 0x41, 0x09, 0x4e, 0xec, 0x20, 0xd4, 0x1e, 0x1d, 0x04, 0xa6, 0xe8, 0x52, 0xf2, 0xd3, 0x0a, 0x64, 0x7b, 0x71, 0xc7, 0x14, 0x8a, 0x84, 0x54, 0x28, 0x6e, 0x87, 0x15, 0xb8, 0xd0, 0xfb, 0x1a, 0xba, 0xb4, 0xf8, 0x8a, 0x02, 0x33, 0xd1, 0x8d, 0x56, 0xa4, 0x0e, 0xcf, 0xc1, 0x48, 0x13, 0x79, 0xc7, 0x0e, 0x6f, 0x36, 0x2e, 0x45, 0x2c, 0x61, 0x78, 0x3a, 0x6c, 0x2b, 0x86, 0x12, 0xd7, 0x40, 0xb5, 0x57, 0xb7, 0x44, 0xb5, 0xe9, 0xd2, 0xf4, 0x97, 0x13, 0x70, 0x36, 0x92, 0x3c, 0x52, 0xd1, 0xc7, 0x01, 0x2c, 0xbb, 0xd5, 0xf1, 0x68, 0x43, 0x41, 0xeb, 0xd3, 0x18, 0x19, 0x21, 0xb9, 0x8f, 0x6b, 0x4f, 0xc7, 0xf3, 0xe7, 0x55, 0x32, 0x0f, 0x74, 0x88, 0x08, 0xdc, 0x0c, 0x14, 0x4d, 0x12, 0x45, 0xe7, 0x7a, 0x5c, 0x69, 0xd7, 0x5a, 0xbd, 0x0c, 0x5a, 0xad, 0x61, 0x21, 0xdb, 0xab, 0xba, 0x5e, 0x1b, 0x99, 0x4d, 0xcb, 0x3e, 0x22, 0x05, 0x38, 0x95, 0x1f, 0x3e, 0x34, 0x1b, 0x2e, 0x32, 0x26, 0xe9, 0xf4, 0x2e, 0x9f, 0xc5, 0x08, 0xb2, 0xc6, 0xb5, 0x05, 0xc4, 0x88, 0x84, 0xa0, 0xd3, 0x3e, 0x22, 0xf7, 0x3b, 0x29, 0x48, 0x0b, 0x6d, 0xa9, 0x7e, 0x01, 0x32, 0x2f, 0x9b, 0xaf, 0x9a, 0x55, 0x7e, 0xab, 0x41, 0x2d, 0x91, 0xc6, 0x63, 0x3b, 0xec, 0x76, 0x63, 0x19, 0xce, 0x10, 0x11, 0xa7, 0xe3, 0xa1, 0x76, 0xb5, 0xd6, 0x30, 0x5d, 0x97, 0x18, 0x2d, 0x45, 0x44, 0x75, 0x3c, 0xb7, 0x8d, 0xa7, 0x4a, 0x7c, 0x46, 0xbf, 0x06, 0xd3, 0x04, 0xd1, 0xec, 0x34, 0x3c, 0xab, 0xd5, 0x40, 0x55, 0x7c, 0xf3, 0xe3, 0x92, 0x42, 0xec, 0x6b, 0x36, 0x85, 0x25, 0xb6, 0x98, 0x00, 0xd6, 0xc8, 0xd5, 0xd7, 0xe0, 0x71, 0x02, 0x3b, 0x42, 0x36, 0x6a, 0x9b, 0x1e, 0xaa, 0xa2, 0x5f, 0xe8, 0x98, 0x0d, 0xb7, 0x6a, 0xda, 0xf5, 0xea, 0xb1, 0xe9, 0x1e, 0x67, 0xcf, 0x60, 0x82, 0x62, 0x22, 0xab, 0x18, 0x8f, 0x62, 0xc1, 0x3b, 0x4c, 0xae, 0x4c, 0xc4, 0x0a, 0x76, 0xfd, 0x05, 0xd3, 0x3d, 0xd6, 0xf3, 0x30, 0x43, 0x58, 0x5c, 0xaf, 0x6d, 0xd9, 0x47, 0xd5, 0xda, 0x31, 0xaa, 0xbd, 0x52, 0xed, 0x78, 0x87, 0x37, 0xb3, 0x8f, 0x89, 0xe7, 0x27, 0x1a, 0xee, 0x12, 0x99, 0x12, 0x16, 0xd9, 0xf7, 0x0e, 0x6f, 0xea, 0xbb, 0x90, 0xc1, 0xce, 0x68, 0x5a, 0x6f, 0xa0, 0xea, 0xa1, 0xd3, 0x26, 0x2b, 0xcb, 0x44, 0x44, 0x66, 0x0b, 0x16, 0x5c, 0xda, 0x66, 0x80, 0x2d, 0xa7, 0x8e, 0xf2, 0xc3, 0xbb, 0x3b, 0xe5, 0xf2, 0x9a, 0x91, 0xe6, 0x2c, 0xeb, 0x4e, 0x1b, 0x07, 0xd4, 0x91, 0xe3, 0x1b, 0x38, 0x4d, 0x03, 0xea, 0xc8, 0xe1, 0xe6, 0xbd, 0x06, 0xd3, 0xb5, 0x1a, 0xbd, 0x66, 0xab, 0x56, 0x65, 0xb7, 0x28, 0x6e, 0x56, 0x93, 0x8c, 0x55, 0xab, 0xdd, 0xa1, 0x02, 0x2c, 0xc6, 0x5d, 0xfd, 0x16, 0x9c, 0x0d, 0x8c, 0x25, 0x02, 0xa7, 0xba, 0xae, 0x32, 0x0c, 0xbd, 0x06, 0xd3, 0xad, 0x93, 0x6e, 0xa0, 0x2e, 0x9d, 0xb1, 0x75, 0x12, 0x86, 0xdd, 0x80, 0x33, 0xad, 0xe3, 0x56, 0x37, 0x6e, 0x5a, 0xc4, 0xe9, 0xad, 0xe3, 0x56, 0x18, 0xf8, 0x24, 0xb9, 0x5f, 0x6d, 0xa3, 0x9a, 0xe9, 0xa1, 0x7a, 0xf6, 0x11, 0x51, 0x5c, 0x98, 0xd0, 0x2f, 0x83, 0x56, 0xab, 0x55, 0x91, 0x6d, 0x1e, 0x34, 0x50, 0xd5, 0x6c, 0x23, 0xdb, 0x74, 0xb3, 0xf3, 0xa2, 0xf0, 0x44, 0xad, 0x56, 0x26, 0xb3, 0x05, 0x32, 0xa9, 0x2f, 0xc2, 0x94, 0x73, 0xf0, 0x72, 0x8d, 0x86, 0x64, 0xb5, 0xd5, 0x46, 0x87, 0xd6, 0xeb, 0xd9, 0x8b, 0xc4, 0xbe, 0x93, 0x78, 0x82, 0x04, 0xe4, 0x0e, 0x19, 0xd6, 0x9f, 0x06, 0xad, 0xe6, 0x1e, 0x9b, 0xed, 0x16, 0xe9, 0x09, 0xdc, 0x96, 0x59, 0x43, 0xd9, 0x27, 0xa9, 0x28, 0x1d, 0xaf, 0xf0, 0x61, 0x9c, 0x12, 0xee, 0x6b, 0xd6, 0xa1, 0xc7, 0x19, 0x9f, 0xa2, 0x29, 0x41, 0xc6, 0x18, 0xdb, 0x02, 0x68, 0xd8, 0x14, 0xd2, 0x89, 0x17, 0x88, 0xd8, 0x44, 0xeb, 0xb8, 0x25, 0x9e, 0xf7, 0x09, 0x18, 0xc7, 0x92, 0xc1, 0x49, 0x9f, 0xa6, 0xfd, 0x4c, 0xeb, 0x58, 0x38, 0xe3, 0x87, 0xd6, 0x5a, 0xe6, 0xf2, 0x90, 0x11, 0xe3, 0x53, 0x1f, 0x03, 0x1a, 0xa1, 0x9a, 0x82, 0xd7, 0xfa, 0xd2, 0xf6, 0x1a, 0x5e, 0xa5, 0x7f, 0xbe, 0xac, 0x25, 0x70, 0xb7, 0xb0, 0xb9, 0xb1, 0x57, 0xae, 0x1a, 0xfb, 0x95, 0xbd, 0x8d, 0xad, 0xb2, 0xa6, 0x8a, 0x6d, 0xe9, 0x37, 0x13, 0x30, 0x21, 0xdf, 0x61, 0xe8, 0x1f, 0x83, 0x47, 0xf8, 0x76, 0x80, 0x8b, 0xbc, 0xea, 0x6b, 0x56, 0x9b, 0xa4, 0x4c, 0xd3, 0xa4, 0x1d, 0xb6, 0xef, 0xb4, 0x33, 0x4c, 0x6a, 0x17, 0x79, 0x2f, 0x5a, 0x6d, 0x9c, 0x10, 0x4d, 0xd3, 0xd3, 0x37, 0x61, 0xde, 0x76, 0xaa, 0xae, 0x67, 0xda, 0x75, 0xb3, 0x5d, 0xaf, 0x06, 0x1b, 0x31, 0x55, 0xb3, 0x56, 0x43, 0xae, 0xeb, 0xd0, 0xa5, 0xca, 0x67, 0x39, 0x67, 0x3b, 0xbb, 0x4c, 0x38, 0xa8, 0xe1, 0x05, 0x26, 0x1a, 0x0a, 0x30, 0xb5, 0x57, 0x80, 0x3d, 0x06, 0x63, 0x4d, 0xb3, 0x55, 0x45, 0xb6, 0xd7, 0x3e, 0x21, 0x7d, 0x65, 0xca, 0x48, 0x35, 0xcd, 0x56, 0x19, 0x1f, 0xff, 0x78, 0xda, 0xfb, 0xff, 0xaa, 0x42, 0x46, 0xec, 0x2d, 0x71, 0xab, 0x5e, 0x23, 0xeb, 0x88, 0x42, 0x2a, 0xcd, 0x13, 0x7d, 0x3b, 0xd1, 0xa5, 0x12, 0x5e, 0x60, 0xf2, 0x23, 0xb4, 0xe3, 0x33, 0x28, 0x12, 0x2f, 0xee, 0xb8, 0xb6, 0x20, 0x7a, 0x17, 0x93, 0x32, 0xd8, 0x91, 0x7e, 0x07, 0x46, 0x5e, 0x76, 0x09, 0xf7, 0x08, 0xe1, 0xbe, 0xd8, 0x9f, 0xfb, 0xee, 0x2e, 0x21, 0x1f, 0xbb, 0xbb, 0x5b, 0xad, 0x6c, 0x1b, 0x5b, 0x85, 0x4d, 0x83, 0xc1, 0xf5, 0x47, 0x21, 0xd9, 0x30, 0xdf, 0x38, 0x91, 0x97, 0x22, 0x32, 0x34, 0xa8, 0xe1, 0x1f, 0x85, 0xe4, 0x6b, 0xc8, 0x7c, 0x45, 0x5e, 0x00, 0xc8, 0xd0, 0x87, 0x18, 0xfa, 0x97, 0x61, 0x98, 0xd8, 0x4b, 0x07, 0x60, 0x16, 0xd3, 0x86, 0xf4, 0x14, 0x24, 0x4b, 0xdb, 0x06, 0x0e, 0x7f, 0x0d, 0x32, 0x74, 0xb4, 0xba, 0xb3, 0x51, 0x2e, 0x95, 0xb5, 0x44, 0xee, 0x1a, 0x8c, 0x50, 0x23, 0xe0, 0xd4, 0xf0, 0xcd, 0xa0, 0x0d, 0xb1, 0x43, 0xc6, 0xa1, 0xf0, 0xd9, 0xfd, 0xad, 0x62, 0xd9, 0xd0, 0x12, 0xa2, 0x7b, 0x5d, 0xc8, 0x88, 0x6d, 0xe5, 0x8f, 0x27, 0xa6, 0x7e, 0x5f, 0x81, 0xb4, 0xd0, 0x26, 0xe2, 0x06, 0xc5, 0x6c, 0x34, 0x9c, 0xd7, 0xaa, 0x66, 0xc3, 0x32, 0x5d, 0x16, 0x14, 0x40, 0x86, 0x0a, 0x78, 0x64, 0x50, 0xa7, 0xfd, 0x58, 0x94, 0xff, 0xa2, 0x02, 0x5a, 0xb8, 0xc5, 0x0c, 0x29, 0xa8, 0xfc, 0x44, 0x15, 0xfc, 0xbc, 0x02, 0x13, 0x72, 0x5f, 0x19, 0x52, 0xef, 0xc2, 0x4f, 0x54, 0xbd, 0x6f, 0x27, 0x60, 0x5c, 0xea, 0x26, 0x07, 0xd5, 0xee, 0x17, 0x60, 0xca, 0xaa, 0xa3, 0x66, 0xcb, 0xf1, 0x90, 0x5d, 0x3b, 0xa9, 0x36, 0xd0, 0xab, 0xa8, 0x91, 0xcd, 0x91, 0x42, 0x71, 0xb9, 0x7f, 0xbf, 0xba, 0xb4, 0x11, 0xe0, 0x36, 0x31, 0x2c, 0x3f, 0xbd, 0xb1, 0x56, 0xde, 0xda, 0xd9, 0xde, 0x2b, 0x57, 0x4a, 0xf7, 0xaa, 0xfb, 0x95, 0x8f, 0x57, 0xb6, 0x5f, 0xac, 0x18, 0x9a, 0x15, 0x12, 0xfb, 0x10, 0x53, 0x7d, 0x07, 0xb4, 0xb0, 0x52, 0xfa, 0x23, 0x10, 0xa5, 0x96, 0x36, 0xa4, 0x4f, 0xc3, 0x64, 0x65, 0xbb, 0xba, 0xbb, 0xb1, 0x56, 0xae, 0x96, 0xd7, 0xd7, 0xcb, 0xa5, 0xbd, 0x5d, 0x7a, 0x03, 0xef, 0x4b, 0xef, 0xc9, 0x49, 0xfd, 0x39, 0x15, 0xa6, 0x23, 0x34, 0xd1, 0x0b, 0xec, 0xde, 0x81, 0xde, 0xce, 0x3c, 0x33, 0x88, 0xf6, 0x4b, 0x78, 0xc9, 0xdf, 0x31, 0xdb, 0x1e, 0xbb, 0xd5, 0x78, 0x1a, 0xb0, 0x95, 0x6c, 0xcf, 0x3a, 0xb4, 0x50, 0x9b, 0xed, 0x77, 0xd0, 0x1b, 0x8a, 0xc9, 0x60, 0x9c, 0x6e, 0x79, 0x7c, 0x14, 0xf4, 0x96, 0xe3, 0x5a, 0x9e, 0xf5, 0x2a, 0xaa, 0x5a, 0x36, 0xdf, 0x1c, 0xc1, 0x37, 0x18, 0x49, 0x43, 0xe3, 0x33, 0x1b, 0xb6, 0xe7, 0x4b, 0xdb, 0xe8, 0xc8, 0x0c, 0x49, 0xe3, 0x02, 0xae, 0x1a, 0x1a, 0x9f, 0xf1, 0xa5, 0x2f, 0x40, 0xa6, 0xee, 0x74, 0x70, 0xd7, 0x45, 0xe5, 0xf0, 0x7a, 0xa1, 0x18, 0x69, 0x3a, 0xe6, 0x8b, 0xb0, 0x7e, 0x3a, 0xd8, 0x95, 0xc9, 0x18, 0x69, 0x3a, 0x46, 0x45, 0x9e, 0x82, 0x49, 0xf3, 0xe8, 0xa8, 0x8d, 0xc9, 0x39, 0x11, 0xbd, 0x43, 0x98, 0xf0, 0x87, 0x89, 0xe0, 0xec, 0x5d, 0x48, 0x71, 0x3b, 0xe0, 0x25, 0x19, 0x5b, 0xa2, 0xda, 0xa2, 0x3b, 0x73, 0x89, 0x85, 0x31, 0x23, 0x65, 0xf3, 0xc9, 0x0b, 0x90, 0xb1, 0xdc, 0x6a, 0xb0, 0xc9, 0x9c, 0x38, 0x9f, 0x58, 0x48, 0x19, 0x69, 0xcb, 0xf5, 0x37, 0xe8, 0x72, 0x5f, 0x49, 0xc0, 0x84, 0xbc, 0x49, 0xae, 0xaf, 0x41, 0xaa, 0xe1, 0xd4, 0x4c, 0x12, 0x5a, 0xf4, 0x09, 0xcd, 0x42, 0xcc, 0xbe, 0xfa, 0xd2, 0x26, 0x93, 0x37, 0x7c, 0xe4, 0xec, 0x7f, 0x54, 0x20, 0xc5, 0x87, 0xf5, 0x19, 0x48, 0xb6, 0x4c, 0xef, 0x98, 0xd0, 0x0d, 0x17, 0x13, 0x9a, 0x62, 0x90, 0x63, 0x3c, 0xee, 0xb6, 0x4c, 0x9b, 0x84, 0x00, 0x1b, 0xc7, 0xc7, 0xd8, 0xaf, 0x0d, 0x64, 0xd6, 0xc9, 0xed, 0x87, 0xd3, 0x6c, 0x22, 0xdb, 0x73, 0xb9, 0x5f, 0xd9, 0x78, 0x89, 0x0d, 0xeb, 0x1f, 0x81, 0x29, 0xaf, 0x6d, 0x5a, 0x0d, 0x49, 0x36, 0x49, 0x64, 0x35, 0x3e, 0xe1, 0x0b, 0xe7, 0xe1, 0x51, 0xce, 0x5b, 0x47, 0x9e, 0x59, 0x3b, 0x46, 0xf5, 0x00, 0x34, 0x42, 0x76, 0x60, 0x1f, 0x61, 0x02, 0x6b, 0x6c, 0x9e, 0x63, 0x73, 0x7f, 0xa8, 0xc0, 0x14, 0xbf, 0x61, 0xaa, 0xfb, 0xc6, 0xda, 0x02, 0x30, 0x6d, 0xdb, 0xf1, 0x44, 0x73, 0x75, 0x87, 0x72, 0x17, 0x6e, 0xa9, 0xe0, 0x83, 0x0c, 0x81, 0x60, 0xb6, 0x09, 0x10, 0xcc, 0xf4, 0x34, 0xdb, 0x3c, 0xa4, 0xd9, 0x13, 0x10, 0xf2, 0x18, 0x8d, 0xde, 0x62, 0x03, 0x1d, 0xc2, 0x77, 0x56, 0xfa, 0x19, 0x18, 0x3e, 0x40, 0x47, 0x96, 0xcd, 0xf6, 0x35, 0xe9, 0x01, 0xdf, 0xab, 0x4d, 0xfa, 0x7b, 0xb5, 0xc5, 0x97, 0x60, 0xba, 0xe6, 0x34, 0xc3, 0xea, 0x16, 0xb5, 0xd0, 0x6d, 0xbe, 0xfb, 0x82, 0xf2, 0xf3, 0x10, 0xb4, 0x98, 0xbf, 0x96, 0x50, 0xef, 0xec, 0x14, 0x7f, 0x33, 0x31, 0x7b, 0x87, 0xe2, 0x76, 0xf8, 0x65, 0x1a, 0xe8, 0xb0, 0x81, 0x6a, 0x58, 0x75, 0xf8, 0xe3, 0x4b, 0xf0, 0xcc, 0x91, 0xe5, 0x1d, 0x77, 0x0e, 0x96, 0x6a, 0x4e, 0xf3, 0xf2, 0x91, 0x73, 0xe4, 0x04, 0x8f, 0x0d, 0xf1, 0x11, 0x39, 0x20, 0x9f, 0xd8, 0xa3, 0xc3, 0x31, 0x7f, 0x74, 0x36, 0xf6, 0x39, 0x63, 0xbe, 0x02, 0xd3, 0x4c, 0xb8, 0x4a, 0x9e, 0x5d, 0xd0, 0x5b, 0x08, 0xbd, 0xef, 0xfe, 0x4f, 0xf6, 0xb7, 0xbf, 0x4b, 0xd6, 0x6a, 0x63, 0x8a, 0x41, 0xf1, 0x1c, 0xbd, 0xcb, 0xc8, 0x1b, 0x70, 0x56, 0xe2, 0xa3, 0x79, 0x89, 0xda, 0x31, 0x8c, 0xdf, 0x64, 0x8c, 0xd3, 0x02, 0xe3, 0x2e, 0x83, 0xe6, 0x4b, 0x30, 0x7e, 0x1a, 0xae, 0x7f, 0xc7, 0xb8, 0x32, 0x48, 0x24, 0xb9, 0x03, 0x93, 0x84, 0xa4, 0xd6, 0x71, 0x3d, 0xa7, 0x49, 0x8a, 0x5e, 0x7f, 0x9a, 0x7f, 0xff, 0x5d, 0x9a, 0x28, 0x13, 0x18, 0x56, 0xf2, 0x51, 0xf9, 0x3c, 0x90, 0xc7, 0x35, 0x75, 0x54, 0x6b, 0xc4, 0x30, 0xdc, 0x67, 0x8a, 0xf8, 0xf2, 0xf9, 0x4f, 0xc2, 0x19, 0xfc, 0x99, 0xd4, 0x24, 0x51, 0x93, 0xf8, 0xdd, 0xae, 0xec, 0x1f, 0x7e, 0x9a, 0xe6, 0xe2, 0xb4, 0x4f, 0x20, 0xe8, 0x24, 0x78, 0xf1, 0x08, 0x79, 0x1e, 0x6a, 0xbb, 0x55, 0xb3, 0x11, 0xa5, 0x9e, 0xb0, 0x5d, 0x90, 0xfd, 0xd5, 0xef, 0xcb, 0x5e, 0xbc, 0x43, 0x91, 0x85, 0x46, 0x23, 0xbf, 0x0f, 0x8f, 0x44, 0x44, 0xc5, 0x00, 0x9c, 0x9f, 0x63, 0x9c, 0x67, 0xba, 0x22, 0x03, 0xd3, 0xee, 0x00, 0x1f, 0xf7, 0x7d, 0x39, 0x00, 0xe7, 0x3f, 0x64, 0x9c, 0x3a, 0xc3, 0x72, 0x97, 0x62, 0xc6, 0xbb, 0x30, 0xf5, 0x2a, 0x6a, 0x1f, 0x38, 0x2e, 0xdb, 0xa2, 0x19, 0x80, 0xee, 0xf3, 0x8c, 0x6e, 0x92, 0x01, 0xc9, 0x9e, 0x0d, 0xe6, 0xba, 0x05, 0xa9, 0x43, 0xb3, 0x86, 0x06, 0xa0, 0xf8, 0x02, 0xa3, 0x18, 0xc5, 0xf2, 0x18, 0x5a, 0x80, 0xcc, 0x91, 0xc3, 0x96, 0xa5, 0x78, 0xf8, 0x17, 0x19, 0x3c, 0xcd, 0x31, 0x8c, 0xa2, 0xe5, 0xb4, 0x3a, 0x0d, 0xbc, 0x66, 0xc5, 0x53, 0x7c, 0x89, 0x53, 0x70, 0x0c, 0xa3, 0x38, 0x85, 0x59, 0xdf, 0xe2, 0x14, 0xae, 0x60, 0xcf, 0xe7, 0x21, 0xed, 0xd8, 0x8d, 0x13, 0xc7, 0x1e, 0x44, 0x89, 0x2f, 0x33, 0x06, 0x60, 0x10, 0x4c, 0x70, 0x1b, 0xc6, 0x06, 0x75, 0xc4, 0xaf, 0x7f, 0x9f, 0xa7, 0x07, 0xf7, 0xc0, 0x1d, 0x98, 0xe4, 0x05, 0xca, 0x72, 0xec, 0x01, 0x28, 0xfe, 0x31, 0xa3, 0x98, 0x10, 0x60, 0xec, 0x32, 0x3c, 0xe4, 0x7a, 0x47, 0x68, 0x10, 0x92, 0xaf, 0xf0, 0xcb, 0x60, 0x10, 0x66, 0xca, 0x03, 0x64, 0xd7, 0x8e, 0x07, 0x63, 0xf8, 0x2a, 0x37, 0x25, 0xc7, 0x60, 0x8a, 0x12, 0x8c, 0x37, 0xcd, 0xb6, 0x7b, 0x6c, 0x36, 0x06, 0x72, 0xc7, 0x6f, 0x30, 0x8e, 0x8c, 0x0f, 0x62, 0x16, 0xe9, 0xd8, 0xa7, 0xa1, 0xf9, 0x4d, 0x6e, 0x11, 0x01, 0xc6, 0x52, 0xcf, 0xf5, 0xc8, 0x7e, 0xd6, 0x69, 0xd8, 0x7e, 0x8b, 0xa7, 0x1e, 0xc5, 0x6e, 0x89, 0x8c, 0xb7, 0x61, 0xcc, 0xb5, 0xde, 0x18, 0x88, 0xe6, 0x9f, 0x70, 0x4f, 0x13, 0x00, 0x06, 0xdf, 0x83, 0x47, 0x23, 0x97, 0x89, 0x01, 0xc8, 0xfe, 0x29, 0x23, 0x9b, 0x89, 0x58, 0x2a, 0x58, 0x49, 0x38, 0x2d, 0xe5, 0x3f, 0xe3, 0x25, 0x01, 0x85, 0xb8, 0x76, 0xf0, 0x8d, 0x82, 0x6b, 0x1e, 0x9e, 0xce, 0x6a, 0xff, 0x9c, 0x5b, 0x8d, 0x62, 0x25, 0xab, 0xed, 0xc1, 0x0c, 0x63, 0x3c, 0x9d, 0x5f, 0xbf, 0xc6, 0x0b, 0x2b, 0x45, 0xef, 0xcb, 0xde, 0xfd, 0x14, 0xcc, 0xfa, 0xe6, 0xe4, 0x1d, 0xa9, 0x5b, 0x6d, 0x9a, 0xad, 0x01, 0x98, 0x7f, 0x9b, 0x31, 0xf3, 0x8a, 0xef, 0xb7, 0xb4, 0xee, 0x96, 0xd9, 0xc2, 0xe4, 0x2f, 0x41, 0x96, 0x93, 0x77, 0xec, 0x36, 0xaa, 0x39, 0x47, 0xb6, 0xf5, 0x06, 0xaa, 0x0f, 0x40, 0xfd, 0xf5, 0x90, 0xab, 0xf6, 0x05, 0x38, 0x66, 0xde, 0x00, 0xcd, 0xef, 0x55, 0xaa, 0x56, 0xb3, 0xe5, 0xb4, 0xbd, 0x18, 0xc6, 0xdf, 0xe1, 0x9e, 0xf2, 0x71, 0x1b, 0x04, 0x96, 0x2f, 0xc3, 0x04, 0x39, 0x1c, 0x34, 0x24, 0x7f, 0x97, 0x11, 0x8d, 0x07, 0x28, 0x56, 0x38, 0x6a, 0x4e, 0xb3, 0x65, 0xb6, 0x07, 0xa9, 0x7f, 0xff, 0x82, 0x17, 0x0e, 0x06, 0x61, 0x85, 0xc3, 0x3b, 0x69, 0x21, 0xbc, 0xda, 0x0f, 0xc0, 0xf0, 0x0d, 0x5e, 0x38, 0x38, 0x86, 0x51, 0xf0, 0x86, 0x61, 0x00, 0x8a, 0x7f, 0xc9, 0x29, 0x38, 0x06, 0x53, 0x7c, 0x22, 0x58, 0x68, 0xdb, 0xe8, 0xc8, 0x72, 0xbd, 0x36, 0xed, 0x83, 0xfb, 0x53, 0xfd, 0xde, 0xf7, 0xe5, 0x26, 0xcc, 0x10, 0xa0, 0xf9, 0xbb, 0x30, 0x19, 0x6a, 0x31, 0xf4, 0xb8, 0x77, 0x3f, 0xb2, 0x7f, 0xe9, 0x87, 0xac, 0x18, 0xc9, 0x1d, 0x46, 0x7e, 0x13, 0xfb, 0x5d, 0xee, 0x03, 0xe2, 0xc9, 0x3e, 0xfd, 0x43, 0xdf, 0xf5, 0x52, 0x1b, 0x90, 0x5f, 0x87, 0x71, 0xa9, 0x07, 0x88, 0xa7, 0xfa, 0xcb, 0x8c, 0x2a, 0x23, 0xb6, 0x00, 0xf9, 0x6b, 0x90, 0xc4, 0xeb, 0x79, 0x3c, 0xfc, 0xaf, 0x30, 0x38, 0x11, 0xcf, 0x3f, 0x0b, 0x29, 0xbe, 0x8e, 0xc7, 0x43, 0x7f, 0x89, 0x41, 0x7d, 0x08, 0x86, 0xf3, 0x35, 0x3c, 0x1e, 0xfe, 0x57, 0x39, 0x9c, 0x43, 0x30, 0x7c, 0x70, 0x13, 0xbe, 0xfd, 0xd7, 0x93, 0xac, 0x0e, 0x73, 0xdb, 0xdd, 0x86, 0x51, 0xb6, 0x78, 0xc7, 0xa3, 0x7f, 0x99, 0x9d, 0x9c, 0x23, 0xf2, 0x37, 0x60, 0x78, 0x40, 0x83, 0xff, 0x0d, 0x06, 0xa5, 0xf2, 0xf9, 0x12, 0xa4, 0x85, 0x05, 0x3b, 0x1e, 0xfe, 0x37, 0x19, 0x5c, 0x44, 0x61, 0xd5, 0xd9, 0x82, 0x1d, 0x4f, 0xf0, 0xb7, 0xb8, 0xea, 0x0c, 0x81, 0xcd, 0xc6, 0xd7, 0xea, 0x78, 0xf4, 0xdf, 0xe6, 0x56, 0xe7, 0x90, 0xfc, 0xf3, 0x30, 0xe6, 0xd7, 0xdf, 0x78, 0xfc, 0xdf, 0x61, 0xf8, 0x00, 0x83, 0x2d, 0x20, 0xd4, 0xff, 0x78, 0x8a, 0xbf, 0xcb, 0x2d, 0x20, 0xa0, 0x70, 0x1a, 0x85, 0xd7, 0xf4, 0x78, 0xa6, 0x5f, 0xe1, 0x69, 0x14, 0x5a, 0xd2, 0xb1, 0x37, 0x49, 0x19, 0x8c, 0xa7, 0xf8, 0x7b, 0xdc, 0x9b, 0x44, 0x1e, 0xab, 0x11, 0x5e, 0x24, 0xe3, 0x39, 0xfe, 0x01, 0x57, 0x23, 0xb4, 0x46, 0xe6, 0x77, 0x40, 0xef, 0x5e, 0x20, 0xe3, 0xf9, 0x3e, 0xcb, 0xf8, 0xa6, 0xba, 0xd6, 0xc7, 0xfc, 0x8b, 0x30, 0x13, 0xbd, 0x38, 0xc6, 0xb3, 0xfe, 0xea, 0x0f, 0x43, 0xb7, 0x33, 0xe2, 0xda, 0x98, 0xdf, 0x0b, 0xaa, 0xac, 0xb8, 0x30, 0xc6, 0xd3, 0x7e, 0xee, 0x87, 0x72, 0xa1, 0x15, 0xd7, 0xc5, 0x7c, 0x01, 0x20, 0x58, 0x93, 0xe2, 0xb9, 0x3e, 0xcf, 0xb8, 0x04, 0x10, 0x4e, 0x0d, 0xb6, 0x24, 0xc5, 0xe3, 0xbf, 0xc0, 0x53, 0x83, 0x21, 0x70, 0x6a, 0xf0, 0xd5, 0x28, 0x1e, 0xfd, 0x45, 0x9e, 0x1a, 0x1c, 0x92, 0xbf, 0x0d, 0x29, 0xbb, 0xd3, 0x68, 0xe0, 0xd8, 0xd2, 0xfb, 0xbf, 0xce, 0x94, 0xfd, 0x1f, 0x3f, 0x62, 0x60, 0x0e, 0xc8, 0x5f, 0x83, 0x61, 0xd4, 0x3c, 0x40, 0xf5, 0x38, 0xe4, 0xff, 0xfc, 0x11, 0xaf, 0x27, 0x58, 0x3a, 0xff, 0x3c, 0x00, 0xbd, 0x99, 0x26, 0x4f, 0x89, 0x62, 0xb0, 0xff, 0xeb, 0x47, 0xec, 0x4d, 0x89, 0x00, 0x12, 0x10, 0xd0, 0xf7, 0x2e, 0xfa, 0x13, 0x7c, 0x5f, 0x26, 0x20, 0x37, 0xe0, 0xb7, 0x60, 0xf4, 0x65, 0xd7, 0xb1, 0x3d, 0xf3, 0x28, 0x0e, 0xfd, 0xbf, 0x19, 0x9a, 0xcb, 0x63, 0x83, 0x35, 0x9d, 0x36, 0xf2, 0xcc, 0x23, 0x37, 0x0e, 0xfb, 0x7f, 0x18, 0xd6, 0x07, 0x60, 0x70, 0xcd, 0x74, 0xbd, 0x41, 0xae, 0xfb, 0xff, 0x72, 0x30, 0x07, 0x60, 0xa5, 0xf1, 0xe7, 0x57, 0xd0, 0x49, 0x1c, 0xf6, 0x07, 0x5c, 0x69, 0x26, 0x9f, 0x7f, 0x16, 0xc6, 0xf0, 0x47, 0xfa, 0xf6, 0x50, 0x0c, 0xf8, 0xff, 0x31, 0x70, 0x80, 0xc0, 0x67, 0x76, 0xbd, 0xba, 0x67, 0xc5, 0x1b, 0xfb, 0x8f, 0x98, 0xa7, 0xb9, 0x7c, 0xbe, 0x00, 0x69, 0xd7, 0xab, 0xd7, 0x3b, 0xac, 0xa3, 0x89, 0x81, 0xff, 0xf1, 0x8f, 0xfc, 0x9b, 0x5c, 0x1f, 0x53, 0xbc, 0x10, 0xbd, 0x59, 0x07, 0x77, 0x9c, 0x3b, 0x0e, 0xdd, 0xa6, 0x83, 0xff, 0xd6, 0x80, 0x1b, 0x3d, 0x77, 0xdd, 0xf0, 0x22, 0x72, 0xb9, 0xe6, 0x34, 0x0f, 0x1c, 0xf7, 0xf2, 0x81, 0xe3, 0x1d, 0x5f, 0xf6, 0x8e, 0x11, 0x1e, 0x63, 0xfb, 0x6f, 0x49, 0xfc, 0x79, 0xf6, 0x74, 0x9b, 0x76, 0xe4, 0x79, 0x6c, 0xc5, 0xc2, 0x7a, 0x57, 0xc8, 0x96, 0xb8, 0x7e, 0x0e, 0x46, 0xc8, 0x95, 0x5c, 0x21, 0x8f, 0x9d, 0x94, 0x62, 0xf2, 0xfe, 0xbb, 0xf3, 0x43, 0x06, 0x1b, 0xf3, 0x67, 0x57, 0xc8, 0x9e, 0x65, 0x42, 0x9a, 0x5d, 0xf1, 0x67, 0xaf, 0xd2, 0x6d, 0x4b, 0x69, 0xf6, 0xaa, 0x3f, 0xbb, 0x4a, 0x36, 0x30, 0x55, 0x69, 0x76, 0xd5, 0x9f, 0xbd, 0x46, 0x36, 0xe9, 0xc7, 0xa5, 0xd9, 0x6b, 0xfe, 0xec, 0x75, 0xb2, 0x35, 0x9f, 0x94, 0x66, 0xaf, 0xfb, 0xb3, 0x37, 0xc8, 0xae, 0xfc, 0x94, 0x34, 0x7b, 0xc3, 0x9f, 0xbd, 0x49, 0x76, 0xe3, 0x75, 0x69, 0xf6, 0xa6, 0x3f, 0x7b, 0x8b, 0xbc, 0xea, 0x32, 0x2a, 0xcd, 0xde, 0xd2, 0xe7, 0x60, 0x94, 0x5e, 0xf9, 0x32, 0x79, 0x74, 0x3b, 0xc9, 0xa6, 0xf9, 0x60, 0x30, 0x7f, 0x85, 0xbc, 0xd6, 0x32, 0x22, 0xcf, 0x5f, 0x09, 0xe6, 0x57, 0xc8, 0x0b, 0xea, 0x9a, 0x3c, 0xbf, 0x12, 0xcc, 0x5f, 0xcd, 0x8e, 0x93, 0x57, 0x7b, 0xa4, 0xf9, 0xab, 0xc1, 0xfc, 0x6a, 0x76, 0x02, 0x07, 0xb3, 0x3c, 0xbf, 0x1a, 0xcc, 0x5f, 0xcb, 0x4e, 0x9e, 0x57, 0x16, 0x32, 0xf2, 0xfc, 0xb5, 0xdc, 0x2f, 0x12, 0xf7, 0xda, 0x81, 0x7b, 0x67, 0x64, 0xf7, 0xfa, 0x8e, 0x9d, 0x91, 0x1d, 0xeb, 0xbb, 0x74, 0x46, 0x76, 0xa9, 0xef, 0xcc, 0x19, 0xd9, 0x99, 0xbe, 0x1b, 0x67, 0x64, 0x37, 0xfa, 0x0e, 0x9c, 0x91, 0x1d, 0xe8, 0xbb, 0x6e, 0x46, 0x76, 0x9d, 0xef, 0xb4, 0x19, 0xd9, 0x69, 0xbe, 0xbb, 0x66, 0x64, 0x77, 0xf9, 0x8e, 0xca, 0x86, 0x1c, 0x15, 0xb8, 0x28, 0x1b, 0x72, 0x51, 0xe0, 0x9c, 0x6c, 0xc8, 0x39, 0x81, 0x5b, 0xb2, 0x21, 0xb7, 0x04, 0x0e, 0xc9, 0x86, 0x1c, 0x12, 0xb8, 0x22, 0x1b, 0x72, 0x45, 0xe0, 0x04, 0x96, 0x63, 0x06, 0x6a, 0x45, 0xe4, 0x98, 0xda, 0x37, 0xc7, 0xd4, 0xbe, 0x39, 0xa6, 0xf6, 0xcd, 0x31, 0xb5, 0x6f, 0x8e, 0xa9, 0x7d, 0x73, 0x4c, 0xed, 0x9b, 0x63, 0x6a, 0xdf, 0x1c, 0x53, 0xfb, 0xe6, 0x98, 0xda, 0x3f, 0xc7, 0xd4, 0x98, 0x1c, 0x53, 0x63, 0x72, 0x4c, 0x8d, 0xc9, 0x31, 0x35, 0x26, 0xc7, 0xd4, 0x98, 0x1c, 0x53, 0x7b, 0xe6, 0x58, 0xe0, 0xde, 0x19, 0xd9, 0xbd, 0x91, 0x39, 0xa6, 0xf6, 0xc8, 0x31, 0xb5, 0x47, 0x8e, 0xa9, 0x3d, 0x72, 0x4c, 0xed, 0x91, 0x63, 0x6a, 0x8f, 0x1c, 0x53, 0x7b, 0xe4, 0x98, 0xda, 0x23, 0xc7, 0xd4, 0x5e, 0x39, 0xa6, 0xf6, 0xcc, 0x31, 0xb5, 0x67, 0x8e, 0xa9, 0x3d, 0x73, 0x4c, 0xed, 0x99, 0x63, 0x6a, 0xcf, 0x1c, 0x53, 0xc5, 0x1c, 0xfb, 0xd7, 0x2a, 0xe8, 0x34, 0xc7, 0x76, 0xc8, 0xcb, 0x3f, 0xcc, 0x15, 0x73, 0xa1, 0x4c, 0x1b, 0xc1, 0xae, 0xd3, 0x02, 0x97, 0xcc, 0x85, 0x72, 0x4d, 0x9e, 0x5f, 0xf1, 0xe7, 0x79, 0xb6, 0xc9, 0xf3, 0x57, 0xfd, 0x79, 0x9e, 0x6f, 0xf2, 0xfc, 0xaa, 0x3f, 0xcf, 0x33, 0x4e, 0x9e, 0xbf, 0xe6, 0xcf, 0xf3, 0x9c, 0x93, 0xe7, 0xaf, 0xfb, 0xf3, 0x3c, 0xeb, 0xe4, 0xf9, 0x1b, 0xfe, 0x3c, 0xcf, 0x3b, 0x79, 0xfe, 0xa6, 0x3f, 0xcf, 0x33, 0x4f, 0x9e, 0xbf, 0xa5, 0x9f, 0x0f, 0xe7, 0x1e, 0x17, 0xf0, 0x5d, 0x7b, 0x3e, 0x9c, 0x7d, 0x21, 0x89, 0x2b, 0x81, 0x04, 0xcf, 0xbf, 0x90, 0xc4, 0x4a, 0x20, 0xc1, 0x33, 0x30, 0x24, 0x71, 0x35, 0xf7, 0x19, 0xe2, 0x3e, 0x3b, 0xec, 0xbe, 0xd9, 0x90, 0xfb, 0x12, 0x82, 0xeb, 0x66, 0x43, 0xae, 0x4b, 0x08, 0x6e, 0x9b, 0x0d, 0xb9, 0x2d, 0x21, 0xb8, 0x6c, 0x36, 0xe4, 0xb2, 0x84, 0xe0, 0xae, 0xd9, 0x90, 0xbb, 0x12, 0x82, 0xab, 0x66, 0x43, 0xae, 0x4a, 0x08, 0x6e, 0x9a, 0x0d, 0xb9, 0x29, 0x21, 0xb8, 0x68, 0x36, 0xe4, 0xa2, 0x84, 0xe0, 0x9e, 0xd9, 0x90, 0x7b, 0x12, 0x82, 0x6b, 0xce, 0x85, 0x5d, 0x93, 0x10, 0xdd, 0x72, 0x2e, 0xec, 0x96, 0x84, 0xe8, 0x92, 0x73, 0x61, 0x97, 0x24, 0x44, 0x77, 0x9c, 0x0b, 0xbb, 0x23, 0x21, 0xba, 0xe2, 0x4f, 0x13, 0xbc, 0x23, 0xdc, 0xf5, 0xda, 0x9d, 0x9a, 0xf7, 0xbe, 0x3a, 0xc2, 0x65, 0xa9, 0x7d, 0x48, 0xaf, 0xe8, 0x4b, 0xa4, 0x61, 0x15, 0x3b, 0xce, 0xd0, 0x0a, 0xb6, 0x2c, 0x35, 0x16, 0x02, 0xc2, 0x8e, 0x46, 0xac, 0xbe, 0xaf, 0xde, 0x70, 0x59, 0x6a, 0x33, 0xe2, 0xf5, 0xbb, 0xf9, 0xa1, 0x77, 0x6c, 0x6f, 0x27, 0x78, 0xc7, 0xc6, 0xcc, 0x7f, 0xda, 0x8e, 0x6d, 0x31, 0xde, 0xe4, 0xbe, 0xb1, 0x17, 0xe3, 0x8d, 0xdd, 0xb5, 0xea, 0x0c, 0xda, 0xc1, 0x2d, 0xc6, 0x9b, 0xd6, 0x37, 0xea, 0x07, 0xdb, 0x6f, 0xb1, 0x08, 0x36, 0x50, 0x2b, 0x22, 0x82, 0x4f, 0xdb, 0x6f, 0x2d, 0x4b, 0xa5, 0xe4, 0xb4, 0x11, 0xac, 0x9e, 0x3a, 0x82, 0x4f, 0xdb, 0x79, 0x2d, 0x4b, 0xe5, 0xe5, 0xd4, 0x11, 0xfc, 0x21, 0xf4, 0x43, 0x2c, 0x82, 0x03, 0xf3, 0x9f, 0xb6, 0x1f, 0x5a, 0x8c, 0x37, 0x79, 0x64, 0x04, 0xab, 0xa7, 0x88, 0xe0, 0x41, 0xfa, 0xa3, 0xc5, 0x78, 0xd3, 0x46, 0x47, 0xf0, 0xfb, 0xee, 0x66, 0xbe, 0xa4, 0xc0, 0x54, 0xc5, 0xaa, 0x97, 0x9b, 0x07, 0xa8, 0x5e, 0x47, 0x75, 0x66, 0xc7, 0x65, 0xa9, 0x12, 0xf4, 0x70, 0xf5, 0x3b, 0xef, 0xce, 0x07, 0x16, 0xbe, 0x06, 0x29, 0x6a, 0xd3, 0xe5, 0xe5, 0xec, 0x7d, 0x25, 0xa6, 0xc2, 0xf9, 0xa2, 0xfa, 0x05, 0x0e, 0xbb, 0xb2, 0x9c, 0xfd, 0x4f, 0x8a, 0x50, 0xe5, 0xfc, 0xe1, 0xdc, 0xaf, 0x10, 0x0d, 0xed, 0xf7, 0xad, 0xe1, 0xe5, 0x81, 0x34, 0x14, 0x74, 0x7b, 0xac, 0x4b, 0x37, 0x41, 0xab, 0x0e, 0x4c, 0x56, 0xac, 0x7a, 0x85, 0x7c, 0x35, 0x7a, 0x10, 0x95, 0xa8, 0x4c, 0xa8, 0x1e, 0x2c, 0x4b, 0x61, 0x29, 0x22, 0xfc, 0x90, 0x96, 0x6b, 0x44, 0xce, 0xc2, 0xa7, 0xb5, 0xa5, 0xd3, 0x2e, 0xf6, 0x3a, 0x6d, 0x50, 0xd9, 0xfd, 0x13, 0x2e, 0xf6, 0x3a, 0x61, 0x90, 0x43, 0xfe, 0xa9, 0x5e, 0xe7, 0x8b, 0x33, 0x7d, 0x0b, 0x47, 0x3f, 0x07, 0x89, 0x0d, 0xfa, 0x86, 0x70, 0xa6, 0x98, 0xc1, 0x4a, 0x7d, 0xeb, 0xdd, 0xf9, 0xe4, 0x7e, 0xc7, 0xaa, 0x1b, 0x89, 0x8d, 0xba, 0x7e, 0x17, 0x86, 0x3f, 0xc9, 0xbe, 0xa0, 0x87, 0x05, 0x56, 0x99, 0xc0, 0x47, 0x63, 0xb6, 0x98, 0x08, 0xf5, 0xd2, 0xbe, 0x65, 0x7b, 0x57, 0x56, 0x6e, 0x1a, 0x94, 0x22, 0xf7, 0xe7, 0x00, 0xe8, 0x39, 0xd7, 0x4c, 0xf7, 0x58, 0xaf, 0x70, 0x66, 0x7a, 0xea, 0x9b, 0xdf, 0x7a, 0x77, 0x7e, 0x75, 0x10, 0xd6, 0x67, 0xea, 0xa6, 0x7b, 0xfc, 0x8c, 0x77, 0xd2, 0x42, 0x4b, 0xc5, 0x13, 0x0f, 0xb9, 0x9c, 0xbd, 0xc5, 0x57, 0x3d, 0x76, 0x5d, 0x59, 0xe1, 0xba, 0x52, 0xd2, 0x35, 0xad, 0xcb, 0xd7, 0xb4, 0xfc, 0xb0, 0xd7, 0xf3, 0x3a, 0x5f, 0x24, 0x42, 0x96, 0x54, 0xe3, 0x2c, 0xa9, 0xbe, 0x5f, 0x4b, 0xb6, 0x78, 0x7d, 0x0c, 0x5d, 0xab, 0xda, 0xef, 0x5a, 0xd5, 0xf7, 0x73, 0xad, 0xff, 0x9f, 0x66, 0xab, 0x9f, 0x4f, 0xfb, 0x36, 0x7d, 0x3b, 0xf1, 0xa7, 0x6b, 0x2f, 0xe8, 0x03, 0xed, 0x02, 0xf2, 0xc9, 0xfb, 0x6f, 0xcd, 0x2b, 0xb9, 0x2f, 0x25, 0xf8, 0x95, 0xd3, 0x44, 0x7a, 0xb8, 0x2b, 0xff, 0x69, 0xe9, 0xa9, 0x3e, 0x0c, 0x0b, 0x7d, 0x51, 0x81, 0x99, 0xae, 0x4a, 0x4e, 0xcd, 0xf4, 0xc1, 0x96, 0x73, 0xfb, 0xb4, 0xe5, 0x9c, 0x29, 0xf8, 0xbb, 0x0a, 0x9c, 0x09, 0x95, 0x57, 0xaa, 0xde, 0xe5, 0x90, 0x7a, 0x8f, 0x74, 0x9f, 0x89, 0x08, 0x0a, 0xda, 0x89, 0xee, 0x0d, 0x01, 0x04, 0x66, 0xdf, 0xef, 0xab, 0x21, 0xbf, 0x9f, 0xf3, 0x01, 0x11, 0xe6, 0xe2, 0x11, 0xc0, 0xd4, 0x76, 0x20, 0xb9, 0xd7, 0x46, 0x48, 0x9f, 0x83, 0xc4, 0x76, 0x9b, 0x69, 0x38, 0x41, 0xf1, 0xdb, 0xed, 0x62, 0xdb, 0xb4, 0x6b, 0xc7, 0x46, 0x62, 0xbb, 0xad, 0x5f, 0x00, 0xb5, 0xc0, 0x7e, 0x80, 0x21, 0xbd, 0x32, 0x49, 0x05, 0x0a, 0x76, 0x9d, 0x49, 0xe0, 0x39, 0x7d, 0x0e, 0x92, 0x9b, 0xc8, 0x3c, 0x64, 0x4a, 0x00, 0x95, 0xc1, 0x23, 0x06, 0x19, 0x67, 0x27, 0x7c, 0x09, 0x52, 0x9c, 0x58, 0xbf, 0x88, 0x11, 0x87, 0x1e, 0x3b, 0x2d, 0x43, 0x60, 0x75, 0xd8, 0xca, 0x45, 0x66, 0xf5, 0x4b, 0x30, 0x6c, 0x58, 0x47, 0xc7, 0x1e, 0x3b, 0x79, 0xb7, 0x18, 0x9d, 0xce, 0xdd, 0x83, 0x31, 0x5f, 0xa3, 0x0f, 0x98, 0x7a, 0x8d, 0x5e, 0x9a, 0x3e, 0x2b, 0xae, 0x27, 0x7c, 0xdf, 0x92, 0x0e, 0xe9, 0xe7, 0x21, 0xb5, 0xeb, 0xb5, 0x83, 0xa2, 0xcf, 0x3b, 0x52, 0x7f, 0x34, 0xf7, 0x8b, 0x0a, 0xa4, 0xd6, 0x10, 0x6a, 0x11, 0x83, 0x3f, 0x09, 0xc9, 0x35, 0xe7, 0x35, 0x9b, 0x29, 0x38, 0xc5, 0x2c, 0x8a, 0xa7, 0x99, 0x4d, 0xc9, 0xb4, 0xfe, 0xa4, 0x68, 0xf7, 0x69, 0xdf, 0xee, 0x82, 0x1c, 0xb1, 0x7d, 0x4e, 0xb2, 0x3d, 0x73, 0x20, 0x16, 0xea, 0xb2, 0xff, 0x0d, 0x48, 0x0b, 0x67, 0xd1, 0x17, 0x98, 0x1a, 0x89, 0x30, 0x50, 0xb4, 0x15, 0x96, 0xc8, 0x21, 0x18, 0x97, 0x4e, 0x8c, 0xa1, 0x82, 0x89, 0x7b, 0x40, 0x89, 0x99, 0x17, 0x65, 0x33, 0x47, 0x8b, 0x32, 0x53, 0x2f, 0x53, 0x1b, 0x11, 0x73, 0x5f, 0xa4, 0xc1, 0xd9, 0xdb, 0x89, 0xf8, 0x73, 0x6e, 0x18, 0xd4, 0x8a, 0xd5, 0xc8, 0x3d, 0x0b, 0x40, 0x53, 0xbe, 0x6c, 0x77, 0x9a, 0xa1, 0xac, 0x9b, 0xe0, 0x06, 0xde, 0x3b, 0x46, 0x7b, 0xc8, 0x25, 0x22, 0x72, 0x3f, 0x85, 0x0b, 0x0c, 0xd0, 0x14, 0x23, 0xf8, 0xa7, 0x63, 0xf1, 0x91, 0x9d, 0x18, 0x16, 0xcd, 0x52, 0xd1, 0x7b, 0xc8, 0x2b, 0xd8, 0x8e, 0x77, 0x8c, 0xda, 0x21, 0xc4, 0x8a, 0x7e, 0x55, 0x4a, 0xd8, 0x89, 0x95, 0xc7, 0x7c, 0x44, 0x4f, 0xd0, 0xd5, 0xdc, 0xd7, 0x88, 0x82, 0xb8, 0x15, 0xe8, 0xba, 0x40, 0x75, 0x80, 0x0b, 0xd4, 0xaf, 0x4b, 0xfd, 0x5b, 0x1f, 0x35, 0x43, 0xb7, 0x96, 0xb7, 0xa4, 0xfb, 0x9c, 0xfe, 0xca, 0xca, 0xf7, 0x98, 0xdc, 0xa6, 0x5c, 0xe5, 0xa7, 0x63, 0x55, 0xee, 0xd1, 0xdd, 0x9e, 0xd6, 0xa6, 0xea, 0xa0, 0x36, 0xfd, 0x7d, 0xbf, 0xe3, 0xa0, 0x3f, 0x26, 0x41, 0x7e, 0xbb, 0x44, 0xff, 0x68, 0xac, 0xef, 0xf3, 0x4a, 0xc9, 0x57, 0x75, 0x75, 0x50, 0xf7, 0xe7, 0x13, 0xc5, 0xa2, 0xaf, 0xee, 0x8d, 0x53, 0x84, 0x40, 0x3e, 0x51, 0x2a, 0xf9, 0x65, 0x3b, 0xf5, 0x99, 0xb7, 0xe6, 0x95, 0xaf, 0xbe, 0x35, 0x3f, 0x94, 0xfb, 0x0d, 0x05, 0xa6, 0x98, 0xa4, 0x10, 0xb8, 0xcf, 0x84, 0x94, 0x3f, 0xcb, 0x6b, 0x46, 0x94, 0x05, 0x7e, 0x6c, 0xc1, 0xfb, 0x4d, 0x05, 0xb2, 0x5d, 0xba, 0x72, 0x7b, 0x2f, 0x0f, 0xa4, 0x72, 0x5e, 0x29, 0xff, 0xe4, 0x6d, 0x7e, 0x0f, 0x86, 0xf7, 0xac, 0x26, 0x6a, 0xe3, 0x95, 0x00, 0x7f, 0xa0, 0x2a, 0xf3, 0x87, 0x39, 0x74, 0x88, 0xcf, 0x51, 0xe5, 0xa4, 0xb9, 0x15, 0x3d, 0x0b, 0xc9, 0x35, 0xd3, 0x33, 0x89, 0x06, 0x19, 0xbf, 0xbe, 0x9a, 0x9e, 0x99, 0xbb, 0x0a, 0x99, 0xad, 0x13, 0xf2, 0x0a, 0x4d, 0x9d, 0xbc, 0x1e, 0x22, 0x77, 0x7f, 0xbc, 0x5f, 0xbd, 0xb2, 0x38, 0x9c, 0xaa, 0x6b, 0xf7, 0x95, 0x7c, 0x92, 0xe8, 0xf3, 0x2a, 0x4c, 0x6c, 0x63, 0xb5, 0x09, 0x8e, 0xc0, 0xce, 0x83, 0xb2, 0x25, 0x37, 0x42, 0x22, 0xab, 0xa1, 0x6c, 0x85, 0xda, 0x47, 0xd5, 0x37, 0x4f, 0xa8, 0x6d, 0x53, 0xfd, 0xb6, 0x6d, 0x31, 0x99, 0x9a, 0xd0, 0xa6, 0x16, 0x93, 0x29, 0xd0, 0xc6, 0xd9, 0x79, 0xff, 0x83, 0x0a, 0x1a, 0x6d, 0x75, 0xd6, 0xd0, 0xa1, 0x65, 0x5b, 0x5e, 0x77, 0xbf, 0xea, 0x6b, 0xac, 0x3f, 0x0f, 0x63, 0xd8, 0xa4, 0xeb, 0xec, 0x27, 0xcc, 0xb0, 0xe9, 0x2f, 0xb0, 0x16, 0x25, 0x44, 0xc1, 0x06, 0x48, 0xe8, 0x04, 0x18, 0x7d, 0x1d, 0xd4, 0x4a, 0x65, 0x8b, 0x2d, 0x6e, 0xab, 0x7d, 0xa1, 0xec, 0x0d, 0x1c, 0x76, 0xc4, 0xc6, 0xdc, 0x23, 0x03, 0x13, 0xe8, 0xab, 0x90, 0xa8, 0x6c, 0xb1, 0x86, 0xf7, 0xe2, 0x20, 0x34, 0x46, 0xa2, 0xb2, 0x35, 0xfb, 0x6f, 0x14, 0x18, 0x97, 0x46, 0xf5, 0x1c, 0x64, 0xe8, 0x80, 0x70, 0xb9, 0x23, 0x86, 0x34, 0xc6, 0x75, 0x4e, 0xbc, 0x4f, 0x9d, 0x67, 0x0b, 0x30, 0x19, 0x1a, 0xd7, 0x97, 0x40, 0x17, 0x87, 0x98, 0x12, 0xf4, 0xe7, 0x93, 0x22, 0x66, 0x72, 0x8f, 0x03, 0x04, 0x76, 0xf5, 0x7f, 0xf5, 0xa7, 0x52, 0xde, 0xdd, 0x2b, 0xaf, 0x69, 0x4a, 0xee, 0x1b, 0x0a, 0xa4, 0x59, 0xdb, 0x5a, 0x73, 0x5a, 0x48, 0x2f, 0x82, 0x52, 0x60, 0x11, 0xf4, 0x70, 0x7a, 0x2b, 0x05, 0xfd, 0x32, 0x28, 0xc5, 0xc1, 0x5d, 0xad, 0x14, 0xf5, 0x15, 0x50, 0x4a, 0xcc, 0xc1, 0x83, 0x79, 0x46, 0x29, 0xe5, 0xfe, 0x48, 0x85, 0x69, 0xb1, 0x8d, 0xe6, 0xf5, 0xe4, 0x82, 0x7c, 0xdf, 0x94, 0x1f, 0xbb, 0xb2, 0x72, 0x75, 0x75, 0x09, 0xff, 0xe3, 0x87, 0x64, 0x4e, 0xbe, 0x85, 0xca, 0x83, 0x2f, 0x72, 0xa5, 0xd7, 0x7b, 0x22, 0xf9, 0xa4, 0xc0, 0xd0, 0xf5, 0x9e, 0x88, 0x34, 0xdb, 0xf5, 0x9e, 0x88, 0x34, 0xdb, 0xf5, 0x9e, 0x88, 0x34, 0xdb, 0xf5, 0x2c, 0x40, 0x9a, 0xed, 0x7a, 0x4f, 0x44, 0x9a, 0xed, 0x7a, 0x4f, 0x44, 0x9a, 0xed, 0x7e, 0x4f, 0x84, 0x4d, 0xf7, 0x7c, 0x4f, 0x44, 0x9e, 0xef, 0x7e, 0x4f, 0x44, 0x9e, 0xef, 0x7e, 0x4f, 0x24, 0x9f, 0xf4, 0xda, 0x1d, 0xd4, 0xfb, 0xa9, 0x83, 0x8c, 0xef, 0x77, 0x13, 0x18, 0x54, 0xe0, 0x6d, 0x98, 0xa4, 0x1b, 0x12, 0x25, 0xc7, 0xf6, 0x4c, 0xcb, 0x46, 0x6d, 0xfd, 0x63, 0x90, 0xa1, 0x43, 0xf4, 0x36, 0x27, 0xea, 0x36, 0x90, 0xce, 0xb3, 0x7a, 0x2b, 0x49, 0xe7, 0xfe, 0x34, 0x09, 0x33, 0x74, 0xa0, 0x62, 0x36, 0x91, 0xf4, 0x96, 0xd1, 0xa5, 0xd0, 0x33, 0xa5, 0x09, 0x0c, 0x7f, 0xf0, 0xee, 0x3c, 0x1d, 0x2d, 0xf8, 0xd1, 0x74, 0x29, 0xf4, 0x74, 0x49, 0x96, 0x0b, 0x16, 0xa0, 0x4b, 0xa1, 0x37, 0x8f, 0x64, 0x39, 0x7f, 0xbd, 0xf1, 0xe5, 0xf8, 0x3b, 0x48, 0xb2, 0xdc, 0x9a, 0x1f, 0x65, 0x97, 0x42, 0x6f, 0x23, 0xc9, 0x72, 0x65, 0x3f, 0xde, 0x2e, 0x85, 0x9e, 0x3d, 0xc9, 0x72, 0xeb, 0x7e, 0xe4, 0x5d, 0x0a, 0x3d, 0x85, 0x92, 0xe5, 0xee, 0xf8, 0x31, 0x78, 0x29, 0xf4, 0xae, 0x92, 0x2c, 0xf7, 0x82, 0x1f, 0x8d, 0x97, 0x42, 0x6f, 0x2d, 0xc9, 0x72, 0x1b, 0x7e, 0x5c, 0x2e, 0x84, 0xdf, 0x5f, 0x92, 0x05, 0xef, 0x06, 0x11, 0xba, 0x10, 0x7e, 0x93, 0x49, 0x96, 0xfc, 0x78, 0x10, 0xab, 0x0b, 0xe1, 0x77, 0x9a, 0x64, 0xc9, 0xcd, 0x20, 0x6a, 0x17, 0xc2, 0xcf, 0xca, 0x64, 0xc9, 0xad, 0x20, 0x7e, 0x17, 0xc2, 0x4f, 0xcd, 0x64, 0xc9, 0x4a, 0x10, 0xc9, 0x0b, 0xe1, 0xe7, 0x67, 0xb2, 0xe4, 0x76, 0xb0, 0x89, 0xfe, 0x07, 0xa1, 0xf0, 0x13, 0xde, 0x82, 0xca, 0x85, 0xc2, 0x0f, 0x22, 0x42, 0x2f, 0x54, 0xc8, 0x04, 0x99, 0x20, 0xec, 0x72, 0xa1, 0xb0, 0x83, 0x88, 0x90, 0xcb, 0x85, 0x42, 0x0e, 0x22, 0xc2, 0x2d, 0x17, 0x0a, 0x37, 0x88, 0x08, 0xb5, 0x5c, 0x28, 0xd4, 0x20, 0x22, 0xcc, 0x72, 0xa1, 0x30, 0x83, 0x88, 0x10, 0xcb, 0x85, 0x42, 0x0c, 0x22, 0xc2, 0x2b, 0x17, 0x0a, 0x2f, 0x88, 0x08, 0xad, 0x8b, 0xe1, 0xd0, 0x82, 0xa8, 0xb0, 0xba, 0x18, 0x0e, 0x2b, 0x88, 0x0a, 0xa9, 0x27, 0xc2, 0x21, 0x35, 0xf6, 0xe0, 0xdd, 0xf9, 0x61, 0x3c, 0x24, 0x44, 0xd3, 0xc5, 0x70, 0x34, 0x41, 0x54, 0x24, 0x5d, 0x0c, 0x47, 0x12, 0x44, 0x45, 0xd1, 0xc5, 0x70, 0x14, 0x41, 0x54, 0x04, 0xbd, 0x1d, 0x8e, 0xa0, 0xe0, 0x1d, 0x9f, 0x5c, 0xe8, 0x91, 0x62, 0x5c, 0x04, 0xa9, 0x03, 0x44, 0x90, 0x3a, 0x40, 0x04, 0xa9, 0x03, 0x44, 0x90, 0x3a, 0x40, 0x04, 0xa9, 0x03, 0x44, 0x90, 0x3a, 0x40, 0x04, 0xa9, 0x03, 0x44, 0x90, 0x3a, 0x48, 0x04, 0xa9, 0x03, 0x45, 0x90, 0xda, 0x2b, 0x82, 0x2e, 0x86, 0xdf, 0x78, 0x80, 0xa8, 0x82, 0x74, 0x31, 0xfc, 0xe8, 0x33, 0x3e, 0x84, 0xd4, 0x81, 0x42, 0x48, 0xed, 0x15, 0x42, 0x7f, 0xa0, 0xc2, 0xb4, 0x14, 0x42, 0xec, 0xf9, 0xd0, 0x07, 0x55, 0x81, 0xae, 0x0f, 0xf0, 0x82, 0x45, 0x54, 0x4c, 0x5d, 0x1f, 0xe0, 0x21, 0x75, 0xbf, 0x38, 0xeb, 0xae, 0x42, 0xe5, 0x01, 0xaa, 0xd0, 0xba, 0x1f, 0x43, 0xd7, 0x07, 0x78, 0xf1, 0xa2, 0x3b, 0xf6, 0x6e, 0xf6, 0x2b, 0x02, 0x2f, 0x0c, 0x54, 0x04, 0x36, 0x06, 0x2a, 0x02, 0x77, 0x03, 0x0f, 0xfe, 0x52, 0x02, 0xce, 0x04, 0x1e, 0xa4, 0x9f, 0xc8, 0x6f, 0x24, 0xe5, 0x84, 0x47, 0x54, 0x3a, 0x7f, 0x6c, 0x23, 0xb8, 0x31, 0xb1, 0x51, 0xd7, 0x77, 0xe4, 0x87, 0x55, 0xf9, 0xd3, 0x3e, 0xc0, 0x11, 0x3c, 0xce, 0x36, 0x43, 0x2f, 0x82, 0xba, 0x51, 0x77, 0x49, 0xb5, 0x88, 0x3a, 0x6d, 0xc9, 0xc0, 0xd3, 0xba, 0x01, 0x23, 0x44, 0xdc, 0x25, 0xee, 0x7d, 0x3f, 0x27, 0x5e, 0x33, 0x18, 0x53, 0xee, 0x6d, 0x05, 0xce, 0x4b, 0xa1, 0xfc, 0xc1, 0x3c, 0x32, 0xb8, 0x3d, 0xd0, 0x23, 0x03, 0x29, 0x41, 0x82, 0xc7, 0x07, 0x4f, 0x75, 0x3f, 0xa9, 0x16, 0xb3, 0x24, 0xfc, 0x28, 0xe1, 0x2f, 0xc2, 0x44, 0x70, 0x05, 0xe4, 0x9e, 0xed, 0x5a, 0xfc, 0x6e, 0x66, 0x54, 0x6a, 0x5e, 0x0b, 0xed, 0xa2, 0xf5, 0x85, 0xf9, 0xd9, 0x9a, 0xcb, 0xc3, 0x64, 0x45, 0xfe, 0x32, 0x4f, 0xdc, 0x66, 0x44, 0x0a, 0xb7, 0xe6, 0xf7, 0xbf, 0x3c, 0x3f, 0x94, 0xfb, 0x28, 0x64, 0xc4, 0xef, 0xeb, 0x84, 0x80, 0x63, 0x1c, 0x98, 0x4f, 0xbe, 0x83, 0xa5, 0xff, 0xbe, 0x02, 0x67, 0x45, 0xf1, 0x17, 0x2d, 0xef, 0x78, 0xc3, 0xc6, 0x3d, 0xfd, 0xb3, 0x90, 0x42, 0xcc, 0x71, 0xec, 0xe7, 0x4e, 0xd8, 0x7d, 0x64, 0xa4, 0xf8, 0x12, 0xf9, 0xd7, 0xf0, 0x21, 0xa1, 0x3d, 0x0e, 0x7e, 0xda, 0x95, 0xd9, 0x27, 0x61, 0x98, 0xf2, 0xcb, 0x7a, 0x8d, 0x87, 0xf4, 0xfa, 0xf5, 0x08, 0xbd, 0x48, 0x1c, 0xe9, 0x77, 0x25, 0xbd, 0x84, 0xdb, 0xd5, 0x48, 0xf1, 0x25, 0x1e, 0x7c, 0xc5, 0x14, 0xee, 0xff, 0x48, 0x44, 0xc5, 0x2b, 0xb9, 0x00, 0xa9, 0x72, 0x58, 0x26, 0x5a, 0xcf, 0x35, 0x48, 0x56, 0x9c, 0x3a, 0xf9, 0x21, 0x16, 0xf2, 0xc3, 0xbd, 0xcc, 0xc8, 0xec, 0x57, 0x7c, 0x2f, 0x41, 0xaa, 0x74, 0x6c, 0x35, 0xea, 0x6d, 0x64, 0xb3, 0x67, 0xf6, 0x6c, 0x0b, 0x1d, 0x63, 0x0c, 0x7f, 0x2e, 0x57, 0x82, 0xa9, 0x8a, 0x63, 0x17, 0x4f, 0x3c, 0xb1, 0x6e, 0x2c, 0x85, 0x52, 0x84, 0x3d, 0xf3, 0x21, 0xdf, 0x00, 0xc1, 0x02, 0xc5, 0xe1, 0x6f, 0xbd, 0x3b, 0xaf, 0xec, 0xf9, 0xfb, 0xe7, 0x5b, 0xf0, 0x08, 0x4b, 0x9f, 0x2e, 0xaa, 0x95, 0x38, 0xaa, 0x31, 0xf6, 0x9c, 0x5a, 0xa0, 0xdb, 0xc0, 0x74, 0x76, 0x24, 0xdd, 0xc3, 0x69, 0x86, 0x9b, 0xa2, 0xbe, 0x9a, 0xa9, 0xa7, 0xd2, 0x2c, 0x92, 0x6e, 0x29, 0x8e, 0x2e, 0xa4, 0xd9, 0x13, 0x30, 0xe6, 0xcf, 0x09, 0xd1, 0x20, 0x66, 0xca, 0xca, 0x62, 0x0e, 0xd2, 0x42, 0xc2, 0xea, 0xc3, 0xa0, 0x14, 0xb4, 0x21, 0xfc, 0x5f, 0x51, 0x53, 0xf0, 0x7f, 0x25, 0x2d, 0xb1, 0xf8, 0x24, 0x4c, 0x86, 0xf6, 0x2f, 0xf1, 0xcc, 0x9a, 0x06, 0xf8, 0xbf, 0xb2, 0x96, 0x9e, 0x4d, 0x7e, 0xe6, 0x1f, 0xcd, 0x0d, 0x2d, 0xde, 0x06, 0xbd, 0x7b, 0xa7, 0x53, 0x1f, 0x81, 0x44, 0x01, 0x53, 0x3e, 0x02, 0x89, 0x62, 0x51, 0x53, 0x66, 0x27, 0xff, 0xda, 0x17, 0xce, 0xa7, 0x8b, 0xe4, 0xcb, 0xc8, 0xf7, 0x90, 0x57, 0x2c, 0x32, 0xf0, 0x73, 0x70, 0x36, 0x72, 0xa7, 0x14, 0xe3, 0x4b, 0x25, 0x8a, 0x5f, 0x5b, 0xeb, 0xc2, 0xaf, 0xad, 0x11, 0xbc, 0x92, 0xe7, 0x4f, 0x9c, 0x0b, 0x7a, 0xc4, 0xbe, 0x64, 0xb6, 0x2e, 0x3c, 0xe1, 0x2e, 0xe4, 0x9f, 0x63, 0xb2, 0xc5, 0x48, 0x59, 0x14, 0xf3, 0xc4, 0xba, 0x98, 0x2f, 0x31, 0x7c, 0x29, 0x12, 0x7f, 0x18, 0x7a, 0xac, 0x2a, 0xaf, 0x10, 0x8c, 0xa4, 0xe4, 0x2b, 0xbc, 0x16, 0x49, 0x72, 0x2c, 0xbc, 0xec, 0xbe, 0xe6, 0x2b, 0x5c, 0x8e, 0x94, 0xb5, 0x62, 0x5e, 0xfa, 0x2a, 0xe7, 0x2f, 0xb3, 0x45, 0xbe, 0x70, 0x45, 0x3f, 0xcb, 0x73, 0x54, 0xaa, 0xc0, 0xcc, 0x40, 0x5c, 0x2a, 0x5f, 0x62, 0x80, 0x62, 0x4f, 0x40, 0x6f, 0x2b, 0x71, 0x64, 0xfe, 0x05, 0x46, 0x52, 0xea, 0x49, 0x12, 0x63, 0x2a, 0x0e, 0x2f, 0xee, 0xdd, 0x7f, 0x6f, 0x6e, 0xe8, 0x9d, 0xf7, 0xe6, 0x86, 0xfe, 0xcb, 0x7b, 0x73, 0x43, 0xdf, 0x7e, 0x6f, 0x4e, 0xf9, 0xde, 0x7b, 0x73, 0xca, 0x0f, 0xde, 0x9b, 0x53, 0xfe, 0xe4, 0xbd, 0x39, 0xe5, 0xcd, 0x07, 0x73, 0xca, 0x57, 0x1f, 0xcc, 0x29, 0x5f, 0x7b, 0x30, 0xa7, 0xfc, 0xde, 0x83, 0x39, 0xe5, 0xed, 0x07, 0x73, 0xca, 0xfd, 0x07, 0x73, 0xca, 0x3b, 0x0f, 0xe6, 0x94, 0x6f, 0x3f, 0x98, 0x53, 0xbe, 0xf7, 0x60, 0x6e, 0xe8, 0x07, 0x0f, 0xe6, 0x94, 0x3f, 0x79, 0x30, 0x37, 0xf4, 0xe6, 0x77, 0xe6, 0x86, 0xde, 0xfa, 0xce, 0xdc, 0xd0, 0x57, 0xbf, 0x33, 0xa7, 0xc0, 0x77, 0x56, 0x61, 0x8e, 0x7d, 0x93, 0xcc, 0x46, 0x16, 0x0e, 0xba, 0xcb, 0xde, 0x31, 0x22, 0x0d, 0xc1, 0x55, 0xfe, 0x73, 0x4e, 0xfe, 0xc0, 0x29, 0xbf, 0x53, 0x36, 0xfb, 0xb0, 0xdf, 0x60, 0xcb, 0xfd, 0xdb, 0x61, 0x18, 0xe5, 0x3b, 0xc1, 0x51, 0x3f, 0x4c, 0x7d, 0x0d, 0x52, 0xc7, 0x56, 0xc3, 0x6c, 0x5b, 0xde, 0x09, 0xdb, 0x02, 0x7d, 0x74, 0x29, 0x50, 0x9b, 0x6f, 0x9a, 0xbe, 0xd0, 0x69, 0x3a, 0x9d, 0xb6, 0xe1, 0x8b, 0xea, 0xe7, 0x21, 0x73, 0x8c, 0xac, 0xa3, 0x63, 0xaf, 0x6a, 0xd9, 0xd5, 0x5a, 0x93, 0x74, 0xca, 0xe3, 0x06, 0xd0, 0xb1, 0x0d, 0xbb, 0xd4, 0xc4, 0x27, 0xab, 0x9b, 0x9e, 0x49, 0xee, 0xd0, 0x33, 0x06, 0xf9, 0xac, 0x5f, 0x80, 0x4c, 0x1b, 0xb9, 0x9d, 0x86, 0x57, 0xad, 0x39, 0x1d, 0xdb, 0x23, 0xbd, 0xac, 0x6a, 0xa4, 0xe9, 0x58, 0x09, 0x0f, 0xe9, 0x4f, 0xc0, 0xb8, 0xd7, 0xee, 0xa0, 0xaa, 0x5b, 0x73, 0x3c, 0xb7, 0x69, 0xda, 0xa4, 0x97, 0x4d, 0x19, 0x19, 0x3c, 0xb8, 0xcb, 0xc6, 0xc8, 0x9f, 0x5d, 0xa8, 0x39, 0x6d, 0x44, 0x6e, 0xa5, 0x13, 0x06, 0x3d, 0xd0, 0x35, 0x50, 0x5f, 0x41, 0x27, 0xe4, 0x66, 0x2d, 0x69, 0xe0, 0x8f, 0xfa, 0xd3, 0x30, 0x42, 0xff, 0xa6, 0x07, 0xe9, 0xac, 0xc9, 0x83, 0x6b, 0xff, 0xd2, 0xe8, 0x06, 0xad, 0xc1, 0x04, 0xf4, 0x5b, 0x30, 0xea, 0xa1, 0x76, 0xdb, 0xb4, 0x6c, 0x72, 0xe3, 0x94, 0x5e, 0x99, 0x8f, 0x30, 0xc3, 0x1e, 0x95, 0x20, 0xbf, 0xed, 0x6a, 0x70, 0x79, 0xfd, 0x1a, 0x64, 0x88, 0xdc, 0x4a, 0x95, 0xfe, 0xdd, 0x93, 0x74, 0xcf, 0x58, 0x4e, 0x53, 0x39, 0xfe, 0x9c, 0x80, 0xc3, 0xe8, 0xef, 0xda, 0x8d, 0x93, 0xd3, 0x3e, 0x11, 0x71, 0x5a, 0x52, 0x76, 0x57, 0x48, 0xcb, 0x48, 0x4f, 0xcd, 0x78, 0xe8, 0x2f, 0xdf, 0x6d, 0x41, 0x46, 0xd4, 0x8b, 0x9b, 0x81, 0xb6, 0x3e, 0xc4, 0x0c, 0x4f, 0x05, 0xbf, 0x29, 0xdf, 0xc3, 0x0a, 0x74, 0x3e, 0x9f, 0xb8, 0xa9, 0xcc, 0xee, 0x80, 0x16, 0x3e, 0x5f, 0x04, 0xe5, 0x25, 0x99, 0x52, 0x13, 0x2f, 0x96, 0xec, 0x92, 0x07, 0x8c, 0xb9, 0xe7, 0x61, 0x84, 0xc6, 0x8f, 0x9e, 0x86, 0xd1, 0xe0, 0x27, 0x13, 0x53, 0x90, 0xdc, 0xd9, 0xaf, 0xec, 0xd2, 0xdf, 0x3e, 0xdd, 0xdd, 0x2c, 0xec, 0xec, 0xee, 0x6d, 0x94, 0x3e, 0xae, 0x25, 0xf4, 0x49, 0x48, 0x17, 0x37, 0x36, 0x37, 0xab, 0xc5, 0xc2, 0xc6, 0x66, 0xf9, 0x9e, 0xa6, 0xe6, 0xe6, 0x60, 0x84, 0xea, 0x49, 0x7e, 0xc3, 0xad, 0x63, 0xdb, 0x27, 0xbc, 0x75, 0x20, 0x07, 0xb9, 0xaf, 0xeb, 0x30, 0x5a, 0x68, 0x34, 0xb6, 0xcc, 0x96, 0xab, 0xbf, 0x08, 0x53, 0xf4, 0xd7, 0x24, 0xf6, 0x9c, 0x35, 0xf2, 0x53, 0x83, 0xb8, 0x30, 0x28, 0xec, 0xb7, 0xf4, 0x83, 0xeb, 0x66, 0xe2, 0x4b, 0x5d, 0xb2, 0xd4, 0xc0, 0xdd, 0x1c, 0xfa, 0x1e, 0x68, 0x7c, 0x70, 0xbd, 0xe1, 0x98, 0x1e, 0xe6, 0x4d, 0xb0, 0x5f, 0x02, 0xec, 0xcd, 0xcb, 0x45, 0x29, 0x6d, 0x17, 0x83, 0xfe, 0x31, 0x48, 0x6d, 0xd8, 0xde, 0xd5, 0x15, 0xcc, 0xc6, 0xff, 0x4e, 0x4d, 0x37, 0x1b, 0x17, 0xa1, 0x2c, 0x3e, 0x82, 0xa1, 0xaf, 0xaf, 0x62, 0x74, 0xb2, 0x1f, 0x9a, 0x88, 0x04, 0x68, 0x72, 0xa8, 0x3f, 0x0f, 0x63, 0xf8, 0xce, 0x84, 0x9e, 0x7c, 0x98, 0xb7, 0xad, 0x5d, 0x70, 0x5f, 0x86, 0xe2, 0x03, 0x0c, 0x27, 0xa0, 0xe7, 0x1f, 0xe9, 0x4b, 0x20, 0x28, 0x10, 0x60, 0x30, 0xc1, 0xae, 0xaf, 0xc1, 0x68, 0x4f, 0x82, 0xdd, 0x90, 0x06, 0xbb, 0xa2, 0x06, 0xbb, 0xbe, 0x06, 0xa9, 0xbe, 0x04, 0xa2, 0x06, 0xfe, 0xb1, 0x5e, 0x04, 0x58, 0xb7, 0x5e, 0x47, 0x75, 0xaa, 0x02, 0xfd, 0x2b, 0x36, 0xb9, 0x08, 0x86, 0x40, 0x88, 0x52, 0x08, 0x28, 0xbd, 0x0c, 0xe9, 0xdd, 0xc3, 0x80, 0x04, 0xba, 0xf2, 0xd8, 0x57, 0xe3, 0x30, 0xc4, 0x22, 0xe2, 0x7c, 0x55, 0xe8, 0xc5, 0xa4, 0xfb, 0xab, 0x22, 0x5c, 0x8d, 0x80, 0x0a, 0x54, 0xa1, 0x24, 0x99, 0x18, 0x55, 0x04, 0x16, 0x11, 0x87, 0x8b, 0x61, 0xd1, 0x71, 0xb0, 0x24, 0xab, 0x4a, 0xf3, 0x11, 0x14, 0x4c, 0x82, 0x15, 0x43, 0x76, 0x44, 0x3c, 0x42, 0x82, 0x1c, 0x83, 0x27, 0x7a, 0x7b, 0x84, 0xcb, 0x70, 0x8f, 0xf0, 0x63, 0x31, 0xcf, 0xc8, 0xdb, 0xac, 0x98, 0x67, 0x32, 0x36, 0xcf, 0xb8, 0x68, 0x28, 0xcf, 0xf8, 0xb0, 0xfe, 0x09, 0x98, 0xe4, 0x63, 0xb8, 0x3c, 0x61, 0x52, 0x8d, 0xfd, 0x9d, 0xaf, 0xde, 0xa4, 0x4c, 0x92, 0x72, 0x86, 0xf1, 0x7a, 0x05, 0x26, 0xf8, 0xd0, 0x96, 0x4b, 0x2e, 0x77, 0x8a, 0xfd, 0x0d, 0x8a, 0xde, 0x8c, 0x54, 0x90, 0x12, 0x86, 0xd0, 0xb3, 0x6b, 0x30, 0x13, 0x5d, 0x8d, 0xc4, 0xf2, 0x3b, 0x46, 0xcb, 0xef, 0x19, 0xb1, 0xfc, 0x2a, 0x62, 0xf9, 0x2e, 0xc1, 0xd9, 0xc8, 0xda, 0x13, 0x47, 0x92, 0x10, 0x49, 0x6e, 0xc3, 0xb8, 0x54, 0x72, 0x44, 0xf0, 0x70, 0x04, 0x78, 0xb8, 0x1b, 0x1c, 0x84, 0x56, 0xc4, 0xea, 0x21, 0x81, 0x55, 0x11, 0xfc, 0x31, 0x98, 0x90, 0xeb, 0x8d, 0x88, 0x1e, 0x8f, 0x40, 0x8f, 0x47, 0xa0, 0xa3, 0xcf, 0x9d, 0x8c, 0x40, 0x27, 0x43, 0xe8, 0xdd, 0x9e, 0xe7, 0x9e, 0x8a, 0x40, 0x4f, 0x45, 0xa0, 0xa3, 0xcf, 0xad, 0x47, 0xa0, 0x75, 0x11, 0xfd, 0x2c, 0x4c, 0x86, 0x4a, 0x8c, 0x08, 0x1f, 0x8d, 0x80, 0x8f, 0x8a, 0xf0, 0xe7, 0x40, 0x0b, 0x17, 0x17, 0x11, 0x3f, 0x19, 0x81, 0x9f, 0x8c, 0x3a, 0x7d, 0xb4, 0xf6, 0x23, 0x11, 0xf0, 0x91, 0xc8, 0xd3, 0x47, 0xe3, 0xb5, 0x08, 0xbc, 0x26, 0xe2, 0xf3, 0x90, 0x11, 0xab, 0x89, 0x88, 0x4d, 0x45, 0x60, 0x53, 0x61, 0xbb, 0x4b, 0xc5, 0x24, 0x2e, 0xd2, 0xc7, 0x7a, 0xa4, 0x8b, 0x54, 0x42, 0xe2, 0x48, 0x32, 0x22, 0xc9, 0x27, 0xe1, 0x4c, 0x54, 0xc9, 0x88, 0xe0, 0x58, 0x10, 0x39, 0x26, 0x70, 0x8f, 0x18, 0x34, 0x7b, 0x66, 0x2b, 0xd4, 0x38, 0xcd, 0x7e, 0x0a, 0xa6, 0x23, 0x0a, 0x47, 0x04, 0xed, 0x92, 0xdc, 0x8d, 0x65, 0x05, 0x5a, 0x52, 0x04, 0x2c, 0xfb, 0x68, 0xc7, 0xb1, 0x6c, 0x4f, 0xec, 0xca, 0xbe, 0x31, 0x0d, 0x13, 0xac, 0x3c, 0x6d, 0xb7, 0xeb, 0xa8, 0x8d, 0xea, 0xfa, 0x9f, 0xef, 0xdd, 0x3b, 0x2d, 0x77, 0x17, 0x35, 0x86, 0x3a, 0x45, 0x0b, 0xf5, 0xa9, 0x9e, 0x2d, 0xd4, 0xe5, 0x78, 0xfa, 0xb8, 0x4e, 0xaa, 0xd4, 0xd5, 0x49, 0x3d, 0xd5, 0x9b, 0xb4, 0x57, 0x43, 0x55, 0xea, 0x6a, 0xa8, 0xfa, 0x93, 0x44, 0xf6, 0x55, 0xeb, 0xdd, 0x7d, 0xd5, 0x42, 0x6f, 0x96, 0xde, 0xed, 0xd5, 0x7a, 0x77, 0x7b, 0x15, 0xc3, 0x13, 0xdd, 0x65, 0xad, 0x77, 0x77, 0x59, 0x7d, 0x78, 0x7a, 0x37, 0x5b, 0xeb, 0xdd, 0xcd, 0x56, 0x0c, 0x4f, 0x74, 0xcf, 0xb5, 0x11, 0xd1, 0x73, 0x3d, 0xdd, 0x9b, 0xa8, 0x5f, 0xeb, 0xb5, 0x19, 0xd5, 0x7a, 0x2d, 0xf6, 0x51, 0xaa, 0x6f, 0x07, 0xb6, 0x11, 0xd1, 0x81, 0xc5, 0x29, 0xd6, 0xa3, 0x11, 0xdb, 0x8c, 0x6a, 0xc4, 0x62, 0x15, 0xeb, 0xd5, 0x8f, 0xfd, 0x5c, 0xb8, 0x1f, 0xbb, 0xd4, 0x9b, 0x29, 0xba, 0x2d, 0x5b, 0xef, 0x6e, 0xcb, 0x16, 0xe2, 0x72, 0x2e, 0xaa, 0x3b, 0xfb, 0x54, 0xcf, 0xee, 0x6c, 0x80, 0x14, 0x8e, 0x6b, 0xd2, 0x5e, 0xea, 0xd5, 0xa4, 0x2d, 0xc5, 0x73, 0xf7, 0xef, 0xd5, 0xf6, 0x7b, 0xf4, 0x6a, 0xcf, 0xc4, 0x13, 0xff, 0xac, 0x65, 0xfb, 0x59, 0xcb, 0xf6, 0xb3, 0x96, 0xed, 0x67, 0x2d, 0xdb, 0x4f, 0xbe, 0x65, 0xcb, 0x27, 0x3f, 0xfb, 0xe5, 0x79, 0x25, 0xf7, 0x9f, 0x55, 0xff, 0xcf, 0x66, 0xbd, 0x68, 0x79, 0xc7, 0xb8, 0xbc, 0x6d, 0x41, 0x86, 0xfc, 0xc1, 0x8b, 0xa6, 0xd9, 0x6a, 0x59, 0xf6, 0x11, 0xeb, 0xd9, 0x16, 0xbb, 0xb7, 0x12, 0x19, 0x80, 0xfc, 0xc9, 0x90, 0x2d, 0x2a, 0xcc, 0x96, 0x1b, 0x3b, 0x18, 0xd1, 0xef, 0x42, 0xba, 0xe9, 0x1e, 0xf9, 0x6c, 0x89, 0xae, 0x85, 0x30, 0xc4, 0x46, 0xaf, 0x34, 0x20, 0x83, 0xa6, 0x3f, 0x80, 0x55, 0x3b, 0x38, 0xf1, 0x02, 0xd5, 0xd4, 0x38, 0xd5, 0xb0, 0x4f, 0x65, 0xd5, 0x0e, 0x82, 0x11, 0x1c, 0xb6, 0x61, 0xdd, 0xe3, 0x2a, 0x9d, 0x14, 0x3c, 0x2f, 0xc2, 0x64, 0x48, 0xdb, 0x88, 0x9c, 0x7f, 0x08, 0xdf, 0x60, 0xc5, 0xc2, 0x9a, 0xc7, 0xe5, 0x84, 0x18, 0x90, 0xb9, 0xc7, 0x61, 0x5c, 0xe2, 0xd6, 0x33, 0xa0, 0x1c, 0xb2, 0xaf, 0x52, 0x2a, 0x87, 0xb9, 0x2f, 0x29, 0x90, 0x66, 0xaf, 0x11, 0xec, 0x98, 0x56, 0x5b, 0x7f, 0x01, 0x92, 0x0d, 0xfe, 0x75, 0xa6, 0x87, 0xfd, 0xea, 0x2c, 0x61, 0xd0, 0xd7, 0x61, 0xb8, 0xed, 0x7f, 0xdd, 0xe9, 0xa1, 0xbe, 0x0f, 0x4b, 0xe0, 0xb9, 0xfb, 0x0a, 0x4c, 0xb1, 0xb7, 0x5c, 0x5d, 0xf6, 0xf2, 0xb3, 0xd9, 0x9a, 0xfd, 0xba, 0x02, 0x63, 0xfe, 0x91, 0x7e, 0x00, 0x13, 0xfe, 0x01, 0x7d, 0xc1, 0x9e, 0x46, 0x6a, 0x5e, 0xb0, 0x70, 0x17, 0xc7, 0x52, 0xc4, 0x27, 0xfa, 0x20, 0x8a, 0xae, 0xc9, 0xf2, 0xe0, 0x6c, 0x01, 0xa6, 0x23, 0xc4, 0x4e, 0xb3, 0x20, 0xe7, 0x2e, 0xc0, 0x58, 0xc5, 0xf1, 0xe8, 0xaf, 0xe6, 0xe8, 0x67, 0x84, 0xa7, 0x0a, 0xc5, 0x84, 0x36, 0x44, 0xc0, 0x8b, 0x17, 0x60, 0x94, 0x65, 0xbf, 0x3e, 0x02, 0x89, 0xad, 0x82, 0x36, 0x44, 0xfe, 0x2f, 0x6a, 0x0a, 0xf9, 0xbf, 0xa4, 0x25, 0x8a, 0x9b, 0x0f, 0xf1, 0x94, 0x69, 0xe8, 0x9d, 0x07, 0x73, 0x43, 0x51, 0x4f, 0x99, 0x0e, 0x46, 0xa8, 0x79, 0xfe, 0x2c, 0x00, 0x00, 0xff, 0xff, 0xb7, 0xb9, 0xf5, 0xfa, 0x72, 0x80, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x MapEnum) String() string { s, ok := MapEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x Message_Humour) String() string { s, ok := Message_Humour_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *Message) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Message") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Message but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Message but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Hilarity != that1.Hilarity { return fmt.Errorf("Hilarity this(%v) Not Equal that(%v)", this.Hilarity, that1.Hilarity) } if this.HeightInCm != that1.HeightInCm { return fmt.Errorf("HeightInCm this(%v) Not Equal that(%v)", this.HeightInCm, that1.HeightInCm) } if !bytes.Equal(this.Data, that1.Data) { return fmt.Errorf("Data this(%v) Not Equal that(%v)", this.Data, that1.Data) } if this.ResultCount != that1.ResultCount { return fmt.Errorf("ResultCount this(%v) Not Equal that(%v)", this.ResultCount, that1.ResultCount) } if this.TrueScotsman != that1.TrueScotsman { return fmt.Errorf("TrueScotsman this(%v) Not Equal that(%v)", this.TrueScotsman, that1.TrueScotsman) } if this.Score != that1.Score { return fmt.Errorf("Score this(%v) Not Equal that(%v)", this.Score, that1.Score) } if len(this.Key) != len(that1.Key) { return fmt.Errorf("Key this(%v) Not Equal that(%v)", len(this.Key), len(that1.Key)) } for i := range this.Key { if this.Key[i] != that1.Key[i] { return fmt.Errorf("Key this[%v](%v) Not Equal that[%v](%v)", i, this.Key[i], i, that1.Key[i]) } } if !this.Nested.Equal(that1.Nested) { return fmt.Errorf("Nested this(%v) Not Equal that(%v)", this.Nested, that1.Nested) } if len(this.Terrain) != len(that1.Terrain) { return fmt.Errorf("Terrain this(%v) Not Equal that(%v)", len(this.Terrain), len(that1.Terrain)) } for i := range this.Terrain { if !this.Terrain[i].Equal(that1.Terrain[i]) { return fmt.Errorf("Terrain this[%v](%v) Not Equal that[%v](%v)", i, this.Terrain[i], i, that1.Terrain[i]) } } if !this.Proto2Field.Equal(that1.Proto2Field) { return fmt.Errorf("Proto2Field this(%v) Not Equal that(%v)", this.Proto2Field, that1.Proto2Field) } if len(this.Proto2Value) != len(that1.Proto2Value) { return fmt.Errorf("Proto2Value this(%v) Not Equal that(%v)", len(this.Proto2Value), len(that1.Proto2Value)) } for i := range this.Proto2Value { if !this.Proto2Value[i].Equal(that1.Proto2Value[i]) { return fmt.Errorf("Proto2Value this[%v](%v) Not Equal that[%v](%v)", i, this.Proto2Value[i], i, that1.Proto2Value[i]) } } return nil } func (this *Message) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Hilarity != that1.Hilarity { return false } if this.HeightInCm != that1.HeightInCm { return false } if !bytes.Equal(this.Data, that1.Data) { return false } if this.ResultCount != that1.ResultCount { return false } if this.TrueScotsman != that1.TrueScotsman { return false } if this.Score != that1.Score { return false } if len(this.Key) != len(that1.Key) { return false } for i := range this.Key { if this.Key[i] != that1.Key[i] { return false } } if !this.Nested.Equal(that1.Nested) { return false } if len(this.Terrain) != len(that1.Terrain) { return false } for i := range this.Terrain { if !this.Terrain[i].Equal(that1.Terrain[i]) { return false } } if !this.Proto2Field.Equal(that1.Proto2Field) { return false } if len(this.Proto2Value) != len(that1.Proto2Value) { return false } for i := range this.Proto2Value { if !this.Proto2Value[i].Equal(that1.Proto2Value[i]) { return false } } return true } func (this *Nested) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Nested) if !ok { that2, ok := that.(Nested) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Nested") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Nested but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Nested but is not nil && this == nil") } if this.Bunny != that1.Bunny { return fmt.Errorf("Bunny this(%v) Not Equal that(%v)", this.Bunny, that1.Bunny) } return nil } func (this *Nested) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Nested) if !ok { that2, ok := that.(Nested) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Bunny != that1.Bunny { return false } return true } func (this *AllMaps) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMaps") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMaps but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMaps but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } return nil } func (this *AllMaps) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } return true } func (this *AllMapsOrdered) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMapsOrdered") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMapsOrdered but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMapsOrdered but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } return nil } func (this *AllMapsOrdered) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } return true } func (this *MessageWithMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MessageWithMap) if !ok { that2, ok := that.(MessageWithMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MessageWithMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MessageWithMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MessageWithMap but is not nil && this == nil") } if len(this.NameMapping) != len(that1.NameMapping) { return fmt.Errorf("NameMapping this(%v) Not Equal that(%v)", len(this.NameMapping), len(that1.NameMapping)) } for i := range this.NameMapping { if this.NameMapping[i] != that1.NameMapping[i] { return fmt.Errorf("NameMapping this[%v](%v) Not Equal that[%v](%v)", i, this.NameMapping[i], i, that1.NameMapping[i]) } } if len(this.MsgMapping) != len(that1.MsgMapping) { return fmt.Errorf("MsgMapping this(%v) Not Equal that(%v)", len(this.MsgMapping), len(that1.MsgMapping)) } for i := range this.MsgMapping { if !this.MsgMapping[i].Equal(that1.MsgMapping[i]) { return fmt.Errorf("MsgMapping this[%v](%v) Not Equal that[%v](%v)", i, this.MsgMapping[i], i, that1.MsgMapping[i]) } } if len(this.ByteMapping) != len(that1.ByteMapping) { return fmt.Errorf("ByteMapping this(%v) Not Equal that(%v)", len(this.ByteMapping), len(that1.ByteMapping)) } for i := range this.ByteMapping { if !bytes.Equal(this.ByteMapping[i], that1.ByteMapping[i]) { return fmt.Errorf("ByteMapping this[%v](%v) Not Equal that[%v](%v)", i, this.ByteMapping[i], i, that1.ByteMapping[i]) } } return nil } func (this *MessageWithMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MessageWithMap) if !ok { that2, ok := that.(MessageWithMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NameMapping) != len(that1.NameMapping) { return false } for i := range this.NameMapping { if this.NameMapping[i] != that1.NameMapping[i] { return false } } if len(this.MsgMapping) != len(that1.MsgMapping) { return false } for i := range this.MsgMapping { if !this.MsgMapping[i].Equal(that1.MsgMapping[i]) { return false } } if len(this.ByteMapping) != len(that1.ByteMapping) { return false } for i := range this.ByteMapping { if !bytes.Equal(this.ByteMapping[i], that1.ByteMapping[i]) { return false } } return true } func (this *FloatingPoint) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FloatingPoint") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FloatingPoint but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FloatingPoint but is not nil && this == nil") } if this.F != that1.F { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } return nil } func (this *FloatingPoint) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.F != that1.F { return false } return true } func (this *Uint128Pair) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Uint128Pair) if !ok { that2, ok := that.(Uint128Pair) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Uint128Pair") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Uint128Pair but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Uint128Pair but is not nil && this == nil") } if !this.Left.Equal(that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if that1.Right == nil { if this.Right != nil { return fmt.Errorf("this.Right != nil && that1.Right == nil") } } else if !this.Right.Equal(*that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } return nil } func (this *Uint128Pair) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Uint128Pair) if !ok { that2, ok := that.(Uint128Pair) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(that1.Left) { return false } if that1.Right == nil { if this.Right != nil { return false } } else if !this.Right.Equal(*that1.Right) { return false } return true } func (this *ContainsNestedMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ContainsNestedMap) if !ok { that2, ok := that.(ContainsNestedMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ContainsNestedMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ContainsNestedMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ContainsNestedMap but is not nil && this == nil") } return nil } func (this *ContainsNestedMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ContainsNestedMap) if !ok { that2, ok := that.(ContainsNestedMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } return true } func (this *ContainsNestedMap_NestedMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ContainsNestedMap_NestedMap) if !ok { that2, ok := that.(ContainsNestedMap_NestedMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ContainsNestedMap_NestedMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ContainsNestedMap_NestedMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ContainsNestedMap_NestedMap but is not nil && this == nil") } if len(this.NestedMapField) != len(that1.NestedMapField) { return fmt.Errorf("NestedMapField this(%v) Not Equal that(%v)", len(this.NestedMapField), len(that1.NestedMapField)) } for i := range this.NestedMapField { if this.NestedMapField[i] != that1.NestedMapField[i] { return fmt.Errorf("NestedMapField this[%v](%v) Not Equal that[%v](%v)", i, this.NestedMapField[i], i, that1.NestedMapField[i]) } } return nil } func (this *ContainsNestedMap_NestedMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ContainsNestedMap_NestedMap) if !ok { that2, ok := that.(ContainsNestedMap_NestedMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NestedMapField) != len(that1.NestedMapField) { return false } for i := range this.NestedMapField { if this.NestedMapField[i] != that1.NestedMapField[i] { return false } } return true } func (this *NotPacked) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NotPacked) if !ok { that2, ok := that.(NotPacked) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NotPacked") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NotPacked but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NotPacked but is not nil && this == nil") } if len(this.Key) != len(that1.Key) { return fmt.Errorf("Key this(%v) Not Equal that(%v)", len(this.Key), len(that1.Key)) } for i := range this.Key { if this.Key[i] != that1.Key[i] { return fmt.Errorf("Key this[%v](%v) Not Equal that[%v](%v)", i, this.Key[i], i, that1.Key[i]) } } return nil } func (this *NotPacked) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NotPacked) if !ok { that2, ok := that.(NotPacked) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Key) != len(that1.Key) { return false } for i := range this.Key { if this.Key[i] != that1.Key[i] { return false } } return true } type MessageFace interface { Proto() github_com_gogo_protobuf_proto.Message GetName() string GetHilarity() Message_Humour GetHeightInCm() uint32 GetData() []byte GetResultCount() int64 GetTrueScotsman() bool GetScore() float32 GetKey() []uint64 GetNested() *Nested GetTerrain() map[int64]*Nested GetProto2Field() *test.NinOptNative GetProto2Value() map[int64]*test.NinOptEnum } func (this *Message) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Message) TestProto() github_com_gogo_protobuf_proto.Message { return NewMessageFromFace(this) } func (this *Message) GetName() string { return this.Name } func (this *Message) GetHilarity() Message_Humour { return this.Hilarity } func (this *Message) GetHeightInCm() uint32 { return this.HeightInCm } func (this *Message) GetData() []byte { return this.Data } func (this *Message) GetResultCount() int64 { return this.ResultCount } func (this *Message) GetTrueScotsman() bool { return this.TrueScotsman } func (this *Message) GetScore() float32 { return this.Score } func (this *Message) GetKey() []uint64 { return this.Key } func (this *Message) GetNested() *Nested { return this.Nested } func (this *Message) GetTerrain() map[int64]*Nested { return this.Terrain } func (this *Message) GetProto2Field() *test.NinOptNative { return this.Proto2Field } func (this *Message) GetProto2Value() map[int64]*test.NinOptEnum { return this.Proto2Value } func NewMessageFromFace(that MessageFace) *Message { this := &Message{} this.Name = that.GetName() this.Hilarity = that.GetHilarity() this.HeightInCm = that.GetHeightInCm() this.Data = that.GetData() this.ResultCount = that.GetResultCount() this.TrueScotsman = that.GetTrueScotsman() this.Score = that.GetScore() this.Key = that.GetKey() this.Nested = that.GetNested() this.Terrain = that.GetTerrain() this.Proto2Field = that.GetProto2Field() this.Proto2Value = that.GetProto2Value() return this } type NestedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetBunny() string } func (this *Nested) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Nested) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedFromFace(this) } func (this *Nested) GetBunny() string { return this.Bunny } func NewNestedFromFace(that NestedFace) *Nested { this := &Nested{} this.Bunny = that.GetBunny() return this } type AllMapsFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMaps) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMaps) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsFromFace(this) } func (this *AllMaps) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMaps) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMaps) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMaps) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMaps) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMaps) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMaps) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMaps) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMaps) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMaps) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMaps) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMaps) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMaps) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMaps) GetStringMap() map[string]string { return this.StringMap } func (this *AllMaps) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMaps) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMaps) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsFromFace(that AllMapsFace) *AllMaps { this := &AllMaps{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type AllMapsOrderedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMapsOrdered) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMapsOrdered) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsOrderedFromFace(this) } func (this *AllMapsOrdered) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMapsOrdered) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMapsOrdered) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMapsOrdered) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMapsOrdered) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMapsOrdered) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMapsOrdered) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMapsOrdered) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMapsOrdered) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMapsOrdered) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMapsOrdered) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMapsOrdered) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMapsOrdered) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMapsOrdered) GetStringMap() map[string]string { return this.StringMap } func (this *AllMapsOrdered) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMapsOrdered) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMapsOrdered) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsOrderedFromFace(that AllMapsOrderedFace) *AllMapsOrdered { this := &AllMapsOrdered{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type MessageWithMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNameMapping() map[int32]string GetMsgMapping() map[int64]*FloatingPoint GetByteMapping() map[bool][]byte } func (this *MessageWithMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *MessageWithMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewMessageWithMapFromFace(this) } func (this *MessageWithMap) GetNameMapping() map[int32]string { return this.NameMapping } func (this *MessageWithMap) GetMsgMapping() map[int64]*FloatingPoint { return this.MsgMapping } func (this *MessageWithMap) GetByteMapping() map[bool][]byte { return this.ByteMapping } func NewMessageWithMapFromFace(that MessageWithMapFace) *MessageWithMap { this := &MessageWithMap{} this.NameMapping = that.GetNameMapping() this.MsgMapping = that.GetMsgMapping() this.ByteMapping = that.GetByteMapping() return this } type FloatingPointFace interface { Proto() github_com_gogo_protobuf_proto.Message GetF() float64 } func (this *FloatingPoint) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *FloatingPoint) TestProto() github_com_gogo_protobuf_proto.Message { return NewFloatingPointFromFace(this) } func (this *FloatingPoint) GetF() float64 { return this.F } func NewFloatingPointFromFace(that FloatingPointFace) *FloatingPoint { this := &FloatingPoint{} this.F = that.GetF() return this } type Uint128PairFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() github_com_gogo_protobuf_test_custom.Uint128 GetRight() *github_com_gogo_protobuf_test_custom.Uint128 } func (this *Uint128Pair) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Uint128Pair) TestProto() github_com_gogo_protobuf_proto.Message { return NewUint128PairFromFace(this) } func (this *Uint128Pair) GetLeft() github_com_gogo_protobuf_test_custom.Uint128 { return this.Left } func (this *Uint128Pair) GetRight() *github_com_gogo_protobuf_test_custom.Uint128 { return this.Right } func NewUint128PairFromFace(that Uint128PairFace) *Uint128Pair { this := &Uint128Pair{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type ContainsNestedMapFace interface { Proto() github_com_gogo_protobuf_proto.Message } func (this *ContainsNestedMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ContainsNestedMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewContainsNestedMapFromFace(this) } func NewContainsNestedMapFromFace(that ContainsNestedMapFace) *ContainsNestedMap { this := &ContainsNestedMap{} return this } type ContainsNestedMap_NestedMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedMapField() map[string]float64 } func (this *ContainsNestedMap_NestedMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ContainsNestedMap_NestedMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewContainsNestedMap_NestedMapFromFace(this) } func (this *ContainsNestedMap_NestedMap) GetNestedMapField() map[string]float64 { return this.NestedMapField } func NewContainsNestedMap_NestedMapFromFace(that ContainsNestedMap_NestedMapFace) *ContainsNestedMap_NestedMap { this := &ContainsNestedMap_NestedMap{} this.NestedMapField = that.GetNestedMapField() return this } type NotPackedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetKey() []uint64 } func (this *NotPacked) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NotPacked) TestProto() github_com_gogo_protobuf_proto.Message { return NewNotPackedFromFace(this) } func (this *NotPacked) GetKey() []uint64 { return this.Key } func NewNotPackedFromFace(that NotPackedFace) *NotPacked { this := &NotPacked{} this.Key = that.GetKey() return this } func (this *Message) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 16) s = append(s, "&theproto3.Message{") s = append(s, "Name: "+fmt.Sprintf("%#v", this.Name)+",\n") s = append(s, "Hilarity: "+fmt.Sprintf("%#v", this.Hilarity)+",\n") s = append(s, "HeightInCm: "+fmt.Sprintf("%#v", this.HeightInCm)+",\n") s = append(s, "Data: "+fmt.Sprintf("%#v", this.Data)+",\n") s = append(s, "ResultCount: "+fmt.Sprintf("%#v", this.ResultCount)+",\n") s = append(s, "TrueScotsman: "+fmt.Sprintf("%#v", this.TrueScotsman)+",\n") s = append(s, "Score: "+fmt.Sprintf("%#v", this.Score)+",\n") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") if this.Nested != nil { s = append(s, "Nested: "+fmt.Sprintf("%#v", this.Nested)+",\n") } keysForTerrain := make([]int64, 0, len(this.Terrain)) for k := range this.Terrain { keysForTerrain = append(keysForTerrain, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForTerrain) mapStringForTerrain := "map[int64]*Nested{" for _, k := range keysForTerrain { mapStringForTerrain += fmt.Sprintf("%#v: %#v,", k, this.Terrain[k]) } mapStringForTerrain += "}" if this.Terrain != nil { s = append(s, "Terrain: "+mapStringForTerrain+",\n") } if this.Proto2Field != nil { s = append(s, "Proto2Field: "+fmt.Sprintf("%#v", this.Proto2Field)+",\n") } keysForProto2Value := make([]int64, 0, len(this.Proto2Value)) for k := range this.Proto2Value { keysForProto2Value = append(keysForProto2Value, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForProto2Value) mapStringForProto2Value := "map[int64]*test.NinOptEnum{" for _, k := range keysForProto2Value { mapStringForProto2Value += fmt.Sprintf("%#v: %#v,", k, this.Proto2Value[k]) } mapStringForProto2Value += "}" if this.Proto2Value != nil { s = append(s, "Proto2Value: "+mapStringForProto2Value+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Nested) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.Nested{") s = append(s, "Bunny: "+fmt.Sprintf("%#v", this.Bunny)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *AllMaps) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&theproto3.AllMaps{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMapsOrdered) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&theproto3.AllMapsOrdered{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MessageWithMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&theproto3.MessageWithMap{") keysForNameMapping := make([]int32, 0, len(this.NameMapping)) for k := range this.NameMapping { keysForNameMapping = append(keysForNameMapping, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNameMapping) mapStringForNameMapping := "map[int32]string{" for _, k := range keysForNameMapping { mapStringForNameMapping += fmt.Sprintf("%#v: %#v,", k, this.NameMapping[k]) } mapStringForNameMapping += "}" if this.NameMapping != nil { s = append(s, "NameMapping: "+mapStringForNameMapping+",\n") } keysForMsgMapping := make([]int64, 0, len(this.MsgMapping)) for k := range this.MsgMapping { keysForMsgMapping = append(keysForMsgMapping, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForMsgMapping) mapStringForMsgMapping := "map[int64]*FloatingPoint{" for _, k := range keysForMsgMapping { mapStringForMsgMapping += fmt.Sprintf("%#v: %#v,", k, this.MsgMapping[k]) } mapStringForMsgMapping += "}" if this.MsgMapping != nil { s = append(s, "MsgMapping: "+mapStringForMsgMapping+",\n") } keysForByteMapping := make([]bool, 0, len(this.ByteMapping)) for k := range this.ByteMapping { keysForByteMapping = append(keysForByteMapping, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForByteMapping) mapStringForByteMapping := "map[bool][]byte{" for _, k := range keysForByteMapping { mapStringForByteMapping += fmt.Sprintf("%#v: %#v,", k, this.ByteMapping[k]) } mapStringForByteMapping += "}" if this.ByteMapping != nil { s = append(s, "ByteMapping: "+mapStringForByteMapping+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FloatingPoint) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.FloatingPoint{") s = append(s, "F: "+fmt.Sprintf("%#v", this.F)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *Uint128Pair) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&theproto3.Uint128Pair{") s = append(s, "Left: "+fmt.Sprintf("%#v", this.Left)+",\n") s = append(s, "Right: "+fmt.Sprintf("%#v", this.Right)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *ContainsNestedMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&theproto3.ContainsNestedMap{") s = append(s, "}") return strings.Join(s, "") } func (this *ContainsNestedMap_NestedMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.ContainsNestedMap_NestedMap{") keysForNestedMapField := make([]string, 0, len(this.NestedMapField)) for k := range this.NestedMapField { keysForNestedMapField = append(keysForNestedMapField, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNestedMapField) mapStringForNestedMapField := "map[string]float64{" for _, k := range keysForNestedMapField { mapStringForNestedMapField += fmt.Sprintf("%#v: %#v,", k, this.NestedMapField[k]) } mapStringForNestedMapField += "}" if this.NestedMapField != nil { s = append(s, "NestedMapField: "+mapStringForNestedMapField+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NotPacked) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.NotPacked{") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringTheproto3(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedMessage(r randyTheproto3, easy bool) *Message { this := &Message{} this.Name = string(randStringTheproto3(r)) this.Hilarity = Message_Humour([]int32{0, 1, 2, 3}[r.Intn(4)]) this.HeightInCm = uint32(r.Uint32()) v1 := r.Intn(100) this.Data = make([]byte, v1) for i := 0; i < v1; i++ { this.Data[i] = byte(r.Intn(256)) } this.ResultCount = int64(r.Int63()) if r.Intn(2) == 0 { this.ResultCount *= -1 } this.TrueScotsman = bool(bool(r.Intn(2) == 0)) this.Score = float32(r.Float32()) if r.Intn(2) == 0 { this.Score *= -1 } v2 := r.Intn(10) this.Key = make([]uint64, v2) for i := 0; i < v2; i++ { this.Key[i] = uint64(uint64(r.Uint32())) } if r.Intn(10) != 0 { this.Nested = NewPopulatedNested(r, easy) } if r.Intn(10) != 0 { v3 := r.Intn(10) this.Terrain = make(map[int64]*Nested) for i := 0; i < v3; i++ { this.Terrain[int64(r.Int63())] = NewPopulatedNested(r, easy) } } if r.Intn(10) != 0 { this.Proto2Field = test.NewPopulatedNinOptNative(r, easy) } if r.Intn(10) != 0 { v4 := r.Intn(10) this.Proto2Value = make(map[int64]*test.NinOptEnum) for i := 0; i < v4; i++ { this.Proto2Value[int64(r.Int63())] = test.NewPopulatedNinOptEnum(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNested(r randyTheproto3, easy bool) *Nested { this := &Nested{} this.Bunny = string(randStringTheproto3(r)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedAllMaps(r randyTheproto3, easy bool) *AllMaps { this := &AllMaps{} if r.Intn(10) != 0 { v5 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v5; i++ { v6 := randStringTheproto3(r) this.StringToDoubleMap[v6] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v6] *= -1 } } } if r.Intn(10) != 0 { v7 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v7; i++ { v8 := randStringTheproto3(r) this.StringToFloatMap[v8] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v8] *= -1 } } } if r.Intn(10) != 0 { v9 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v9; i++ { v10 := int32(r.Int31()) this.Int32Map[v10] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v10] *= -1 } } } if r.Intn(10) != 0 { v11 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v11; i++ { v12 := int64(r.Int63()) this.Int64Map[v12] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v12] *= -1 } } } if r.Intn(10) != 0 { v13 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v13; i++ { v14 := uint32(r.Uint32()) this.Uint32Map[v14] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v15 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v15; i++ { v16 := uint64(uint64(r.Uint32())) this.Uint64Map[v16] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v17 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v17; i++ { v18 := int32(r.Int31()) this.Sint32Map[v18] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v18] *= -1 } } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v19; i++ { v20 := int64(r.Int63()) this.Sint64Map[v20] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v20] *= -1 } } } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v21; i++ { v22 := uint32(r.Uint32()) this.Fixed32Map[v22] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v23; i++ { v24 := int32(r.Int31()) this.Sfixed32Map[v24] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v24] *= -1 } } } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v25; i++ { v26 := uint64(uint64(r.Uint32())) this.Fixed64Map[v26] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v27 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v27; i++ { v28 := int64(r.Int63()) this.Sfixed64Map[v28] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v28] *= -1 } } } if r.Intn(10) != 0 { v29 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v29; i++ { v30 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v30] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v31 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v31; i++ { this.StringMap[randStringTheproto3(r)] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v32 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v32; i++ { v33 := r.Intn(100) v34 := randStringTheproto3(r) this.StringToBytesMap[v34] = make([]byte, v33) for i := 0; i < v33; i++ { this.StringToBytesMap[v34][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v35 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v35; i++ { this.StringToEnumMap[randStringTheproto3(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v36; i++ { this.StringToMsgMap[randStringTheproto3(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedAllMapsOrdered(r randyTheproto3, easy bool) *AllMapsOrdered { this := &AllMapsOrdered{} if r.Intn(10) != 0 { v37 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v37; i++ { v38 := randStringTheproto3(r) this.StringToDoubleMap[v38] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v38] *= -1 } } } if r.Intn(10) != 0 { v39 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v39; i++ { v40 := randStringTheproto3(r) this.StringToFloatMap[v40] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v40] *= -1 } } } if r.Intn(10) != 0 { v41 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v41; i++ { v42 := int32(r.Int31()) this.Int32Map[v42] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v42] *= -1 } } } if r.Intn(10) != 0 { v43 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v43; i++ { v44 := int64(r.Int63()) this.Int64Map[v44] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v44] *= -1 } } } if r.Intn(10) != 0 { v45 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v45; i++ { v46 := uint32(r.Uint32()) this.Uint32Map[v46] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v47 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v47; i++ { v48 := uint64(uint64(r.Uint32())) this.Uint64Map[v48] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v49 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v49; i++ { v50 := int32(r.Int31()) this.Sint32Map[v50] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v50] *= -1 } } } if r.Intn(10) != 0 { v51 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v51; i++ { v52 := int64(r.Int63()) this.Sint64Map[v52] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v52] *= -1 } } } if r.Intn(10) != 0 { v53 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v53; i++ { v54 := uint32(r.Uint32()) this.Fixed32Map[v54] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v55 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v55; i++ { v56 := int32(r.Int31()) this.Sfixed32Map[v56] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v56] *= -1 } } } if r.Intn(10) != 0 { v57 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v57; i++ { v58 := uint64(uint64(r.Uint32())) this.Fixed64Map[v58] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v59 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v59; i++ { v60 := int64(r.Int63()) this.Sfixed64Map[v60] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v60] *= -1 } } } if r.Intn(10) != 0 { v61 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v61; i++ { v62 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v62] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v63 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v63; i++ { this.StringMap[randStringTheproto3(r)] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v64; i++ { v65 := r.Intn(100) v66 := randStringTheproto3(r) this.StringToBytesMap[v66] = make([]byte, v65) for i := 0; i < v65; i++ { this.StringToBytesMap[v66][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v67 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v67; i++ { this.StringToEnumMap[randStringTheproto3(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v68; i++ { this.StringToMsgMap[randStringTheproto3(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMessageWithMap(r randyTheproto3, easy bool) *MessageWithMap { this := &MessageWithMap{} if r.Intn(10) != 0 { v69 := r.Intn(10) this.NameMapping = make(map[int32]string) for i := 0; i < v69; i++ { this.NameMapping[int32(r.Int31())] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v70 := r.Intn(10) this.MsgMapping = make(map[int64]*FloatingPoint) for i := 0; i < v70; i++ { this.MsgMapping[int64(r.Int63())] = NewPopulatedFloatingPoint(r, easy) } } if r.Intn(10) != 0 { v71 := r.Intn(10) this.ByteMapping = make(map[bool][]byte) for i := 0; i < v71; i++ { v72 := r.Intn(100) v73 := bool(bool(r.Intn(2) == 0)) this.ByteMapping[v73] = make([]byte, v72) for i := 0; i < v72; i++ { this.ByteMapping[v73][i] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFloatingPoint(r randyTheproto3, easy bool) *FloatingPoint { this := &FloatingPoint{} this.F = float64(r.Float64()) if r.Intn(2) == 0 { this.F *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUint128Pair(r randyTheproto3, easy bool) *Uint128Pair { this := &Uint128Pair{} v74 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Left = *v74 this.Right = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedContainsNestedMap(r randyTheproto3, easy bool) *ContainsNestedMap { this := &ContainsNestedMap{} if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedContainsNestedMap_NestedMap(r randyTheproto3, easy bool) *ContainsNestedMap_NestedMap { this := &ContainsNestedMap_NestedMap{} if r.Intn(10) != 0 { v75 := r.Intn(10) this.NestedMapField = make(map[string]float64) for i := 0; i < v75; i++ { v76 := randStringTheproto3(r) this.NestedMapField[v76] = float64(r.Float64()) if r.Intn(2) == 0 { this.NestedMapField[v76] *= -1 } } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNotPacked(r randyTheproto3, easy bool) *NotPacked { this := &NotPacked{} v77 := r.Intn(10) this.Key = make([]uint64, v77) for i := 0; i < v77; i++ { this.Key[i] = uint64(uint64(r.Uint32())) } if !easy && r.Intn(10) != 0 { } return this } type randyTheproto3 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTheproto3(r randyTheproto3) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTheproto3(r randyTheproto3) string { v78 := r.Intn(100) tmps := make([]rune, v78) for i := 0; i < v78; i++ { tmps[i] = randUTF8RuneTheproto3(r) } return string(tmps) } func randUnrecognizedTheproto3(r randyTheproto3, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTheproto3(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTheproto3(dAtA []byte, r randyTheproto3, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) v79 := r.Int63() if r.Intn(2) == 0 { v79 *= -1 } dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(v79)) case 1: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTheproto3(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Message) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } if m.Hilarity != 0 { n += 1 + sovTheproto3(uint64(m.Hilarity)) } if m.HeightInCm != 0 { n += 1 + sovTheproto3(uint64(m.HeightInCm)) } l = len(m.Data) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } if m.ResultCount != 0 { n += 1 + sovTheproto3(uint64(m.ResultCount)) } if m.TrueScotsman { n += 2 } if m.Score != 0 { n += 5 } if len(m.Key) > 0 { l = 0 for _, e := range m.Key { l += sovTheproto3(uint64(e)) } n += 1 + sovTheproto3(uint64(l)) + l } if m.Nested != nil { l = m.Nested.Size() n += 1 + l + sovTheproto3(uint64(l)) } if len(m.Terrain) > 0 { for k, v := range m.Terrain { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sovTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if m.Proto2Field != nil { l = m.Proto2Field.Size() n += 1 + l + sovTheproto3(uint64(l)) } if len(m.Proto2Value) > 0 { for k, v := range m.Proto2Value { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sovTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *Nested) Size() (n int) { var l int _ = l l = len(m.Bunny) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } return n } func (m *AllMaps) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *AllMapsOrdered) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *MessageWithMap) Size() (n int) { var l int _ = l if len(m.NameMapping) > 0 { for k, v := range m.NameMapping { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.MsgMapping) > 0 { for k, v := range m.MsgMapping { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sozTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.ByteMapping) > 0 { for k, v := range m.ByteMapping { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + 1 + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *FloatingPoint) Size() (n int) { var l int _ = l if m.F != 0 { n += 9 } return n } func (m *Uint128Pair) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovTheproto3(uint64(l)) if m.Right != nil { l = m.Right.Size() n += 1 + l + sovTheproto3(uint64(l)) } return n } func (m *ContainsNestedMap) Size() (n int) { var l int _ = l return n } func (m *ContainsNestedMap_NestedMap) Size() (n int) { var l int _ = l if len(m.NestedMapField) > 0 { for k, v := range m.NestedMapField { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *NotPacked) Size() (n int) { var l int _ = l if len(m.Key) > 0 { for _, e := range m.Key { n += 1 + sovTheproto3(uint64(e)) } } return n } func sovTheproto3(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTheproto3(x uint64) (n int) { return sovTheproto3(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Message) String() string { if this == nil { return "nil" } keysForTerrain := make([]int64, 0, len(this.Terrain)) for k := range this.Terrain { keysForTerrain = append(keysForTerrain, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForTerrain) mapStringForTerrain := "map[int64]*Nested{" for _, k := range keysForTerrain { mapStringForTerrain += fmt.Sprintf("%v: %v,", k, this.Terrain[k]) } mapStringForTerrain += "}" keysForProto2Value := make([]int64, 0, len(this.Proto2Value)) for k := range this.Proto2Value { keysForProto2Value = append(keysForProto2Value, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForProto2Value) mapStringForProto2Value := "map[int64]*test.NinOptEnum{" for _, k := range keysForProto2Value { mapStringForProto2Value += fmt.Sprintf("%v: %v,", k, this.Proto2Value[k]) } mapStringForProto2Value += "}" s := strings.Join([]string{`&Message{`, `Name:` + fmt.Sprintf("%v", this.Name) + `,`, `Hilarity:` + fmt.Sprintf("%v", this.Hilarity) + `,`, `HeightInCm:` + fmt.Sprintf("%v", this.HeightInCm) + `,`, `Data:` + fmt.Sprintf("%v", this.Data) + `,`, `ResultCount:` + fmt.Sprintf("%v", this.ResultCount) + `,`, `TrueScotsman:` + fmt.Sprintf("%v", this.TrueScotsman) + `,`, `Score:` + fmt.Sprintf("%v", this.Score) + `,`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `Nested:` + strings.Replace(fmt.Sprintf("%v", this.Nested), "Nested", "Nested", 1) + `,`, `Terrain:` + mapStringForTerrain + `,`, `Proto2Field:` + strings.Replace(fmt.Sprintf("%v", this.Proto2Field), "NinOptNative", "test.NinOptNative", 1) + `,`, `Proto2Value:` + mapStringForProto2Value + `,`, `}`, }, "") return s } func (this *Nested) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Nested{`, `Bunny:` + fmt.Sprintf("%v", this.Bunny) + `,`, `}`, }, "") return s } func (this *AllMaps) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMaps{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `}`, }, "") return s } func (this *AllMapsOrdered) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMapsOrdered{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `}`, }, "") return s } func (this *MessageWithMap) String() string { if this == nil { return "nil" } keysForNameMapping := make([]int32, 0, len(this.NameMapping)) for k := range this.NameMapping { keysForNameMapping = append(keysForNameMapping, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNameMapping) mapStringForNameMapping := "map[int32]string{" for _, k := range keysForNameMapping { mapStringForNameMapping += fmt.Sprintf("%v: %v,", k, this.NameMapping[k]) } mapStringForNameMapping += "}" keysForMsgMapping := make([]int64, 0, len(this.MsgMapping)) for k := range this.MsgMapping { keysForMsgMapping = append(keysForMsgMapping, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForMsgMapping) mapStringForMsgMapping := "map[int64]*FloatingPoint{" for _, k := range keysForMsgMapping { mapStringForMsgMapping += fmt.Sprintf("%v: %v,", k, this.MsgMapping[k]) } mapStringForMsgMapping += "}" keysForByteMapping := make([]bool, 0, len(this.ByteMapping)) for k := range this.ByteMapping { keysForByteMapping = append(keysForByteMapping, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForByteMapping) mapStringForByteMapping := "map[bool][]byte{" for _, k := range keysForByteMapping { mapStringForByteMapping += fmt.Sprintf("%v: %v,", k, this.ByteMapping[k]) } mapStringForByteMapping += "}" s := strings.Join([]string{`&MessageWithMap{`, `NameMapping:` + mapStringForNameMapping + `,`, `MsgMapping:` + mapStringForMsgMapping + `,`, `ByteMapping:` + mapStringForByteMapping + `,`, `}`, }, "") return s } func (this *FloatingPoint) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FloatingPoint{`, `F:` + fmt.Sprintf("%v", this.F) + `,`, `}`, }, "") return s } func (this *Uint128Pair) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Uint128Pair{`, `Left:` + fmt.Sprintf("%v", this.Left) + `,`, `Right:` + fmt.Sprintf("%v", this.Right) + `,`, `}`, }, "") return s } func (this *ContainsNestedMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ContainsNestedMap{`, `}`, }, "") return s } func (this *ContainsNestedMap_NestedMap) String() string { if this == nil { return "nil" } keysForNestedMapField := make([]string, 0, len(this.NestedMapField)) for k := range this.NestedMapField { keysForNestedMapField = append(keysForNestedMapField, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNestedMapField) mapStringForNestedMapField := "map[string]float64{" for _, k := range keysForNestedMapField { mapStringForNestedMapField += fmt.Sprintf("%v: %v,", k, this.NestedMapField[k]) } mapStringForNestedMapField += "}" s := strings.Join([]string{`&ContainsNestedMap_NestedMap{`, `NestedMapField:` + mapStringForNestedMapField + `,`, `}`, }, "") return s } func (this *NotPacked) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NotPacked{`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `}`, }, "") return s } func valueToStringTheproto3(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func init() { proto.RegisterFile("combos/neither/theproto3.proto", fileDescriptorTheproto3) } var fileDescriptorTheproto3 = []byte{ // 1609 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x99, 0xcf, 0x6f, 0xdb, 0x46, 0x16, 0xc7, 0x35, 0xfa, 0xad, 0xa7, 0x1f, 0xa6, 0x27, 0xd9, 0x85, 0xd6, 0xc0, 0xd2, 0xb2, 0x02, 0x24, 0x4a, 0xb0, 0x91, 0xb3, 0x4e, 0xb2, 0x9b, 0xba, 0x69, 0x53, 0x4b, 0xb1, 0x10, 0x37, 0xb6, 0xe2, 0x4a, 0x76, 0xdc, 0x22, 0x40, 0x0d, 0xca, 0xa6, 0x25, 0x22, 0x12, 0x69, 0x88, 0xa3, 0xa0, 0xbe, 0xe5, 0xcf, 0xe8, 0xad, 0xe8, 0xad, 0xc7, 0x22, 0x87, 0xa2, 0xc7, 0xf6, 0xe6, 0x63, 0x80, 0x5e, 0x8a, 0x1e, 0x82, 0x58, 0xbd, 0xe4, 0x98, 0x63, 0x8e, 0xc5, 0xcc, 0x50, 0xd2, 0x88, 0x1c, 0x8a, 0x4d, 0x2f, 0xbd, 0xf8, 0x24, 0xce, 0xf3, 0xfb, 0x7e, 0xe6, 0x71, 0x38, 0xf3, 0xf8, 0x05, 0x0d, 0xea, 0x81, 0xd5, 0x6b, 0x59, 0xf6, 0xb2, 0xa9, 0x1b, 0xa4, 0xa3, 0xf7, 0x97, 0x49, 0x47, 0x3f, 0xee, 0x5b, 0xc4, 0xba, 0x59, 0x66, 0x3f, 0x38, 0x35, 0x0e, 0x2c, 0x5c, 0x6f, 0x1b, 0xa4, 0x33, 0x68, 0x95, 0x0f, 0xac, 0xde, 0x72, 0xdb, 0x6a, 0x5b, 0xcb, 0x2c, 0xde, 0x1a, 0x1c, 0xb1, 0x11, 0x1b, 0xb0, 0x2b, 0xae, 0x5c, 0xf8, 0xbf, 0x6f, 0x3a, 0xd1, 0x6d, 0xb2, 0xec, 0xcc, 0xdb, 0xb2, 0x48, 0x87, 0x4e, 0x4a, 0x63, 0x5c, 0x58, 0xfc, 0x39, 0x06, 0x89, 0x2d, 0xdd, 0xb6, 0xb5, 0xb6, 0x8e, 0x31, 0x44, 0x4d, 0xad, 0xa7, 0xe7, 0x51, 0x01, 0x95, 0x52, 0x0d, 0x76, 0x8d, 0x6f, 0x43, 0xb2, 0x63, 0x74, 0xb5, 0xbe, 0x41, 0x4e, 0xf2, 0xe1, 0x02, 0x2a, 0xe5, 0x56, 0xfe, 0x55, 0x9e, 0x94, 0xed, 0x28, 0xcb, 0x0f, 0x06, 0x3d, 0x6b, 0xd0, 0x6f, 0x8c, 0x53, 0x71, 0x01, 0x32, 0x1d, 0xdd, 0x68, 0x77, 0xc8, 0xbe, 0x61, 0xee, 0x1f, 0xf4, 0xf2, 0x91, 0x02, 0x2a, 0x65, 0x1b, 0xc0, 0x63, 0x1b, 0x66, 0xb5, 0x47, 0x27, 0x3b, 0xd4, 0x88, 0x96, 0x8f, 0x16, 0x50, 0x29, 0xd3, 0x60, 0xd7, 0x78, 0x09, 0x32, 0x7d, 0xdd, 0x1e, 0x74, 0xc9, 0xfe, 0x81, 0x35, 0x30, 0x49, 0x3e, 0x51, 0x40, 0xa5, 0x48, 0x23, 0xcd, 0x63, 0x55, 0x1a, 0xc2, 0x97, 0x20, 0x4b, 0xfa, 0x03, 0x7d, 0xdf, 0x3e, 0xb0, 0x88, 0xdd, 0xd3, 0xcc, 0x7c, 0xb2, 0x80, 0x4a, 0xc9, 0x46, 0x86, 0x06, 0x9b, 0x4e, 0x0c, 0x5f, 0x84, 0x98, 0x7d, 0x60, 0xf5, 0xf5, 0x7c, 0xaa, 0x80, 0x4a, 0xe1, 0x06, 0x1f, 0x60, 0x05, 0x22, 0x4f, 0xf5, 0x93, 0x7c, 0xac, 0x10, 0x29, 0x45, 0x1b, 0xf4, 0x12, 0x5f, 0x85, 0xb8, 0xa9, 0xdb, 0x44, 0x3f, 0xcc, 0xc7, 0x0b, 0xa8, 0x94, 0x5e, 0x99, 0x17, 0x6e, 0xad, 0xce, 0xfe, 0xd0, 0x70, 0x12, 0xf0, 0x07, 0x90, 0x20, 0x7a, 0xbf, 0xaf, 0x19, 0x66, 0x1e, 0x0a, 0x91, 0x52, 0x7a, 0x65, 0x51, 0xb2, 0x0c, 0x3b, 0x3c, 0x63, 0xdd, 0x24, 0xfd, 0x93, 0xc6, 0x28, 0x1f, 0xdf, 0x86, 0x0c, 0xcb, 0x5b, 0xd9, 0x3f, 0x32, 0xf4, 0xee, 0x61, 0x3e, 0xcd, 0xe6, 0xc2, 0x65, 0xf6, 0x14, 0xea, 0x86, 0xf9, 0xe8, 0x98, 0xd4, 0x35, 0x62, 0x3c, 0xd3, 0x1b, 0x69, 0x9e, 0x57, 0xa3, 0x69, 0xb8, 0x36, 0x96, 0x3d, 0xd3, 0xba, 0x03, 0x3d, 0x9f, 0x65, 0xd3, 0x5e, 0x92, 0x4c, 0xbb, 0xcd, 0xd2, 0x1e, 0xd3, 0x2c, 0x3e, 0xb5, 0xc3, 0x61, 0x91, 0x85, 0x2d, 0xc8, 0x88, 0x75, 0x8d, 0x96, 0x01, 0xb1, 0xb5, 0x65, 0xcb, 0x70, 0x05, 0x62, 0x7c, 0x8a, 0xb0, 0xdf, 0x2a, 0xf0, 0xbf, 0xaf, 0x86, 0xef, 0xa0, 0x85, 0x6d, 0x50, 0xdc, 0xf3, 0x49, 0x90, 0x97, 0xa7, 0x91, 0x8a, 0x78, 0xb3, 0xeb, 0xe6, 0xa0, 0x27, 0x10, 0x8b, 0xf7, 0x20, 0xce, 0xf7, 0x0f, 0x4e, 0x43, 0x62, 0xb7, 0xfe, 0xb0, 0xfe, 0x68, 0xaf, 0xae, 0x84, 0x70, 0x12, 0xa2, 0xdb, 0xbb, 0xf5, 0xa6, 0x82, 0x70, 0x16, 0x52, 0xcd, 0xcd, 0xb5, 0xed, 0xe6, 0xce, 0x46, 0xf5, 0xa1, 0x12, 0xc6, 0x73, 0x90, 0xae, 0x6c, 0x6c, 0x6e, 0xee, 0x57, 0xd6, 0x36, 0x36, 0xd7, 0xbf, 0x50, 0x22, 0x45, 0x15, 0xe2, 0xbc, 0x4e, 0xfa, 0xe0, 0x5b, 0x03, 0xd3, 0x3c, 0x71, 0xb6, 0x30, 0x1f, 0x14, 0x5f, 0x60, 0x48, 0xac, 0x75, 0xbb, 0x5b, 0xda, 0xb1, 0x8d, 0xf7, 0x60, 0xbe, 0x49, 0xfa, 0x86, 0xd9, 0xde, 0xb1, 0xee, 0x5b, 0x83, 0x56, 0x57, 0xdf, 0xd2, 0x8e, 0xf3, 0x88, 0x2d, 0xed, 0x55, 0xe1, 0xbe, 0x9d, 0xf4, 0xb2, 0x27, 0x97, 0x2f, 0xb0, 0x97, 0x81, 0x77, 0x40, 0x19, 0x05, 0x6b, 0x5d, 0x4b, 0x23, 0x94, 0x1b, 0x66, 0xdc, 0xd2, 0x0c, 0xee, 0x28, 0x95, 0x63, 0x3d, 0x04, 0x7c, 0x17, 0x92, 0x1b, 0x26, 0xb9, 0xb9, 0x42, 0x69, 0x11, 0x46, 0x2b, 0x48, 0x68, 0xa3, 0x14, 0x4e, 0x19, 0x2b, 0x1c, 0xf5, 0xff, 0x6e, 0x51, 0x75, 0x74, 0x96, 0x9a, 0xa5, 0x4c, 0xd4, 0x6c, 0x88, 0xef, 0x41, 0x6a, 0xd7, 0x18, 0x4d, 0x1e, 0x63, 0xf2, 0x25, 0x89, 0x7c, 0x9c, 0xc3, 0xf5, 0x13, 0xcd, 0x08, 0xc0, 0xe7, 0x8f, 0xcf, 0x04, 0x08, 0x05, 0x4c, 0x34, 0x14, 0xd0, 0x1c, 0x57, 0x90, 0xf0, 0x05, 0x34, 0x5d, 0x15, 0x34, 0xc5, 0x0a, 0x9a, 0xe3, 0x0a, 0x92, 0x33, 0x01, 0x62, 0x05, 0xe3, 0x31, 0xae, 0x00, 0xd4, 0x8c, 0xaf, 0xf4, 0x43, 0x5e, 0x42, 0x8a, 0x11, 0x8a, 0x12, 0xc2, 0x24, 0x89, 0x23, 0x04, 0x15, 0x5e, 0x87, 0x74, 0xf3, 0x68, 0x02, 0x01, 0xcf, 0x39, 0x1e, 0x97, 0x71, 0xe4, 0xa2, 0x88, 0xba, 0x71, 0x29, 0xfc, 0x66, 0xd2, 0xb3, 0x4b, 0x11, 0xee, 0x46, 0x50, 0x4d, 0x4a, 0xe1, 0x90, 0x4c, 0x40, 0x29, 0x02, 0x45, 0xd4, 0xd1, 0x66, 0x58, 0xb1, 0x2c, 0x9a, 0xe9, 0x74, 0xa5, 0x45, 0x09, 0xc2, 0xc9, 0x70, 0x9a, 0xa1, 0x33, 0x62, 0x4f, 0x84, 0x6d, 0x72, 0x2a, 0xce, 0xf9, 0x3f, 0x91, 0x51, 0xce, 0xe8, 0x89, 0x8c, 0xc6, 0xe2, 0x39, 0xab, 0x9c, 0x10, 0xdd, 0xa6, 0x9c, 0xb9, 0xc0, 0x73, 0x36, 0x4a, 0x75, 0x9d, 0xb3, 0x51, 0x18, 0x7f, 0x06, 0x73, 0xa3, 0x18, 0x6d, 0x4f, 0x14, 0xaa, 0x30, 0xe8, 0x95, 0x19, 0x50, 0x27, 0x93, 0x33, 0xdd, 0x7a, 0x5c, 0x87, 0xdc, 0x28, 0xb4, 0x65, 0xb3, 0xdb, 0x9d, 0x67, 0xc4, 0xcb, 0x33, 0x88, 0x3c, 0x91, 0x03, 0x5d, 0xea, 0x85, 0xfb, 0xf0, 0x4f, 0x79, 0x37, 0x12, 0xdb, 0x6f, 0x8a, 0xb7, 0xdf, 0x8b, 0x62, 0xfb, 0x45, 0x62, 0xfb, 0xae, 0xc2, 0x3f, 0xa4, 0xbd, 0x27, 0x08, 0x12, 0x16, 0x21, 0x1f, 0x42, 0x76, 0xaa, 0xe5, 0x88, 0xe2, 0x98, 0x44, 0x1c, 0xf3, 0x8a, 0x27, 0x5b, 0x4b, 0xf2, 0xf6, 0x98, 0x12, 0x47, 0x44, 0xf1, 0x5d, 0xc8, 0x4d, 0xf7, 0x1b, 0x51, 0x9d, 0x95, 0xa8, 0xb3, 0x12, 0xb5, 0x7c, 0xee, 0xa8, 0x44, 0x1d, 0x75, 0xa9, 0x9b, 0xbe, 0x73, 0xcf, 0x4b, 0xd4, 0xf3, 0x12, 0xb5, 0x7c, 0x6e, 0x2c, 0x51, 0x63, 0x51, 0xfd, 0x11, 0xcc, 0xb9, 0x5a, 0x8c, 0x28, 0x4f, 0x48, 0xe4, 0x09, 0x51, 0xfe, 0x31, 0x28, 0xee, 0xe6, 0x22, 0xea, 0xe7, 0x24, 0xfa, 0x39, 0xd9, 0xf4, 0xf2, 0xea, 0xe3, 0x12, 0x79, 0x5c, 0x3a, 0xbd, 0x5c, 0xaf, 0x48, 0xf4, 0x8a, 0xa8, 0x5f, 0x85, 0x8c, 0xd8, 0x4d, 0x44, 0x6d, 0x52, 0xa2, 0x4d, 0xba, 0xd7, 0x7d, 0xaa, 0x99, 0x04, 0xed, 0xf4, 0x94, 0xcf, 0x71, 0x99, 0x6a, 0x21, 0x41, 0x90, 0x8c, 0x08, 0x79, 0x0c, 0x17, 0x65, 0x2d, 0x43, 0xc2, 0x28, 0x89, 0x8c, 0x1c, 0xf5, 0x88, 0x13, 0xb3, 0x47, 0x55, 0x53, 0xc6, 0x69, 0xe1, 0x09, 0x5c, 0x90, 0x34, 0x0e, 0x09, 0xb6, 0x3c, 0xed, 0xc6, 0xf2, 0x02, 0x96, 0x35, 0x01, 0xc3, 0x6c, 0x6f, 0x5b, 0x86, 0x49, 0x44, 0x57, 0xf6, 0xc3, 0x05, 0xc8, 0x39, 0xed, 0xe9, 0x51, 0xff, 0x50, 0xef, 0xeb, 0x87, 0xf8, 0x4b, 0x7f, 0xef, 0x74, 0xc3, 0xdb, 0xd4, 0x1c, 0xd5, 0x7b, 0x58, 0xa8, 0x27, 0xbe, 0x16, 0x6a, 0x39, 0x18, 0x1f, 0xe4, 0xa4, 0xaa, 0x1e, 0x27, 0x75, 0xc5, 0x1f, 0xea, 0x67, 0xa8, 0xaa, 0x1e, 0x43, 0x35, 0x1b, 0x22, 0xf5, 0x55, 0x35, 0xaf, 0xaf, 0x2a, 0xf9, 0x53, 0xfc, 0xed, 0x55, 0xcd, 0x6b, 0xaf, 0x02, 0x38, 0x72, 0x97, 0x55, 0xf3, 0xba, 0xac, 0x19, 0x1c, 0x7f, 0xb3, 0x55, 0xf3, 0x9a, 0xad, 0x00, 0x8e, 0xdc, 0x73, 0x6d, 0x48, 0x3c, 0xd7, 0x55, 0x7f, 0xd0, 0x2c, 0xeb, 0xb5, 0x29, 0xb3, 0x5e, 0xd7, 0x66, 0x14, 0x35, 0xd3, 0x81, 0x6d, 0x48, 0x1c, 0x58, 0x50, 0x61, 0x3e, 0x46, 0x6c, 0x53, 0x66, 0xc4, 0x02, 0x0b, 0xf3, 0xf3, 0x63, 0x9f, 0xb8, 0xfd, 0xd8, 0x65, 0x7f, 0x92, 0xdc, 0x96, 0xd5, 0xbc, 0xb6, 0xac, 0x14, 0x74, 0xe6, 0x64, 0xee, 0xec, 0x89, 0xaf, 0x3b, 0xfb, 0x13, 0x47, 0x38, 0xc8, 0xa4, 0x7d, 0xee, 0x67, 0xd2, 0xca, 0xc1, 0xec, 0xd9, 0x5e, 0x6d, 0xd7, 0xc7, 0xab, 0x5d, 0x0f, 0x06, 0x9f, 0x5b, 0xb6, 0x73, 0xcb, 0x76, 0x6e, 0xd9, 0xce, 0x2d, 0xdb, 0xdf, 0x6f, 0xd9, 0x56, 0xa3, 0x5f, 0x7f, 0xbb, 0x88, 0x8a, 0xbf, 0x44, 0x20, 0xe7, 0x7c, 0x19, 0xdc, 0x33, 0x48, 0x87, 0xb6, 0xb7, 0x2d, 0xc8, 0x98, 0x5a, 0x4f, 0xdf, 0xef, 0x69, 0xc7, 0xc7, 0x86, 0xd9, 0x76, 0x3c, 0xdb, 0x35, 0xef, 0xa7, 0x44, 0x47, 0x50, 0xae, 0x6b, 0x3d, 0xda, 0xab, 0x68, 0xb2, 0xf3, 0xba, 0x31, 0x27, 0x11, 0xfc, 0x29, 0xa4, 0x7b, 0x76, 0x7b, 0x4c, 0x0b, 0x7b, 0x5e, 0x84, 0x2e, 0x1a, 0xbf, 0xd3, 0x09, 0x0c, 0x7a, 0xe3, 0x00, 0x2d, 0xad, 0x75, 0x42, 0x26, 0xa5, 0x45, 0x82, 0x4a, 0xa3, 0xcf, 0x74, 0xba, 0xb4, 0xd6, 0x24, 0x42, 0xb7, 0xad, 0xbb, 0xf6, 0xa0, 0x4e, 0x37, 0xb5, 0x79, 0xf6, 0x60, 0xce, 0x55, 0xad, 0xe4, 0xcc, 0xff, 0x85, 0x67, 0x43, 0x0b, 0x73, 0x57, 0x1e, 0x74, 0x26, 0xc4, 0x0d, 0x59, 0xfc, 0x37, 0x64, 0xa7, 0xd8, 0x38, 0x03, 0xe8, 0x88, 0x49, 0x51, 0x03, 0x1d, 0x15, 0xbf, 0x41, 0x90, 0xa6, 0x7d, 0xf2, 0xbf, 0x2b, 0x77, 0xb6, 0x35, 0xa3, 0x8f, 0x1f, 0x40, 0xb4, 0xab, 0x1f, 0x11, 0x96, 0x90, 0xa9, 0xdc, 0x3a, 0x7d, 0xb5, 0x18, 0xfa, 0xed, 0xd5, 0xe2, 0x7f, 0x02, 0xfe, 0x4b, 0x30, 0xb0, 0x89, 0xd5, 0x2b, 0x3b, 0x9c, 0x06, 0x23, 0xe0, 0x1a, 0xc4, 0xfa, 0x46, 0xbb, 0x43, 0x78, 0x49, 0x95, 0x1b, 0xef, 0x8d, 0xe1, 0xf2, 0xe2, 0x29, 0x82, 0xf9, 0xaa, 0x65, 0x12, 0xcd, 0x30, 0x6d, 0xfe, 0xb5, 0x96, 0xbe, 0x21, 0x5f, 0x20, 0x48, 0x8d, 0x47, 0xb8, 0x05, 0xb9, 0xf1, 0x80, 0x7d, 0x04, 0x77, 0x76, 0xea, 0xaa, 0xb0, 0xc2, 0x1e, 0x46, 0x59, 0x72, 0xc5, 0xc4, 0xce, 0x3b, 0x79, 0x3a, 0xb8, 0xb0, 0x06, 0x17, 0x24, 0x69, 0xef, 0xf3, 0x42, 0x2e, 0x2e, 0x41, 0xaa, 0x6e, 0x91, 0x6d, 0xed, 0xe0, 0x29, 0xfb, 0xe4, 0x3c, 0xf9, 0xaf, 0x42, 0x25, 0xac, 0x84, 0x98, 0xf8, 0xda, 0x12, 0x24, 0x9c, 0xd3, 0x8f, 0xe3, 0x10, 0xde, 0x5a, 0x53, 0x42, 0xec, 0xb7, 0xa2, 0x20, 0xf6, 0x5b, 0x55, 0xc2, 0x95, 0xcd, 0xd3, 0x33, 0x35, 0xf4, 0xf2, 0x4c, 0x0d, 0xfd, 0x7a, 0xa6, 0x86, 0x5e, 0x9f, 0xa9, 0xe8, 0xcd, 0x99, 0x8a, 0xde, 0x9e, 0xa9, 0xe8, 0xdd, 0x99, 0x8a, 0x9e, 0x0f, 0x55, 0xf4, 0xdd, 0x50, 0x45, 0xdf, 0x0f, 0x55, 0xf4, 0xe3, 0x50, 0x45, 0x3f, 0x0d, 0x55, 0x74, 0x3a, 0x54, 0x43, 0x2f, 0x87, 0x6a, 0xe8, 0xf5, 0x50, 0x45, 0x6f, 0x86, 0x6a, 0xe8, 0xed, 0x50, 0x45, 0xef, 0x86, 0x6a, 0xe8, 0xf9, 0xef, 0x6a, 0xa8, 0x15, 0xe7, 0xcb, 0xf3, 0x47, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe2, 0x1d, 0x88, 0x27, 0x63, 0x1a, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/theproto3/combos/neither/theproto3.proto000066400000000000000000000124241317075173200262120ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto3"; package theproto3; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/combos/both/thetest.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Message { enum Humour { UNKNOWN = 0; PUNS = 1; SLAPSTICK = 2; BILL_BAILEY = 3; } string name = 1; Humour hilarity = 2; uint32 height_in_cm = 3; bytes data = 4; int64 result_count = 7; bool true_scotsman = 8; float score = 9; repeated uint64 key = 5; Nested nested = 6; map terrain = 10; test.NinOptNative proto2_field = 11; map proto2_value = 13; } message Nested { string bunny = 1; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message MessageWithMap { map name_mapping = 1; map msg_mapping = 2; map byte_mapping = 3; } message FloatingPoint { double f = 1; } message Uint128Pair { bytes left = 1 [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; bytes right = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message ContainsNestedMap { message NestedMap { map NestedMapField = 1; } } message NotPacked { repeated uint64 key = 5 [packed=false]; }golang-gogoprotobuf-0.5/test/theproto3/combos/neither/theproto3pb_test.go000066400000000000000000001764611317075173200270510ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/theproto3.proto /* Package theproto3 is a generated protocol buffer package. It is generated from these files: combos/neither/theproto3.proto It has these top-level messages: Message Nested AllMaps AllMapsOrdered MessageWithMap FloatingPoint Uint128Pair ContainsNestedMap NotPacked */ package theproto3 import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/test/combos/both" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Message{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nested, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNested(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNested(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Nested{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAllMapsProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMaps(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMaps{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAllMapsOrderedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsOrderedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMapsOrdered(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMapsOrdered{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageWithMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMessageWithMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MessageWithMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessageWithMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageWithMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessageWithMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MessageWithMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestFloatingPointProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkFloatingPointProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkFloatingPointProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedFloatingPoint(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &FloatingPoint{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUint128PairProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUint128PairProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Uint128Pair, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUint128Pair(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUint128PairProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUint128Pair(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Uint128Pair{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkContainsNestedMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedContainsNestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkContainsNestedMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedContainsNestedMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ContainsNestedMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMap_NestedMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkContainsNestedMap_NestedMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap_NestedMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedContainsNestedMap_NestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkContainsNestedMap_NestedMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedContainsNestedMap_NestedMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ContainsNestedMap_NestedMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNotPackedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNotPackedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NotPacked, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNotPacked(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNotPackedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNotPacked(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NotPacked{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsOrderedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageWithMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFloatingPointJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUint128PairJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestContainsNestedMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNotPackedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Nested{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Nested{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageWithMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageWithMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUint128PairProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUint128PairProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNotPackedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNotPackedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTheproto3Description(t *testing.T) { Theproto3Description() } func TestMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsOrderedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageWithMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFloatingPointVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUint128PairVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestContainsNestedMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestContainsNestedMap_NestedMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNotPackedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsOrderedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestMessageWithMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestFloatingPointFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUint128PairFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestContainsNestedMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestContainsNestedMap_NestedMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNotPackedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestMessageGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsOrderedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMessageWithMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFloatingPointGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUint128PairGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestContainsNestedMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestContainsNestedMap_NestedMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNotPackedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nested, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNested(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsOrderedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMessageWithMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageWithMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MessageWithMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessageWithMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestFloatingPointSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkFloatingPointSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUint128PairSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUint128PairSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Uint128Pair, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUint128Pair(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkContainsNestedMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedContainsNestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMap_NestedMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkContainsNestedMap_NestedMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap_NestedMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedContainsNestedMap_NestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNotPackedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNotPackedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NotPacked, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNotPacked(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMessageStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsOrderedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestMessageWithMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFloatingPointStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUint128PairStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestContainsNestedMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestContainsNestedMap_NestedMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNotPackedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/theproto3/combos/unmarshaler/000077500000000000000000000000001317075173200240565ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/theproto3/combos/unmarshaler/proto3_test.go000066400000000000000000000111171317075173200266730ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package theproto3 import ( "reflect" "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": {}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestCustomTypeSize(t *testing.T) { m := &Uint128Pair{} m.Size() // Should not panic. } func TestCustomTypeMarshalUnmarshal(t *testing.T) { m1 := &Uint128Pair{} if b, err := proto.Marshal(m1); err != nil { t.Fatal(err) } else { m2 := &Uint128Pair{} if err := proto.Unmarshal(b, m2); err != nil { t.Fatal(err) } if !reflect.DeepEqual(m1, m2) { t.Errorf("expected %+v, got %+v", m1, m2) } } } func TestNotPackedToPacked(t *testing.T) { input := []uint64{1, 10e9} notpacked := &NotPacked{Key: input} if data, err := proto.Marshal(notpacked); err != nil { t.Fatal(err) } else { packed := &Message{} if err := proto.Unmarshal(data, packed); err != nil { t.Fatal(err) } output := packed.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } func TestPackedToNotPacked(t *testing.T) { input := []uint64{1, 10e9} packed := &Message{Key: input} if data, err := proto.Marshal(packed); err != nil { t.Fatal(err) } else { notpacked := &NotPacked{} if err := proto.Unmarshal(data, notpacked); err != nil { t.Fatal(err) } output := notpacked.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } golang-gogoprotobuf-0.5/test/theproto3/combos/unmarshaler/theproto3.pb.go000066400000000000000000011402571317075173200267460ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/theproto3.proto /* Package theproto3 is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/theproto3.proto It has these top-level messages: Message Nested AllMaps AllMapsOrdered MessageWithMap FloatingPoint Uint128Pair ContainsNestedMap NotPacked */ package theproto3 import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import test "github.com/gogo/protobuf/test/combos/both" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import io "io" import encoding_binary "encoding/binary" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type MapEnum int32 const ( MA MapEnum = 0 MB MapEnum = 1 MC MapEnum = 2 ) var MapEnum_name = map[int32]string{ 0: "MA", 1: "MB", 2: "MC", } var MapEnum_value = map[string]int32{ "MA": 0, "MB": 1, "MC": 2, } func (MapEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0} } type Message_Humour int32 const ( UNKNOWN Message_Humour = 0 PUNS Message_Humour = 1 SLAPSTICK Message_Humour = 2 BILL_BAILEY Message_Humour = 3 ) var Message_Humour_name = map[int32]string{ 0: "UNKNOWN", 1: "PUNS", 2: "SLAPSTICK", 3: "BILL_BAILEY", } var Message_Humour_value = map[string]int32{ "UNKNOWN": 0, "PUNS": 1, "SLAPSTICK": 2, "BILL_BAILEY": 3, } func (Message_Humour) EnumDescriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0, 0} } type Message struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Hilarity Message_Humour `protobuf:"varint,2,opt,name=hilarity,proto3,enum=theproto3.Message_Humour" json:"hilarity,omitempty"` HeightInCm uint32 `protobuf:"varint,3,opt,name=height_in_cm,json=heightInCm,proto3" json:"height_in_cm,omitempty"` Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` ResultCount int64 `protobuf:"varint,7,opt,name=result_count,json=resultCount,proto3" json:"result_count,omitempty"` TrueScotsman bool `protobuf:"varint,8,opt,name=true_scotsman,json=trueScotsman,proto3" json:"true_scotsman,omitempty"` Score float32 `protobuf:"fixed32,9,opt,name=score,proto3" json:"score,omitempty"` Key []uint64 `protobuf:"varint,5,rep,packed,name=key" json:"key,omitempty"` Nested *Nested `protobuf:"bytes,6,opt,name=nested" json:"nested,omitempty"` Terrain map[int64]*Nested `protobuf:"bytes,10,rep,name=terrain" json:"terrain,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Proto2Field *test.NinOptNative `protobuf:"bytes,11,opt,name=proto2_field,json=proto2Field" json:"proto2_field,omitempty"` Proto2Value map[int64]*test.NinOptEnum `protobuf:"bytes,13,rep,name=proto2_value,json=proto2Value" json:"proto2_value,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *Message) Reset() { *m = Message{} } func (*Message) ProtoMessage() {} func (*Message) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{0} } type Nested struct { Bunny string `protobuf:"bytes,1,opt,name=bunny,proto3" json:"bunny,omitempty"` } func (m *Nested) Reset() { *m = Nested{} } func (*Nested) ProtoMessage() {} func (*Nested) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{1} } type AllMaps struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key,proto3" protobuf_val:"zigzag32,2,opt,name=value,proto3"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"zigzag64,2,opt,name=value,proto3"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=theproto3.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *AllMaps) Reset() { *m = AllMaps{} } func (*AllMaps) ProtoMessage() {} func (*AllMaps) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{2} } type AllMapsOrdered struct { StringToDoubleMap map[string]float64 `protobuf:"bytes,1,rep,name=StringToDoubleMap" json:"StringToDoubleMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` StringToFloatMap map[string]float32 `protobuf:"bytes,2,rep,name=StringToFloatMap" json:"StringToFloatMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Int32Map map[int32]int32 `protobuf:"bytes,3,rep,name=Int32Map" json:"Int32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Int64Map map[int64]int64 `protobuf:"bytes,4,rep,name=Int64Map" json:"Int64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint32Map map[uint32]uint32 `protobuf:"bytes,5,rep,name=Uint32Map" json:"Uint32Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Uint64Map map[uint64]uint64 `protobuf:"bytes,6,rep,name=Uint64Map" json:"Uint64Map,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` Sint32Map map[int32]int32 `protobuf:"bytes,7,rep,name=Sint32Map" json:"Sint32Map,omitempty" protobuf_key:"zigzag32,1,opt,name=key,proto3" protobuf_val:"zigzag32,2,opt,name=value,proto3"` Sint64Map map[int64]int64 `protobuf:"bytes,8,rep,name=Sint64Map" json:"Sint64Map,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"zigzag64,2,opt,name=value,proto3"` Fixed32Map map[uint32]uint32 `protobuf:"bytes,9,rep,name=Fixed32Map" json:"Fixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Sfixed32Map map[int32]int32 `protobuf:"bytes,10,rep,name=Sfixed32Map" json:"Sfixed32Map,omitempty" protobuf_key:"fixed32,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` Fixed64Map map[uint64]uint64 `protobuf:"bytes,11,rep,name=Fixed64Map" json:"Fixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` Sfixed64Map map[int64]int64 `protobuf:"bytes,12,rep,name=Sfixed64Map" json:"Sfixed64Map,omitempty" protobuf_key:"fixed64,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` BoolMap map[bool]bool `protobuf:"bytes,13,rep,name=BoolMap" json:"BoolMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` StringMap map[string]string `protobuf:"bytes,14,rep,name=StringMap" json:"StringMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToBytesMap map[string][]byte `protobuf:"bytes,15,rep,name=StringToBytesMap" json:"StringToBytesMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` StringToEnumMap map[string]MapEnum `protobuf:"bytes,16,rep,name=StringToEnumMap" json:"StringToEnumMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3,enum=theproto3.MapEnum"` StringToMsgMap map[string]*FloatingPoint `protobuf:"bytes,17,rep,name=StringToMsgMap" json:"StringToMsgMap,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *AllMapsOrdered) Reset() { *m = AllMapsOrdered{} } func (*AllMapsOrdered) ProtoMessage() {} func (*AllMapsOrdered) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{3} } type MessageWithMap struct { NameMapping map[int32]string `protobuf:"bytes,1,rep,name=name_mapping,json=nameMapping" json:"name_mapping,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` MsgMapping map[int64]*FloatingPoint `protobuf:"bytes,2,rep,name=msg_mapping,json=msgMapping" json:"msg_mapping,omitempty" protobuf_key:"zigzag64,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` ByteMapping map[bool][]byte `protobuf:"bytes,3,rep,name=byte_mapping,json=byteMapping" json:"byte_mapping,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *MessageWithMap) Reset() { *m = MessageWithMap{} } func (*MessageWithMap) ProtoMessage() {} func (*MessageWithMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{4} } type FloatingPoint struct { F float64 `protobuf:"fixed64,1,opt,name=f,proto3" json:"f,omitempty"` } func (m *FloatingPoint) Reset() { *m = FloatingPoint{} } func (*FloatingPoint) ProtoMessage() {} func (*FloatingPoint) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{5} } type Uint128Pair struct { Left github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,1,opt,name=left,proto3,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"left"` Right *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=right,proto3,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"right,omitempty"` } func (m *Uint128Pair) Reset() { *m = Uint128Pair{} } func (*Uint128Pair) ProtoMessage() {} func (*Uint128Pair) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{6} } type ContainsNestedMap struct { } func (m *ContainsNestedMap) Reset() { *m = ContainsNestedMap{} } func (*ContainsNestedMap) ProtoMessage() {} func (*ContainsNestedMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{7} } type ContainsNestedMap_NestedMap struct { NestedMapField map[string]float64 `protobuf:"bytes,1,rep,name=NestedMapField" json:"NestedMapField,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"fixed64,2,opt,name=value,proto3"` } func (m *ContainsNestedMap_NestedMap) Reset() { *m = ContainsNestedMap_NestedMap{} } func (*ContainsNestedMap_NestedMap) ProtoMessage() {} func (*ContainsNestedMap_NestedMap) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{7, 0} } type NotPacked struct { Key []uint64 `protobuf:"varint,5,rep,name=key" json:"key,omitempty"` } func (m *NotPacked) Reset() { *m = NotPacked{} } func (*NotPacked) ProtoMessage() {} func (*NotPacked) Descriptor() ([]byte, []int) { return fileDescriptorTheproto3, []int{8} } func init() { proto.RegisterType((*Message)(nil), "theproto3.Message") proto.RegisterType((*Nested)(nil), "theproto3.Nested") proto.RegisterType((*AllMaps)(nil), "theproto3.AllMaps") proto.RegisterType((*AllMapsOrdered)(nil), "theproto3.AllMapsOrdered") proto.RegisterType((*MessageWithMap)(nil), "theproto3.MessageWithMap") proto.RegisterType((*FloatingPoint)(nil), "theproto3.FloatingPoint") proto.RegisterType((*Uint128Pair)(nil), "theproto3.Uint128Pair") proto.RegisterType((*ContainsNestedMap)(nil), "theproto3.ContainsNestedMap") proto.RegisterType((*ContainsNestedMap_NestedMap)(nil), "theproto3.ContainsNestedMap.NestedMap") proto.RegisterType((*NotPacked)(nil), "theproto3.NotPacked") proto.RegisterEnum("theproto3.MapEnum", MapEnum_name, MapEnum_value) proto.RegisterEnum("theproto3.Message_Humour", Message_Humour_name, Message_Humour_value) } func (this *Message) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *Nested) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *AllMaps) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *AllMapsOrdered) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *MessageWithMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *FloatingPoint) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *Uint128Pair) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *ContainsNestedMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *ContainsNestedMap_NestedMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func (this *NotPacked) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return Theproto3Description() } func Theproto3Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 7921 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5b, 0x70, 0x23, 0xd7, 0x99, 0x1e, 0x1b, 0x0d, 0x92, 0xe0, 0x0f, 0x90, 0x6c, 0x36, 0x47, 0x14, 0x44, 0x8d, 0xc8, 0x19, 0x68, 0x34, 0xa2, 0xb8, 0x16, 0x67, 0x86, 0xc3, 0xb9, 0x61, 0x2c, 0x69, 0x01, 0x10, 0x1c, 0x71, 0xcc, 0x9b, 0x9b, 0xa4, 0xa5, 0x59, 0xa7, 0x82, 0x6a, 0x02, 0x87, 0x24, 0x24, 0xa0, 0x1b, 0x8b, 0x6e, 0x48, 0xa2, 0x2a, 0x95, 0x52, 0xd6, 0xc9, 0xc6, 0x9b, 0x54, 0xae, 0x9b, 0x54, 0xbc, 0x8e, 0x2f, 0xf2, 0xa6, 0x36, 0xf6, 0xee, 0xe6, 0xe2, 0xf5, 0x6e, 0x9c, 0xcd, 0x56, 0x2a, 0xab, 0x3c, 0x38, 0x99, 0xbc, 0xa4, 0xbc, 0xc9, 0x4b, 0xca, 0x95, 0x52, 0x59, 0x63, 0xa7, 0xd6, 0x49, 0x9c, 0xc4, 0xd9, 0x75, 0x55, 0xb6, 0xca, 0xfb, 0x90, 0x3a, 0xb7, 0xee, 0x73, 0x0e, 0x1a, 0x68, 0x70, 0x24, 0xd9, 0xfb, 0xe0, 0x97, 0x19, 0xf4, 0x39, 0xff, 0xf7, 0xf5, 0xdf, 0xff, 0xed, 0xfc, 0x7d, 0xba, 0x01, 0xc2, 0x6f, 0xde, 0x84, 0x73, 0x47, 0xae, 0x7b, 0xd4, 0x40, 0x97, 0x5a, 0x6d, 0xd7, 0x77, 0x0f, 0x3a, 0x87, 0x97, 0x6a, 0xc8, 0xab, 0xb6, 0xeb, 0x2d, 0xdf, 0x6d, 0x2f, 0x91, 0x31, 0x73, 0x92, 0x4a, 0x2c, 0x71, 0x89, 0xdc, 0x26, 0x4c, 0xad, 0xd5, 0x1b, 0x68, 0x35, 0x10, 0xdc, 0x45, 0xbe, 0x79, 0x13, 0x92, 0x87, 0xf5, 0x06, 0xca, 0x6a, 0xe7, 0xf4, 0x85, 0xf4, 0xf2, 0x85, 0x25, 0x05, 0xb4, 0x24, 0x23, 0x76, 0xf0, 0xb0, 0x45, 0x10, 0xb9, 0xef, 0x26, 0x61, 0x3a, 0x62, 0xd6, 0x34, 0x21, 0xe9, 0xd8, 0x4d, 0xcc, 0xa8, 0x2d, 0x8c, 0x59, 0xe4, 0xb3, 0x99, 0x85, 0xd1, 0x96, 0x5d, 0x7d, 0xd5, 0x3e, 0x42, 0xd9, 0x04, 0x19, 0xe6, 0x87, 0xe6, 0x1c, 0x40, 0x0d, 0xb5, 0x90, 0x53, 0x43, 0x4e, 0xf5, 0x24, 0xab, 0x9f, 0xd3, 0x17, 0xc6, 0x2c, 0x61, 0xc4, 0xfc, 0x19, 0x98, 0x6a, 0x75, 0x0e, 0x1a, 0xf5, 0x6a, 0x45, 0x10, 0x83, 0x73, 0xfa, 0xc2, 0xb0, 0x65, 0xd0, 0x89, 0xd5, 0x50, 0xf8, 0x69, 0x98, 0x7c, 0x1d, 0xd9, 0xaf, 0x8a, 0xa2, 0x69, 0x22, 0x3a, 0x81, 0x87, 0x05, 0xc1, 0x12, 0x64, 0x9a, 0xc8, 0xf3, 0xec, 0x23, 0x54, 0xf1, 0x4f, 0x5a, 0x28, 0x9b, 0x24, 0x57, 0x7f, 0xae, 0xeb, 0xea, 0xd5, 0x2b, 0x4f, 0x33, 0xd4, 0xde, 0x49, 0x0b, 0x99, 0x05, 0x18, 0x43, 0x4e, 0xa7, 0x49, 0x19, 0x86, 0x7b, 0xd8, 0xaf, 0xec, 0x74, 0x9a, 0x2a, 0x4b, 0x0a, 0xc3, 0x18, 0xc5, 0xa8, 0x87, 0xda, 0xaf, 0xd5, 0xab, 0x28, 0x3b, 0x42, 0x08, 0x9e, 0xee, 0x22, 0xd8, 0xa5, 0xf3, 0x2a, 0x07, 0xc7, 0x99, 0x25, 0x18, 0x43, 0x6f, 0xf8, 0xc8, 0xf1, 0xea, 0xae, 0x93, 0x1d, 0x25, 0x24, 0x4f, 0x45, 0x78, 0x11, 0x35, 0x6a, 0x2a, 0x45, 0x88, 0x33, 0xaf, 0xc3, 0xa8, 0xdb, 0xf2, 0xeb, 0xae, 0xe3, 0x65, 0x53, 0xe7, 0xb4, 0x85, 0xf4, 0xf2, 0xd9, 0xc8, 0x40, 0xd8, 0xa6, 0x32, 0x16, 0x17, 0x36, 0xd7, 0xc1, 0xf0, 0xdc, 0x4e, 0xbb, 0x8a, 0x2a, 0x55, 0xb7, 0x86, 0x2a, 0x75, 0xe7, 0xd0, 0xcd, 0x8e, 0x11, 0x82, 0xf9, 0xee, 0x0b, 0x21, 0x82, 0x25, 0xb7, 0x86, 0xd6, 0x9d, 0x43, 0xd7, 0x9a, 0xf0, 0xa4, 0x63, 0x73, 0x06, 0x46, 0xbc, 0x13, 0xc7, 0xb7, 0xdf, 0xc8, 0x66, 0x48, 0x84, 0xb0, 0xa3, 0xdc, 0xbf, 0x1a, 0x81, 0xc9, 0x41, 0x42, 0xec, 0x36, 0x0c, 0x1f, 0xe2, 0xab, 0xcc, 0x26, 0x4e, 0x63, 0x03, 0x8a, 0x91, 0x8d, 0x38, 0xf2, 0x90, 0x46, 0x2c, 0x40, 0xda, 0x41, 0x9e, 0x8f, 0x6a, 0x34, 0x22, 0xf4, 0x01, 0x63, 0x0a, 0x28, 0xa8, 0x3b, 0xa4, 0x92, 0x0f, 0x15, 0x52, 0x2f, 0xc3, 0x64, 0xa0, 0x52, 0xa5, 0x6d, 0x3b, 0x47, 0x3c, 0x36, 0x2f, 0xc5, 0x69, 0xb2, 0x54, 0xe6, 0x38, 0x0b, 0xc3, 0xac, 0x09, 0x24, 0x1d, 0x9b, 0xab, 0x00, 0xae, 0x83, 0xdc, 0xc3, 0x4a, 0x0d, 0x55, 0x1b, 0xd9, 0x54, 0x0f, 0x2b, 0x6d, 0x63, 0x91, 0x2e, 0x2b, 0xb9, 0x74, 0xb4, 0xda, 0x30, 0x6f, 0x85, 0xa1, 0x36, 0xda, 0x23, 0x52, 0x36, 0x69, 0x92, 0x75, 0x45, 0xdb, 0x3e, 0x4c, 0xb4, 0x11, 0x8e, 0x7b, 0x54, 0x63, 0x57, 0x36, 0x46, 0x94, 0x58, 0x8a, 0xbd, 0x32, 0x8b, 0xc1, 0xe8, 0x85, 0x8d, 0xb7, 0xc5, 0x43, 0xf3, 0x49, 0x08, 0x06, 0x2a, 0x24, 0xac, 0x80, 0x54, 0xa1, 0x0c, 0x1f, 0xdc, 0xb2, 0x9b, 0x68, 0xf6, 0x4d, 0x98, 0x90, 0xcd, 0x63, 0x9e, 0x81, 0x61, 0xcf, 0xb7, 0xdb, 0x3e, 0x89, 0xc2, 0x61, 0x8b, 0x1e, 0x98, 0x06, 0xe8, 0xc8, 0xa9, 0x91, 0x2a, 0x37, 0x6c, 0xe1, 0x8f, 0xe6, 0xcf, 0x86, 0x17, 0xac, 0x93, 0x0b, 0xbe, 0xd8, 0xed, 0x51, 0x89, 0x59, 0xbd, 0xee, 0xd9, 0x1b, 0x30, 0x2e, 0x5d, 0xc0, 0xa0, 0xa7, 0xce, 0xfd, 0x05, 0x78, 0x24, 0x92, 0xda, 0x7c, 0x19, 0xce, 0x74, 0x9c, 0xba, 0xe3, 0xa3, 0x76, 0xab, 0x8d, 0x70, 0xc4, 0xd2, 0x53, 0x65, 0xff, 0x70, 0xb4, 0x47, 0xcc, 0xed, 0x8b, 0xd2, 0x94, 0xc5, 0x9a, 0xee, 0x74, 0x0f, 0x2e, 0x8e, 0xa5, 0xbe, 0x37, 0x6a, 0xbc, 0xf5, 0xd6, 0x5b, 0x6f, 0x25, 0x72, 0x9f, 0x19, 0x81, 0x33, 0x51, 0x39, 0x13, 0x99, 0xbe, 0x33, 0x30, 0xe2, 0x74, 0x9a, 0x07, 0xa8, 0x4d, 0x8c, 0x34, 0x6c, 0xb1, 0x23, 0xb3, 0x00, 0xc3, 0x0d, 0xfb, 0x00, 0x35, 0xb2, 0xc9, 0x73, 0xda, 0xc2, 0xc4, 0xf2, 0xcf, 0x0c, 0x94, 0x95, 0x4b, 0x1b, 0x18, 0x62, 0x51, 0xa4, 0xf9, 0x3c, 0x24, 0x59, 0x89, 0xc6, 0x0c, 0x8b, 0x83, 0x31, 0xe0, 0x5c, 0xb2, 0x08, 0xce, 0x7c, 0x1c, 0xc6, 0xf0, 0xff, 0x34, 0x36, 0x46, 0x88, 0xce, 0x29, 0x3c, 0x80, 0xe3, 0xc2, 0x9c, 0x85, 0x14, 0x49, 0x93, 0x1a, 0xe2, 0x4b, 0x5b, 0x70, 0x8c, 0x03, 0xab, 0x86, 0x0e, 0xed, 0x4e, 0xc3, 0xaf, 0xbc, 0x66, 0x37, 0x3a, 0x88, 0x04, 0xfc, 0x98, 0x95, 0x61, 0x83, 0x9f, 0xc0, 0x63, 0xe6, 0x3c, 0xa4, 0x69, 0x56, 0xd5, 0x9d, 0x1a, 0x7a, 0x83, 0x54, 0xcf, 0x61, 0x8b, 0x26, 0xda, 0x3a, 0x1e, 0xc1, 0xa7, 0x7f, 0xc5, 0x73, 0x1d, 0x1e, 0x9a, 0xe4, 0x14, 0x78, 0x80, 0x9c, 0xfe, 0x86, 0x5a, 0xb8, 0x9f, 0x88, 0xbe, 0x3c, 0x35, 0xa6, 0x72, 0x5f, 0x4f, 0x40, 0x92, 0xd4, 0x8b, 0x49, 0x48, 0xef, 0xdd, 0xdb, 0x29, 0x57, 0x56, 0xb7, 0xf7, 0x8b, 0x1b, 0x65, 0x43, 0x33, 0x27, 0x00, 0xc8, 0xc0, 0xda, 0xc6, 0x76, 0x61, 0xcf, 0x48, 0x04, 0xc7, 0xeb, 0x5b, 0x7b, 0xd7, 0x57, 0x0c, 0x3d, 0x00, 0xec, 0xd3, 0x81, 0xa4, 0x28, 0x70, 0x75, 0xd9, 0x18, 0x36, 0x0d, 0xc8, 0x50, 0x82, 0xf5, 0x97, 0xcb, 0xab, 0xd7, 0x57, 0x8c, 0x11, 0x79, 0xe4, 0xea, 0xb2, 0x31, 0x6a, 0x8e, 0xc3, 0x18, 0x19, 0x29, 0x6e, 0x6f, 0x6f, 0x18, 0xa9, 0x80, 0x73, 0x77, 0xcf, 0x5a, 0xdf, 0xba, 0x63, 0x8c, 0x05, 0x9c, 0x77, 0xac, 0xed, 0xfd, 0x1d, 0x03, 0x02, 0x86, 0xcd, 0xf2, 0xee, 0x6e, 0xe1, 0x4e, 0xd9, 0x48, 0x07, 0x12, 0xc5, 0x7b, 0x7b, 0xe5, 0x5d, 0x23, 0x23, 0xa9, 0x75, 0x75, 0xd9, 0x18, 0x0f, 0x4e, 0x51, 0xde, 0xda, 0xdf, 0x34, 0x26, 0xcc, 0x29, 0x18, 0xa7, 0xa7, 0xe0, 0x4a, 0x4c, 0x2a, 0x43, 0xd7, 0x57, 0x0c, 0x23, 0x54, 0x84, 0xb2, 0x4c, 0x49, 0x03, 0xd7, 0x57, 0x0c, 0x33, 0x57, 0x82, 0x61, 0x12, 0x5d, 0xa6, 0x09, 0x13, 0x1b, 0x85, 0x62, 0x79, 0xa3, 0xb2, 0xbd, 0xb3, 0xb7, 0xbe, 0xbd, 0x55, 0xd8, 0x30, 0xb4, 0x70, 0xcc, 0x2a, 0x7f, 0x7c, 0x7f, 0xdd, 0x2a, 0xaf, 0x1a, 0x09, 0x71, 0x6c, 0xa7, 0x5c, 0xd8, 0x2b, 0xaf, 0x1a, 0x7a, 0xae, 0x0a, 0x67, 0xa2, 0xea, 0x64, 0x64, 0x66, 0x08, 0x2e, 0x4e, 0xf4, 0x70, 0x31, 0xe1, 0xea, 0x72, 0xf1, 0xaf, 0x6a, 0x30, 0x1d, 0xb1, 0x56, 0x44, 0x9e, 0xe4, 0x05, 0x18, 0xa6, 0x21, 0x4a, 0x57, 0xcf, 0x67, 0x22, 0x17, 0x1d, 0x12, 0xb0, 0x5d, 0x2b, 0x28, 0xc1, 0x89, 0x1d, 0x84, 0xde, 0xa3, 0x83, 0xc0, 0x14, 0x5d, 0x4a, 0x7e, 0x4a, 0x83, 0x6c, 0x2f, 0xee, 0x98, 0x42, 0x91, 0x90, 0x0a, 0xc5, 0x6d, 0x55, 0x81, 0xf3, 0xbd, 0xaf, 0xa1, 0x4b, 0x8b, 0x2f, 0x6b, 0x30, 0x13, 0xdd, 0x68, 0x45, 0xea, 0xf0, 0x3c, 0x8c, 0x34, 0x91, 0x7f, 0xec, 0xf2, 0x66, 0xe3, 0x62, 0xc4, 0x12, 0x86, 0xa7, 0x55, 0x5b, 0x31, 0x94, 0xb8, 0x06, 0xea, 0xbd, 0xba, 0x25, 0xaa, 0x4d, 0x97, 0xa6, 0xbf, 0x94, 0x80, 0x47, 0x22, 0xc9, 0x23, 0x15, 0x7d, 0x02, 0xa0, 0xee, 0xb4, 0x3a, 0x3e, 0x6d, 0x28, 0x68, 0x7d, 0x1a, 0x23, 0x23, 0x24, 0xf7, 0x71, 0xed, 0xe9, 0xf8, 0xc1, 0xbc, 0x4e, 0xe6, 0x81, 0x0e, 0x11, 0x81, 0x9b, 0xa1, 0xa2, 0x49, 0xa2, 0xe8, 0x5c, 0x8f, 0x2b, 0xed, 0x5a, 0xab, 0x2f, 0x83, 0x51, 0x6d, 0xd4, 0x91, 0xe3, 0x57, 0x3c, 0xbf, 0x8d, 0xec, 0x66, 0xdd, 0x39, 0x22, 0x05, 0x38, 0x95, 0x1f, 0x3e, 0xb4, 0x1b, 0x1e, 0xb2, 0x26, 0xe9, 0xf4, 0x2e, 0x9f, 0xc5, 0x08, 0xb2, 0xc6, 0xb5, 0x05, 0xc4, 0x88, 0x84, 0xa0, 0xd3, 0x01, 0x22, 0xf7, 0xdb, 0x29, 0x48, 0x0b, 0x6d, 0xa9, 0x79, 0x1e, 0x32, 0xaf, 0xd8, 0xaf, 0xd9, 0x15, 0x7e, 0xab, 0x41, 0x2d, 0x91, 0xc6, 0x63, 0x3b, 0xec, 0x76, 0xe3, 0x32, 0x9c, 0x21, 0x22, 0x6e, 0xc7, 0x47, 0xed, 0x4a, 0xb5, 0x61, 0x7b, 0x1e, 0x31, 0x5a, 0x8a, 0x88, 0x9a, 0x78, 0x6e, 0x1b, 0x4f, 0x95, 0xf8, 0x8c, 0x79, 0x0d, 0xa6, 0x09, 0xa2, 0xd9, 0x69, 0xf8, 0xf5, 0x56, 0x03, 0x55, 0xf0, 0xcd, 0x8f, 0x47, 0x0a, 0x71, 0xa0, 0xd9, 0x14, 0x96, 0xd8, 0x64, 0x02, 0x58, 0x23, 0xcf, 0x5c, 0x85, 0x27, 0x08, 0xec, 0x08, 0x39, 0xa8, 0x6d, 0xfb, 0xa8, 0x82, 0x7e, 0xbe, 0x63, 0x37, 0xbc, 0x8a, 0xed, 0xd4, 0x2a, 0xc7, 0xb6, 0x77, 0x9c, 0x3d, 0x83, 0x09, 0x8a, 0x89, 0xac, 0x66, 0x3d, 0x86, 0x05, 0xef, 0x30, 0xb9, 0x32, 0x11, 0x2b, 0x38, 0xb5, 0x17, 0x6d, 0xef, 0xd8, 0xcc, 0xc3, 0x0c, 0x61, 0xf1, 0xfc, 0x76, 0xdd, 0x39, 0xaa, 0x54, 0x8f, 0x51, 0xf5, 0xd5, 0x4a, 0xc7, 0x3f, 0xbc, 0x99, 0x7d, 0x5c, 0x3c, 0x3f, 0xd1, 0x70, 0x97, 0xc8, 0x94, 0xb0, 0xc8, 0xbe, 0x7f, 0x78, 0xd3, 0xdc, 0x85, 0x0c, 0x76, 0x46, 0xb3, 0xfe, 0x26, 0xaa, 0x1c, 0xba, 0x6d, 0xb2, 0xb2, 0x4c, 0x44, 0x64, 0xb6, 0x60, 0xc1, 0xa5, 0x6d, 0x06, 0xd8, 0x74, 0x6b, 0x28, 0x3f, 0xbc, 0xbb, 0x53, 0x2e, 0xaf, 0x5a, 0x69, 0xce, 0xb2, 0xe6, 0xb6, 0x71, 0x40, 0x1d, 0xb9, 0x81, 0x81, 0xd3, 0x34, 0xa0, 0x8e, 0x5c, 0x6e, 0xde, 0x6b, 0x30, 0x5d, 0xad, 0xd2, 0x6b, 0xae, 0x57, 0x2b, 0xec, 0x16, 0xc5, 0xcb, 0x1a, 0x92, 0xb1, 0xaa, 0xd5, 0x3b, 0x54, 0x80, 0xc5, 0xb8, 0x67, 0xde, 0x82, 0x47, 0x42, 0x63, 0x89, 0xc0, 0xa9, 0xae, 0xab, 0x54, 0xa1, 0xd7, 0x60, 0xba, 0x75, 0xd2, 0x0d, 0x34, 0xa5, 0x33, 0xb6, 0x4e, 0x54, 0xd8, 0x0d, 0x38, 0xd3, 0x3a, 0x6e, 0x75, 0xe3, 0xa6, 0x45, 0x9c, 0xd9, 0x3a, 0x6e, 0xa9, 0xc0, 0xa7, 0xc8, 0xfd, 0x6a, 0x1b, 0x55, 0x6d, 0x1f, 0xd5, 0xb2, 0x8f, 0x8a, 0xe2, 0xc2, 0x84, 0x79, 0x09, 0x8c, 0x6a, 0xb5, 0x82, 0x1c, 0xfb, 0xa0, 0x81, 0x2a, 0x76, 0x1b, 0x39, 0xb6, 0x97, 0x9d, 0x17, 0x85, 0x27, 0xaa, 0xd5, 0x32, 0x99, 0x2d, 0x90, 0x49, 0x73, 0x11, 0xa6, 0xdc, 0x83, 0x57, 0xaa, 0x34, 0x24, 0x2b, 0xad, 0x36, 0x3a, 0xac, 0xbf, 0x91, 0xbd, 0x40, 0xec, 0x3b, 0x89, 0x27, 0x48, 0x40, 0xee, 0x90, 0x61, 0xf3, 0x19, 0x30, 0xaa, 0xde, 0xb1, 0xdd, 0x6e, 0x91, 0x9e, 0xc0, 0x6b, 0xd9, 0x55, 0x94, 0x7d, 0x8a, 0x8a, 0xd2, 0xf1, 0x2d, 0x3e, 0x8c, 0x53, 0xc2, 0x7b, 0xbd, 0x7e, 0xe8, 0x73, 0xc6, 0xa7, 0x69, 0x4a, 0x90, 0x31, 0xc6, 0xb6, 0x00, 0x06, 0x36, 0x85, 0x74, 0xe2, 0x05, 0x22, 0x36, 0xd1, 0x3a, 0x6e, 0x89, 0xe7, 0x7d, 0x12, 0xc6, 0xb1, 0x64, 0x78, 0xd2, 0x67, 0x68, 0x3f, 0xd3, 0x3a, 0x16, 0xce, 0xf8, 0xa1, 0xb5, 0x96, 0xb9, 0x3c, 0x64, 0xc4, 0xf8, 0x34, 0xc7, 0x80, 0x46, 0xa8, 0xa1, 0xe1, 0xb5, 0xbe, 0xb4, 0xbd, 0x8a, 0x57, 0xe9, 0x9f, 0x2b, 0x1b, 0x09, 0xdc, 0x2d, 0x6c, 0xac, 0xef, 0x95, 0x2b, 0xd6, 0xfe, 0xd6, 0xde, 0xfa, 0x66, 0xd9, 0xd0, 0xc5, 0xb6, 0xf4, 0x1b, 0x09, 0x98, 0x90, 0xef, 0x30, 0xcc, 0x8f, 0xc2, 0xa3, 0x7c, 0x3b, 0xc0, 0x43, 0x7e, 0xe5, 0xf5, 0x7a, 0x9b, 0xa4, 0x4c, 0xd3, 0xa6, 0x1d, 0x76, 0xe0, 0xb4, 0x33, 0x4c, 0x6a, 0x17, 0xf9, 0x2f, 0xd5, 0xdb, 0x38, 0x21, 0x9a, 0xb6, 0x6f, 0x6e, 0xc0, 0xbc, 0xe3, 0x56, 0x3c, 0xdf, 0x76, 0x6a, 0x76, 0xbb, 0x56, 0x09, 0x37, 0x62, 0x2a, 0x76, 0xb5, 0x8a, 0x3c, 0xcf, 0xa5, 0x4b, 0x55, 0xc0, 0x72, 0xd6, 0x71, 0x77, 0x99, 0x70, 0x58, 0xc3, 0x0b, 0x4c, 0x54, 0x09, 0x30, 0xbd, 0x57, 0x80, 0x3d, 0x0e, 0x63, 0x4d, 0xbb, 0x55, 0x41, 0x8e, 0xdf, 0x3e, 0x21, 0x7d, 0x65, 0xca, 0x4a, 0x35, 0xed, 0x56, 0x19, 0x1f, 0xff, 0x78, 0xda, 0xfb, 0xff, 0xaa, 0x43, 0x46, 0xec, 0x2d, 0x71, 0xab, 0x5e, 0x25, 0xeb, 0x88, 0x46, 0x2a, 0xcd, 0x93, 0x7d, 0x3b, 0xd1, 0xa5, 0x12, 0x5e, 0x60, 0xf2, 0x23, 0xb4, 0xe3, 0xb3, 0x28, 0x12, 0x2f, 0xee, 0xb8, 0xb6, 0x20, 0x7a, 0x17, 0x93, 0xb2, 0xd8, 0x91, 0x79, 0x07, 0x46, 0x5e, 0xf1, 0x08, 0xf7, 0x08, 0xe1, 0xbe, 0xd0, 0x9f, 0xfb, 0xee, 0x2e, 0x21, 0x1f, 0xbb, 0xbb, 0x5b, 0xd9, 0xda, 0xb6, 0x36, 0x0b, 0x1b, 0x16, 0x83, 0x9b, 0x8f, 0x41, 0xb2, 0x61, 0xbf, 0x79, 0x22, 0x2f, 0x45, 0x64, 0x68, 0x50, 0xc3, 0x3f, 0x06, 0xc9, 0xd7, 0x91, 0xfd, 0xaa, 0xbc, 0x00, 0x90, 0xa1, 0x0f, 0x31, 0xf4, 0x2f, 0xc1, 0x30, 0xb1, 0x97, 0x09, 0xc0, 0x2c, 0x66, 0x0c, 0x99, 0x29, 0x48, 0x96, 0xb6, 0x2d, 0x1c, 0xfe, 0x06, 0x64, 0xe8, 0x68, 0x65, 0x67, 0xbd, 0x5c, 0x2a, 0x1b, 0x89, 0xdc, 0x35, 0x18, 0xa1, 0x46, 0xc0, 0xa9, 0x11, 0x98, 0xc1, 0x18, 0x62, 0x87, 0x8c, 0x43, 0xe3, 0xb3, 0xfb, 0x9b, 0xc5, 0xb2, 0x65, 0x24, 0x44, 0xf7, 0x7a, 0x90, 0x11, 0xdb, 0xca, 0x1f, 0x4f, 0x4c, 0xfd, 0x9e, 0x06, 0x69, 0xa1, 0x4d, 0xc4, 0x0d, 0x8a, 0xdd, 0x68, 0xb8, 0xaf, 0x57, 0xec, 0x46, 0xdd, 0xf6, 0x58, 0x50, 0x00, 0x19, 0x2a, 0xe0, 0x91, 0x41, 0x9d, 0xf6, 0x63, 0x51, 0xfe, 0x0b, 0x1a, 0x18, 0x6a, 0x8b, 0xa9, 0x28, 0xa8, 0xfd, 0x44, 0x15, 0xfc, 0x9c, 0x06, 0x13, 0x72, 0x5f, 0xa9, 0xa8, 0x77, 0xfe, 0x27, 0xaa, 0xde, 0xb7, 0x13, 0x30, 0x2e, 0x75, 0x93, 0x83, 0x6a, 0xf7, 0xf3, 0x30, 0x55, 0xaf, 0xa1, 0x66, 0xcb, 0xf5, 0x91, 0x53, 0x3d, 0xa9, 0x34, 0xd0, 0x6b, 0xa8, 0x91, 0xcd, 0x91, 0x42, 0x71, 0xa9, 0x7f, 0xbf, 0xba, 0xb4, 0x1e, 0xe2, 0x36, 0x30, 0x2c, 0x3f, 0xbd, 0xbe, 0x5a, 0xde, 0xdc, 0xd9, 0xde, 0x2b, 0x6f, 0x95, 0xee, 0x55, 0xf6, 0xb7, 0x3e, 0xb6, 0xb5, 0xfd, 0xd2, 0x96, 0x65, 0xd4, 0x15, 0xb1, 0x0f, 0x31, 0xd5, 0x77, 0xc0, 0x50, 0x95, 0x32, 0x1f, 0x85, 0x28, 0xb5, 0x8c, 0x21, 0x73, 0x1a, 0x26, 0xb7, 0xb6, 0x2b, 0xbb, 0xeb, 0xab, 0xe5, 0x4a, 0x79, 0x6d, 0xad, 0x5c, 0xda, 0xdb, 0xa5, 0x37, 0xf0, 0x81, 0xf4, 0x9e, 0x9c, 0xd4, 0x9f, 0xd5, 0x61, 0x3a, 0x42, 0x13, 0xb3, 0xc0, 0xee, 0x1d, 0xe8, 0xed, 0xcc, 0xb3, 0x83, 0x68, 0xbf, 0x84, 0x97, 0xfc, 0x1d, 0xbb, 0xed, 0xb3, 0x5b, 0x8d, 0x67, 0x00, 0x5b, 0xc9, 0xf1, 0xeb, 0x87, 0x75, 0xd4, 0x66, 0xfb, 0x1d, 0xf4, 0x86, 0x62, 0x32, 0x1c, 0xa7, 0x5b, 0x1e, 0x1f, 0x01, 0xb3, 0xe5, 0x7a, 0x75, 0xbf, 0xfe, 0x1a, 0xaa, 0xd4, 0x1d, 0xbe, 0x39, 0x82, 0x6f, 0x30, 0x92, 0x96, 0xc1, 0x67, 0xd6, 0x1d, 0x3f, 0x90, 0x76, 0xd0, 0x91, 0xad, 0x48, 0xe3, 0x02, 0xae, 0x5b, 0x06, 0x9f, 0x09, 0xa4, 0xcf, 0x43, 0xa6, 0xe6, 0x76, 0x70, 0xd7, 0x45, 0xe5, 0xf0, 0x7a, 0xa1, 0x59, 0x69, 0x3a, 0x16, 0x88, 0xb0, 0x7e, 0x3a, 0xdc, 0x95, 0xc9, 0x58, 0x69, 0x3a, 0x46, 0x45, 0x9e, 0x86, 0x49, 0xfb, 0xe8, 0xa8, 0x8d, 0xc9, 0x39, 0x11, 0xbd, 0x43, 0x98, 0x08, 0x86, 0x89, 0xe0, 0xec, 0x5d, 0x48, 0x71, 0x3b, 0xe0, 0x25, 0x19, 0x5b, 0xa2, 0xd2, 0xa2, 0x3b, 0x73, 0x89, 0x85, 0x31, 0x2b, 0xe5, 0xf0, 0xc9, 0xf3, 0x90, 0xa9, 0x7b, 0x95, 0x70, 0x93, 0x39, 0x71, 0x2e, 0xb1, 0x90, 0xb2, 0xd2, 0x75, 0x2f, 0xd8, 0xa0, 0xcb, 0x7d, 0x39, 0x01, 0x13, 0xf2, 0x26, 0xb9, 0xb9, 0x0a, 0xa9, 0x86, 0x5b, 0xb5, 0x49, 0x68, 0xd1, 0x27, 0x34, 0x0b, 0x31, 0xfb, 0xea, 0x4b, 0x1b, 0x4c, 0xde, 0x0a, 0x90, 0xb3, 0xff, 0x51, 0x83, 0x14, 0x1f, 0x36, 0x67, 0x20, 0xd9, 0xb2, 0xfd, 0x63, 0x42, 0x37, 0x5c, 0x4c, 0x18, 0x9a, 0x45, 0x8e, 0xf1, 0xb8, 0xd7, 0xb2, 0x1d, 0x12, 0x02, 0x6c, 0x1c, 0x1f, 0x63, 0xbf, 0x36, 0x90, 0x5d, 0x23, 0xb7, 0x1f, 0x6e, 0xb3, 0x89, 0x1c, 0xdf, 0xe3, 0x7e, 0x65, 0xe3, 0x25, 0x36, 0x6c, 0xfe, 0x0c, 0x4c, 0xf9, 0x6d, 0xbb, 0xde, 0x90, 0x64, 0x93, 0x44, 0xd6, 0xe0, 0x13, 0x81, 0x70, 0x1e, 0x1e, 0xe3, 0xbc, 0x35, 0xe4, 0xdb, 0xd5, 0x63, 0x54, 0x0b, 0x41, 0x23, 0x64, 0x07, 0xf6, 0x51, 0x26, 0xb0, 0xca, 0xe6, 0x39, 0x36, 0xf7, 0x07, 0x1a, 0x4c, 0xf1, 0x1b, 0xa6, 0x5a, 0x60, 0xac, 0x4d, 0x00, 0xdb, 0x71, 0x5c, 0x5f, 0x34, 0x57, 0x77, 0x28, 0x77, 0xe1, 0x96, 0x0a, 0x01, 0xc8, 0x12, 0x08, 0x66, 0x9b, 0x00, 0xe1, 0x4c, 0x4f, 0xb3, 0xcd, 0x43, 0x9a, 0x3d, 0x01, 0x21, 0x8f, 0xd1, 0xe8, 0x2d, 0x36, 0xd0, 0x21, 0x7c, 0x67, 0x65, 0x9e, 0x81, 0xe1, 0x03, 0x74, 0x54, 0x77, 0xd8, 0xbe, 0x26, 0x3d, 0xe0, 0x7b, 0xb5, 0xc9, 0x60, 0xaf, 0xb6, 0xf8, 0x32, 0x4c, 0x57, 0xdd, 0xa6, 0xaa, 0x6e, 0xd1, 0x50, 0x6e, 0xf3, 0xbd, 0x17, 0xb5, 0x9f, 0x83, 0xb0, 0xc5, 0xfc, 0xd5, 0x84, 0x7e, 0x67, 0xa7, 0xf8, 0x1b, 0x89, 0xd9, 0x3b, 0x14, 0xb7, 0xc3, 0x2f, 0xd3, 0x42, 0x87, 0x0d, 0x54, 0xc5, 0xaa, 0xc3, 0x1f, 0x5f, 0x84, 0x67, 0x8f, 0xea, 0xfe, 0x71, 0xe7, 0x60, 0xa9, 0xea, 0x36, 0x2f, 0x1d, 0xb9, 0x47, 0x6e, 0xf8, 0xd8, 0x10, 0x1f, 0x91, 0x03, 0xf2, 0x89, 0x3d, 0x3a, 0x1c, 0x0b, 0x46, 0x67, 0x63, 0x9f, 0x33, 0xe6, 0xb7, 0x60, 0x9a, 0x09, 0x57, 0xc8, 0xb3, 0x0b, 0x7a, 0x0b, 0x61, 0xf6, 0xdd, 0xff, 0xc9, 0xfe, 0xd6, 0x77, 0xc9, 0x5a, 0x6d, 0x4d, 0x31, 0x28, 0x9e, 0xa3, 0x77, 0x19, 0x79, 0x0b, 0x1e, 0x91, 0xf8, 0x68, 0x5e, 0xa2, 0x76, 0x0c, 0xe3, 0x37, 0x18, 0xe3, 0xb4, 0xc0, 0xb8, 0xcb, 0xa0, 0xf9, 0x12, 0x8c, 0x9f, 0x86, 0xeb, 0xdf, 0x31, 0xae, 0x0c, 0x12, 0x49, 0xee, 0xc0, 0x24, 0x21, 0xa9, 0x76, 0x3c, 0xdf, 0x6d, 0x92, 0xa2, 0xd7, 0x9f, 0xe6, 0xdf, 0x7f, 0x97, 0x26, 0xca, 0x04, 0x86, 0x95, 0x02, 0x54, 0x3e, 0x0f, 0xe4, 0x71, 0x4d, 0x0d, 0x55, 0x1b, 0x31, 0x0c, 0xf7, 0x99, 0x22, 0x81, 0x7c, 0xfe, 0x13, 0x70, 0x06, 0x7f, 0x26, 0x35, 0x49, 0xd4, 0x24, 0x7e, 0xb7, 0x2b, 0xfb, 0x07, 0x9f, 0xa2, 0xb9, 0x38, 0x1d, 0x10, 0x08, 0x3a, 0x09, 0x5e, 0x3c, 0x42, 0xbe, 0x8f, 0xda, 0x5e, 0xc5, 0x6e, 0x44, 0xa9, 0x27, 0x6c, 0x17, 0x64, 0x7f, 0xe5, 0xfb, 0xb2, 0x17, 0xef, 0x50, 0x64, 0xa1, 0xd1, 0xc8, 0xef, 0xc3, 0xa3, 0x11, 0x51, 0x31, 0x00, 0xe7, 0x67, 0x19, 0xe7, 0x99, 0xae, 0xc8, 0xc0, 0xb4, 0x3b, 0xc0, 0xc7, 0x03, 0x5f, 0x0e, 0xc0, 0xf9, 0x0f, 0x19, 0xa7, 0xc9, 0xb0, 0xdc, 0xa5, 0x98, 0xf1, 0x2e, 0x4c, 0xbd, 0x86, 0xda, 0x07, 0xae, 0xc7, 0xb6, 0x68, 0x06, 0xa0, 0xfb, 0x1c, 0xa3, 0x9b, 0x64, 0x40, 0xb2, 0x67, 0x83, 0xb9, 0x6e, 0x41, 0xea, 0xd0, 0xae, 0xa2, 0x01, 0x28, 0x3e, 0xcf, 0x28, 0x46, 0xb1, 0x3c, 0x86, 0x16, 0x20, 0x73, 0xe4, 0xb2, 0x65, 0x29, 0x1e, 0xfe, 0x05, 0x06, 0x4f, 0x73, 0x0c, 0xa3, 0x68, 0xb9, 0xad, 0x4e, 0x03, 0xaf, 0x59, 0xf1, 0x14, 0x5f, 0xe4, 0x14, 0x1c, 0xc3, 0x28, 0x4e, 0x61, 0xd6, 0xb7, 0x39, 0x85, 0x27, 0xd8, 0xf3, 0x05, 0x48, 0xbb, 0x4e, 0xe3, 0xc4, 0x75, 0x06, 0x51, 0xe2, 0x4b, 0x8c, 0x01, 0x18, 0x04, 0x13, 0xdc, 0x86, 0xb1, 0x41, 0x1d, 0xf1, 0x6b, 0xdf, 0xe7, 0xe9, 0xc1, 0x3d, 0x70, 0x07, 0x26, 0x79, 0x81, 0xaa, 0xbb, 0xce, 0x00, 0x14, 0xff, 0x98, 0x51, 0x4c, 0x08, 0x30, 0x76, 0x19, 0x3e, 0xf2, 0xfc, 0x23, 0x34, 0x08, 0xc9, 0x97, 0xf9, 0x65, 0x30, 0x08, 0x33, 0xe5, 0x01, 0x72, 0xaa, 0xc7, 0x83, 0x31, 0x7c, 0x85, 0x9b, 0x92, 0x63, 0x30, 0x45, 0x09, 0xc6, 0x9b, 0x76, 0xdb, 0x3b, 0xb6, 0x1b, 0x03, 0xb9, 0xe3, 0xd7, 0x19, 0x47, 0x26, 0x00, 0x31, 0x8b, 0x74, 0x9c, 0xd3, 0xd0, 0xfc, 0x06, 0xb7, 0x88, 0x00, 0x63, 0xa9, 0xe7, 0xf9, 0x64, 0x3f, 0xeb, 0x34, 0x6c, 0xbf, 0xc9, 0x53, 0x8f, 0x62, 0x37, 0x45, 0xc6, 0xdb, 0x30, 0xe6, 0xd5, 0xdf, 0x1c, 0x88, 0xe6, 0x9f, 0x70, 0x4f, 0x13, 0x00, 0x06, 0xdf, 0x83, 0xc7, 0x22, 0x97, 0x89, 0x01, 0xc8, 0xfe, 0x29, 0x23, 0x9b, 0x89, 0x58, 0x2a, 0x58, 0x49, 0x38, 0x2d, 0xe5, 0x3f, 0xe3, 0x25, 0x01, 0x29, 0x5c, 0x3b, 0xf8, 0x46, 0xc1, 0xb3, 0x0f, 0x4f, 0x67, 0xb5, 0x7f, 0xce, 0xad, 0x46, 0xb1, 0x92, 0xd5, 0xf6, 0x60, 0x86, 0x31, 0x9e, 0xce, 0xaf, 0x5f, 0xe5, 0x85, 0x95, 0xa2, 0xf7, 0x65, 0xef, 0x7e, 0x12, 0x66, 0x03, 0x73, 0xf2, 0x8e, 0xd4, 0xab, 0x34, 0xed, 0xd6, 0x00, 0xcc, 0xbf, 0xc5, 0x98, 0x79, 0xc5, 0x0f, 0x5a, 0x5a, 0x6f, 0xd3, 0x6e, 0x61, 0xf2, 0x97, 0x21, 0xcb, 0xc9, 0x3b, 0x4e, 0x1b, 0x55, 0xdd, 0x23, 0xa7, 0xfe, 0x26, 0xaa, 0x0d, 0x40, 0xfd, 0x35, 0xc5, 0x55, 0xfb, 0x02, 0x1c, 0x33, 0xaf, 0x83, 0x11, 0xf4, 0x2a, 0x95, 0x7a, 0xb3, 0xe5, 0xb6, 0xfd, 0x18, 0xc6, 0xdf, 0xe6, 0x9e, 0x0a, 0x70, 0xeb, 0x04, 0x96, 0x2f, 0xc3, 0x04, 0x39, 0x1c, 0x34, 0x24, 0x7f, 0x87, 0x11, 0x8d, 0x87, 0x28, 0x56, 0x38, 0xaa, 0x6e, 0xb3, 0x65, 0xb7, 0x07, 0xa9, 0x7f, 0xff, 0x82, 0x17, 0x0e, 0x06, 0x61, 0x85, 0xc3, 0x3f, 0x69, 0x21, 0xbc, 0xda, 0x0f, 0xc0, 0xf0, 0x75, 0x5e, 0x38, 0x38, 0x86, 0x51, 0xf0, 0x86, 0x61, 0x00, 0x8a, 0x7f, 0xc9, 0x29, 0x38, 0x06, 0x53, 0x7c, 0x3c, 0x5c, 0x68, 0xdb, 0xe8, 0xa8, 0xee, 0xf9, 0x6d, 0xda, 0x07, 0xf7, 0xa7, 0xfa, 0xdd, 0xef, 0xcb, 0x4d, 0x98, 0x25, 0x40, 0xf3, 0x77, 0x61, 0x52, 0x69, 0x31, 0xcc, 0xb8, 0x77, 0x3f, 0xb2, 0x7f, 0xe9, 0x87, 0xac, 0x18, 0xc9, 0x1d, 0x46, 0x7e, 0x03, 0xfb, 0x5d, 0xee, 0x03, 0xe2, 0xc9, 0x3e, 0xf5, 0xc3, 0xc0, 0xf5, 0x52, 0x1b, 0x90, 0x5f, 0x83, 0x71, 0xa9, 0x07, 0x88, 0xa7, 0xfa, 0xcb, 0x8c, 0x2a, 0x23, 0xb6, 0x00, 0xf9, 0x6b, 0x90, 0xc4, 0xeb, 0x79, 0x3c, 0xfc, 0xaf, 0x30, 0x38, 0x11, 0xcf, 0x3f, 0x07, 0x29, 0xbe, 0x8e, 0xc7, 0x43, 0x7f, 0x91, 0x41, 0x03, 0x08, 0x86, 0xf3, 0x35, 0x3c, 0x1e, 0xfe, 0x57, 0x39, 0x9c, 0x43, 0x30, 0x7c, 0x70, 0x13, 0xbe, 0xf3, 0xd7, 0x93, 0xac, 0x0e, 0x73, 0xdb, 0xdd, 0x86, 0x51, 0xb6, 0x78, 0xc7, 0xa3, 0x7f, 0x89, 0x9d, 0x9c, 0x23, 0xf2, 0x37, 0x60, 0x78, 0x40, 0x83, 0xff, 0x0d, 0x06, 0xa5, 0xf2, 0xf9, 0x12, 0xa4, 0x85, 0x05, 0x3b, 0x1e, 0xfe, 0x37, 0x19, 0x5c, 0x44, 0x61, 0xd5, 0xd9, 0x82, 0x1d, 0x4f, 0xf0, 0xb7, 0xb8, 0xea, 0x0c, 0x81, 0xcd, 0xc6, 0xd7, 0xea, 0x78, 0xf4, 0xdf, 0xe6, 0x56, 0xe7, 0x90, 0xfc, 0x0b, 0x30, 0x16, 0xd4, 0xdf, 0x78, 0xfc, 0xdf, 0x61, 0xf8, 0x10, 0x83, 0x2d, 0x20, 0xd4, 0xff, 0x78, 0x8a, 0xbf, 0xcb, 0x2d, 0x20, 0xa0, 0x70, 0x1a, 0xa9, 0x6b, 0x7a, 0x3c, 0xd3, 0x2f, 0xf3, 0x34, 0x52, 0x96, 0x74, 0xec, 0x4d, 0x52, 0x06, 0xe3, 0x29, 0xfe, 0x1e, 0xf7, 0x26, 0x91, 0xc7, 0x6a, 0xa8, 0x8b, 0x64, 0x3c, 0xc7, 0x3f, 0xe0, 0x6a, 0x28, 0x6b, 0x64, 0x7e, 0x07, 0xcc, 0xee, 0x05, 0x32, 0x9e, 0xef, 0x33, 0x8c, 0x6f, 0xaa, 0x6b, 0x7d, 0xcc, 0xbf, 0x04, 0x33, 0xd1, 0x8b, 0x63, 0x3c, 0xeb, 0xaf, 0xfc, 0x50, 0xb9, 0x9d, 0x11, 0xd7, 0xc6, 0xfc, 0x5e, 0x58, 0x65, 0xc5, 0x85, 0x31, 0x9e, 0xf6, 0xb3, 0x3f, 0x94, 0x0b, 0xad, 0xb8, 0x2e, 0xe6, 0x0b, 0x00, 0xe1, 0x9a, 0x14, 0xcf, 0xf5, 0x39, 0xc6, 0x25, 0x80, 0x70, 0x6a, 0xb0, 0x25, 0x29, 0x1e, 0xff, 0x79, 0x9e, 0x1a, 0x0c, 0x81, 0x53, 0x83, 0xaf, 0x46, 0xf1, 0xe8, 0x2f, 0xf0, 0xd4, 0xe0, 0x90, 0xfc, 0x6d, 0x48, 0x39, 0x9d, 0x46, 0x03, 0xc7, 0x96, 0xd9, 0xff, 0x75, 0xa6, 0xec, 0x7f, 0xff, 0x11, 0x03, 0x73, 0x40, 0xfe, 0x1a, 0x0c, 0xa3, 0xe6, 0x01, 0xaa, 0xc5, 0x21, 0xff, 0xc7, 0x8f, 0x78, 0x3d, 0xc1, 0xd2, 0xf9, 0x17, 0x00, 0xe8, 0xcd, 0x34, 0x79, 0x4a, 0x14, 0x83, 0xfd, 0x9f, 0x3f, 0x62, 0x6f, 0x4a, 0x84, 0x90, 0x90, 0x80, 0xbe, 0x77, 0xd1, 0x9f, 0xe0, 0xfb, 0x32, 0x01, 0xb9, 0x01, 0xbf, 0x05, 0xa3, 0xaf, 0x78, 0xae, 0xe3, 0xdb, 0x47, 0x71, 0xe8, 0xff, 0xc5, 0xd0, 0x5c, 0x1e, 0x1b, 0xac, 0xe9, 0xb6, 0x91, 0x6f, 0x1f, 0x79, 0x71, 0xd8, 0xff, 0xcd, 0xb0, 0x01, 0x00, 0x83, 0xab, 0xb6, 0xe7, 0x0f, 0x72, 0xdd, 0xff, 0x87, 0x83, 0x39, 0x00, 0x2b, 0x8d, 0x3f, 0xbf, 0x8a, 0x4e, 0xe2, 0xb0, 0x3f, 0xe0, 0x4a, 0x33, 0xf9, 0xfc, 0x73, 0x30, 0x86, 0x3f, 0xd2, 0xb7, 0x87, 0x62, 0xc0, 0xff, 0x97, 0x81, 0x43, 0x04, 0x3e, 0xb3, 0xe7, 0xd7, 0xfc, 0x7a, 0xbc, 0xb1, 0xff, 0x88, 0x79, 0x9a, 0xcb, 0xe7, 0x0b, 0x90, 0xf6, 0xfc, 0x5a, 0xad, 0xc3, 0x3a, 0x9a, 0x18, 0xf8, 0x1f, 0xff, 0x28, 0xb8, 0xc9, 0x0d, 0x30, 0xc5, 0xf3, 0xd1, 0x9b, 0x75, 0x70, 0xc7, 0xbd, 0xe3, 0xd2, 0x6d, 0x3a, 0xf8, 0x6f, 0x0d, 0xb8, 0xd1, 0x73, 0xd7, 0x0d, 0x2f, 0x22, 0x97, 0xaa, 0x6e, 0xf3, 0xc0, 0xf5, 0x2e, 0x1d, 0xb8, 0xfe, 0xf1, 0x25, 0xff, 0x18, 0xe1, 0x31, 0xb6, 0xff, 0x96, 0xc4, 0x9f, 0x67, 0x4f, 0xb7, 0x69, 0x47, 0x9e, 0xc7, 0x6e, 0xd5, 0xb1, 0xde, 0x5b, 0x64, 0x4b, 0xdc, 0x3c, 0x0b, 0x23, 0xe4, 0x4a, 0xae, 0x90, 0xc7, 0x4e, 0x5a, 0x31, 0x79, 0xff, 0xdd, 0xf9, 0x21, 0x8b, 0x8d, 0x05, 0xb3, 0xcb, 0x64, 0xcf, 0x32, 0x21, 0xcd, 0x2e, 0x07, 0xb3, 0x57, 0xe9, 0xb6, 0xa5, 0x34, 0x7b, 0x35, 0x98, 0x5d, 0x21, 0x1b, 0x98, 0xba, 0x34, 0xbb, 0x12, 0xcc, 0x5e, 0x23, 0x9b, 0xf4, 0xe3, 0xd2, 0xec, 0xb5, 0x60, 0xf6, 0x3a, 0xd9, 0x9a, 0x4f, 0x4a, 0xb3, 0xd7, 0x83, 0xd9, 0x1b, 0x64, 0x57, 0x7e, 0x4a, 0x9a, 0xbd, 0x11, 0xcc, 0xde, 0x24, 0xbb, 0xf1, 0xa6, 0x34, 0x7b, 0x33, 0x98, 0xbd, 0x45, 0x5e, 0x75, 0x19, 0x95, 0x66, 0x6f, 0x99, 0x73, 0x30, 0x4a, 0xaf, 0xfc, 0x32, 0x79, 0x74, 0x3b, 0xc9, 0xa6, 0xf9, 0x60, 0x38, 0x7f, 0x85, 0xbc, 0xd6, 0x32, 0x22, 0xcf, 0x5f, 0x09, 0xe7, 0x97, 0xc9, 0x0b, 0xea, 0x86, 0x3c, 0xbf, 0x1c, 0xce, 0x5f, 0xcd, 0x8e, 0x93, 0x57, 0x7b, 0xa4, 0xf9, 0xab, 0xe1, 0xfc, 0x4a, 0x76, 0x02, 0x07, 0xb3, 0x3c, 0xbf, 0x12, 0xce, 0x5f, 0xcb, 0x4e, 0x9e, 0xd3, 0x16, 0x32, 0xf2, 0xfc, 0xb5, 0xdc, 0x2f, 0x10, 0xf7, 0x3a, 0xa1, 0x7b, 0x67, 0x64, 0xf7, 0x06, 0x8e, 0x9d, 0x91, 0x1d, 0x1b, 0xb8, 0x74, 0x46, 0x76, 0x69, 0xe0, 0xcc, 0x19, 0xd9, 0x99, 0x81, 0x1b, 0x67, 0x64, 0x37, 0x06, 0x0e, 0x9c, 0x91, 0x1d, 0x18, 0xb8, 0x6e, 0x46, 0x76, 0x5d, 0xe0, 0xb4, 0x19, 0xd9, 0x69, 0x81, 0xbb, 0x66, 0x64, 0x77, 0x05, 0x8e, 0xca, 0x2a, 0x8e, 0x0a, 0x5d, 0x94, 0x55, 0x5c, 0x14, 0x3a, 0x27, 0xab, 0x38, 0x27, 0x74, 0x4b, 0x56, 0x71, 0x4b, 0xe8, 0x90, 0xac, 0xe2, 0x90, 0xd0, 0x15, 0x59, 0xc5, 0x15, 0xa1, 0x13, 0x58, 0x8e, 0x59, 0xa8, 0x15, 0x91, 0x63, 0x7a, 0xdf, 0x1c, 0xd3, 0xfb, 0xe6, 0x98, 0xde, 0x37, 0xc7, 0xf4, 0xbe, 0x39, 0xa6, 0xf7, 0xcd, 0x31, 0xbd, 0x6f, 0x8e, 0xe9, 0x7d, 0x73, 0x4c, 0xef, 0x9b, 0x63, 0x7a, 0xff, 0x1c, 0xd3, 0x63, 0x72, 0x4c, 0x8f, 0xc9, 0x31, 0x3d, 0x26, 0xc7, 0xf4, 0x98, 0x1c, 0xd3, 0x63, 0x72, 0x4c, 0xef, 0x99, 0x63, 0xa1, 0x7b, 0x67, 0x64, 0xf7, 0x46, 0xe6, 0x98, 0xde, 0x23, 0xc7, 0xf4, 0x1e, 0x39, 0xa6, 0xf7, 0xc8, 0x31, 0xbd, 0x47, 0x8e, 0xe9, 0x3d, 0x72, 0x4c, 0xef, 0x91, 0x63, 0x7a, 0x8f, 0x1c, 0xd3, 0x7b, 0xe5, 0x98, 0xde, 0x33, 0xc7, 0xf4, 0x9e, 0x39, 0xa6, 0xf7, 0xcc, 0x31, 0xbd, 0x67, 0x8e, 0xe9, 0x3d, 0x73, 0x4c, 0x17, 0x73, 0xec, 0x5f, 0xeb, 0x60, 0xd2, 0x1c, 0xdb, 0x21, 0x2f, 0xff, 0x30, 0x57, 0xcc, 0x29, 0x99, 0x36, 0x82, 0x5d, 0x67, 0x84, 0x2e, 0x99, 0x53, 0x72, 0x4d, 0x9e, 0x5f, 0x0e, 0xe6, 0x79, 0xb6, 0xc9, 0xf3, 0x57, 0x83, 0x79, 0x9e, 0x6f, 0xf2, 0xfc, 0x4a, 0x30, 0xcf, 0x33, 0x4e, 0x9e, 0xbf, 0x16, 0xcc, 0xf3, 0x9c, 0x93, 0xe7, 0xaf, 0x07, 0xf3, 0x3c, 0xeb, 0xe4, 0xf9, 0x1b, 0xc1, 0x3c, 0xcf, 0x3b, 0x79, 0xfe, 0x66, 0x30, 0xcf, 0x33, 0x4f, 0x9e, 0xbf, 0x65, 0x9e, 0x53, 0x73, 0x8f, 0x0b, 0x04, 0xae, 0x3d, 0xa7, 0x66, 0x9f, 0x22, 0x71, 0x25, 0x94, 0xe0, 0xf9, 0xa7, 0x48, 0x2c, 0x87, 0x12, 0x3c, 0x03, 0x15, 0x89, 0xab, 0xb9, 0x4f, 0x13, 0xf7, 0x39, 0xaa, 0xfb, 0x66, 0x15, 0xf7, 0x25, 0x04, 0xd7, 0xcd, 0x2a, 0xae, 0x4b, 0x08, 0x6e, 0x9b, 0x55, 0xdc, 0x96, 0x10, 0x5c, 0x36, 0xab, 0xb8, 0x2c, 0x21, 0xb8, 0x6b, 0x56, 0x71, 0x57, 0x42, 0x70, 0xd5, 0xac, 0xe2, 0xaa, 0x84, 0xe0, 0xa6, 0x59, 0xc5, 0x4d, 0x09, 0xc1, 0x45, 0xb3, 0x8a, 0x8b, 0x12, 0x82, 0x7b, 0x66, 0x15, 0xf7, 0x24, 0x04, 0xd7, 0x9c, 0x55, 0x5d, 0x93, 0x10, 0xdd, 0x72, 0x56, 0x75, 0x4b, 0x42, 0x74, 0xc9, 0x59, 0xd5, 0x25, 0x09, 0xd1, 0x1d, 0x67, 0x55, 0x77, 0x24, 0x44, 0x57, 0xfc, 0x69, 0x82, 0x77, 0x84, 0xbb, 0x7e, 0xbb, 0x53, 0xf5, 0xdf, 0x57, 0x47, 0x78, 0x59, 0x6a, 0x1f, 0xd2, 0xcb, 0xe6, 0x12, 0x69, 0x58, 0xc5, 0x8e, 0x53, 0x59, 0xc1, 0x2e, 0x4b, 0x8d, 0x85, 0x80, 0x70, 0xa2, 0x11, 0x2b, 0xef, 0xab, 0x37, 0xbc, 0x2c, 0xb5, 0x19, 0xf1, 0xfa, 0xdd, 0xfc, 0xd0, 0x3b, 0xb6, 0x77, 0x12, 0xbc, 0x63, 0x63, 0xe6, 0x3f, 0x6d, 0xc7, 0xb6, 0x18, 0x6f, 0xf2, 0xc0, 0xd8, 0x8b, 0xf1, 0xc6, 0xee, 0x5a, 0x75, 0x06, 0xed, 0xe0, 0x16, 0xe3, 0x4d, 0x1b, 0x18, 0xf5, 0x83, 0xed, 0xb7, 0x58, 0x04, 0x5b, 0xa8, 0x15, 0x11, 0xc1, 0xa7, 0xed, 0xb7, 0x2e, 0x4b, 0xa5, 0xe4, 0xb4, 0x11, 0xac, 0x9f, 0x3a, 0x82, 0x4f, 0xdb, 0x79, 0x5d, 0x96, 0xca, 0xcb, 0xa9, 0x23, 0xf8, 0x43, 0xe8, 0x87, 0x58, 0x04, 0x87, 0xe6, 0x3f, 0x6d, 0x3f, 0xb4, 0x18, 0x6f, 0xf2, 0xc8, 0x08, 0xd6, 0x4f, 0x11, 0xc1, 0x83, 0xf4, 0x47, 0x8b, 0xf1, 0xa6, 0x8d, 0x8e, 0xe0, 0xf7, 0xdd, 0xcd, 0x7c, 0x51, 0x83, 0xa9, 0xad, 0x7a, 0xad, 0xdc, 0x3c, 0x40, 0xb5, 0x1a, 0xaa, 0x31, 0x3b, 0x5e, 0x96, 0x2a, 0x41, 0x0f, 0x57, 0x7f, 0xf3, 0xdd, 0xf9, 0xd0, 0xc2, 0xd7, 0x20, 0x45, 0x6d, 0x7a, 0xf9, 0x72, 0xf6, 0xbe, 0x16, 0x53, 0xe1, 0x02, 0x51, 0xf3, 0x3c, 0x87, 0x5d, 0xb9, 0x9c, 0xfd, 0x4f, 0x9a, 0x50, 0xe5, 0x82, 0xe1, 0xdc, 0x2f, 0x13, 0x0d, 0x9d, 0xf7, 0xad, 0xe1, 0xa5, 0x81, 0x34, 0x14, 0x74, 0x7b, 0xbc, 0x4b, 0x37, 0x41, 0xab, 0x0e, 0x4c, 0x6e, 0xd5, 0x6b, 0x5b, 0xe4, 0xab, 0xd1, 0x83, 0xa8, 0x44, 0x65, 0x94, 0x7a, 0x70, 0x59, 0x0a, 0x4b, 0x11, 0x11, 0x84, 0xb4, 0x5c, 0x23, 0x72, 0x75, 0x7c, 0x5a, 0x47, 0x3a, 0xed, 0x62, 0xaf, 0xd3, 0x86, 0x95, 0x3d, 0x38, 0xe1, 0x62, 0xaf, 0x13, 0x86, 0x39, 0x14, 0x9c, 0xea, 0x0d, 0xbe, 0x38, 0xd3, 0xb7, 0x70, 0xcc, 0xb3, 0x90, 0x58, 0xa7, 0x6f, 0x08, 0x67, 0x8a, 0x19, 0xac, 0xd4, 0xb7, 0xde, 0x9d, 0x4f, 0xee, 0x77, 0xea, 0x35, 0x2b, 0xb1, 0x5e, 0x33, 0xef, 0xc2, 0xf0, 0x27, 0xd8, 0x17, 0xf4, 0xb0, 0xc0, 0x0a, 0x13, 0xf8, 0x48, 0xcc, 0x16, 0x13, 0xa1, 0x5e, 0xda, 0xaf, 0x3b, 0xfe, 0x95, 0xe5, 0x9b, 0x16, 0xa5, 0xc8, 0xfd, 0x39, 0x00, 0x7a, 0xce, 0x55, 0xdb, 0x3b, 0x36, 0xb7, 0x38, 0x33, 0x3d, 0xf5, 0xcd, 0x6f, 0xbd, 0x3b, 0xbf, 0x32, 0x08, 0xeb, 0xb3, 0x35, 0xdb, 0x3b, 0x7e, 0xd6, 0x3f, 0x69, 0xa1, 0xa5, 0xe2, 0x89, 0x8f, 0x3c, 0xce, 0xde, 0xe2, 0xab, 0x1e, 0xbb, 0xae, 0xac, 0x70, 0x5d, 0x29, 0xe9, 0x9a, 0xd6, 0xe4, 0x6b, 0xba, 0xfc, 0xb0, 0xd7, 0xf3, 0x06, 0x5f, 0x24, 0x14, 0x4b, 0xea, 0x71, 0x96, 0xd4, 0xdf, 0xaf, 0x25, 0x5b, 0xbc, 0x3e, 0x2a, 0xd7, 0xaa, 0xf7, 0xbb, 0x56, 0xfd, 0xfd, 0x5c, 0xeb, 0xff, 0xa3, 0xd9, 0x1a, 0xe4, 0xd3, 0xbe, 0x43, 0xdf, 0x4e, 0xfc, 0xb3, 0xb5, 0x17, 0xf4, 0x81, 0x76, 0x01, 0xf9, 0xe4, 0xfd, 0xb7, 0xe7, 0xb5, 0xdc, 0x17, 0x13, 0xfc, 0xca, 0x69, 0x22, 0x3d, 0xdc, 0x95, 0xff, 0x59, 0xe9, 0xa9, 0x3e, 0x0c, 0x0b, 0x7d, 0x41, 0x83, 0x99, 0xae, 0x4a, 0x4e, 0xcd, 0xf4, 0xc1, 0x96, 0x73, 0xe7, 0xb4, 0xe5, 0x9c, 0x29, 0xf8, 0x3b, 0x1a, 0x9c, 0x51, 0xca, 0x2b, 0x55, 0xef, 0x92, 0xa2, 0xde, 0xa3, 0xdd, 0x67, 0x22, 0x82, 0x82, 0x76, 0xa2, 0x7b, 0x15, 0x80, 0xc0, 0x1c, 0xf8, 0x7d, 0x45, 0xf1, 0xfb, 0xd9, 0x00, 0x10, 0x61, 0x2e, 0x1e, 0x01, 0x4c, 0x6d, 0x17, 0x92, 0x7b, 0x6d, 0x84, 0xcc, 0x39, 0x48, 0x6c, 0xb7, 0x99, 0x86, 0x13, 0x14, 0xbf, 0xdd, 0x2e, 0xb6, 0x6d, 0xa7, 0x7a, 0x6c, 0x25, 0xb6, 0xdb, 0xe6, 0x79, 0xd0, 0x0b, 0xec, 0x07, 0x18, 0xd2, 0xcb, 0x93, 0x54, 0xa0, 0xe0, 0xd4, 0x98, 0x04, 0x9e, 0x33, 0xe7, 0x20, 0xb9, 0x81, 0xec, 0x43, 0xa6, 0x04, 0x50, 0x19, 0x3c, 0x62, 0x91, 0x71, 0x76, 0xc2, 0x97, 0x21, 0xc5, 0x89, 0xcd, 0x0b, 0x18, 0x71, 0xe8, 0xb3, 0xd3, 0x32, 0x04, 0x56, 0x87, 0xad, 0x5c, 0x64, 0xd6, 0xbc, 0x08, 0xc3, 0x56, 0xfd, 0xe8, 0xd8, 0x67, 0x27, 0xef, 0x16, 0xa3, 0xd3, 0xb9, 0x7b, 0x30, 0x16, 0x68, 0xf4, 0x01, 0x53, 0xaf, 0xd2, 0x4b, 0x33, 0x67, 0xc5, 0xf5, 0x84, 0xef, 0x5b, 0xd2, 0x21, 0xf3, 0x1c, 0xa4, 0x76, 0xfd, 0x76, 0x58, 0xf4, 0x79, 0x47, 0x1a, 0x8c, 0xe6, 0x7e, 0x41, 0x83, 0xd4, 0x2a, 0x42, 0x2d, 0x62, 0xf0, 0xa7, 0x20, 0xb9, 0xea, 0xbe, 0xee, 0x30, 0x05, 0xa7, 0x98, 0x45, 0xf1, 0x34, 0xb3, 0x29, 0x99, 0x36, 0x9f, 0x12, 0xed, 0x3e, 0x1d, 0xd8, 0x5d, 0x90, 0x23, 0xb6, 0xcf, 0x49, 0xb6, 0x67, 0x0e, 0xc4, 0x42, 0x5d, 0xf6, 0xbf, 0x01, 0x69, 0xe1, 0x2c, 0xe6, 0x02, 0x53, 0x23, 0xa1, 0x02, 0x45, 0x5b, 0x61, 0x89, 0x1c, 0x82, 0x71, 0xe9, 0xc4, 0x18, 0x2a, 0x98, 0xb8, 0x07, 0x94, 0x98, 0x79, 0x51, 0x36, 0x73, 0xb4, 0x28, 0x33, 0xf5, 0x65, 0x6a, 0x23, 0x62, 0xee, 0x0b, 0x34, 0x38, 0x7b, 0x3b, 0x11, 0x7f, 0xce, 0x0d, 0x83, 0xbe, 0x55, 0x6f, 0xe4, 0x9e, 0x03, 0xa0, 0x29, 0x5f, 0x76, 0x3a, 0x4d, 0x25, 0xeb, 0x26, 0xb8, 0x81, 0xf7, 0x8e, 0xd1, 0x1e, 0xf2, 0x88, 0x88, 0xdc, 0x4f, 0xe1, 0x02, 0x03, 0x34, 0xc5, 0x08, 0xfe, 0x99, 0x58, 0x7c, 0x64, 0x27, 0x86, 0x45, 0xb3, 0x54, 0xf4, 0x1e, 0xf2, 0x0b, 0x8e, 0xeb, 0x1f, 0xa3, 0xb6, 0x82, 0x58, 0x36, 0xaf, 0x4a, 0x09, 0x3b, 0xb1, 0xfc, 0x78, 0x80, 0xe8, 0x09, 0xba, 0x9a, 0xfb, 0x2a, 0x51, 0x10, 0xb7, 0x02, 0x5d, 0x17, 0xa8, 0x0f, 0x70, 0x81, 0xe6, 0x75, 0xa9, 0x7f, 0xeb, 0xa3, 0xa6, 0x72, 0x6b, 0x79, 0x4b, 0xba, 0xcf, 0xe9, 0xaf, 0xac, 0x7c, 0x8f, 0xc9, 0x6d, 0xca, 0x55, 0x7e, 0x26, 0x56, 0xe5, 0x1e, 0xdd, 0xed, 0x69, 0x6d, 0xaa, 0x0f, 0x6a, 0xd3, 0xdf, 0x0b, 0x3a, 0x0e, 0xfa, 0x63, 0x12, 0xe4, 0xb7, 0x4b, 0xcc, 0x8f, 0xc4, 0xfa, 0x3e, 0xaf, 0x95, 0x02, 0x55, 0x57, 0x06, 0x75, 0x7f, 0x3e, 0x51, 0x2c, 0x06, 0xea, 0xde, 0x38, 0x45, 0x08, 0xe4, 0x13, 0xa5, 0x52, 0x50, 0xb6, 0x53, 0x9f, 0x7e, 0x7b, 0x5e, 0xfb, 0xca, 0xdb, 0xf3, 0x43, 0xb9, 0x5f, 0xd7, 0x60, 0x8a, 0x49, 0x0a, 0x81, 0xfb, 0xac, 0xa2, 0xfc, 0x23, 0xbc, 0x66, 0x44, 0x59, 0xe0, 0xc7, 0x16, 0xbc, 0xdf, 0xd0, 0x20, 0xdb, 0xa5, 0x2b, 0xb7, 0xf7, 0xe5, 0x81, 0x54, 0xce, 0x6b, 0xe5, 0x9f, 0xbc, 0xcd, 0xef, 0xc1, 0xf0, 0x5e, 0xbd, 0x89, 0xda, 0x78, 0x25, 0xc0, 0x1f, 0xa8, 0xca, 0xfc, 0x61, 0x0e, 0x1d, 0xe2, 0x73, 0x54, 0x39, 0x69, 0x6e, 0xd9, 0xcc, 0x42, 0x72, 0xd5, 0xf6, 0x6d, 0xa2, 0x41, 0x26, 0xa8, 0xaf, 0xb6, 0x6f, 0xe7, 0xae, 0x42, 0x66, 0xf3, 0x84, 0xbc, 0x42, 0x53, 0x23, 0xaf, 0x87, 0xc8, 0xdd, 0x1f, 0xef, 0x57, 0xaf, 0x2c, 0x0e, 0xa7, 0x6a, 0xc6, 0x7d, 0x2d, 0x9f, 0x24, 0xfa, 0xbc, 0x06, 0x13, 0xdb, 0x58, 0x6d, 0x82, 0x23, 0xb0, 0x73, 0xa0, 0x6d, 0xca, 0x8d, 0x90, 0xc8, 0x6a, 0x69, 0x9b, 0x4a, 0xfb, 0xa8, 0x07, 0xe6, 0x51, 0xda, 0x36, 0x3d, 0x68, 0xdb, 0x16, 0x93, 0xa9, 0x09, 0x63, 0x6a, 0x31, 0x99, 0x02, 0x63, 0x9c, 0x9d, 0xf7, 0x3f, 0xe8, 0x60, 0xd0, 0x56, 0x67, 0x15, 0x1d, 0xd6, 0x9d, 0xba, 0xdf, 0xdd, 0xaf, 0x06, 0x1a, 0x9b, 0x2f, 0xc0, 0x18, 0x36, 0xe9, 0x1a, 0xfb, 0x09, 0x33, 0x6c, 0xfa, 0xf3, 0xac, 0x45, 0x51, 0x28, 0xd8, 0x00, 0x09, 0x9d, 0x10, 0x63, 0xae, 0x81, 0xbe, 0xb5, 0xb5, 0xc9, 0x16, 0xb7, 0x95, 0xbe, 0x50, 0xf6, 0x06, 0x0e, 0x3b, 0x62, 0x63, 0xde, 0x91, 0x85, 0x09, 0xcc, 0x15, 0x48, 0x6c, 0x6d, 0xb2, 0x86, 0xf7, 0xc2, 0x20, 0x34, 0x56, 0x62, 0x6b, 0x73, 0xf6, 0xdf, 0x68, 0x30, 0x2e, 0x8d, 0x9a, 0x39, 0xc8, 0xd0, 0x01, 0xe1, 0x72, 0x47, 0x2c, 0x69, 0x8c, 0xeb, 0x9c, 0x78, 0x9f, 0x3a, 0xcf, 0x16, 0x60, 0x52, 0x19, 0x37, 0x97, 0xc0, 0x14, 0x87, 0x98, 0x12, 0xf4, 0xe7, 0x93, 0x22, 0x66, 0x72, 0x4f, 0x00, 0x84, 0x76, 0x0d, 0x7e, 0xf5, 0x67, 0xab, 0xbc, 0xbb, 0x57, 0x5e, 0x35, 0xb4, 0xdc, 0xd7, 0x35, 0x48, 0xb3, 0xb6, 0xb5, 0xea, 0xb6, 0x90, 0x59, 0x04, 0xad, 0xc0, 0x22, 0xe8, 0xe1, 0xf4, 0xd6, 0x0a, 0xe6, 0x25, 0xd0, 0x8a, 0x83, 0xbb, 0x5a, 0x2b, 0x9a, 0xcb, 0xa0, 0x95, 0x98, 0x83, 0x07, 0xf3, 0x8c, 0x56, 0xca, 0xfd, 0x91, 0x0e, 0xd3, 0x62, 0x1b, 0xcd, 0xeb, 0xc9, 0x79, 0xf9, 0xbe, 0x29, 0x3f, 0x76, 0x65, 0xf9, 0xea, 0xca, 0x12, 0xfe, 0x27, 0x08, 0xc9, 0x9c, 0x7c, 0x0b, 0x95, 0x87, 0x40, 0xe4, 0x4a, 0xaf, 0xf7, 0x44, 0xf2, 0x49, 0x81, 0xa1, 0xeb, 0x3d, 0x11, 0x69, 0xb6, 0xeb, 0x3d, 0x11, 0x69, 0xb6, 0xeb, 0x3d, 0x11, 0x69, 0xb6, 0xeb, 0x59, 0x80, 0x34, 0xdb, 0xf5, 0x9e, 0x88, 0x34, 0xdb, 0xf5, 0x9e, 0x88, 0x34, 0xdb, 0xfd, 0x9e, 0x08, 0x9b, 0xee, 0xf9, 0x9e, 0x88, 0x3c, 0xdf, 0xfd, 0x9e, 0x88, 0x3c, 0xdf, 0xfd, 0x9e, 0x48, 0x3e, 0xe9, 0xb7, 0x3b, 0xa8, 0xf7, 0x53, 0x07, 0x19, 0xdf, 0xef, 0x26, 0x30, 0xac, 0xc0, 0xdb, 0x30, 0x49, 0x37, 0x24, 0x4a, 0xae, 0xe3, 0xdb, 0x75, 0x07, 0xb5, 0xcd, 0x8f, 0x42, 0x86, 0x0e, 0xd1, 0xdb, 0x9c, 0xa8, 0xdb, 0x40, 0x3a, 0xcf, 0xea, 0xad, 0x24, 0x9d, 0xfb, 0xd3, 0x24, 0xcc, 0xd0, 0x81, 0x2d, 0xbb, 0x89, 0xa4, 0xb7, 0x8c, 0x2e, 0x2a, 0xcf, 0x94, 0x26, 0x30, 0xfc, 0xc1, 0xbb, 0xf3, 0x74, 0xb4, 0x10, 0x44, 0xd3, 0x45, 0xe5, 0xe9, 0x92, 0x2c, 0x17, 0x2e, 0x40, 0x17, 0x95, 0x37, 0x8f, 0x64, 0xb9, 0x60, 0xbd, 0x09, 0xe4, 0xf8, 0x3b, 0x48, 0xb2, 0xdc, 0x6a, 0x10, 0x65, 0x17, 0x95, 0xb7, 0x91, 0x64, 0xb9, 0x72, 0x10, 0x6f, 0x17, 0x95, 0x67, 0x4f, 0xb2, 0xdc, 0x5a, 0x10, 0x79, 0x17, 0x95, 0xa7, 0x50, 0xb2, 0xdc, 0x9d, 0x20, 0x06, 0x2f, 0x2a, 0xef, 0x2a, 0xc9, 0x72, 0x2f, 0x06, 0xd1, 0x78, 0x51, 0x79, 0x6b, 0x49, 0x96, 0x5b, 0x0f, 0xe2, 0x72, 0x41, 0x7d, 0x7f, 0x49, 0x16, 0xbc, 0x1b, 0x46, 0xe8, 0x82, 0xfa, 0x26, 0x93, 0x2c, 0xf9, 0xb1, 0x30, 0x56, 0x17, 0xd4, 0x77, 0x9a, 0x64, 0xc9, 0x8d, 0x30, 0x6a, 0x17, 0xd4, 0x67, 0x65, 0xb2, 0xe4, 0x66, 0x18, 0xbf, 0x0b, 0xea, 0x53, 0x33, 0x59, 0x72, 0x2b, 0x8c, 0xe4, 0x05, 0xf5, 0xf9, 0x99, 0x2c, 0xb9, 0x1d, 0x6e, 0xa2, 0xff, 0xbe, 0x12, 0x7e, 0xc2, 0x5b, 0x50, 0x39, 0x25, 0xfc, 0x20, 0x22, 0xf4, 0x94, 0x42, 0x26, 0xc8, 0x84, 0x61, 0x97, 0x53, 0xc2, 0x0e, 0x22, 0x42, 0x2e, 0xa7, 0x84, 0x1c, 0x44, 0x84, 0x5b, 0x4e, 0x09, 0x37, 0x88, 0x08, 0xb5, 0x9c, 0x12, 0x6a, 0x10, 0x11, 0x66, 0x39, 0x25, 0xcc, 0x20, 0x22, 0xc4, 0x72, 0x4a, 0x88, 0x41, 0x44, 0x78, 0xe5, 0x94, 0xf0, 0x82, 0x88, 0xd0, 0xba, 0xa0, 0x86, 0x16, 0x44, 0x85, 0xd5, 0x05, 0x35, 0xac, 0x20, 0x2a, 0xa4, 0x9e, 0x54, 0x43, 0x6a, 0xec, 0xc1, 0xbb, 0xf3, 0xc3, 0x78, 0x48, 0x88, 0xa6, 0x0b, 0x6a, 0x34, 0x41, 0x54, 0x24, 0x5d, 0x50, 0x23, 0x09, 0xa2, 0xa2, 0xe8, 0x82, 0x1a, 0x45, 0x10, 0x15, 0x41, 0xef, 0xa8, 0x11, 0x14, 0xbe, 0xe3, 0x93, 0x53, 0x1e, 0x29, 0xc6, 0x45, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x03, 0x44, 0x90, 0x3e, 0x40, 0x04, 0xe9, 0x83, 0x44, 0x90, 0x3e, 0x50, 0x04, 0xe9, 0xbd, 0x22, 0xe8, 0x82, 0xfa, 0xc6, 0x03, 0x44, 0x15, 0xa4, 0x0b, 0xea, 0xa3, 0xcf, 0xf8, 0x10, 0xd2, 0x07, 0x0a, 0x21, 0xbd, 0x57, 0x08, 0xfd, 0xbe, 0x0e, 0xd3, 0x52, 0x08, 0xb1, 0xe7, 0x43, 0x1f, 0x54, 0x05, 0xba, 0x3e, 0xc0, 0x0b, 0x16, 0x51, 0x31, 0x75, 0x7d, 0x80, 0x87, 0xd4, 0xfd, 0xe2, 0xac, 0xbb, 0x0a, 0x95, 0x07, 0xa8, 0x42, 0x6b, 0x41, 0x0c, 0x5d, 0x1f, 0xe0, 0xc5, 0x8b, 0xee, 0xd8, 0xbb, 0xd9, 0xaf, 0x08, 0xbc, 0x38, 0x50, 0x11, 0x58, 0x1f, 0xa8, 0x08, 0xdc, 0x0d, 0x3d, 0xf8, 0x8b, 0x09, 0x38, 0x13, 0x7a, 0x90, 0x7e, 0x22, 0xbf, 0x91, 0x94, 0x13, 0x1e, 0x51, 0x99, 0xfc, 0xb1, 0x8d, 0xe0, 0xc6, 0xc4, 0x7a, 0xcd, 0xdc, 0x91, 0x1f, 0x56, 0xe5, 0x4f, 0xfb, 0x00, 0x47, 0xf0, 0x38, 0xdb, 0x0c, 0xbd, 0x00, 0xfa, 0x7a, 0xcd, 0x23, 0xd5, 0x22, 0xea, 0xb4, 0x25, 0x0b, 0x4f, 0x9b, 0x16, 0x8c, 0x10, 0x71, 0x8f, 0xb8, 0xf7, 0xfd, 0x9c, 0x78, 0xd5, 0x62, 0x4c, 0xb9, 0x77, 0x34, 0x38, 0x27, 0x85, 0xf2, 0x07, 0xf3, 0xc8, 0xe0, 0xf6, 0x40, 0x8f, 0x0c, 0xa4, 0x04, 0x09, 0x1f, 0x1f, 0x3c, 0xdd, 0xfd, 0xa4, 0x5a, 0xcc, 0x12, 0xf5, 0x51, 0xc2, 0x5f, 0x84, 0x89, 0xf0, 0x0a, 0xc8, 0x3d, 0xdb, 0xb5, 0xf8, 0xdd, 0xcc, 0xa8, 0xd4, 0xbc, 0xa6, 0xec, 0xa2, 0xf5, 0x85, 0x05, 0xd9, 0x9a, 0xcb, 0xc3, 0xe4, 0x96, 0xfc, 0x65, 0x9e, 0xb8, 0xcd, 0x88, 0x14, 0x6e, 0xcd, 0xef, 0x7f, 0x69, 0x7e, 0x28, 0xf7, 0x11, 0xc8, 0x88, 0xdf, 0xd7, 0x51, 0x80, 0x63, 0x1c, 0x98, 0x4f, 0x7e, 0x13, 0x4b, 0xff, 0x7d, 0x0d, 0x1e, 0x11, 0xc5, 0x5f, 0xaa, 0xfb, 0xc7, 0xeb, 0x0e, 0xee, 0xe9, 0x9f, 0x83, 0x14, 0x62, 0x8e, 0x63, 0x3f, 0x77, 0xc2, 0xee, 0x23, 0x23, 0xc5, 0x97, 0xc8, 0xbf, 0x56, 0x00, 0x51, 0xf6, 0x38, 0xf8, 0x69, 0x97, 0x67, 0x9f, 0x82, 0x61, 0xca, 0x2f, 0xeb, 0x35, 0xae, 0xe8, 0xf5, 0x6b, 0x11, 0x7a, 0x91, 0x38, 0x32, 0xef, 0x4a, 0x7a, 0x09, 0xb7, 0xab, 0x91, 0xe2, 0x4b, 0x3c, 0xf8, 0x8a, 0x29, 0xdc, 0xff, 0x91, 0x88, 0x8a, 0x57, 0x72, 0x01, 0x52, 0x65, 0x55, 0x26, 0x5a, 0xcf, 0x55, 0x48, 0x6e, 0xb9, 0x35, 0xf2, 0x43, 0x2c, 0xe4, 0x87, 0x7b, 0x99, 0x91, 0xd9, 0xaf, 0xf8, 0x5e, 0x84, 0x54, 0xe9, 0xb8, 0xde, 0xa8, 0xb5, 0x91, 0xc3, 0x9e, 0xd9, 0xb3, 0x2d, 0x74, 0x8c, 0xb1, 0x82, 0xb9, 0x5c, 0x09, 0xa6, 0xb6, 0x5c, 0xa7, 0x78, 0xe2, 0x8b, 0x75, 0x63, 0x49, 0x49, 0x11, 0xf6, 0xcc, 0x87, 0x7c, 0x03, 0x04, 0x0b, 0x14, 0x87, 0xbf, 0xf5, 0xee, 0xbc, 0xb6, 0x17, 0xec, 0x9f, 0x6f, 0xc2, 0xa3, 0x2c, 0x7d, 0xba, 0xa8, 0x96, 0xe3, 0xa8, 0xc6, 0xd8, 0x73, 0x6a, 0x81, 0x6e, 0x1d, 0xd3, 0x39, 0x91, 0x74, 0x0f, 0xa7, 0x19, 0x6e, 0x8a, 0xfa, 0x6a, 0xa6, 0x9f, 0x4a, 0xb3, 0x48, 0xba, 0xa5, 0x38, 0x3a, 0x45, 0xb3, 0x27, 0x61, 0x2c, 0x98, 0x13, 0xa2, 0x41, 0xcc, 0x94, 0xe5, 0xc5, 0x1c, 0xa4, 0x85, 0x84, 0x35, 0x87, 0x41, 0x2b, 0x18, 0x43, 0xf8, 0xbf, 0xa2, 0xa1, 0xe1, 0xff, 0x4a, 0x46, 0x62, 0xf1, 0x29, 0x98, 0x54, 0xf6, 0x2f, 0xf1, 0xcc, 0xaa, 0x01, 0xf8, 0xbf, 0xb2, 0x91, 0x9e, 0x4d, 0x7e, 0xfa, 0x1f, 0xcd, 0x0d, 0x2d, 0xde, 0x06, 0xb3, 0x7b, 0xa7, 0xd3, 0x1c, 0x81, 0x44, 0x01, 0x53, 0x3e, 0x0a, 0x89, 0x62, 0xd1, 0xd0, 0x66, 0x27, 0xff, 0xda, 0xe7, 0xcf, 0xa5, 0x8b, 0xe4, 0xcb, 0xc8, 0xf7, 0x90, 0x5f, 0x2c, 0x32, 0xf0, 0xf3, 0xf0, 0x48, 0xe4, 0x4e, 0x29, 0xc6, 0x97, 0x4a, 0x14, 0xbf, 0xba, 0xda, 0x85, 0x5f, 0x5d, 0x25, 0x78, 0x2d, 0xcf, 0x9f, 0x38, 0x17, 0xcc, 0x88, 0x7d, 0xc9, 0x6c, 0x4d, 0x78, 0xc2, 0x5d, 0xc8, 0x3f, 0xcf, 0x64, 0x8b, 0x91, 0xb2, 0x28, 0xe6, 0x89, 0x75, 0x31, 0x5f, 0x62, 0xf8, 0x52, 0x24, 0xfe, 0x50, 0x79, 0xac, 0x2a, 0xaf, 0x10, 0x8c, 0xa4, 0x14, 0x28, 0xbc, 0x1a, 0x49, 0x72, 0x2c, 0xbc, 0xec, 0xbe, 0x1a, 0x28, 0x5c, 0x8e, 0x94, 0xad, 0xc7, 0xbc, 0xf4, 0x55, 0xce, 0x5f, 0x62, 0x8b, 0x7c, 0xe1, 0x8a, 0xf9, 0x08, 0xcf, 0x51, 0xa9, 0x02, 0x33, 0x03, 0x71, 0xa9, 0x7c, 0x89, 0x01, 0x8a, 0x3d, 0x01, 0xbd, 0xad, 0xc4, 0x91, 0xf9, 0x17, 0x19, 0x49, 0xa9, 0x27, 0x49, 0x8c, 0xa9, 0x38, 0xbc, 0xb8, 0x77, 0xff, 0xbd, 0xb9, 0xa1, 0x6f, 0xbe, 0x37, 0x37, 0xf4, 0x5f, 0xde, 0x9b, 0x1b, 0xfa, 0xf6, 0x7b, 0x73, 0xda, 0xf7, 0xde, 0x9b, 0xd3, 0x7e, 0xf0, 0xde, 0x9c, 0xf6, 0x27, 0xef, 0xcd, 0x69, 0x6f, 0x3d, 0x98, 0xd3, 0xbe, 0xf2, 0x60, 0x4e, 0xfb, 0xea, 0x83, 0x39, 0xed, 0x77, 0x1f, 0xcc, 0x69, 0xef, 0x3c, 0x98, 0xd3, 0xee, 0x3f, 0x98, 0xd3, 0xbe, 0xf9, 0x60, 0x4e, 0xfb, 0xf6, 0x83, 0x39, 0xed, 0x7b, 0x0f, 0xe6, 0x86, 0x7e, 0xf0, 0x60, 0x4e, 0xfb, 0x93, 0x07, 0x73, 0x43, 0x6f, 0x7d, 0x67, 0x6e, 0xe8, 0xed, 0xef, 0xcc, 0x0d, 0x7d, 0xe5, 0x3b, 0x73, 0x1a, 0xfc, 0xe1, 0x0a, 0xe4, 0xd8, 0x37, 0xc9, 0x84, 0xaf, 0xbb, 0x5e, 0xf2, 0x8f, 0x11, 0x69, 0x0a, 0xae, 0xf2, 0x9f, 0x74, 0x0a, 0x06, 0x4e, 0xf9, 0xbd, 0xb2, 0xd9, 0x87, 0xfd, 0x16, 0x5b, 0xee, 0xdf, 0x0e, 0xc3, 0x28, 0xdf, 0x0d, 0x8e, 0xfa, 0x71, 0xea, 0x6b, 0x90, 0x3a, 0xae, 0x37, 0xec, 0x76, 0xdd, 0x3f, 0x61, 0xdb, 0xa0, 0x8f, 0x2d, 0x85, 0x6a, 0xf3, 0x8d, 0xd3, 0x17, 0x3b, 0x4d, 0xb7, 0xd3, 0xb6, 0x02, 0x51, 0xf3, 0x1c, 0x64, 0x8e, 0x51, 0xfd, 0xe8, 0xd8, 0xaf, 0xd4, 0x9d, 0x4a, 0xb5, 0x49, 0xba, 0xe5, 0x71, 0x0b, 0xe8, 0xd8, 0xba, 0x53, 0x6a, 0xe2, 0x93, 0xd5, 0x6c, 0xdf, 0x26, 0x77, 0xe9, 0x19, 0x8b, 0x7c, 0x36, 0xcf, 0x43, 0xa6, 0x8d, 0xbc, 0x4e, 0xc3, 0xaf, 0x54, 0xdd, 0x8e, 0xe3, 0x93, 0x7e, 0x56, 0xb7, 0xd2, 0x74, 0xac, 0x84, 0x87, 0xcc, 0x27, 0x61, 0xdc, 0x6f, 0x77, 0x50, 0xc5, 0xab, 0xba, 0xbe, 0xd7, 0xb4, 0x1d, 0xd2, 0xcf, 0xa6, 0xac, 0x0c, 0x1e, 0xdc, 0x65, 0x63, 0xe4, 0x4f, 0x2f, 0x54, 0xdd, 0x36, 0x22, 0xb7, 0xd3, 0x09, 0x8b, 0x1e, 0x98, 0x06, 0xe8, 0xaf, 0xa2, 0x13, 0x72, 0xc3, 0x96, 0xb4, 0xf0, 0x47, 0xf3, 0x19, 0x18, 0xa1, 0x7f, 0xd7, 0x83, 0x74, 0xd7, 0xe4, 0xe1, 0x75, 0x70, 0x69, 0x74, 0x93, 0xd6, 0x62, 0x02, 0xe6, 0x2d, 0x18, 0xf5, 0x51, 0xbb, 0x6d, 0xd7, 0x1d, 0x72, 0xf3, 0x94, 0x5e, 0x9e, 0x8f, 0x30, 0xc3, 0x1e, 0x95, 0x20, 0xbf, 0xef, 0x6a, 0x71, 0x79, 0xf3, 0x1a, 0x64, 0x88, 0xdc, 0x72, 0x85, 0xfe, 0xed, 0x93, 0x74, 0xcf, 0x78, 0x4e, 0x53, 0x39, 0xfe, 0xac, 0x80, 0xc3, 0xe8, 0x6f, 0xdb, 0x8d, 0x93, 0xd3, 0x3e, 0x19, 0x71, 0x5a, 0x52, 0x7a, 0x97, 0x49, 0xdb, 0x48, 0x4f, 0xcd, 0x78, 0xe8, 0xaf, 0xdf, 0x6d, 0x42, 0x46, 0xd4, 0x8b, 0x9b, 0x81, 0xb6, 0x3f, 0xc4, 0x0c, 0x4f, 0x87, 0xbf, 0x2b, 0xdf, 0xc3, 0x0a, 0x74, 0x3e, 0x9f, 0xb8, 0xa9, 0xcd, 0xee, 0x80, 0xa1, 0x9e, 0x2f, 0x82, 0xf2, 0xa2, 0x4c, 0x69, 0x88, 0x17, 0x4b, 0x76, 0xca, 0x43, 0xc6, 0xdc, 0x0b, 0x30, 0x42, 0xe3, 0xc7, 0x4c, 0xc3, 0x68, 0xf8, 0xb3, 0x89, 0x29, 0x48, 0xee, 0xec, 0x6f, 0xed, 0xd2, 0xdf, 0x3f, 0xdd, 0xdd, 0x28, 0xec, 0xec, 0xee, 0xad, 0x97, 0x3e, 0x66, 0x24, 0xcc, 0x49, 0x48, 0x17, 0xd7, 0x37, 0x36, 0x2a, 0xc5, 0xc2, 0xfa, 0x46, 0xf9, 0x9e, 0xa1, 0xe7, 0xe6, 0x60, 0x84, 0xea, 0x49, 0x7e, 0xc7, 0xad, 0xe3, 0x38, 0x27, 0xbc, 0x7d, 0x20, 0x07, 0xb9, 0xaf, 0x99, 0x30, 0x5a, 0x68, 0x34, 0x36, 0xed, 0x96, 0x67, 0xbe, 0x04, 0x53, 0xf4, 0x17, 0x25, 0xf6, 0xdc, 0x55, 0xf2, 0x73, 0x83, 0xb8, 0x38, 0x68, 0xec, 0xf7, 0xf4, 0xc3, 0xeb, 0x66, 0xe2, 0x4b, 0x5d, 0xb2, 0xd4, 0xc0, 0xdd, 0x1c, 0xe6, 0x1e, 0x18, 0x7c, 0x70, 0xad, 0xe1, 0xda, 0x3e, 0xe6, 0x4d, 0xb0, 0x5f, 0x03, 0xec, 0xcd, 0xcb, 0x45, 0x29, 0x6d, 0x17, 0x83, 0xf9, 0x51, 0x48, 0xad, 0x3b, 0xfe, 0xd5, 0x65, 0xcc, 0xc6, 0xff, 0x56, 0x4d, 0x37, 0x1b, 0x17, 0xa1, 0x2c, 0x01, 0x82, 0xa1, 0xaf, 0xaf, 0x60, 0x74, 0xb2, 0x1f, 0x9a, 0x88, 0x84, 0x68, 0x72, 0x68, 0xbe, 0x00, 0x63, 0xf8, 0xee, 0x84, 0x9e, 0x7c, 0x98, 0xb7, 0xae, 0x5d, 0xf0, 0x40, 0x86, 0xe2, 0x43, 0x0c, 0x27, 0xa0, 0xe7, 0x1f, 0xe9, 0x4b, 0x20, 0x28, 0x10, 0x62, 0x30, 0xc1, 0x6e, 0xa0, 0xc1, 0x68, 0x4f, 0x82, 0x5d, 0x45, 0x83, 0x5d, 0x51, 0x83, 0xdd, 0x40, 0x83, 0x54, 0x5f, 0x02, 0x51, 0x83, 0xe0, 0xd8, 0x2c, 0x02, 0xac, 0xd5, 0xdf, 0x40, 0x35, 0xaa, 0x02, 0xfd, 0x4b, 0x36, 0xb9, 0x08, 0x86, 0x50, 0x88, 0x52, 0x08, 0x28, 0xb3, 0x0c, 0xe9, 0xdd, 0xc3, 0x90, 0x04, 0xba, 0xf2, 0x38, 0x50, 0xe3, 0x50, 0x61, 0x11, 0x71, 0x81, 0x2a, 0xf4, 0x62, 0xd2, 0xfd, 0x55, 0x11, 0xae, 0x46, 0x40, 0x85, 0xaa, 0x50, 0x92, 0x4c, 0x8c, 0x2a, 0x02, 0x8b, 0x88, 0xc3, 0xc5, 0xb0, 0xe8, 0xba, 0x58, 0x92, 0x55, 0xa5, 0xf9, 0x08, 0x0a, 0x26, 0xc1, 0x8a, 0x21, 0x3b, 0x22, 0x1e, 0x21, 0x41, 0x8e, 0xc1, 0x13, 0xbd, 0x3d, 0xc2, 0x65, 0xb8, 0x47, 0xf8, 0xb1, 0x98, 0x67, 0xe4, 0x8d, 0x56, 0xcc, 0x33, 0x19, 0x9b, 0x67, 0x5c, 0x54, 0xc9, 0x33, 0x3e, 0x6c, 0x7e, 0x1c, 0x26, 0xf9, 0x18, 0x2e, 0x4f, 0x98, 0xd4, 0x60, 0x7f, 0xeb, 0xab, 0x37, 0x29, 0x93, 0xa4, 0x9c, 0x2a, 0xde, 0xdc, 0x82, 0x09, 0x3e, 0xb4, 0xe9, 0x91, 0xcb, 0x9d, 0x62, 0x7f, 0x87, 0xa2, 0x37, 0x23, 0x15, 0xa4, 0x84, 0x0a, 0x7a, 0x76, 0x15, 0x66, 0xa2, 0xab, 0x91, 0x58, 0x7e, 0xc7, 0x68, 0xf9, 0x3d, 0x23, 0x96, 0x5f, 0x4d, 0x2c, 0xdf, 0x25, 0x78, 0x24, 0xb2, 0xf6, 0xc4, 0x91, 0x24, 0x44, 0x92, 0xdb, 0x30, 0x2e, 0x95, 0x1c, 0x11, 0x3c, 0x1c, 0x01, 0x1e, 0xee, 0x06, 0x87, 0xa1, 0x15, 0xb1, 0x7a, 0x48, 0x60, 0x5d, 0x04, 0x7f, 0x14, 0x26, 0xe4, 0x7a, 0x23, 0xa2, 0xc7, 0x23, 0xd0, 0xe3, 0x11, 0xe8, 0xe8, 0x73, 0x27, 0x23, 0xd0, 0x49, 0x05, 0xbd, 0xdb, 0xf3, 0xdc, 0x53, 0x11, 0xe8, 0xa9, 0x08, 0x74, 0xf4, 0xb9, 0xcd, 0x08, 0xb4, 0x29, 0xa2, 0x9f, 0x83, 0x49, 0xa5, 0xc4, 0x88, 0xf0, 0xd1, 0x08, 0xf8, 0xa8, 0x08, 0x7f, 0x1e, 0x0c, 0xb5, 0xb8, 0x88, 0xf8, 0xc9, 0x08, 0xfc, 0x64, 0xd4, 0xe9, 0xa3, 0xb5, 0x1f, 0x89, 0x80, 0x8f, 0x44, 0x9e, 0x3e, 0x1a, 0x6f, 0x44, 0xe0, 0x0d, 0x11, 0x9f, 0x87, 0x8c, 0x58, 0x4d, 0x44, 0x6c, 0x2a, 0x02, 0x9b, 0x52, 0xed, 0x2e, 0x15, 0x93, 0xb8, 0x48, 0x1f, 0xeb, 0x91, 0x2e, 0x52, 0x09, 0x89, 0x23, 0xc9, 0x88, 0x24, 0x9f, 0x80, 0x33, 0x51, 0x25, 0x23, 0x82, 0x63, 0x41, 0xe4, 0x98, 0xc0, 0x3d, 0x62, 0xd8, 0xec, 0xd9, 0x2d, 0xa5, 0x71, 0x9a, 0xfd, 0x24, 0x4c, 0x47, 0x14, 0x8e, 0x08, 0xda, 0x25, 0xb9, 0x1b, 0xcb, 0x0a, 0xb4, 0xa4, 0x08, 0xd4, 0x9d, 0xa3, 0x1d, 0xb7, 0xee, 0xf8, 0x62, 0x57, 0xf6, 0xf5, 0x69, 0x98, 0x60, 0xe5, 0x69, 0xbb, 0x5d, 0x43, 0x6d, 0x54, 0x33, 0xff, 0x7c, 0xef, 0xde, 0xe9, 0x72, 0x77, 0x51, 0x63, 0xa8, 0x53, 0xb4, 0x50, 0x9f, 0xec, 0xd9, 0x42, 0x5d, 0x8a, 0xa7, 0x8f, 0xeb, 0xa4, 0x4a, 0x5d, 0x9d, 0xd4, 0xd3, 0xbd, 0x49, 0x7b, 0x35, 0x54, 0xa5, 0xae, 0x86, 0xaa, 0x3f, 0x49, 0x64, 0x5f, 0xb5, 0xd6, 0xdd, 0x57, 0x2d, 0xf4, 0x66, 0xe9, 0xdd, 0x5e, 0xad, 0x75, 0xb7, 0x57, 0x31, 0x3c, 0xd1, 0x5d, 0xd6, 0x5a, 0x77, 0x97, 0xd5, 0x87, 0xa7, 0x77, 0xb3, 0xb5, 0xd6, 0xdd, 0x6c, 0xc5, 0xf0, 0x44, 0xf7, 0x5c, 0xeb, 0x11, 0x3d, 0xd7, 0x33, 0xbd, 0x89, 0xfa, 0xb5, 0x5e, 0x1b, 0x51, 0xad, 0xd7, 0x62, 0x1f, 0xa5, 0xfa, 0x76, 0x60, 0xeb, 0x11, 0x1d, 0x58, 0x9c, 0x62, 0x3d, 0x1a, 0xb1, 0x8d, 0xa8, 0x46, 0x2c, 0x56, 0xb1, 0x5e, 0xfd, 0xd8, 0xcf, 0xaa, 0xfd, 0xd8, 0xc5, 0xde, 0x4c, 0xd1, 0x6d, 0xd9, 0x5a, 0x77, 0x5b, 0xb6, 0x10, 0x97, 0x73, 0x51, 0xdd, 0xd9, 0x27, 0x7b, 0x76, 0x67, 0x03, 0xa4, 0x70, 0x5c, 0x93, 0xf6, 0x72, 0xaf, 0x26, 0x6d, 0x29, 0x9e, 0xbb, 0x7f, 0xaf, 0xb6, 0xdf, 0xa3, 0x57, 0x7b, 0x36, 0x9e, 0xf8, 0xa7, 0x2d, 0xdb, 0x4f, 0x5b, 0xb6, 0x9f, 0xb6, 0x6c, 0x3f, 0x6d, 0xd9, 0x7e, 0xf2, 0x2d, 0x5b, 0x3e, 0xf9, 0x99, 0x2f, 0xcd, 0x6b, 0xb9, 0xff, 0xac, 0x07, 0x7f, 0x3a, 0xeb, 0xa5, 0xba, 0x7f, 0x8c, 0xcb, 0xdb, 0x26, 0x64, 0xc8, 0x1f, 0xbd, 0x68, 0xda, 0xad, 0x56, 0xdd, 0x39, 0x62, 0x3d, 0xdb, 0x62, 0xf7, 0x56, 0x22, 0x03, 0x90, 0x3f, 0x1b, 0xb2, 0x49, 0x85, 0xd9, 0x72, 0xe3, 0x84, 0x23, 0xe6, 0x5d, 0x48, 0x37, 0xbd, 0xa3, 0x80, 0x2d, 0xd1, 0xb5, 0x10, 0x2a, 0x6c, 0xf4, 0x4a, 0x43, 0x32, 0x68, 0x06, 0x03, 0x58, 0xb5, 0x83, 0x13, 0x3f, 0x54, 0x4d, 0x8f, 0x53, 0x0d, 0xfb, 0x54, 0x56, 0xed, 0x20, 0x1c, 0xc1, 0x61, 0xab, 0xea, 0x1e, 0x57, 0xe9, 0xa4, 0xe0, 0x79, 0x09, 0x26, 0x15, 0x6d, 0x23, 0x72, 0xfe, 0x21, 0x7c, 0x83, 0x15, 0x53, 0x35, 0x8f, 0xcb, 0x09, 0x31, 0x20, 0x73, 0x4f, 0xc0, 0xb8, 0xc4, 0x6d, 0x66, 0x40, 0x3b, 0x64, 0x5f, 0xa7, 0xd4, 0x0e, 0x73, 0x5f, 0xd4, 0x20, 0xcd, 0x5e, 0x25, 0xd8, 0xb1, 0xeb, 0x6d, 0xf3, 0x45, 0x48, 0x36, 0xf8, 0x57, 0x9a, 0x1e, 0xf6, 0xeb, 0xb3, 0x84, 0xc1, 0x5c, 0x83, 0xe1, 0x76, 0xf0, 0x95, 0xa7, 0x87, 0xfa, 0x4e, 0x2c, 0x81, 0xe7, 0xee, 0x6b, 0x30, 0xc5, 0xde, 0x74, 0xf5, 0xd8, 0x0b, 0xd0, 0x76, 0x6b, 0xf6, 0x6b, 0x1a, 0x8c, 0x05, 0x47, 0xe6, 0x01, 0x4c, 0x04, 0x07, 0xf4, 0x25, 0x7b, 0x1a, 0xa9, 0x79, 0xc1, 0xc2, 0x5d, 0x1c, 0x4b, 0x11, 0x9f, 0xe8, 0xc3, 0x28, 0xba, 0x26, 0xcb, 0x83, 0xb3, 0x05, 0x98, 0x8e, 0x10, 0x3b, 0xcd, 0x82, 0x9c, 0x3b, 0x0f, 0x63, 0x5b, 0xae, 0x4f, 0x7f, 0x39, 0xc7, 0x3c, 0x23, 0x3c, 0x55, 0x28, 0x26, 0x8c, 0x21, 0x02, 0x5e, 0x3c, 0x0f, 0xa3, 0x2c, 0xfb, 0xcd, 0x11, 0x48, 0x6c, 0x16, 0x8c, 0x21, 0xf2, 0x7f, 0xd1, 0xd0, 0xc8, 0xff, 0x25, 0x23, 0x51, 0xdc, 0x78, 0x88, 0x27, 0x4d, 0x43, 0xbd, 0x9e, 0x34, 0x1d, 0x8c, 0x50, 0xf3, 0xfc, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x64, 0x2a, 0x3c, 0xfd, 0x76, 0x80, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x MapEnum) String() string { s, ok := MapEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x Message_Humour) String() string { s, ok := Message_Humour_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *Message) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Message") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Message but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Message but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Hilarity != that1.Hilarity { return fmt.Errorf("Hilarity this(%v) Not Equal that(%v)", this.Hilarity, that1.Hilarity) } if this.HeightInCm != that1.HeightInCm { return fmt.Errorf("HeightInCm this(%v) Not Equal that(%v)", this.HeightInCm, that1.HeightInCm) } if !bytes.Equal(this.Data, that1.Data) { return fmt.Errorf("Data this(%v) Not Equal that(%v)", this.Data, that1.Data) } if this.ResultCount != that1.ResultCount { return fmt.Errorf("ResultCount this(%v) Not Equal that(%v)", this.ResultCount, that1.ResultCount) } if this.TrueScotsman != that1.TrueScotsman { return fmt.Errorf("TrueScotsman this(%v) Not Equal that(%v)", this.TrueScotsman, that1.TrueScotsman) } if this.Score != that1.Score { return fmt.Errorf("Score this(%v) Not Equal that(%v)", this.Score, that1.Score) } if len(this.Key) != len(that1.Key) { return fmt.Errorf("Key this(%v) Not Equal that(%v)", len(this.Key), len(that1.Key)) } for i := range this.Key { if this.Key[i] != that1.Key[i] { return fmt.Errorf("Key this[%v](%v) Not Equal that[%v](%v)", i, this.Key[i], i, that1.Key[i]) } } if !this.Nested.Equal(that1.Nested) { return fmt.Errorf("Nested this(%v) Not Equal that(%v)", this.Nested, that1.Nested) } if len(this.Terrain) != len(that1.Terrain) { return fmt.Errorf("Terrain this(%v) Not Equal that(%v)", len(this.Terrain), len(that1.Terrain)) } for i := range this.Terrain { if !this.Terrain[i].Equal(that1.Terrain[i]) { return fmt.Errorf("Terrain this[%v](%v) Not Equal that[%v](%v)", i, this.Terrain[i], i, that1.Terrain[i]) } } if !this.Proto2Field.Equal(that1.Proto2Field) { return fmt.Errorf("Proto2Field this(%v) Not Equal that(%v)", this.Proto2Field, that1.Proto2Field) } if len(this.Proto2Value) != len(that1.Proto2Value) { return fmt.Errorf("Proto2Value this(%v) Not Equal that(%v)", len(this.Proto2Value), len(that1.Proto2Value)) } for i := range this.Proto2Value { if !this.Proto2Value[i].Equal(that1.Proto2Value[i]) { return fmt.Errorf("Proto2Value this[%v](%v) Not Equal that[%v](%v)", i, this.Proto2Value[i], i, that1.Proto2Value[i]) } } return nil } func (this *Message) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Message) if !ok { that2, ok := that.(Message) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Hilarity != that1.Hilarity { return false } if this.HeightInCm != that1.HeightInCm { return false } if !bytes.Equal(this.Data, that1.Data) { return false } if this.ResultCount != that1.ResultCount { return false } if this.TrueScotsman != that1.TrueScotsman { return false } if this.Score != that1.Score { return false } if len(this.Key) != len(that1.Key) { return false } for i := range this.Key { if this.Key[i] != that1.Key[i] { return false } } if !this.Nested.Equal(that1.Nested) { return false } if len(this.Terrain) != len(that1.Terrain) { return false } for i := range this.Terrain { if !this.Terrain[i].Equal(that1.Terrain[i]) { return false } } if !this.Proto2Field.Equal(that1.Proto2Field) { return false } if len(this.Proto2Value) != len(that1.Proto2Value) { return false } for i := range this.Proto2Value { if !this.Proto2Value[i].Equal(that1.Proto2Value[i]) { return false } } return true } func (this *Nested) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Nested) if !ok { that2, ok := that.(Nested) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Nested") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Nested but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Nested but is not nil && this == nil") } if this.Bunny != that1.Bunny { return fmt.Errorf("Bunny this(%v) Not Equal that(%v)", this.Bunny, that1.Bunny) } return nil } func (this *Nested) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Nested) if !ok { that2, ok := that.(Nested) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Bunny != that1.Bunny { return false } return true } func (this *AllMaps) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMaps") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMaps but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMaps but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } return nil } func (this *AllMaps) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMaps) if !ok { that2, ok := that.(AllMaps) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } return true } func (this *AllMapsOrdered) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AllMapsOrdered") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AllMapsOrdered but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AllMapsOrdered but is not nil && this == nil") } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return fmt.Errorf("StringToDoubleMap this(%v) Not Equal that(%v)", len(this.StringToDoubleMap), len(that1.StringToDoubleMap)) } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return fmt.Errorf("StringToDoubleMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToDoubleMap[i], i, that1.StringToDoubleMap[i]) } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return fmt.Errorf("StringToFloatMap this(%v) Not Equal that(%v)", len(this.StringToFloatMap), len(that1.StringToFloatMap)) } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return fmt.Errorf("StringToFloatMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToFloatMap[i], i, that1.StringToFloatMap[i]) } } if len(this.Int32Map) != len(that1.Int32Map) { return fmt.Errorf("Int32Map this(%v) Not Equal that(%v)", len(this.Int32Map), len(that1.Int32Map)) } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return fmt.Errorf("Int32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int32Map[i], i, that1.Int32Map[i]) } } if len(this.Int64Map) != len(that1.Int64Map) { return fmt.Errorf("Int64Map this(%v) Not Equal that(%v)", len(this.Int64Map), len(that1.Int64Map)) } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return fmt.Errorf("Int64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Int64Map[i], i, that1.Int64Map[i]) } } if len(this.Uint32Map) != len(that1.Uint32Map) { return fmt.Errorf("Uint32Map this(%v) Not Equal that(%v)", len(this.Uint32Map), len(that1.Uint32Map)) } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return fmt.Errorf("Uint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint32Map[i], i, that1.Uint32Map[i]) } } if len(this.Uint64Map) != len(that1.Uint64Map) { return fmt.Errorf("Uint64Map this(%v) Not Equal that(%v)", len(this.Uint64Map), len(that1.Uint64Map)) } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return fmt.Errorf("Uint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Uint64Map[i], i, that1.Uint64Map[i]) } } if len(this.Sint32Map) != len(that1.Sint32Map) { return fmt.Errorf("Sint32Map this(%v) Not Equal that(%v)", len(this.Sint32Map), len(that1.Sint32Map)) } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return fmt.Errorf("Sint32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint32Map[i], i, that1.Sint32Map[i]) } } if len(this.Sint64Map) != len(that1.Sint64Map) { return fmt.Errorf("Sint64Map this(%v) Not Equal that(%v)", len(this.Sint64Map), len(that1.Sint64Map)) } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return fmt.Errorf("Sint64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sint64Map[i], i, that1.Sint64Map[i]) } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return fmt.Errorf("Fixed32Map this(%v) Not Equal that(%v)", len(this.Fixed32Map), len(that1.Fixed32Map)) } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return fmt.Errorf("Fixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed32Map[i], i, that1.Fixed32Map[i]) } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return fmt.Errorf("Sfixed32Map this(%v) Not Equal that(%v)", len(this.Sfixed32Map), len(that1.Sfixed32Map)) } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return fmt.Errorf("Sfixed32Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed32Map[i], i, that1.Sfixed32Map[i]) } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return fmt.Errorf("Fixed64Map this(%v) Not Equal that(%v)", len(this.Fixed64Map), len(that1.Fixed64Map)) } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return fmt.Errorf("Fixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Fixed64Map[i], i, that1.Fixed64Map[i]) } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return fmt.Errorf("Sfixed64Map this(%v) Not Equal that(%v)", len(this.Sfixed64Map), len(that1.Sfixed64Map)) } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return fmt.Errorf("Sfixed64Map this[%v](%v) Not Equal that[%v](%v)", i, this.Sfixed64Map[i], i, that1.Sfixed64Map[i]) } } if len(this.BoolMap) != len(that1.BoolMap) { return fmt.Errorf("BoolMap this(%v) Not Equal that(%v)", len(this.BoolMap), len(that1.BoolMap)) } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return fmt.Errorf("BoolMap this[%v](%v) Not Equal that[%v](%v)", i, this.BoolMap[i], i, that1.BoolMap[i]) } } if len(this.StringMap) != len(that1.StringMap) { return fmt.Errorf("StringMap this(%v) Not Equal that(%v)", len(this.StringMap), len(that1.StringMap)) } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return fmt.Errorf("StringMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringMap[i], i, that1.StringMap[i]) } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return fmt.Errorf("StringToBytesMap this(%v) Not Equal that(%v)", len(this.StringToBytesMap), len(that1.StringToBytesMap)) } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return fmt.Errorf("StringToBytesMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToBytesMap[i], i, that1.StringToBytesMap[i]) } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return fmt.Errorf("StringToEnumMap this(%v) Not Equal that(%v)", len(this.StringToEnumMap), len(that1.StringToEnumMap)) } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return fmt.Errorf("StringToEnumMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToEnumMap[i], i, that1.StringToEnumMap[i]) } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return fmt.Errorf("StringToMsgMap this(%v) Not Equal that(%v)", len(this.StringToMsgMap), len(that1.StringToMsgMap)) } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return fmt.Errorf("StringToMsgMap this[%v](%v) Not Equal that[%v](%v)", i, this.StringToMsgMap[i], i, that1.StringToMsgMap[i]) } } return nil } func (this *AllMapsOrdered) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AllMapsOrdered) if !ok { that2, ok := that.(AllMapsOrdered) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.StringToDoubleMap) != len(that1.StringToDoubleMap) { return false } for i := range this.StringToDoubleMap { if this.StringToDoubleMap[i] != that1.StringToDoubleMap[i] { return false } } if len(this.StringToFloatMap) != len(that1.StringToFloatMap) { return false } for i := range this.StringToFloatMap { if this.StringToFloatMap[i] != that1.StringToFloatMap[i] { return false } } if len(this.Int32Map) != len(that1.Int32Map) { return false } for i := range this.Int32Map { if this.Int32Map[i] != that1.Int32Map[i] { return false } } if len(this.Int64Map) != len(that1.Int64Map) { return false } for i := range this.Int64Map { if this.Int64Map[i] != that1.Int64Map[i] { return false } } if len(this.Uint32Map) != len(that1.Uint32Map) { return false } for i := range this.Uint32Map { if this.Uint32Map[i] != that1.Uint32Map[i] { return false } } if len(this.Uint64Map) != len(that1.Uint64Map) { return false } for i := range this.Uint64Map { if this.Uint64Map[i] != that1.Uint64Map[i] { return false } } if len(this.Sint32Map) != len(that1.Sint32Map) { return false } for i := range this.Sint32Map { if this.Sint32Map[i] != that1.Sint32Map[i] { return false } } if len(this.Sint64Map) != len(that1.Sint64Map) { return false } for i := range this.Sint64Map { if this.Sint64Map[i] != that1.Sint64Map[i] { return false } } if len(this.Fixed32Map) != len(that1.Fixed32Map) { return false } for i := range this.Fixed32Map { if this.Fixed32Map[i] != that1.Fixed32Map[i] { return false } } if len(this.Sfixed32Map) != len(that1.Sfixed32Map) { return false } for i := range this.Sfixed32Map { if this.Sfixed32Map[i] != that1.Sfixed32Map[i] { return false } } if len(this.Fixed64Map) != len(that1.Fixed64Map) { return false } for i := range this.Fixed64Map { if this.Fixed64Map[i] != that1.Fixed64Map[i] { return false } } if len(this.Sfixed64Map) != len(that1.Sfixed64Map) { return false } for i := range this.Sfixed64Map { if this.Sfixed64Map[i] != that1.Sfixed64Map[i] { return false } } if len(this.BoolMap) != len(that1.BoolMap) { return false } for i := range this.BoolMap { if this.BoolMap[i] != that1.BoolMap[i] { return false } } if len(this.StringMap) != len(that1.StringMap) { return false } for i := range this.StringMap { if this.StringMap[i] != that1.StringMap[i] { return false } } if len(this.StringToBytesMap) != len(that1.StringToBytesMap) { return false } for i := range this.StringToBytesMap { if !bytes.Equal(this.StringToBytesMap[i], that1.StringToBytesMap[i]) { return false } } if len(this.StringToEnumMap) != len(that1.StringToEnumMap) { return false } for i := range this.StringToEnumMap { if this.StringToEnumMap[i] != that1.StringToEnumMap[i] { return false } } if len(this.StringToMsgMap) != len(that1.StringToMsgMap) { return false } for i := range this.StringToMsgMap { if !this.StringToMsgMap[i].Equal(that1.StringToMsgMap[i]) { return false } } return true } func (this *MessageWithMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MessageWithMap) if !ok { that2, ok := that.(MessageWithMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MessageWithMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MessageWithMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MessageWithMap but is not nil && this == nil") } if len(this.NameMapping) != len(that1.NameMapping) { return fmt.Errorf("NameMapping this(%v) Not Equal that(%v)", len(this.NameMapping), len(that1.NameMapping)) } for i := range this.NameMapping { if this.NameMapping[i] != that1.NameMapping[i] { return fmt.Errorf("NameMapping this[%v](%v) Not Equal that[%v](%v)", i, this.NameMapping[i], i, that1.NameMapping[i]) } } if len(this.MsgMapping) != len(that1.MsgMapping) { return fmt.Errorf("MsgMapping this(%v) Not Equal that(%v)", len(this.MsgMapping), len(that1.MsgMapping)) } for i := range this.MsgMapping { if !this.MsgMapping[i].Equal(that1.MsgMapping[i]) { return fmt.Errorf("MsgMapping this[%v](%v) Not Equal that[%v](%v)", i, this.MsgMapping[i], i, that1.MsgMapping[i]) } } if len(this.ByteMapping) != len(that1.ByteMapping) { return fmt.Errorf("ByteMapping this(%v) Not Equal that(%v)", len(this.ByteMapping), len(that1.ByteMapping)) } for i := range this.ByteMapping { if !bytes.Equal(this.ByteMapping[i], that1.ByteMapping[i]) { return fmt.Errorf("ByteMapping this[%v](%v) Not Equal that[%v](%v)", i, this.ByteMapping[i], i, that1.ByteMapping[i]) } } return nil } func (this *MessageWithMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MessageWithMap) if !ok { that2, ok := that.(MessageWithMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NameMapping) != len(that1.NameMapping) { return false } for i := range this.NameMapping { if this.NameMapping[i] != that1.NameMapping[i] { return false } } if len(this.MsgMapping) != len(that1.MsgMapping) { return false } for i := range this.MsgMapping { if !this.MsgMapping[i].Equal(that1.MsgMapping[i]) { return false } } if len(this.ByteMapping) != len(that1.ByteMapping) { return false } for i := range this.ByteMapping { if !bytes.Equal(this.ByteMapping[i], that1.ByteMapping[i]) { return false } } return true } func (this *FloatingPoint) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *FloatingPoint") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *FloatingPoint but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *FloatingPoint but is not nil && this == nil") } if this.F != that1.F { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } return nil } func (this *FloatingPoint) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FloatingPoint) if !ok { that2, ok := that.(FloatingPoint) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.F != that1.F { return false } return true } func (this *Uint128Pair) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Uint128Pair) if !ok { that2, ok := that.(Uint128Pair) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Uint128Pair") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Uint128Pair but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Uint128Pair but is not nil && this == nil") } if !this.Left.Equal(that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if that1.Right == nil { if this.Right != nil { return fmt.Errorf("this.Right != nil && that1.Right == nil") } } else if !this.Right.Equal(*that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } return nil } func (this *Uint128Pair) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Uint128Pair) if !ok { that2, ok := that.(Uint128Pair) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(that1.Left) { return false } if that1.Right == nil { if this.Right != nil { return false } } else if !this.Right.Equal(*that1.Right) { return false } return true } func (this *ContainsNestedMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ContainsNestedMap) if !ok { that2, ok := that.(ContainsNestedMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ContainsNestedMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ContainsNestedMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ContainsNestedMap but is not nil && this == nil") } return nil } func (this *ContainsNestedMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ContainsNestedMap) if !ok { that2, ok := that.(ContainsNestedMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } return true } func (this *ContainsNestedMap_NestedMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ContainsNestedMap_NestedMap) if !ok { that2, ok := that.(ContainsNestedMap_NestedMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ContainsNestedMap_NestedMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ContainsNestedMap_NestedMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ContainsNestedMap_NestedMap but is not nil && this == nil") } if len(this.NestedMapField) != len(that1.NestedMapField) { return fmt.Errorf("NestedMapField this(%v) Not Equal that(%v)", len(this.NestedMapField), len(that1.NestedMapField)) } for i := range this.NestedMapField { if this.NestedMapField[i] != that1.NestedMapField[i] { return fmt.Errorf("NestedMapField this[%v](%v) Not Equal that[%v](%v)", i, this.NestedMapField[i], i, that1.NestedMapField[i]) } } return nil } func (this *ContainsNestedMap_NestedMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ContainsNestedMap_NestedMap) if !ok { that2, ok := that.(ContainsNestedMap_NestedMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NestedMapField) != len(that1.NestedMapField) { return false } for i := range this.NestedMapField { if this.NestedMapField[i] != that1.NestedMapField[i] { return false } } return true } func (this *NotPacked) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NotPacked) if !ok { that2, ok := that.(NotPacked) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NotPacked") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NotPacked but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NotPacked but is not nil && this == nil") } if len(this.Key) != len(that1.Key) { return fmt.Errorf("Key this(%v) Not Equal that(%v)", len(this.Key), len(that1.Key)) } for i := range this.Key { if this.Key[i] != that1.Key[i] { return fmt.Errorf("Key this[%v](%v) Not Equal that[%v](%v)", i, this.Key[i], i, that1.Key[i]) } } return nil } func (this *NotPacked) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NotPacked) if !ok { that2, ok := that.(NotPacked) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Key) != len(that1.Key) { return false } for i := range this.Key { if this.Key[i] != that1.Key[i] { return false } } return true } type MessageFace interface { Proto() github_com_gogo_protobuf_proto.Message GetName() string GetHilarity() Message_Humour GetHeightInCm() uint32 GetData() []byte GetResultCount() int64 GetTrueScotsman() bool GetScore() float32 GetKey() []uint64 GetNested() *Nested GetTerrain() map[int64]*Nested GetProto2Field() *test.NinOptNative GetProto2Value() map[int64]*test.NinOptEnum } func (this *Message) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Message) TestProto() github_com_gogo_protobuf_proto.Message { return NewMessageFromFace(this) } func (this *Message) GetName() string { return this.Name } func (this *Message) GetHilarity() Message_Humour { return this.Hilarity } func (this *Message) GetHeightInCm() uint32 { return this.HeightInCm } func (this *Message) GetData() []byte { return this.Data } func (this *Message) GetResultCount() int64 { return this.ResultCount } func (this *Message) GetTrueScotsman() bool { return this.TrueScotsman } func (this *Message) GetScore() float32 { return this.Score } func (this *Message) GetKey() []uint64 { return this.Key } func (this *Message) GetNested() *Nested { return this.Nested } func (this *Message) GetTerrain() map[int64]*Nested { return this.Terrain } func (this *Message) GetProto2Field() *test.NinOptNative { return this.Proto2Field } func (this *Message) GetProto2Value() map[int64]*test.NinOptEnum { return this.Proto2Value } func NewMessageFromFace(that MessageFace) *Message { this := &Message{} this.Name = that.GetName() this.Hilarity = that.GetHilarity() this.HeightInCm = that.GetHeightInCm() this.Data = that.GetData() this.ResultCount = that.GetResultCount() this.TrueScotsman = that.GetTrueScotsman() this.Score = that.GetScore() this.Key = that.GetKey() this.Nested = that.GetNested() this.Terrain = that.GetTerrain() this.Proto2Field = that.GetProto2Field() this.Proto2Value = that.GetProto2Value() return this } type NestedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetBunny() string } func (this *Nested) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Nested) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedFromFace(this) } func (this *Nested) GetBunny() string { return this.Bunny } func NewNestedFromFace(that NestedFace) *Nested { this := &Nested{} this.Bunny = that.GetBunny() return this } type AllMapsFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMaps) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMaps) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsFromFace(this) } func (this *AllMaps) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMaps) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMaps) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMaps) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMaps) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMaps) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMaps) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMaps) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMaps) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMaps) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMaps) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMaps) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMaps) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMaps) GetStringMap() map[string]string { return this.StringMap } func (this *AllMaps) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMaps) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMaps) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsFromFace(that AllMapsFace) *AllMaps { this := &AllMaps{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type AllMapsOrderedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetStringToDoubleMap() map[string]float64 GetStringToFloatMap() map[string]float32 GetInt32Map() map[int32]int32 GetInt64Map() map[int64]int64 GetUint32Map() map[uint32]uint32 GetUint64Map() map[uint64]uint64 GetSint32Map() map[int32]int32 GetSint64Map() map[int64]int64 GetFixed32Map() map[uint32]uint32 GetSfixed32Map() map[int32]int32 GetFixed64Map() map[uint64]uint64 GetSfixed64Map() map[int64]int64 GetBoolMap() map[bool]bool GetStringMap() map[string]string GetStringToBytesMap() map[string][]byte GetStringToEnumMap() map[string]MapEnum GetStringToMsgMap() map[string]*FloatingPoint } func (this *AllMapsOrdered) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AllMapsOrdered) TestProto() github_com_gogo_protobuf_proto.Message { return NewAllMapsOrderedFromFace(this) } func (this *AllMapsOrdered) GetStringToDoubleMap() map[string]float64 { return this.StringToDoubleMap } func (this *AllMapsOrdered) GetStringToFloatMap() map[string]float32 { return this.StringToFloatMap } func (this *AllMapsOrdered) GetInt32Map() map[int32]int32 { return this.Int32Map } func (this *AllMapsOrdered) GetInt64Map() map[int64]int64 { return this.Int64Map } func (this *AllMapsOrdered) GetUint32Map() map[uint32]uint32 { return this.Uint32Map } func (this *AllMapsOrdered) GetUint64Map() map[uint64]uint64 { return this.Uint64Map } func (this *AllMapsOrdered) GetSint32Map() map[int32]int32 { return this.Sint32Map } func (this *AllMapsOrdered) GetSint64Map() map[int64]int64 { return this.Sint64Map } func (this *AllMapsOrdered) GetFixed32Map() map[uint32]uint32 { return this.Fixed32Map } func (this *AllMapsOrdered) GetSfixed32Map() map[int32]int32 { return this.Sfixed32Map } func (this *AllMapsOrdered) GetFixed64Map() map[uint64]uint64 { return this.Fixed64Map } func (this *AllMapsOrdered) GetSfixed64Map() map[int64]int64 { return this.Sfixed64Map } func (this *AllMapsOrdered) GetBoolMap() map[bool]bool { return this.BoolMap } func (this *AllMapsOrdered) GetStringMap() map[string]string { return this.StringMap } func (this *AllMapsOrdered) GetStringToBytesMap() map[string][]byte { return this.StringToBytesMap } func (this *AllMapsOrdered) GetStringToEnumMap() map[string]MapEnum { return this.StringToEnumMap } func (this *AllMapsOrdered) GetStringToMsgMap() map[string]*FloatingPoint { return this.StringToMsgMap } func NewAllMapsOrderedFromFace(that AllMapsOrderedFace) *AllMapsOrdered { this := &AllMapsOrdered{} this.StringToDoubleMap = that.GetStringToDoubleMap() this.StringToFloatMap = that.GetStringToFloatMap() this.Int32Map = that.GetInt32Map() this.Int64Map = that.GetInt64Map() this.Uint32Map = that.GetUint32Map() this.Uint64Map = that.GetUint64Map() this.Sint32Map = that.GetSint32Map() this.Sint64Map = that.GetSint64Map() this.Fixed32Map = that.GetFixed32Map() this.Sfixed32Map = that.GetSfixed32Map() this.Fixed64Map = that.GetFixed64Map() this.Sfixed64Map = that.GetSfixed64Map() this.BoolMap = that.GetBoolMap() this.StringMap = that.GetStringMap() this.StringToBytesMap = that.GetStringToBytesMap() this.StringToEnumMap = that.GetStringToEnumMap() this.StringToMsgMap = that.GetStringToMsgMap() return this } type MessageWithMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNameMapping() map[int32]string GetMsgMapping() map[int64]*FloatingPoint GetByteMapping() map[bool][]byte } func (this *MessageWithMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *MessageWithMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewMessageWithMapFromFace(this) } func (this *MessageWithMap) GetNameMapping() map[int32]string { return this.NameMapping } func (this *MessageWithMap) GetMsgMapping() map[int64]*FloatingPoint { return this.MsgMapping } func (this *MessageWithMap) GetByteMapping() map[bool][]byte { return this.ByteMapping } func NewMessageWithMapFromFace(that MessageWithMapFace) *MessageWithMap { this := &MessageWithMap{} this.NameMapping = that.GetNameMapping() this.MsgMapping = that.GetMsgMapping() this.ByteMapping = that.GetByteMapping() return this } type FloatingPointFace interface { Proto() github_com_gogo_protobuf_proto.Message GetF() float64 } func (this *FloatingPoint) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *FloatingPoint) TestProto() github_com_gogo_protobuf_proto.Message { return NewFloatingPointFromFace(this) } func (this *FloatingPoint) GetF() float64 { return this.F } func NewFloatingPointFromFace(that FloatingPointFace) *FloatingPoint { this := &FloatingPoint{} this.F = that.GetF() return this } type Uint128PairFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() github_com_gogo_protobuf_test_custom.Uint128 GetRight() *github_com_gogo_protobuf_test_custom.Uint128 } func (this *Uint128Pair) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Uint128Pair) TestProto() github_com_gogo_protobuf_proto.Message { return NewUint128PairFromFace(this) } func (this *Uint128Pair) GetLeft() github_com_gogo_protobuf_test_custom.Uint128 { return this.Left } func (this *Uint128Pair) GetRight() *github_com_gogo_protobuf_test_custom.Uint128 { return this.Right } func NewUint128PairFromFace(that Uint128PairFace) *Uint128Pair { this := &Uint128Pair{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type ContainsNestedMapFace interface { Proto() github_com_gogo_protobuf_proto.Message } func (this *ContainsNestedMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ContainsNestedMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewContainsNestedMapFromFace(this) } func NewContainsNestedMapFromFace(that ContainsNestedMapFace) *ContainsNestedMap { this := &ContainsNestedMap{} return this } type ContainsNestedMap_NestedMapFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedMapField() map[string]float64 } func (this *ContainsNestedMap_NestedMap) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ContainsNestedMap_NestedMap) TestProto() github_com_gogo_protobuf_proto.Message { return NewContainsNestedMap_NestedMapFromFace(this) } func (this *ContainsNestedMap_NestedMap) GetNestedMapField() map[string]float64 { return this.NestedMapField } func NewContainsNestedMap_NestedMapFromFace(that ContainsNestedMap_NestedMapFace) *ContainsNestedMap_NestedMap { this := &ContainsNestedMap_NestedMap{} this.NestedMapField = that.GetNestedMapField() return this } type NotPackedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetKey() []uint64 } func (this *NotPacked) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NotPacked) TestProto() github_com_gogo_protobuf_proto.Message { return NewNotPackedFromFace(this) } func (this *NotPacked) GetKey() []uint64 { return this.Key } func NewNotPackedFromFace(that NotPackedFace) *NotPacked { this := &NotPacked{} this.Key = that.GetKey() return this } func (this *Message) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 16) s = append(s, "&theproto3.Message{") s = append(s, "Name: "+fmt.Sprintf("%#v", this.Name)+",\n") s = append(s, "Hilarity: "+fmt.Sprintf("%#v", this.Hilarity)+",\n") s = append(s, "HeightInCm: "+fmt.Sprintf("%#v", this.HeightInCm)+",\n") s = append(s, "Data: "+fmt.Sprintf("%#v", this.Data)+",\n") s = append(s, "ResultCount: "+fmt.Sprintf("%#v", this.ResultCount)+",\n") s = append(s, "TrueScotsman: "+fmt.Sprintf("%#v", this.TrueScotsman)+",\n") s = append(s, "Score: "+fmt.Sprintf("%#v", this.Score)+",\n") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") if this.Nested != nil { s = append(s, "Nested: "+fmt.Sprintf("%#v", this.Nested)+",\n") } keysForTerrain := make([]int64, 0, len(this.Terrain)) for k := range this.Terrain { keysForTerrain = append(keysForTerrain, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForTerrain) mapStringForTerrain := "map[int64]*Nested{" for _, k := range keysForTerrain { mapStringForTerrain += fmt.Sprintf("%#v: %#v,", k, this.Terrain[k]) } mapStringForTerrain += "}" if this.Terrain != nil { s = append(s, "Terrain: "+mapStringForTerrain+",\n") } if this.Proto2Field != nil { s = append(s, "Proto2Field: "+fmt.Sprintf("%#v", this.Proto2Field)+",\n") } keysForProto2Value := make([]int64, 0, len(this.Proto2Value)) for k := range this.Proto2Value { keysForProto2Value = append(keysForProto2Value, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForProto2Value) mapStringForProto2Value := "map[int64]*test.NinOptEnum{" for _, k := range keysForProto2Value { mapStringForProto2Value += fmt.Sprintf("%#v: %#v,", k, this.Proto2Value[k]) } mapStringForProto2Value += "}" if this.Proto2Value != nil { s = append(s, "Proto2Value: "+mapStringForProto2Value+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Nested) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.Nested{") s = append(s, "Bunny: "+fmt.Sprintf("%#v", this.Bunny)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *AllMaps) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&theproto3.AllMaps{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AllMapsOrdered) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 21) s = append(s, "&theproto3.AllMapsOrdered{") keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%#v: %#v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" if this.StringToDoubleMap != nil { s = append(s, "StringToDoubleMap: "+mapStringForStringToDoubleMap+",\n") } keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%#v: %#v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" if this.StringToFloatMap != nil { s = append(s, "StringToFloatMap: "+mapStringForStringToFloatMap+",\n") } keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%#v: %#v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" if this.Int32Map != nil { s = append(s, "Int32Map: "+mapStringForInt32Map+",\n") } keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%#v: %#v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" if this.Int64Map != nil { s = append(s, "Int64Map: "+mapStringForInt64Map+",\n") } keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%#v: %#v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" if this.Uint32Map != nil { s = append(s, "Uint32Map: "+mapStringForUint32Map+",\n") } keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%#v: %#v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" if this.Uint64Map != nil { s = append(s, "Uint64Map: "+mapStringForUint64Map+",\n") } keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%#v: %#v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" if this.Sint32Map != nil { s = append(s, "Sint32Map: "+mapStringForSint32Map+",\n") } keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%#v: %#v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" if this.Sint64Map != nil { s = append(s, "Sint64Map: "+mapStringForSint64Map+",\n") } keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" if this.Fixed32Map != nil { s = append(s, "Fixed32Map: "+mapStringForFixed32Map+",\n") } keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" if this.Sfixed32Map != nil { s = append(s, "Sfixed32Map: "+mapStringForSfixed32Map+",\n") } keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" if this.Fixed64Map != nil { s = append(s, "Fixed64Map: "+mapStringForFixed64Map+",\n") } keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%#v: %#v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" if this.Sfixed64Map != nil { s = append(s, "Sfixed64Map: "+mapStringForSfixed64Map+",\n") } keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%#v: %#v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" if this.BoolMap != nil { s = append(s, "BoolMap: "+mapStringForBoolMap+",\n") } keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%#v: %#v,", k, this.StringMap[k]) } mapStringForStringMap += "}" if this.StringMap != nil { s = append(s, "StringMap: "+mapStringForStringMap+",\n") } keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%#v: %#v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" if this.StringToBytesMap != nil { s = append(s, "StringToBytesMap: "+mapStringForStringToBytesMap+",\n") } keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%#v: %#v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" if this.StringToEnumMap != nil { s = append(s, "StringToEnumMap: "+mapStringForStringToEnumMap+",\n") } keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%#v: %#v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" if this.StringToMsgMap != nil { s = append(s, "StringToMsgMap: "+mapStringForStringToMsgMap+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MessageWithMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&theproto3.MessageWithMap{") keysForNameMapping := make([]int32, 0, len(this.NameMapping)) for k := range this.NameMapping { keysForNameMapping = append(keysForNameMapping, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNameMapping) mapStringForNameMapping := "map[int32]string{" for _, k := range keysForNameMapping { mapStringForNameMapping += fmt.Sprintf("%#v: %#v,", k, this.NameMapping[k]) } mapStringForNameMapping += "}" if this.NameMapping != nil { s = append(s, "NameMapping: "+mapStringForNameMapping+",\n") } keysForMsgMapping := make([]int64, 0, len(this.MsgMapping)) for k := range this.MsgMapping { keysForMsgMapping = append(keysForMsgMapping, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForMsgMapping) mapStringForMsgMapping := "map[int64]*FloatingPoint{" for _, k := range keysForMsgMapping { mapStringForMsgMapping += fmt.Sprintf("%#v: %#v,", k, this.MsgMapping[k]) } mapStringForMsgMapping += "}" if this.MsgMapping != nil { s = append(s, "MsgMapping: "+mapStringForMsgMapping+",\n") } keysForByteMapping := make([]bool, 0, len(this.ByteMapping)) for k := range this.ByteMapping { keysForByteMapping = append(keysForByteMapping, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForByteMapping) mapStringForByteMapping := "map[bool][]byte{" for _, k := range keysForByteMapping { mapStringForByteMapping += fmt.Sprintf("%#v: %#v,", k, this.ByteMapping[k]) } mapStringForByteMapping += "}" if this.ByteMapping != nil { s = append(s, "ByteMapping: "+mapStringForByteMapping+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *FloatingPoint) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.FloatingPoint{") s = append(s, "F: "+fmt.Sprintf("%#v", this.F)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *Uint128Pair) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&theproto3.Uint128Pair{") s = append(s, "Left: "+fmt.Sprintf("%#v", this.Left)+",\n") s = append(s, "Right: "+fmt.Sprintf("%#v", this.Right)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *ContainsNestedMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&theproto3.ContainsNestedMap{") s = append(s, "}") return strings.Join(s, "") } func (this *ContainsNestedMap_NestedMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.ContainsNestedMap_NestedMap{") keysForNestedMapField := make([]string, 0, len(this.NestedMapField)) for k := range this.NestedMapField { keysForNestedMapField = append(keysForNestedMapField, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNestedMapField) mapStringForNestedMapField := "map[string]float64{" for _, k := range keysForNestedMapField { mapStringForNestedMapField += fmt.Sprintf("%#v: %#v,", k, this.NestedMapField[k]) } mapStringForNestedMapField += "}" if this.NestedMapField != nil { s = append(s, "NestedMapField: "+mapStringForNestedMapField+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NotPacked) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&theproto3.NotPacked{") s = append(s, "Key: "+fmt.Sprintf("%#v", this.Key)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringTheproto3(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedMessage(r randyTheproto3, easy bool) *Message { this := &Message{} this.Name = string(randStringTheproto3(r)) this.Hilarity = Message_Humour([]int32{0, 1, 2, 3}[r.Intn(4)]) this.HeightInCm = uint32(r.Uint32()) v1 := r.Intn(100) this.Data = make([]byte, v1) for i := 0; i < v1; i++ { this.Data[i] = byte(r.Intn(256)) } this.ResultCount = int64(r.Int63()) if r.Intn(2) == 0 { this.ResultCount *= -1 } this.TrueScotsman = bool(bool(r.Intn(2) == 0)) this.Score = float32(r.Float32()) if r.Intn(2) == 0 { this.Score *= -1 } v2 := r.Intn(10) this.Key = make([]uint64, v2) for i := 0; i < v2; i++ { this.Key[i] = uint64(uint64(r.Uint32())) } if r.Intn(10) != 0 { this.Nested = NewPopulatedNested(r, easy) } if r.Intn(10) != 0 { v3 := r.Intn(10) this.Terrain = make(map[int64]*Nested) for i := 0; i < v3; i++ { this.Terrain[int64(r.Int63())] = NewPopulatedNested(r, easy) } } if r.Intn(10) != 0 { this.Proto2Field = test.NewPopulatedNinOptNative(r, easy) } if r.Intn(10) != 0 { v4 := r.Intn(10) this.Proto2Value = make(map[int64]*test.NinOptEnum) for i := 0; i < v4; i++ { this.Proto2Value[int64(r.Int63())] = test.NewPopulatedNinOptEnum(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNested(r randyTheproto3, easy bool) *Nested { this := &Nested{} this.Bunny = string(randStringTheproto3(r)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedAllMaps(r randyTheproto3, easy bool) *AllMaps { this := &AllMaps{} if r.Intn(10) != 0 { v5 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v5; i++ { v6 := randStringTheproto3(r) this.StringToDoubleMap[v6] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v6] *= -1 } } } if r.Intn(10) != 0 { v7 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v7; i++ { v8 := randStringTheproto3(r) this.StringToFloatMap[v8] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v8] *= -1 } } } if r.Intn(10) != 0 { v9 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v9; i++ { v10 := int32(r.Int31()) this.Int32Map[v10] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v10] *= -1 } } } if r.Intn(10) != 0 { v11 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v11; i++ { v12 := int64(r.Int63()) this.Int64Map[v12] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v12] *= -1 } } } if r.Intn(10) != 0 { v13 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v13; i++ { v14 := uint32(r.Uint32()) this.Uint32Map[v14] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v15 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v15; i++ { v16 := uint64(uint64(r.Uint32())) this.Uint64Map[v16] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v17 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v17; i++ { v18 := int32(r.Int31()) this.Sint32Map[v18] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v18] *= -1 } } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v19; i++ { v20 := int64(r.Int63()) this.Sint64Map[v20] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v20] *= -1 } } } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v21; i++ { v22 := uint32(r.Uint32()) this.Fixed32Map[v22] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v23; i++ { v24 := int32(r.Int31()) this.Sfixed32Map[v24] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v24] *= -1 } } } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v25; i++ { v26 := uint64(uint64(r.Uint32())) this.Fixed64Map[v26] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v27 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v27; i++ { v28 := int64(r.Int63()) this.Sfixed64Map[v28] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v28] *= -1 } } } if r.Intn(10) != 0 { v29 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v29; i++ { v30 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v30] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v31 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v31; i++ { this.StringMap[randStringTheproto3(r)] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v32 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v32; i++ { v33 := r.Intn(100) v34 := randStringTheproto3(r) this.StringToBytesMap[v34] = make([]byte, v33) for i := 0; i < v33; i++ { this.StringToBytesMap[v34][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v35 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v35; i++ { this.StringToEnumMap[randStringTheproto3(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v36; i++ { this.StringToMsgMap[randStringTheproto3(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedAllMapsOrdered(r randyTheproto3, easy bool) *AllMapsOrdered { this := &AllMapsOrdered{} if r.Intn(10) != 0 { v37 := r.Intn(10) this.StringToDoubleMap = make(map[string]float64) for i := 0; i < v37; i++ { v38 := randStringTheproto3(r) this.StringToDoubleMap[v38] = float64(r.Float64()) if r.Intn(2) == 0 { this.StringToDoubleMap[v38] *= -1 } } } if r.Intn(10) != 0 { v39 := r.Intn(10) this.StringToFloatMap = make(map[string]float32) for i := 0; i < v39; i++ { v40 := randStringTheproto3(r) this.StringToFloatMap[v40] = float32(r.Float32()) if r.Intn(2) == 0 { this.StringToFloatMap[v40] *= -1 } } } if r.Intn(10) != 0 { v41 := r.Intn(10) this.Int32Map = make(map[int32]int32) for i := 0; i < v41; i++ { v42 := int32(r.Int31()) this.Int32Map[v42] = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32Map[v42] *= -1 } } } if r.Intn(10) != 0 { v43 := r.Intn(10) this.Int64Map = make(map[int64]int64) for i := 0; i < v43; i++ { v44 := int64(r.Int63()) this.Int64Map[v44] = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64Map[v44] *= -1 } } } if r.Intn(10) != 0 { v45 := r.Intn(10) this.Uint32Map = make(map[uint32]uint32) for i := 0; i < v45; i++ { v46 := uint32(r.Uint32()) this.Uint32Map[v46] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v47 := r.Intn(10) this.Uint64Map = make(map[uint64]uint64) for i := 0; i < v47; i++ { v48 := uint64(uint64(r.Uint32())) this.Uint64Map[v48] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v49 := r.Intn(10) this.Sint32Map = make(map[int32]int32) for i := 0; i < v49; i++ { v50 := int32(r.Int31()) this.Sint32Map[v50] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32Map[v50] *= -1 } } } if r.Intn(10) != 0 { v51 := r.Intn(10) this.Sint64Map = make(map[int64]int64) for i := 0; i < v51; i++ { v52 := int64(r.Int63()) this.Sint64Map[v52] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64Map[v52] *= -1 } } } if r.Intn(10) != 0 { v53 := r.Intn(10) this.Fixed32Map = make(map[uint32]uint32) for i := 0; i < v53; i++ { v54 := uint32(r.Uint32()) this.Fixed32Map[v54] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v55 := r.Intn(10) this.Sfixed32Map = make(map[int32]int32) for i := 0; i < v55; i++ { v56 := int32(r.Int31()) this.Sfixed32Map[v56] = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32Map[v56] *= -1 } } } if r.Intn(10) != 0 { v57 := r.Intn(10) this.Fixed64Map = make(map[uint64]uint64) for i := 0; i < v57; i++ { v58 := uint64(uint64(r.Uint32())) this.Fixed64Map[v58] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v59 := r.Intn(10) this.Sfixed64Map = make(map[int64]int64) for i := 0; i < v59; i++ { v60 := int64(r.Int63()) this.Sfixed64Map[v60] = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64Map[v60] *= -1 } } } if r.Intn(10) != 0 { v61 := r.Intn(10) this.BoolMap = make(map[bool]bool) for i := 0; i < v61; i++ { v62 := bool(bool(r.Intn(2) == 0)) this.BoolMap[v62] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v63 := r.Intn(10) this.StringMap = make(map[string]string) for i := 0; i < v63; i++ { this.StringMap[randStringTheproto3(r)] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.StringToBytesMap = make(map[string][]byte) for i := 0; i < v64; i++ { v65 := r.Intn(100) v66 := randStringTheproto3(r) this.StringToBytesMap[v66] = make([]byte, v65) for i := 0; i < v65; i++ { this.StringToBytesMap[v66][i] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v67 := r.Intn(10) this.StringToEnumMap = make(map[string]MapEnum) for i := 0; i < v67; i++ { this.StringToEnumMap[randStringTheproto3(r)] = MapEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.StringToMsgMap = make(map[string]*FloatingPoint) for i := 0; i < v68; i++ { this.StringToMsgMap[randStringTheproto3(r)] = NewPopulatedFloatingPoint(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMessageWithMap(r randyTheproto3, easy bool) *MessageWithMap { this := &MessageWithMap{} if r.Intn(10) != 0 { v69 := r.Intn(10) this.NameMapping = make(map[int32]string) for i := 0; i < v69; i++ { this.NameMapping[int32(r.Int31())] = randStringTheproto3(r) } } if r.Intn(10) != 0 { v70 := r.Intn(10) this.MsgMapping = make(map[int64]*FloatingPoint) for i := 0; i < v70; i++ { this.MsgMapping[int64(r.Int63())] = NewPopulatedFloatingPoint(r, easy) } } if r.Intn(10) != 0 { v71 := r.Intn(10) this.ByteMapping = make(map[bool][]byte) for i := 0; i < v71; i++ { v72 := r.Intn(100) v73 := bool(bool(r.Intn(2) == 0)) this.ByteMapping[v73] = make([]byte, v72) for i := 0; i < v72; i++ { this.ByteMapping[v73][i] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFloatingPoint(r randyTheproto3, easy bool) *FloatingPoint { this := &FloatingPoint{} this.F = float64(r.Float64()) if r.Intn(2) == 0 { this.F *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUint128Pair(r randyTheproto3, easy bool) *Uint128Pair { this := &Uint128Pair{} v74 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Left = *v74 this.Right = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedContainsNestedMap(r randyTheproto3, easy bool) *ContainsNestedMap { this := &ContainsNestedMap{} if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedContainsNestedMap_NestedMap(r randyTheproto3, easy bool) *ContainsNestedMap_NestedMap { this := &ContainsNestedMap_NestedMap{} if r.Intn(10) != 0 { v75 := r.Intn(10) this.NestedMapField = make(map[string]float64) for i := 0; i < v75; i++ { v76 := randStringTheproto3(r) this.NestedMapField[v76] = float64(r.Float64()) if r.Intn(2) == 0 { this.NestedMapField[v76] *= -1 } } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNotPacked(r randyTheproto3, easy bool) *NotPacked { this := &NotPacked{} v77 := r.Intn(10) this.Key = make([]uint64, v77) for i := 0; i < v77; i++ { this.Key[i] = uint64(uint64(r.Uint32())) } if !easy && r.Intn(10) != 0 { } return this } type randyTheproto3 interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTheproto3(r randyTheproto3) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTheproto3(r randyTheproto3) string { v78 := r.Intn(100) tmps := make([]rune, v78) for i := 0; i < v78; i++ { tmps[i] = randUTF8RuneTheproto3(r) } return string(tmps) } func randUnrecognizedTheproto3(r randyTheproto3, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTheproto3(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTheproto3(dAtA []byte, r randyTheproto3, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) v79 := r.Int63() if r.Intn(2) == 0 { v79 *= -1 } dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(v79)) case 1: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTheproto3(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTheproto3(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Message) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } if m.Hilarity != 0 { n += 1 + sovTheproto3(uint64(m.Hilarity)) } if m.HeightInCm != 0 { n += 1 + sovTheproto3(uint64(m.HeightInCm)) } l = len(m.Data) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } if m.ResultCount != 0 { n += 1 + sovTheproto3(uint64(m.ResultCount)) } if m.TrueScotsman { n += 2 } if m.Score != 0 { n += 5 } if len(m.Key) > 0 { l = 0 for _, e := range m.Key { l += sovTheproto3(uint64(e)) } n += 1 + sovTheproto3(uint64(l)) + l } if m.Nested != nil { l = m.Nested.Size() n += 1 + l + sovTheproto3(uint64(l)) } if len(m.Terrain) > 0 { for k, v := range m.Terrain { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sovTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if m.Proto2Field != nil { l = m.Proto2Field.Size() n += 1 + l + sovTheproto3(uint64(l)) } if len(m.Proto2Value) > 0 { for k, v := range m.Proto2Value { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sovTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *Nested) Size() (n int) { var l int _ = l l = len(m.Bunny) if l > 0 { n += 1 + l + sovTheproto3(uint64(l)) } return n } func (m *AllMaps) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *AllMapsOrdered) Size() (n int) { var l int _ = l if len(m.StringToDoubleMap) > 0 { for k, v := range m.StringToDoubleMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToFloatMap) > 0 { for k, v := range m.StringToFloatMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int32Map) > 0 { for k, v := range m.Int32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Int64Map) > 0 { for k, v := range m.Int64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint32Map) > 0 { for k, v := range m.Uint32Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Uint64Map) > 0 { for k, v := range m.Uint64Map { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint32Map) > 0 { for k, v := range m.Sint32Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sint64Map) > 0 { for k, v := range m.Sint64Map { _ = k _ = v mapEntrySize := 1 + sozTheproto3(uint64(k)) + 1 + sozTheproto3(uint64(v)) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed32Map) > 0 { for k, v := range m.Fixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed32Map) > 0 { for k, v := range m.Sfixed32Map { _ = k _ = v mapEntrySize := 1 + 4 + 1 + 4 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Fixed64Map) > 0 { for k, v := range m.Fixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.Sfixed64Map) > 0 { for k, v := range m.Sfixed64Map { _ = k _ = v mapEntrySize := 1 + 8 + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.BoolMap) > 0 { for k, v := range m.BoolMap { _ = k _ = v mapEntrySize := 1 + 1 + 1 + 1 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringMap) > 0 { for k, v := range m.StringMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToBytesMap) > 0 { for k, v := range m.StringToBytesMap { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToEnumMap) > 0 { for k, v := range m.StringToEnumMap { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + sovTheproto3(uint64(v)) n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.StringToMsgMap) > 0 { for k, v := range m.StringToMsgMap { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + l n += mapEntrySize + 2 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *MessageWithMap) Size() (n int) { var l int _ = l if len(m.NameMapping) > 0 { for k, v := range m.NameMapping { _ = k _ = v mapEntrySize := 1 + sovTheproto3(uint64(k)) + 1 + len(v) + sovTheproto3(uint64(len(v))) n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.MsgMapping) > 0 { for k, v := range m.MsgMapping { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTheproto3(uint64(l)) } mapEntrySize := 1 + sozTheproto3(uint64(k)) + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } if len(m.ByteMapping) > 0 { for k, v := range m.ByteMapping { _ = k _ = v l = 0 if len(v) > 0 { l = 1 + len(v) + sovTheproto3(uint64(len(v))) } mapEntrySize := 1 + 1 + l n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *FloatingPoint) Size() (n int) { var l int _ = l if m.F != 0 { n += 9 } return n } func (m *Uint128Pair) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovTheproto3(uint64(l)) if m.Right != nil { l = m.Right.Size() n += 1 + l + sovTheproto3(uint64(l)) } return n } func (m *ContainsNestedMap) Size() (n int) { var l int _ = l return n } func (m *ContainsNestedMap_NestedMap) Size() (n int) { var l int _ = l if len(m.NestedMapField) > 0 { for k, v := range m.NestedMapField { _ = k _ = v mapEntrySize := 1 + len(k) + sovTheproto3(uint64(len(k))) + 1 + 8 n += mapEntrySize + 1 + sovTheproto3(uint64(mapEntrySize)) } } return n } func (m *NotPacked) Size() (n int) { var l int _ = l if len(m.Key) > 0 { for _, e := range m.Key { n += 1 + sovTheproto3(uint64(e)) } } return n } func sovTheproto3(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTheproto3(x uint64) (n int) { return sovTheproto3(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Message) String() string { if this == nil { return "nil" } keysForTerrain := make([]int64, 0, len(this.Terrain)) for k := range this.Terrain { keysForTerrain = append(keysForTerrain, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForTerrain) mapStringForTerrain := "map[int64]*Nested{" for _, k := range keysForTerrain { mapStringForTerrain += fmt.Sprintf("%v: %v,", k, this.Terrain[k]) } mapStringForTerrain += "}" keysForProto2Value := make([]int64, 0, len(this.Proto2Value)) for k := range this.Proto2Value { keysForProto2Value = append(keysForProto2Value, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForProto2Value) mapStringForProto2Value := "map[int64]*test.NinOptEnum{" for _, k := range keysForProto2Value { mapStringForProto2Value += fmt.Sprintf("%v: %v,", k, this.Proto2Value[k]) } mapStringForProto2Value += "}" s := strings.Join([]string{`&Message{`, `Name:` + fmt.Sprintf("%v", this.Name) + `,`, `Hilarity:` + fmt.Sprintf("%v", this.Hilarity) + `,`, `HeightInCm:` + fmt.Sprintf("%v", this.HeightInCm) + `,`, `Data:` + fmt.Sprintf("%v", this.Data) + `,`, `ResultCount:` + fmt.Sprintf("%v", this.ResultCount) + `,`, `TrueScotsman:` + fmt.Sprintf("%v", this.TrueScotsman) + `,`, `Score:` + fmt.Sprintf("%v", this.Score) + `,`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `Nested:` + strings.Replace(fmt.Sprintf("%v", this.Nested), "Nested", "Nested", 1) + `,`, `Terrain:` + mapStringForTerrain + `,`, `Proto2Field:` + strings.Replace(fmt.Sprintf("%v", this.Proto2Field), "NinOptNative", "test.NinOptNative", 1) + `,`, `Proto2Value:` + mapStringForProto2Value + `,`, `}`, }, "") return s } func (this *Nested) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Nested{`, `Bunny:` + fmt.Sprintf("%v", this.Bunny) + `,`, `}`, }, "") return s } func (this *AllMaps) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMaps{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `}`, }, "") return s } func (this *AllMapsOrdered) String() string { if this == nil { return "nil" } keysForStringToDoubleMap := make([]string, 0, len(this.StringToDoubleMap)) for k := range this.StringToDoubleMap { keysForStringToDoubleMap = append(keysForStringToDoubleMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToDoubleMap) mapStringForStringToDoubleMap := "map[string]float64{" for _, k := range keysForStringToDoubleMap { mapStringForStringToDoubleMap += fmt.Sprintf("%v: %v,", k, this.StringToDoubleMap[k]) } mapStringForStringToDoubleMap += "}" keysForStringToFloatMap := make([]string, 0, len(this.StringToFloatMap)) for k := range this.StringToFloatMap { keysForStringToFloatMap = append(keysForStringToFloatMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToFloatMap) mapStringForStringToFloatMap := "map[string]float32{" for _, k := range keysForStringToFloatMap { mapStringForStringToFloatMap += fmt.Sprintf("%v: %v,", k, this.StringToFloatMap[k]) } mapStringForStringToFloatMap += "}" keysForInt32Map := make([]int32, 0, len(this.Int32Map)) for k := range this.Int32Map { keysForInt32Map = append(keysForInt32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForInt32Map) mapStringForInt32Map := "map[int32]int32{" for _, k := range keysForInt32Map { mapStringForInt32Map += fmt.Sprintf("%v: %v,", k, this.Int32Map[k]) } mapStringForInt32Map += "}" keysForInt64Map := make([]int64, 0, len(this.Int64Map)) for k := range this.Int64Map { keysForInt64Map = append(keysForInt64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForInt64Map) mapStringForInt64Map := "map[int64]int64{" for _, k := range keysForInt64Map { mapStringForInt64Map += fmt.Sprintf("%v: %v,", k, this.Int64Map[k]) } mapStringForInt64Map += "}" keysForUint32Map := make([]uint32, 0, len(this.Uint32Map)) for k := range this.Uint32Map { keysForUint32Map = append(keysForUint32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForUint32Map) mapStringForUint32Map := "map[uint32]uint32{" for _, k := range keysForUint32Map { mapStringForUint32Map += fmt.Sprintf("%v: %v,", k, this.Uint32Map[k]) } mapStringForUint32Map += "}" keysForUint64Map := make([]uint64, 0, len(this.Uint64Map)) for k := range this.Uint64Map { keysForUint64Map = append(keysForUint64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForUint64Map) mapStringForUint64Map := "map[uint64]uint64{" for _, k := range keysForUint64Map { mapStringForUint64Map += fmt.Sprintf("%v: %v,", k, this.Uint64Map[k]) } mapStringForUint64Map += "}" keysForSint32Map := make([]int32, 0, len(this.Sint32Map)) for k := range this.Sint32Map { keysForSint32Map = append(keysForSint32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSint32Map) mapStringForSint32Map := "map[int32]int32{" for _, k := range keysForSint32Map { mapStringForSint32Map += fmt.Sprintf("%v: %v,", k, this.Sint32Map[k]) } mapStringForSint32Map += "}" keysForSint64Map := make([]int64, 0, len(this.Sint64Map)) for k := range this.Sint64Map { keysForSint64Map = append(keysForSint64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSint64Map) mapStringForSint64Map := "map[int64]int64{" for _, k := range keysForSint64Map { mapStringForSint64Map += fmt.Sprintf("%v: %v,", k, this.Sint64Map[k]) } mapStringForSint64Map += "}" keysForFixed32Map := make([]uint32, 0, len(this.Fixed32Map)) for k := range this.Fixed32Map { keysForFixed32Map = append(keysForFixed32Map, k) } github_com_gogo_protobuf_sortkeys.Uint32s(keysForFixed32Map) mapStringForFixed32Map := "map[uint32]uint32{" for _, k := range keysForFixed32Map { mapStringForFixed32Map += fmt.Sprintf("%v: %v,", k, this.Fixed32Map[k]) } mapStringForFixed32Map += "}" keysForSfixed32Map := make([]int32, 0, len(this.Sfixed32Map)) for k := range this.Sfixed32Map { keysForSfixed32Map = append(keysForSfixed32Map, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForSfixed32Map) mapStringForSfixed32Map := "map[int32]int32{" for _, k := range keysForSfixed32Map { mapStringForSfixed32Map += fmt.Sprintf("%v: %v,", k, this.Sfixed32Map[k]) } mapStringForSfixed32Map += "}" keysForFixed64Map := make([]uint64, 0, len(this.Fixed64Map)) for k := range this.Fixed64Map { keysForFixed64Map = append(keysForFixed64Map, k) } github_com_gogo_protobuf_sortkeys.Uint64s(keysForFixed64Map) mapStringForFixed64Map := "map[uint64]uint64{" for _, k := range keysForFixed64Map { mapStringForFixed64Map += fmt.Sprintf("%v: %v,", k, this.Fixed64Map[k]) } mapStringForFixed64Map += "}" keysForSfixed64Map := make([]int64, 0, len(this.Sfixed64Map)) for k := range this.Sfixed64Map { keysForSfixed64Map = append(keysForSfixed64Map, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForSfixed64Map) mapStringForSfixed64Map := "map[int64]int64{" for _, k := range keysForSfixed64Map { mapStringForSfixed64Map += fmt.Sprintf("%v: %v,", k, this.Sfixed64Map[k]) } mapStringForSfixed64Map += "}" keysForBoolMap := make([]bool, 0, len(this.BoolMap)) for k := range this.BoolMap { keysForBoolMap = append(keysForBoolMap, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForBoolMap) mapStringForBoolMap := "map[bool]bool{" for _, k := range keysForBoolMap { mapStringForBoolMap += fmt.Sprintf("%v: %v,", k, this.BoolMap[k]) } mapStringForBoolMap += "}" keysForStringMap := make([]string, 0, len(this.StringMap)) for k := range this.StringMap { keysForStringMap = append(keysForStringMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringMap) mapStringForStringMap := "map[string]string{" for _, k := range keysForStringMap { mapStringForStringMap += fmt.Sprintf("%v: %v,", k, this.StringMap[k]) } mapStringForStringMap += "}" keysForStringToBytesMap := make([]string, 0, len(this.StringToBytesMap)) for k := range this.StringToBytesMap { keysForStringToBytesMap = append(keysForStringToBytesMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToBytesMap) mapStringForStringToBytesMap := "map[string][]byte{" for _, k := range keysForStringToBytesMap { mapStringForStringToBytesMap += fmt.Sprintf("%v: %v,", k, this.StringToBytesMap[k]) } mapStringForStringToBytesMap += "}" keysForStringToEnumMap := make([]string, 0, len(this.StringToEnumMap)) for k := range this.StringToEnumMap { keysForStringToEnumMap = append(keysForStringToEnumMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToEnumMap) mapStringForStringToEnumMap := "map[string]MapEnum{" for _, k := range keysForStringToEnumMap { mapStringForStringToEnumMap += fmt.Sprintf("%v: %v,", k, this.StringToEnumMap[k]) } mapStringForStringToEnumMap += "}" keysForStringToMsgMap := make([]string, 0, len(this.StringToMsgMap)) for k := range this.StringToMsgMap { keysForStringToMsgMap = append(keysForStringToMsgMap, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForStringToMsgMap) mapStringForStringToMsgMap := "map[string]*FloatingPoint{" for _, k := range keysForStringToMsgMap { mapStringForStringToMsgMap += fmt.Sprintf("%v: %v,", k, this.StringToMsgMap[k]) } mapStringForStringToMsgMap += "}" s := strings.Join([]string{`&AllMapsOrdered{`, `StringToDoubleMap:` + mapStringForStringToDoubleMap + `,`, `StringToFloatMap:` + mapStringForStringToFloatMap + `,`, `Int32Map:` + mapStringForInt32Map + `,`, `Int64Map:` + mapStringForInt64Map + `,`, `Uint32Map:` + mapStringForUint32Map + `,`, `Uint64Map:` + mapStringForUint64Map + `,`, `Sint32Map:` + mapStringForSint32Map + `,`, `Sint64Map:` + mapStringForSint64Map + `,`, `Fixed32Map:` + mapStringForFixed32Map + `,`, `Sfixed32Map:` + mapStringForSfixed32Map + `,`, `Fixed64Map:` + mapStringForFixed64Map + `,`, `Sfixed64Map:` + mapStringForSfixed64Map + `,`, `BoolMap:` + mapStringForBoolMap + `,`, `StringMap:` + mapStringForStringMap + `,`, `StringToBytesMap:` + mapStringForStringToBytesMap + `,`, `StringToEnumMap:` + mapStringForStringToEnumMap + `,`, `StringToMsgMap:` + mapStringForStringToMsgMap + `,`, `}`, }, "") return s } func (this *MessageWithMap) String() string { if this == nil { return "nil" } keysForNameMapping := make([]int32, 0, len(this.NameMapping)) for k := range this.NameMapping { keysForNameMapping = append(keysForNameMapping, k) } github_com_gogo_protobuf_sortkeys.Int32s(keysForNameMapping) mapStringForNameMapping := "map[int32]string{" for _, k := range keysForNameMapping { mapStringForNameMapping += fmt.Sprintf("%v: %v,", k, this.NameMapping[k]) } mapStringForNameMapping += "}" keysForMsgMapping := make([]int64, 0, len(this.MsgMapping)) for k := range this.MsgMapping { keysForMsgMapping = append(keysForMsgMapping, k) } github_com_gogo_protobuf_sortkeys.Int64s(keysForMsgMapping) mapStringForMsgMapping := "map[int64]*FloatingPoint{" for _, k := range keysForMsgMapping { mapStringForMsgMapping += fmt.Sprintf("%v: %v,", k, this.MsgMapping[k]) } mapStringForMsgMapping += "}" keysForByteMapping := make([]bool, 0, len(this.ByteMapping)) for k := range this.ByteMapping { keysForByteMapping = append(keysForByteMapping, k) } github_com_gogo_protobuf_sortkeys.Bools(keysForByteMapping) mapStringForByteMapping := "map[bool][]byte{" for _, k := range keysForByteMapping { mapStringForByteMapping += fmt.Sprintf("%v: %v,", k, this.ByteMapping[k]) } mapStringForByteMapping += "}" s := strings.Join([]string{`&MessageWithMap{`, `NameMapping:` + mapStringForNameMapping + `,`, `MsgMapping:` + mapStringForMsgMapping + `,`, `ByteMapping:` + mapStringForByteMapping + `,`, `}`, }, "") return s } func (this *FloatingPoint) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FloatingPoint{`, `F:` + fmt.Sprintf("%v", this.F) + `,`, `}`, }, "") return s } func (this *Uint128Pair) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Uint128Pair{`, `Left:` + fmt.Sprintf("%v", this.Left) + `,`, `Right:` + fmt.Sprintf("%v", this.Right) + `,`, `}`, }, "") return s } func (this *ContainsNestedMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ContainsNestedMap{`, `}`, }, "") return s } func (this *ContainsNestedMap_NestedMap) String() string { if this == nil { return "nil" } keysForNestedMapField := make([]string, 0, len(this.NestedMapField)) for k := range this.NestedMapField { keysForNestedMapField = append(keysForNestedMapField, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForNestedMapField) mapStringForNestedMapField := "map[string]float64{" for _, k := range keysForNestedMapField { mapStringForNestedMapField += fmt.Sprintf("%v: %v,", k, this.NestedMapField[k]) } mapStringForNestedMapField += "}" s := strings.Join([]string{`&ContainsNestedMap_NestedMap{`, `NestedMapField:` + mapStringForNestedMapField + `,`, `}`, }, "") return s } func (this *NotPacked) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NotPacked{`, `Key:` + fmt.Sprintf("%v", this.Key) + `,`, `}`, }, "") return s } func valueToStringTheproto3(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Message) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Message: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Message: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Hilarity", wireType) } m.Hilarity = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Hilarity |= (Message_Humour(b) & 0x7F) << shift if b < 0x80 { break } } case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field HeightInCm", wireType) } m.HeightInCm = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.HeightInCm |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) if m.Data == nil { m.Data = []byte{} } iNdEx = postIndex case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field ResultCount", wireType) } m.ResultCount = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.ResultCount |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field TrueScotsman", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.TrueScotsman = bool(v != 0) case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Score", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Score = float32(math.Float32frombits(v)) case 5: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Key = append(m.Key, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Key = append(m.Key, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Nested", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Nested == nil { m.Nested = &Nested{} } if err := m.Nested.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Terrain", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Terrain == nil { m.Terrain = make(map[int64]*Nested) } var mapkey int64 var mapvalue *Nested for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Nested{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Terrain[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Proto2Field", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Proto2Field == nil { m.Proto2Field = &test.NinOptNative{} } if err := m.Proto2Field.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Proto2Value", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Proto2Value == nil { m.Proto2Value = make(map[int64]*test.NinOptEnum) } var mapkey int64 var mapvalue *test.NinOptEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &test.NinOptEnum{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Proto2Value[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Nested) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Nested: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Nested: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Bunny", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Bunny = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllMaps) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllMaps: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllMaps: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToDoubleMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToDoubleMap == nil { m.StringToDoubleMap = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToDoubleMap[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToFloatMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToFloatMap == nil { m.StringToFloatMap = make(map[string]float32) } var mapkey string var mapvalue float32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 mapvalue = math.Float32frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToFloatMap[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int32Map == nil { m.Int32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int32Map[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int64Map == nil { m.Int64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int64Map[mapkey] = mapvalue iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint32Map == nil { m.Uint32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint32Map[mapkey] = mapvalue iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint64Map == nil { m.Uint64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint64Map[mapkey] = mapvalue iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint32Map == nil { m.Sint32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = int32((uint32(mapkeytemp) >> 1) ^ uint32(((mapkeytemp&1)<<31)>>31)) mapkey = int32(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = int32((uint32(mapvaluetemp) >> 1) ^ uint32(((mapvaluetemp&1)<<31)>>31)) mapvalue = int32(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint32Map[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint64Map == nil { m.Sint64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = (mapvaluetemp >> 1) ^ uint64((int64(mapvaluetemp&1)<<63)>>63) mapvalue = int64(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint64Map[mapkey] = mapvalue iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed32Map == nil { m.Fixed32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed32Map[mapkey] = mapvalue iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed32Map == nil { m.Sfixed32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed32Map[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed64Map == nil { m.Fixed64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed64Map[mapkey] = mapvalue iNdEx = postIndex case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed64Map == nil { m.Sfixed64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed64Map[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BoolMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.BoolMap == nil { m.BoolMap = make(map[bool]bool) } var mapkey bool var mapvalue bool for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapvaluetemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapvalue = bool(mapvaluetemp != 0) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.BoolMap[mapkey] = mapvalue iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringMap == nil { m.StringMap = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringMap[mapkey] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToBytesMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToBytesMap == nil { m.StringToBytesMap = make(map[string][]byte) } var mapkey string mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthTheproto3 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToBytesMap[mapkey] = mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToEnumMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToEnumMap == nil { m.StringToEnumMap = make(map[string]MapEnum) } var mapkey string var mapvalue MapEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (MapEnum(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToEnumMap[mapkey] = mapvalue iNdEx = postIndex case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToMsgMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToMsgMap == nil { m.StringToMsgMap = make(map[string]*FloatingPoint) } var mapkey string var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToMsgMap[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *AllMapsOrdered) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AllMapsOrdered: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AllMapsOrdered: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToDoubleMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToDoubleMap == nil { m.StringToDoubleMap = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToDoubleMap[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToFloatMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToFloatMap == nil { m.StringToFloatMap = make(map[string]float32) } var mapkey string var mapvalue float32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 mapvalue = math.Float32frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToFloatMap[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int32Map == nil { m.Int32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int32Map[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Int64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Int64Map == nil { m.Int64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Int64Map[mapkey] = mapvalue iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint32Map == nil { m.Uint32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint32Map[mapkey] = mapvalue iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Uint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Uint64Map == nil { m.Uint64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Uint64Map[mapkey] = mapvalue iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint32Map == nil { m.Sint32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = int32((uint32(mapkeytemp) >> 1) ^ uint32(((mapkeytemp&1)<<31)>>31)) mapkey = int32(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = int32((uint32(mapvaluetemp) >> 1) ^ uint32(((mapvaluetemp&1)<<31)>>31)) mapvalue = int32(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint32Map[mapkey] = mapvalue iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sint64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sint64Map == nil { m.Sint64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapvaluetemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapvaluetemp = (mapvaluetemp >> 1) ^ uint64((int64(mapvaluetemp&1)<<63)>>63) mapvalue = int64(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sint64Map[mapkey] = mapvalue iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed32Map == nil { m.Fixed32Map = make(map[uint32]uint32) } var mapkey uint32 var mapvalue uint32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed32Map[mapkey] = mapvalue iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed32Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed32Map == nil { m.Sfixed32Map = make(map[int32]int32) } var mapkey int32 var mapvalue int32 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapkey = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else if fieldNum == 2 { if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } mapvalue = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed32Map[mapkey] = mapvalue iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fixed64Map == nil { m.Fixed64Map = make(map[uint64]uint64) } var mapkey uint64 var mapvalue uint64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fixed64Map[mapkey] = mapvalue iNdEx = postIndex case 12: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed64Map", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sfixed64Map == nil { m.Sfixed64Map = make(map[int64]int64) } var mapkey int64 var mapvalue int64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapkey = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else if fieldNum == 2 { if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvalue = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Sfixed64Map[mapkey] = mapvalue iNdEx = postIndex case 13: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BoolMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.BoolMap == nil { m.BoolMap = make(map[bool]bool) } var mapkey bool var mapvalue bool for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapvaluetemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvaluetemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapvalue = bool(mapvaluetemp != 0) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.BoolMap[mapkey] = mapvalue iNdEx = postIndex case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringMap == nil { m.StringMap = make(map[string]string) } var mapkey string var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringMap[mapkey] = mapvalue iNdEx = postIndex case 15: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToBytesMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToBytesMap == nil { m.StringToBytesMap = make(map[string][]byte) } var mapkey string mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthTheproto3 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToBytesMap[mapkey] = mapvalue iNdEx = postIndex case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToEnumMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToEnumMap == nil { m.StringToEnumMap = make(map[string]MapEnum) } var mapkey string var mapvalue MapEnum for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapvalue |= (MapEnum(b) & 0x7F) << shift if b < 0x80 { break } } } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToEnumMap[mapkey] = mapvalue iNdEx = postIndex case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringToMsgMap", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.StringToMsgMap == nil { m.StringToMsgMap = make(map[string]*FloatingPoint) } var mapkey string var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.StringToMsgMap[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *MessageWithMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MessageWithMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MessageWithMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NameMapping", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NameMapping == nil { m.NameMapping = make(map[int32]string) } var mapkey int32 var mapvalue string for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var stringLenmapvalue uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapvalue |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapvalue := int(stringLenmapvalue) if intStringLenmapvalue < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapvalue := iNdEx + intStringLenmapvalue if postStringIndexmapvalue > l { return io.ErrUnexpectedEOF } mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) iNdEx = postStringIndexmapvalue } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NameMapping[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field MsgMapping", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.MsgMapping == nil { m.MsgMapping = make(map[int64]*FloatingPoint) } var mapkey int64 var mapvalue *FloatingPoint for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } mapkeytemp = (mapkeytemp >> 1) ^ uint64((int64(mapkeytemp&1)<<63)>>63) mapkey = int64(mapkeytemp) } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTheproto3 } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &FloatingPoint{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.MsgMapping[mapkey] = mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ByteMapping", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.ByteMapping == nil { m.ByteMapping = make(map[bool][]byte) } var mapkey bool mapvalue := []byte{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var mapkeytemp int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkeytemp |= (int(b) & 0x7F) << shift if b < 0x80 { break } } mapkey = bool(mapkeytemp != 0) } else if fieldNum == 2 { var mapbyteLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapbyteLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intMapbyteLen := int(mapbyteLen) if intMapbyteLen < 0 { return ErrInvalidLengthTheproto3 } postbytesIndex := iNdEx + intMapbyteLen if postbytesIndex > l { return io.ErrUnexpectedEOF } mapvalue = make([]byte, mapbyteLen) copy(mapvalue, dAtA[iNdEx:postbytesIndex]) iNdEx = postbytesIndex } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.ByteMapping[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *FloatingPoint) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FloatingPoint: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FloatingPoint: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field F", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.F = float64(math.Float64frombits(v)) default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Uint128Pair) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Uint128Pair: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Uint128Pair: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Left", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Left.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Right", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } var v github_com_gogo_protobuf_test_custom.Uint128 m.Right = &v if err := m.Right.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ContainsNestedMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: ContainsNestedMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: ContainsNestedMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ContainsNestedMap_NestedMap) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NestedMap: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NestedMap: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NestedMapField", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NestedMapField == nil { m.NestedMapField = make(map[string]float64) } var mapkey string var mapvalue float64 for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthTheproto3 } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapvaluetemp uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } mapvaluetemp = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 mapvalue = math.Float64frombits(mapvaluetemp) } else { iNdEx = entryPreIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NestedMapField[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *NotPacked) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NotPacked: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NotPacked: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 5: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Key = append(m.Key, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthTheproto3 } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTheproto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } m.Key = append(m.Key, v) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } default: iNdEx = preIndex skippy, err := skipTheproto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTheproto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipTheproto3(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTheproto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTheproto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTheproto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthTheproto3 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTheproto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipTheproto3(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthTheproto3 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTheproto3 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/unmarshaler/theproto3.proto", fileDescriptorTheproto3) } var fileDescriptorTheproto3 = []byte{ // 1612 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x99, 0xcf, 0x6f, 0xdb, 0x46, 0x16, 0xc7, 0x35, 0xfa, 0xad, 0xa7, 0x1f, 0xa6, 0x27, 0xd9, 0x85, 0xd6, 0xc0, 0xd2, 0xb2, 0x02, 0x24, 0x4a, 0xb0, 0x91, 0xb3, 0x4e, 0xb2, 0x9b, 0xba, 0x69, 0x53, 0x4b, 0xb1, 0x10, 0x37, 0xb6, 0xe2, 0x4a, 0x76, 0xdc, 0x22, 0x40, 0x0d, 0xca, 0xa6, 0x25, 0x22, 0x12, 0x69, 0x90, 0xa3, 0xa0, 0xbe, 0xe5, 0xcf, 0xe8, 0xad, 0xe8, 0xad, 0xc7, 0x22, 0x87, 0xa2, 0xc7, 0xf6, 0xe6, 0x63, 0x80, 0x5e, 0x8a, 0x1e, 0x82, 0x58, 0xbd, 0xe4, 0x98, 0x63, 0x8e, 0xc5, 0xcc, 0x50, 0xd2, 0x48, 0x1c, 0x8a, 0x4d, 0x2f, 0xbd, 0xf8, 0x24, 0xce, 0xf3, 0xfb, 0x7e, 0xe6, 0x71, 0x38, 0xf3, 0xf8, 0x05, 0x0d, 0xc5, 0x03, 0xab, 0xd7, 0xb2, 0x9c, 0xe5, 0xbe, 0xd9, 0xd3, 0x6c, 0xa7, 0xa3, 0x75, 0x75, 0x7b, 0x99, 0x74, 0xf4, 0x63, 0xdb, 0x22, 0xd6, 0xcd, 0x32, 0xfb, 0xc1, 0xa9, 0x51, 0x60, 0xe1, 0x7a, 0xdb, 0x20, 0x9d, 0x7e, 0xab, 0x7c, 0x60, 0xf5, 0x96, 0xdb, 0x56, 0xdb, 0x5a, 0x66, 0xf1, 0x56, 0xff, 0x88, 0x8d, 0xd8, 0x80, 0x5d, 0x71, 0xe5, 0xc2, 0xff, 0x7d, 0xd3, 0x89, 0xee, 0x90, 0x65, 0x77, 0xee, 0x96, 0x45, 0x3a, 0x74, 0x52, 0x1a, 0xe3, 0xc2, 0xe2, 0xcf, 0x31, 0x48, 0x6c, 0xe9, 0x8e, 0xa3, 0xb5, 0x75, 0x8c, 0x21, 0x6a, 0x6a, 0x3d, 0x3d, 0x8f, 0x0a, 0xa8, 0x94, 0x6a, 0xb0, 0x6b, 0x7c, 0x1b, 0x92, 0x1d, 0xa3, 0xab, 0xd9, 0x06, 0x39, 0xc9, 0x87, 0x0b, 0xa8, 0x94, 0x5b, 0xf9, 0x57, 0x79, 0x5c, 0xb6, 0xab, 0x2c, 0x3f, 0xe8, 0xf7, 0xac, 0xbe, 0xdd, 0x18, 0xa5, 0xe2, 0x02, 0x64, 0x3a, 0xba, 0xd1, 0xee, 0x90, 0x7d, 0xc3, 0xdc, 0x3f, 0xe8, 0xe5, 0x23, 0x05, 0x54, 0xca, 0x36, 0x80, 0xc7, 0x36, 0xcc, 0x6a, 0x8f, 0x4e, 0x76, 0xa8, 0x11, 0x2d, 0x1f, 0x2d, 0xa0, 0x52, 0xa6, 0xc1, 0xae, 0xf1, 0x12, 0x64, 0x6c, 0xdd, 0xe9, 0x77, 0xc9, 0xfe, 0x81, 0xd5, 0x37, 0x49, 0x3e, 0x51, 0x40, 0xa5, 0x48, 0x23, 0xcd, 0x63, 0x55, 0x1a, 0xc2, 0x97, 0x20, 0x4b, 0xec, 0xbe, 0xbe, 0xef, 0x1c, 0x58, 0xc4, 0xe9, 0x69, 0x66, 0x3e, 0x59, 0x40, 0xa5, 0x64, 0x23, 0x43, 0x83, 0x4d, 0x37, 0x86, 0x2f, 0x42, 0xcc, 0x39, 0xb0, 0x6c, 0x3d, 0x9f, 0x2a, 0xa0, 0x52, 0xb8, 0xc1, 0x07, 0x58, 0x81, 0xc8, 0x53, 0xfd, 0x24, 0x1f, 0x2b, 0x44, 0x4a, 0xd1, 0x06, 0xbd, 0xc4, 0x57, 0x21, 0x6e, 0xea, 0x0e, 0xd1, 0x0f, 0xf3, 0xf1, 0x02, 0x2a, 0xa5, 0x57, 0xe6, 0x85, 0x5b, 0xab, 0xb3, 0x3f, 0x34, 0xdc, 0x04, 0xfc, 0x01, 0x24, 0x88, 0x6e, 0xdb, 0x9a, 0x61, 0xe6, 0xa1, 0x10, 0x29, 0xa5, 0x57, 0x16, 0x25, 0xcb, 0xb0, 0xc3, 0x33, 0xd6, 0x4d, 0x62, 0x9f, 0x34, 0x86, 0xf9, 0xf8, 0x36, 0x64, 0x58, 0xde, 0xca, 0xfe, 0x91, 0xa1, 0x77, 0x0f, 0xf3, 0x69, 0x36, 0x17, 0x2e, 0xb3, 0xa7, 0x50, 0x37, 0xcc, 0x47, 0xc7, 0xa4, 0xae, 0x11, 0xe3, 0x99, 0xde, 0x48, 0xf3, 0xbc, 0x1a, 0x4d, 0xc3, 0xb5, 0x91, 0xec, 0x99, 0xd6, 0xed, 0xeb, 0xf9, 0x2c, 0x9b, 0xf6, 0x92, 0x64, 0xda, 0x6d, 0x96, 0xf6, 0x98, 0x66, 0xf1, 0xa9, 0x5d, 0x0e, 0x8b, 0x2c, 0x6c, 0x41, 0x46, 0xac, 0x6b, 0xb8, 0x0c, 0x88, 0xad, 0x2d, 0x5b, 0x86, 0x2b, 0x10, 0xe3, 0x53, 0x84, 0xfd, 0x56, 0x81, 0xff, 0x7d, 0x35, 0x7c, 0x07, 0x2d, 0x6c, 0x83, 0x32, 0x3d, 0x9f, 0x04, 0x79, 0x79, 0x12, 0xa9, 0x88, 0x37, 0xbb, 0x6e, 0xf6, 0x7b, 0x02, 0xb1, 0x78, 0x0f, 0xe2, 0x7c, 0xff, 0xe0, 0x34, 0x24, 0x76, 0xeb, 0x0f, 0xeb, 0x8f, 0xf6, 0xea, 0x4a, 0x08, 0x27, 0x21, 0xba, 0xbd, 0x5b, 0x6f, 0x2a, 0x08, 0x67, 0x21, 0xd5, 0xdc, 0x5c, 0xdb, 0x6e, 0xee, 0x6c, 0x54, 0x1f, 0x2a, 0x61, 0x3c, 0x07, 0xe9, 0xca, 0xc6, 0xe6, 0xe6, 0x7e, 0x65, 0x6d, 0x63, 0x73, 0xfd, 0x0b, 0x25, 0x52, 0x54, 0x21, 0xce, 0xeb, 0xa4, 0x0f, 0xbe, 0xd5, 0x37, 0xcd, 0x13, 0x77, 0x0b, 0xf3, 0x41, 0xf1, 0x05, 0x86, 0xc4, 0x5a, 0xb7, 0xbb, 0xa5, 0x1d, 0x3b, 0x78, 0x0f, 0xe6, 0x9b, 0xc4, 0x36, 0xcc, 0xf6, 0x8e, 0x75, 0xdf, 0xea, 0xb7, 0xba, 0xfa, 0x96, 0x76, 0x9c, 0x47, 0x6c, 0x69, 0xaf, 0x0a, 0xf7, 0xed, 0xa6, 0x97, 0x3d, 0xb9, 0x7c, 0x81, 0xbd, 0x0c, 0xbc, 0x03, 0xca, 0x30, 0x58, 0xeb, 0x5a, 0x1a, 0xa1, 0xdc, 0x30, 0xe3, 0x96, 0x66, 0x70, 0x87, 0xa9, 0x1c, 0xeb, 0x21, 0xe0, 0xbb, 0x90, 0xdc, 0x30, 0xc9, 0xcd, 0x15, 0x4a, 0x8b, 0x30, 0x5a, 0x41, 0x42, 0x1b, 0xa6, 0x70, 0xca, 0x48, 0xe1, 0xaa, 0xff, 0x77, 0x8b, 0xaa, 0xa3, 0xb3, 0xd4, 0x2c, 0x65, 0xac, 0x66, 0x43, 0x7c, 0x0f, 0x52, 0xbb, 0xc6, 0x70, 0xf2, 0x18, 0x93, 0x2f, 0x49, 0xe4, 0xa3, 0x1c, 0xae, 0x1f, 0x6b, 0x86, 0x00, 0x3e, 0x7f, 0x7c, 0x26, 0x40, 0x28, 0x60, 0xac, 0xa1, 0x80, 0xe6, 0xa8, 0x82, 0x84, 0x2f, 0xa0, 0x39, 0x55, 0x41, 0x53, 0xac, 0xa0, 0x39, 0xaa, 0x20, 0x39, 0x13, 0x20, 0x56, 0x30, 0x1a, 0xe3, 0x0a, 0x40, 0xcd, 0xf8, 0x4a, 0x3f, 0xe4, 0x25, 0xa4, 0x18, 0xa1, 0x28, 0x21, 0x8c, 0x93, 0x38, 0x42, 0x50, 0xe1, 0x75, 0x48, 0x37, 0x8f, 0xc6, 0x10, 0xf0, 0x9c, 0xe3, 0x51, 0x19, 0x47, 0x53, 0x14, 0x51, 0x37, 0x2a, 0x85, 0xdf, 0x4c, 0x7a, 0x76, 0x29, 0xc2, 0xdd, 0x08, 0xaa, 0x71, 0x29, 0x1c, 0x92, 0x09, 0x28, 0x45, 0xa0, 0x88, 0x3a, 0xda, 0x0c, 0x2b, 0x96, 0x45, 0x33, 0xdd, 0xae, 0xb4, 0x28, 0x41, 0xb8, 0x19, 0x6e, 0x33, 0x74, 0x47, 0xec, 0x89, 0xb0, 0x4d, 0x4e, 0xc5, 0x39, 0xff, 0x27, 0x32, 0xcc, 0x19, 0x3e, 0x91, 0xe1, 0x58, 0x3c, 0x67, 0x95, 0x13, 0xa2, 0x3b, 0x94, 0x33, 0x17, 0x78, 0xce, 0x86, 0xa9, 0x53, 0xe7, 0x6c, 0x18, 0xc6, 0x9f, 0xc1, 0xdc, 0x30, 0x46, 0xdb, 0x13, 0x85, 0x2a, 0x0c, 0x7a, 0x65, 0x06, 0xd4, 0xcd, 0xe4, 0xcc, 0x69, 0x3d, 0xae, 0x43, 0x6e, 0x18, 0xda, 0x72, 0xd8, 0xed, 0xce, 0x33, 0xe2, 0xe5, 0x19, 0x44, 0x9e, 0xc8, 0x81, 0x53, 0xea, 0x85, 0xfb, 0xf0, 0x4f, 0x79, 0x37, 0x12, 0xdb, 0x6f, 0x8a, 0xb7, 0xdf, 0x8b, 0x62, 0xfb, 0x45, 0x62, 0xfb, 0xae, 0xc2, 0x3f, 0xa4, 0xbd, 0x27, 0x08, 0x12, 0x16, 0x21, 0x1f, 0x42, 0x76, 0xa2, 0xe5, 0x88, 0xe2, 0x98, 0x44, 0x1c, 0xf3, 0x8a, 0xc7, 0x5b, 0x4b, 0xf2, 0xf6, 0x98, 0x10, 0x47, 0x44, 0xf1, 0x5d, 0xc8, 0x4d, 0xf6, 0x1b, 0x51, 0x9d, 0x95, 0xa8, 0xb3, 0x12, 0xb5, 0x7c, 0xee, 0xa8, 0x44, 0x1d, 0x9d, 0x52, 0x37, 0x7d, 0xe7, 0x9e, 0x97, 0xa8, 0xe7, 0x25, 0x6a, 0xf9, 0xdc, 0x58, 0xa2, 0xc6, 0xa2, 0xfa, 0x23, 0x98, 0x9b, 0x6a, 0x31, 0xa2, 0x3c, 0x21, 0x91, 0x27, 0x44, 0xf9, 0xc7, 0xa0, 0x4c, 0x37, 0x17, 0x51, 0x3f, 0x27, 0xd1, 0xcf, 0xc9, 0xa6, 0x97, 0x57, 0x1f, 0x97, 0xc8, 0xe3, 0xd2, 0xe9, 0xe5, 0x7a, 0x45, 0xa2, 0x57, 0x44, 0xfd, 0x2a, 0x64, 0xc4, 0x6e, 0x22, 0x6a, 0x93, 0x12, 0x6d, 0x72, 0x7a, 0xdd, 0x27, 0x9a, 0x49, 0xd0, 0x4e, 0x4f, 0xf9, 0x1c, 0x97, 0x89, 0x16, 0x12, 0x04, 0xc9, 0x88, 0x90, 0xc7, 0x70, 0x51, 0xd6, 0x32, 0x24, 0x8c, 0x92, 0xc8, 0xc8, 0x51, 0x8f, 0x38, 0x36, 0x7b, 0x54, 0x35, 0x61, 0x9c, 0x16, 0x9e, 0xc0, 0x05, 0x49, 0xe3, 0x90, 0x60, 0xcb, 0x93, 0x6e, 0x2c, 0x2f, 0x60, 0x59, 0x13, 0x30, 0xcc, 0xf6, 0xb6, 0x65, 0x98, 0x44, 0x74, 0x65, 0x3f, 0x5c, 0x80, 0x9c, 0xdb, 0x9e, 0x1e, 0xd9, 0x87, 0xba, 0xad, 0x1f, 0xe2, 0x2f, 0xfd, 0xbd, 0xd3, 0x0d, 0x6f, 0x53, 0x73, 0x55, 0xef, 0x61, 0xa1, 0x9e, 0xf8, 0x5a, 0xa8, 0xe5, 0x60, 0x7c, 0x90, 0x93, 0xaa, 0x7a, 0x9c, 0xd4, 0x15, 0x7f, 0xa8, 0x9f, 0xa1, 0xaa, 0x7a, 0x0c, 0xd5, 0x6c, 0x88, 0xd4, 0x57, 0xd5, 0xbc, 0xbe, 0xaa, 0xe4, 0x4f, 0xf1, 0xb7, 0x57, 0x35, 0xaf, 0xbd, 0x0a, 0xe0, 0xc8, 0x5d, 0x56, 0xcd, 0xeb, 0xb2, 0x66, 0x70, 0xfc, 0xcd, 0x56, 0xcd, 0x6b, 0xb6, 0x02, 0x38, 0x72, 0xcf, 0xb5, 0x21, 0xf1, 0x5c, 0x57, 0xfd, 0x41, 0xb3, 0xac, 0xd7, 0xa6, 0xcc, 0x7a, 0x5d, 0x9b, 0x51, 0xd4, 0x4c, 0x07, 0xb6, 0x21, 0x71, 0x60, 0x41, 0x85, 0xf9, 0x18, 0xb1, 0x4d, 0x99, 0x11, 0x0b, 0x2c, 0xcc, 0xcf, 0x8f, 0x7d, 0x32, 0xed, 0xc7, 0x2e, 0xfb, 0x93, 0xe4, 0xb6, 0xac, 0xe6, 0xb5, 0x65, 0xa5, 0xa0, 0x33, 0x27, 0x73, 0x67, 0x4f, 0x7c, 0xdd, 0xd9, 0x9f, 0x38, 0xc2, 0x41, 0x26, 0xed, 0x73, 0x3f, 0x93, 0x56, 0x0e, 0x66, 0xcf, 0xf6, 0x6a, 0xbb, 0x3e, 0x5e, 0xed, 0x7a, 0x30, 0xf8, 0xdc, 0xb2, 0x9d, 0x5b, 0xb6, 0x73, 0xcb, 0x76, 0x6e, 0xd9, 0xfe, 0x7e, 0xcb, 0xb6, 0x1a, 0xfd, 0xfa, 0xdb, 0x45, 0x54, 0xfc, 0x25, 0x02, 0x39, 0xf7, 0xcb, 0xe0, 0x9e, 0x41, 0x3a, 0xb4, 0xbd, 0x6d, 0x41, 0xc6, 0xd4, 0x7a, 0xfa, 0x7e, 0x4f, 0x3b, 0x3e, 0x36, 0xcc, 0xb6, 0xeb, 0xd9, 0xae, 0x79, 0x3f, 0x25, 0xba, 0x82, 0x72, 0x5d, 0xeb, 0xd1, 0x5e, 0x45, 0x93, 0xdd, 0xd7, 0x8d, 0x39, 0x8e, 0xe0, 0x4f, 0x21, 0xdd, 0x73, 0xda, 0x23, 0x5a, 0xd8, 0xf3, 0x22, 0x9c, 0xa2, 0xf1, 0x3b, 0x1d, 0xc3, 0xa0, 0x37, 0x0a, 0xd0, 0xd2, 0x5a, 0x27, 0x64, 0x5c, 0x5a, 0x24, 0xa8, 0x34, 0xfa, 0x4c, 0x27, 0x4b, 0x6b, 0x8d, 0x23, 0x74, 0xdb, 0x4e, 0xd7, 0x1e, 0xd4, 0xe9, 0x26, 0x36, 0xcf, 0x1e, 0xcc, 0x4d, 0x55, 0x2b, 0x39, 0xf3, 0x7f, 0xe1, 0xd9, 0xd0, 0xc2, 0xa6, 0x2b, 0x0f, 0x3a, 0x13, 0xe2, 0x86, 0x2c, 0xfe, 0x1b, 0xb2, 0x13, 0x6c, 0x9c, 0x01, 0x74, 0xc4, 0xa4, 0xa8, 0x81, 0x8e, 0x8a, 0xdf, 0x20, 0x48, 0xd3, 0x3e, 0xf9, 0xdf, 0x95, 0x3b, 0xdb, 0x9a, 0x61, 0xe3, 0x07, 0x10, 0xed, 0xea, 0x47, 0x84, 0x25, 0x64, 0x2a, 0xb7, 0x4e, 0x5f, 0x2d, 0x86, 0x7e, 0x7b, 0xb5, 0xf8, 0x9f, 0x80, 0xff, 0x12, 0xf4, 0x1d, 0x62, 0xf5, 0xca, 0x2e, 0xa7, 0xc1, 0x08, 0xb8, 0x06, 0x31, 0xdb, 0x68, 0x77, 0x08, 0x2f, 0xa9, 0x72, 0xe3, 0xbd, 0x31, 0x5c, 0x5e, 0x3c, 0x45, 0x30, 0x5f, 0xb5, 0x4c, 0xa2, 0x19, 0xa6, 0xc3, 0xbf, 0xd6, 0xd2, 0x37, 0xe4, 0x0b, 0x04, 0xa9, 0xd1, 0x08, 0xb7, 0x20, 0x37, 0x1a, 0xb0, 0x8f, 0xe0, 0xee, 0x4e, 0x5d, 0x15, 0x56, 0xd8, 0xc3, 0x28, 0x4b, 0xae, 0x98, 0xd8, 0x7d, 0x27, 0x4f, 0x06, 0x17, 0xd6, 0xe0, 0x82, 0x24, 0xed, 0x7d, 0x5e, 0xc8, 0xc5, 0x25, 0x48, 0xd5, 0x2d, 0xb2, 0xad, 0x1d, 0x3c, 0x65, 0x9f, 0x9c, 0xc7, 0xff, 0x55, 0xa8, 0x84, 0x95, 0x10, 0x13, 0x5f, 0x5b, 0x82, 0x84, 0x7b, 0xfa, 0x71, 0x1c, 0xc2, 0x5b, 0x6b, 0x4a, 0x88, 0xfd, 0x56, 0x14, 0xc4, 0x7e, 0xab, 0x4a, 0xb8, 0xb2, 0x79, 0x7a, 0xa6, 0x86, 0x5e, 0x9e, 0xa9, 0xa1, 0x5f, 0xcf, 0xd4, 0xd0, 0xeb, 0x33, 0x15, 0xbd, 0x39, 0x53, 0xd1, 0xdb, 0x33, 0x15, 0xbd, 0x3b, 0x53, 0xd1, 0xf3, 0x81, 0x8a, 0xbe, 0x1b, 0xa8, 0xe8, 0xfb, 0x81, 0x8a, 0x7e, 0x1c, 0xa8, 0xe8, 0xa7, 0x81, 0x8a, 0x4e, 0x07, 0x6a, 0xe8, 0xe5, 0x40, 0x45, 0xaf, 0x07, 0x2a, 0x7a, 0x33, 0x50, 0x43, 0x6f, 0x07, 0x2a, 0x7a, 0x37, 0x50, 0x43, 0xcf, 0x7f, 0x57, 0x43, 0xad, 0x38, 0x5f, 0x9e, 0x3f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xda, 0xba, 0x48, 0xa4, 0x67, 0x1a, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/theproto3/combos/unmarshaler/theproto3.proto000066400000000000000000000124231317075173200270740ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto3"; package theproto3; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/combos/both/thetest.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Message { enum Humour { UNKNOWN = 0; PUNS = 1; SLAPSTICK = 2; BILL_BAILEY = 3; } string name = 1; Humour hilarity = 2; uint32 height_in_cm = 3; bytes data = 4; int64 result_count = 7; bool true_scotsman = 8; float score = 9; repeated uint64 key = 5; Nested nested = 6; map terrain = 10; test.NinOptNative proto2_field = 11; map proto2_value = 13; } message Nested { string bunny = 1; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message MessageWithMap { map name_mapping = 1; map msg_mapping = 2; map byte_mapping = 3; } message FloatingPoint { double f = 1; } message Uint128Pair { bytes left = 1 [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; bytes right = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message ContainsNestedMap { message NestedMap { map NestedMapField = 1; } } message NotPacked { repeated uint64 key = 5 [packed=false]; }golang-gogoprotobuf-0.5/test/theproto3/combos/unmarshaler/theproto3pb_test.go000066400000000000000000001764711317075173200277350ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/theproto3.proto /* Package theproto3 is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/theproto3.proto It has these top-level messages: Message Nested AllMaps AllMapsOrdered MessageWithMap FloatingPoint Uint128Pair ContainsNestedMap NotPacked */ package theproto3 import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/test/combos/both" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Message{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nested, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNested(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNested(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Nested{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAllMapsProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMaps(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMaps{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAllMapsOrderedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAllMapsOrderedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAllMapsOrdered(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AllMapsOrdered{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageWithMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMessageWithMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MessageWithMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMessageWithMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMessageWithMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMessageWithMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MessageWithMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestFloatingPointProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkFloatingPointProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkFloatingPointProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedFloatingPoint(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &FloatingPoint{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUint128PairProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUint128PairProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Uint128Pair, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUint128Pair(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUint128PairProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUint128Pair(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Uint128Pair{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkContainsNestedMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedContainsNestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkContainsNestedMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedContainsNestedMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ContainsNestedMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMap_NestedMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkContainsNestedMap_NestedMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap_NestedMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedContainsNestedMap_NestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkContainsNestedMap_NestedMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedContainsNestedMap_NestedMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ContainsNestedMap_NestedMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNotPackedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNotPackedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NotPacked, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNotPacked(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNotPackedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNotPacked(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NotPacked{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Message{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nested{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMaps{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAllMapsOrderedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AllMapsOrdered{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageWithMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MessageWithMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestFloatingPointJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &FloatingPoint{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUint128PairJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Uint128Pair{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestContainsNestedMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ContainsNestedMap_NestedMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNotPackedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NotPacked{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Message{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Nested{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Nested{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAllMapsOrderedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageWithMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMessageWithMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestFloatingPointProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUint128PairProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUint128PairProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestContainsNestedMap_NestedMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNotPackedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNotPackedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTheproto3Description(t *testing.T) { Theproto3Description() } func TestMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Message{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nested{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMaps{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAllMapsOrderedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AllMapsOrdered{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageWithMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MessageWithMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestFloatingPointVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &FloatingPoint{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUint128PairVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Uint128Pair{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestContainsNestedMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ContainsNestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestContainsNestedMap_NestedMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ContainsNestedMap_NestedMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNotPackedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NotPacked{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMessageFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAllMapsOrderedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestMessageWithMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestFloatingPointFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUint128PairFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestContainsNestedMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestContainsNestedMap_NestedMapFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNotPackedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestMessageGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAllMapsOrderedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMessageWithMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestFloatingPointGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUint128PairGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestContainsNestedMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestContainsNestedMap_NestedMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNotPackedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Message, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNested(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nested, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNested(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMaps(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMaps, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMaps(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAllMapsOrderedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAllMapsOrdered(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAllMapsOrderedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AllMapsOrdered, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAllMapsOrdered(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMessageWithMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMessageWithMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMessageWithMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MessageWithMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMessageWithMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestFloatingPointSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedFloatingPoint(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkFloatingPointSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*FloatingPoint, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedFloatingPoint(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUint128PairSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUint128Pair(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUint128PairSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Uint128Pair, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUint128Pair(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkContainsNestedMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedContainsNestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestContainsNestedMap_NestedMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedContainsNestedMap_NestedMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkContainsNestedMap_NestedMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ContainsNestedMap_NestedMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedContainsNestedMap_NestedMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNotPackedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNotPacked(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNotPackedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NotPacked, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNotPacked(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMessageStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessage(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNested(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMaps(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAllMapsOrderedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAllMapsOrdered(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestMessageWithMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMessageWithMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestFloatingPointStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedFloatingPoint(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUint128PairStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUint128Pair(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestContainsNestedMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestContainsNestedMap_NestedMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedContainsNestedMap_NestedMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNotPackedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNotPacked(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/theproto3/doc.go000066400000000000000000000000221317075173200213410ustar00rootroot00000000000000package theproto3 golang-gogoprotobuf-0.5/test/theproto3/footer.proto000066400000000000000000000011211317075173200226310ustar00rootroot00000000000000 message MessageWithMap { map name_mapping = 1; map msg_mapping = 2; map byte_mapping = 3; } message FloatingPoint { double f = 1; } message Uint128Pair { bytes left = 1 [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; bytes right = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message ContainsNestedMap { message NestedMap { map NestedMapField = 1; } } message NotPacked { repeated uint64 key = 5 [packed=false]; }golang-gogoprotobuf-0.5/test/theproto3/header.proto000066400000000000000000000063371317075173200226010ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto3"; package theproto3; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/combos/both/thetest.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Message { enum Humour { UNKNOWN = 0; PUNS = 1; SLAPSTICK = 2; BILL_BAILEY = 3; } string name = 1; Humour hilarity = 2; uint32 height_in_cm = 3; bytes data = 4; int64 result_count = 7; bool true_scotsman = 8; float score = 9; repeated uint64 key = 5; Nested nested = 6; map terrain = 10; test.NinOptNative proto2_field = 11; map proto2_value = 13; } message Nested { string bunny = 1; } golang-gogoprotobuf-0.5/test/theproto3/maps.proto000066400000000000000000000027441317075173200223070ustar00rootroot00000000000000 enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } golang-gogoprotobuf-0.5/test/theproto3/proto3_test.go.in000066400000000000000000000111171317075173200234750ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package theproto3 import ( "reflect" "testing" "github.com/gogo/protobuf/proto" ) func TestNilMaps(t *testing.T) { m := &AllMaps{StringToMsgMap: map[string]*FloatingPoint{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToMsgMap["a"]; !ok { t.Error("element not in map") } else if v != nil { t.Errorf("element should be nil, but its %v", v) } } func TestNilMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"a": nil}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["a"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestEmptyMapsBytes(t *testing.T) { m := &AllMaps{StringToBytesMap: map[string][]byte{"b": {}}} data, err := proto.Marshal(m) if err != nil { t.Fatal(err) } size := m.Size() protoSize := proto.Size(m) marshaledSize := len(data) if size != protoSize || marshaledSize != protoSize { t.Errorf("size %d != protoSize %d != marshaledSize %d", size, protoSize, marshaledSize) } m2 := &AllMaps{} if err := proto.Unmarshal(data, m2); err != nil { t.Fatal(err) } if v, ok := m2.StringToBytesMap["b"]; !ok { t.Error("element not in map") } else if len(v) != 0 { t.Errorf("element should be empty, but its %v", v) } } func TestCustomTypeSize(t *testing.T) { m := &Uint128Pair{} m.Size() // Should not panic. } func TestCustomTypeMarshalUnmarshal(t *testing.T) { m1 := &Uint128Pair{} if b, err := proto.Marshal(m1); err != nil { t.Fatal(err) } else { m2 := &Uint128Pair{} if err := proto.Unmarshal(b, m2); err != nil { t.Fatal(err) } if !reflect.DeepEqual(m1, m2) { t.Errorf("expected %+v, got %+v", m1, m2) } } } func TestNotPackedToPacked(t *testing.T) { input := []uint64{1, 10e9} notpacked := &NotPacked{Key: input} if data, err := proto.Marshal(notpacked); err != nil { t.Fatal(err) } else { packed := &Message{} if err := proto.Unmarshal(data, packed); err != nil { t.Fatal(err) } output := packed.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } func TestPackedToNotPacked(t *testing.T) { input := []uint64{1, 10e9} packed := &Message{Key: input} if data, err := proto.Marshal(packed); err != nil { t.Fatal(err) } else { notpacked := &NotPacked{} if err := proto.Unmarshal(data, notpacked); err != nil { t.Fatal(err) } output := notpacked.Key if !reflect.DeepEqual(input, output) { t.Fatalf("expected %#v, got %#v", input, output) } } } golang-gogoprotobuf-0.5/test/theproto3/theproto3.proto000066400000000000000000000124241317075173200232720ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2013, The GoGo Authors. All rights reserved. // http://github.com/gogo/protobuf // // Go support for Protocol Buffers - Google's data interchange format // // Copyright 2014 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. syntax = "proto3"; package theproto3; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/combos/both/thetest.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Message { enum Humour { UNKNOWN = 0; PUNS = 1; SLAPSTICK = 2; BILL_BAILEY = 3; } string name = 1; Humour hilarity = 2; uint32 height_in_cm = 3; bytes data = 4; int64 result_count = 7; bool true_scotsman = 8; float score = 9; repeated uint64 key = 5; Nested nested = 6; map terrain = 10; test.NinOptNative proto2_field = 11; map proto2_value = 13; } message Nested { string bunny = 1; } enum MapEnum { MA = 0; MB = 1; MC = 2; } message AllMaps { map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message AllMapsOrdered { option (gogoproto.stable_marshaler) = true; map StringToDoubleMap = 1; map StringToFloatMap = 2; map Int32Map = 3; map Int64Map = 4; map Uint32Map = 5; map Uint64Map = 6; map Sint32Map = 7; map Sint64Map = 8; map Fixed32Map = 9; map Sfixed32Map = 10; map Fixed64Map = 11; map Sfixed64Map = 12; map BoolMap = 13; map StringMap = 14; map StringToBytesMap = 15; map StringToEnumMap = 16; map StringToMsgMap = 17; } message MessageWithMap { map name_mapping = 1; map msg_mapping = 2; map byte_mapping = 3; } message FloatingPoint { double f = 1; } message Uint128Pair { bytes left = 1 [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; bytes right = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message ContainsNestedMap { message NestedMap { map NestedMapField = 1; } } message NotPacked { repeated uint64 key = 5 [packed=false]; }golang-gogoprotobuf-0.5/test/thetest.pb.go000066400000000000000000025657601317075173200207600ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: thetest.proto /* Package test is a generated protocol buffer package. It is generated from these files: thetest.proto It has these top-level messages: NidOptNative NinOptNative NidRepNative NinRepNative NidRepPackedNative NinRepPackedNative NidOptStruct NinOptStruct NidRepStruct NinRepStruct NidEmbeddedStruct NinEmbeddedStruct NidNestedStruct NinNestedStruct NidOptCustom CustomDash NinOptCustom NidRepCustom NinRepCustom NinOptNativeUnion NinOptStructUnion NinEmbeddedStructUnion NinNestedStructUnion Tree OrBranch AndBranch Leaf DeepTree ADeepBranch AndDeepBranch DeepLeaf Nil NidOptEnum NinOptEnum NidRepEnum NinRepEnum NinOptEnumDefault AnotherNinOptEnum AnotherNinOptEnumDefault Timer MyExtendable OtherExtenable NestedDefinition NestedScope NinOptNativeDefault CustomContainer CustomNameNidOptNative CustomNameNinOptNative CustomNameNinRepNative CustomNameNinStruct CustomNameCustomType CustomNameNinEmbeddedStructUnion CustomNameEnum NoExtensionsMap Unrecognized UnrecognizedWithInner UnrecognizedWithEmbed Node NonByteCustomType NidOptNonByteCustomType NinOptNonByteCustomType NidRepNonByteCustomType NinRepNonByteCustomType ProtoType */ package test import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_test_custom "github.com/gogo/protobuf/test/custom" import github_com_gogo_protobuf_test_custom_dash_type "github.com/gogo/protobuf/test/custom-dash-type" import bytes "bytes" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import compress_gzip "compress/gzip" import io_ioutil "io/ioutil" import strconv "strconv" import strings "strings" import sort "sort" import reflect "reflect" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type TheTestEnum int32 const ( A TheTestEnum = 0 B TheTestEnum = 1 C TheTestEnum = 2 ) var TheTestEnum_name = map[int32]string{ 0: "A", 1: "B", 2: "C", } var TheTestEnum_value = map[string]int32{ "A": 0, "B": 1, "C": 2, } func (x TheTestEnum) Enum() *TheTestEnum { p := new(TheTestEnum) *p = x return p } func (x TheTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(TheTestEnum_name, int32(x)) } func (x *TheTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(TheTestEnum_value, data, "TheTestEnum") if err != nil { return err } *x = TheTestEnum(value) return nil } func (TheTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{0} } type AnotherTestEnum int32 const ( D AnotherTestEnum = 10 E AnotherTestEnum = 11 ) var AnotherTestEnum_name = map[int32]string{ 10: "D", 11: "E", } var AnotherTestEnum_value = map[string]int32{ "D": 10, "E": 11, } func (x AnotherTestEnum) Enum() *AnotherTestEnum { p := new(AnotherTestEnum) *p = x return p } func (x AnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(AnotherTestEnum_name, int32(x)) } func (x *AnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(AnotherTestEnum_value, data, "AnotherTestEnum") if err != nil { return err } *x = AnotherTestEnum(value) return nil } func (AnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{1} } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. type YetAnotherTestEnum int32 const ( AA YetAnotherTestEnum = 0 BetterYetBB YetAnotherTestEnum = 1 ) var YetAnotherTestEnum_name = map[int32]string{ 0: "AA", 1: "BB", } var YetAnotherTestEnum_value = map[string]int32{ "AA": 0, "BB": 1, } func (x YetAnotherTestEnum) Enum() *YetAnotherTestEnum { p := new(YetAnotherTestEnum) *p = x return p } func (x YetAnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(YetAnotherTestEnum_name, int32(x)) } func (x *YetAnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(YetAnotherTestEnum_value, data, "YetAnotherTestEnum") if err != nil { return err } *x = YetAnotherTestEnum(value) return nil } func (YetAnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{2} } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. type YetYetAnotherTestEnum int32 const ( YetYetAnotherTestEnum_CC YetYetAnotherTestEnum = 0 YetYetAnotherTestEnum_BetterYetDD YetYetAnotherTestEnum = 1 ) var YetYetAnotherTestEnum_name = map[int32]string{ 0: "CC", 1: "DD", } var YetYetAnotherTestEnum_value = map[string]int32{ "CC": 0, "DD": 1, } func (x YetYetAnotherTestEnum) Enum() *YetYetAnotherTestEnum { p := new(YetYetAnotherTestEnum) *p = x return p } func (x YetYetAnotherTestEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(YetYetAnotherTestEnum_name, int32(x)) } func (x *YetYetAnotherTestEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(YetYetAnotherTestEnum_value, data, "YetYetAnotherTestEnum") if err != nil { return err } *x = YetYetAnotherTestEnum(value) return nil } func (YetYetAnotherTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{3} } type NestedDefinition_NestedEnum int32 const ( TYPE_NESTED NestedDefinition_NestedEnum = 1 ) var NestedDefinition_NestedEnum_name = map[int32]string{ 1: "TYPE_NESTED", } var NestedDefinition_NestedEnum_value = map[string]int32{ "TYPE_NESTED": 1, } func (x NestedDefinition_NestedEnum) Enum() *NestedDefinition_NestedEnum { p := new(NestedDefinition_NestedEnum) *p = x return p } func (x NestedDefinition_NestedEnum) MarshalJSON() ([]byte, error) { return proto.MarshalJSONEnum(NestedDefinition_NestedEnum_name, int32(x)) } func (x *NestedDefinition_NestedEnum) UnmarshalJSON(data []byte) error { value, err := proto.UnmarshalJSONEnum(NestedDefinition_NestedEnum_value, data, "NestedDefinition_NestedEnum") if err != nil { return err } *x = NestedDefinition_NestedEnum(value) return nil } func (NestedDefinition_NestedEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0} } type NidOptNative struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` Field2 float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` Field3 int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3"` Field4 int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4"` Field5 uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5"` Field6 uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` Field8 int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8"` Field9 uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9"` Field10 int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10"` Field11 uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11"` Field12 int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12"` Field13 bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` Field14 string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptNative) Reset() { *m = NidOptNative{} } func (*NidOptNative) ProtoMessage() {} func (*NidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{0} } type NinOptNative struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNative) Reset() { *m = NinOptNative{} } func (*NinOptNative) ProtoMessage() {} func (*NinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{1} } type NidRepNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepNative) Reset() { *m = NidRepNative{} } func (*NidRepNative) ProtoMessage() {} func (*NidRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{2} } type NinRepNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNative) Reset() { *m = NinRepNative{} } func (*NinRepNative) ProtoMessage() {} func (*NinRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{3} } type NidRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepPackedNative) Reset() { *m = NidRepPackedNative{} } func (*NidRepPackedNative) ProtoMessage() {} func (*NidRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{4} } type NinRepPackedNative struct { Field1 []float64 `protobuf:"fixed64,1,rep,packed,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,packed,name=Field2" json:"Field2,omitempty"` Field3 []int32 `protobuf:"varint,3,rep,packed,name=Field3" json:"Field3,omitempty"` Field4 []int64 `protobuf:"varint,4,rep,packed,name=Field4" json:"Field4,omitempty"` Field5 []uint32 `protobuf:"varint,5,rep,packed,name=Field5" json:"Field5,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,packed,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,packed,name=Field7" json:"Field7,omitempty"` Field8 []int64 `protobuf:"zigzag64,8,rep,packed,name=Field8" json:"Field8,omitempty"` Field9 []uint32 `protobuf:"fixed32,9,rep,packed,name=Field9" json:"Field9,omitempty"` Field10 []int32 `protobuf:"fixed32,10,rep,packed,name=Field10" json:"Field10,omitempty"` Field11 []uint64 `protobuf:"fixed64,11,rep,packed,name=Field11" json:"Field11,omitempty"` Field12 []int64 `protobuf:"fixed64,12,rep,packed,name=Field12" json:"Field12,omitempty"` Field13 []bool `protobuf:"varint,13,rep,packed,name=Field13" json:"Field13,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepPackedNative) Reset() { *m = NinRepPackedNative{} } func (*NinRepPackedNative) ProtoMessage() {} func (*NinRepPackedNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{5} } type NidOptStruct struct { Field1 float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` Field2 float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` Field3 NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3"` Field4 NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4"` Field6 uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` Field7 int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` Field8 NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8"` Field13 bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` Field14 string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptStruct) Reset() { *m = NidOptStruct{} } func (*NidOptStruct) ProtoMessage() {} func (*NidOptStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{6} } type NinOptStruct struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field8 *NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptStruct) Reset() { *m = NinOptStruct{} } func (*NinOptStruct) ProtoMessage() {} func (*NinOptStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{7} } type NidRepStruct struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []NidOptNative `protobuf:"bytes,3,rep,name=Field3" json:"Field3"` Field4 []NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []NidOptNative `protobuf:"bytes,8,rep,name=Field8" json:"Field8"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepStruct) Reset() { *m = NidRepStruct{} } func (*NidRepStruct) ProtoMessage() {} func (*NidRepStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{8} } type NinRepStruct struct { Field1 []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` Field2 []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` Field3 []*NidOptNative `protobuf:"bytes,3,rep,name=Field3" json:"Field3,omitempty"` Field4 []*NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4,omitempty"` Field6 []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` Field7 []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` Field8 []*NidOptNative `protobuf:"bytes,8,rep,name=Field8" json:"Field8,omitempty"` Field13 []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` Field14 []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` Field15 [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepStruct) Reset() { *m = NinRepStruct{} } func (*NinRepStruct) ProtoMessage() {} func (*NinRepStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{9} } type NidEmbeddedStruct struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 NidOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200"` Field210 bool `protobuf:"varint,210,opt,name=Field210" json:"Field210"` XXX_unrecognized []byte `json:"-"` } func (m *NidEmbeddedStruct) Reset() { *m = NidEmbeddedStruct{} } func (*NidEmbeddedStruct) ProtoMessage() {} func (*NidEmbeddedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{10} } type NinEmbeddedStruct struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 *NidOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` Field210 *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinEmbeddedStruct) Reset() { *m = NinEmbeddedStruct{} } func (*NinEmbeddedStruct) ProtoMessage() {} func (*NinEmbeddedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{11} } type NidNestedStruct struct { Field1 NidOptStruct `protobuf:"bytes,1,opt,name=Field1" json:"Field1"` Field2 []NidRepStruct `protobuf:"bytes,2,rep,name=Field2" json:"Field2"` XXX_unrecognized []byte `json:"-"` } func (m *NidNestedStruct) Reset() { *m = NidNestedStruct{} } func (*NidNestedStruct) ProtoMessage() {} func (*NidNestedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{12} } type NinNestedStruct struct { Field1 *NinOptStruct `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 []*NinRepStruct `protobuf:"bytes,2,rep,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinNestedStruct) Reset() { *m = NinNestedStruct{} } func (*NinNestedStruct) ProtoMessage() {} func (*NinNestedStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{13} } type NidOptCustom struct { Id Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id"` Value github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptCustom) Reset() { *m = NidOptCustom{} } func (*NidOptCustom) ProtoMessage() {} func (*NidOptCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{14} } type CustomDash struct { Value *github_com_gogo_protobuf_test_custom_dash_type.Bytes `protobuf:"bytes,1,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom-dash-type.Bytes" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomDash) Reset() { *m = CustomDash{} } func (*CustomDash) ProtoMessage() {} func (*CustomDash) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{15} } type NinOptCustom struct { Id *Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id,omitempty"` Value *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptCustom) Reset() { *m = NinOptCustom{} } func (*NinOptCustom) ProtoMessage() {} func (*NinOptCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{16} } type NidRepCustom struct { Id []Uuid `protobuf:"bytes,1,rep,name=Id,customtype=Uuid" json:"Id"` Value []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepCustom) Reset() { *m = NidRepCustom{} } func (*NidRepCustom) ProtoMessage() {} func (*NidRepCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{17} } type NinRepCustom struct { Id []Uuid `protobuf:"bytes,1,rep,name=Id,customtype=Uuid" json:"Id,omitempty"` Value []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,rep,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepCustom) Reset() { *m = NinRepCustom{} } func (*NinRepCustom) ProtoMessage() {} func (*NinRepCustom) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{18} } type NinOptNativeUnion struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNativeUnion) Reset() { *m = NinOptNativeUnion{} } func (*NinOptNativeUnion) ProtoMessage() {} func (*NinOptNativeUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{19} } type NinOptStructUnion struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *NinOptNative `protobuf:"bytes,4,opt,name=Field4" json:"Field4,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptStructUnion) Reset() { *m = NinOptStructUnion{} } func (*NinOptStructUnion) ProtoMessage() {} func (*NinOptStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{20} } type NinEmbeddedStructUnion struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` Field200 *NinOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` Field210 *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinEmbeddedStructUnion) Reset() { *m = NinEmbeddedStructUnion{} } func (*NinEmbeddedStructUnion) ProtoMessage() {} func (*NinEmbeddedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{21} } type NinNestedStructUnion struct { Field1 *NinOptNativeUnion `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *NinOptStructUnion `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *NinEmbeddedStructUnion `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinNestedStructUnion) Reset() { *m = NinNestedStructUnion{} } func (*NinNestedStructUnion) ProtoMessage() {} func (*NinNestedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{22} } type Tree struct { Or *OrBranch `protobuf:"bytes,1,opt,name=Or" json:"Or,omitempty"` And *AndBranch `protobuf:"bytes,2,opt,name=And" json:"And,omitempty"` Leaf *Leaf `protobuf:"bytes,3,opt,name=Leaf" json:"Leaf,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Tree) Reset() { *m = Tree{} } func (*Tree) ProtoMessage() {} func (*Tree) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{23} } type OrBranch struct { Left Tree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right Tree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *OrBranch) Reset() { *m = OrBranch{} } func (*OrBranch) ProtoMessage() {} func (*OrBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{24} } type AndBranch struct { Left Tree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right Tree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *AndBranch) Reset() { *m = AndBranch{} } func (*AndBranch) ProtoMessage() {} func (*AndBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{25} } type Leaf struct { Value int64 `protobuf:"varint,1,opt,name=Value" json:"Value"` StrValue string `protobuf:"bytes,2,opt,name=StrValue" json:"StrValue"` XXX_unrecognized []byte `json:"-"` } func (m *Leaf) Reset() { *m = Leaf{} } func (*Leaf) ProtoMessage() {} func (*Leaf) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{26} } type DeepTree struct { Down *ADeepBranch `protobuf:"bytes,1,opt,name=Down" json:"Down,omitempty"` And *AndDeepBranch `protobuf:"bytes,2,opt,name=And" json:"And,omitempty"` Leaf *DeepLeaf `protobuf:"bytes,3,opt,name=Leaf" json:"Leaf,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *DeepTree) Reset() { *m = DeepTree{} } func (*DeepTree) ProtoMessage() {} func (*DeepTree) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{27} } type ADeepBranch struct { Down DeepTree `protobuf:"bytes,2,opt,name=Down" json:"Down"` XXX_unrecognized []byte `json:"-"` } func (m *ADeepBranch) Reset() { *m = ADeepBranch{} } func (*ADeepBranch) ProtoMessage() {} func (*ADeepBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{28} } type AndDeepBranch struct { Left DeepTree `protobuf:"bytes,1,opt,name=Left" json:"Left"` Right DeepTree `protobuf:"bytes,2,opt,name=Right" json:"Right"` XXX_unrecognized []byte `json:"-"` } func (m *AndDeepBranch) Reset() { *m = AndDeepBranch{} } func (*AndDeepBranch) ProtoMessage() {} func (*AndDeepBranch) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{29} } type DeepLeaf struct { Tree Tree `protobuf:"bytes,1,opt,name=Tree" json:"Tree"` XXX_unrecognized []byte `json:"-"` } func (m *DeepLeaf) Reset() { *m = DeepLeaf{} } func (*DeepLeaf) ProtoMessage() {} func (*DeepLeaf) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{30} } type Nil struct { XXX_unrecognized []byte `json:"-"` } func (m *Nil) Reset() { *m = Nil{} } func (*Nil) ProtoMessage() {} func (*Nil) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{31} } type NidOptEnum struct { Field1 TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptEnum) Reset() { *m = NidOptEnum{} } func (*NidOptEnum) ProtoMessage() {} func (*NidOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{32} } type NinOptEnum struct { Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptEnum) Reset() { *m = NinOptEnum{} } func (*NinOptEnum) ProtoMessage() {} func (*NinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{33} } type NidRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 []YetAnotherTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 []YetYetAnotherTestEnum `protobuf:"varint,3,rep,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepEnum) Reset() { *m = NidRepEnum{} } func (*NidRepEnum) ProtoMessage() {} func (*NidRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{34} } type NinRepEnum struct { Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` Field2 []YetAnotherTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 []YetYetAnotherTestEnum `protobuf:"varint,3,rep,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepEnum) Reset() { *m = NinRepEnum{} } func (*NinRepEnum) ProtoMessage() {} func (*NinRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{35} } type NinOptEnumDefault struct { Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum,def=2" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum,def=1" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum,def=0" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptEnumDefault) Reset() { *m = NinOptEnumDefault{} } func (*NinOptEnumDefault) ProtoMessage() {} func (*NinOptEnumDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{36} } const Default_NinOptEnumDefault_Field1 TheTestEnum = C const Default_NinOptEnumDefault_Field2 YetAnotherTestEnum = BetterYetBB const Default_NinOptEnumDefault_Field3 YetYetAnotherTestEnum = YetYetAnotherTestEnum_CC func (m *NinOptEnumDefault) GetField1() TheTestEnum { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_NinOptEnumDefault_Field1 } func (m *NinOptEnumDefault) GetField2() YetAnotherTestEnum { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_NinOptEnumDefault_Field2 } func (m *NinOptEnumDefault) GetField3() YetYetAnotherTestEnum { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_NinOptEnumDefault_Field3 } type AnotherNinOptEnum struct { Field1 *AnotherTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.AnotherTestEnum" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *AnotherNinOptEnum) Reset() { *m = AnotherNinOptEnum{} } func (*AnotherNinOptEnum) ProtoMessage() {} func (*AnotherNinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{37} } type AnotherNinOptEnumDefault struct { Field1 *AnotherTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.AnotherTestEnum,def=11" json:"Field1,omitempty"` Field2 *YetAnotherTestEnum `protobuf:"varint,2,opt,name=Field2,enum=test.YetAnotherTestEnum,def=1" json:"Field2,omitempty"` Field3 *YetYetAnotherTestEnum `protobuf:"varint,3,opt,name=Field3,enum=test.YetYetAnotherTestEnum,def=0" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *AnotherNinOptEnumDefault) Reset() { *m = AnotherNinOptEnumDefault{} } func (*AnotherNinOptEnumDefault) ProtoMessage() {} func (*AnotherNinOptEnumDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{38} } const Default_AnotherNinOptEnumDefault_Field1 AnotherTestEnum = E const Default_AnotherNinOptEnumDefault_Field2 YetAnotherTestEnum = BetterYetBB const Default_AnotherNinOptEnumDefault_Field3 YetYetAnotherTestEnum = YetYetAnotherTestEnum_CC func (m *AnotherNinOptEnumDefault) GetField1() AnotherTestEnum { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_AnotherNinOptEnumDefault_Field1 } func (m *AnotherNinOptEnumDefault) GetField2() YetAnotherTestEnum { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_AnotherNinOptEnumDefault_Field2 } func (m *AnotherNinOptEnumDefault) GetField3() YetYetAnotherTestEnum { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_AnotherNinOptEnumDefault_Field3 } type Timer struct { Time1 int64 `protobuf:"fixed64,1,opt,name=Time1" json:"Time1"` Time2 int64 `protobuf:"fixed64,2,opt,name=Time2" json:"Time2"` Data []byte `protobuf:"bytes,3,opt,name=Data" json:"Data"` XXX_unrecognized []byte `json:"-"` } func (m *Timer) Reset() { *m = Timer{} } func (*Timer) ProtoMessage() {} func (*Timer) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{39} } type MyExtendable struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *MyExtendable) Reset() { *m = MyExtendable{} } func (*MyExtendable) ProtoMessage() {} func (*MyExtendable) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{40} } var extRange_MyExtendable = []proto.ExtensionRange{ {Start: 100, End: 199}, } func (*MyExtendable) ExtensionRangeArray() []proto.ExtensionRange { return extRange_MyExtendable } type OtherExtenable struct { Field2 *int64 `protobuf:"varint,2,opt,name=Field2" json:"Field2,omitempty"` Field13 *int64 `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` M *MyExtendable `protobuf:"bytes,1,opt,name=M" json:"M,omitempty"` proto.XXX_InternalExtensions `json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *OtherExtenable) Reset() { *m = OtherExtenable{} } func (*OtherExtenable) ProtoMessage() {} func (*OtherExtenable) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{41} } var extRange_OtherExtenable = []proto.ExtensionRange{ {Start: 14, End: 16}, {Start: 10, End: 12}, } func (*OtherExtenable) ExtensionRangeArray() []proto.ExtensionRange { return extRange_OtherExtenable } type NestedDefinition struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` EnumField *NestedDefinition_NestedEnum `protobuf:"varint,2,opt,name=EnumField,enum=test.NestedDefinition_NestedEnum" json:"EnumField,omitempty"` NNM *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,3,opt,name=NNM" json:"NNM,omitempty"` NM *NestedDefinition_NestedMessage `protobuf:"bytes,4,opt,name=NM" json:"NM,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition) Reset() { *m = NestedDefinition{} } func (*NestedDefinition) ProtoMessage() {} func (*NestedDefinition) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42} } type NestedDefinition_NestedMessage struct { NestedField1 *uint64 `protobuf:"fixed64,1,opt,name=NestedField1" json:"NestedField1,omitempty"` NNM *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,2,opt,name=NNM" json:"NNM,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition_NestedMessage) Reset() { *m = NestedDefinition_NestedMessage{} } func (*NestedDefinition_NestedMessage) ProtoMessage() {} func (*NestedDefinition_NestedMessage) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0} } type NestedDefinition_NestedMessage_NestedNestedMsg struct { NestedNestedField1 *string `protobuf:"bytes,10,opt,name=NestedNestedField1" json:"NestedNestedField1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Reset() { *m = NestedDefinition_NestedMessage_NestedNestedMsg{} } func (*NestedDefinition_NestedMessage_NestedNestedMsg) ProtoMessage() {} func (*NestedDefinition_NestedMessage_NestedNestedMsg) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{42, 0, 0} } type NestedScope struct { A *NestedDefinition_NestedMessage_NestedNestedMsg `protobuf:"bytes,1,opt,name=A" json:"A,omitempty"` B *NestedDefinition_NestedEnum `protobuf:"varint,2,opt,name=B,enum=test.NestedDefinition_NestedEnum" json:"B,omitempty"` C *NestedDefinition_NestedMessage `protobuf:"bytes,3,opt,name=C" json:"C,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NestedScope) Reset() { *m = NestedScope{} } func (*NestedScope) ProtoMessage() {} func (*NestedScope) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{43} } type NinOptNativeDefault struct { Field1 *float64 `protobuf:"fixed64,1,opt,name=Field1,def=1234.1234" json:"Field1,omitempty"` Field2 *float32 `protobuf:"fixed32,2,opt,name=Field2,def=1234.12341" json:"Field2,omitempty"` Field3 *int32 `protobuf:"varint,3,opt,name=Field3,def=1234" json:"Field3,omitempty"` Field4 *int64 `protobuf:"varint,4,opt,name=Field4,def=1234" json:"Field4,omitempty"` Field5 *uint32 `protobuf:"varint,5,opt,name=Field5,def=1234" json:"Field5,omitempty"` Field6 *uint64 `protobuf:"varint,6,opt,name=Field6,def=1234" json:"Field6,omitempty"` Field7 *int32 `protobuf:"zigzag32,7,opt,name=Field7,def=1234" json:"Field7,omitempty"` Field8 *int64 `protobuf:"zigzag64,8,opt,name=Field8,def=1234" json:"Field8,omitempty"` Field9 *uint32 `protobuf:"fixed32,9,opt,name=Field9,def=1234" json:"Field9,omitempty"` Field10 *int32 `protobuf:"fixed32,10,opt,name=Field10,def=1234" json:"Field10,omitempty"` Field11 *uint64 `protobuf:"fixed64,11,opt,name=Field11,def=1234" json:"Field11,omitempty"` Field12 *int64 `protobuf:"fixed64,12,opt,name=Field12,def=1234" json:"Field12,omitempty"` Field13 *bool `protobuf:"varint,13,opt,name=Field13,def=1" json:"Field13,omitempty"` Field14 *string `protobuf:"bytes,14,opt,name=Field14,def=1234" json:"Field14,omitempty"` Field15 []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNativeDefault) Reset() { *m = NinOptNativeDefault{} } func (*NinOptNativeDefault) ProtoMessage() {} func (*NinOptNativeDefault) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{44} } const Default_NinOptNativeDefault_Field1 float64 = 1234.1234 const Default_NinOptNativeDefault_Field2 float32 = 1234.12341 const Default_NinOptNativeDefault_Field3 int32 = 1234 const Default_NinOptNativeDefault_Field4 int64 = 1234 const Default_NinOptNativeDefault_Field5 uint32 = 1234 const Default_NinOptNativeDefault_Field6 uint64 = 1234 const Default_NinOptNativeDefault_Field7 int32 = 1234 const Default_NinOptNativeDefault_Field8 int64 = 1234 const Default_NinOptNativeDefault_Field9 uint32 = 1234 const Default_NinOptNativeDefault_Field10 int32 = 1234 const Default_NinOptNativeDefault_Field11 uint64 = 1234 const Default_NinOptNativeDefault_Field12 int64 = 1234 const Default_NinOptNativeDefault_Field13 bool = true const Default_NinOptNativeDefault_Field14 string = "1234" func (m *NinOptNativeDefault) GetField1() float64 { if m != nil && m.Field1 != nil { return *m.Field1 } return Default_NinOptNativeDefault_Field1 } func (m *NinOptNativeDefault) GetField2() float32 { if m != nil && m.Field2 != nil { return *m.Field2 } return Default_NinOptNativeDefault_Field2 } func (m *NinOptNativeDefault) GetField3() int32 { if m != nil && m.Field3 != nil { return *m.Field3 } return Default_NinOptNativeDefault_Field3 } func (m *NinOptNativeDefault) GetField4() int64 { if m != nil && m.Field4 != nil { return *m.Field4 } return Default_NinOptNativeDefault_Field4 } func (m *NinOptNativeDefault) GetField5() uint32 { if m != nil && m.Field5 != nil { return *m.Field5 } return Default_NinOptNativeDefault_Field5 } func (m *NinOptNativeDefault) GetField6() uint64 { if m != nil && m.Field6 != nil { return *m.Field6 } return Default_NinOptNativeDefault_Field6 } func (m *NinOptNativeDefault) GetField7() int32 { if m != nil && m.Field7 != nil { return *m.Field7 } return Default_NinOptNativeDefault_Field7 } func (m *NinOptNativeDefault) GetField8() int64 { if m != nil && m.Field8 != nil { return *m.Field8 } return Default_NinOptNativeDefault_Field8 } func (m *NinOptNativeDefault) GetField9() uint32 { if m != nil && m.Field9 != nil { return *m.Field9 } return Default_NinOptNativeDefault_Field9 } func (m *NinOptNativeDefault) GetField10() int32 { if m != nil && m.Field10 != nil { return *m.Field10 } return Default_NinOptNativeDefault_Field10 } func (m *NinOptNativeDefault) GetField11() uint64 { if m != nil && m.Field11 != nil { return *m.Field11 } return Default_NinOptNativeDefault_Field11 } func (m *NinOptNativeDefault) GetField12() int64 { if m != nil && m.Field12 != nil { return *m.Field12 } return Default_NinOptNativeDefault_Field12 } func (m *NinOptNativeDefault) GetField13() bool { if m != nil && m.Field13 != nil { return *m.Field13 } return Default_NinOptNativeDefault_Field13 } func (m *NinOptNativeDefault) GetField14() string { if m != nil && m.Field14 != nil { return *m.Field14 } return Default_NinOptNativeDefault_Field14 } func (m *NinOptNativeDefault) GetField15() []byte { if m != nil { return m.Field15 } return nil } type CustomContainer struct { CustomStruct NidOptCustom `protobuf:"bytes,1,opt,name=CustomStruct" json:"CustomStruct"` XXX_unrecognized []byte `json:"-"` } func (m *CustomContainer) Reset() { *m = CustomContainer{} } func (*CustomContainer) ProtoMessage() {} func (*CustomContainer) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{45} } type CustomNameNidOptNative struct { FieldA float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1"` FieldB float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2"` FieldC int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3"` FieldD int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4"` FieldE uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5"` FieldF uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6"` FieldG int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7"` FieldH int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8"` FieldI uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9"` FieldJ int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10"` FieldK uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11"` FieldL int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12"` FieldM bool `protobuf:"varint,13,opt,name=Field13" json:"Field13"` FieldN string `protobuf:"bytes,14,opt,name=Field14" json:"Field14"` FieldO []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNidOptNative) Reset() { *m = CustomNameNidOptNative{} } func (*CustomNameNidOptNative) ProtoMessage() {} func (*CustomNameNidOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{46} } type CustomNameNinOptNative struct { FieldA *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` FieldB *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` FieldC *int32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` FieldD *int64 `protobuf:"varint,4,opt,name=Field4" json:"Field4,omitempty"` FieldE *uint32 `protobuf:"varint,5,opt,name=Field5" json:"Field5,omitempty"` FieldF *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` FieldG *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` FieldH *int64 `protobuf:"zigzag64,8,opt,name=Field8" json:"Field8,omitempty"` FieldI *uint32 `protobuf:"fixed32,9,opt,name=Field9" json:"Field9,omitempty"` FieldJ *int32 `protobuf:"fixed32,10,opt,name=Field10" json:"Field10,omitempty"` FieldK *uint64 `protobuf:"fixed64,11,opt,name=Field11" json:"Field11,omitempty"` FielL *int64 `protobuf:"fixed64,12,opt,name=Field12" json:"Field12,omitempty"` FieldM *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` FieldN *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` FieldO []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinOptNative) Reset() { *m = CustomNameNinOptNative{} } func (*CustomNameNinOptNative) ProtoMessage() {} func (*CustomNameNinOptNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{47} } type CustomNameNinRepNative struct { FieldA []float64 `protobuf:"fixed64,1,rep,name=Field1" json:"Field1,omitempty"` FieldB []float32 `protobuf:"fixed32,2,rep,name=Field2" json:"Field2,omitempty"` FieldC []int32 `protobuf:"varint,3,rep,name=Field3" json:"Field3,omitempty"` FieldD []int64 `protobuf:"varint,4,rep,name=Field4" json:"Field4,omitempty"` FieldE []uint32 `protobuf:"varint,5,rep,name=Field5" json:"Field5,omitempty"` FieldF []uint64 `protobuf:"varint,6,rep,name=Field6" json:"Field6,omitempty"` FieldG []int32 `protobuf:"zigzag32,7,rep,name=Field7" json:"Field7,omitempty"` FieldH []int64 `protobuf:"zigzag64,8,rep,name=Field8" json:"Field8,omitempty"` FieldI []uint32 `protobuf:"fixed32,9,rep,name=Field9" json:"Field9,omitempty"` FieldJ []int32 `protobuf:"fixed32,10,rep,name=Field10" json:"Field10,omitempty"` FieldK []uint64 `protobuf:"fixed64,11,rep,name=Field11" json:"Field11,omitempty"` FieldL []int64 `protobuf:"fixed64,12,rep,name=Field12" json:"Field12,omitempty"` FieldM []bool `protobuf:"varint,13,rep,name=Field13" json:"Field13,omitempty"` FieldN []string `protobuf:"bytes,14,rep,name=Field14" json:"Field14,omitempty"` FieldO [][]byte `protobuf:"bytes,15,rep,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinRepNative) Reset() { *m = CustomNameNinRepNative{} } func (*CustomNameNinRepNative) ProtoMessage() {} func (*CustomNameNinRepNative) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{48} } type CustomNameNinStruct struct { FieldA *float64 `protobuf:"fixed64,1,opt,name=Field1" json:"Field1,omitempty"` FieldB *float32 `protobuf:"fixed32,2,opt,name=Field2" json:"Field2,omitempty"` FieldC *NidOptNative `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` FieldD []*NinOptNative `protobuf:"bytes,4,rep,name=Field4" json:"Field4,omitempty"` FieldE *uint64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` FieldF *int32 `protobuf:"zigzag32,7,opt,name=Field7" json:"Field7,omitempty"` FieldG *NidOptNative `protobuf:"bytes,8,opt,name=Field8" json:"Field8,omitempty"` FieldH *bool `protobuf:"varint,13,opt,name=Field13" json:"Field13,omitempty"` FieldI *string `protobuf:"bytes,14,opt,name=Field14" json:"Field14,omitempty"` FieldJ []byte `protobuf:"bytes,15,opt,name=Field15" json:"Field15,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinStruct) Reset() { *m = CustomNameNinStruct{} } func (*CustomNameNinStruct) ProtoMessage() {} func (*CustomNameNinStruct) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{49} } type CustomNameCustomType struct { FieldA *Uuid `protobuf:"bytes,1,opt,name=Id,customtype=Uuid" json:"Id,omitempty"` FieldB *github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,2,opt,name=Value,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Value,omitempty"` FieldC []Uuid `protobuf:"bytes,3,rep,name=Ids,customtype=Uuid" json:"Ids,omitempty"` FieldD []github_com_gogo_protobuf_test_custom.Uint128 `protobuf:"bytes,4,rep,name=Values,customtype=github.com/gogo/protobuf/test/custom.Uint128" json:"Values,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameCustomType) Reset() { *m = CustomNameCustomType{} } func (*CustomNameCustomType) ProtoMessage() {} func (*CustomNameCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{50} } type CustomNameNinEmbeddedStructUnion struct { *NidOptNative `protobuf:"bytes,1,opt,name=Field1,embedded=Field1" json:"Field1,omitempty"` FieldA *NinOptNative `protobuf:"bytes,200,opt,name=Field200" json:"Field200,omitempty"` FieldB *bool `protobuf:"varint,210,opt,name=Field210" json:"Field210,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameNinEmbeddedStructUnion) Reset() { *m = CustomNameNinEmbeddedStructUnion{} } func (*CustomNameNinEmbeddedStructUnion) ProtoMessage() {} func (*CustomNameNinEmbeddedStructUnion) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{51} } type CustomNameEnum struct { FieldA *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=test.TheTestEnum" json:"Field1,omitempty"` FieldB []TheTestEnum `protobuf:"varint,2,rep,name=Field2,enum=test.TheTestEnum" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *CustomNameEnum) Reset() { *m = CustomNameEnum{} } func (*CustomNameEnum) ProtoMessage() {} func (*CustomNameEnum) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{52} } type NoExtensionsMap struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` XXX_extensions []byte `protobuf:"bytes,0,opt" json:"-"` XXX_unrecognized []byte `json:"-"` } func (m *NoExtensionsMap) Reset() { *m = NoExtensionsMap{} } func (*NoExtensionsMap) ProtoMessage() {} func (*NoExtensionsMap) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{53} } var extRange_NoExtensionsMap = []proto.ExtensionRange{ {Start: 100, End: 199}, } func (*NoExtensionsMap) ExtensionRangeArray() []proto.ExtensionRange { return extRange_NoExtensionsMap } func (m *NoExtensionsMap) GetExtensions() *[]byte { if m.XXX_extensions == nil { m.XXX_extensions = make([]byte, 0) } return &m.XXX_extensions } type Unrecognized struct { Field1 *string `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *Unrecognized) Reset() { *m = Unrecognized{} } func (*Unrecognized) ProtoMessage() {} func (*Unrecognized) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{54} } type UnrecognizedWithInner struct { Embedded []*UnrecognizedWithInner_Inner `protobuf:"bytes,1,rep,name=embedded" json:"embedded,omitempty"` Field2 *string `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UnrecognizedWithInner) Reset() { *m = UnrecognizedWithInner{} } func (*UnrecognizedWithInner) ProtoMessage() {} func (*UnrecognizedWithInner) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{55} } type UnrecognizedWithInner_Inner struct { Field1 *uint32 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *UnrecognizedWithInner_Inner) Reset() { *m = UnrecognizedWithInner_Inner{} } func (*UnrecognizedWithInner_Inner) ProtoMessage() {} func (*UnrecognizedWithInner_Inner) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{55, 0} } type UnrecognizedWithEmbed struct { UnrecognizedWithEmbed_Embedded `protobuf:"bytes,1,opt,name=embedded,embedded=embedded" json:"embedded"` Field2 *string `protobuf:"bytes,2,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *UnrecognizedWithEmbed) Reset() { *m = UnrecognizedWithEmbed{} } func (*UnrecognizedWithEmbed) ProtoMessage() {} func (*UnrecognizedWithEmbed) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{56} } type UnrecognizedWithEmbed_Embedded struct { Field1 *uint32 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` } func (m *UnrecognizedWithEmbed_Embedded) Reset() { *m = UnrecognizedWithEmbed_Embedded{} } func (*UnrecognizedWithEmbed_Embedded) ProtoMessage() {} func (*UnrecognizedWithEmbed_Embedded) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{56, 0} } type Node struct { Label *string `protobuf:"bytes,1,opt,name=Label" json:"Label,omitempty"` Children []*Node `protobuf:"bytes,2,rep,name=Children" json:"Children,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Node) Reset() { *m = Node{} } func (*Node) ProtoMessage() {} func (*Node) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{57} } type NonByteCustomType struct { Field1 *T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NonByteCustomType) Reset() { *m = NonByteCustomType{} } func (*NonByteCustomType) ProtoMessage() {} func (*NonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{58} } type NidOptNonByteCustomType struct { Field1 T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidOptNonByteCustomType) Reset() { *m = NidOptNonByteCustomType{} } func (*NidOptNonByteCustomType) ProtoMessage() {} func (*NidOptNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{59} } type NinOptNonByteCustomType struct { Field1 *T `protobuf:"bytes,1,opt,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinOptNonByteCustomType) Reset() { *m = NinOptNonByteCustomType{} } func (*NinOptNonByteCustomType) ProtoMessage() {} func (*NinOptNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{60} } type NidRepNonByteCustomType struct { Field1 []T `protobuf:"bytes,1,rep,name=Field1,customtype=T" json:"Field1"` XXX_unrecognized []byte `json:"-"` } func (m *NidRepNonByteCustomType) Reset() { *m = NidRepNonByteCustomType{} } func (*NidRepNonByteCustomType) ProtoMessage() {} func (*NidRepNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{61} } type NinRepNonByteCustomType struct { Field1 []T `protobuf:"bytes,1,rep,name=Field1,customtype=T" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NinRepNonByteCustomType) Reset() { *m = NinRepNonByteCustomType{} } func (*NinRepNonByteCustomType) ProtoMessage() {} func (*NinRepNonByteCustomType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{62} } type ProtoType struct { Field2 *string `protobuf:"bytes,1,opt,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *ProtoType) Reset() { *m = ProtoType{} } func (*ProtoType) ProtoMessage() {} func (*ProtoType) Descriptor() ([]byte, []int) { return fileDescriptorThetest, []int{63} } var E_FieldA = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*float64)(nil), Field: 100, Name: "test.FieldA", Tag: "fixed64,100,opt,name=FieldA", Filename: "thetest.proto", } var E_FieldB = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*NinOptNative)(nil), Field: 101, Name: "test.FieldB", Tag: "bytes,101,opt,name=FieldB", Filename: "thetest.proto", } var E_FieldC = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: (*NinEmbeddedStruct)(nil), Field: 102, Name: "test.FieldC", Tag: "bytes,102,opt,name=FieldC", Filename: "thetest.proto", } var E_FieldD = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: ([]int64)(nil), Field: 104, Name: "test.FieldD", Tag: "varint,104,rep,name=FieldD", Filename: "thetest.proto", } var E_FieldE = &proto.ExtensionDesc{ ExtendedType: (*MyExtendable)(nil), ExtensionType: ([]*NinOptNative)(nil), Field: 105, Name: "test.FieldE", Tag: "bytes,105,rep,name=FieldE", Filename: "thetest.proto", } var E_FieldA1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*float64)(nil), Field: 100, Name: "test.FieldA1", Tag: "fixed64,100,opt,name=FieldA1", Filename: "thetest.proto", } var E_FieldB1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*NinOptNative)(nil), Field: 101, Name: "test.FieldB1", Tag: "bytes,101,opt,name=FieldB1", Filename: "thetest.proto", } var E_FieldC1 = &proto.ExtensionDesc{ ExtendedType: (*NoExtensionsMap)(nil), ExtensionType: (*NinEmbeddedStruct)(nil), Field: 102, Name: "test.FieldC1", Tag: "bytes,102,opt,name=FieldC1", Filename: "thetest.proto", } func init() { proto.RegisterType((*NidOptNative)(nil), "test.NidOptNative") proto.RegisterType((*NinOptNative)(nil), "test.NinOptNative") proto.RegisterType((*NidRepNative)(nil), "test.NidRepNative") proto.RegisterType((*NinRepNative)(nil), "test.NinRepNative") proto.RegisterType((*NidRepPackedNative)(nil), "test.NidRepPackedNative") proto.RegisterType((*NinRepPackedNative)(nil), "test.NinRepPackedNative") proto.RegisterType((*NidOptStruct)(nil), "test.NidOptStruct") proto.RegisterType((*NinOptStruct)(nil), "test.NinOptStruct") proto.RegisterType((*NidRepStruct)(nil), "test.NidRepStruct") proto.RegisterType((*NinRepStruct)(nil), "test.NinRepStruct") proto.RegisterType((*NidEmbeddedStruct)(nil), "test.NidEmbeddedStruct") proto.RegisterType((*NinEmbeddedStruct)(nil), "test.NinEmbeddedStruct") proto.RegisterType((*NidNestedStruct)(nil), "test.NidNestedStruct") proto.RegisterType((*NinNestedStruct)(nil), "test.NinNestedStruct") proto.RegisterType((*NidOptCustom)(nil), "test.NidOptCustom") proto.RegisterType((*CustomDash)(nil), "test.CustomDash") proto.RegisterType((*NinOptCustom)(nil), "test.NinOptCustom") proto.RegisterType((*NidRepCustom)(nil), "test.NidRepCustom") proto.RegisterType((*NinRepCustom)(nil), "test.NinRepCustom") proto.RegisterType((*NinOptNativeUnion)(nil), "test.NinOptNativeUnion") proto.RegisterType((*NinOptStructUnion)(nil), "test.NinOptStructUnion") proto.RegisterType((*NinEmbeddedStructUnion)(nil), "test.NinEmbeddedStructUnion") proto.RegisterType((*NinNestedStructUnion)(nil), "test.NinNestedStructUnion") proto.RegisterType((*Tree)(nil), "test.Tree") proto.RegisterType((*OrBranch)(nil), "test.OrBranch") proto.RegisterType((*AndBranch)(nil), "test.AndBranch") proto.RegisterType((*Leaf)(nil), "test.Leaf") proto.RegisterType((*DeepTree)(nil), "test.DeepTree") proto.RegisterType((*ADeepBranch)(nil), "test.ADeepBranch") proto.RegisterType((*AndDeepBranch)(nil), "test.AndDeepBranch") proto.RegisterType((*DeepLeaf)(nil), "test.DeepLeaf") proto.RegisterType((*Nil)(nil), "test.Nil") proto.RegisterType((*NidOptEnum)(nil), "test.NidOptEnum") proto.RegisterType((*NinOptEnum)(nil), "test.NinOptEnum") proto.RegisterType((*NidRepEnum)(nil), "test.NidRepEnum") proto.RegisterType((*NinRepEnum)(nil), "test.NinRepEnum") proto.RegisterType((*NinOptEnumDefault)(nil), "test.NinOptEnumDefault") proto.RegisterType((*AnotherNinOptEnum)(nil), "test.AnotherNinOptEnum") proto.RegisterType((*AnotherNinOptEnumDefault)(nil), "test.AnotherNinOptEnumDefault") proto.RegisterType((*Timer)(nil), "test.Timer") proto.RegisterType((*MyExtendable)(nil), "test.MyExtendable") proto.RegisterType((*OtherExtenable)(nil), "test.OtherExtenable") proto.RegisterType((*NestedDefinition)(nil), "test.NestedDefinition") proto.RegisterType((*NestedDefinition_NestedMessage)(nil), "test.NestedDefinition.NestedMessage") proto.RegisterType((*NestedDefinition_NestedMessage_NestedNestedMsg)(nil), "test.NestedDefinition.NestedMessage.NestedNestedMsg") proto.RegisterType((*NestedScope)(nil), "test.NestedScope") proto.RegisterType((*NinOptNativeDefault)(nil), "test.NinOptNativeDefault") proto.RegisterType((*CustomContainer)(nil), "test.CustomContainer") proto.RegisterType((*CustomNameNidOptNative)(nil), "test.CustomNameNidOptNative") proto.RegisterType((*CustomNameNinOptNative)(nil), "test.CustomNameNinOptNative") proto.RegisterType((*CustomNameNinRepNative)(nil), "test.CustomNameNinRepNative") proto.RegisterType((*CustomNameNinStruct)(nil), "test.CustomNameNinStruct") proto.RegisterType((*CustomNameCustomType)(nil), "test.CustomNameCustomType") proto.RegisterType((*CustomNameNinEmbeddedStructUnion)(nil), "test.CustomNameNinEmbeddedStructUnion") proto.RegisterType((*CustomNameEnum)(nil), "test.CustomNameEnum") proto.RegisterType((*NoExtensionsMap)(nil), "test.NoExtensionsMap") proto.RegisterType((*Unrecognized)(nil), "test.Unrecognized") proto.RegisterType((*UnrecognizedWithInner)(nil), "test.UnrecognizedWithInner") proto.RegisterType((*UnrecognizedWithInner_Inner)(nil), "test.UnrecognizedWithInner.Inner") proto.RegisterType((*UnrecognizedWithEmbed)(nil), "test.UnrecognizedWithEmbed") proto.RegisterType((*UnrecognizedWithEmbed_Embedded)(nil), "test.UnrecognizedWithEmbed.Embedded") proto.RegisterType((*Node)(nil), "test.Node") proto.RegisterType((*NonByteCustomType)(nil), "test.NonByteCustomType") proto.RegisterType((*NidOptNonByteCustomType)(nil), "test.NidOptNonByteCustomType") proto.RegisterType((*NinOptNonByteCustomType)(nil), "test.NinOptNonByteCustomType") proto.RegisterType((*NidRepNonByteCustomType)(nil), "test.NidRepNonByteCustomType") proto.RegisterType((*NinRepNonByteCustomType)(nil), "test.NinRepNonByteCustomType") proto.RegisterType((*ProtoType)(nil), "test.ProtoType") proto.RegisterEnum("test.TheTestEnum", TheTestEnum_name, TheTestEnum_value) proto.RegisterEnum("test.AnotherTestEnum", AnotherTestEnum_name, AnotherTestEnum_value) proto.RegisterEnum("test.YetAnotherTestEnum", YetAnotherTestEnum_name, YetAnotherTestEnum_value) proto.RegisterEnum("test.YetYetAnotherTestEnum", YetYetAnotherTestEnum_name, YetYetAnotherTestEnum_value) proto.RegisterEnum("test.NestedDefinition_NestedEnum", NestedDefinition_NestedEnum_name, NestedDefinition_NestedEnum_value) proto.RegisterExtension(E_FieldA) proto.RegisterExtension(E_FieldB) proto.RegisterExtension(E_FieldC) proto.RegisterExtension(E_FieldD) proto.RegisterExtension(E_FieldE) proto.RegisterExtension(E_FieldA1) proto.RegisterExtension(E_FieldB1) proto.RegisterExtension(E_FieldC1) } func (this *NidOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if this.Field2 != that1.Field2 { if this.Field2 < that1.Field2 { return -1 } return 1 } if this.Field3 != that1.Field3 { if this.Field3 < that1.Field3 { return -1 } return 1 } if this.Field4 != that1.Field4 { if this.Field4 < that1.Field4 { return -1 } return 1 } if this.Field5 != that1.Field5 { if this.Field5 < that1.Field5 { return -1 } return 1 } if this.Field6 != that1.Field6 { if this.Field6 < that1.Field6 { return -1 } return 1 } if this.Field7 != that1.Field7 { if this.Field7 < that1.Field7 { return -1 } return 1 } if this.Field8 != that1.Field8 { if this.Field8 < that1.Field8 { return -1 } return 1 } if this.Field9 != that1.Field9 { if this.Field9 < that1.Field9 { return -1 } return 1 } if this.Field10 != that1.Field10 { if this.Field10 < that1.Field10 { return -1 } return 1 } if this.Field11 != that1.Field11 { if this.Field11 < that1.Field11 { return -1 } return 1 } if this.Field12 != that1.Field12 { if this.Field12 < that1.Field12 { return -1 } return 1 } if this.Field13 != that1.Field13 { if !this.Field13 { return -1 } return 1 } if this.Field14 != that1.Field14 { if this.Field14 < that1.Field14 { return -1 } return 1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { if *this.Field8 < *that1.Field8 { return -1 } return 1 } } else if this.Field8 != nil { return 1 } else if that1.Field8 != nil { return -1 } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { if *this.Field9 < *that1.Field9 { return -1 } return 1 } } else if this.Field9 != nil { return 1 } else if that1.Field9 != nil { return -1 } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { if *this.Field10 < *that1.Field10 { return -1 } return 1 } } else if this.Field10 != nil { return 1 } else if that1.Field10 != nil { return -1 } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { if *this.Field11 < *that1.Field11 { return -1 } return 1 } } else if this.Field11 != nil { return 1 } else if that1.Field11 != nil { return -1 } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { if *this.Field12 < *that1.Field12 { return -1 } return 1 } } else if this.Field12 != nil { return 1 } else if that1.Field12 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepPackedNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepPackedNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { if this.Field4[i] < that1.Field4[i] { return -1 } return 1 } } if len(this.Field5) != len(that1.Field5) { if len(this.Field5) < len(that1.Field5) { return -1 } return 1 } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { if this.Field5[i] < that1.Field5[i] { return -1 } return 1 } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { if this.Field8[i] < that1.Field8[i] { return -1 } return 1 } } if len(this.Field9) != len(that1.Field9) { if len(this.Field9) < len(that1.Field9) { return -1 } return 1 } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { if this.Field9[i] < that1.Field9[i] { return -1 } return 1 } } if len(this.Field10) != len(that1.Field10) { if len(this.Field10) < len(that1.Field10) { return -1 } return 1 } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { if this.Field10[i] < that1.Field10[i] { return -1 } return 1 } } if len(this.Field11) != len(that1.Field11) { if len(this.Field11) < len(that1.Field11) { return -1 } return 1 } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { if this.Field11[i] < that1.Field11[i] { return -1 } return 1 } } if len(this.Field12) != len(that1.Field12) { if len(this.Field12) < len(that1.Field12) { return -1 } return 1 } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { if this.Field12[i] < that1.Field12[i] { return -1 } return 1 } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if this.Field2 != that1.Field2 { if this.Field2 < that1.Field2 { return -1 } return 1 } if c := this.Field3.Compare(&that1.Field3); c != 0 { return c } if c := this.Field4.Compare(&that1.Field4); c != 0 { return c } if this.Field6 != that1.Field6 { if this.Field6 < that1.Field6 { return -1 } return 1 } if this.Field7 != that1.Field7 { if this.Field7 < that1.Field7 { return -1 } return 1 } if c := this.Field8.Compare(&that1.Field8); c != 0 { return c } if this.Field13 != that1.Field13 { if !this.Field13 { return -1 } return 1 } if this.Field14 != that1.Field14 { if this.Field14 < that1.Field14 { return -1 } return 1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := this.Field4.Compare(that1.Field4); c != 0 { return c } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if c := this.Field8.Compare(that1.Field8); c != 0 { return c } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if c := this.Field3[i].Compare(&that1.Field3[i]); c != 0 { return c } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if c := this.Field4[i].Compare(&that1.Field4[i]); c != 0 { return c } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if c := this.Field8[i].Compare(&that1.Field8[i]); c != 0 { return c } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if c := this.Field3[i].Compare(that1.Field3[i]); c != 0 { return c } } if len(this.Field4) != len(that1.Field4) { if len(this.Field4) < len(that1.Field4) { return -1 } return 1 } for i := range this.Field4 { if c := this.Field4[i].Compare(that1.Field4[i]); c != 0 { return c } } if len(this.Field6) != len(that1.Field6) { if len(this.Field6) < len(that1.Field6) { return -1 } return 1 } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { if this.Field6[i] < that1.Field6[i] { return -1 } return 1 } } if len(this.Field7) != len(that1.Field7) { if len(this.Field7) < len(that1.Field7) { return -1 } return 1 } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { if this.Field7[i] < that1.Field7[i] { return -1 } return 1 } } if len(this.Field8) != len(that1.Field8) { if len(this.Field8) < len(that1.Field8) { return -1 } return 1 } for i := range this.Field8 { if c := this.Field8[i].Compare(that1.Field8[i]); c != 0 { return c } } if len(this.Field13) != len(that1.Field13) { if len(this.Field13) < len(that1.Field13) { return -1 } return 1 } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { if !this.Field13[i] { return -1 } return 1 } } if len(this.Field14) != len(that1.Field14) { if len(this.Field14) < len(that1.Field14) { return -1 } return 1 } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { if this.Field14[i] < that1.Field14[i] { return -1 } return 1 } } if len(this.Field15) != len(that1.Field15) { if len(this.Field15) < len(that1.Field15) { return -1 } return 1 } for i := range this.Field15 { if c := bytes.Compare(this.Field15[i], that1.Field15[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidEmbeddedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(&that1.Field200); c != 0 { return c } if this.Field210 != that1.Field210 { if !this.Field210 { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinEmbeddedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(that1.Field200); c != 0 { return c } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { if !*this.Field210 { return -1 } return 1 } } else if this.Field210 != nil { return 1 } else if that1.Field210 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidNestedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(&that1.Field1); c != 0 { return c } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if c := this.Field2[i].Compare(&that1.Field2[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinNestedStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if c := this.Field2[i].Compare(that1.Field2[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Id.Compare(that1.Id); c != 0 { return c } if c := this.Value.Compare(that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomDash) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Value == nil { if this.Value != nil { return 1 } } else if this.Value == nil { return -1 } else if c := this.Value.Compare(*that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Id == nil { if this.Id != nil { return 1 } } else if this.Id == nil { return -1 } else if c := this.Id.Compare(*that1.Id); c != 0 { return c } if that1.Value == nil { if this.Value != nil { return 1 } } else if this.Value == nil { return -1 } else if c := this.Value.Compare(*that1.Value); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Id) != len(that1.Id) { if len(this.Id) < len(that1.Id) { return -1 } return 1 } for i := range this.Id { if c := this.Id[i].Compare(that1.Id[i]); c != 0 { return c } } if len(this.Value) != len(that1.Value) { if len(this.Value) < len(that1.Value) { return -1 } return 1 } for i := range this.Value { if c := this.Value[i].Compare(that1.Value[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepCustom) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Id) != len(that1.Id) { if len(this.Id) < len(that1.Id) { return -1 } return 1 } for i := range this.Id { if c := this.Id[i].Compare(that1.Id[i]); c != 0 { return c } } if len(this.Value) != len(that1.Value) { if len(this.Value) < len(that1.Value) { return -1 } return 1 } for i := range this.Value { if c := this.Value[i].Compare(that1.Value[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNativeUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := this.Field4.Compare(that1.Field4); c != 0 { return c } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinEmbeddedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.Field200.Compare(that1.Field200); c != 0 { return c } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { if !*this.Field210 { return -1 } return 1 } } else if this.Field210 != nil { return 1 } else if that1.Field210 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinNestedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if c := this.Field2.Compare(that1.Field2); c != 0 { return c } if c := this.Field3.Compare(that1.Field3); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Tree) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Or.Compare(that1.Or); c != 0 { return c } if c := this.And.Compare(that1.And); c != 0 { return c } if c := this.Leaf.Compare(that1.Leaf); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *OrBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AndBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Leaf) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } if this.StrValue != that1.StrValue { if this.StrValue < that1.StrValue { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *DeepTree) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Down.Compare(that1.Down); c != 0 { return c } if c := this.And.Compare(that1.And); c != 0 { return c } if c := this.Leaf.Compare(that1.Leaf); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *ADeepBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Down.Compare(&that1.Down); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AndDeepBranch) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Left.Compare(&that1.Left); c != 0 { return c } if c := this.Right.Compare(&that1.Right); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *DeepLeaf) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Tree.Compare(&that1.Tree); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Nil) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != that1.Field1 { if this.Field1 < that1.Field1 { return -1 } return 1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { if this.Field1[i] < that1.Field1[i] { return -1 } return 1 } } if len(this.Field2) != len(that1.Field2) { if len(this.Field2) < len(that1.Field2) { return -1 } return 1 } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { if this.Field2[i] < that1.Field2[i] { return -1 } return 1 } } if len(this.Field3) != len(that1.Field3) { if len(this.Field3) < len(that1.Field3) { return -1 } return 1 } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { if this.Field3[i] < that1.Field3[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptEnumDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AnotherNinOptEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *AnotherNinOptEnumDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Timer) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Time1 != that1.Time1 { if this.Time1 < that1.Time1 { return -1 } return 1 } if this.Time2 != that1.Time2 { if this.Time2 < that1.Time2 { return -1 } return 1 } if c := bytes.Compare(this.Data, that1.Data); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *MyExtendable) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) extkeys := make([]int32, 0, len(thismap)+len(thatmap)) for k := range thismap { extkeys = append(extkeys, k) } for k := range thatmap { if _, ok := thismap[k]; !ok { extkeys = append(extkeys, k) } } github_com_gogo_protobuf_sortkeys.Int32s(extkeys) for _, k := range extkeys { if v, ok := thismap[k]; ok { if v2, ok := thatmap[k]; ok { if c := v.Compare(&v2); c != 0 { return c } } else { return 1 } } else { return -1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *OtherExtenable) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if *this.Field13 < *that1.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if c := this.M.Compare(that1.M); c != 0 { return c } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) extkeys := make([]int32, 0, len(thismap)+len(thatmap)) for k := range thismap { extkeys = append(extkeys, k) } for k := range thatmap { if _, ok := thismap[k]; !ok { extkeys = append(extkeys, k) } } github_com_gogo_protobuf_sortkeys.Int32s(extkeys) for _, k := range extkeys { if v, ok := thismap[k]; ok { if v2, ok := thatmap[k]; ok { if c := v.Compare(&v2); c != 0 { return c } } else { return 1 } } else { return -1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { if *this.EnumField < *that1.EnumField { return -1 } return 1 } } else if this.EnumField != nil { return 1 } else if that1.EnumField != nil { return -1 } if c := this.NNM.Compare(that1.NNM); c != 0 { return c } if c := this.NM.Compare(that1.NM); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition_NestedMessage) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { if *this.NestedField1 < *that1.NestedField1 { return -1 } return 1 } } else if this.NestedField1 != nil { return 1 } else if that1.NestedField1 != nil { return -1 } if c := this.NNM.Compare(that1.NNM); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { if *this.NestedNestedField1 < *that1.NestedNestedField1 { return -1 } return 1 } } else if this.NestedNestedField1 != nil { return 1 } else if that1.NestedNestedField1 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NestedScope) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.A.Compare(that1.A); c != 0 { return c } if this.B != nil && that1.B != nil { if *this.B != *that1.B { if *this.B < *that1.B { return -1 } return 1 } } else if this.B != nil { return 1 } else if that1.B != nil { return -1 } if c := this.C.Compare(that1.C); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNativeDefault) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { if *this.Field3 < *that1.Field3 { return -1 } return 1 } } else if this.Field3 != nil { return 1 } else if that1.Field3 != nil { return -1 } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { if *this.Field4 < *that1.Field4 { return -1 } return 1 } } else if this.Field4 != nil { return 1 } else if that1.Field4 != nil { return -1 } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { if *this.Field5 < *that1.Field5 { return -1 } return 1 } } else if this.Field5 != nil { return 1 } else if that1.Field5 != nil { return -1 } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { if *this.Field6 < *that1.Field6 { return -1 } return 1 } } else if this.Field6 != nil { return 1 } else if that1.Field6 != nil { return -1 } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { if *this.Field7 < *that1.Field7 { return -1 } return 1 } } else if this.Field7 != nil { return 1 } else if that1.Field7 != nil { return -1 } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { if *this.Field8 < *that1.Field8 { return -1 } return 1 } } else if this.Field8 != nil { return 1 } else if that1.Field8 != nil { return -1 } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { if *this.Field9 < *that1.Field9 { return -1 } return 1 } } else if this.Field9 != nil { return 1 } else if that1.Field9 != nil { return -1 } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { if *this.Field10 < *that1.Field10 { return -1 } return 1 } } else if this.Field10 != nil { return 1 } else if that1.Field10 != nil { return -1 } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { if *this.Field11 < *that1.Field11 { return -1 } return 1 } } else if this.Field11 != nil { return 1 } else if that1.Field11 != nil { return -1 } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { if *this.Field12 < *that1.Field12 { return -1 } return 1 } } else if this.Field12 != nil { return 1 } else if that1.Field12 != nil { return -1 } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { if !*this.Field13 { return -1 } return 1 } } else if this.Field13 != nil { return 1 } else if that1.Field13 != nil { return -1 } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { if *this.Field14 < *that1.Field14 { return -1 } return 1 } } else if this.Field14 != nil { return 1 } else if that1.Field14 != nil { return -1 } if c := bytes.Compare(this.Field15, that1.Field15); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomContainer) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.CustomStruct.Compare(&that1.CustomStruct); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNidOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != that1.FieldA { if this.FieldA < that1.FieldA { return -1 } return 1 } if this.FieldB != that1.FieldB { if this.FieldB < that1.FieldB { return -1 } return 1 } if this.FieldC != that1.FieldC { if this.FieldC < that1.FieldC { return -1 } return 1 } if this.FieldD != that1.FieldD { if this.FieldD < that1.FieldD { return -1 } return 1 } if this.FieldE != that1.FieldE { if this.FieldE < that1.FieldE { return -1 } return 1 } if this.FieldF != that1.FieldF { if this.FieldF < that1.FieldF { return -1 } return 1 } if this.FieldG != that1.FieldG { if this.FieldG < that1.FieldG { return -1 } return 1 } if this.FieldH != that1.FieldH { if this.FieldH < that1.FieldH { return -1 } return 1 } if this.FieldI != that1.FieldI { if this.FieldI < that1.FieldI { return -1 } return 1 } if this.FieldJ != that1.FieldJ { if this.FieldJ < that1.FieldJ { return -1 } return 1 } if this.FieldK != that1.FieldK { if this.FieldK < that1.FieldK { return -1 } return 1 } if this.FieldL != that1.FieldL { if this.FieldL < that1.FieldL { return -1 } return 1 } if this.FieldM != that1.FieldM { if !this.FieldM { return -1 } return 1 } if this.FieldN != that1.FieldN { if this.FieldN < that1.FieldN { return -1 } return 1 } if c := bytes.Compare(this.FieldO, that1.FieldO); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinOptNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if *this.FieldB < *that1.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { if *this.FieldC < *that1.FieldC { return -1 } return 1 } } else if this.FieldC != nil { return 1 } else if that1.FieldC != nil { return -1 } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { if *this.FieldD < *that1.FieldD { return -1 } return 1 } } else if this.FieldD != nil { return 1 } else if that1.FieldD != nil { return -1 } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { if *this.FieldE < *that1.FieldE { return -1 } return 1 } } else if this.FieldE != nil { return 1 } else if that1.FieldE != nil { return -1 } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { if *this.FieldF < *that1.FieldF { return -1 } return 1 } } else if this.FieldF != nil { return 1 } else if that1.FieldF != nil { return -1 } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { if *this.FieldG < *that1.FieldG { return -1 } return 1 } } else if this.FieldG != nil { return 1 } else if that1.FieldG != nil { return -1 } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { if *this.FieldH < *that1.FieldH { return -1 } return 1 } } else if this.FieldH != nil { return 1 } else if that1.FieldH != nil { return -1 } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { if *this.FieldI < *that1.FieldI { return -1 } return 1 } } else if this.FieldI != nil { return 1 } else if that1.FieldI != nil { return -1 } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { if *this.FieldJ < *that1.FieldJ { return -1 } return 1 } } else if this.FieldJ != nil { return 1 } else if that1.FieldJ != nil { return -1 } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { if *this.FieldK < *that1.FieldK { return -1 } return 1 } } else if this.FieldK != nil { return 1 } else if that1.FieldK != nil { return -1 } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { if *this.FielL < *that1.FielL { return -1 } return 1 } } else if this.FielL != nil { return 1 } else if that1.FielL != nil { return -1 } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { if !*this.FieldM { return -1 } return 1 } } else if this.FieldM != nil { return 1 } else if that1.FieldM != nil { return -1 } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { if *this.FieldN < *that1.FieldN { return -1 } return 1 } } else if this.FieldN != nil { return 1 } else if that1.FieldN != nil { return -1 } if c := bytes.Compare(this.FieldO, that1.FieldO); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinRepNative) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.FieldA) != len(that1.FieldA) { if len(this.FieldA) < len(that1.FieldA) { return -1 } return 1 } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { if this.FieldA[i] < that1.FieldA[i] { return -1 } return 1 } } if len(this.FieldB) != len(that1.FieldB) { if len(this.FieldB) < len(that1.FieldB) { return -1 } return 1 } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { if this.FieldB[i] < that1.FieldB[i] { return -1 } return 1 } } if len(this.FieldC) != len(that1.FieldC) { if len(this.FieldC) < len(that1.FieldC) { return -1 } return 1 } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { if this.FieldC[i] < that1.FieldC[i] { return -1 } return 1 } } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { if this.FieldD[i] < that1.FieldD[i] { return -1 } return 1 } } if len(this.FieldE) != len(that1.FieldE) { if len(this.FieldE) < len(that1.FieldE) { return -1 } return 1 } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { if this.FieldE[i] < that1.FieldE[i] { return -1 } return 1 } } if len(this.FieldF) != len(that1.FieldF) { if len(this.FieldF) < len(that1.FieldF) { return -1 } return 1 } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { if this.FieldF[i] < that1.FieldF[i] { return -1 } return 1 } } if len(this.FieldG) != len(that1.FieldG) { if len(this.FieldG) < len(that1.FieldG) { return -1 } return 1 } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { if this.FieldG[i] < that1.FieldG[i] { return -1 } return 1 } } if len(this.FieldH) != len(that1.FieldH) { if len(this.FieldH) < len(that1.FieldH) { return -1 } return 1 } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { if this.FieldH[i] < that1.FieldH[i] { return -1 } return 1 } } if len(this.FieldI) != len(that1.FieldI) { if len(this.FieldI) < len(that1.FieldI) { return -1 } return 1 } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { if this.FieldI[i] < that1.FieldI[i] { return -1 } return 1 } } if len(this.FieldJ) != len(that1.FieldJ) { if len(this.FieldJ) < len(that1.FieldJ) { return -1 } return 1 } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { if this.FieldJ[i] < that1.FieldJ[i] { return -1 } return 1 } } if len(this.FieldK) != len(that1.FieldK) { if len(this.FieldK) < len(that1.FieldK) { return -1 } return 1 } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { if this.FieldK[i] < that1.FieldK[i] { return -1 } return 1 } } if len(this.FieldL) != len(that1.FieldL) { if len(this.FieldL) < len(that1.FieldL) { return -1 } return 1 } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { if this.FieldL[i] < that1.FieldL[i] { return -1 } return 1 } } if len(this.FieldM) != len(that1.FieldM) { if len(this.FieldM) < len(that1.FieldM) { return -1 } return 1 } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { if !this.FieldM[i] { return -1 } return 1 } } if len(this.FieldN) != len(that1.FieldN) { if len(this.FieldN) < len(that1.FieldN) { return -1 } return 1 } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { if this.FieldN[i] < that1.FieldN[i] { return -1 } return 1 } } if len(this.FieldO) != len(that1.FieldO) { if len(this.FieldO) < len(that1.FieldO) { return -1 } return 1 } for i := range this.FieldO { if c := bytes.Compare(this.FieldO[i], that1.FieldO[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinStruct) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if *this.FieldB < *that1.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if c := this.FieldC.Compare(that1.FieldC); c != 0 { return c } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if c := this.FieldD[i].Compare(that1.FieldD[i]); c != 0 { return c } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { if *this.FieldE < *that1.FieldE { return -1 } return 1 } } else if this.FieldE != nil { return 1 } else if that1.FieldE != nil { return -1 } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { if *this.FieldF < *that1.FieldF { return -1 } return 1 } } else if this.FieldF != nil { return 1 } else if that1.FieldF != nil { return -1 } if c := this.FieldG.Compare(that1.FieldG); c != 0 { return c } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { if !*this.FieldH { return -1 } return 1 } } else if this.FieldH != nil { return 1 } else if that1.FieldH != nil { return -1 } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { if *this.FieldI < *that1.FieldI { return -1 } return 1 } } else if this.FieldI != nil { return 1 } else if that1.FieldI != nil { return -1 } if c := bytes.Compare(this.FieldJ, that1.FieldJ); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.FieldA == nil { if this.FieldA != nil { return 1 } } else if this.FieldA == nil { return -1 } else if c := this.FieldA.Compare(*that1.FieldA); c != 0 { return c } if that1.FieldB == nil { if this.FieldB != nil { return 1 } } else if this.FieldB == nil { return -1 } else if c := this.FieldB.Compare(*that1.FieldB); c != 0 { return c } if len(this.FieldC) != len(that1.FieldC) { if len(this.FieldC) < len(that1.FieldC) { return -1 } return 1 } for i := range this.FieldC { if c := this.FieldC[i].Compare(that1.FieldC[i]); c != 0 { return c } } if len(this.FieldD) != len(that1.FieldD) { if len(this.FieldD) < len(that1.FieldD) { return -1 } return 1 } for i := range this.FieldD { if c := this.FieldD[i].Compare(that1.FieldD[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameNinEmbeddedStructUnion) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NidOptNative.Compare(that1.NidOptNative); c != 0 { return c } if c := this.FieldA.Compare(that1.FieldA); c != 0 { return c } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { if !*this.FieldB { return -1 } return 1 } } else if this.FieldB != nil { return 1 } else if that1.FieldB != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *CustomNameEnum) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { if *this.FieldA < *that1.FieldA { return -1 } return 1 } } else if this.FieldA != nil { return 1 } else if that1.FieldA != nil { return -1 } if len(this.FieldB) != len(that1.FieldB) { if len(this.FieldB) < len(that1.FieldB) { return -1 } return 1 } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { if this.FieldB[i] < that1.FieldB[i] { return -1 } return 1 } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NoExtensionsMap) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } if c := bytes.Compare(this.XXX_extensions, that1.XXX_extensions); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *Unrecognized) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *UnrecognizedWithInner) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Embedded) != len(that1.Embedded) { if len(this.Embedded) < len(that1.Embedded) { return -1 } return 1 } for i := range this.Embedded { if c := this.Embedded[i].Compare(that1.Embedded[i]); c != 0 { return c } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *UnrecognizedWithInner_Inner) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *UnrecognizedWithEmbed) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.UnrecognizedWithEmbed_Embedded.Compare(&that1.UnrecognizedWithEmbed_Embedded); c != 0 { return c } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *UnrecognizedWithEmbed_Embedded) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { if *this.Field1 < *that1.Field1 { return -1 } return 1 } } else if this.Field1 != nil { return 1 } else if that1.Field1 != nil { return -1 } return 0 } func (this *Node) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { if *this.Label < *that1.Label { return -1 } return 1 } } else if this.Label != nil { return 1 } else if that1.Label != nil { return -1 } if len(this.Children) != len(that1.Children) { if len(this.Children) < len(that1.Children) { return -1 } return 1 } for i := range this.Children { if c := this.Children[i].Compare(that1.Children[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Field1 == nil { if this.Field1 != nil { return 1 } } else if this.Field1 == nil { return -1 } else if c := this.Field1.Compare(*that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Field1.Compare(that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinOptNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if that1.Field1 == nil { if this.Field1 != nil { return 1 } } else if this.Field1 == nil { return -1 } else if c := this.Field1.Compare(*that1.Field1); c != 0 { return c } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidRepNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if c := this.Field1[i].Compare(that1.Field1[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NinRepNonByteCustomType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Field1) != len(that1.Field1) { if len(this.Field1) < len(that1.Field1) { return -1 } return 1 } for i := range this.Field1 { if c := this.Field1[i].Compare(that1.Field1[i]); c != 0 { return c } } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *ProtoType) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { if *this.Field2 < *that1.Field2 { return -1 } return 1 } } else if this.Field2 != nil { return 1 } else if that1.Field2 != nil { return -1 } if c := bytes.Compare(this.XXX_unrecognized, that1.XXX_unrecognized); c != 0 { return c } return 0 } func (this *NidOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepPackedNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepPackedNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidEmbeddedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinEmbeddedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidNestedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinNestedStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomDash) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepCustom) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNativeUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinEmbeddedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinNestedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Tree) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *OrBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AndBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Leaf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *DeepTree) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *ADeepBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AndDeepBranch) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *DeepLeaf) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Nil) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptEnumDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AnotherNinOptEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *AnotherNinOptEnumDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Timer) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *MyExtendable) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *OtherExtenable) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition_NestedMessage) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NestedScope) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNativeDefault) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomContainer) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNidOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinOptNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinRepNative) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinStruct) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameNinEmbeddedStructUnion) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *CustomNameEnum) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NoExtensionsMap) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Unrecognized) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithInner) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithInner_Inner) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithEmbed) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *UnrecognizedWithEmbed_Embedded) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *Node) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidOptNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinOptNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NidRepNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *NinRepNonByteCustomType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func (this *ProtoType) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return ThetestDescription() } func ThetestDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 6575 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0x7b, 0x70, 0x24, 0x57, 0x75, 0xb7, 0x7a, 0x7a, 0xa4, 0x1d, 0x1d, 0xbd, 0x5a, 0xad, 0x5d, 0xed, 0x58, 0x5e, 0x4b, 0xbb, 0xe3, 0xf5, 0x5a, 0x16, 0xb6, 0x56, 0xab, 0xd5, 0xbe, 0x66, 0xb1, 0xfd, 0xcd, 0x6b, 0xd7, 0x5a, 0xa4, 0x91, 0x68, 0x49, 0xd8, 0xcb, 0xf7, 0x55, 0x4d, 0xf5, 0xce, 0x5c, 0x49, 0x63, 0xcf, 0x74, 0x0f, 0xd3, 0x3d, 0xb6, 0xe5, 0xfa, 0xea, 0x2b, 0x7f, 0x90, 0x10, 0x48, 0x2a, 0x4f, 0x92, 0x0a, 0x10, 0x30, 0x86, 0x14, 0xc1, 0x40, 0x1e, 0x10, 0x08, 0x21, 0x24, 0x15, 0xfc, 0x0f, 0xc9, 0xe6, 0x9f, 0x94, 0xc9, 0x5f, 0x29, 0x2a, 0xe5, 0xc2, 0x0b, 0x55, 0x21, 0x89, 0x93, 0x10, 0x70, 0x55, 0xa8, 0x32, 0x7f, 0xa4, 0xee, 0xab, 0xbb, 0xef, 0x9d, 0x1e, 0x75, 0xcb, 0x6b, 0x1b, 0xfe, 0xd9, 0x9d, 0xb9, 0xe7, 0xfc, 0xce, 0x3d, 0xf7, 0x3c, 0xee, 0x3d, 0xf7, 0xa1, 0x81, 0x2f, 0x5e, 0x84, 0xe3, 0x3b, 0xb6, 0xbd, 0xd3, 0x40, 0xa7, 0x5b, 0x6d, 0xdb, 0xb5, 0x6f, 0x74, 0xb6, 0x4f, 0xd7, 0x90, 0x53, 0x6d, 0xd7, 0x5b, 0xae, 0xdd, 0x9e, 0x27, 0x6d, 0xfa, 0x18, 0xe5, 0x98, 0xe7, 0x1c, 0x99, 0x55, 0x18, 0xbf, 0x52, 0x6f, 0xa0, 0xa2, 0xc7, 0xb8, 0x81, 0x5c, 0xfd, 0x22, 0x24, 0xb7, 0xeb, 0x0d, 0x94, 0x56, 0x8e, 0xab, 0xb3, 0x43, 0x8b, 0x27, 0xe7, 0x25, 0xd0, 0xbc, 0x88, 0x58, 0xc7, 0xcd, 0x06, 0x41, 0x64, 0xbe, 0x9f, 0x84, 0x89, 0x10, 0xaa, 0xae, 0x43, 0xd2, 0x32, 0x9b, 0x58, 0xa2, 0x32, 0x3b, 0x68, 0x90, 0xcf, 0x7a, 0x1a, 0x0e, 0xb5, 0xcc, 0xea, 0x13, 0xe6, 0x0e, 0x4a, 0x27, 0x48, 0x33, 0xff, 0xaa, 0x4f, 0x03, 0xd4, 0x50, 0x0b, 0x59, 0x35, 0x64, 0x55, 0xf7, 0xd2, 0xea, 0x71, 0x75, 0x76, 0xd0, 0x08, 0xb4, 0xe8, 0xef, 0x80, 0xf1, 0x56, 0xe7, 0x46, 0xa3, 0x5e, 0xad, 0x04, 0xd8, 0xe0, 0xb8, 0x3a, 0xdb, 0x6f, 0x68, 0x94, 0x50, 0xf4, 0x99, 0xef, 0x85, 0xb1, 0xa7, 0x90, 0xf9, 0x44, 0x90, 0x75, 0x88, 0xb0, 0x8e, 0xe2, 0xe6, 0x00, 0x63, 0x01, 0x86, 0x9b, 0xc8, 0x71, 0xcc, 0x1d, 0x54, 0x71, 0xf7, 0x5a, 0x28, 0x9d, 0x24, 0xa3, 0x3f, 0xde, 0x35, 0x7a, 0x79, 0xe4, 0x43, 0x0c, 0xb5, 0xb9, 0xd7, 0x42, 0x7a, 0x0e, 0x06, 0x91, 0xd5, 0x69, 0x52, 0x09, 0xfd, 0x3d, 0xec, 0x57, 0xb2, 0x3a, 0x4d, 0x59, 0x4a, 0x0a, 0xc3, 0x98, 0x88, 0x43, 0x0e, 0x6a, 0x3f, 0x59, 0xaf, 0xa2, 0xf4, 0x00, 0x11, 0x70, 0x6f, 0x97, 0x80, 0x0d, 0x4a, 0x97, 0x65, 0x70, 0x9c, 0x5e, 0x80, 0x41, 0xf4, 0xb4, 0x8b, 0x2c, 0xa7, 0x6e, 0x5b, 0xe9, 0x43, 0x44, 0xc8, 0x3d, 0x21, 0x5e, 0x44, 0x8d, 0x9a, 0x2c, 0xc2, 0xc7, 0xe9, 0xe7, 0xe1, 0x90, 0xdd, 0x72, 0xeb, 0xb6, 0xe5, 0xa4, 0x53, 0xc7, 0x95, 0xd9, 0xa1, 0xc5, 0x63, 0xa1, 0x81, 0xb0, 0x46, 0x79, 0x0c, 0xce, 0xac, 0x2f, 0x83, 0xe6, 0xd8, 0x9d, 0x76, 0x15, 0x55, 0xaa, 0x76, 0x0d, 0x55, 0xea, 0xd6, 0xb6, 0x9d, 0x1e, 0x24, 0x02, 0x66, 0xba, 0x07, 0x42, 0x18, 0x0b, 0x76, 0x0d, 0x2d, 0x5b, 0xdb, 0xb6, 0x31, 0xea, 0x08, 0xdf, 0xf5, 0x49, 0x18, 0x70, 0xf6, 0x2c, 0xd7, 0x7c, 0x3a, 0x3d, 0x4c, 0x22, 0x84, 0x7d, 0xcb, 0xfc, 0xc5, 0x00, 0x8c, 0xc5, 0x09, 0xb1, 0xcb, 0xd0, 0xbf, 0x8d, 0x47, 0x99, 0x4e, 0x1c, 0xc4, 0x06, 0x14, 0x23, 0x1a, 0x71, 0xe0, 0x0d, 0x1a, 0x31, 0x07, 0x43, 0x16, 0x72, 0x5c, 0x54, 0xa3, 0x11, 0xa1, 0xc6, 0x8c, 0x29, 0xa0, 0xa0, 0xee, 0x90, 0x4a, 0xbe, 0xa1, 0x90, 0x7a, 0x0c, 0xc6, 0x3c, 0x95, 0x2a, 0x6d, 0xd3, 0xda, 0xe1, 0xb1, 0x79, 0x3a, 0x4a, 0x93, 0xf9, 0x12, 0xc7, 0x19, 0x18, 0x66, 0x8c, 0x22, 0xe1, 0xbb, 0x5e, 0x04, 0xb0, 0x2d, 0x64, 0x6f, 0x57, 0x6a, 0xa8, 0xda, 0x48, 0xa7, 0x7a, 0x58, 0x69, 0x0d, 0xb3, 0x74, 0x59, 0xc9, 0xa6, 0xad, 0xd5, 0x86, 0x7e, 0xc9, 0x0f, 0xb5, 0x43, 0x3d, 0x22, 0x65, 0x95, 0x26, 0x59, 0x57, 0xb4, 0x6d, 0xc1, 0x68, 0x1b, 0xe1, 0xb8, 0x47, 0x35, 0x36, 0xb2, 0x41, 0xa2, 0xc4, 0x7c, 0xe4, 0xc8, 0x0c, 0x06, 0xa3, 0x03, 0x1b, 0x69, 0x07, 0xbf, 0xea, 0x77, 0x83, 0xd7, 0x50, 0x21, 0x61, 0x05, 0x64, 0x16, 0x1a, 0xe6, 0x8d, 0x65, 0xb3, 0x89, 0xa6, 0x9e, 0x81, 0x51, 0xd1, 0x3c, 0xfa, 0x61, 0xe8, 0x77, 0x5c, 0xb3, 0xed, 0x92, 0x28, 0xec, 0x37, 0xe8, 0x17, 0x5d, 0x03, 0x15, 0x59, 0x35, 0x32, 0xcb, 0xf5, 0x1b, 0xf8, 0xa3, 0xfe, 0xbf, 0xfc, 0x01, 0xab, 0x64, 0xc0, 0xa7, 0xba, 0x3d, 0x2a, 0x48, 0x96, 0xc7, 0x3d, 0x75, 0x01, 0x46, 0x84, 0x01, 0xc4, 0xed, 0x3a, 0xf3, 0x7f, 0xe1, 0x48, 0xa8, 0x68, 0xfd, 0x31, 0x38, 0xdc, 0xb1, 0xea, 0x96, 0x8b, 0xda, 0xad, 0x36, 0xc2, 0x11, 0x4b, 0xbb, 0x4a, 0xff, 0xf3, 0xa1, 0x1e, 0x31, 0xb7, 0x15, 0xe4, 0xa6, 0x52, 0x8c, 0x89, 0x4e, 0x77, 0xe3, 0xdc, 0x60, 0xea, 0x07, 0x87, 0xb4, 0x67, 0x9f, 0x7d, 0xf6, 0xd9, 0x44, 0xe6, 0xa3, 0x03, 0x70, 0x38, 0x2c, 0x67, 0x42, 0xd3, 0x77, 0x12, 0x06, 0xac, 0x4e, 0xf3, 0x06, 0x6a, 0x13, 0x23, 0xf5, 0x1b, 0xec, 0x9b, 0x9e, 0x83, 0xfe, 0x86, 0x79, 0x03, 0x35, 0xd2, 0xc9, 0xe3, 0xca, 0xec, 0xe8, 0xe2, 0x3b, 0x62, 0x65, 0xe5, 0xfc, 0x0a, 0x86, 0x18, 0x14, 0xa9, 0x3f, 0x04, 0x49, 0x36, 0x45, 0x63, 0x09, 0x73, 0xf1, 0x24, 0xe0, 0x5c, 0x32, 0x08, 0x4e, 0xbf, 0x13, 0x06, 0xf1, 0xff, 0x34, 0x36, 0x06, 0x88, 0xce, 0x29, 0xdc, 0x80, 0xe3, 0x42, 0x9f, 0x82, 0x14, 0x49, 0x93, 0x1a, 0xe2, 0x4b, 0x9b, 0xf7, 0x1d, 0x07, 0x56, 0x0d, 0x6d, 0x9b, 0x9d, 0x86, 0x5b, 0x79, 0xd2, 0x6c, 0x74, 0x10, 0x09, 0xf8, 0x41, 0x63, 0x98, 0x35, 0xbe, 0x07, 0xb7, 0xe9, 0x33, 0x30, 0x44, 0xb3, 0xaa, 0x6e, 0xd5, 0xd0, 0xd3, 0x64, 0xf6, 0xec, 0x37, 0x68, 0xa2, 0x2d, 0xe3, 0x16, 0xdc, 0xfd, 0xe3, 0x8e, 0x6d, 0xf1, 0xd0, 0x24, 0x5d, 0xe0, 0x06, 0xd2, 0xfd, 0x05, 0x79, 0xe2, 0xbe, 0x2b, 0x7c, 0x78, 0x72, 0x4c, 0x65, 0xbe, 0x96, 0x80, 0x24, 0x99, 0x2f, 0xc6, 0x60, 0x68, 0xf3, 0xfa, 0x7a, 0xa9, 0x52, 0x5c, 0xdb, 0xca, 0xaf, 0x94, 0x34, 0x45, 0x1f, 0x05, 0x20, 0x0d, 0x57, 0x56, 0xd6, 0x72, 0x9b, 0x5a, 0xc2, 0xfb, 0xbe, 0x5c, 0xde, 0x3c, 0xbf, 0xa4, 0xa9, 0x1e, 0x60, 0x8b, 0x36, 0x24, 0x83, 0x0c, 0x67, 0x17, 0xb5, 0x7e, 0x5d, 0x83, 0x61, 0x2a, 0x60, 0xf9, 0xb1, 0x52, 0xf1, 0xfc, 0x92, 0x36, 0x20, 0xb6, 0x9c, 0x5d, 0xd4, 0x0e, 0xe9, 0x23, 0x30, 0x48, 0x5a, 0xf2, 0x6b, 0x6b, 0x2b, 0x5a, 0xca, 0x93, 0xb9, 0xb1, 0x69, 0x2c, 0x97, 0xaf, 0x6a, 0x83, 0x9e, 0xcc, 0xab, 0xc6, 0xda, 0xd6, 0xba, 0x06, 0x9e, 0x84, 0xd5, 0xd2, 0xc6, 0x46, 0xee, 0x6a, 0x49, 0x1b, 0xf2, 0x38, 0xf2, 0xd7, 0x37, 0x4b, 0x1b, 0xda, 0xb0, 0xa0, 0xd6, 0xd9, 0x45, 0x6d, 0xc4, 0xeb, 0xa2, 0x54, 0xde, 0x5a, 0xd5, 0x46, 0xf5, 0x71, 0x18, 0xa1, 0x5d, 0x70, 0x25, 0xc6, 0xa4, 0xa6, 0xf3, 0x4b, 0x9a, 0xe6, 0x2b, 0x42, 0xa5, 0x8c, 0x0b, 0x0d, 0xe7, 0x97, 0x34, 0x3d, 0x53, 0x80, 0x7e, 0x12, 0x5d, 0xba, 0x0e, 0xa3, 0x2b, 0xb9, 0x7c, 0x69, 0xa5, 0xb2, 0xb6, 0xbe, 0xb9, 0xbc, 0x56, 0xce, 0xad, 0x68, 0x8a, 0xdf, 0x66, 0x94, 0xde, 0xbd, 0xb5, 0x6c, 0x94, 0x8a, 0x5a, 0x22, 0xd8, 0xb6, 0x5e, 0xca, 0x6d, 0x96, 0x8a, 0x9a, 0x9a, 0xa9, 0xc2, 0xe1, 0xb0, 0x79, 0x32, 0x34, 0x33, 0x02, 0x2e, 0x4e, 0xf4, 0x70, 0x31, 0x91, 0xd5, 0xe5, 0xe2, 0xcf, 0x28, 0x30, 0x11, 0xb2, 0x56, 0x84, 0x76, 0xf2, 0x30, 0xf4, 0xd3, 0x10, 0xa5, 0xab, 0xe7, 0x7d, 0xa1, 0x8b, 0x0e, 0x09, 0xd8, 0xae, 0x15, 0x94, 0xe0, 0x82, 0x15, 0x84, 0xda, 0xa3, 0x82, 0xc0, 0x22, 0xba, 0x94, 0xfc, 0x80, 0x02, 0xe9, 0x5e, 0xb2, 0x23, 0x26, 0x8a, 0x84, 0x30, 0x51, 0x5c, 0x96, 0x15, 0x38, 0xd1, 0x7b, 0x0c, 0x5d, 0x5a, 0x7c, 0x4e, 0x81, 0xc9, 0xf0, 0x42, 0x2b, 0x54, 0x87, 0x87, 0x60, 0xa0, 0x89, 0xdc, 0x5d, 0x9b, 0x17, 0x1b, 0xa7, 0x42, 0x96, 0x30, 0x4c, 0x96, 0x6d, 0xc5, 0x50, 0xc1, 0x35, 0x50, 0xed, 0x55, 0x2d, 0x51, 0x6d, 0xba, 0x34, 0xfd, 0x70, 0x02, 0x8e, 0x84, 0x0a, 0x0f, 0x55, 0xf4, 0x2e, 0x80, 0xba, 0xd5, 0xea, 0xb8, 0xb4, 0xa0, 0xa0, 0xf3, 0xd3, 0x20, 0x69, 0x21, 0xb9, 0x8f, 0xe7, 0x9e, 0x8e, 0xeb, 0xd1, 0x55, 0x42, 0x07, 0xda, 0x44, 0x18, 0x2e, 0xfa, 0x8a, 0x26, 0x89, 0xa2, 0xd3, 0x3d, 0x46, 0xda, 0xb5, 0x56, 0x2f, 0x80, 0x56, 0x6d, 0xd4, 0x91, 0xe5, 0x56, 0x1c, 0xb7, 0x8d, 0xcc, 0x66, 0xdd, 0xda, 0x21, 0x13, 0x70, 0x2a, 0xdb, 0xbf, 0x6d, 0x36, 0x1c, 0x64, 0x8c, 0x51, 0xf2, 0x06, 0xa7, 0x62, 0x04, 0x59, 0xe3, 0xda, 0x01, 0xc4, 0x80, 0x80, 0xa0, 0x64, 0x0f, 0x91, 0xf9, 0x4a, 0x0a, 0x86, 0x02, 0x65, 0xa9, 0x7e, 0x02, 0x86, 0x1f, 0x37, 0x9f, 0x34, 0x2b, 0x7c, 0xab, 0x41, 0x2d, 0x31, 0x84, 0xdb, 0xd6, 0xd9, 0x76, 0x63, 0x01, 0x0e, 0x13, 0x16, 0xbb, 0xe3, 0xa2, 0x76, 0xa5, 0xda, 0x30, 0x1d, 0x87, 0x18, 0x2d, 0x45, 0x58, 0x75, 0x4c, 0x5b, 0xc3, 0xa4, 0x02, 0xa7, 0xe8, 0xe7, 0x60, 0x82, 0x20, 0x9a, 0x9d, 0x86, 0x5b, 0x6f, 0x35, 0x50, 0x05, 0x6f, 0x7e, 0x1c, 0x32, 0x11, 0x7b, 0x9a, 0x8d, 0x63, 0x8e, 0x55, 0xc6, 0x80, 0x35, 0x72, 0xf4, 0x22, 0xdc, 0x45, 0x60, 0x3b, 0xc8, 0x42, 0x6d, 0xd3, 0x45, 0x15, 0xf4, 0xbe, 0x8e, 0xd9, 0x70, 0x2a, 0xa6, 0x55, 0xab, 0xec, 0x9a, 0xce, 0x6e, 0xfa, 0x30, 0x16, 0x90, 0x4f, 0xa4, 0x15, 0xe3, 0x0e, 0xcc, 0x78, 0x95, 0xf1, 0x95, 0x08, 0x5b, 0xce, 0xaa, 0x3d, 0x62, 0x3a, 0xbb, 0x7a, 0x16, 0x26, 0x89, 0x14, 0xc7, 0x6d, 0xd7, 0xad, 0x9d, 0x4a, 0x75, 0x17, 0x55, 0x9f, 0xa8, 0x74, 0xdc, 0xed, 0x8b, 0xe9, 0x3b, 0x83, 0xfd, 0x13, 0x0d, 0x37, 0x08, 0x4f, 0x01, 0xb3, 0x6c, 0xb9, 0xdb, 0x17, 0xf5, 0x0d, 0x18, 0xc6, 0xce, 0x68, 0xd6, 0x9f, 0x41, 0x95, 0x6d, 0xbb, 0x4d, 0x56, 0x96, 0xd1, 0x90, 0xcc, 0x0e, 0x58, 0x70, 0x7e, 0x8d, 0x01, 0x56, 0xed, 0x1a, 0xca, 0xf6, 0x6f, 0xac, 0x97, 0x4a, 0x45, 0x63, 0x88, 0x4b, 0xb9, 0x62, 0xb7, 0x71, 0x40, 0xed, 0xd8, 0x9e, 0x81, 0x87, 0x68, 0x40, 0xed, 0xd8, 0xdc, 0xbc, 0xe7, 0x60, 0xa2, 0x5a, 0xa5, 0x63, 0xae, 0x57, 0x2b, 0x6c, 0x8b, 0xe2, 0xa4, 0x35, 0xc1, 0x58, 0xd5, 0xea, 0x55, 0xca, 0xc0, 0x62, 0xdc, 0xd1, 0x2f, 0xc1, 0x11, 0xdf, 0x58, 0x41, 0xe0, 0x78, 0xd7, 0x28, 0x65, 0xe8, 0x39, 0x98, 0x68, 0xed, 0x75, 0x03, 0x75, 0xa1, 0xc7, 0xd6, 0x9e, 0x0c, 0xbb, 0x00, 0x87, 0x5b, 0xbb, 0xad, 0x6e, 0xdc, 0x44, 0x10, 0xa7, 0xb7, 0x76, 0x5b, 0x32, 0xf0, 0x1e, 0xb2, 0x5f, 0x6d, 0xa3, 0xaa, 0xe9, 0xa2, 0x5a, 0xfa, 0x68, 0x90, 0x3d, 0x40, 0xd0, 0x4f, 0x83, 0x56, 0xad, 0x56, 0x90, 0x65, 0xde, 0x68, 0xa0, 0x8a, 0xd9, 0x46, 0x96, 0xe9, 0xa4, 0x67, 0x82, 0xcc, 0xa3, 0xd5, 0x6a, 0x89, 0x50, 0x73, 0x84, 0xa8, 0xcf, 0xc1, 0xb8, 0x7d, 0xe3, 0xf1, 0x2a, 0x0d, 0xc9, 0x4a, 0xab, 0x8d, 0xb6, 0xeb, 0x4f, 0xa7, 0x4f, 0x12, 0xfb, 0x8e, 0x61, 0x02, 0x09, 0xc8, 0x75, 0xd2, 0xac, 0xdf, 0x07, 0x5a, 0xd5, 0xd9, 0x35, 0xdb, 0x2d, 0x52, 0x13, 0x38, 0x2d, 0xb3, 0x8a, 0xd2, 0xf7, 0x50, 0x56, 0xda, 0x5e, 0xe6, 0xcd, 0x38, 0x25, 0x9c, 0xa7, 0xea, 0xdb, 0x2e, 0x97, 0x78, 0x2f, 0x4d, 0x09, 0xd2, 0xc6, 0xa4, 0xcd, 0x82, 0x86, 0x4d, 0x21, 0x74, 0x3c, 0x4b, 0xd8, 0x46, 0x5b, 0xbb, 0xad, 0x60, 0xbf, 0x77, 0xc3, 0x08, 0xe6, 0xf4, 0x3b, 0xbd, 0x8f, 0xd6, 0x33, 0xad, 0xdd, 0x40, 0x8f, 0x6f, 0x59, 0x69, 0x99, 0xc9, 0xc2, 0x70, 0x30, 0x3e, 0xf5, 0x41, 0xa0, 0x11, 0xaa, 0x29, 0x78, 0xad, 0x2f, 0xac, 0x15, 0xf1, 0x2a, 0xfd, 0xde, 0x92, 0x96, 0xc0, 0xd5, 0xc2, 0xca, 0xf2, 0x66, 0xa9, 0x62, 0x6c, 0x95, 0x37, 0x97, 0x57, 0x4b, 0x9a, 0x1a, 0x2c, 0x4b, 0xbf, 0x95, 0x80, 0x51, 0x71, 0x87, 0xa1, 0xbf, 0x13, 0x8e, 0xf2, 0xe3, 0x00, 0x07, 0xb9, 0x95, 0xa7, 0xea, 0x6d, 0x92, 0x32, 0x4d, 0x93, 0x56, 0xd8, 0x9e, 0xd3, 0x0e, 0x33, 0xae, 0x0d, 0xe4, 0x3e, 0x5a, 0x6f, 0xe3, 0x84, 0x68, 0x9a, 0xae, 0xbe, 0x02, 0x33, 0x96, 0x5d, 0x71, 0x5c, 0xd3, 0xaa, 0x99, 0xed, 0x5a, 0xc5, 0x3f, 0x88, 0xa9, 0x98, 0xd5, 0x2a, 0x72, 0x1c, 0x9b, 0x2e, 0x55, 0x9e, 0x94, 0x63, 0x96, 0xbd, 0xc1, 0x98, 0xfd, 0x39, 0x3c, 0xc7, 0x58, 0xa5, 0x00, 0x53, 0x7b, 0x05, 0xd8, 0x9d, 0x30, 0xd8, 0x34, 0x5b, 0x15, 0x64, 0xb9, 0xed, 0x3d, 0x52, 0x57, 0xa6, 0x8c, 0x54, 0xd3, 0x6c, 0x95, 0xf0, 0xf7, 0xb7, 0xa7, 0xbc, 0xff, 0x27, 0x15, 0x86, 0x83, 0xb5, 0x25, 0x2e, 0xd5, 0xab, 0x64, 0x1d, 0x51, 0xc8, 0x4c, 0x73, 0xf7, 0xbe, 0x95, 0xe8, 0x7c, 0x01, 0x2f, 0x30, 0xd9, 0x01, 0x5a, 0xf1, 0x19, 0x14, 0x89, 0x17, 0x77, 0x3c, 0xb7, 0x20, 0xba, 0x8b, 0x49, 0x19, 0xec, 0x9b, 0x7e, 0x15, 0x06, 0x1e, 0x77, 0x88, 0xec, 0x01, 0x22, 0xfb, 0xe4, 0xfe, 0xb2, 0xaf, 0x6d, 0x10, 0xe1, 0x83, 0xd7, 0x36, 0x2a, 0xe5, 0x35, 0x63, 0x35, 0xb7, 0x62, 0x30, 0xb8, 0x7e, 0x07, 0x24, 0x1b, 0xe6, 0x33, 0x7b, 0xe2, 0x52, 0x44, 0x9a, 0xe2, 0x1a, 0xfe, 0x0e, 0x48, 0x3e, 0x85, 0xcc, 0x27, 0xc4, 0x05, 0x80, 0x34, 0xbd, 0x85, 0xa1, 0x7f, 0x1a, 0xfa, 0x89, 0xbd, 0x74, 0x00, 0x66, 0x31, 0xad, 0x4f, 0x4f, 0x41, 0xb2, 0xb0, 0x66, 0xe0, 0xf0, 0xd7, 0x60, 0x98, 0xb6, 0x56, 0xd6, 0x97, 0x4b, 0x85, 0x92, 0x96, 0xc8, 0x9c, 0x83, 0x01, 0x6a, 0x04, 0x9c, 0x1a, 0x9e, 0x19, 0xb4, 0x3e, 0xf6, 0x95, 0xc9, 0x50, 0x38, 0x75, 0x6b, 0x35, 0x5f, 0x32, 0xb4, 0x44, 0xd0, 0xbd, 0x0e, 0x0c, 0x07, 0xcb, 0xca, 0xb7, 0x27, 0xa6, 0xbe, 0xa1, 0xc0, 0x50, 0xa0, 0x4c, 0xc4, 0x05, 0x8a, 0xd9, 0x68, 0xd8, 0x4f, 0x55, 0xcc, 0x46, 0xdd, 0x74, 0x58, 0x50, 0x00, 0x69, 0xca, 0xe1, 0x96, 0xb8, 0x4e, 0x7b, 0x5b, 0x94, 0x7f, 0x4e, 0x01, 0x4d, 0x2e, 0x31, 0x25, 0x05, 0x95, 0x9f, 0xa9, 0x82, 0x9f, 0x50, 0x60, 0x54, 0xac, 0x2b, 0x25, 0xf5, 0x4e, 0xfc, 0x4c, 0xd5, 0xfb, 0x6e, 0x02, 0x46, 0x84, 0x6a, 0x32, 0xae, 0x76, 0xef, 0x83, 0xf1, 0x7a, 0x0d, 0x35, 0x5b, 0xb6, 0x8b, 0xac, 0xea, 0x5e, 0xa5, 0x81, 0x9e, 0x44, 0x8d, 0x74, 0x86, 0x4c, 0x14, 0xa7, 0xf7, 0xaf, 0x57, 0xe7, 0x97, 0x7d, 0xdc, 0x0a, 0x86, 0x65, 0x27, 0x96, 0x8b, 0xa5, 0xd5, 0xf5, 0xb5, 0xcd, 0x52, 0xb9, 0x70, 0xbd, 0xb2, 0x55, 0x7e, 0x57, 0x79, 0xed, 0xd1, 0xb2, 0xa1, 0xd5, 0x25, 0xb6, 0xb7, 0x30, 0xd5, 0xd7, 0x41, 0x93, 0x95, 0xd2, 0x8f, 0x42, 0x98, 0x5a, 0x5a, 0x9f, 0x3e, 0x01, 0x63, 0xe5, 0xb5, 0xca, 0xc6, 0x72, 0xb1, 0x54, 0x29, 0x5d, 0xb9, 0x52, 0x2a, 0x6c, 0x6e, 0xd0, 0x0d, 0xbc, 0xc7, 0xbd, 0x29, 0x26, 0xf5, 0xc7, 0x55, 0x98, 0x08, 0xd1, 0x44, 0xcf, 0xb1, 0xbd, 0x03, 0xdd, 0xce, 0x3c, 0x10, 0x47, 0xfb, 0x79, 0xbc, 0xe4, 0xaf, 0x9b, 0x6d, 0x97, 0x6d, 0x35, 0xee, 0x03, 0x6c, 0x25, 0xcb, 0xad, 0x6f, 0xd7, 0x51, 0x9b, 0x9d, 0x77, 0xd0, 0x0d, 0xc5, 0x98, 0xdf, 0x4e, 0x8f, 0x3c, 0xee, 0x07, 0xbd, 0x65, 0x3b, 0x75, 0xb7, 0xfe, 0x24, 0xaa, 0xd4, 0x2d, 0x7e, 0x38, 0x82, 0x37, 0x18, 0x49, 0x43, 0xe3, 0x94, 0x65, 0xcb, 0xf5, 0xb8, 0x2d, 0xb4, 0x63, 0x4a, 0xdc, 0x78, 0x02, 0x57, 0x0d, 0x8d, 0x53, 0x3c, 0xee, 0x13, 0x30, 0x5c, 0xb3, 0x3b, 0xb8, 0xea, 0xa2, 0x7c, 0x78, 0xbd, 0x50, 0x8c, 0x21, 0xda, 0xe6, 0xb1, 0xb0, 0x7a, 0xda, 0x3f, 0x95, 0x19, 0x36, 0x86, 0x68, 0x1b, 0x65, 0xb9, 0x17, 0xc6, 0xcc, 0x9d, 0x9d, 0x36, 0x16, 0xce, 0x05, 0xd1, 0x1d, 0xc2, 0xa8, 0xd7, 0x4c, 0x18, 0xa7, 0xae, 0x41, 0x8a, 0xdb, 0x01, 0x2f, 0xc9, 0xd8, 0x12, 0x95, 0x16, 0x3d, 0x99, 0x4b, 0xcc, 0x0e, 0x1a, 0x29, 0x8b, 0x13, 0x4f, 0xc0, 0x70, 0xdd, 0xa9, 0xf8, 0x87, 0xcc, 0x89, 0xe3, 0x89, 0xd9, 0x94, 0x31, 0x54, 0x77, 0xbc, 0x03, 0xba, 0xcc, 0xe7, 0x12, 0x30, 0x2a, 0x1e, 0x92, 0xeb, 0x45, 0x48, 0x35, 0xec, 0xaa, 0x49, 0x42, 0x8b, 0xde, 0xd0, 0xcc, 0x46, 0x9c, 0xab, 0xcf, 0xaf, 0x30, 0x7e, 0xc3, 0x43, 0x4e, 0xfd, 0xbd, 0x02, 0x29, 0xde, 0xac, 0x4f, 0x42, 0xb2, 0x65, 0xba, 0xbb, 0x44, 0x5c, 0x7f, 0x3e, 0xa1, 0x29, 0x06, 0xf9, 0x8e, 0xdb, 0x9d, 0x96, 0x69, 0x91, 0x10, 0x60, 0xed, 0xf8, 0x3b, 0xf6, 0x6b, 0x03, 0x99, 0x35, 0xb2, 0xfd, 0xb0, 0x9b, 0x4d, 0x64, 0xb9, 0x0e, 0xf7, 0x2b, 0x6b, 0x2f, 0xb0, 0x66, 0xfd, 0x1d, 0x30, 0xee, 0xb6, 0xcd, 0x7a, 0x43, 0xe0, 0x4d, 0x12, 0x5e, 0x8d, 0x13, 0x3c, 0xe6, 0x2c, 0xdc, 0xc1, 0xe5, 0xd6, 0x90, 0x6b, 0x56, 0x77, 0x51, 0xcd, 0x07, 0x0d, 0x90, 0x13, 0xd8, 0xa3, 0x8c, 0xa1, 0xc8, 0xe8, 0x1c, 0x9b, 0xf9, 0xb6, 0x02, 0xe3, 0x7c, 0xc3, 0x54, 0xf3, 0x8c, 0xb5, 0x0a, 0x60, 0x5a, 0x96, 0xed, 0x06, 0xcd, 0xd5, 0x1d, 0xca, 0x5d, 0xb8, 0xf9, 0x9c, 0x07, 0x32, 0x02, 0x02, 0xa6, 0x9a, 0x00, 0x3e, 0xa5, 0xa7, 0xd9, 0x66, 0x60, 0x88, 0xdd, 0x80, 0x90, 0x6b, 0x34, 0xba, 0xc5, 0x06, 0xda, 0x84, 0x77, 0x56, 0xfa, 0x61, 0xe8, 0xbf, 0x81, 0x76, 0xea, 0x16, 0x3b, 0xd7, 0xa4, 0x5f, 0xf8, 0x59, 0x6d, 0xd2, 0x3b, 0xab, 0xcd, 0x3f, 0x06, 0x13, 0x55, 0xbb, 0x29, 0xab, 0x9b, 0xd7, 0xa4, 0x6d, 0xbe, 0xf3, 0x88, 0xf2, 0x5e, 0xf0, 0x4b, 0xcc, 0xcf, 0x24, 0xd4, 0xab, 0xeb, 0xf9, 0x2f, 0x24, 0xa6, 0xae, 0x52, 0xdc, 0x3a, 0x1f, 0xa6, 0x81, 0xb6, 0x1b, 0xa8, 0x8a, 0x55, 0x87, 0x1f, 0x9f, 0x82, 0x07, 0x76, 0xea, 0xee, 0x6e, 0xe7, 0xc6, 0x7c, 0xd5, 0x6e, 0x9e, 0xde, 0xb1, 0x77, 0x6c, 0xff, 0xda, 0x10, 0x7f, 0x23, 0x5f, 0xc8, 0x27, 0x76, 0x75, 0x38, 0xe8, 0xb5, 0x4e, 0x45, 0xde, 0x33, 0x66, 0xcb, 0x30, 0xc1, 0x98, 0x2b, 0xe4, 0xee, 0x82, 0x6e, 0x21, 0xf4, 0x7d, 0xcf, 0x7f, 0xd2, 0x5f, 0xfe, 0x3e, 0x59, 0xab, 0x8d, 0x71, 0x06, 0xc5, 0x34, 0xba, 0xcb, 0xc8, 0x1a, 0x70, 0x44, 0x90, 0x47, 0xf3, 0x12, 0xb5, 0x23, 0x24, 0x7e, 0x8b, 0x49, 0x9c, 0x08, 0x48, 0xdc, 0x60, 0xd0, 0x6c, 0x01, 0x46, 0x0e, 0x22, 0xeb, 0x6f, 0x98, 0xac, 0x61, 0x14, 0x14, 0x72, 0x15, 0xc6, 0x88, 0x90, 0x6a, 0xc7, 0x71, 0xed, 0x26, 0x99, 0xf4, 0xf6, 0x17, 0xf3, 0xb7, 0xdf, 0xa7, 0x89, 0x32, 0x8a, 0x61, 0x05, 0x0f, 0x95, 0xcd, 0x02, 0xb9, 0xae, 0xa9, 0xa1, 0x6a, 0x23, 0x42, 0xc2, 0x4d, 0xa6, 0x88, 0xc7, 0x9f, 0x7d, 0x0f, 0x1c, 0xc6, 0x9f, 0xc9, 0x9c, 0x14, 0xd4, 0x24, 0xfa, 0xb4, 0x2b, 0xfd, 0xed, 0x0f, 0xd0, 0x5c, 0x9c, 0xf0, 0x04, 0x04, 0x74, 0x0a, 0x78, 0x71, 0x07, 0xb9, 0x2e, 0x6a, 0x3b, 0x15, 0xb3, 0x11, 0xa6, 0x5e, 0xe0, 0xb8, 0x20, 0xfd, 0xb1, 0x57, 0x45, 0x2f, 0x5e, 0xa5, 0xc8, 0x5c, 0xa3, 0x91, 0xdd, 0x82, 0xa3, 0x21, 0x51, 0x11, 0x43, 0xe6, 0xc7, 0x99, 0xcc, 0xc3, 0x5d, 0x91, 0x81, 0xc5, 0xae, 0x03, 0x6f, 0xf7, 0x7c, 0x19, 0x43, 0xe6, 0xef, 0x31, 0x99, 0x3a, 0xc3, 0x72, 0x97, 0x62, 0x89, 0xd7, 0x60, 0xfc, 0x49, 0xd4, 0xbe, 0x61, 0x3b, 0xec, 0x88, 0x26, 0x86, 0xb8, 0x4f, 0x30, 0x71, 0x63, 0x0c, 0x48, 0xce, 0x6c, 0xb0, 0xac, 0x4b, 0x90, 0xda, 0x36, 0xab, 0x28, 0x86, 0x88, 0x4f, 0x32, 0x11, 0x87, 0x30, 0x3f, 0x86, 0xe6, 0x60, 0x78, 0xc7, 0x66, 0xcb, 0x52, 0x34, 0xfc, 0x39, 0x06, 0x1f, 0xe2, 0x18, 0x26, 0xa2, 0x65, 0xb7, 0x3a, 0x0d, 0xbc, 0x66, 0x45, 0x8b, 0xf8, 0x14, 0x17, 0xc1, 0x31, 0x4c, 0xc4, 0x01, 0xcc, 0xfa, 0x3c, 0x17, 0xe1, 0x04, 0xec, 0xf9, 0x30, 0x0c, 0xd9, 0x56, 0x63, 0xcf, 0xb6, 0xe2, 0x28, 0xf1, 0x69, 0x26, 0x01, 0x18, 0x04, 0x0b, 0xb8, 0x0c, 0x83, 0x71, 0x1d, 0xf1, 0xd9, 0x57, 0x79, 0x7a, 0x70, 0x0f, 0x5c, 0x85, 0x31, 0x3e, 0x41, 0xd5, 0x6d, 0x2b, 0x86, 0x88, 0x3f, 0x60, 0x22, 0x46, 0x03, 0x30, 0x36, 0x0c, 0x17, 0x39, 0xee, 0x0e, 0x8a, 0x23, 0xe4, 0x73, 0x7c, 0x18, 0x0c, 0xc2, 0x4c, 0x79, 0x03, 0x59, 0xd5, 0xdd, 0x78, 0x12, 0x5e, 0xe0, 0xa6, 0xe4, 0x18, 0x2c, 0xa2, 0x00, 0x23, 0x4d, 0xb3, 0xed, 0xec, 0x9a, 0x8d, 0x58, 0xee, 0xf8, 0x3c, 0x93, 0x31, 0xec, 0x81, 0x98, 0x45, 0x3a, 0xd6, 0x41, 0xc4, 0x7c, 0x81, 0x5b, 0x24, 0x00, 0x63, 0xa9, 0xe7, 0xb8, 0xe4, 0x3c, 0xeb, 0x20, 0xd2, 0xbe, 0xc8, 0x53, 0x8f, 0x62, 0x57, 0x83, 0x12, 0x2f, 0xc3, 0xa0, 0x53, 0x7f, 0x26, 0x96, 0x98, 0x3f, 0xe4, 0x9e, 0x26, 0x00, 0x0c, 0xbe, 0x0e, 0x77, 0x84, 0x2e, 0x13, 0x31, 0x84, 0xfd, 0x11, 0x13, 0x36, 0x19, 0xb2, 0x54, 0xb0, 0x29, 0xe1, 0xa0, 0x22, 0xff, 0x98, 0x4f, 0x09, 0x48, 0x92, 0xb5, 0x8e, 0x37, 0x0a, 0x8e, 0xb9, 0x7d, 0x30, 0xab, 0xfd, 0x09, 0xb7, 0x1a, 0xc5, 0x0a, 0x56, 0xdb, 0x84, 0x49, 0x26, 0xf1, 0x60, 0x7e, 0xfd, 0x12, 0x9f, 0x58, 0x29, 0x7a, 0x4b, 0xf4, 0xee, 0xff, 0x86, 0x29, 0xcf, 0x9c, 0xbc, 0x22, 0x75, 0x2a, 0x4d, 0xb3, 0x15, 0x43, 0xf2, 0x97, 0x99, 0x64, 0x3e, 0xe3, 0x7b, 0x25, 0xad, 0xb3, 0x6a, 0xb6, 0xb0, 0xf0, 0xc7, 0x20, 0xcd, 0x85, 0x77, 0xac, 0x36, 0xaa, 0xda, 0x3b, 0x56, 0xfd, 0x19, 0x54, 0x8b, 0x21, 0xfa, 0x4f, 0x25, 0x57, 0x6d, 0x05, 0xe0, 0x58, 0xf2, 0x32, 0x68, 0x5e, 0xad, 0x52, 0xa9, 0x37, 0x5b, 0x76, 0xdb, 0x8d, 0x90, 0xf8, 0x15, 0xee, 0x29, 0x0f, 0xb7, 0x4c, 0x60, 0xd9, 0x12, 0x8c, 0x92, 0xaf, 0x71, 0x43, 0xf2, 0xab, 0x4c, 0xd0, 0x88, 0x8f, 0x62, 0x13, 0x47, 0xd5, 0x6e, 0xb6, 0xcc, 0x76, 0x9c, 0xf9, 0xef, 0xcf, 0xf8, 0xc4, 0xc1, 0x20, 0x6c, 0xe2, 0x70, 0xf7, 0x5a, 0x08, 0xaf, 0xf6, 0x31, 0x24, 0x7c, 0x8d, 0x4f, 0x1c, 0x1c, 0xc3, 0x44, 0xf0, 0x82, 0x21, 0x86, 0x88, 0x3f, 0xe7, 0x22, 0x38, 0x06, 0x8b, 0x78, 0xb7, 0xbf, 0xd0, 0xb6, 0xd1, 0x4e, 0xdd, 0x71, 0xdb, 0xb4, 0x0e, 0xde, 0x5f, 0xd4, 0xd7, 0x5f, 0x15, 0x8b, 0x30, 0x23, 0x00, 0xcd, 0x5e, 0x83, 0x31, 0xa9, 0xc4, 0xd0, 0xa3, 0xde, 0x7e, 0xa4, 0xff, 0xff, 0x6b, 0x6c, 0x32, 0x12, 0x2b, 0x8c, 0xec, 0x0a, 0xf6, 0xbb, 0x58, 0x07, 0x44, 0x0b, 0xfb, 0xc0, 0x6b, 0x9e, 0xeb, 0x85, 0x32, 0x20, 0x7b, 0x05, 0x46, 0x84, 0x1a, 0x20, 0x5a, 0xd4, 0x2f, 0x30, 0x51, 0xc3, 0xc1, 0x12, 0x20, 0x7b, 0x0e, 0x92, 0x78, 0x3d, 0x8f, 0x86, 0xff, 0x22, 0x83, 0x13, 0xf6, 0xec, 0x83, 0x90, 0xe2, 0xeb, 0x78, 0x34, 0xf4, 0x83, 0x0c, 0xea, 0x41, 0x30, 0x9c, 0xaf, 0xe1, 0xd1, 0xf0, 0x5f, 0xe2, 0x70, 0x0e, 0xc1, 0xf0, 0xf8, 0x26, 0x7c, 0xf1, 0x57, 0x92, 0x6c, 0x1e, 0xe6, 0xb6, 0xbb, 0x0c, 0x87, 0xd8, 0xe2, 0x1d, 0x8d, 0xfe, 0x30, 0xeb, 0x9c, 0x23, 0xb2, 0x17, 0xa0, 0x3f, 0xa6, 0xc1, 0x7f, 0x95, 0x41, 0x29, 0x7f, 0xb6, 0x00, 0x43, 0x81, 0x05, 0x3b, 0x1a, 0xfe, 0x6b, 0x0c, 0x1e, 0x44, 0x61, 0xd5, 0xd9, 0x82, 0x1d, 0x2d, 0xe0, 0xd7, 0xb9, 0xea, 0x0c, 0x81, 0xcd, 0xc6, 0xd7, 0xea, 0x68, 0xf4, 0x6f, 0x70, 0xab, 0x73, 0x48, 0xf6, 0x61, 0x18, 0xf4, 0xe6, 0xdf, 0x68, 0xfc, 0x6f, 0x32, 0xbc, 0x8f, 0xc1, 0x16, 0x08, 0xcc, 0xff, 0xd1, 0x22, 0x7e, 0x8b, 0x5b, 0x20, 0x80, 0xc2, 0x69, 0x24, 0xaf, 0xe9, 0xd1, 0x92, 0x3e, 0xc2, 0xd3, 0x48, 0x5a, 0xd2, 0xb1, 0x37, 0xc9, 0x34, 0x18, 0x2d, 0xe2, 0xb7, 0xb9, 0x37, 0x09, 0x3f, 0x56, 0x43, 0x5e, 0x24, 0xa3, 0x65, 0xfc, 0x2e, 0x57, 0x43, 0x5a, 0x23, 0xb3, 0xeb, 0xa0, 0x77, 0x2f, 0x90, 0xd1, 0xf2, 0x3e, 0xca, 0xe4, 0x8d, 0x77, 0xad, 0x8f, 0xd9, 0x47, 0x61, 0x32, 0x7c, 0x71, 0x8c, 0x96, 0xfa, 0xb1, 0xd7, 0xa4, 0xed, 0x4c, 0x70, 0x6d, 0xcc, 0x6e, 0xfa, 0xb3, 0x6c, 0x70, 0x61, 0x8c, 0x16, 0xfb, 0xf1, 0xd7, 0xc4, 0x89, 0x36, 0xb8, 0x2e, 0x66, 0x73, 0x00, 0xfe, 0x9a, 0x14, 0x2d, 0xeb, 0x13, 0x4c, 0x56, 0x00, 0x84, 0x53, 0x83, 0x2d, 0x49, 0xd1, 0xf8, 0x4f, 0xf2, 0xd4, 0x60, 0x08, 0x9c, 0x1a, 0x7c, 0x35, 0x8a, 0x46, 0x3f, 0xc7, 0x53, 0x83, 0x43, 0xb2, 0x97, 0x21, 0x65, 0x75, 0x1a, 0x0d, 0x1c, 0x5b, 0xfa, 0xfe, 0xcf, 0x99, 0xd2, 0xff, 0xf2, 0x3a, 0x03, 0x73, 0x40, 0xf6, 0x1c, 0xf4, 0xa3, 0xe6, 0x0d, 0x54, 0x8b, 0x42, 0xfe, 0xeb, 0xeb, 0x7c, 0x3e, 0xc1, 0xdc, 0xd9, 0x87, 0x01, 0xe8, 0x66, 0x9a, 0xdc, 0x12, 0x45, 0x60, 0xff, 0xed, 0x75, 0xf6, 0x52, 0xc2, 0x87, 0xf8, 0x02, 0xe8, 0xbb, 0x8b, 0xfd, 0x05, 0xbc, 0x2a, 0x0a, 0x20, 0x1b, 0xf0, 0x4b, 0x70, 0xe8, 0x71, 0xc7, 0xb6, 0x5c, 0x73, 0x27, 0x0a, 0xfd, 0xef, 0x0c, 0xcd, 0xf9, 0xb1, 0xc1, 0x9a, 0x76, 0x1b, 0xb9, 0xe6, 0x8e, 0x13, 0x85, 0xfd, 0x0f, 0x86, 0xf5, 0x00, 0x18, 0x5c, 0x35, 0x1d, 0x37, 0xce, 0xb8, 0xff, 0x93, 0x83, 0x39, 0x00, 0x2b, 0x8d, 0x3f, 0x3f, 0x81, 0xf6, 0xa2, 0xb0, 0x3f, 0xe4, 0x4a, 0x33, 0xfe, 0xec, 0x83, 0x30, 0x88, 0x3f, 0xd2, 0xd7, 0x43, 0x11, 0xe0, 0xff, 0x62, 0x60, 0x1f, 0x81, 0x7b, 0x76, 0xdc, 0x9a, 0x5b, 0x8f, 0x36, 0xf6, 0x8f, 0x98, 0xa7, 0x39, 0x7f, 0x36, 0x07, 0x43, 0x8e, 0x5b, 0xab, 0x75, 0x58, 0x45, 0x13, 0x01, 0xff, 0xf1, 0xeb, 0xde, 0x26, 0xd7, 0xc3, 0xe4, 0x4f, 0x84, 0x1f, 0xd6, 0xc1, 0x55, 0xfb, 0xaa, 0x4d, 0x8f, 0xe9, 0xe0, 0x2f, 0x1b, 0x30, 0xe2, 0xee, 0x22, 0xbc, 0x5c, 0xb0, 0x53, 0xb5, 0x24, 0xfe, 0x3c, 0x75, 0xb0, 0xa3, 0x38, 0x72, 0xcb, 0x5a, 0xae, 0x63, 0x6d, 0xca, 0xe4, 0xa0, 0x5b, 0x3f, 0x06, 0x03, 0x44, 0xbf, 0x33, 0xe4, 0x32, 0x49, 0xc9, 0x27, 0x6f, 0xbe, 0x3c, 0xd3, 0x67, 0xb0, 0x36, 0x8f, 0xba, 0x48, 0x4e, 0x22, 0x13, 0x02, 0x75, 0xd1, 0xa3, 0x9e, 0xa5, 0x87, 0x91, 0x02, 0xf5, 0xac, 0x47, 0x5d, 0x22, 0xc7, 0x92, 0xaa, 0x40, 0x5d, 0xf2, 0xa8, 0xe7, 0xc8, 0xd1, 0xfb, 0x88, 0x40, 0x3d, 0xe7, 0x51, 0xcf, 0x93, 0x03, 0xf7, 0xa4, 0x40, 0x3d, 0xef, 0x51, 0x2f, 0x90, 0xb3, 0xf6, 0x71, 0x81, 0x7a, 0xc1, 0xa3, 0x5e, 0x24, 0x67, 0xec, 0xba, 0x40, 0xbd, 0xe8, 0x51, 0x2f, 0x91, 0x07, 0x2c, 0x87, 0x04, 0xea, 0x25, 0x7d, 0x1a, 0x0e, 0xd1, 0x91, 0x2f, 0x90, 0x0b, 0xd9, 0x31, 0x46, 0xe6, 0x8d, 0x3e, 0xfd, 0x0c, 0x79, 0xac, 0x32, 0x20, 0xd2, 0xcf, 0xf8, 0xf4, 0x45, 0xf2, 0xec, 0x5c, 0x13, 0xe9, 0x8b, 0x3e, 0xfd, 0x6c, 0x7a, 0x84, 0x3c, 0xd8, 0x11, 0xe8, 0x67, 0x7d, 0xfa, 0x52, 0x7a, 0x14, 0x87, 0xa8, 0x48, 0x5f, 0xf2, 0xe9, 0xe7, 0xd2, 0x63, 0xc7, 0x95, 0xd9, 0x61, 0x91, 0x7e, 0x2e, 0xf3, 0x7e, 0xe2, 0x5e, 0xcb, 0x77, 0xef, 0xa4, 0xe8, 0x5e, 0xcf, 0xb1, 0x93, 0xa2, 0x63, 0x3d, 0x97, 0x4e, 0x8a, 0x2e, 0xf5, 0x9c, 0x39, 0x29, 0x3a, 0xd3, 0x73, 0xe3, 0xa4, 0xe8, 0x46, 0xcf, 0x81, 0x93, 0xa2, 0x03, 0x3d, 0xd7, 0x4d, 0x8a, 0xae, 0xf3, 0x9c, 0x36, 0x29, 0x3a, 0xcd, 0x73, 0xd7, 0xa4, 0xe8, 0x2e, 0xcf, 0x51, 0x69, 0xc9, 0x51, 0xbe, 0x8b, 0xd2, 0x92, 0x8b, 0x7c, 0xe7, 0xa4, 0x25, 0xe7, 0xf8, 0x6e, 0x49, 0x4b, 0x6e, 0xf1, 0x1d, 0x92, 0x96, 0x1c, 0xe2, 0xbb, 0x22, 0x2d, 0xb9, 0xc2, 0x77, 0x02, 0xcb, 0x31, 0x03, 0xb5, 0x42, 0x72, 0x4c, 0xdd, 0x37, 0xc7, 0xd4, 0x7d, 0x73, 0x4c, 0xdd, 0x37, 0xc7, 0xd4, 0x7d, 0x73, 0x4c, 0xdd, 0x37, 0xc7, 0xd4, 0x7d, 0x73, 0x4c, 0xdd, 0x37, 0xc7, 0xd4, 0x7d, 0x73, 0x4c, 0xdd, 0x3f, 0xc7, 0xd4, 0x88, 0x1c, 0x53, 0x23, 0x72, 0x4c, 0x8d, 0xc8, 0x31, 0x35, 0x22, 0xc7, 0xd4, 0x88, 0x1c, 0x53, 0x7b, 0xe6, 0x98, 0xef, 0xde, 0x49, 0xd1, 0xbd, 0xa1, 0x39, 0xa6, 0xf6, 0xc8, 0x31, 0xb5, 0x47, 0x8e, 0xa9, 0x3d, 0x72, 0x4c, 0xed, 0x91, 0x63, 0x6a, 0x8f, 0x1c, 0x53, 0x7b, 0xe4, 0x98, 0xda, 0x23, 0xc7, 0xd4, 0x5e, 0x39, 0xa6, 0xf6, 0xcc, 0x31, 0xb5, 0x67, 0x8e, 0xa9, 0x3d, 0x73, 0x4c, 0xed, 0x99, 0x63, 0x6a, 0xcf, 0x1c, 0x53, 0x83, 0x39, 0xf6, 0x57, 0x2a, 0xe8, 0x34, 0xc7, 0xd6, 0xc9, 0x93, 0x1e, 0xe6, 0x8a, 0x69, 0x29, 0xd3, 0x06, 0xb0, 0xeb, 0x34, 0xdf, 0x25, 0xd3, 0x52, 0xae, 0x89, 0xf4, 0x45, 0x8f, 0xce, 0xb3, 0x4d, 0xa4, 0x9f, 0xf5, 0xe8, 0x3c, 0xdf, 0x44, 0xfa, 0x92, 0x47, 0xe7, 0x19, 0x27, 0xd2, 0xcf, 0x79, 0x74, 0x9e, 0x73, 0x22, 0xfd, 0xbc, 0x47, 0xe7, 0x59, 0x27, 0xd2, 0x2f, 0x78, 0x74, 0x9e, 0x77, 0x22, 0xfd, 0xa2, 0x47, 0xe7, 0x99, 0x27, 0xd2, 0x2f, 0xe9, 0xc7, 0xe5, 0xdc, 0xe3, 0x0c, 0x9e, 0x6b, 0x8f, 0xcb, 0xd9, 0x27, 0x71, 0x9c, 0xf1, 0x39, 0x78, 0xfe, 0x49, 0x1c, 0x8b, 0x3e, 0x07, 0xcf, 0x40, 0x89, 0xe3, 0x6c, 0xe6, 0x43, 0xc4, 0x7d, 0x96, 0xec, 0xbe, 0x29, 0xc9, 0x7d, 0x89, 0x80, 0xeb, 0xa6, 0x24, 0xd7, 0x25, 0x02, 0x6e, 0x9b, 0x92, 0xdc, 0x96, 0x08, 0xb8, 0x6c, 0x4a, 0x72, 0x59, 0x22, 0xe0, 0xae, 0x29, 0xc9, 0x5d, 0x89, 0x80, 0xab, 0xa6, 0x24, 0x57, 0x25, 0x02, 0x6e, 0x9a, 0x92, 0xdc, 0x94, 0x08, 0xb8, 0x68, 0x4a, 0x72, 0x51, 0x22, 0xe0, 0x9e, 0x29, 0xc9, 0x3d, 0x89, 0x80, 0x6b, 0x8e, 0xc9, 0xae, 0x49, 0x04, 0xdd, 0x72, 0x4c, 0x76, 0x4b, 0x22, 0xe8, 0x92, 0x63, 0xb2, 0x4b, 0x12, 0x41, 0x77, 0x1c, 0x93, 0xdd, 0x91, 0x08, 0xba, 0xe2, 0xa7, 0x09, 0x5e, 0x11, 0x6e, 0xb8, 0xed, 0x4e, 0xd5, 0xbd, 0xad, 0x8a, 0x70, 0x41, 0x28, 0x1f, 0x86, 0x16, 0xf5, 0x79, 0x52, 0xb0, 0x06, 0x2b, 0x4e, 0x69, 0x05, 0x5b, 0x10, 0x0a, 0x8b, 0x00, 0xc2, 0x0a, 0x47, 0x2c, 0xdd, 0x56, 0x6d, 0xb8, 0x20, 0x94, 0x19, 0xd1, 0xfa, 0x5d, 0x7c, 0xcb, 0x2b, 0xb6, 0x17, 0x13, 0xbc, 0x62, 0x63, 0xe6, 0x3f, 0x68, 0xc5, 0x36, 0x17, 0x6d, 0x72, 0xcf, 0xd8, 0x73, 0xd1, 0xc6, 0xee, 0x5a, 0x75, 0xe2, 0x56, 0x70, 0x73, 0xd1, 0xa6, 0xf5, 0x8c, 0xfa, 0xe6, 0xd6, 0x5b, 0x2c, 0x82, 0x0d, 0xd4, 0x0a, 0x89, 0xe0, 0x83, 0xd6, 0x5b, 0x0b, 0xc2, 0x54, 0x72, 0xd0, 0x08, 0x56, 0x0f, 0x1c, 0xc1, 0x07, 0xad, 0xbc, 0x16, 0x84, 0xe9, 0xe5, 0xc0, 0x11, 0xfc, 0x16, 0xd4, 0x43, 0x2c, 0x82, 0x7d, 0xf3, 0x1f, 0xb4, 0x1e, 0x9a, 0x8b, 0x36, 0x79, 0x68, 0x04, 0xab, 0x07, 0x88, 0xe0, 0x38, 0xf5, 0xd1, 0x5c, 0xb4, 0x69, 0xc3, 0x23, 0xf8, 0xb6, 0xab, 0x99, 0x4f, 0x29, 0x30, 0x5e, 0xae, 0xd7, 0x4a, 0xcd, 0x1b, 0xa8, 0x56, 0x43, 0x35, 0x66, 0xc7, 0x05, 0x61, 0x26, 0xe8, 0xe1, 0xea, 0x97, 0x5e, 0x9e, 0xf1, 0x2d, 0x7c, 0x0e, 0x52, 0xd4, 0xa6, 0x0b, 0x0b, 0xe9, 0x9b, 0x4a, 0xc4, 0x0c, 0xe7, 0xb1, 0xea, 0x27, 0x38, 0xec, 0xcc, 0x42, 0xfa, 0x1f, 0x94, 0xc0, 0x2c, 0xe7, 0x35, 0x67, 0x3e, 0x42, 0x34, 0xb4, 0x6e, 0x5b, 0xc3, 0xd3, 0xb1, 0x34, 0x0c, 0xe8, 0x76, 0x67, 0x97, 0x6e, 0x01, 0xad, 0x3a, 0x30, 0x56, 0xae, 0xd7, 0xca, 0xe4, 0x0f, 0x9e, 0xe3, 0xa8, 0x44, 0x79, 0xa4, 0xf9, 0x60, 0x41, 0x08, 0xcb, 0x20, 0xc2, 0x0b, 0x69, 0x71, 0x8e, 0xc8, 0xd4, 0x71, 0xb7, 0x96, 0xd0, 0xed, 0x5c, 0xaf, 0x6e, 0xfd, 0x99, 0xdd, 0xeb, 0x70, 0xae, 0x57, 0x87, 0x7e, 0x0e, 0x79, 0x5d, 0x3d, 0xcd, 0x17, 0x67, 0xfa, 0xb6, 0x46, 0x3f, 0x06, 0x89, 0x65, 0xfa, 0xee, 0x77, 0x38, 0x3f, 0x8c, 0x95, 0xfa, 0xce, 0xcb, 0x33, 0xc9, 0xad, 0x4e, 0xbd, 0x66, 0x24, 0x96, 0x6b, 0xfa, 0x35, 0xe8, 0x7f, 0x0f, 0xfb, 0xb3, 0x3b, 0xcc, 0xb0, 0xc4, 0x18, 0xee, 0xef, 0x79, 0x46, 0x84, 0x3b, 0x3e, 0x4d, 0x4f, 0x0d, 0xe7, 0xb7, 0xea, 0x96, 0x7b, 0x66, 0xf1, 0xa2, 0x41, 0x45, 0x64, 0xfe, 0x0f, 0x00, 0xed, 0xb3, 0x68, 0x3a, 0xbb, 0x7a, 0x99, 0x4b, 0xa6, 0x5d, 0x5f, 0xfc, 0xce, 0xcb, 0x33, 0x4b, 0x71, 0xa4, 0x3e, 0x50, 0x33, 0x9d, 0xdd, 0x07, 0xdc, 0xbd, 0x16, 0x9a, 0xcf, 0xef, 0xb9, 0xc8, 0xe1, 0xd2, 0x5b, 0x7c, 0xd5, 0x63, 0xe3, 0x4a, 0x07, 0xc6, 0x95, 0x12, 0xc6, 0x74, 0x45, 0x1c, 0xd3, 0xc2, 0x1b, 0x1d, 0xcf, 0xd3, 0x7c, 0x91, 0x90, 0x2c, 0xa9, 0x46, 0x59, 0x52, 0xbd, 0x5d, 0x4b, 0xb6, 0xf8, 0xfc, 0x28, 0x8d, 0x55, 0xdd, 0x6f, 0xac, 0xea, 0xed, 0x8c, 0xf5, 0xbf, 0x69, 0xb6, 0x7a, 0xf9, 0xb4, 0x65, 0xd1, 0x37, 0x87, 0x3f, 0x5f, 0x67, 0x41, 0x6f, 0x6a, 0x15, 0x90, 0x4d, 0xde, 0x7c, 0x7e, 0x46, 0xc9, 0x7c, 0x2a, 0xc1, 0x47, 0x4e, 0x13, 0xe9, 0x8d, 0x8d, 0xfc, 0xe7, 0xa5, 0xa6, 0x7a, 0x2b, 0x2c, 0xf4, 0x9c, 0x02, 0x93, 0x5d, 0x33, 0x39, 0x35, 0xd3, 0x9b, 0x3b, 0x9d, 0x5b, 0x07, 0x9d, 0xce, 0x99, 0x82, 0x5f, 0x55, 0xe0, 0xb0, 0x34, 0xbd, 0x52, 0xf5, 0x4e, 0x4b, 0xea, 0x1d, 0xed, 0xee, 0x89, 0x30, 0x06, 0xb4, 0x0b, 0xba, 0x57, 0x02, 0x04, 0x24, 0x7b, 0x7e, 0x5f, 0x92, 0xfc, 0x7e, 0xcc, 0x03, 0x84, 0x98, 0x8b, 0x47, 0x00, 0x53, 0xdb, 0x86, 0xe4, 0x66, 0x1b, 0x21, 0x7d, 0x1a, 0x12, 0x6b, 0x6d, 0xa6, 0xe1, 0x28, 0xc5, 0xaf, 0xb5, 0xf3, 0x6d, 0xd3, 0xaa, 0xee, 0x1a, 0x89, 0xb5, 0xb6, 0x7e, 0x02, 0xd4, 0x1c, 0xfb, 0x59, 0x85, 0xa1, 0xc5, 0x31, 0xca, 0x90, 0xb3, 0x6a, 0x8c, 0x03, 0xd3, 0xf4, 0x69, 0x48, 0xae, 0x20, 0x73, 0x9b, 0x29, 0x01, 0x94, 0x07, 0xb7, 0x18, 0xa4, 0x9d, 0x75, 0xf8, 0x18, 0xa4, 0xb8, 0x60, 0xfd, 0x24, 0x46, 0x6c, 0xbb, 0xac, 0x5b, 0x86, 0xc0, 0xea, 0xb0, 0x95, 0x8b, 0x50, 0xf5, 0x53, 0xd0, 0x6f, 0xd4, 0x77, 0x76, 0x5d, 0xd6, 0x79, 0x37, 0x1b, 0x25, 0x67, 0xae, 0xc3, 0xa0, 0xa7, 0xd1, 0x9b, 0x2c, 0xba, 0x48, 0x87, 0xa6, 0x4f, 0x05, 0xd7, 0x13, 0x7e, 0x6e, 0x49, 0x9b, 0xf4, 0xe3, 0x90, 0xda, 0x70, 0xdb, 0xfe, 0xa4, 0xcf, 0x2b, 0x52, 0xaf, 0x35, 0xf3, 0x7e, 0x05, 0x52, 0x45, 0x84, 0x5a, 0xc4, 0xe0, 0xf7, 0x40, 0xb2, 0x68, 0x3f, 0x65, 0x31, 0x05, 0xc7, 0x99, 0x45, 0x31, 0x99, 0xd9, 0x94, 0x90, 0xf5, 0x7b, 0x82, 0x76, 0x9f, 0xf0, 0xec, 0x1e, 0xe0, 0x23, 0xb6, 0xcf, 0x08, 0xb6, 0x67, 0x0e, 0xc4, 0x4c, 0x5d, 0xf6, 0xbf, 0x00, 0x43, 0x81, 0x5e, 0xf4, 0x59, 0xa6, 0x46, 0x42, 0x06, 0x06, 0x6d, 0x85, 0x39, 0x32, 0x08, 0x46, 0x84, 0x8e, 0x31, 0x34, 0x60, 0xe2, 0x1e, 0x50, 0x62, 0xe6, 0x39, 0xd1, 0xcc, 0xe1, 0xac, 0xcc, 0xd4, 0x0b, 0xd4, 0x46, 0xc4, 0xdc, 0x27, 0x69, 0x70, 0xf6, 0x76, 0x22, 0xfe, 0x9c, 0xe9, 0x07, 0xb5, 0x5c, 0x6f, 0x64, 0x1e, 0x04, 0xa0, 0x29, 0x5f, 0xb2, 0x3a, 0x4d, 0x29, 0xeb, 0x46, 0xb9, 0x81, 0x37, 0x77, 0xd1, 0x26, 0x72, 0x08, 0x8b, 0x58, 0x4f, 0xe1, 0x09, 0x06, 0x68, 0x8a, 0x11, 0xfc, 0x7d, 0x91, 0xf8, 0xd0, 0x4a, 0x0c, 0xb3, 0xa6, 0x29, 0xeb, 0x75, 0xe4, 0xe6, 0x2c, 0xdb, 0xdd, 0x45, 0x6d, 0x09, 0xb1, 0xa8, 0x9f, 0x15, 0x12, 0x76, 0x74, 0xf1, 0x4e, 0x0f, 0xd1, 0x13, 0x74, 0x36, 0xf3, 0x25, 0xa2, 0x20, 0x2e, 0x05, 0xba, 0x06, 0xa8, 0xc6, 0x18, 0xa0, 0x7e, 0x5e, 0xa8, 0xdf, 0xf6, 0x51, 0x53, 0xda, 0x5a, 0x5e, 0x12, 0xf6, 0x39, 0xfb, 0x2b, 0x2b, 0xee, 0x31, 0xb9, 0x4d, 0xb9, 0xca, 0xf7, 0x45, 0xaa, 0xdc, 0xa3, 0xba, 0x3d, 0xa8, 0x4d, 0xd5, 0xb8, 0x36, 0xfd, 0x86, 0x57, 0x71, 0xd0, 0x9f, 0x88, 0x20, 0xbf, 0x48, 0xa2, 0xdf, 0x1f, 0xe9, 0xfb, 0xac, 0x52, 0xf0, 0x54, 0x5d, 0x8a, 0xeb, 0xfe, 0x6c, 0x22, 0x9f, 0xf7, 0xd4, 0xbd, 0x70, 0x80, 0x10, 0xc8, 0x26, 0x0a, 0x05, 0x6f, 0xda, 0x4e, 0x7d, 0xe8, 0xf9, 0x19, 0xe5, 0x85, 0xe7, 0x67, 0xfa, 0x32, 0x9f, 0x57, 0x60, 0x9c, 0x71, 0x06, 0x02, 0xf7, 0x01, 0x49, 0xf9, 0x23, 0x7c, 0xce, 0x08, 0xb3, 0xc0, 0xdb, 0x16, 0xbc, 0xdf, 0x52, 0x20, 0xdd, 0xa5, 0x2b, 0xb7, 0xf7, 0x42, 0x2c, 0x95, 0xb3, 0x4a, 0xe9, 0x67, 0x6f, 0xf3, 0xeb, 0xd0, 0xbf, 0x59, 0x6f, 0xa2, 0x36, 0x5e, 0x09, 0xf0, 0x07, 0xaa, 0x32, 0xbf, 0xcc, 0xa1, 0x4d, 0x9c, 0x46, 0x95, 0x13, 0x68, 0x8b, 0x7a, 0x1a, 0x92, 0x45, 0xd3, 0x35, 0x89, 0x06, 0xc3, 0xde, 0xfc, 0x6a, 0xba, 0x66, 0xe6, 0x2c, 0x0c, 0xaf, 0xee, 0x91, 0x87, 0x31, 0x35, 0xf2, 0xe8, 0x43, 0xac, 0xfe, 0x78, 0xbd, 0x7a, 0x66, 0xae, 0x3f, 0x55, 0xd3, 0x6e, 0x2a, 0xd9, 0x24, 0xd1, 0xe7, 0x49, 0x18, 0x5d, 0xc3, 0x6a, 0x13, 0x9c, 0x00, 0xa3, 0xbd, 0xab, 0xde, 0xe0, 0xa5, 0xa2, 0x4c, 0xf5, 0x8b, 0xb2, 0xe3, 0xa0, 0xac, 0x8a, 0xa5, 0x53, 0x50, 0x0f, 0x43, 0x59, 0x9d, 0x4b, 0xa6, 0x46, 0xb5, 0xf1, 0xb9, 0x64, 0x0a, 0xb4, 0x11, 0xd6, 0xef, 0xdf, 0xa9, 0xa0, 0xd1, 0x52, 0xa7, 0x88, 0xb6, 0xeb, 0x56, 0xdd, 0xed, 0xae, 0x57, 0x3d, 0x8d, 0xf5, 0x87, 0x61, 0x10, 0x9b, 0xf4, 0x0a, 0xfb, 0x61, 0x32, 0x6c, 0xfa, 0x13, 0xac, 0x44, 0x91, 0x44, 0xb0, 0x06, 0x12, 0x3a, 0x3e, 0x46, 0xbf, 0x02, 0x6a, 0xb9, 0xbc, 0xca, 0x16, 0xb7, 0xa5, 0x7d, 0xa1, 0xec, 0x5d, 0x0d, 0xfb, 0xc6, 0xda, 0x9c, 0x1d, 0x03, 0x0b, 0xd0, 0x97, 0x20, 0x51, 0x5e, 0x65, 0x05, 0xef, 0xc9, 0x38, 0x62, 0x8c, 0x44, 0x79, 0x75, 0xea, 0xaf, 0x15, 0x18, 0x11, 0x5a, 0xf5, 0x0c, 0x0c, 0xd3, 0x86, 0xc0, 0x70, 0x07, 0x0c, 0xa1, 0x8d, 0xeb, 0x9c, 0xb8, 0x4d, 0x9d, 0xa7, 0x72, 0x30, 0x26, 0xb5, 0xeb, 0xf3, 0xa0, 0x07, 0x9b, 0x98, 0x12, 0xf4, 0x47, 0x91, 0x42, 0x28, 0x99, 0xbb, 0x00, 0x7c, 0xbb, 0x7a, 0xbf, 0xe5, 0x53, 0x2e, 0x6d, 0x6c, 0x96, 0x8a, 0x9a, 0x92, 0xf9, 0x9a, 0x02, 0x43, 0xac, 0x6c, 0xad, 0xda, 0x2d, 0xa4, 0xe7, 0x41, 0xc9, 0xb1, 0x78, 0x78, 0x63, 0x7a, 0x2b, 0x39, 0xfd, 0x34, 0x28, 0xf9, 0xf8, 0xae, 0x56, 0xf2, 0xfa, 0x22, 0x28, 0x05, 0xe6, 0xe0, 0x78, 0x9e, 0x51, 0x0a, 0x99, 0x1f, 0xa9, 0x30, 0x11, 0x2c, 0xa3, 0xf9, 0x7c, 0x72, 0x42, 0xdc, 0x37, 0x65, 0x07, 0xcf, 0x2c, 0x9e, 0x5d, 0x9a, 0xc7, 0xff, 0x78, 0x21, 0x99, 0x11, 0xb7, 0x50, 0x59, 0xf0, 0x58, 0xce, 0xf4, 0x7a, 0x27, 0x92, 0x4d, 0x06, 0x24, 0x74, 0xbd, 0x13, 0x11, 0xa8, 0x5d, 0xef, 0x44, 0x04, 0x6a, 0xd7, 0x3b, 0x11, 0x81, 0xda, 0x75, 0x17, 0x20, 0x50, 0xbb, 0xde, 0x89, 0x08, 0xd4, 0xae, 0x77, 0x22, 0x02, 0xb5, 0xfb, 0x9d, 0x08, 0x23, 0xf7, 0x7c, 0x27, 0x22, 0xd2, 0xbb, 0xdf, 0x89, 0x88, 0xf4, 0xee, 0x77, 0x22, 0xd9, 0xa4, 0xdb, 0xee, 0xa0, 0xde, 0xb7, 0x0e, 0x22, 0x7e, 0xbf, 0x4d, 0xa0, 0x3f, 0x03, 0xaf, 0xc1, 0x18, 0x3d, 0x90, 0x28, 0xd8, 0x96, 0x6b, 0xd6, 0x2d, 0xd4, 0xd6, 0xdf, 0x09, 0xc3, 0xb4, 0x89, 0x6e, 0x73, 0xc2, 0xb6, 0x81, 0x94, 0xce, 0xe6, 0x5b, 0x81, 0x3b, 0xf3, 0xd3, 0x24, 0x4c, 0xd2, 0x86, 0xb2, 0xd9, 0x44, 0xc2, 0x2b, 0xa3, 0x53, 0xd2, 0x9d, 0xd2, 0x28, 0x86, 0xdf, 0x7a, 0x79, 0x86, 0xb6, 0xe6, 0xbc, 0x68, 0x3a, 0x25, 0xdd, 0x2e, 0x89, 0x7c, 0xfe, 0x02, 0x74, 0x4a, 0x7a, 0x79, 0x24, 0xf2, 0x79, 0xeb, 0x8d, 0xc7, 0xc7, 0xdf, 0x20, 0x89, 0x7c, 0x45, 0x2f, 0xca, 0x4e, 0x49, 0xaf, 0x91, 0x44, 0xbe, 0x92, 0x17, 0x6f, 0xa7, 0xa4, 0xbb, 0x27, 0x91, 0xef, 0x8a, 0x17, 0x79, 0xa7, 0xa4, 0x5b, 0x28, 0x91, 0xef, 0xaa, 0x17, 0x83, 0xa7, 0xa4, 0xb7, 0x4a, 0x22, 0xdf, 0x23, 0x5e, 0x34, 0x9e, 0x92, 0x5e, 0x2d, 0x89, 0x7c, 0xcb, 0x5e, 0x5c, 0xce, 0xca, 0xef, 0x97, 0x44, 0xc6, 0x6b, 0x7e, 0x84, 0xce, 0xca, 0x2f, 0x99, 0x44, 0xce, 0x77, 0xf9, 0xb1, 0x3a, 0x2b, 0xbf, 0x69, 0x12, 0x39, 0x57, 0xfc, 0xa8, 0x9d, 0x95, 0xef, 0xca, 0x44, 0xce, 0x55, 0x3f, 0x7e, 0x67, 0xe5, 0x5b, 0x33, 0x91, 0xb3, 0xec, 0x47, 0xf2, 0xac, 0x7c, 0x7f, 0x26, 0x72, 0xae, 0xf9, 0x87, 0xe8, 0xdf, 0x94, 0xc2, 0x2f, 0xf0, 0x0a, 0x2a, 0x23, 0x85, 0x1f, 0x84, 0x84, 0x9e, 0x34, 0x91, 0x05, 0x78, 0xfc, 0xb0, 0xcb, 0x48, 0x61, 0x07, 0x21, 0x21, 0x97, 0x91, 0x42, 0x0e, 0x42, 0xc2, 0x2d, 0x23, 0x85, 0x1b, 0x84, 0x84, 0x5a, 0x46, 0x0a, 0x35, 0x08, 0x09, 0xb3, 0x8c, 0x14, 0x66, 0x10, 0x12, 0x62, 0x19, 0x29, 0xc4, 0x20, 0x24, 0xbc, 0x32, 0x52, 0x78, 0x41, 0x48, 0x68, 0x9d, 0x94, 0x43, 0x0b, 0xc2, 0xc2, 0xea, 0xa4, 0x1c, 0x56, 0x10, 0x16, 0x52, 0x77, 0xcb, 0x21, 0x35, 0x78, 0xeb, 0xe5, 0x99, 0x7e, 0xdc, 0x14, 0x88, 0xa6, 0x93, 0x72, 0x34, 0x41, 0x58, 0x24, 0x9d, 0x94, 0x23, 0x09, 0xc2, 0xa2, 0xe8, 0xa4, 0x1c, 0x45, 0x10, 0x16, 0x41, 0x2f, 0xca, 0x11, 0xe4, 0xbf, 0xf1, 0xc9, 0x48, 0x57, 0x8a, 0x51, 0x11, 0xa4, 0xc6, 0x88, 0x20, 0x35, 0x46, 0x04, 0xa9, 0x31, 0x22, 0x48, 0x8d, 0x11, 0x41, 0x6a, 0x8c, 0x08, 0x52, 0x63, 0x44, 0x90, 0x1a, 0x23, 0x82, 0xd4, 0x38, 0x11, 0xa4, 0xc6, 0x8a, 0x20, 0xb5, 0x57, 0x04, 0x9d, 0x94, 0x5f, 0x3c, 0x40, 0xd8, 0x84, 0x74, 0x52, 0xbe, 0xfa, 0x8c, 0x0e, 0x21, 0x35, 0x56, 0x08, 0xa9, 0xbd, 0x42, 0xe8, 0x9b, 0x2a, 0x4c, 0x08, 0x21, 0xc4, 0xee, 0x87, 0xde, 0xac, 0x19, 0xe8, 0x7c, 0x8c, 0x07, 0x16, 0x61, 0x31, 0x75, 0x3e, 0xc6, 0x25, 0xf5, 0x7e, 0x71, 0xd6, 0x3d, 0x0b, 0x95, 0x62, 0xcc, 0x42, 0x57, 0xbc, 0x18, 0x3a, 0x1f, 0xe3, 0xe1, 0x45, 0x77, 0xec, 0x5d, 0xdc, 0x6f, 0x12, 0x78, 0x24, 0xd6, 0x24, 0xb0, 0x1c, 0x6b, 0x12, 0xb8, 0xe6, 0x7b, 0xf0, 0x83, 0x09, 0x38, 0xec, 0x7b, 0x90, 0x7e, 0x22, 0xbf, 0x7c, 0x94, 0x09, 0x5c, 0x51, 0xe9, 0xfc, 0xda, 0x26, 0xe0, 0xc6, 0xc4, 0x72, 0x4d, 0x5f, 0x17, 0x2f, 0xab, 0xb2, 0x07, 0xbd, 0xc0, 0x09, 0x78, 0x9c, 0x1d, 0x86, 0x9e, 0x04, 0x75, 0xb9, 0xe6, 0x90, 0xd9, 0x22, 0xac, 0xdb, 0x82, 0x81, 0xc9, 0xba, 0x01, 0x03, 0x84, 0xdd, 0x21, 0xee, 0xbd, 0x9d, 0x8e, 0x8b, 0x06, 0x93, 0x94, 0x79, 0x51, 0x81, 0xe3, 0x42, 0x28, 0xbf, 0x39, 0x57, 0x06, 0x97, 0x63, 0x5d, 0x19, 0x08, 0x09, 0xe2, 0x5f, 0x1f, 0xdc, 0xdb, 0x7d, 0x53, 0x1d, 0xcc, 0x12, 0xf9, 0x2a, 0xe1, 0xff, 0xc1, 0xa8, 0x3f, 0x02, 0xb2, 0x67, 0x3b, 0x17, 0x7d, 0x9a, 0x19, 0x96, 0x9a, 0xe7, 0xa4, 0x53, 0xb4, 0x7d, 0x61, 0x5e, 0xb6, 0x66, 0xb2, 0x30, 0x56, 0x16, 0xff, 0x44, 0x27, 0xea, 0x30, 0x22, 0x85, 0x4b, 0xf3, 0x9b, 0x9f, 0x9e, 0xe9, 0xcb, 0xdc, 0x0f, 0xc3, 0xc1, 0xbf, 0xc2, 0x91, 0x80, 0x83, 0x1c, 0x98, 0x4d, 0xbe, 0x84, 0xb9, 0x7f, 0x47, 0x81, 0x23, 0x41, 0xf6, 0x47, 0xeb, 0xee, 0xee, 0xb2, 0x85, 0x6b, 0xfa, 0x07, 0x21, 0x85, 0x98, 0xe3, 0xd8, 0x8f, 0x98, 0xb0, 0x7d, 0x64, 0x28, 0xfb, 0x3c, 0xf9, 0xd7, 0xf0, 0x20, 0xd2, 0x29, 0x08, 0xef, 0x76, 0x71, 0xea, 0x1e, 0xe8, 0xa7, 0xf2, 0x45, 0xbd, 0x46, 0x24, 0xbd, 0x3e, 0x1b, 0xa2, 0x17, 0x89, 0x23, 0xfd, 0x9a, 0xa0, 0x57, 0x60, 0xbb, 0x1a, 0xca, 0x3e, 0xcf, 0x83, 0x2f, 0x9f, 0xc2, 0xf5, 0x1f, 0x89, 0xa8, 0x68, 0x25, 0x67, 0x21, 0x55, 0x92, 0x79, 0xc2, 0xf5, 0x2c, 0x42, 0xb2, 0x6c, 0xd7, 0xc8, 0xcf, 0xab, 0x90, 0x9f, 0xe3, 0x65, 0x46, 0x66, 0xbf, 0xcd, 0x7b, 0x0a, 0x52, 0x85, 0xdd, 0x7a, 0xa3, 0xd6, 0x46, 0x16, 0xbb, 0xb3, 0x67, 0x47, 0xe8, 0x18, 0x63, 0x78, 0xb4, 0x4c, 0x01, 0xc6, 0xcb, 0xb6, 0x95, 0xdf, 0x73, 0x83, 0xf3, 0xc6, 0xbc, 0x94, 0x22, 0xec, 0xce, 0x87, 0xfc, 0x5d, 0x07, 0x66, 0xc8, 0xf7, 0x7f, 0xe7, 0xe5, 0x19, 0x65, 0xd3, 0x3b, 0x3f, 0x5f, 0x85, 0xa3, 0x2c, 0x7d, 0xba, 0x44, 0x2d, 0x46, 0x89, 0x1a, 0x64, 0xf7, 0xd4, 0x01, 0x71, 0xcb, 0x58, 0x9c, 0x15, 0x2a, 0xee, 0x8d, 0x69, 0x86, 0x8b, 0xa2, 0x7d, 0x35, 0x53, 0x0f, 0xa4, 0x59, 0xa8, 0xb8, 0xf9, 0x28, 0x71, 0x92, 0x66, 0x77, 0xc3, 0xa0, 0x47, 0x0b, 0x44, 0x43, 0x30, 0x53, 0x16, 0xe7, 0x32, 0x30, 0x14, 0x48, 0x58, 0xbd, 0x1f, 0x94, 0x9c, 0xd6, 0x87, 0xff, 0xcb, 0x6b, 0x0a, 0xfe, 0xaf, 0xa0, 0x25, 0xe6, 0xee, 0x81, 0x31, 0xe9, 0xfc, 0x12, 0x53, 0x8a, 0x1a, 0xe0, 0xff, 0x4a, 0xda, 0xd0, 0x54, 0xf2, 0x43, 0xbf, 0x3f, 0xdd, 0x37, 0x77, 0x19, 0xf4, 0xee, 0x93, 0x4e, 0x7d, 0x00, 0x12, 0x39, 0x2c, 0xf2, 0x28, 0x24, 0xf2, 0x79, 0x4d, 0x99, 0x1a, 0xfb, 0xe5, 0x4f, 0x1e, 0x1f, 0xca, 0x93, 0x3f, 0x31, 0xbe, 0x8e, 0xdc, 0x7c, 0x9e, 0x81, 0x1f, 0x82, 0x23, 0xa1, 0x27, 0xa5, 0x18, 0x5f, 0x28, 0x50, 0x7c, 0xb1, 0xd8, 0x85, 0x2f, 0x16, 0x09, 0x5e, 0xc9, 0xf2, 0x1b, 0xe7, 0x9c, 0x1e, 0x72, 0xca, 0x98, 0xae, 0x05, 0x6e, 0xb8, 0x73, 0xd9, 0x87, 0x18, 0x6f, 0x3e, 0x94, 0x17, 0x45, 0xdc, 0x58, 0xe7, 0xb3, 0x05, 0x86, 0x2f, 0x84, 0xe2, 0xb7, 0xa5, 0x6b, 0x55, 0x71, 0x85, 0x60, 0x42, 0x0a, 0x9e, 0xc2, 0xc5, 0x50, 0x21, 0xbb, 0x81, 0xc7, 0xee, 0x45, 0x4f, 0xe1, 0x52, 0x28, 0x6f, 0x3d, 0xe2, 0xd1, 0x57, 0x29, 0x7b, 0x9a, 0x2d, 0xf2, 0xb9, 0x33, 0xfa, 0x11, 0x9e, 0xa3, 0xc2, 0x0c, 0xcc, 0x0c, 0xc4, 0xb9, 0xb2, 0x05, 0x06, 0xc8, 0xf7, 0x04, 0xf4, 0xb6, 0x12, 0x47, 0x66, 0x1f, 0x61, 0x42, 0x0a, 0x3d, 0x85, 0x44, 0x98, 0x8a, 0xc3, 0xf3, 0x9b, 0x37, 0x5f, 0x99, 0xee, 0x7b, 0xe9, 0x95, 0xe9, 0xbe, 0x7f, 0x7c, 0x65, 0xba, 0xef, 0xbb, 0xaf, 0x4c, 0x2b, 0x3f, 0x78, 0x65, 0x5a, 0xf9, 0xe1, 0x2b, 0xd3, 0xca, 0x4f, 0x5e, 0x99, 0x56, 0x9e, 0xbd, 0x35, 0xad, 0xbc, 0x70, 0x6b, 0x5a, 0xf9, 0xd2, 0xad, 0x69, 0xe5, 0xeb, 0xb7, 0xa6, 0x95, 0x17, 0x6f, 0x4d, 0x2b, 0x37, 0x6f, 0x4d, 0xf7, 0xbd, 0x74, 0x6b, 0xba, 0xef, 0xbb, 0xb7, 0xa6, 0x95, 0x1f, 0xdc, 0x9a, 0xee, 0xfb, 0xe1, 0xad, 0x69, 0xe5, 0x27, 0xb7, 0xa6, 0xfb, 0x9e, 0xfd, 0xde, 0x74, 0xdf, 0xf3, 0xdf, 0x9b, 0xee, 0x7b, 0xe1, 0x7b, 0xd3, 0xca, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x6f, 0x9b, 0xdb, 0xc3, 0xe2, 0x65, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (x TheTestEnum) String() string { s, ok := TheTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x AnotherTestEnum) String() string { s, ok := AnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x YetAnotherTestEnum) String() string { s, ok := YetAnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x YetYetAnotherTestEnum) String() string { s, ok := YetYetAnotherTestEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (x NestedDefinition_NestedEnum) String() string { s, ok := NestedDefinition_NestedEnum_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *NidOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptNative but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptNative) if !ok { that2, ok := that.(NidOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if this.Field2 != that1.Field2 { return false } if this.Field3 != that1.Field3 { return false } if this.Field4 != that1.Field4 { return false } if this.Field5 != that1.Field5 { return false } if this.Field6 != that1.Field6 { return false } if this.Field7 != that1.Field7 { return false } if this.Field8 != that1.Field8 { return false } if this.Field9 != that1.Field9 { return false } if this.Field10 != that1.Field10 { return false } if this.Field11 != that1.Field11 { return false } if this.Field12 != that1.Field12 { return false } if this.Field13 != that1.Field13 { return false } if this.Field14 != that1.Field14 { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNative but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", *this.Field8, *that1.Field8) } } else if this.Field8 != nil { return fmt.Errorf("this.Field8 == nil && that.Field8 != nil") } else if that1.Field8 != nil { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", *this.Field9, *that1.Field9) } } else if this.Field9 != nil { return fmt.Errorf("this.Field9 == nil && that.Field9 != nil") } else if that1.Field9 != nil { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", *this.Field10, *that1.Field10) } } else if this.Field10 != nil { return fmt.Errorf("this.Field10 == nil && that.Field10 != nil") } else if that1.Field10 != nil { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", *this.Field11, *that1.Field11) } } else if this.Field11 != nil { return fmt.Errorf("this.Field11 == nil && that.Field11 != nil") } else if that1.Field11 != nil { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", *this.Field12, *that1.Field12) } } else if this.Field12 != nil { return fmt.Errorf("this.Field12 == nil && that.Field12 != nil") } else if that1.Field12 != nil { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNative) if !ok { that2, ok := that.(NinOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return false } } else if this.Field8 != nil { return false } else if that1.Field8 != nil { return false } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return false } } else if this.Field9 != nil { return false } else if that1.Field9 != nil { return false } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return false } } else if this.Field10 != nil { return false } else if that1.Field10 != nil { return false } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return false } } else if this.Field11 != nil { return false } else if that1.Field11 != nil { return false } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return false } } else if this.Field12 != nil { return false } else if that1.Field12 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepNative) if !ok { that2, ok := that.(NidRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepNative) if !ok { that2, ok := that.(NinRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepPackedNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepPackedNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepPackedNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepPackedNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepPackedNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepPackedNative) if !ok { that2, ok := that.(NidRepPackedNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepPackedNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepPackedNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepPackedNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepPackedNative but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field9) != len(that1.Field9) { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", len(this.Field9), len(that1.Field9)) } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return fmt.Errorf("Field9 this[%v](%v) Not Equal that[%v](%v)", i, this.Field9[i], i, that1.Field9[i]) } } if len(this.Field10) != len(that1.Field10) { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", len(this.Field10), len(that1.Field10)) } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return fmt.Errorf("Field10 this[%v](%v) Not Equal that[%v](%v)", i, this.Field10[i], i, that1.Field10[i]) } } if len(this.Field11) != len(that1.Field11) { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", len(this.Field11), len(that1.Field11)) } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return fmt.Errorf("Field11 this[%v](%v) Not Equal that[%v](%v)", i, this.Field11[i], i, that1.Field11[i]) } } if len(this.Field12) != len(that1.Field12) { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", len(this.Field12), len(that1.Field12)) } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return fmt.Errorf("Field12 this[%v](%v) Not Equal that[%v](%v)", i, this.Field12[i], i, that1.Field12[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepPackedNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepPackedNative) if !ok { that2, ok := that.(NinRepPackedNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if this.Field4[i] != that1.Field4[i] { return false } } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if this.Field5[i] != that1.Field5[i] { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if this.Field8[i] != that1.Field8[i] { return false } } if len(this.Field9) != len(that1.Field9) { return false } for i := range this.Field9 { if this.Field9[i] != that1.Field9[i] { return false } } if len(this.Field10) != len(that1.Field10) { return false } for i := range this.Field10 { if this.Field10[i] != that1.Field10[i] { return false } } if len(this.Field11) != len(that1.Field11) { return false } for i := range this.Field11 { if this.Field11[i] != that1.Field11[i] { return false } } if len(this.Field12) != len(that1.Field12) { return false } for i := range this.Field12 { if this.Field12[i] != that1.Field12[i] { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptStruct but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(&that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(&that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if !this.Field8.Equal(&that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field13 != that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptStruct) if !ok { that2, ok := that.(NidOptStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if this.Field2 != that1.Field2 { return false } if !this.Field3.Equal(&that1.Field3) { return false } if !this.Field4.Equal(&that1.Field4) { return false } if this.Field6 != that1.Field6 { return false } if this.Field7 != that1.Field7 { return false } if !this.Field8.Equal(&that1.Field8) { return false } if this.Field13 != that1.Field13 { return false } if this.Field14 != that1.Field14 { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptStruct but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if !this.Field8.Equal(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptStruct) if !ok { that2, ok := that.(NinOptStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !this.Field3.Equal(that1.Field3) { return false } if !this.Field4.Equal(that1.Field4) { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if !this.Field8.Equal(that1.Field8) { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepStruct but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if !this.Field3[i].Equal(&that1.Field3[i]) { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if !this.Field4[i].Equal(&that1.Field4[i]) { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if !this.Field8[i].Equal(&that1.Field8[i]) { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepStruct) if !ok { that2, ok := that.(NidRepStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if !this.Field3[i].Equal(&that1.Field3[i]) { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if !this.Field4[i].Equal(&that1.Field4[i]) { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if !this.Field8[i].Equal(&that1.Field8[i]) { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepStruct but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if !this.Field3[i].Equal(that1.Field3[i]) { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if len(this.Field4) != len(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", len(this.Field4), len(that1.Field4)) } for i := range this.Field4 { if !this.Field4[i].Equal(that1.Field4[i]) { return fmt.Errorf("Field4 this[%v](%v) Not Equal that[%v](%v)", i, this.Field4[i], i, that1.Field4[i]) } } if len(this.Field6) != len(that1.Field6) { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", len(this.Field6), len(that1.Field6)) } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return fmt.Errorf("Field6 this[%v](%v) Not Equal that[%v](%v)", i, this.Field6[i], i, that1.Field6[i]) } } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if len(this.Field8) != len(that1.Field8) { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", len(this.Field8), len(that1.Field8)) } for i := range this.Field8 { if !this.Field8[i].Equal(that1.Field8[i]) { return fmt.Errorf("Field8 this[%v](%v) Not Equal that[%v](%v)", i, this.Field8[i], i, that1.Field8[i]) } } if len(this.Field13) != len(that1.Field13) { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", len(this.Field13), len(that1.Field13)) } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return fmt.Errorf("Field13 this[%v](%v) Not Equal that[%v](%v)", i, this.Field13[i], i, that1.Field13[i]) } } if len(this.Field14) != len(that1.Field14) { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", len(this.Field14), len(that1.Field14)) } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return fmt.Errorf("Field14 this[%v](%v) Not Equal that[%v](%v)", i, this.Field14[i], i, that1.Field14[i]) } } if len(this.Field15) != len(that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", len(this.Field15), len(that1.Field15)) } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return fmt.Errorf("Field15 this[%v](%v) Not Equal that[%v](%v)", i, this.Field15[i], i, that1.Field15[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepStruct) if !ok { that2, ok := that.(NinRepStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if !this.Field3[i].Equal(that1.Field3[i]) { return false } } if len(this.Field4) != len(that1.Field4) { return false } for i := range this.Field4 { if !this.Field4[i].Equal(that1.Field4[i]) { return false } } if len(this.Field6) != len(that1.Field6) { return false } for i := range this.Field6 { if this.Field6[i] != that1.Field6[i] { return false } } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if len(this.Field8) != len(that1.Field8) { return false } for i := range this.Field8 { if !this.Field8[i].Equal(that1.Field8[i]) { return false } } if len(this.Field13) != len(that1.Field13) { return false } for i := range this.Field13 { if this.Field13[i] != that1.Field13[i] { return false } } if len(this.Field14) != len(that1.Field14) { return false } for i := range this.Field14 { if this.Field14[i] != that1.Field14[i] { return false } } if len(this.Field15) != len(that1.Field15) { return false } for i := range this.Field15 { if !bytes.Equal(this.Field15[i], that1.Field15[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidEmbeddedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidEmbeddedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidEmbeddedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidEmbeddedStruct but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(&that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidEmbeddedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidEmbeddedStruct) if !ok { that2, ok := that.(NidEmbeddedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(&that1.Field200) { return false } if this.Field210 != that1.Field210 { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinEmbeddedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinEmbeddedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinEmbeddedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinEmbeddedStruct but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", *this.Field210, *that1.Field210) } } else if this.Field210 != nil { return fmt.Errorf("this.Field210 == nil && that.Field210 != nil") } else if that1.Field210 != nil { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinEmbeddedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinEmbeddedStruct) if !ok { that2, ok := that.(NinEmbeddedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(that1.Field200) { return false } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return false } } else if this.Field210 != nil { return false } else if that1.Field210 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidNestedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidNestedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidNestedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidNestedStruct but is not nil && this == nil") } if !this.Field1.Equal(&that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if !this.Field2[i].Equal(&that1.Field2[i]) { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidNestedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidNestedStruct) if !ok { that2, ok := that.(NidNestedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(&that1.Field1) { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if !this.Field2[i].Equal(&that1.Field2[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinNestedStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinNestedStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinNestedStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinNestedStruct but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if !this.Field2[i].Equal(that1.Field2[i]) { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinNestedStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinNestedStruct) if !ok { that2, ok := that.(NinNestedStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if !this.Field2[i].Equal(that1.Field2[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptCustom but is not nil && this == nil") } if !this.Id.Equal(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id) } if !this.Value.Equal(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptCustom) if !ok { that2, ok := that.(NidOptCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Id.Equal(that1.Id) { return false } if !this.Value.Equal(that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomDash) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomDash") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomDash but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomDash but is not nil && this == nil") } if that1.Value == nil { if this.Value != nil { return fmt.Errorf("this.Value != nil && that1.Value == nil") } } else if !this.Value.Equal(*that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomDash) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomDash) if !ok { that2, ok := that.(CustomDash) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Value == nil { if this.Value != nil { return false } } else if !this.Value.Equal(*that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptCustom but is not nil && this == nil") } if that1.Id == nil { if this.Id != nil { return fmt.Errorf("this.Id != nil && that1.Id == nil") } } else if !this.Id.Equal(*that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", this.Id, that1.Id) } if that1.Value == nil { if this.Value != nil { return fmt.Errorf("this.Value != nil && that1.Value == nil") } } else if !this.Value.Equal(*that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptCustom) if !ok { that2, ok := that.(NinOptCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Id == nil { if this.Id != nil { return false } } else if !this.Id.Equal(*that1.Id) { return false } if that1.Value == nil { if this.Value != nil { return false } } else if !this.Value.Equal(*that1.Value) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepCustom but is not nil && this == nil") } if len(this.Id) != len(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", len(this.Id), len(that1.Id)) } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return fmt.Errorf("Id this[%v](%v) Not Equal that[%v](%v)", i, this.Id[i], i, that1.Id[i]) } } if len(this.Value) != len(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", len(this.Value), len(that1.Value)) } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return fmt.Errorf("Value this[%v](%v) Not Equal that[%v](%v)", i, this.Value[i], i, that1.Value[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepCustom) if !ok { that2, ok := that.(NidRepCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Id) != len(that1.Id) { return false } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return false } } if len(this.Value) != len(that1.Value) { return false } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepCustom) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepCustom") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepCustom but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepCustom but is not nil && this == nil") } if len(this.Id) != len(that1.Id) { return fmt.Errorf("Id this(%v) Not Equal that(%v)", len(this.Id), len(that1.Id)) } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return fmt.Errorf("Id this[%v](%v) Not Equal that[%v](%v)", i, this.Id[i], i, that1.Id[i]) } } if len(this.Value) != len(that1.Value) { return fmt.Errorf("Value this(%v) Not Equal that(%v)", len(this.Value), len(that1.Value)) } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return fmt.Errorf("Value this[%v](%v) Not Equal that[%v](%v)", i, this.Value[i], i, that1.Value[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepCustom) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepCustom) if !ok { that2, ok := that.(NinRepCustom) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Id) != len(that1.Id) { return false } for i := range this.Id { if !this.Id[i].Equal(that1.Id[i]) { return false } } if len(this.Value) != len(that1.Value) { return false } for i := range this.Value { if !this.Value[i].Equal(that1.Value[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNativeUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNativeUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNativeUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNativeUnion but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNativeUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNativeUnion) if !ok { that2, ok := that.(NinOptNativeUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptStructUnion but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !this.Field4.Equal(that1.Field4) { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptStructUnion) if !ok { that2, ok := that.(NinOptStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !this.Field3.Equal(that1.Field3) { return false } if !this.Field4.Equal(that1.Field4) { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinEmbeddedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinEmbeddedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinEmbeddedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinEmbeddedStructUnion but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.Field200.Equal(that1.Field200) { return fmt.Errorf("Field200 this(%v) Not Equal that(%v)", this.Field200, that1.Field200) } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", *this.Field210, *that1.Field210) } } else if this.Field210 != nil { return fmt.Errorf("this.Field210 == nil && that.Field210 != nil") } else if that1.Field210 != nil { return fmt.Errorf("Field210 this(%v) Not Equal that(%v)", this.Field210, that1.Field210) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinEmbeddedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinEmbeddedStructUnion) if !ok { that2, ok := that.(NinEmbeddedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.Field200.Equal(that1.Field200) { return false } if this.Field210 != nil && that1.Field210 != nil { if *this.Field210 != *that1.Field210 { return false } } else if this.Field210 != nil { return false } else if that1.Field210 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinNestedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinNestedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinNestedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinNestedStructUnion but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !this.Field2.Equal(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !this.Field3.Equal(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinNestedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinNestedStructUnion) if !ok { that2, ok := that.(NinNestedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if !this.Field2.Equal(that1.Field2) { return false } if !this.Field3.Equal(that1.Field3) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Tree) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Tree") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Tree but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Tree but is not nil && this == nil") } if !this.Or.Equal(that1.Or) { return fmt.Errorf("Or this(%v) Not Equal that(%v)", this.Or, that1.Or) } if !this.And.Equal(that1.And) { return fmt.Errorf("And this(%v) Not Equal that(%v)", this.And, that1.And) } if !this.Leaf.Equal(that1.Leaf) { return fmt.Errorf("Leaf this(%v) Not Equal that(%v)", this.Leaf, that1.Leaf) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Tree) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Tree) if !ok { that2, ok := that.(Tree) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Or.Equal(that1.Or) { return false } if !this.And.Equal(that1.And) { return false } if !this.Leaf.Equal(that1.Leaf) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OrBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OrBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OrBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OrBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OrBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OrBranch) if !ok { that2, ok := that.(OrBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AndBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AndBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AndBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AndBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AndBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AndBranch) if !ok { that2, ok := that.(AndBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Leaf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Leaf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Leaf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Leaf but is not nil && this == nil") } if this.Value != that1.Value { return fmt.Errorf("Value this(%v) Not Equal that(%v)", this.Value, that1.Value) } if this.StrValue != that1.StrValue { return fmt.Errorf("StrValue this(%v) Not Equal that(%v)", this.StrValue, that1.StrValue) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Leaf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Leaf) if !ok { that2, ok := that.(Leaf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } if this.StrValue != that1.StrValue { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *DeepTree) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DeepTree") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DeepTree but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DeepTree but is not nil && this == nil") } if !this.Down.Equal(that1.Down) { return fmt.Errorf("Down this(%v) Not Equal that(%v)", this.Down, that1.Down) } if !this.And.Equal(that1.And) { return fmt.Errorf("And this(%v) Not Equal that(%v)", this.And, that1.And) } if !this.Leaf.Equal(that1.Leaf) { return fmt.Errorf("Leaf this(%v) Not Equal that(%v)", this.Leaf, that1.Leaf) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *DeepTree) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DeepTree) if !ok { that2, ok := that.(DeepTree) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Down.Equal(that1.Down) { return false } if !this.And.Equal(that1.And) { return false } if !this.Leaf.Equal(that1.Leaf) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *ADeepBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ADeepBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ADeepBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ADeepBranch but is not nil && this == nil") } if !this.Down.Equal(&that1.Down) { return fmt.Errorf("Down this(%v) Not Equal that(%v)", this.Down, that1.Down) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *ADeepBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ADeepBranch) if !ok { that2, ok := that.(ADeepBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Down.Equal(&that1.Down) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AndDeepBranch) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AndDeepBranch") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AndDeepBranch but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AndDeepBranch but is not nil && this == nil") } if !this.Left.Equal(&that1.Left) { return fmt.Errorf("Left this(%v) Not Equal that(%v)", this.Left, that1.Left) } if !this.Right.Equal(&that1.Right) { return fmt.Errorf("Right this(%v) Not Equal that(%v)", this.Right, that1.Right) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AndDeepBranch) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AndDeepBranch) if !ok { that2, ok := that.(AndDeepBranch) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Left.Equal(&that1.Left) { return false } if !this.Right.Equal(&that1.Right) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *DeepLeaf) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DeepLeaf") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DeepLeaf but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DeepLeaf but is not nil && this == nil") } if !this.Tree.Equal(&that1.Tree) { return fmt.Errorf("Tree this(%v) Not Equal that(%v)", this.Tree, that1.Tree) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *DeepLeaf) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DeepLeaf) if !ok { that2, ok := that.(DeepLeaf) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Tree.Equal(&that1.Tree) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Nil) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Nil") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Nil but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Nil but is not nil && this == nil") } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Nil) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Nil) if !ok { that2, ok := that.(Nil) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptEnum but is not nil && this == nil") } if this.Field1 != that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptEnum) if !ok { that2, ok := that.(NidOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != that1.Field1 { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptEnum but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptEnum) if !ok { that2, ok := that.(NinOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepEnum) if !ok { that2, ok := that.(NidRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepEnum but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepEnum) if !ok { that2, ok := that.(NinRepEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if this.Field1[i] != that1.Field1[i] { return false } } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptEnumDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptEnumDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptEnumDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptEnumDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptEnumDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptEnumDefault) if !ok { that2, ok := that.(NinOptEnumDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AnotherNinOptEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AnotherNinOptEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AnotherNinOptEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AnotherNinOptEnum but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AnotherNinOptEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AnotherNinOptEnum) if !ok { that2, ok := that.(AnotherNinOptEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *AnotherNinOptEnumDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AnotherNinOptEnumDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AnotherNinOptEnumDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AnotherNinOptEnumDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *AnotherNinOptEnumDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AnotherNinOptEnumDefault) if !ok { that2, ok := that.(AnotherNinOptEnumDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Timer) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Timer") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Timer but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Timer but is not nil && this == nil") } if this.Time1 != that1.Time1 { return fmt.Errorf("Time1 this(%v) Not Equal that(%v)", this.Time1, that1.Time1) } if this.Time2 != that1.Time2 { return fmt.Errorf("Time2 this(%v) Not Equal that(%v)", this.Time2, that1.Time2) } if !bytes.Equal(this.Data, that1.Data) { return fmt.Errorf("Data this(%v) Not Equal that(%v)", this.Data, that1.Data) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Timer) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Timer) if !ok { that2, ok := that.(Timer) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Time1 != that1.Time1 { return false } if this.Time2 != that1.Time2 { return false } if !bytes.Equal(this.Data, that1.Data) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *MyExtendable) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MyExtendable") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MyExtendable but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MyExtendable but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return fmt.Errorf("XXX_InternalExtensions this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k]) } } else { return fmt.Errorf("XXX_InternalExtensions[%v] Not In that", k) } } for k := range thatmap { if _, ok := thismap[k]; !ok { return fmt.Errorf("XXX_InternalExtensions[%v] Not In this", k) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *MyExtendable) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MyExtendable) if !ok { that2, ok := that.(MyExtendable) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return false } } else { return false } } for k := range thatmap { if _, ok := thismap[k]; !ok { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OtherExtenable) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OtherExtenable") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OtherExtenable but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OtherExtenable but is not nil && this == nil") } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if !this.M.Equal(that1.M) { return fmt.Errorf("M this(%v) Not Equal that(%v)", this.M, that1.M) } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return fmt.Errorf("XXX_InternalExtensions this[%v](%v) Not Equal that[%v](%v)", k, thismap[k], k, thatmap[k]) } } else { return fmt.Errorf("XXX_InternalExtensions[%v] Not In that", k) } } for k := range thatmap { if _, ok := thismap[k]; !ok { return fmt.Errorf("XXX_InternalExtensions[%v] Not In this", k) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OtherExtenable) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OtherExtenable) if !ok { that2, ok := that.(OtherExtenable) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if !this.M.Equal(that1.M) { return false } thismap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(this) thatmap := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(that1) for k, v := range thismap { if v2, ok := thatmap[k]; ok { if !v.Equal(&v2) { return false } } else { return false } } for k := range thatmap { if _, ok := thismap[k]; !ok { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { return fmt.Errorf("EnumField this(%v) Not Equal that(%v)", *this.EnumField, *that1.EnumField) } } else if this.EnumField != nil { return fmt.Errorf("this.EnumField == nil && that.EnumField != nil") } else if that1.EnumField != nil { return fmt.Errorf("EnumField this(%v) Not Equal that(%v)", this.EnumField, that1.EnumField) } if !this.NNM.Equal(that1.NNM) { return fmt.Errorf("NNM this(%v) Not Equal that(%v)", this.NNM, that1.NNM) } if !this.NM.Equal(that1.NM) { return fmt.Errorf("NM this(%v) Not Equal that(%v)", this.NM, that1.NM) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition) if !ok { that2, ok := that.(NestedDefinition) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.EnumField != nil && that1.EnumField != nil { if *this.EnumField != *that1.EnumField { return false } } else if this.EnumField != nil { return false } else if that1.EnumField != nil { return false } if !this.NNM.Equal(that1.NNM) { return false } if !this.NM.Equal(that1.NM) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition_NestedMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition_NestedMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition_NestedMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition_NestedMessage but is not nil && this == nil") } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { return fmt.Errorf("NestedField1 this(%v) Not Equal that(%v)", *this.NestedField1, *that1.NestedField1) } } else if this.NestedField1 != nil { return fmt.Errorf("this.NestedField1 == nil && that.NestedField1 != nil") } else if that1.NestedField1 != nil { return fmt.Errorf("NestedField1 this(%v) Not Equal that(%v)", this.NestedField1, that1.NestedField1) } if !this.NNM.Equal(that1.NNM) { return fmt.Errorf("NNM this(%v) Not Equal that(%v)", this.NNM, that1.NNM) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition_NestedMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition_NestedMessage) if !ok { that2, ok := that.(NestedDefinition_NestedMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NestedField1 != nil && that1.NestedField1 != nil { if *this.NestedField1 != *that1.NestedField1 { return false } } else if this.NestedField1 != nil { return false } else if that1.NestedField1 != nil { return false } if !this.NNM.Equal(that1.NNM) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedDefinition_NestedMessage_NestedNestedMsg") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedDefinition_NestedMessage_NestedNestedMsg but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedDefinition_NestedMessage_NestedNestedMsg but is not nil && this == nil") } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { return fmt.Errorf("NestedNestedField1 this(%v) Not Equal that(%v)", *this.NestedNestedField1, *that1.NestedNestedField1) } } else if this.NestedNestedField1 != nil { return fmt.Errorf("this.NestedNestedField1 == nil && that.NestedNestedField1 != nil") } else if that1.NestedNestedField1 != nil { return fmt.Errorf("NestedNestedField1 this(%v) Not Equal that(%v)", this.NestedNestedField1, that1.NestedNestedField1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedDefinition_NestedMessage_NestedNestedMsg) if !ok { that2, ok := that.(NestedDefinition_NestedMessage_NestedNestedMsg) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NestedNestedField1 != nil && that1.NestedNestedField1 != nil { if *this.NestedNestedField1 != *that1.NestedNestedField1 { return false } } else if this.NestedNestedField1 != nil { return false } else if that1.NestedNestedField1 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NestedScope) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NestedScope") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NestedScope but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NestedScope but is not nil && this == nil") } if !this.A.Equal(that1.A) { return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A) } if this.B != nil && that1.B != nil { if *this.B != *that1.B { return fmt.Errorf("B this(%v) Not Equal that(%v)", *this.B, *that1.B) } } else if this.B != nil { return fmt.Errorf("this.B == nil && that.B != nil") } else if that1.B != nil { return fmt.Errorf("B this(%v) Not Equal that(%v)", this.B, that1.B) } if !this.C.Equal(that1.C) { return fmt.Errorf("C this(%v) Not Equal that(%v)", this.C, that1.C) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NestedScope) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NestedScope) if !ok { that2, ok := that.(NestedScope) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.A.Equal(that1.A) { return false } if this.B != nil && that1.B != nil { if *this.B != *that1.B { return false } } else if this.B != nil { return false } else if that1.B != nil { return false } if !this.C.Equal(that1.C) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNativeDefault) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNativeDefault") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNativeDefault but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNativeDefault but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", *this.Field5, *that1.Field5) } } else if this.Field5 != nil { return fmt.Errorf("this.Field5 == nil && that.Field5 != nil") } else if that1.Field5 != nil { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", this.Field5, that1.Field5) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", *this.Field7, *that1.Field7) } } else if this.Field7 != nil { return fmt.Errorf("this.Field7 == nil && that.Field7 != nil") } else if that1.Field7 != nil { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", this.Field7, that1.Field7) } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", *this.Field8, *that1.Field8) } } else if this.Field8 != nil { return fmt.Errorf("this.Field8 == nil && that.Field8 != nil") } else if that1.Field8 != nil { return fmt.Errorf("Field8 this(%v) Not Equal that(%v)", this.Field8, that1.Field8) } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", *this.Field9, *that1.Field9) } } else if this.Field9 != nil { return fmt.Errorf("this.Field9 == nil && that.Field9 != nil") } else if that1.Field9 != nil { return fmt.Errorf("Field9 this(%v) Not Equal that(%v)", this.Field9, that1.Field9) } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", *this.Field10, *that1.Field10) } } else if this.Field10 != nil { return fmt.Errorf("this.Field10 == nil && that.Field10 != nil") } else if that1.Field10 != nil { return fmt.Errorf("Field10 this(%v) Not Equal that(%v)", this.Field10, that1.Field10) } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", *this.Field11, *that1.Field11) } } else if this.Field11 != nil { return fmt.Errorf("this.Field11 == nil && that.Field11 != nil") } else if that1.Field11 != nil { return fmt.Errorf("Field11 this(%v) Not Equal that(%v)", this.Field11, that1.Field11) } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", *this.Field12, *that1.Field12) } } else if this.Field12 != nil { return fmt.Errorf("this.Field12 == nil && that.Field12 != nil") } else if that1.Field12 != nil { return fmt.Errorf("Field12 this(%v) Not Equal that(%v)", this.Field12, that1.Field12) } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", *this.Field13, *that1.Field13) } } else if this.Field13 != nil { return fmt.Errorf("this.Field13 == nil && that.Field13 != nil") } else if that1.Field13 != nil { return fmt.Errorf("Field13 this(%v) Not Equal that(%v)", this.Field13, that1.Field13) } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", *this.Field14, *that1.Field14) } } else if this.Field14 != nil { return fmt.Errorf("this.Field14 == nil && that.Field14 != nil") } else if that1.Field14 != nil { return fmt.Errorf("Field14 this(%v) Not Equal that(%v)", this.Field14, that1.Field14) } if !bytes.Equal(this.Field15, that1.Field15) { return fmt.Errorf("Field15 this(%v) Not Equal that(%v)", this.Field15, that1.Field15) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNativeDefault) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNativeDefault) if !ok { that2, ok := that.(NinOptNativeDefault) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if this.Field5 != nil && that1.Field5 != nil { if *this.Field5 != *that1.Field5 { return false } } else if this.Field5 != nil { return false } else if that1.Field5 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if this.Field7 != nil && that1.Field7 != nil { if *this.Field7 != *that1.Field7 { return false } } else if this.Field7 != nil { return false } else if that1.Field7 != nil { return false } if this.Field8 != nil && that1.Field8 != nil { if *this.Field8 != *that1.Field8 { return false } } else if this.Field8 != nil { return false } else if that1.Field8 != nil { return false } if this.Field9 != nil && that1.Field9 != nil { if *this.Field9 != *that1.Field9 { return false } } else if this.Field9 != nil { return false } else if that1.Field9 != nil { return false } if this.Field10 != nil && that1.Field10 != nil { if *this.Field10 != *that1.Field10 { return false } } else if this.Field10 != nil { return false } else if that1.Field10 != nil { return false } if this.Field11 != nil && that1.Field11 != nil { if *this.Field11 != *that1.Field11 { return false } } else if this.Field11 != nil { return false } else if that1.Field11 != nil { return false } if this.Field12 != nil && that1.Field12 != nil { if *this.Field12 != *that1.Field12 { return false } } else if this.Field12 != nil { return false } else if that1.Field12 != nil { return false } if this.Field13 != nil && that1.Field13 != nil { if *this.Field13 != *that1.Field13 { return false } } else if this.Field13 != nil { return false } else if that1.Field13 != nil { return false } if this.Field14 != nil && that1.Field14 != nil { if *this.Field14 != *that1.Field14 { return false } } else if this.Field14 != nil { return false } else if that1.Field14 != nil { return false } if !bytes.Equal(this.Field15, that1.Field15) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomContainer) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomContainer") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomContainer but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomContainer but is not nil && this == nil") } if !this.CustomStruct.Equal(&that1.CustomStruct) { return fmt.Errorf("CustomStruct this(%v) Not Equal that(%v)", this.CustomStruct, that1.CustomStruct) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomContainer) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomContainer) if !ok { that2, ok := that.(CustomContainer) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.CustomStruct.Equal(&that1.CustomStruct) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNidOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNidOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNidOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNidOptNative but is not nil && this == nil") } if this.FieldA != that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if this.FieldC != that1.FieldC { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if this.FieldD != that1.FieldD { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", this.FieldD, that1.FieldD) } if this.FieldE != that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if this.FieldG != that1.FieldG { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if this.FieldJ != that1.FieldJ { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if this.FieldK != that1.FieldK { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", this.FieldK, that1.FieldK) } if this.FieldL != that1.FieldL { return fmt.Errorf("FieldL this(%v) Not Equal that(%v)", this.FieldL, that1.FieldL) } if this.FieldM != that1.FieldM { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", this.FieldM, that1.FieldM) } if this.FieldN != that1.FieldN { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", this.FieldN, that1.FieldN) } if !bytes.Equal(this.FieldO, that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", this.FieldO, that1.FieldO) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNidOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNidOptNative) if !ok { that2, ok := that.(CustomNameNidOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != that1.FieldA { return false } if this.FieldB != that1.FieldB { return false } if this.FieldC != that1.FieldC { return false } if this.FieldD != that1.FieldD { return false } if this.FieldE != that1.FieldE { return false } if this.FieldF != that1.FieldF { return false } if this.FieldG != that1.FieldG { return false } if this.FieldH != that1.FieldH { return false } if this.FieldI != that1.FieldI { return false } if this.FieldJ != that1.FieldJ { return false } if this.FieldK != that1.FieldK { return false } if this.FieldL != that1.FieldL { return false } if this.FieldM != that1.FieldM { return false } if this.FieldN != that1.FieldN { return false } if !bytes.Equal(this.FieldO, that1.FieldO) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinOptNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinOptNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinOptNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinOptNative but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", *this.FieldC, *that1.FieldC) } } else if this.FieldC != nil { return fmt.Errorf("this.FieldC == nil && that.FieldC != nil") } else if that1.FieldC != nil { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", *this.FieldD, *that1.FieldD) } } else if this.FieldD != nil { return fmt.Errorf("this.FieldD == nil && that.FieldD != nil") } else if that1.FieldD != nil { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", this.FieldD, that1.FieldD) } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", *this.FieldE, *that1.FieldE) } } else if this.FieldE != nil { return fmt.Errorf("this.FieldE == nil && that.FieldE != nil") } else if that1.FieldE != nil { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", *this.FieldF, *that1.FieldF) } } else if this.FieldF != nil { return fmt.Errorf("this.FieldF == nil && that.FieldF != nil") } else if that1.FieldF != nil { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", *this.FieldG, *that1.FieldG) } } else if this.FieldG != nil { return fmt.Errorf("this.FieldG == nil && that.FieldG != nil") } else if that1.FieldG != nil { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", *this.FieldH, *that1.FieldH) } } else if this.FieldH != nil { return fmt.Errorf("this.FieldH == nil && that.FieldH != nil") } else if that1.FieldH != nil { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", *this.FieldI, *that1.FieldI) } } else if this.FieldI != nil { return fmt.Errorf("this.FieldI == nil && that.FieldI != nil") } else if that1.FieldI != nil { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", *this.FieldJ, *that1.FieldJ) } } else if this.FieldJ != nil { return fmt.Errorf("this.FieldJ == nil && that.FieldJ != nil") } else if that1.FieldJ != nil { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", *this.FieldK, *that1.FieldK) } } else if this.FieldK != nil { return fmt.Errorf("this.FieldK == nil && that.FieldK != nil") } else if that1.FieldK != nil { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", this.FieldK, that1.FieldK) } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { return fmt.Errorf("FielL this(%v) Not Equal that(%v)", *this.FielL, *that1.FielL) } } else if this.FielL != nil { return fmt.Errorf("this.FielL == nil && that.FielL != nil") } else if that1.FielL != nil { return fmt.Errorf("FielL this(%v) Not Equal that(%v)", this.FielL, that1.FielL) } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", *this.FieldM, *that1.FieldM) } } else if this.FieldM != nil { return fmt.Errorf("this.FieldM == nil && that.FieldM != nil") } else if that1.FieldM != nil { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", this.FieldM, that1.FieldM) } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", *this.FieldN, *that1.FieldN) } } else if this.FieldN != nil { return fmt.Errorf("this.FieldN == nil && that.FieldN != nil") } else if that1.FieldN != nil { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", this.FieldN, that1.FieldN) } if !bytes.Equal(this.FieldO, that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", this.FieldO, that1.FieldO) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinOptNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinOptNative) if !ok { that2, ok := that.(CustomNameNinOptNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if this.FieldC != nil && that1.FieldC != nil { if *this.FieldC != *that1.FieldC { return false } } else if this.FieldC != nil { return false } else if that1.FieldC != nil { return false } if this.FieldD != nil && that1.FieldD != nil { if *this.FieldD != *that1.FieldD { return false } } else if this.FieldD != nil { return false } else if that1.FieldD != nil { return false } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return false } } else if this.FieldE != nil { return false } else if that1.FieldE != nil { return false } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return false } } else if this.FieldF != nil { return false } else if that1.FieldF != nil { return false } if this.FieldG != nil && that1.FieldG != nil { if *this.FieldG != *that1.FieldG { return false } } else if this.FieldG != nil { return false } else if that1.FieldG != nil { return false } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return false } } else if this.FieldH != nil { return false } else if that1.FieldH != nil { return false } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return false } } else if this.FieldI != nil { return false } else if that1.FieldI != nil { return false } if this.FieldJ != nil && that1.FieldJ != nil { if *this.FieldJ != *that1.FieldJ { return false } } else if this.FieldJ != nil { return false } else if that1.FieldJ != nil { return false } if this.FieldK != nil && that1.FieldK != nil { if *this.FieldK != *that1.FieldK { return false } } else if this.FieldK != nil { return false } else if that1.FieldK != nil { return false } if this.FielL != nil && that1.FielL != nil { if *this.FielL != *that1.FielL { return false } } else if this.FielL != nil { return false } else if that1.FielL != nil { return false } if this.FieldM != nil && that1.FieldM != nil { if *this.FieldM != *that1.FieldM { return false } } else if this.FieldM != nil { return false } else if that1.FieldM != nil { return false } if this.FieldN != nil && that1.FieldN != nil { if *this.FieldN != *that1.FieldN { return false } } else if this.FieldN != nil { return false } else if that1.FieldN != nil { return false } if !bytes.Equal(this.FieldO, that1.FieldO) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinRepNative) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinRepNative") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinRepNative but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinRepNative but is not nil && this == nil") } if len(this.FieldA) != len(that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", len(this.FieldA), len(that1.FieldA)) } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { return fmt.Errorf("FieldA this[%v](%v) Not Equal that[%v](%v)", i, this.FieldA[i], i, that1.FieldA[i]) } } if len(this.FieldB) != len(that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", len(this.FieldB), len(that1.FieldB)) } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return fmt.Errorf("FieldB this[%v](%v) Not Equal that[%v](%v)", i, this.FieldB[i], i, that1.FieldB[i]) } } if len(this.FieldC) != len(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", len(this.FieldC), len(that1.FieldC)) } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { return fmt.Errorf("FieldC this[%v](%v) Not Equal that[%v](%v)", i, this.FieldC[i], i, that1.FieldC[i]) } } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if len(this.FieldE) != len(that1.FieldE) { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", len(this.FieldE), len(that1.FieldE)) } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { return fmt.Errorf("FieldE this[%v](%v) Not Equal that[%v](%v)", i, this.FieldE[i], i, that1.FieldE[i]) } } if len(this.FieldF) != len(that1.FieldF) { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", len(this.FieldF), len(that1.FieldF)) } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { return fmt.Errorf("FieldF this[%v](%v) Not Equal that[%v](%v)", i, this.FieldF[i], i, that1.FieldF[i]) } } if len(this.FieldG) != len(that1.FieldG) { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", len(this.FieldG), len(that1.FieldG)) } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { return fmt.Errorf("FieldG this[%v](%v) Not Equal that[%v](%v)", i, this.FieldG[i], i, that1.FieldG[i]) } } if len(this.FieldH) != len(that1.FieldH) { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", len(this.FieldH), len(that1.FieldH)) } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { return fmt.Errorf("FieldH this[%v](%v) Not Equal that[%v](%v)", i, this.FieldH[i], i, that1.FieldH[i]) } } if len(this.FieldI) != len(that1.FieldI) { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", len(this.FieldI), len(that1.FieldI)) } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { return fmt.Errorf("FieldI this[%v](%v) Not Equal that[%v](%v)", i, this.FieldI[i], i, that1.FieldI[i]) } } if len(this.FieldJ) != len(that1.FieldJ) { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", len(this.FieldJ), len(that1.FieldJ)) } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { return fmt.Errorf("FieldJ this[%v](%v) Not Equal that[%v](%v)", i, this.FieldJ[i], i, that1.FieldJ[i]) } } if len(this.FieldK) != len(that1.FieldK) { return fmt.Errorf("FieldK this(%v) Not Equal that(%v)", len(this.FieldK), len(that1.FieldK)) } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { return fmt.Errorf("FieldK this[%v](%v) Not Equal that[%v](%v)", i, this.FieldK[i], i, that1.FieldK[i]) } } if len(this.FieldL) != len(that1.FieldL) { return fmt.Errorf("FieldL this(%v) Not Equal that(%v)", len(this.FieldL), len(that1.FieldL)) } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { return fmt.Errorf("FieldL this[%v](%v) Not Equal that[%v](%v)", i, this.FieldL[i], i, that1.FieldL[i]) } } if len(this.FieldM) != len(that1.FieldM) { return fmt.Errorf("FieldM this(%v) Not Equal that(%v)", len(this.FieldM), len(that1.FieldM)) } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { return fmt.Errorf("FieldM this[%v](%v) Not Equal that[%v](%v)", i, this.FieldM[i], i, that1.FieldM[i]) } } if len(this.FieldN) != len(that1.FieldN) { return fmt.Errorf("FieldN this(%v) Not Equal that(%v)", len(this.FieldN), len(that1.FieldN)) } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { return fmt.Errorf("FieldN this[%v](%v) Not Equal that[%v](%v)", i, this.FieldN[i], i, that1.FieldN[i]) } } if len(this.FieldO) != len(that1.FieldO) { return fmt.Errorf("FieldO this(%v) Not Equal that(%v)", len(this.FieldO), len(that1.FieldO)) } for i := range this.FieldO { if !bytes.Equal(this.FieldO[i], that1.FieldO[i]) { return fmt.Errorf("FieldO this[%v](%v) Not Equal that[%v](%v)", i, this.FieldO[i], i, that1.FieldO[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinRepNative) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinRepNative) if !ok { that2, ok := that.(CustomNameNinRepNative) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.FieldA) != len(that1.FieldA) { return false } for i := range this.FieldA { if this.FieldA[i] != that1.FieldA[i] { return false } } if len(this.FieldB) != len(that1.FieldB) { return false } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return false } } if len(this.FieldC) != len(that1.FieldC) { return false } for i := range this.FieldC { if this.FieldC[i] != that1.FieldC[i] { return false } } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if this.FieldD[i] != that1.FieldD[i] { return false } } if len(this.FieldE) != len(that1.FieldE) { return false } for i := range this.FieldE { if this.FieldE[i] != that1.FieldE[i] { return false } } if len(this.FieldF) != len(that1.FieldF) { return false } for i := range this.FieldF { if this.FieldF[i] != that1.FieldF[i] { return false } } if len(this.FieldG) != len(that1.FieldG) { return false } for i := range this.FieldG { if this.FieldG[i] != that1.FieldG[i] { return false } } if len(this.FieldH) != len(that1.FieldH) { return false } for i := range this.FieldH { if this.FieldH[i] != that1.FieldH[i] { return false } } if len(this.FieldI) != len(that1.FieldI) { return false } for i := range this.FieldI { if this.FieldI[i] != that1.FieldI[i] { return false } } if len(this.FieldJ) != len(that1.FieldJ) { return false } for i := range this.FieldJ { if this.FieldJ[i] != that1.FieldJ[i] { return false } } if len(this.FieldK) != len(that1.FieldK) { return false } for i := range this.FieldK { if this.FieldK[i] != that1.FieldK[i] { return false } } if len(this.FieldL) != len(that1.FieldL) { return false } for i := range this.FieldL { if this.FieldL[i] != that1.FieldL[i] { return false } } if len(this.FieldM) != len(that1.FieldM) { return false } for i := range this.FieldM { if this.FieldM[i] != that1.FieldM[i] { return false } } if len(this.FieldN) != len(that1.FieldN) { return false } for i := range this.FieldN { if this.FieldN[i] != that1.FieldN[i] { return false } } if len(this.FieldO) != len(that1.FieldO) { return false } for i := range this.FieldO { if !bytes.Equal(this.FieldO[i], that1.FieldO[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinStruct) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinStruct") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinStruct but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinStruct but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if !this.FieldC.Equal(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", this.FieldC, that1.FieldC) } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", *this.FieldE, *that1.FieldE) } } else if this.FieldE != nil { return fmt.Errorf("this.FieldE == nil && that.FieldE != nil") } else if that1.FieldE != nil { return fmt.Errorf("FieldE this(%v) Not Equal that(%v)", this.FieldE, that1.FieldE) } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", *this.FieldF, *that1.FieldF) } } else if this.FieldF != nil { return fmt.Errorf("this.FieldF == nil && that.FieldF != nil") } else if that1.FieldF != nil { return fmt.Errorf("FieldF this(%v) Not Equal that(%v)", this.FieldF, that1.FieldF) } if !this.FieldG.Equal(that1.FieldG) { return fmt.Errorf("FieldG this(%v) Not Equal that(%v)", this.FieldG, that1.FieldG) } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", *this.FieldH, *that1.FieldH) } } else if this.FieldH != nil { return fmt.Errorf("this.FieldH == nil && that.FieldH != nil") } else if that1.FieldH != nil { return fmt.Errorf("FieldH this(%v) Not Equal that(%v)", this.FieldH, that1.FieldH) } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", *this.FieldI, *that1.FieldI) } } else if this.FieldI != nil { return fmt.Errorf("this.FieldI == nil && that.FieldI != nil") } else if that1.FieldI != nil { return fmt.Errorf("FieldI this(%v) Not Equal that(%v)", this.FieldI, that1.FieldI) } if !bytes.Equal(this.FieldJ, that1.FieldJ) { return fmt.Errorf("FieldJ this(%v) Not Equal that(%v)", this.FieldJ, that1.FieldJ) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinStruct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinStruct) if !ok { that2, ok := that.(CustomNameNinStruct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if !this.FieldC.Equal(that1.FieldC) { return false } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return false } } if this.FieldE != nil && that1.FieldE != nil { if *this.FieldE != *that1.FieldE { return false } } else if this.FieldE != nil { return false } else if that1.FieldE != nil { return false } if this.FieldF != nil && that1.FieldF != nil { if *this.FieldF != *that1.FieldF { return false } } else if this.FieldF != nil { return false } else if that1.FieldF != nil { return false } if !this.FieldG.Equal(that1.FieldG) { return false } if this.FieldH != nil && that1.FieldH != nil { if *this.FieldH != *that1.FieldH { return false } } else if this.FieldH != nil { return false } else if that1.FieldH != nil { return false } if this.FieldI != nil && that1.FieldI != nil { if *this.FieldI != *that1.FieldI { return false } } else if this.FieldI != nil { return false } else if that1.FieldI != nil { return false } if !bytes.Equal(this.FieldJ, that1.FieldJ) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameCustomType but is not nil && this == nil") } if that1.FieldA == nil { if this.FieldA != nil { return fmt.Errorf("this.FieldA != nil && that1.FieldA == nil") } } else if !this.FieldA.Equal(*that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if that1.FieldB == nil { if this.FieldB != nil { return fmt.Errorf("this.FieldB != nil && that1.FieldB == nil") } } else if !this.FieldB.Equal(*that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if len(this.FieldC) != len(that1.FieldC) { return fmt.Errorf("FieldC this(%v) Not Equal that(%v)", len(this.FieldC), len(that1.FieldC)) } for i := range this.FieldC { if !this.FieldC[i].Equal(that1.FieldC[i]) { return fmt.Errorf("FieldC this[%v](%v) Not Equal that[%v](%v)", i, this.FieldC[i], i, that1.FieldC[i]) } } if len(this.FieldD) != len(that1.FieldD) { return fmt.Errorf("FieldD this(%v) Not Equal that(%v)", len(this.FieldD), len(that1.FieldD)) } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return fmt.Errorf("FieldD this[%v](%v) Not Equal that[%v](%v)", i, this.FieldD[i], i, that1.FieldD[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameCustomType) if !ok { that2, ok := that.(CustomNameCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.FieldA == nil { if this.FieldA != nil { return false } } else if !this.FieldA.Equal(*that1.FieldA) { return false } if that1.FieldB == nil { if this.FieldB != nil { return false } } else if !this.FieldB.Equal(*that1.FieldB) { return false } if len(this.FieldC) != len(that1.FieldC) { return false } for i := range this.FieldC { if !this.FieldC[i].Equal(that1.FieldC[i]) { return false } } if len(this.FieldD) != len(that1.FieldD) { return false } for i := range this.FieldD { if !this.FieldD[i].Equal(that1.FieldD[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameNinEmbeddedStructUnion) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameNinEmbeddedStructUnion") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameNinEmbeddedStructUnion but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameNinEmbeddedStructUnion but is not nil && this == nil") } if !this.NidOptNative.Equal(that1.NidOptNative) { return fmt.Errorf("NidOptNative this(%v) Not Equal that(%v)", this.NidOptNative, that1.NidOptNative) } if !this.FieldA.Equal(that1.FieldA) { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", *this.FieldB, *that1.FieldB) } } else if this.FieldB != nil { return fmt.Errorf("this.FieldB == nil && that.FieldB != nil") } else if that1.FieldB != nil { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", this.FieldB, that1.FieldB) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameNinEmbeddedStructUnion) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameNinEmbeddedStructUnion) if !ok { that2, ok := that.(CustomNameNinEmbeddedStructUnion) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NidOptNative.Equal(that1.NidOptNative) { return false } if !this.FieldA.Equal(that1.FieldA) { return false } if this.FieldB != nil && that1.FieldB != nil { if *this.FieldB != *that1.FieldB { return false } } else if this.FieldB != nil { return false } else if that1.FieldB != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *CustomNameEnum) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *CustomNameEnum") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *CustomNameEnum but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *CustomNameEnum but is not nil && this == nil") } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", *this.FieldA, *that1.FieldA) } } else if this.FieldA != nil { return fmt.Errorf("this.FieldA == nil && that.FieldA != nil") } else if that1.FieldA != nil { return fmt.Errorf("FieldA this(%v) Not Equal that(%v)", this.FieldA, that1.FieldA) } if len(this.FieldB) != len(that1.FieldB) { return fmt.Errorf("FieldB this(%v) Not Equal that(%v)", len(this.FieldB), len(that1.FieldB)) } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return fmt.Errorf("FieldB this[%v](%v) Not Equal that[%v](%v)", i, this.FieldB[i], i, that1.FieldB[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *CustomNameEnum) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*CustomNameEnum) if !ok { that2, ok := that.(CustomNameEnum) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.FieldA != nil && that1.FieldA != nil { if *this.FieldA != *that1.FieldA { return false } } else if this.FieldA != nil { return false } else if that1.FieldA != nil { return false } if len(this.FieldB) != len(that1.FieldB) { return false } for i := range this.FieldB { if this.FieldB[i] != that1.FieldB[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NoExtensionsMap) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NoExtensionsMap") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NoExtensionsMap but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NoExtensionsMap but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return fmt.Errorf("XXX_extensions this(%v) Not Equal that(%v)", this.XXX_extensions, that1.XXX_extensions) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NoExtensionsMap) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NoExtensionsMap) if !ok { that2, ok := that.(NoExtensionsMap) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if !bytes.Equal(this.XXX_extensions, that1.XXX_extensions) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Unrecognized) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Unrecognized") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Unrecognized but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Unrecognized but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *Unrecognized) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Unrecognized) if !ok { that2, ok := that.(Unrecognized) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *UnrecognizedWithInner) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithInner") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithInner but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithInner but is not nil && this == nil") } if len(this.Embedded) != len(that1.Embedded) { return fmt.Errorf("Embedded this(%v) Not Equal that(%v)", len(this.Embedded), len(that1.Embedded)) } for i := range this.Embedded { if !this.Embedded[i].Equal(that1.Embedded[i]) { return fmt.Errorf("Embedded this[%v](%v) Not Equal that[%v](%v)", i, this.Embedded[i], i, that1.Embedded[i]) } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *UnrecognizedWithInner) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithInner) if !ok { that2, ok := that.(UnrecognizedWithInner) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Embedded) != len(that1.Embedded) { return false } for i := range this.Embedded { if !this.Embedded[i].Equal(that1.Embedded[i]) { return false } } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *UnrecognizedWithInner_Inner) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithInner_Inner") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithInner_Inner but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithInner_Inner but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *UnrecognizedWithInner_Inner) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithInner_Inner) if !ok { that2, ok := that.(UnrecognizedWithInner_Inner) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *UnrecognizedWithEmbed) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithEmbed") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithEmbed but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithEmbed but is not nil && this == nil") } if !this.UnrecognizedWithEmbed_Embedded.Equal(&that1.UnrecognizedWithEmbed_Embedded) { return fmt.Errorf("UnrecognizedWithEmbed_Embedded this(%v) Not Equal that(%v)", this.UnrecognizedWithEmbed_Embedded, that1.UnrecognizedWithEmbed_Embedded) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *UnrecognizedWithEmbed) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithEmbed) if !ok { that2, ok := that.(UnrecognizedWithEmbed) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.UnrecognizedWithEmbed_Embedded.Equal(&that1.UnrecognizedWithEmbed_Embedded) { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *UnrecognizedWithEmbed_Embedded) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnrecognizedWithEmbed_Embedded") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnrecognizedWithEmbed_Embedded but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnrecognizedWithEmbed_Embedded but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } return nil } func (this *UnrecognizedWithEmbed_Embedded) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnrecognizedWithEmbed_Embedded) if !ok { that2, ok := that.(UnrecognizedWithEmbed_Embedded) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } return true } func (this *Node) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Node") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Node but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Node but is not nil && this == nil") } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { return fmt.Errorf("Label this(%v) Not Equal that(%v)", *this.Label, *that1.Label) } } else if this.Label != nil { return fmt.Errorf("this.Label == nil && that.Label != nil") } else if that1.Label != nil { return fmt.Errorf("Label this(%v) Not Equal that(%v)", this.Label, that1.Label) } if len(this.Children) != len(that1.Children) { return fmt.Errorf("Children this(%v) Not Equal that(%v)", len(this.Children), len(that1.Children)) } for i := range this.Children { if !this.Children[i].Equal(that1.Children[i]) { return fmt.Errorf("Children this[%v](%v) Not Equal that[%v](%v)", i, this.Children[i], i, that1.Children[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Node) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Node) if !ok { that2, ok := that.(Node) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Label != nil && that1.Label != nil { if *this.Label != *that1.Label { return false } } else if this.Label != nil { return false } else if that1.Label != nil { return false } if len(this.Children) != len(that1.Children) { return false } for i := range this.Children { if !this.Children[i].Equal(that1.Children[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NonByteCustomType but is not nil && this == nil") } if that1.Field1 == nil { if this.Field1 != nil { return fmt.Errorf("this.Field1 != nil && that1.Field1 == nil") } } else if !this.Field1.Equal(*that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NonByteCustomType) if !ok { that2, ok := that.(NonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Field1 == nil { if this.Field1 != nil { return false } } else if !this.Field1.Equal(*that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidOptNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidOptNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidOptNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidOptNonByteCustomType but is not nil && this == nil") } if !this.Field1.Equal(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidOptNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidOptNonByteCustomType) if !ok { that2, ok := that.(NidOptNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Field1.Equal(that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinOptNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinOptNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinOptNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinOptNonByteCustomType but is not nil && this == nil") } if that1.Field1 == nil { if this.Field1 != nil { return fmt.Errorf("this.Field1 != nil && that1.Field1 == nil") } } else if !this.Field1.Equal(*that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinOptNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinOptNonByteCustomType) if !ok { that2, ok := that.(NinOptNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Field1 == nil { if this.Field1 != nil { return false } } else if !this.Field1.Equal(*that1.Field1) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NidRepNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NidRepNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NidRepNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NidRepNonByteCustomType but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NidRepNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NidRepNonByteCustomType) if !ok { that2, ok := that.(NidRepNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NinRepNonByteCustomType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NinRepNonByteCustomType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NinRepNonByteCustomType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NinRepNonByteCustomType but is not nil && this == nil") } if len(this.Field1) != len(that1.Field1) { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1)) } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NinRepNonByteCustomType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NinRepNonByteCustomType) if !ok { that2, ok := that.(NinRepNonByteCustomType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field1) != len(that1.Field1) { return false } for i := range this.Field1 { if !this.Field1[i].Equal(that1.Field1[i]) { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *ProtoType) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ProtoType") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ProtoType but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ProtoType but is not nil && this == nil") } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *ProtoType) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ProtoType) if !ok { that2, ok := that.(ProtoType) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } type NidOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() float64 GetField2() float32 GetField3() int32 GetField4() int64 GetField5() uint32 GetField6() uint64 GetField7() int32 GetField8() int64 GetField9() uint32 GetField10() int32 GetField11() uint64 GetField12() int64 GetField13() bool GetField14() string GetField15() []byte } func (this *NidOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptNativeFromFace(this) } func (this *NidOptNative) GetField1() float64 { return this.Field1 } func (this *NidOptNative) GetField2() float32 { return this.Field2 } func (this *NidOptNative) GetField3() int32 { return this.Field3 } func (this *NidOptNative) GetField4() int64 { return this.Field4 } func (this *NidOptNative) GetField5() uint32 { return this.Field5 } func (this *NidOptNative) GetField6() uint64 { return this.Field6 } func (this *NidOptNative) GetField7() int32 { return this.Field7 } func (this *NidOptNative) GetField8() int64 { return this.Field8 } func (this *NidOptNative) GetField9() uint32 { return this.Field9 } func (this *NidOptNative) GetField10() int32 { return this.Field10 } func (this *NidOptNative) GetField11() uint64 { return this.Field11 } func (this *NidOptNative) GetField12() int64 { return this.Field12 } func (this *NidOptNative) GetField13() bool { return this.Field13 } func (this *NidOptNative) GetField14() string { return this.Field14 } func (this *NidOptNative) GetField15() []byte { return this.Field15 } func NewNidOptNativeFromFace(that NidOptNativeFace) *NidOptNative { this := &NidOptNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *int32 GetField4() *int64 GetField5() *uint32 GetField6() *uint64 GetField7() *int32 GetField8() *int64 GetField9() *uint32 GetField10() *int32 GetField11() *uint64 GetField12() *int64 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNativeFromFace(this) } func (this *NinOptNative) GetField1() *float64 { return this.Field1 } func (this *NinOptNative) GetField2() *float32 { return this.Field2 } func (this *NinOptNative) GetField3() *int32 { return this.Field3 } func (this *NinOptNative) GetField4() *int64 { return this.Field4 } func (this *NinOptNative) GetField5() *uint32 { return this.Field5 } func (this *NinOptNative) GetField6() *uint64 { return this.Field6 } func (this *NinOptNative) GetField7() *int32 { return this.Field7 } func (this *NinOptNative) GetField8() *int64 { return this.Field8 } func (this *NinOptNative) GetField9() *uint32 { return this.Field9 } func (this *NinOptNative) GetField10() *int32 { return this.Field10 } func (this *NinOptNative) GetField11() *uint64 { return this.Field11 } func (this *NinOptNative) GetField12() *int64 { return this.Field12 } func (this *NinOptNative) GetField13() *bool { return this.Field13 } func (this *NinOptNative) GetField14() *string { return this.Field14 } func (this *NinOptNative) GetField15() []byte { return this.Field15 } func NewNinOptNativeFromFace(that NinOptNativeFace) *NinOptNative { this := &NinOptNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NidRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepNativeFromFace(this) } func (this *NidRepNative) GetField1() []float64 { return this.Field1 } func (this *NidRepNative) GetField2() []float32 { return this.Field2 } func (this *NidRepNative) GetField3() []int32 { return this.Field3 } func (this *NidRepNative) GetField4() []int64 { return this.Field4 } func (this *NidRepNative) GetField5() []uint32 { return this.Field5 } func (this *NidRepNative) GetField6() []uint64 { return this.Field6 } func (this *NidRepNative) GetField7() []int32 { return this.Field7 } func (this *NidRepNative) GetField8() []int64 { return this.Field8 } func (this *NidRepNative) GetField9() []uint32 { return this.Field9 } func (this *NidRepNative) GetField10() []int32 { return this.Field10 } func (this *NidRepNative) GetField11() []uint64 { return this.Field11 } func (this *NidRepNative) GetField12() []int64 { return this.Field12 } func (this *NidRepNative) GetField13() []bool { return this.Field13 } func (this *NidRepNative) GetField14() []string { return this.Field14 } func (this *NidRepNative) GetField15() [][]byte { return this.Field15 } func NewNidRepNativeFromFace(that NidRepNativeFace) *NidRepNative { this := &NidRepNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NinRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepNativeFromFace(this) } func (this *NinRepNative) GetField1() []float64 { return this.Field1 } func (this *NinRepNative) GetField2() []float32 { return this.Field2 } func (this *NinRepNative) GetField3() []int32 { return this.Field3 } func (this *NinRepNative) GetField4() []int64 { return this.Field4 } func (this *NinRepNative) GetField5() []uint32 { return this.Field5 } func (this *NinRepNative) GetField6() []uint64 { return this.Field6 } func (this *NinRepNative) GetField7() []int32 { return this.Field7 } func (this *NinRepNative) GetField8() []int64 { return this.Field8 } func (this *NinRepNative) GetField9() []uint32 { return this.Field9 } func (this *NinRepNative) GetField10() []int32 { return this.Field10 } func (this *NinRepNative) GetField11() []uint64 { return this.Field11 } func (this *NinRepNative) GetField12() []int64 { return this.Field12 } func (this *NinRepNative) GetField13() []bool { return this.Field13 } func (this *NinRepNative) GetField14() []string { return this.Field14 } func (this *NinRepNative) GetField15() [][]byte { return this.Field15 } func NewNinRepNativeFromFace(that NinRepNativeFace) *NinRepNative { this := &NinRepNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepPackedNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool } func (this *NidRepPackedNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepPackedNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepPackedNativeFromFace(this) } func (this *NidRepPackedNative) GetField1() []float64 { return this.Field1 } func (this *NidRepPackedNative) GetField2() []float32 { return this.Field2 } func (this *NidRepPackedNative) GetField3() []int32 { return this.Field3 } func (this *NidRepPackedNative) GetField4() []int64 { return this.Field4 } func (this *NidRepPackedNative) GetField5() []uint32 { return this.Field5 } func (this *NidRepPackedNative) GetField6() []uint64 { return this.Field6 } func (this *NidRepPackedNative) GetField7() []int32 { return this.Field7 } func (this *NidRepPackedNative) GetField8() []int64 { return this.Field8 } func (this *NidRepPackedNative) GetField9() []uint32 { return this.Field9 } func (this *NidRepPackedNative) GetField10() []int32 { return this.Field10 } func (this *NidRepPackedNative) GetField11() []uint64 { return this.Field11 } func (this *NidRepPackedNative) GetField12() []int64 { return this.Field12 } func (this *NidRepPackedNative) GetField13() []bool { return this.Field13 } func NewNidRepPackedNativeFromFace(that NidRepPackedNativeFace) *NidRepPackedNative { this := &NidRepPackedNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() return this } type NinRepPackedNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []int32 GetField4() []int64 GetField5() []uint32 GetField6() []uint64 GetField7() []int32 GetField8() []int64 GetField9() []uint32 GetField10() []int32 GetField11() []uint64 GetField12() []int64 GetField13() []bool } func (this *NinRepPackedNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepPackedNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepPackedNativeFromFace(this) } func (this *NinRepPackedNative) GetField1() []float64 { return this.Field1 } func (this *NinRepPackedNative) GetField2() []float32 { return this.Field2 } func (this *NinRepPackedNative) GetField3() []int32 { return this.Field3 } func (this *NinRepPackedNative) GetField4() []int64 { return this.Field4 } func (this *NinRepPackedNative) GetField5() []uint32 { return this.Field5 } func (this *NinRepPackedNative) GetField6() []uint64 { return this.Field6 } func (this *NinRepPackedNative) GetField7() []int32 { return this.Field7 } func (this *NinRepPackedNative) GetField8() []int64 { return this.Field8 } func (this *NinRepPackedNative) GetField9() []uint32 { return this.Field9 } func (this *NinRepPackedNative) GetField10() []int32 { return this.Field10 } func (this *NinRepPackedNative) GetField11() []uint64 { return this.Field11 } func (this *NinRepPackedNative) GetField12() []int64 { return this.Field12 } func (this *NinRepPackedNative) GetField13() []bool { return this.Field13 } func NewNinRepPackedNativeFromFace(that NinRepPackedNativeFace) *NinRepPackedNative { this := &NinRepPackedNative{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field9 = that.GetField9() this.Field10 = that.GetField10() this.Field11 = that.GetField11() this.Field12 = that.GetField12() this.Field13 = that.GetField13() return this } type NidOptStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() float64 GetField2() float32 GetField3() NidOptNative GetField4() NinOptNative GetField6() uint64 GetField7() int32 GetField8() NidOptNative GetField13() bool GetField14() string GetField15() []byte } func (this *NidOptStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptStructFromFace(this) } func (this *NidOptStruct) GetField1() float64 { return this.Field1 } func (this *NidOptStruct) GetField2() float32 { return this.Field2 } func (this *NidOptStruct) GetField3() NidOptNative { return this.Field3 } func (this *NidOptStruct) GetField4() NinOptNative { return this.Field4 } func (this *NidOptStruct) GetField6() uint64 { return this.Field6 } func (this *NidOptStruct) GetField7() int32 { return this.Field7 } func (this *NidOptStruct) GetField8() NidOptNative { return this.Field8 } func (this *NidOptStruct) GetField13() bool { return this.Field13 } func (this *NidOptStruct) GetField14() string { return this.Field14 } func (this *NidOptStruct) GetField15() []byte { return this.Field15 } func NewNidOptStructFromFace(that NidOptStructFace) *NidOptStruct { this := &NidOptStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *NidOptNative GetField4() *NinOptNative GetField6() *uint64 GetField7() *int32 GetField8() *NidOptNative GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptStructFromFace(this) } func (this *NinOptStruct) GetField1() *float64 { return this.Field1 } func (this *NinOptStruct) GetField2() *float32 { return this.Field2 } func (this *NinOptStruct) GetField3() *NidOptNative { return this.Field3 } func (this *NinOptStruct) GetField4() *NinOptNative { return this.Field4 } func (this *NinOptStruct) GetField6() *uint64 { return this.Field6 } func (this *NinOptStruct) GetField7() *int32 { return this.Field7 } func (this *NinOptStruct) GetField8() *NidOptNative { return this.Field8 } func (this *NinOptStruct) GetField13() *bool { return this.Field13 } func (this *NinOptStruct) GetField14() *string { return this.Field14 } func (this *NinOptStruct) GetField15() []byte { return this.Field15 } func NewNinOptStructFromFace(that NinOptStructFace) *NinOptStruct { this := &NinOptStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidRepStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []NidOptNative GetField4() []NinOptNative GetField6() []uint64 GetField7() []int32 GetField8() []NidOptNative GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NidRepStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepStructFromFace(this) } func (this *NidRepStruct) GetField1() []float64 { return this.Field1 } func (this *NidRepStruct) GetField2() []float32 { return this.Field2 } func (this *NidRepStruct) GetField3() []NidOptNative { return this.Field3 } func (this *NidRepStruct) GetField4() []NinOptNative { return this.Field4 } func (this *NidRepStruct) GetField6() []uint64 { return this.Field6 } func (this *NidRepStruct) GetField7() []int32 { return this.Field7 } func (this *NidRepStruct) GetField8() []NidOptNative { return this.Field8 } func (this *NidRepStruct) GetField13() []bool { return this.Field13 } func (this *NidRepStruct) GetField14() []string { return this.Field14 } func (this *NidRepStruct) GetField15() [][]byte { return this.Field15 } func NewNidRepStructFromFace(that NidRepStructFace) *NidRepStruct { this := &NidRepStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinRepStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []float64 GetField2() []float32 GetField3() []*NidOptNative GetField4() []*NinOptNative GetField6() []uint64 GetField7() []int32 GetField8() []*NidOptNative GetField13() []bool GetField14() []string GetField15() [][]byte } func (this *NinRepStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepStructFromFace(this) } func (this *NinRepStruct) GetField1() []float64 { return this.Field1 } func (this *NinRepStruct) GetField2() []float32 { return this.Field2 } func (this *NinRepStruct) GetField3() []*NidOptNative { return this.Field3 } func (this *NinRepStruct) GetField4() []*NinOptNative { return this.Field4 } func (this *NinRepStruct) GetField6() []uint64 { return this.Field6 } func (this *NinRepStruct) GetField7() []int32 { return this.Field7 } func (this *NinRepStruct) GetField8() []*NidOptNative { return this.Field8 } func (this *NinRepStruct) GetField13() []bool { return this.Field13 } func (this *NinRepStruct) GetField14() []string { return this.Field14 } func (this *NinRepStruct) GetField15() [][]byte { return this.Field15 } func NewNinRepStructFromFace(that NinRepStructFace) *NinRepStruct { this := &NinRepStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field8 = that.GetField8() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NidEmbeddedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() NidOptNative GetField210() bool } func (this *NidEmbeddedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidEmbeddedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidEmbeddedStructFromFace(this) } func (this *NidEmbeddedStruct) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NidEmbeddedStruct) GetField200() NidOptNative { return this.Field200 } func (this *NidEmbeddedStruct) GetField210() bool { return this.Field210 } func NewNidEmbeddedStructFromFace(that NidEmbeddedStructFace) *NidEmbeddedStruct { this := &NidEmbeddedStruct{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NinEmbeddedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() *NidOptNative GetField210() *bool } func (this *NinEmbeddedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinEmbeddedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinEmbeddedStructFromFace(this) } func (this *NinEmbeddedStruct) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NinEmbeddedStruct) GetField200() *NidOptNative { return this.Field200 } func (this *NinEmbeddedStruct) GetField210() *bool { return this.Field210 } func NewNinEmbeddedStructFromFace(that NinEmbeddedStructFace) *NinEmbeddedStruct { this := &NinEmbeddedStruct{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NidNestedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() NidOptStruct GetField2() []NidRepStruct } func (this *NidNestedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidNestedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidNestedStructFromFace(this) } func (this *NidNestedStruct) GetField1() NidOptStruct { return this.Field1 } func (this *NidNestedStruct) GetField2() []NidRepStruct { return this.Field2 } func NewNidNestedStructFromFace(that NidNestedStructFace) *NidNestedStruct { this := &NidNestedStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() return this } type NinNestedStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *NinOptStruct GetField2() []*NinRepStruct } func (this *NinNestedStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinNestedStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinNestedStructFromFace(this) } func (this *NinNestedStruct) GetField1() *NinOptStruct { return this.Field1 } func (this *NinNestedStruct) GetField2() []*NinRepStruct { return this.Field2 } func NewNinNestedStructFromFace(that NinNestedStructFace) *NinNestedStruct { this := &NinNestedStruct{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() return this } type NidOptCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() Uuid GetValue() github_com_gogo_protobuf_test_custom.Uint128 } func (this *NidOptCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptCustomFromFace(this) } func (this *NidOptCustom) GetId() Uuid { return this.Id } func (this *NidOptCustom) GetValue() github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNidOptCustomFromFace(that NidOptCustomFace) *NidOptCustom { this := &NidOptCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type CustomDashFace interface { Proto() github_com_gogo_protobuf_proto.Message GetValue() *github_com_gogo_protobuf_test_custom_dash_type.Bytes } func (this *CustomDash) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomDash) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomDashFromFace(this) } func (this *CustomDash) GetValue() *github_com_gogo_protobuf_test_custom_dash_type.Bytes { return this.Value } func NewCustomDashFromFace(that CustomDashFace) *CustomDash { this := &CustomDash{} this.Value = that.GetValue() return this } type NinOptCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() *Uuid GetValue() *github_com_gogo_protobuf_test_custom.Uint128 } func (this *NinOptCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptCustomFromFace(this) } func (this *NinOptCustom) GetId() *Uuid { return this.Id } func (this *NinOptCustom) GetValue() *github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNinOptCustomFromFace(that NinOptCustomFace) *NinOptCustom { this := &NinOptCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NidRepCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() []Uuid GetValue() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *NidRepCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepCustomFromFace(this) } func (this *NidRepCustom) GetId() []Uuid { return this.Id } func (this *NidRepCustom) GetValue() []github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNidRepCustomFromFace(that NidRepCustomFace) *NidRepCustom { this := &NidRepCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NinRepCustomFace interface { Proto() github_com_gogo_protobuf_proto.Message GetId() []Uuid GetValue() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *NinRepCustom) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepCustom) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepCustomFromFace(this) } func (this *NinRepCustom) GetId() []Uuid { return this.Id } func (this *NinRepCustom) GetValue() []github_com_gogo_protobuf_test_custom.Uint128 { return this.Value } func NewNinRepCustomFromFace(that NinRepCustomFace) *NinRepCustom { this := &NinRepCustom{} this.Id = that.GetId() this.Value = that.GetValue() return this } type NinOptNativeUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *int32 GetField4() *int64 GetField5() *uint32 GetField6() *uint64 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptNativeUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNativeUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNativeUnionFromFace(this) } func (this *NinOptNativeUnion) GetField1() *float64 { return this.Field1 } func (this *NinOptNativeUnion) GetField2() *float32 { return this.Field2 } func (this *NinOptNativeUnion) GetField3() *int32 { return this.Field3 } func (this *NinOptNativeUnion) GetField4() *int64 { return this.Field4 } func (this *NinOptNativeUnion) GetField5() *uint32 { return this.Field5 } func (this *NinOptNativeUnion) GetField6() *uint64 { return this.Field6 } func (this *NinOptNativeUnion) GetField13() *bool { return this.Field13 } func (this *NinOptNativeUnion) GetField14() *string { return this.Field14 } func (this *NinOptNativeUnion) GetField15() []byte { return this.Field15 } func NewNinOptNativeUnionFromFace(that NinOptNativeUnionFace) *NinOptNativeUnion { this := &NinOptNativeUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field5 = that.GetField5() this.Field6 = that.GetField6() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinOptStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *float64 GetField2() *float32 GetField3() *NidOptNative GetField4() *NinOptNative GetField6() *uint64 GetField7() *int32 GetField13() *bool GetField14() *string GetField15() []byte } func (this *NinOptStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptStructUnionFromFace(this) } func (this *NinOptStructUnion) GetField1() *float64 { return this.Field1 } func (this *NinOptStructUnion) GetField2() *float32 { return this.Field2 } func (this *NinOptStructUnion) GetField3() *NidOptNative { return this.Field3 } func (this *NinOptStructUnion) GetField4() *NinOptNative { return this.Field4 } func (this *NinOptStructUnion) GetField6() *uint64 { return this.Field6 } func (this *NinOptStructUnion) GetField7() *int32 { return this.Field7 } func (this *NinOptStructUnion) GetField13() *bool { return this.Field13 } func (this *NinOptStructUnion) GetField14() *string { return this.Field14 } func (this *NinOptStructUnion) GetField15() []byte { return this.Field15 } func NewNinOptStructUnionFromFace(that NinOptStructUnionFace) *NinOptStructUnion { this := &NinOptStructUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() this.Field4 = that.GetField4() this.Field6 = that.GetField6() this.Field7 = that.GetField7() this.Field13 = that.GetField13() this.Field14 = that.GetField14() this.Field15 = that.GetField15() return this } type NinEmbeddedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetField200() *NinOptNative GetField210() *bool } func (this *NinEmbeddedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinEmbeddedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinEmbeddedStructUnionFromFace(this) } func (this *NinEmbeddedStructUnion) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *NinEmbeddedStructUnion) GetField200() *NinOptNative { return this.Field200 } func (this *NinEmbeddedStructUnion) GetField210() *bool { return this.Field210 } func NewNinEmbeddedStructUnionFromFace(that NinEmbeddedStructUnionFace) *NinEmbeddedStructUnion { this := &NinEmbeddedStructUnion{} this.NidOptNative = that.GetNidOptNative() this.Field200 = that.GetField200() this.Field210 = that.GetField210() return this } type NinNestedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *NinOptNativeUnion GetField2() *NinOptStructUnion GetField3() *NinEmbeddedStructUnion } func (this *NinNestedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinNestedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinNestedStructUnionFromFace(this) } func (this *NinNestedStructUnion) GetField1() *NinOptNativeUnion { return this.Field1 } func (this *NinNestedStructUnion) GetField2() *NinOptStructUnion { return this.Field2 } func (this *NinNestedStructUnion) GetField3() *NinEmbeddedStructUnion { return this.Field3 } func NewNinNestedStructUnionFromFace(that NinNestedStructUnionFace) *NinNestedStructUnion { this := &NinNestedStructUnion{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type TreeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetOr() *OrBranch GetAnd() *AndBranch GetLeaf() *Leaf } func (this *Tree) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Tree) TestProto() github_com_gogo_protobuf_proto.Message { return NewTreeFromFace(this) } func (this *Tree) GetOr() *OrBranch { return this.Or } func (this *Tree) GetAnd() *AndBranch { return this.And } func (this *Tree) GetLeaf() *Leaf { return this.Leaf } func NewTreeFromFace(that TreeFace) *Tree { this := &Tree{} this.Or = that.GetOr() this.And = that.GetAnd() this.Leaf = that.GetLeaf() return this } type OrBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() Tree GetRight() Tree } func (this *OrBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *OrBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewOrBranchFromFace(this) } func (this *OrBranch) GetLeft() Tree { return this.Left } func (this *OrBranch) GetRight() Tree { return this.Right } func NewOrBranchFromFace(that OrBranchFace) *OrBranch { this := &OrBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type AndBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() Tree GetRight() Tree } func (this *AndBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AndBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewAndBranchFromFace(this) } func (this *AndBranch) GetLeft() Tree { return this.Left } func (this *AndBranch) GetRight() Tree { return this.Right } func NewAndBranchFromFace(that AndBranchFace) *AndBranch { this := &AndBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type LeafFace interface { Proto() github_com_gogo_protobuf_proto.Message GetValue() int64 GetStrValue() string } func (this *Leaf) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Leaf) TestProto() github_com_gogo_protobuf_proto.Message { return NewLeafFromFace(this) } func (this *Leaf) GetValue() int64 { return this.Value } func (this *Leaf) GetStrValue() string { return this.StrValue } func NewLeafFromFace(that LeafFace) *Leaf { this := &Leaf{} this.Value = that.GetValue() this.StrValue = that.GetStrValue() return this } type DeepTreeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDown() *ADeepBranch GetAnd() *AndDeepBranch GetLeaf() *DeepLeaf } func (this *DeepTree) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *DeepTree) TestProto() github_com_gogo_protobuf_proto.Message { return NewDeepTreeFromFace(this) } func (this *DeepTree) GetDown() *ADeepBranch { return this.Down } func (this *DeepTree) GetAnd() *AndDeepBranch { return this.And } func (this *DeepTree) GetLeaf() *DeepLeaf { return this.Leaf } func NewDeepTreeFromFace(that DeepTreeFace) *DeepTree { this := &DeepTree{} this.Down = that.GetDown() this.And = that.GetAnd() this.Leaf = that.GetLeaf() return this } type ADeepBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetDown() DeepTree } func (this *ADeepBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ADeepBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewADeepBranchFromFace(this) } func (this *ADeepBranch) GetDown() DeepTree { return this.Down } func NewADeepBranchFromFace(that ADeepBranchFace) *ADeepBranch { this := &ADeepBranch{} this.Down = that.GetDown() return this } type AndDeepBranchFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLeft() DeepTree GetRight() DeepTree } func (this *AndDeepBranch) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AndDeepBranch) TestProto() github_com_gogo_protobuf_proto.Message { return NewAndDeepBranchFromFace(this) } func (this *AndDeepBranch) GetLeft() DeepTree { return this.Left } func (this *AndDeepBranch) GetRight() DeepTree { return this.Right } func NewAndDeepBranchFromFace(that AndDeepBranchFace) *AndDeepBranch { this := &AndDeepBranch{} this.Left = that.GetLeft() this.Right = that.GetRight() return this } type DeepLeafFace interface { Proto() github_com_gogo_protobuf_proto.Message GetTree() Tree } func (this *DeepLeaf) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *DeepLeaf) TestProto() github_com_gogo_protobuf_proto.Message { return NewDeepLeafFromFace(this) } func (this *DeepLeaf) GetTree() Tree { return this.Tree } func NewDeepLeafFromFace(that DeepLeafFace) *DeepLeaf { this := &DeepLeaf{} this.Tree = that.GetTree() return this } type NilFace interface { Proto() github_com_gogo_protobuf_proto.Message } func (this *Nil) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Nil) TestProto() github_com_gogo_protobuf_proto.Message { return NewNilFromFace(this) } func NewNilFromFace(that NilFace) *Nil { this := &Nil{} return this } type NidOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() TheTestEnum } func (this *NidOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptEnumFromFace(this) } func (this *NidOptEnum) GetField1() TheTestEnum { return this.Field1 } func NewNidOptEnumFromFace(that NidOptEnumFace) *NidOptEnum { this := &NidOptEnum{} this.Field1 = that.GetField1() return this } type NinOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *TheTestEnum GetField2() *YetAnotherTestEnum GetField3() *YetYetAnotherTestEnum } func (this *NinOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptEnumFromFace(this) } func (this *NinOptEnum) GetField1() *TheTestEnum { return this.Field1 } func (this *NinOptEnum) GetField2() *YetAnotherTestEnum { return this.Field2 } func (this *NinOptEnum) GetField3() *YetYetAnotherTestEnum { return this.Field3 } func NewNinOptEnumFromFace(that NinOptEnumFace) *NinOptEnum { this := &NinOptEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type NidRepEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []TheTestEnum GetField2() []YetAnotherTestEnum GetField3() []YetYetAnotherTestEnum } func (this *NidRepEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepEnumFromFace(this) } func (this *NidRepEnum) GetField1() []TheTestEnum { return this.Field1 } func (this *NidRepEnum) GetField2() []YetAnotherTestEnum { return this.Field2 } func (this *NidRepEnum) GetField3() []YetYetAnotherTestEnum { return this.Field3 } func NewNidRepEnumFromFace(that NidRepEnumFace) *NidRepEnum { this := &NidRepEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type NinRepEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []TheTestEnum GetField2() []YetAnotherTestEnum GetField3() []YetYetAnotherTestEnum } func (this *NinRepEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepEnumFromFace(this) } func (this *NinRepEnum) GetField1() []TheTestEnum { return this.Field1 } func (this *NinRepEnum) GetField2() []YetAnotherTestEnum { return this.Field2 } func (this *NinRepEnum) GetField3() []YetYetAnotherTestEnum { return this.Field3 } func NewNinRepEnumFromFace(that NinRepEnumFace) *NinRepEnum { this := &NinRepEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type AnotherNinOptEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *AnotherTestEnum GetField2() *YetAnotherTestEnum GetField3() *YetYetAnotherTestEnum } func (this *AnotherNinOptEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *AnotherNinOptEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewAnotherNinOptEnumFromFace(this) } func (this *AnotherNinOptEnum) GetField1() *AnotherTestEnum { return this.Field1 } func (this *AnotherNinOptEnum) GetField2() *YetAnotherTestEnum { return this.Field2 } func (this *AnotherNinOptEnum) GetField3() *YetYetAnotherTestEnum { return this.Field3 } func NewAnotherNinOptEnumFromFace(that AnotherNinOptEnumFace) *AnotherNinOptEnum { this := &AnotherNinOptEnum{} this.Field1 = that.GetField1() this.Field2 = that.GetField2() this.Field3 = that.GetField3() return this } type TimerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetTime1() int64 GetTime2() int64 GetData() []byte } func (this *Timer) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Timer) TestProto() github_com_gogo_protobuf_proto.Message { return NewTimerFromFace(this) } func (this *Timer) GetTime1() int64 { return this.Time1 } func (this *Timer) GetTime2() int64 { return this.Time2 } func (this *Timer) GetData() []byte { return this.Data } func NewTimerFromFace(that TimerFace) *Timer { this := &Timer{} this.Time1 = that.GetTime1() this.Time2 = that.GetTime2() this.Data = that.GetData() return this } type NestedDefinitionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *int64 GetEnumField() *NestedDefinition_NestedEnum GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg GetNM() *NestedDefinition_NestedMessage } func (this *NestedDefinition) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinitionFromFace(this) } func (this *NestedDefinition) GetField1() *int64 { return this.Field1 } func (this *NestedDefinition) GetEnumField() *NestedDefinition_NestedEnum { return this.EnumField } func (this *NestedDefinition) GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.NNM } func (this *NestedDefinition) GetNM() *NestedDefinition_NestedMessage { return this.NM } func NewNestedDefinitionFromFace(that NestedDefinitionFace) *NestedDefinition { this := &NestedDefinition{} this.Field1 = that.GetField1() this.EnumField = that.GetEnumField() this.NNM = that.GetNNM() this.NM = that.GetNM() return this } type NestedDefinition_NestedMessageFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedField1() *uint64 GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg } func (this *NestedDefinition_NestedMessage) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition_NestedMessage) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinition_NestedMessageFromFace(this) } func (this *NestedDefinition_NestedMessage) GetNestedField1() *uint64 { return this.NestedField1 } func (this *NestedDefinition_NestedMessage) GetNNM() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.NNM } func NewNestedDefinition_NestedMessageFromFace(that NestedDefinition_NestedMessageFace) *NestedDefinition_NestedMessage { this := &NestedDefinition_NestedMessage{} this.NestedField1 = that.GetNestedField1() this.NNM = that.GetNNM() return this } type NestedDefinition_NestedMessage_NestedNestedMsgFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNestedNestedField1() *string } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedDefinition_NestedMessage_NestedNestedMsgFromFace(this) } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) GetNestedNestedField1() *string { return this.NestedNestedField1 } func NewNestedDefinition_NestedMessage_NestedNestedMsgFromFace(that NestedDefinition_NestedMessage_NestedNestedMsgFace) *NestedDefinition_NestedMessage_NestedNestedMsg { this := &NestedDefinition_NestedMessage_NestedNestedMsg{} this.NestedNestedField1 = that.GetNestedNestedField1() return this } type NestedScopeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetA() *NestedDefinition_NestedMessage_NestedNestedMsg GetB() *NestedDefinition_NestedEnum GetC() *NestedDefinition_NestedMessage } func (this *NestedScope) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NestedScope) TestProto() github_com_gogo_protobuf_proto.Message { return NewNestedScopeFromFace(this) } func (this *NestedScope) GetA() *NestedDefinition_NestedMessage_NestedNestedMsg { return this.A } func (this *NestedScope) GetB() *NestedDefinition_NestedEnum { return this.B } func (this *NestedScope) GetC() *NestedDefinition_NestedMessage { return this.C } func NewNestedScopeFromFace(that NestedScopeFace) *NestedScope { this := &NestedScope{} this.A = that.GetA() this.B = that.GetB() this.C = that.GetC() return this } type CustomContainerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetCustomStruct() NidOptCustom } func (this *CustomContainer) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomContainer) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomContainerFromFace(this) } func (this *CustomContainer) GetCustomStruct() NidOptCustom { return this.CustomStruct } func NewCustomContainerFromFace(that CustomContainerFace) *CustomContainer { this := &CustomContainer{} this.CustomStruct = that.GetCustomStruct() return this } type CustomNameNidOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() float64 GetFieldB() float32 GetFieldC() int32 GetFieldD() int64 GetFieldE() uint32 GetFieldF() uint64 GetFieldG() int32 GetFieldH() int64 GetFieldI() uint32 GetFieldJ() int32 GetFieldK() uint64 GetFieldL() int64 GetFieldM() bool GetFieldN() string GetFieldO() []byte } func (this *CustomNameNidOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNidOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNidOptNativeFromFace(this) } func (this *CustomNameNidOptNative) GetFieldA() float64 { return this.FieldA } func (this *CustomNameNidOptNative) GetFieldB() float32 { return this.FieldB } func (this *CustomNameNidOptNative) GetFieldC() int32 { return this.FieldC } func (this *CustomNameNidOptNative) GetFieldD() int64 { return this.FieldD } func (this *CustomNameNidOptNative) GetFieldE() uint32 { return this.FieldE } func (this *CustomNameNidOptNative) GetFieldF() uint64 { return this.FieldF } func (this *CustomNameNidOptNative) GetFieldG() int32 { return this.FieldG } func (this *CustomNameNidOptNative) GetFieldH() int64 { return this.FieldH } func (this *CustomNameNidOptNative) GetFieldI() uint32 { return this.FieldI } func (this *CustomNameNidOptNative) GetFieldJ() int32 { return this.FieldJ } func (this *CustomNameNidOptNative) GetFieldK() uint64 { return this.FieldK } func (this *CustomNameNidOptNative) GetFieldL() int64 { return this.FieldL } func (this *CustomNameNidOptNative) GetFieldM() bool { return this.FieldM } func (this *CustomNameNidOptNative) GetFieldN() string { return this.FieldN } func (this *CustomNameNidOptNative) GetFieldO() []byte { return this.FieldO } func NewCustomNameNidOptNativeFromFace(that CustomNameNidOptNativeFace) *CustomNameNidOptNative { this := &CustomNameNidOptNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FieldL = that.GetFieldL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinOptNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *float64 GetFieldB() *float32 GetFieldC() *int32 GetFieldD() *int64 GetFieldE() *uint32 GetFieldF() *uint64 GetFieldG() *int32 GetFieldH() *int64 GetFieldI() *uint32 GetFieldJ() *int32 GetFieldK() *uint64 GetFielL() *int64 GetFieldM() *bool GetFieldN() *string GetFieldO() []byte } func (this *CustomNameNinOptNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinOptNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinOptNativeFromFace(this) } func (this *CustomNameNinOptNative) GetFieldA() *float64 { return this.FieldA } func (this *CustomNameNinOptNative) GetFieldB() *float32 { return this.FieldB } func (this *CustomNameNinOptNative) GetFieldC() *int32 { return this.FieldC } func (this *CustomNameNinOptNative) GetFieldD() *int64 { return this.FieldD } func (this *CustomNameNinOptNative) GetFieldE() *uint32 { return this.FieldE } func (this *CustomNameNinOptNative) GetFieldF() *uint64 { return this.FieldF } func (this *CustomNameNinOptNative) GetFieldG() *int32 { return this.FieldG } func (this *CustomNameNinOptNative) GetFieldH() *int64 { return this.FieldH } func (this *CustomNameNinOptNative) GetFieldI() *uint32 { return this.FieldI } func (this *CustomNameNinOptNative) GetFieldJ() *int32 { return this.FieldJ } func (this *CustomNameNinOptNative) GetFieldK() *uint64 { return this.FieldK } func (this *CustomNameNinOptNative) GetFielL() *int64 { return this.FielL } func (this *CustomNameNinOptNative) GetFieldM() *bool { return this.FieldM } func (this *CustomNameNinOptNative) GetFieldN() *string { return this.FieldN } func (this *CustomNameNinOptNative) GetFieldO() []byte { return this.FieldO } func NewCustomNameNinOptNativeFromFace(that CustomNameNinOptNativeFace) *CustomNameNinOptNative { this := &CustomNameNinOptNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FielL = that.GetFielL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinRepNativeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() []float64 GetFieldB() []float32 GetFieldC() []int32 GetFieldD() []int64 GetFieldE() []uint32 GetFieldF() []uint64 GetFieldG() []int32 GetFieldH() []int64 GetFieldI() []uint32 GetFieldJ() []int32 GetFieldK() []uint64 GetFieldL() []int64 GetFieldM() []bool GetFieldN() []string GetFieldO() [][]byte } func (this *CustomNameNinRepNative) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinRepNative) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinRepNativeFromFace(this) } func (this *CustomNameNinRepNative) GetFieldA() []float64 { return this.FieldA } func (this *CustomNameNinRepNative) GetFieldB() []float32 { return this.FieldB } func (this *CustomNameNinRepNative) GetFieldC() []int32 { return this.FieldC } func (this *CustomNameNinRepNative) GetFieldD() []int64 { return this.FieldD } func (this *CustomNameNinRepNative) GetFieldE() []uint32 { return this.FieldE } func (this *CustomNameNinRepNative) GetFieldF() []uint64 { return this.FieldF } func (this *CustomNameNinRepNative) GetFieldG() []int32 { return this.FieldG } func (this *CustomNameNinRepNative) GetFieldH() []int64 { return this.FieldH } func (this *CustomNameNinRepNative) GetFieldI() []uint32 { return this.FieldI } func (this *CustomNameNinRepNative) GetFieldJ() []int32 { return this.FieldJ } func (this *CustomNameNinRepNative) GetFieldK() []uint64 { return this.FieldK } func (this *CustomNameNinRepNative) GetFieldL() []int64 { return this.FieldL } func (this *CustomNameNinRepNative) GetFieldM() []bool { return this.FieldM } func (this *CustomNameNinRepNative) GetFieldN() []string { return this.FieldN } func (this *CustomNameNinRepNative) GetFieldO() [][]byte { return this.FieldO } func NewCustomNameNinRepNativeFromFace(that CustomNameNinRepNativeFace) *CustomNameNinRepNative { this := &CustomNameNinRepNative{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() this.FieldK = that.GetFieldK() this.FieldL = that.GetFieldL() this.FieldM = that.GetFieldM() this.FieldN = that.GetFieldN() this.FieldO = that.GetFieldO() return this } type CustomNameNinStructFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *float64 GetFieldB() *float32 GetFieldC() *NidOptNative GetFieldD() []*NinOptNative GetFieldE() *uint64 GetFieldF() *int32 GetFieldG() *NidOptNative GetFieldH() *bool GetFieldI() *string GetFieldJ() []byte } func (this *CustomNameNinStruct) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinStruct) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinStructFromFace(this) } func (this *CustomNameNinStruct) GetFieldA() *float64 { return this.FieldA } func (this *CustomNameNinStruct) GetFieldB() *float32 { return this.FieldB } func (this *CustomNameNinStruct) GetFieldC() *NidOptNative { return this.FieldC } func (this *CustomNameNinStruct) GetFieldD() []*NinOptNative { return this.FieldD } func (this *CustomNameNinStruct) GetFieldE() *uint64 { return this.FieldE } func (this *CustomNameNinStruct) GetFieldF() *int32 { return this.FieldF } func (this *CustomNameNinStruct) GetFieldG() *NidOptNative { return this.FieldG } func (this *CustomNameNinStruct) GetFieldH() *bool { return this.FieldH } func (this *CustomNameNinStruct) GetFieldI() *string { return this.FieldI } func (this *CustomNameNinStruct) GetFieldJ() []byte { return this.FieldJ } func NewCustomNameNinStructFromFace(that CustomNameNinStructFace) *CustomNameNinStruct { this := &CustomNameNinStruct{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() this.FieldE = that.GetFieldE() this.FieldF = that.GetFieldF() this.FieldG = that.GetFieldG() this.FieldH = that.GetFieldH() this.FieldI = that.GetFieldI() this.FieldJ = that.GetFieldJ() return this } type CustomNameCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *Uuid GetFieldB() *github_com_gogo_protobuf_test_custom.Uint128 GetFieldC() []Uuid GetFieldD() []github_com_gogo_protobuf_test_custom.Uint128 } func (this *CustomNameCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameCustomTypeFromFace(this) } func (this *CustomNameCustomType) GetFieldA() *Uuid { return this.FieldA } func (this *CustomNameCustomType) GetFieldB() *github_com_gogo_protobuf_test_custom.Uint128 { return this.FieldB } func (this *CustomNameCustomType) GetFieldC() []Uuid { return this.FieldC } func (this *CustomNameCustomType) GetFieldD() []github_com_gogo_protobuf_test_custom.Uint128 { return this.FieldD } func NewCustomNameCustomTypeFromFace(that CustomNameCustomTypeFace) *CustomNameCustomType { this := &CustomNameCustomType{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() this.FieldC = that.GetFieldC() this.FieldD = that.GetFieldD() return this } type CustomNameNinEmbeddedStructUnionFace interface { Proto() github_com_gogo_protobuf_proto.Message GetNidOptNative() *NidOptNative GetFieldA() *NinOptNative GetFieldB() *bool } func (this *CustomNameNinEmbeddedStructUnion) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameNinEmbeddedStructUnion) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameNinEmbeddedStructUnionFromFace(this) } func (this *CustomNameNinEmbeddedStructUnion) GetNidOptNative() *NidOptNative { return this.NidOptNative } func (this *CustomNameNinEmbeddedStructUnion) GetFieldA() *NinOptNative { return this.FieldA } func (this *CustomNameNinEmbeddedStructUnion) GetFieldB() *bool { return this.FieldB } func NewCustomNameNinEmbeddedStructUnionFromFace(that CustomNameNinEmbeddedStructUnionFace) *CustomNameNinEmbeddedStructUnion { this := &CustomNameNinEmbeddedStructUnion{} this.NidOptNative = that.GetNidOptNative() this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() return this } type CustomNameEnumFace interface { Proto() github_com_gogo_protobuf_proto.Message GetFieldA() *TheTestEnum GetFieldB() []TheTestEnum } func (this *CustomNameEnum) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *CustomNameEnum) TestProto() github_com_gogo_protobuf_proto.Message { return NewCustomNameEnumFromFace(this) } func (this *CustomNameEnum) GetFieldA() *TheTestEnum { return this.FieldA } func (this *CustomNameEnum) GetFieldB() []TheTestEnum { return this.FieldB } func NewCustomNameEnumFromFace(that CustomNameEnumFace) *CustomNameEnum { this := &CustomNameEnum{} this.FieldA = that.GetFieldA() this.FieldB = that.GetFieldB() return this } type UnrecognizedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *string } func (this *Unrecognized) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Unrecognized) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedFromFace(this) } func (this *Unrecognized) GetField1() *string { return this.Field1 } func NewUnrecognizedFromFace(that UnrecognizedFace) *Unrecognized { this := &Unrecognized{} this.Field1 = that.GetField1() return this } type UnrecognizedWithInnerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetEmbedded() []*UnrecognizedWithInner_Inner GetField2() *string } func (this *UnrecognizedWithInner) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithInner) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithInnerFromFace(this) } func (this *UnrecognizedWithInner) GetEmbedded() []*UnrecognizedWithInner_Inner { return this.Embedded } func (this *UnrecognizedWithInner) GetField2() *string { return this.Field2 } func NewUnrecognizedWithInnerFromFace(that UnrecognizedWithInnerFace) *UnrecognizedWithInner { this := &UnrecognizedWithInner{} this.Embedded = that.GetEmbedded() this.Field2 = that.GetField2() return this } type UnrecognizedWithInner_InnerFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *uint32 } func (this *UnrecognizedWithInner_Inner) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithInner_Inner) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithInner_InnerFromFace(this) } func (this *UnrecognizedWithInner_Inner) GetField1() *uint32 { return this.Field1 } func NewUnrecognizedWithInner_InnerFromFace(that UnrecognizedWithInner_InnerFace) *UnrecognizedWithInner_Inner { this := &UnrecognizedWithInner_Inner{} this.Field1 = that.GetField1() return this } type UnrecognizedWithEmbedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetUnrecognizedWithEmbed_Embedded() UnrecognizedWithEmbed_Embedded GetField2() *string } func (this *UnrecognizedWithEmbed) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithEmbed) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithEmbedFromFace(this) } func (this *UnrecognizedWithEmbed) GetUnrecognizedWithEmbed_Embedded() UnrecognizedWithEmbed_Embedded { return this.UnrecognizedWithEmbed_Embedded } func (this *UnrecognizedWithEmbed) GetField2() *string { return this.Field2 } func NewUnrecognizedWithEmbedFromFace(that UnrecognizedWithEmbedFace) *UnrecognizedWithEmbed { this := &UnrecognizedWithEmbed{} this.UnrecognizedWithEmbed_Embedded = that.GetUnrecognizedWithEmbed_Embedded() this.Field2 = that.GetField2() return this } type UnrecognizedWithEmbed_EmbeddedFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *uint32 } func (this *UnrecognizedWithEmbed_Embedded) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *UnrecognizedWithEmbed_Embedded) TestProto() github_com_gogo_protobuf_proto.Message { return NewUnrecognizedWithEmbed_EmbeddedFromFace(this) } func (this *UnrecognizedWithEmbed_Embedded) GetField1() *uint32 { return this.Field1 } func NewUnrecognizedWithEmbed_EmbeddedFromFace(that UnrecognizedWithEmbed_EmbeddedFace) *UnrecognizedWithEmbed_Embedded { this := &UnrecognizedWithEmbed_Embedded{} this.Field1 = that.GetField1() return this } type NodeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetLabel() *string GetChildren() []*Node } func (this *Node) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *Node) TestProto() github_com_gogo_protobuf_proto.Message { return NewNodeFromFace(this) } func (this *Node) GetLabel() *string { return this.Label } func (this *Node) GetChildren() []*Node { return this.Children } func NewNodeFromFace(that NodeFace) *Node { this := &Node{} this.Label = that.GetLabel() this.Children = that.GetChildren() return this } type NonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *T } func (this *NonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNonByteCustomTypeFromFace(this) } func (this *NonByteCustomType) GetField1() *T { return this.Field1 } func NewNonByteCustomTypeFromFace(that NonByteCustomTypeFace) *NonByteCustomType { this := &NonByteCustomType{} this.Field1 = that.GetField1() return this } type NidOptNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() T } func (this *NidOptNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidOptNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidOptNonByteCustomTypeFromFace(this) } func (this *NidOptNonByteCustomType) GetField1() T { return this.Field1 } func NewNidOptNonByteCustomTypeFromFace(that NidOptNonByteCustomTypeFace) *NidOptNonByteCustomType { this := &NidOptNonByteCustomType{} this.Field1 = that.GetField1() return this } type NinOptNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() *T } func (this *NinOptNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinOptNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinOptNonByteCustomTypeFromFace(this) } func (this *NinOptNonByteCustomType) GetField1() *T { return this.Field1 } func NewNinOptNonByteCustomTypeFromFace(that NinOptNonByteCustomTypeFace) *NinOptNonByteCustomType { this := &NinOptNonByteCustomType{} this.Field1 = that.GetField1() return this } type NidRepNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []T } func (this *NidRepNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NidRepNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNidRepNonByteCustomTypeFromFace(this) } func (this *NidRepNonByteCustomType) GetField1() []T { return this.Field1 } func NewNidRepNonByteCustomTypeFromFace(that NidRepNonByteCustomTypeFace) *NidRepNonByteCustomType { this := &NidRepNonByteCustomType{} this.Field1 = that.GetField1() return this } type NinRepNonByteCustomTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField1() []T } func (this *NinRepNonByteCustomType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *NinRepNonByteCustomType) TestProto() github_com_gogo_protobuf_proto.Message { return NewNinRepNonByteCustomTypeFromFace(this) } func (this *NinRepNonByteCustomType) GetField1() []T { return this.Field1 } func NewNinRepNonByteCustomTypeFromFace(that NinRepNonByteCustomTypeFace) *NinRepNonByteCustomType { this := &NinRepNonByteCustomType{} this.Field1 = that.GetField1() return this } type ProtoTypeFace interface { Proto() github_com_gogo_protobuf_proto.Message GetField2() *string } func (this *ProtoType) Proto() github_com_gogo_protobuf_proto.Message { return this } func (this *ProtoType) TestProto() github_com_gogo_protobuf_proto.Message { return NewProtoTypeFromFace(this) } func (this *ProtoType) GetField2() *string { return this.Field2 } func NewProtoTypeFromFace(that ProtoTypeFace) *ProtoType { this := &ProtoType{} this.Field2 = that.GetField2() return this } func (this *NidOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NidOptNative{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinOptNative{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+valueToGoStringThetest(this.Field8, "int64")+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+valueToGoStringThetest(this.Field9, "uint32")+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+valueToGoStringThetest(this.Field10, "int32")+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+valueToGoStringThetest(this.Field11, "uint64")+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+valueToGoStringThetest(this.Field12, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NidRepNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinRepNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepPackedNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 17) s = append(s, "&test.NidRepPackedNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepPackedNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 17) s = append(s, "&test.NinRepPackedNative{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+fmt.Sprintf("%#v", this.Field9)+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+fmt.Sprintf("%#v", this.Field10)+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+fmt.Sprintf("%#v", this.Field11)+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+fmt.Sprintf("%#v", this.Field12)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NidOptStruct{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") s = append(s, "Field3: "+strings.Replace(this.Field3.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field4: "+strings.Replace(this.Field4.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") s = append(s, "Field8: "+strings.Replace(this.Field8.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NinOptStruct{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NidRepStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { vs := make([]*NidOptNative, len(this.Field3)) for i := range vs { vs[i] = &this.Field3[i] } s = append(s, "Field3: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field4 != nil { vs := make([]*NinOptNative, len(this.Field4)) for i := range vs { vs[i] = &this.Field4[i] } s = append(s, "Field4: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { vs := make([]*NidOptNative, len(this.Field8)) for i := range vs { vs[i] = &this.Field8[i] } s = append(s, "Field8: "+fmt.Sprintf("%#v", vs)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.NinRepStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+fmt.Sprintf("%#v", this.Field6)+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+fmt.Sprintf("%#v", this.Field8)+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+fmt.Sprintf("%#v", this.Field13)+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+fmt.Sprintf("%#v", this.Field14)+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+fmt.Sprintf("%#v", this.Field15)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidEmbeddedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NidEmbeddedStruct{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } s = append(s, "Field200: "+strings.Replace(this.Field200.GoString(), `&`, ``, 1)+",\n") s = append(s, "Field210: "+fmt.Sprintf("%#v", this.Field210)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinEmbeddedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinEmbeddedStruct{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.Field200 != nil { s = append(s, "Field200: "+fmt.Sprintf("%#v", this.Field200)+",\n") } if this.Field210 != nil { s = append(s, "Field210: "+valueToGoStringThetest(this.Field210, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidNestedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidNestedStruct{") s = append(s, "Field1: "+strings.Replace(this.Field1.GoString(), `&`, ``, 1)+",\n") if this.Field2 != nil { vs := make([]*NidRepStruct, len(this.Field2)) for i := range vs { vs[i] = &this.Field2[i] } s = append(s, "Field2: "+fmt.Sprintf("%#v", vs)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinNestedStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinNestedStruct{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidOptCustom{") s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomDash) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.CustomDash{") if this.Value != nil { s = append(s, "Value: "+valueToGoStringThetest(this.Value, "github_com_gogo_protobuf_test_custom_dash_type.Bytes")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinOptCustom{") if this.Id != nil { s = append(s, "Id: "+valueToGoStringThetest(this.Id, "Uuid")+",\n") } if this.Value != nil { s = append(s, "Value: "+valueToGoStringThetest(this.Value, "github_com_gogo_protobuf_test_custom.Uint128")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NidRepCustom{") if this.Id != nil { s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") } if this.Value != nil { s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepCustom) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NinRepCustom{") if this.Id != nil { s = append(s, "Id: "+fmt.Sprintf("%#v", this.Id)+",\n") } if this.Value != nil { s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNativeUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 13) s = append(s, "&test.NinOptNativeUnion{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 13) s = append(s, "&test.NinOptStructUnion{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+fmt.Sprintf("%#v", this.Field4)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinEmbeddedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinEmbeddedStructUnion{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.Field200 != nil { s = append(s, "Field200: "+fmt.Sprintf("%#v", this.Field200)+",\n") } if this.Field210 != nil { s = append(s, "Field210: "+valueToGoStringThetest(this.Field210, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinNestedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinNestedStructUnion{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Tree) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.Tree{") if this.Or != nil { s = append(s, "Or: "+fmt.Sprintf("%#v", this.Or)+",\n") } if this.And != nil { s = append(s, "And: "+fmt.Sprintf("%#v", this.And)+",\n") } if this.Leaf != nil { s = append(s, "Leaf: "+fmt.Sprintf("%#v", this.Leaf)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OrBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.OrBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AndBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.AndBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Leaf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.Leaf{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "StrValue: "+fmt.Sprintf("%#v", this.StrValue)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DeepTree) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.DeepTree{") if this.Down != nil { s = append(s, "Down: "+fmt.Sprintf("%#v", this.Down)+",\n") } if this.And != nil { s = append(s, "And: "+fmt.Sprintf("%#v", this.And)+",\n") } if this.Leaf != nil { s = append(s, "Leaf: "+fmt.Sprintf("%#v", this.Leaf)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ADeepBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.ADeepBranch{") s = append(s, "Down: "+strings.Replace(this.Down.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AndDeepBranch) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.AndDeepBranch{") s = append(s, "Left: "+strings.Replace(this.Left.GoString(), `&`, ``, 1)+",\n") s = append(s, "Right: "+strings.Replace(this.Right.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *DeepLeaf) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.DeepLeaf{") s = append(s, "Tree: "+strings.Replace(this.Tree.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Nil) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&test.Nil{") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidOptEnum{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinOptEnum{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "TheTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NidRepEnum{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinRepEnum{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptEnumDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NinOptEnumDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "TheTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AnotherNinOptEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.AnotherNinOptEnum{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "AnotherTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *AnotherNinOptEnumDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.AnotherNinOptEnumDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "AnotherTestEnum")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "YetAnotherTestEnum")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "YetYetAnotherTestEnum")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Timer) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.Timer{") s = append(s, "Time1: "+fmt.Sprintf("%#v", this.Time1)+",\n") s = append(s, "Time2: "+fmt.Sprintf("%#v", this.Time2)+",\n") s = append(s, "Data: "+fmt.Sprintf("%#v", this.Data)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *MyExtendable) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.MyExtendable{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringThetest(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OtherExtenable) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.OtherExtenable{") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "int64")+",\n") } if this.M != nil { s = append(s, "M: "+fmt.Sprintf("%#v", this.M)+",\n") } s = append(s, "XXX_InternalExtensions: "+extensionToGoStringThetest(this)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&test.NestedDefinition{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } if this.EnumField != nil { s = append(s, "EnumField: "+valueToGoStringThetest(this.EnumField, "NestedDefinition_NestedEnum")+",\n") } if this.NNM != nil { s = append(s, "NNM: "+fmt.Sprintf("%#v", this.NNM)+",\n") } if this.NM != nil { s = append(s, "NM: "+fmt.Sprintf("%#v", this.NM)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition_NestedMessage) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.NestedDefinition_NestedMessage{") if this.NestedField1 != nil { s = append(s, "NestedField1: "+valueToGoStringThetest(this.NestedField1, "uint64")+",\n") } if this.NNM != nil { s = append(s, "NNM: "+fmt.Sprintf("%#v", this.NNM)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NestedDefinition_NestedMessage_NestedNestedMsg{") if this.NestedNestedField1 != nil { s = append(s, "NestedNestedField1: "+valueToGoStringThetest(this.NestedNestedField1, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NestedScope) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.NestedScope{") if this.A != nil { s = append(s, "A: "+fmt.Sprintf("%#v", this.A)+",\n") } if this.B != nil { s = append(s, "B: "+valueToGoStringThetest(this.B, "NestedDefinition_NestedEnum")+",\n") } if this.C != nil { s = append(s, "C: "+fmt.Sprintf("%#v", this.C)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNativeDefault) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.NinOptNativeDefault{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "float64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "float32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringThetest(this.Field3, "int32")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringThetest(this.Field4, "int64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+valueToGoStringThetest(this.Field5, "uint32")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringThetest(this.Field6, "uint64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+valueToGoStringThetest(this.Field7, "int32")+",\n") } if this.Field8 != nil { s = append(s, "Field8: "+valueToGoStringThetest(this.Field8, "int64")+",\n") } if this.Field9 != nil { s = append(s, "Field9: "+valueToGoStringThetest(this.Field9, "uint32")+",\n") } if this.Field10 != nil { s = append(s, "Field10: "+valueToGoStringThetest(this.Field10, "int32")+",\n") } if this.Field11 != nil { s = append(s, "Field11: "+valueToGoStringThetest(this.Field11, "uint64")+",\n") } if this.Field12 != nil { s = append(s, "Field12: "+valueToGoStringThetest(this.Field12, "int64")+",\n") } if this.Field13 != nil { s = append(s, "Field13: "+valueToGoStringThetest(this.Field13, "bool")+",\n") } if this.Field14 != nil { s = append(s, "Field14: "+valueToGoStringThetest(this.Field14, "string")+",\n") } if this.Field15 != nil { s = append(s, "Field15: "+valueToGoStringThetest(this.Field15, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomContainer) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.CustomContainer{") s = append(s, "CustomStruct: "+strings.Replace(this.CustomStruct.GoString(), `&`, ``, 1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNidOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNidOptNative{") s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") s = append(s, "FieldE: "+fmt.Sprintf("%#v", this.FieldE)+",\n") s = append(s, "FieldF: "+fmt.Sprintf("%#v", this.FieldF)+",\n") s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") s = append(s, "FieldH: "+fmt.Sprintf("%#v", this.FieldH)+",\n") s = append(s, "FieldI: "+fmt.Sprintf("%#v", this.FieldI)+",\n") s = append(s, "FieldJ: "+fmt.Sprintf("%#v", this.FieldJ)+",\n") s = append(s, "FieldK: "+fmt.Sprintf("%#v", this.FieldK)+",\n") s = append(s, "FieldL: "+fmt.Sprintf("%#v", this.FieldL)+",\n") s = append(s, "FieldM: "+fmt.Sprintf("%#v", this.FieldM)+",\n") s = append(s, "FieldN: "+fmt.Sprintf("%#v", this.FieldN)+",\n") s = append(s, "FieldO: "+fmt.Sprintf("%#v", this.FieldO)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinOptNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNinOptNative{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "float64")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "float32")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+valueToGoStringThetest(this.FieldC, "int32")+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+valueToGoStringThetest(this.FieldD, "int64")+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+valueToGoStringThetest(this.FieldE, "uint32")+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+valueToGoStringThetest(this.FieldF, "uint64")+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+valueToGoStringThetest(this.FieldG, "int32")+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+valueToGoStringThetest(this.FieldH, "int64")+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+valueToGoStringThetest(this.FieldI, "uint32")+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+valueToGoStringThetest(this.FieldJ, "int32")+",\n") } if this.FieldK != nil { s = append(s, "FieldK: "+valueToGoStringThetest(this.FieldK, "uint64")+",\n") } if this.FielL != nil { s = append(s, "FielL: "+valueToGoStringThetest(this.FielL, "int64")+",\n") } if this.FieldM != nil { s = append(s, "FieldM: "+valueToGoStringThetest(this.FieldM, "bool")+",\n") } if this.FieldN != nil { s = append(s, "FieldN: "+valueToGoStringThetest(this.FieldN, "string")+",\n") } if this.FieldO != nil { s = append(s, "FieldO: "+valueToGoStringThetest(this.FieldO, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinRepNative) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 19) s = append(s, "&test.CustomNameNinRepNative{") if this.FieldA != nil { s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+fmt.Sprintf("%#v", this.FieldE)+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+fmt.Sprintf("%#v", this.FieldF)+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+fmt.Sprintf("%#v", this.FieldH)+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+fmt.Sprintf("%#v", this.FieldI)+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+fmt.Sprintf("%#v", this.FieldJ)+",\n") } if this.FieldK != nil { s = append(s, "FieldK: "+fmt.Sprintf("%#v", this.FieldK)+",\n") } if this.FieldL != nil { s = append(s, "FieldL: "+fmt.Sprintf("%#v", this.FieldL)+",\n") } if this.FieldM != nil { s = append(s, "FieldM: "+fmt.Sprintf("%#v", this.FieldM)+",\n") } if this.FieldN != nil { s = append(s, "FieldN: "+fmt.Sprintf("%#v", this.FieldN)+",\n") } if this.FieldO != nil { s = append(s, "FieldO: "+fmt.Sprintf("%#v", this.FieldO)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinStruct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 14) s = append(s, "&test.CustomNameNinStruct{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "float64")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "float32")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.FieldE != nil { s = append(s, "FieldE: "+valueToGoStringThetest(this.FieldE, "uint64")+",\n") } if this.FieldF != nil { s = append(s, "FieldF: "+valueToGoStringThetest(this.FieldF, "int32")+",\n") } if this.FieldG != nil { s = append(s, "FieldG: "+fmt.Sprintf("%#v", this.FieldG)+",\n") } if this.FieldH != nil { s = append(s, "FieldH: "+valueToGoStringThetest(this.FieldH, "bool")+",\n") } if this.FieldI != nil { s = append(s, "FieldI: "+valueToGoStringThetest(this.FieldI, "string")+",\n") } if this.FieldJ != nil { s = append(s, "FieldJ: "+valueToGoStringThetest(this.FieldJ, "byte")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&test.CustomNameCustomType{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "Uuid")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "github_com_gogo_protobuf_test_custom.Uint128")+",\n") } if this.FieldC != nil { s = append(s, "FieldC: "+fmt.Sprintf("%#v", this.FieldC)+",\n") } if this.FieldD != nil { s = append(s, "FieldD: "+fmt.Sprintf("%#v", this.FieldD)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameNinEmbeddedStructUnion) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&test.CustomNameNinEmbeddedStructUnion{") if this.NidOptNative != nil { s = append(s, "NidOptNative: "+fmt.Sprintf("%#v", this.NidOptNative)+",\n") } if this.FieldA != nil { s = append(s, "FieldA: "+fmt.Sprintf("%#v", this.FieldA)+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+valueToGoStringThetest(this.FieldB, "bool")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *CustomNameEnum) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.CustomNameEnum{") if this.FieldA != nil { s = append(s, "FieldA: "+valueToGoStringThetest(this.FieldA, "TheTestEnum")+",\n") } if this.FieldB != nil { s = append(s, "FieldB: "+fmt.Sprintf("%#v", this.FieldB)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NoExtensionsMap) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NoExtensionsMap{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "int64")+",\n") } if this.XXX_extensions != nil { s = append(s, "XXX_extensions: "+fmt.Sprintf("%#v", this.XXX_extensions)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Unrecognized) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.Unrecognized{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "string")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithInner) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.UnrecognizedWithInner{") if this.Embedded != nil { s = append(s, "Embedded: "+fmt.Sprintf("%#v", this.Embedded)+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithInner_Inner) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.UnrecognizedWithInner_Inner{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithEmbed) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.UnrecognizedWithEmbed{") s = append(s, "UnrecognizedWithEmbed_Embedded: "+strings.Replace(this.UnrecognizedWithEmbed_Embedded.GoString(), `&`, ``, 1)+",\n") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnrecognizedWithEmbed_Embedded) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.UnrecognizedWithEmbed_Embedded{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Node) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&test.Node{") if this.Label != nil { s = append(s, "Label: "+valueToGoStringThetest(this.Label, "string")+",\n") } if this.Children != nil { s = append(s, "Children: "+fmt.Sprintf("%#v", this.Children)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "T")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidOptNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidOptNonByteCustomType{") s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinOptNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NinOptNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringThetest(this.Field1, "T")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NidRepNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NidRepNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *NinRepNonByteCustomType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.NinRepNonByteCustomType{") if this.Field1 != nil { s = append(s, "Field1: "+fmt.Sprintf("%#v", this.Field1)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *ProtoType) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&test.ProtoType{") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringThetest(this.Field2, "string")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringThetest(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func extensionToGoStringThetest(m github_com_gogo_protobuf_proto.Message) string { e := github_com_gogo_protobuf_proto.GetUnsafeExtensionsMap(m) if e == nil { return "nil" } s := "proto.NewUnsafeXXX_InternalExtensions(map[int32]proto.Extension{" keys := make([]int, 0, len(e)) for k := range e { keys = append(keys, int(k)) } sort.Ints(keys) ss := []string{} for _, k := range keys { ss = append(ss, strconv.Itoa(k)+": "+e[int32(k)].GoString()) } s += strings.Join(ss, ",") + "})" return s } func NewPopulatedNidOptNative(r randyThetest, easy bool) *NidOptNative { this := &NidOptNative{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } this.Field3 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3 *= -1 } this.Field4 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4 *= -1 } this.Field5 = uint32(r.Uint32()) this.Field6 = uint64(uint64(r.Uint32())) this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } this.Field8 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8 *= -1 } this.Field9 = uint32(r.Uint32()) this.Field10 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10 *= -1 } this.Field11 = uint64(uint64(r.Uint32())) this.Field12 = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12 *= -1 } this.Field13 = bool(bool(r.Intn(2) == 0)) this.Field14 = string(randStringThetest(r)) v1 := r.Intn(100) this.Field15 = make([]byte, v1) for i := 0; i < v1; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinOptNative(r randyThetest, easy bool) *NinOptNative { this := &NinOptNative{} if r.Intn(10) != 0 { v2 := float64(r.Float64()) if r.Intn(2) == 0 { v2 *= -1 } this.Field1 = &v2 } if r.Intn(10) != 0 { v3 := float32(r.Float32()) if r.Intn(2) == 0 { v3 *= -1 } this.Field2 = &v3 } if r.Intn(10) != 0 { v4 := int32(r.Int31()) if r.Intn(2) == 0 { v4 *= -1 } this.Field3 = &v4 } if r.Intn(10) != 0 { v5 := int64(r.Int63()) if r.Intn(2) == 0 { v5 *= -1 } this.Field4 = &v5 } if r.Intn(10) != 0 { v6 := uint32(r.Uint32()) this.Field5 = &v6 } if r.Intn(10) != 0 { v7 := uint64(uint64(r.Uint32())) this.Field6 = &v7 } if r.Intn(10) != 0 { v8 := int32(r.Int31()) if r.Intn(2) == 0 { v8 *= -1 } this.Field7 = &v8 } if r.Intn(10) != 0 { v9 := int64(r.Int63()) if r.Intn(2) == 0 { v9 *= -1 } this.Field8 = &v9 } if r.Intn(10) != 0 { v10 := uint32(r.Uint32()) this.Field9 = &v10 } if r.Intn(10) != 0 { v11 := int32(r.Int31()) if r.Intn(2) == 0 { v11 *= -1 } this.Field10 = &v11 } if r.Intn(10) != 0 { v12 := uint64(uint64(r.Uint32())) this.Field11 = &v12 } if r.Intn(10) != 0 { v13 := int64(r.Int63()) if r.Intn(2) == 0 { v13 *= -1 } this.Field12 = &v13 } if r.Intn(10) != 0 { v14 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v14 } if r.Intn(10) != 0 { v15 := string(randStringThetest(r)) this.Field14 = &v15 } if r.Intn(10) != 0 { v16 := r.Intn(100) this.Field15 = make([]byte, v16) for i := 0; i < v16; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepNative(r randyThetest, easy bool) *NidRepNative { this := &NidRepNative{} if r.Intn(10) != 0 { v17 := r.Intn(10) this.Field1 = make([]float64, v17) for i := 0; i < v17; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Field2 = make([]float32, v18) for i := 0; i < v18; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.Field3 = make([]int32, v19) for i := 0; i < v19; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Field4 = make([]int64, v20) for i := 0; i < v20; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Field5 = make([]uint32, v21) for i := 0; i < v21; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Field6 = make([]uint64, v22) for i := 0; i < v22; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Field7 = make([]int32, v23) for i := 0; i < v23; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Field8 = make([]int64, v24) for i := 0; i < v24; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Field9 = make([]uint32, v25) for i := 0; i < v25; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v26 := r.Intn(10) this.Field10 = make([]int32, v26) for i := 0; i < v26; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v27 := r.Intn(10) this.Field11 = make([]uint64, v27) for i := 0; i < v27; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v28 := r.Intn(10) this.Field12 = make([]int64, v28) for i := 0; i < v28; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v29 := r.Intn(10) this.Field13 = make([]bool, v29) for i := 0; i < v29; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v30 := r.Intn(10) this.Field14 = make([]string, v30) for i := 0; i < v30; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v31 := r.Intn(10) this.Field15 = make([][]byte, v31) for i := 0; i < v31; i++ { v32 := r.Intn(100) this.Field15[i] = make([]byte, v32) for j := 0; j < v32; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinRepNative(r randyThetest, easy bool) *NinRepNative { this := &NinRepNative{} if r.Intn(10) != 0 { v33 := r.Intn(10) this.Field1 = make([]float64, v33) for i := 0; i < v33; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v34 := r.Intn(10) this.Field2 = make([]float32, v34) for i := 0; i < v34; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v35 := r.Intn(10) this.Field3 = make([]int32, v35) for i := 0; i < v35; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v36 := r.Intn(10) this.Field4 = make([]int64, v36) for i := 0; i < v36; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v37 := r.Intn(10) this.Field5 = make([]uint32, v37) for i := 0; i < v37; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v38 := r.Intn(10) this.Field6 = make([]uint64, v38) for i := 0; i < v38; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v39 := r.Intn(10) this.Field7 = make([]int32, v39) for i := 0; i < v39; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v40 := r.Intn(10) this.Field8 = make([]int64, v40) for i := 0; i < v40; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v41 := r.Intn(10) this.Field9 = make([]uint32, v41) for i := 0; i < v41; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v42 := r.Intn(10) this.Field10 = make([]int32, v42) for i := 0; i < v42; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v43 := r.Intn(10) this.Field11 = make([]uint64, v43) for i := 0; i < v43; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v44 := r.Intn(10) this.Field12 = make([]int64, v44) for i := 0; i < v44; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v45 := r.Intn(10) this.Field13 = make([]bool, v45) for i := 0; i < v45; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v46 := r.Intn(10) this.Field14 = make([]string, v46) for i := 0; i < v46; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v47 := r.Intn(10) this.Field15 = make([][]byte, v47) for i := 0; i < v47; i++ { v48 := r.Intn(100) this.Field15[i] = make([]byte, v48) for j := 0; j < v48; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepPackedNative(r randyThetest, easy bool) *NidRepPackedNative { this := &NidRepPackedNative{} if r.Intn(10) != 0 { v49 := r.Intn(10) this.Field1 = make([]float64, v49) for i := 0; i < v49; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v50 := r.Intn(10) this.Field2 = make([]float32, v50) for i := 0; i < v50; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v51 := r.Intn(10) this.Field3 = make([]int32, v51) for i := 0; i < v51; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v52 := r.Intn(10) this.Field4 = make([]int64, v52) for i := 0; i < v52; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v53 := r.Intn(10) this.Field5 = make([]uint32, v53) for i := 0; i < v53; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v54 := r.Intn(10) this.Field6 = make([]uint64, v54) for i := 0; i < v54; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v55 := r.Intn(10) this.Field7 = make([]int32, v55) for i := 0; i < v55; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v56 := r.Intn(10) this.Field8 = make([]int64, v56) for i := 0; i < v56; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v57 := r.Intn(10) this.Field9 = make([]uint32, v57) for i := 0; i < v57; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v58 := r.Intn(10) this.Field10 = make([]int32, v58) for i := 0; i < v58; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v59 := r.Intn(10) this.Field11 = make([]uint64, v59) for i := 0; i < v59; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v60 := r.Intn(10) this.Field12 = make([]int64, v60) for i := 0; i < v60; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v61 := r.Intn(10) this.Field13 = make([]bool, v61) for i := 0; i < v61; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 14) } return this } func NewPopulatedNinRepPackedNative(r randyThetest, easy bool) *NinRepPackedNative { this := &NinRepPackedNative{} if r.Intn(10) != 0 { v62 := r.Intn(10) this.Field1 = make([]float64, v62) for i := 0; i < v62; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v63 := r.Intn(10) this.Field2 = make([]float32, v63) for i := 0; i < v63; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v64 := r.Intn(10) this.Field3 = make([]int32, v64) for i := 0; i < v64; i++ { this.Field3[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { v65 := r.Intn(10) this.Field4 = make([]int64, v65) for i := 0; i < v65; i++ { this.Field4[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field4[i] *= -1 } } } if r.Intn(10) != 0 { v66 := r.Intn(10) this.Field5 = make([]uint32, v66) for i := 0; i < v66; i++ { this.Field5[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v67 := r.Intn(10) this.Field6 = make([]uint64, v67) for i := 0; i < v67; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v68 := r.Intn(10) this.Field7 = make([]int32, v68) for i := 0; i < v68; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v69 := r.Intn(10) this.Field8 = make([]int64, v69) for i := 0; i < v69; i++ { this.Field8[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field8[i] *= -1 } } } if r.Intn(10) != 0 { v70 := r.Intn(10) this.Field9 = make([]uint32, v70) for i := 0; i < v70; i++ { this.Field9[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v71 := r.Intn(10) this.Field10 = make([]int32, v71) for i := 0; i < v71; i++ { this.Field10[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field10[i] *= -1 } } } if r.Intn(10) != 0 { v72 := r.Intn(10) this.Field11 = make([]uint64, v72) for i := 0; i < v72; i++ { this.Field11[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v73 := r.Intn(10) this.Field12 = make([]int64, v73) for i := 0; i < v73; i++ { this.Field12[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.Field12[i] *= -1 } } } if r.Intn(10) != 0 { v74 := r.Intn(10) this.Field13 = make([]bool, v74) for i := 0; i < v74; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 14) } return this } func NewPopulatedNidOptStruct(r randyThetest, easy bool) *NidOptStruct { this := &NidOptStruct{} this.Field1 = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1 *= -1 } this.Field2 = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2 *= -1 } v75 := NewPopulatedNidOptNative(r, easy) this.Field3 = *v75 v76 := NewPopulatedNinOptNative(r, easy) this.Field4 = *v76 this.Field6 = uint64(uint64(r.Uint32())) this.Field7 = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7 *= -1 } v77 := NewPopulatedNidOptNative(r, easy) this.Field8 = *v77 this.Field13 = bool(bool(r.Intn(2) == 0)) this.Field14 = string(randStringThetest(r)) v78 := r.Intn(100) this.Field15 = make([]byte, v78) for i := 0; i < v78; i++ { this.Field15[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinOptStruct(r randyThetest, easy bool) *NinOptStruct { this := &NinOptStruct{} if r.Intn(10) != 0 { v79 := float64(r.Float64()) if r.Intn(2) == 0 { v79 *= -1 } this.Field1 = &v79 } if r.Intn(10) != 0 { v80 := float32(r.Float32()) if r.Intn(2) == 0 { v80 *= -1 } this.Field2 = &v80 } if r.Intn(10) != 0 { this.Field3 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { this.Field4 = NewPopulatedNinOptNative(r, easy) } if r.Intn(10) != 0 { v81 := uint64(uint64(r.Uint32())) this.Field6 = &v81 } if r.Intn(10) != 0 { v82 := int32(r.Int31()) if r.Intn(2) == 0 { v82 *= -1 } this.Field7 = &v82 } if r.Intn(10) != 0 { this.Field8 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v83 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v83 } if r.Intn(10) != 0 { v84 := string(randStringThetest(r)) this.Field14 = &v84 } if r.Intn(10) != 0 { v85 := r.Intn(100) this.Field15 = make([]byte, v85) for i := 0; i < v85; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidRepStruct(r randyThetest, easy bool) *NidRepStruct { this := &NidRepStruct{} if r.Intn(10) != 0 { v86 := r.Intn(10) this.Field1 = make([]float64, v86) for i := 0; i < v86; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v87 := r.Intn(10) this.Field2 = make([]float32, v87) for i := 0; i < v87; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v88 := r.Intn(5) this.Field3 = make([]NidOptNative, v88) for i := 0; i < v88; i++ { v89 := NewPopulatedNidOptNative(r, easy) this.Field3[i] = *v89 } } if r.Intn(10) != 0 { v90 := r.Intn(5) this.Field4 = make([]NinOptNative, v90) for i := 0; i < v90; i++ { v91 := NewPopulatedNinOptNative(r, easy) this.Field4[i] = *v91 } } if r.Intn(10) != 0 { v92 := r.Intn(10) this.Field6 = make([]uint64, v92) for i := 0; i < v92; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v93 := r.Intn(10) this.Field7 = make([]int32, v93) for i := 0; i < v93; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v94 := r.Intn(5) this.Field8 = make([]NidOptNative, v94) for i := 0; i < v94; i++ { v95 := NewPopulatedNidOptNative(r, easy) this.Field8[i] = *v95 } } if r.Intn(10) != 0 { v96 := r.Intn(10) this.Field13 = make([]bool, v96) for i := 0; i < v96; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v97 := r.Intn(10) this.Field14 = make([]string, v97) for i := 0; i < v97; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v98 := r.Intn(10) this.Field15 = make([][]byte, v98) for i := 0; i < v98; i++ { v99 := r.Intn(100) this.Field15[i] = make([]byte, v99) for j := 0; j < v99; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNinRepStruct(r randyThetest, easy bool) *NinRepStruct { this := &NinRepStruct{} if r.Intn(10) != 0 { v100 := r.Intn(10) this.Field1 = make([]float64, v100) for i := 0; i < v100; i++ { this.Field1[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field1[i] *= -1 } } } if r.Intn(10) != 0 { v101 := r.Intn(10) this.Field2 = make([]float32, v101) for i := 0; i < v101; i++ { this.Field2[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v102 := r.Intn(5) this.Field3 = make([]*NidOptNative, v102) for i := 0; i < v102; i++ { this.Field3[i] = NewPopulatedNidOptNative(r, easy) } } if r.Intn(10) != 0 { v103 := r.Intn(5) this.Field4 = make([]*NinOptNative, v103) for i := 0; i < v103; i++ { this.Field4[i] = NewPopulatedNinOptNative(r, easy) } } if r.Intn(10) != 0 { v104 := r.Intn(10) this.Field6 = make([]uint64, v104) for i := 0; i < v104; i++ { this.Field6[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v105 := r.Intn(10) this.Field7 = make([]int32, v105) for i := 0; i < v105; i++ { this.Field7[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if r.Intn(10) != 0 { v106 := r.Intn(5) this.Field8 = make([]*NidOptNative, v106) for i := 0; i < v106; i++ { this.Field8[i] = NewPopulatedNidOptNative(r, easy) } } if r.Intn(10) != 0 { v107 := r.Intn(10) this.Field13 = make([]bool, v107) for i := 0; i < v107; i++ { this.Field13[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v108 := r.Intn(10) this.Field14 = make([]string, v108) for i := 0; i < v108; i++ { this.Field14[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v109 := r.Intn(10) this.Field15 = make([][]byte, v109) for i := 0; i < v109; i++ { v110 := r.Intn(100) this.Field15[i] = make([]byte, v110) for j := 0; j < v110; j++ { this.Field15[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedNidEmbeddedStruct(r randyThetest, easy bool) *NidEmbeddedStruct { this := &NidEmbeddedStruct{} if r.Intn(10) != 0 { this.NidOptNative = NewPopulatedNidOptNative(r, easy) } v111 := NewPopulatedNidOptNative(r, easy) this.Field200 = *v111 this.Field210 = bool(bool(r.Intn(2) == 0)) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 211) } return this } func NewPopulatedNinEmbeddedStruct(r randyThetest, easy bool) *NinEmbeddedStruct { this := &NinEmbeddedStruct{} if r.Intn(10) != 0 { this.NidOptNative = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { this.Field200 = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v112 := bool(bool(r.Intn(2) == 0)) this.Field210 = &v112 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 211) } return this } func NewPopulatedNidNestedStruct(r randyThetest, easy bool) *NidNestedStruct { this := &NidNestedStruct{} v113 := NewPopulatedNidOptStruct(r, easy) this.Field1 = *v113 if r.Intn(10) != 0 { v114 := r.Intn(5) this.Field2 = make([]NidRepStruct, v114) for i := 0; i < v114; i++ { v115 := NewPopulatedNidRepStruct(r, easy) this.Field2[i] = *v115 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinNestedStruct(r randyThetest, easy bool) *NinNestedStruct { this := &NinNestedStruct{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedNinOptStruct(r, easy) } if r.Intn(10) != 0 { v116 := r.Intn(5) this.Field2 = make([]*NinRepStruct, v116) for i := 0; i < v116; i++ { this.Field2[i] = NewPopulatedNinRepStruct(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNidOptCustom(r randyThetest, easy bool) *NidOptCustom { this := &NidOptCustom{} v117 := NewPopulatedUuid(r) this.Id = *v117 v118 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value = *v118 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedCustomDash(r randyThetest, easy bool) *CustomDash { this := &CustomDash{} if r.Intn(10) != 0 { this.Value = github_com_gogo_protobuf_test_custom_dash_type.NewPopulatedBytes(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptCustom(r randyThetest, easy bool) *NinOptCustom { this := &NinOptCustom{} if r.Intn(10) != 0 { this.Id = NewPopulatedUuid(r) } if r.Intn(10) != 0 { this.Value = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNidRepCustom(r randyThetest, easy bool) *NidRepCustom { this := &NidRepCustom{} if r.Intn(10) != 0 { v119 := r.Intn(10) this.Id = make([]Uuid, v119) for i := 0; i < v119; i++ { v120 := NewPopulatedUuid(r) this.Id[i] = *v120 } } if r.Intn(10) != 0 { v121 := r.Intn(10) this.Value = make([]github_com_gogo_protobuf_test_custom.Uint128, v121) for i := 0; i < v121; i++ { v122 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value[i] = *v122 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinRepCustom(r randyThetest, easy bool) *NinRepCustom { this := &NinRepCustom{} if r.Intn(10) != 0 { v123 := r.Intn(10) this.Id = make([]Uuid, v123) for i := 0; i < v123; i++ { v124 := NewPopulatedUuid(r) this.Id[i] = *v124 } } if r.Intn(10) != 0 { v125 := r.Intn(10) this.Value = make([]github_com_gogo_protobuf_test_custom.Uint128, v125) for i := 0; i < v125; i++ { v126 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.Value[i] = *v126 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNinOptNativeUnion(r randyThetest, easy bool) *NinOptNativeUnion { this := &NinOptNativeUnion{} fieldNum := r.Intn(9) switch fieldNum { case 0: v127 := float64(r.Float64()) if r.Intn(2) == 0 { v127 *= -1 } this.Field1 = &v127 case 1: v128 := float32(r.Float32()) if r.Intn(2) == 0 { v128 *= -1 } this.Field2 = &v128 case 2: v129 := int32(r.Int31()) if r.Intn(2) == 0 { v129 *= -1 } this.Field3 = &v129 case 3: v130 := int64(r.Int63()) if r.Intn(2) == 0 { v130 *= -1 } this.Field4 = &v130 case 4: v131 := uint32(r.Uint32()) this.Field5 = &v131 case 5: v132 := uint64(uint64(r.Uint32())) this.Field6 = &v132 case 6: v133 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v133 case 7: v134 := string(randStringThetest(r)) this.Field14 = &v134 case 8: v135 := r.Intn(100) this.Field15 = make([]byte, v135) for i := 0; i < v135; i++ { this.Field15[i] = byte(r.Intn(256)) } } return this } func NewPopulatedNinOptStructUnion(r randyThetest, easy bool) *NinOptStructUnion { this := &NinOptStructUnion{} fieldNum := r.Intn(9) switch fieldNum { case 0: v136 := float64(r.Float64()) if r.Intn(2) == 0 { v136 *= -1 } this.Field1 = &v136 case 1: v137 := float32(r.Float32()) if r.Intn(2) == 0 { v137 *= -1 } this.Field2 = &v137 case 2: this.Field3 = NewPopulatedNidOptNative(r, easy) case 3: this.Field4 = NewPopulatedNinOptNative(r, easy) case 4: v138 := uint64(uint64(r.Uint32())) this.Field6 = &v138 case 5: v139 := int32(r.Int31()) if r.Intn(2) == 0 { v139 *= -1 } this.Field7 = &v139 case 6: v140 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v140 case 7: v141 := string(randStringThetest(r)) this.Field14 = &v141 case 8: v142 := r.Intn(100) this.Field15 = make([]byte, v142) for i := 0; i < v142; i++ { this.Field15[i] = byte(r.Intn(256)) } } return this } func NewPopulatedNinEmbeddedStructUnion(r randyThetest, easy bool) *NinEmbeddedStructUnion { this := &NinEmbeddedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.NidOptNative = NewPopulatedNidOptNative(r, easy) case 1: this.Field200 = NewPopulatedNinOptNative(r, easy) case 2: v143 := bool(bool(r.Intn(2) == 0)) this.Field210 = &v143 } return this } func NewPopulatedNinNestedStructUnion(r randyThetest, easy bool) *NinNestedStructUnion { this := &NinNestedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.Field1 = NewPopulatedNinOptNativeUnion(r, easy) case 1: this.Field2 = NewPopulatedNinOptStructUnion(r, easy) case 2: this.Field3 = NewPopulatedNinEmbeddedStructUnion(r, easy) } return this } func NewPopulatedTree(r randyThetest, easy bool) *Tree { this := &Tree{} fieldNum := r.Intn(102) switch fieldNum { case 0: this.Or = NewPopulatedOrBranch(r, easy) case 1: this.And = NewPopulatedAndBranch(r, easy) case 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101: this.Leaf = NewPopulatedLeaf(r, easy) } return this } func NewPopulatedOrBranch(r randyThetest, easy bool) *OrBranch { this := &OrBranch{} v144 := NewPopulatedTree(r, easy) this.Left = *v144 v145 := NewPopulatedTree(r, easy) this.Right = *v145 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedAndBranch(r randyThetest, easy bool) *AndBranch { this := &AndBranch{} v146 := NewPopulatedTree(r, easy) this.Left = *v146 v147 := NewPopulatedTree(r, easy) this.Right = *v147 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedLeaf(r randyThetest, easy bool) *Leaf { this := &Leaf{} this.Value = int64(r.Int63()) if r.Intn(2) == 0 { this.Value *= -1 } this.StrValue = string(randStringThetest(r)) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedDeepTree(r randyThetest, easy bool) *DeepTree { this := &DeepTree{} fieldNum := r.Intn(102) switch fieldNum { case 0: this.Down = NewPopulatedADeepBranch(r, easy) case 1: this.And = NewPopulatedAndDeepBranch(r, easy) case 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101: this.Leaf = NewPopulatedDeepLeaf(r, easy) } return this } func NewPopulatedADeepBranch(r randyThetest, easy bool) *ADeepBranch { this := &ADeepBranch{} v148 := NewPopulatedDeepTree(r, easy) this.Down = *v148 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedAndDeepBranch(r randyThetest, easy bool) *AndDeepBranch { this := &AndDeepBranch{} v149 := NewPopulatedDeepTree(r, easy) this.Left = *v149 v150 := NewPopulatedDeepTree(r, easy) this.Right = *v150 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedDeepLeaf(r randyThetest, easy bool) *DeepLeaf { this := &DeepLeaf{} v151 := NewPopulatedTree(r, easy) this.Tree = *v151 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNil(r randyThetest, easy bool) *Nil { this := &Nil{} if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 1) } return this } func NewPopulatedNidOptEnum(r randyThetest, easy bool) *NidOptEnum { this := &NidOptEnum{} this.Field1 = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptEnum(r randyThetest, easy bool) *NinOptEnum { this := &NinOptEnum{} if r.Intn(10) != 0 { v152 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.Field1 = &v152 } if r.Intn(10) != 0 { v153 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v153 } if r.Intn(10) != 0 { v154 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v154 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNidRepEnum(r randyThetest, easy bool) *NidRepEnum { this := &NidRepEnum{} if r.Intn(10) != 0 { v155 := r.Intn(10) this.Field1 = make([]TheTestEnum, v155) for i := 0; i < v155; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v156 := r.Intn(10) this.Field2 = make([]YetAnotherTestEnum, v156) for i := 0; i < v156; i++ { this.Field2[i] = YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if r.Intn(10) != 0 { v157 := r.Intn(10) this.Field3 = make([]YetYetAnotherTestEnum, v157) for i := 0; i < v157; i++ { this.Field3[i] = YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinRepEnum(r randyThetest, easy bool) *NinRepEnum { this := &NinRepEnum{} if r.Intn(10) != 0 { v158 := r.Intn(10) this.Field1 = make([]TheTestEnum, v158) for i := 0; i < v158; i++ { this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if r.Intn(10) != 0 { v159 := r.Intn(10) this.Field2 = make([]YetAnotherTestEnum, v159) for i := 0; i < v159; i++ { this.Field2[i] = YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if r.Intn(10) != 0 { v160 := r.Intn(10) this.Field3 = make([]YetYetAnotherTestEnum, v160) for i := 0; i < v160; i++ { this.Field3[i] = YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinOptEnumDefault(r randyThetest, easy bool) *NinOptEnumDefault { this := &NinOptEnumDefault{} if r.Intn(10) != 0 { v161 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.Field1 = &v161 } if r.Intn(10) != 0 { v162 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v162 } if r.Intn(10) != 0 { v163 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v163 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedAnotherNinOptEnum(r randyThetest, easy bool) *AnotherNinOptEnum { this := &AnotherNinOptEnum{} if r.Intn(10) != 0 { v164 := AnotherTestEnum([]int32{10, 11}[r.Intn(2)]) this.Field1 = &v164 } if r.Intn(10) != 0 { v165 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v165 } if r.Intn(10) != 0 { v166 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v166 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedAnotherNinOptEnumDefault(r randyThetest, easy bool) *AnotherNinOptEnumDefault { this := &AnotherNinOptEnumDefault{} if r.Intn(10) != 0 { v167 := AnotherTestEnum([]int32{10, 11}[r.Intn(2)]) this.Field1 = &v167 } if r.Intn(10) != 0 { v168 := YetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field2 = &v168 } if r.Intn(10) != 0 { v169 := YetYetAnotherTestEnum([]int32{0, 1}[r.Intn(2)]) this.Field3 = &v169 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedTimer(r randyThetest, easy bool) *Timer { this := &Timer{} this.Time1 = int64(r.Int63()) if r.Intn(2) == 0 { this.Time1 *= -1 } this.Time2 = int64(r.Int63()) if r.Intn(2) == 0 { this.Time2 *= -1 } v170 := r.Intn(100) this.Data = make([]byte, v170) for i := 0; i < v170; i++ { this.Data[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedMyExtendable(r randyThetest, easy bool) *MyExtendable { this := &MyExtendable{} if r.Intn(10) != 0 { v171 := int64(r.Int63()) if r.Intn(2) == 0 { v171 *= -1 } this.Field1 = &v171 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { fieldNumber := r.Intn(100) + 100 wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 201) } return this } func NewPopulatedOtherExtenable(r randyThetest, easy bool) *OtherExtenable { this := &OtherExtenable{} if r.Intn(10) != 0 { v172 := int64(r.Int63()) if r.Intn(2) == 0 { v172 *= -1 } this.Field2 = &v172 } if r.Intn(10) != 0 { v173 := int64(r.Int63()) if r.Intn(2) == 0 { v173 *= -1 } this.Field13 = &v173 } if r.Intn(10) != 0 { this.M = NewPopulatedMyExtendable(r, easy) } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { eIndex := r.Intn(2) fieldNumber := 0 switch eIndex { case 0: fieldNumber = r.Intn(3) + 14 case 1: fieldNumber = r.Intn(3) + 10 } wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 18) } return this } func NewPopulatedNestedDefinition(r randyThetest, easy bool) *NestedDefinition { this := &NestedDefinition{} if r.Intn(10) != 0 { v174 := int64(r.Int63()) if r.Intn(2) == 0 { v174 *= -1 } this.Field1 = &v174 } if r.Intn(10) != 0 { v175 := NestedDefinition_NestedEnum([]int32{1}[r.Intn(1)]) this.EnumField = &v175 } if r.Intn(10) != 0 { this.NNM = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if r.Intn(10) != 0 { this.NM = NewPopulatedNestedDefinition_NestedMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 5) } return this } func NewPopulatedNestedDefinition_NestedMessage(r randyThetest, easy bool) *NestedDefinition_NestedMessage { this := &NestedDefinition_NestedMessage{} if r.Intn(10) != 0 { v176 := uint64(uint64(r.Uint32())) this.NestedField1 = &v176 } if r.Intn(10) != 0 { this.NNM = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r randyThetest, easy bool) *NestedDefinition_NestedMessage_NestedNestedMsg { this := &NestedDefinition_NestedMessage_NestedNestedMsg{} if r.Intn(10) != 0 { v177 := string(randStringThetest(r)) this.NestedNestedField1 = &v177 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 11) } return this } func NewPopulatedNestedScope(r randyThetest, easy bool) *NestedScope { this := &NestedScope{} if r.Intn(10) != 0 { this.A = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(r, easy) } if r.Intn(10) != 0 { v178 := NestedDefinition_NestedEnum([]int32{1}[r.Intn(1)]) this.B = &v178 } if r.Intn(10) != 0 { this.C = NewPopulatedNestedDefinition_NestedMessage(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 4) } return this } func NewPopulatedNinOptNativeDefault(r randyThetest, easy bool) *NinOptNativeDefault { this := &NinOptNativeDefault{} if r.Intn(10) != 0 { v179 := float64(r.Float64()) if r.Intn(2) == 0 { v179 *= -1 } this.Field1 = &v179 } if r.Intn(10) != 0 { v180 := float32(r.Float32()) if r.Intn(2) == 0 { v180 *= -1 } this.Field2 = &v180 } if r.Intn(10) != 0 { v181 := int32(r.Int31()) if r.Intn(2) == 0 { v181 *= -1 } this.Field3 = &v181 } if r.Intn(10) != 0 { v182 := int64(r.Int63()) if r.Intn(2) == 0 { v182 *= -1 } this.Field4 = &v182 } if r.Intn(10) != 0 { v183 := uint32(r.Uint32()) this.Field5 = &v183 } if r.Intn(10) != 0 { v184 := uint64(uint64(r.Uint32())) this.Field6 = &v184 } if r.Intn(10) != 0 { v185 := int32(r.Int31()) if r.Intn(2) == 0 { v185 *= -1 } this.Field7 = &v185 } if r.Intn(10) != 0 { v186 := int64(r.Int63()) if r.Intn(2) == 0 { v186 *= -1 } this.Field8 = &v186 } if r.Intn(10) != 0 { v187 := uint32(r.Uint32()) this.Field9 = &v187 } if r.Intn(10) != 0 { v188 := int32(r.Int31()) if r.Intn(2) == 0 { v188 *= -1 } this.Field10 = &v188 } if r.Intn(10) != 0 { v189 := uint64(uint64(r.Uint32())) this.Field11 = &v189 } if r.Intn(10) != 0 { v190 := int64(r.Int63()) if r.Intn(2) == 0 { v190 *= -1 } this.Field12 = &v190 } if r.Intn(10) != 0 { v191 := bool(bool(r.Intn(2) == 0)) this.Field13 = &v191 } if r.Intn(10) != 0 { v192 := string(randStringThetest(r)) this.Field14 = &v192 } if r.Intn(10) != 0 { v193 := r.Intn(100) this.Field15 = make([]byte, v193) for i := 0; i < v193; i++ { this.Field15[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomContainer(r randyThetest, easy bool) *CustomContainer { this := &CustomContainer{} v194 := NewPopulatedNidOptCustom(r, easy) this.CustomStruct = *v194 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedCustomNameNidOptNative(r randyThetest, easy bool) *CustomNameNidOptNative { this := &CustomNameNidOptNative{} this.FieldA = float64(r.Float64()) if r.Intn(2) == 0 { this.FieldA *= -1 } this.FieldB = float32(r.Float32()) if r.Intn(2) == 0 { this.FieldB *= -1 } this.FieldC = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldC *= -1 } this.FieldD = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldD *= -1 } this.FieldE = uint32(r.Uint32()) this.FieldF = uint64(uint64(r.Uint32())) this.FieldG = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldG *= -1 } this.FieldH = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldH *= -1 } this.FieldI = uint32(r.Uint32()) this.FieldJ = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldJ *= -1 } this.FieldK = uint64(uint64(r.Uint32())) this.FieldL = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldL *= -1 } this.FieldM = bool(bool(r.Intn(2) == 0)) this.FieldN = string(randStringThetest(r)) v195 := r.Intn(100) this.FieldO = make([]byte, v195) for i := 0; i < v195; i++ { this.FieldO[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinOptNative(r randyThetest, easy bool) *CustomNameNinOptNative { this := &CustomNameNinOptNative{} if r.Intn(10) != 0 { v196 := float64(r.Float64()) if r.Intn(2) == 0 { v196 *= -1 } this.FieldA = &v196 } if r.Intn(10) != 0 { v197 := float32(r.Float32()) if r.Intn(2) == 0 { v197 *= -1 } this.FieldB = &v197 } if r.Intn(10) != 0 { v198 := int32(r.Int31()) if r.Intn(2) == 0 { v198 *= -1 } this.FieldC = &v198 } if r.Intn(10) != 0 { v199 := int64(r.Int63()) if r.Intn(2) == 0 { v199 *= -1 } this.FieldD = &v199 } if r.Intn(10) != 0 { v200 := uint32(r.Uint32()) this.FieldE = &v200 } if r.Intn(10) != 0 { v201 := uint64(uint64(r.Uint32())) this.FieldF = &v201 } if r.Intn(10) != 0 { v202 := int32(r.Int31()) if r.Intn(2) == 0 { v202 *= -1 } this.FieldG = &v202 } if r.Intn(10) != 0 { v203 := int64(r.Int63()) if r.Intn(2) == 0 { v203 *= -1 } this.FieldH = &v203 } if r.Intn(10) != 0 { v204 := uint32(r.Uint32()) this.FieldI = &v204 } if r.Intn(10) != 0 { v205 := int32(r.Int31()) if r.Intn(2) == 0 { v205 *= -1 } this.FieldJ = &v205 } if r.Intn(10) != 0 { v206 := uint64(uint64(r.Uint32())) this.FieldK = &v206 } if r.Intn(10) != 0 { v207 := int64(r.Int63()) if r.Intn(2) == 0 { v207 *= -1 } this.FielL = &v207 } if r.Intn(10) != 0 { v208 := bool(bool(r.Intn(2) == 0)) this.FieldM = &v208 } if r.Intn(10) != 0 { v209 := string(randStringThetest(r)) this.FieldN = &v209 } if r.Intn(10) != 0 { v210 := r.Intn(100) this.FieldO = make([]byte, v210) for i := 0; i < v210; i++ { this.FieldO[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinRepNative(r randyThetest, easy bool) *CustomNameNinRepNative { this := &CustomNameNinRepNative{} if r.Intn(10) != 0 { v211 := r.Intn(10) this.FieldA = make([]float64, v211) for i := 0; i < v211; i++ { this.FieldA[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.FieldA[i] *= -1 } } } if r.Intn(10) != 0 { v212 := r.Intn(10) this.FieldB = make([]float32, v212) for i := 0; i < v212; i++ { this.FieldB[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.FieldB[i] *= -1 } } } if r.Intn(10) != 0 { v213 := r.Intn(10) this.FieldC = make([]int32, v213) for i := 0; i < v213; i++ { this.FieldC[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldC[i] *= -1 } } } if r.Intn(10) != 0 { v214 := r.Intn(10) this.FieldD = make([]int64, v214) for i := 0; i < v214; i++ { this.FieldD[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldD[i] *= -1 } } } if r.Intn(10) != 0 { v215 := r.Intn(10) this.FieldE = make([]uint32, v215) for i := 0; i < v215; i++ { this.FieldE[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v216 := r.Intn(10) this.FieldF = make([]uint64, v216) for i := 0; i < v216; i++ { this.FieldF[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v217 := r.Intn(10) this.FieldG = make([]int32, v217) for i := 0; i < v217; i++ { this.FieldG[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldG[i] *= -1 } } } if r.Intn(10) != 0 { v218 := r.Intn(10) this.FieldH = make([]int64, v218) for i := 0; i < v218; i++ { this.FieldH[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldH[i] *= -1 } } } if r.Intn(10) != 0 { v219 := r.Intn(10) this.FieldI = make([]uint32, v219) for i := 0; i < v219; i++ { this.FieldI[i] = uint32(r.Uint32()) } } if r.Intn(10) != 0 { v220 := r.Intn(10) this.FieldJ = make([]int32, v220) for i := 0; i < v220; i++ { this.FieldJ[i] = int32(r.Int31()) if r.Intn(2) == 0 { this.FieldJ[i] *= -1 } } } if r.Intn(10) != 0 { v221 := r.Intn(10) this.FieldK = make([]uint64, v221) for i := 0; i < v221; i++ { this.FieldK[i] = uint64(uint64(r.Uint32())) } } if r.Intn(10) != 0 { v222 := r.Intn(10) this.FieldL = make([]int64, v222) for i := 0; i < v222; i++ { this.FieldL[i] = int64(r.Int63()) if r.Intn(2) == 0 { this.FieldL[i] *= -1 } } } if r.Intn(10) != 0 { v223 := r.Intn(10) this.FieldM = make([]bool, v223) for i := 0; i < v223; i++ { this.FieldM[i] = bool(bool(r.Intn(2) == 0)) } } if r.Intn(10) != 0 { v224 := r.Intn(10) this.FieldN = make([]string, v224) for i := 0; i < v224; i++ { this.FieldN[i] = string(randStringThetest(r)) } } if r.Intn(10) != 0 { v225 := r.Intn(10) this.FieldO = make([][]byte, v225) for i := 0; i < v225; i++ { v226 := r.Intn(100) this.FieldO[i] = make([]byte, v226) for j := 0; j < v226; j++ { this.FieldO[i][j] = byte(r.Intn(256)) } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameNinStruct(r randyThetest, easy bool) *CustomNameNinStruct { this := &CustomNameNinStruct{} if r.Intn(10) != 0 { v227 := float64(r.Float64()) if r.Intn(2) == 0 { v227 *= -1 } this.FieldA = &v227 } if r.Intn(10) != 0 { v228 := float32(r.Float32()) if r.Intn(2) == 0 { v228 *= -1 } this.FieldB = &v228 } if r.Intn(10) != 0 { this.FieldC = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v229 := r.Intn(5) this.FieldD = make([]*NinOptNative, v229) for i := 0; i < v229; i++ { this.FieldD[i] = NewPopulatedNinOptNative(r, easy) } } if r.Intn(10) != 0 { v230 := uint64(uint64(r.Uint32())) this.FieldE = &v230 } if r.Intn(10) != 0 { v231 := int32(r.Int31()) if r.Intn(2) == 0 { v231 *= -1 } this.FieldF = &v231 } if r.Intn(10) != 0 { this.FieldG = NewPopulatedNidOptNative(r, easy) } if r.Intn(10) != 0 { v232 := bool(bool(r.Intn(2) == 0)) this.FieldH = &v232 } if r.Intn(10) != 0 { v233 := string(randStringThetest(r)) this.FieldI = &v233 } if r.Intn(10) != 0 { v234 := r.Intn(100) this.FieldJ = make([]byte, v234) for i := 0; i < v234; i++ { this.FieldJ[i] = byte(r.Intn(256)) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 16) } return this } func NewPopulatedCustomNameCustomType(r randyThetest, easy bool) *CustomNameCustomType { this := &CustomNameCustomType{} if r.Intn(10) != 0 { this.FieldA = NewPopulatedUuid(r) } if r.Intn(10) != 0 { this.FieldB = github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) } if r.Intn(10) != 0 { v235 := r.Intn(10) this.FieldC = make([]Uuid, v235) for i := 0; i < v235; i++ { v236 := NewPopulatedUuid(r) this.FieldC[i] = *v236 } } if r.Intn(10) != 0 { v237 := r.Intn(10) this.FieldD = make([]github_com_gogo_protobuf_test_custom.Uint128, v237) for i := 0; i < v237; i++ { v238 := github_com_gogo_protobuf_test_custom.NewPopulatedUint128(r) this.FieldD[i] = *v238 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 5) } return this } func NewPopulatedCustomNameNinEmbeddedStructUnion(r randyThetest, easy bool) *CustomNameNinEmbeddedStructUnion { this := &CustomNameNinEmbeddedStructUnion{} fieldNum := r.Intn(3) switch fieldNum { case 0: this.NidOptNative = NewPopulatedNidOptNative(r, easy) case 1: this.FieldA = NewPopulatedNinOptNative(r, easy) case 2: v239 := bool(bool(r.Intn(2) == 0)) this.FieldB = &v239 } return this } func NewPopulatedCustomNameEnum(r randyThetest, easy bool) *CustomNameEnum { this := &CustomNameEnum{} if r.Intn(10) != 0 { v240 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) this.FieldA = &v240 } if r.Intn(10) != 0 { v241 := r.Intn(10) this.FieldB = make([]TheTestEnum, v241) for i := 0; i < v241; i++ { this.FieldB[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)]) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNoExtensionsMap(r randyThetest, easy bool) *NoExtensionsMap { this := &NoExtensionsMap{} if r.Intn(10) != 0 { v242 := int64(r.Int63()) if r.Intn(2) == 0 { v242 *= -1 } this.Field1 = &v242 } if !easy && r.Intn(10) != 0 { l := r.Intn(5) for i := 0; i < l; i++ { fieldNumber := r.Intn(100) + 100 wire := r.Intn(4) if wire == 3 { wire = 5 } dAtA := randFieldThetest(nil, r, fieldNumber, wire) github_com_gogo_protobuf_proto.SetRawExtension(this, int32(fieldNumber), dAtA) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 201) } return this } func NewPopulatedUnrecognized(r randyThetest, easy bool) *Unrecognized { this := &Unrecognized{} if r.Intn(10) != 0 { v243 := string(randStringThetest(r)) this.Field1 = &v243 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUnrecognizedWithInner(r randyThetest, easy bool) *UnrecognizedWithInner { this := &UnrecognizedWithInner{} if r.Intn(10) != 0 { v244 := r.Intn(5) this.Embedded = make([]*UnrecognizedWithInner_Inner, v244) for i := 0; i < v244; i++ { this.Embedded[i] = NewPopulatedUnrecognizedWithInner_Inner(r, easy) } } if r.Intn(10) != 0 { v245 := string(randStringThetest(r)) this.Field2 = &v245 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedUnrecognizedWithInner_Inner(r randyThetest, easy bool) *UnrecognizedWithInner_Inner { this := &UnrecognizedWithInner_Inner{} if r.Intn(10) != 0 { v246 := uint32(r.Uint32()) this.Field1 = &v246 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUnrecognizedWithEmbed(r randyThetest, easy bool) *UnrecognizedWithEmbed { this := &UnrecognizedWithEmbed{} v247 := NewPopulatedUnrecognizedWithEmbed_Embedded(r, easy) this.UnrecognizedWithEmbed_Embedded = *v247 if r.Intn(10) != 0 { v248 := string(randStringThetest(r)) this.Field2 = &v248 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedUnrecognizedWithEmbed_Embedded(r randyThetest, easy bool) *UnrecognizedWithEmbed_Embedded { this := &UnrecognizedWithEmbed_Embedded{} if r.Intn(10) != 0 { v249 := uint32(r.Uint32()) this.Field1 = &v249 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedNode(r randyThetest, easy bool) *Node { this := &Node{} if r.Intn(10) != 0 { v250 := string(randStringThetest(r)) this.Label = &v250 } if r.Intn(10) == 0 { v251 := r.Intn(5) this.Children = make([]*Node, v251) for i := 0; i < v251; i++ { this.Children[i] = NewPopulatedNode(r, easy) } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 3) } return this } func NewPopulatedNonByteCustomType(r randyThetest, easy bool) *NonByteCustomType { this := &NonByteCustomType{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedT(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNidOptNonByteCustomType(r randyThetest, easy bool) *NidOptNonByteCustomType { this := &NidOptNonByteCustomType{} v252 := NewPopulatedT(r) this.Field1 = *v252 if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinOptNonByteCustomType(r randyThetest, easy bool) *NinOptNonByteCustomType { this := &NinOptNonByteCustomType{} if r.Intn(10) != 0 { this.Field1 = NewPopulatedT(r) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNidRepNonByteCustomType(r randyThetest, easy bool) *NidRepNonByteCustomType { this := &NidRepNonByteCustomType{} if r.Intn(10) != 0 { v253 := r.Intn(10) this.Field1 = make([]T, v253) for i := 0; i < v253; i++ { v254 := NewPopulatedT(r) this.Field1[i] = *v254 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedNinRepNonByteCustomType(r randyThetest, easy bool) *NinRepNonByteCustomType { this := &NinRepNonByteCustomType{} if r.Intn(10) != 0 { v255 := r.Intn(10) this.Field1 = make([]T, v255) for i := 0; i < v255; i++ { v256 := NewPopulatedT(r) this.Field1[i] = *v256 } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } func NewPopulatedProtoType(r randyThetest, easy bool) *ProtoType { this := &ProtoType{} if r.Intn(10) != 0 { v257 := string(randStringThetest(r)) this.Field2 = &v257 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedThetest(r, 2) } return this } type randyThetest interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneThetest(r randyThetest) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringThetest(r randyThetest) string { v258 := r.Intn(100) tmps := make([]rune, v258) for i := 0; i < v258; i++ { tmps[i] = randUTF8RuneThetest(r) } return string(tmps) } func randUnrecognizedThetest(r randyThetest, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldThetest(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldThetest(dAtA []byte, r randyThetest, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) v259 := r.Int63() if r.Intn(2) == 0 { v259 *= -1 } dAtA = encodeVarintPopulateThetest(dAtA, uint64(v259)) case 1: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateThetest(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateThetest(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateThetest(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *NidOptNative) Size() (n int) { var l int _ = l n += 9 n += 5 n += 1 + sovThetest(uint64(m.Field3)) n += 1 + sovThetest(uint64(m.Field4)) n += 1 + sovThetest(uint64(m.Field5)) n += 1 + sovThetest(uint64(m.Field6)) n += 1 + sozThetest(uint64(m.Field7)) n += 1 + sozThetest(uint64(m.Field8)) n += 5 n += 5 n += 9 n += 9 n += 2 l = len(m.Field14) n += 1 + l + sovThetest(uint64(l)) if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNative) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozThetest(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field5) > 0 { for _, e := range m.Field5 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field9) > 0 { n += 5 * len(m.Field9) } if len(m.Field10) > 0 { n += 5 * len(m.Field10) } if len(m.Field11) > 0 { n += 9 * len(m.Field11) } if len(m.Field12) > 0 { n += 9 * len(m.Field12) } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field5) > 0 { for _, e := range m.Field5 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field9) > 0 { n += 5 * len(m.Field9) } if len(m.Field10) > 0 { n += 5 * len(m.Field10) } if len(m.Field11) > 0 { n += 9 * len(m.Field11) } if len(m.Field12) > 0 { n += 9 * len(m.Field12) } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepPackedNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 1 + sovThetest(uint64(len(m.Field1)*8)) + len(m.Field1)*8 } if len(m.Field2) > 0 { n += 1 + sovThetest(uint64(len(m.Field2)*4)) + len(m.Field2)*4 } if len(m.Field3) > 0 { l = 0 for _, e := range m.Field3 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field4) > 0 { l = 0 for _, e := range m.Field4 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field5) > 0 { l = 0 for _, e := range m.Field5 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field6) > 0 { l = 0 for _, e := range m.Field6 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field7) > 0 { l = 0 for _, e := range m.Field7 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field8) > 0 { l = 0 for _, e := range m.Field8 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field9) > 0 { n += 1 + sovThetest(uint64(len(m.Field9)*4)) + len(m.Field9)*4 } if len(m.Field10) > 0 { n += 1 + sovThetest(uint64(len(m.Field10)*4)) + len(m.Field10)*4 } if len(m.Field11) > 0 { n += 1 + sovThetest(uint64(len(m.Field11)*8)) + len(m.Field11)*8 } if len(m.Field12) > 0 { n += 1 + sovThetest(uint64(len(m.Field12)*8)) + len(m.Field12)*8 } if len(m.Field13) > 0 { n += 1 + sovThetest(uint64(len(m.Field13))) + len(m.Field13)*1 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepPackedNative) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 1 + sovThetest(uint64(len(m.Field1)*8)) + len(m.Field1)*8 } if len(m.Field2) > 0 { n += 1 + sovThetest(uint64(len(m.Field2)*4)) + len(m.Field2)*4 } if len(m.Field3) > 0 { l = 0 for _, e := range m.Field3 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field4) > 0 { l = 0 for _, e := range m.Field4 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field5) > 0 { l = 0 for _, e := range m.Field5 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field6) > 0 { l = 0 for _, e := range m.Field6 { l += sovThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field7) > 0 { l = 0 for _, e := range m.Field7 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field8) > 0 { l = 0 for _, e := range m.Field8 { l += sozThetest(uint64(e)) } n += 1 + sovThetest(uint64(l)) + l } if len(m.Field9) > 0 { n += 1 + sovThetest(uint64(len(m.Field9)*4)) + len(m.Field9)*4 } if len(m.Field10) > 0 { n += 1 + sovThetest(uint64(len(m.Field10)*4)) + len(m.Field10)*4 } if len(m.Field11) > 0 { n += 1 + sovThetest(uint64(len(m.Field11)*8)) + len(m.Field11)*8 } if len(m.Field12) > 0 { n += 1 + sovThetest(uint64(len(m.Field12)*8)) + len(m.Field12)*8 } if len(m.Field13) > 0 { n += 1 + sovThetest(uint64(len(m.Field13))) + len(m.Field13)*1 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptStruct) Size() (n int) { var l int _ = l n += 9 n += 5 l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) n += 1 + sovThetest(uint64(m.Field6)) n += 1 + sozThetest(uint64(m.Field7)) l = m.Field8.Size() n += 1 + l + sovThetest(uint64(l)) n += 2 l = len(m.Field14) n += 1 + l + sovThetest(uint64(l)) if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptStruct) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field4 != nil { l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { l = m.Field8.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepStruct) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepStruct) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { n += 9 * len(m.Field1) } if len(m.Field2) > 0 { n += 5 * len(m.Field2) } if len(m.Field3) > 0 { for _, e := range m.Field3 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field4) > 0 { for _, e := range m.Field4 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field6) > 0 { for _, e := range m.Field6 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field7) > 0 { for _, e := range m.Field7 { n += 1 + sozThetest(uint64(e)) } } if len(m.Field8) > 0 { for _, e := range m.Field8 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field13) > 0 { n += 2 * len(m.Field13) } if len(m.Field14) > 0 { for _, s := range m.Field14 { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.Field15) > 0 { for _, b := range m.Field15 { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidEmbeddedStruct) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) n += 3 if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinEmbeddedStruct) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field200 != nil { l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) } if m.Field210 != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidNestedStruct) Size() (n int) { var l int _ = l l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) if len(m.Field2) > 0 { for _, e := range m.Field2 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinNestedStruct) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.Field2) > 0 { for _, e := range m.Field2 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptCustom) Size() (n int) { var l int _ = l l = m.Id.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomDash) Size() (n int) { var l int _ = l if m.Value != nil { l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptCustom) Size() (n int) { var l int _ = l if m.Id != nil { l = m.Id.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Value != nil { l = m.Value.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepCustom) Size() (n int) { var l int _ = l if len(m.Id) > 0 { for _, e := range m.Id { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Value) > 0 { for _, e := range m.Value { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepCustom) Size() (n int) { var l int _ = l if len(m.Id) > 0 { for _, e := range m.Id { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.Value) > 0 { for _, e := range m.Value { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNativeUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptStructUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field4 != nil { l = m.Field4.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinEmbeddedStructUnion) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field200 != nil { l = m.Field200.Size() n += 2 + l + sovThetest(uint64(l)) } if m.Field210 != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinNestedStructUnion) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field2 != nil { l = m.Field2.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Field3 != nil { l = m.Field3.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Tree) Size() (n int) { var l int _ = l if m.Or != nil { l = m.Or.Size() n += 1 + l + sovThetest(uint64(l)) } if m.And != nil { l = m.And.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Leaf != nil { l = m.Leaf.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OrBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AndBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Leaf) Size() (n int) { var l int _ = l n += 1 + sovThetest(uint64(m.Value)) l = len(m.StrValue) n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *DeepTree) Size() (n int) { var l int _ = l if m.Down != nil { l = m.Down.Size() n += 1 + l + sovThetest(uint64(l)) } if m.And != nil { l = m.And.Size() n += 1 + l + sovThetest(uint64(l)) } if m.Leaf != nil { l = m.Leaf.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *ADeepBranch) Size() (n int) { var l int _ = l l = m.Down.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AndDeepBranch) Size() (n int) { var l int _ = l l = m.Left.Size() n += 1 + l + sovThetest(uint64(l)) l = m.Right.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *DeepLeaf) Size() (n int) { var l int _ = l l = m.Tree.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Nil) Size() (n int) { var l int _ = l if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptEnum) Size() (n int) { var l int _ = l n += 1 + sovThetest(uint64(m.Field1)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptEnum) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepEnum) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field2) > 0 { for _, e := range m.Field2 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepEnum) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field2) > 0 { for _, e := range m.Field2 { n += 1 + sovThetest(uint64(e)) } } if len(m.Field3) > 0 { for _, e := range m.Field3 { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptEnumDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AnotherNinOptEnum) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *AnotherNinOptEnumDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Timer) Size() (n int) { var l int _ = l n += 9 n += 9 if m.Data != nil { l = len(m.Data) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *MyExtendable) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } n += github_com_gogo_protobuf_proto.SizeOfInternalExtension(m) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OtherExtenable) Size() (n int) { var l int _ = l if m.Field2 != nil { n += 1 + sovThetest(uint64(*m.Field2)) } if m.Field13 != nil { n += 1 + sovThetest(uint64(*m.Field13)) } if m.M != nil { l = m.M.Size() n += 1 + l + sovThetest(uint64(l)) } n += github_com_gogo_protobuf_proto.SizeOfInternalExtension(m) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.EnumField != nil { n += 1 + sovThetest(uint64(*m.EnumField)) } if m.NNM != nil { l = m.NNM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.NM != nil { l = m.NM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition_NestedMessage) Size() (n int) { var l int _ = l if m.NestedField1 != nil { n += 9 } if m.NNM != nil { l = m.NNM.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedDefinition_NestedMessage_NestedNestedMsg) Size() (n int) { var l int _ = l if m.NestedNestedField1 != nil { l = len(*m.NestedNestedField1) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NestedScope) Size() (n int) { var l int _ = l if m.A != nil { l = m.A.Size() n += 1 + l + sovThetest(uint64(l)) } if m.B != nil { n += 1 + sovThetest(uint64(*m.B)) } if m.C != nil { l = m.C.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNativeDefault) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 9 } if m.Field2 != nil { n += 5 } if m.Field3 != nil { n += 1 + sovThetest(uint64(*m.Field3)) } if m.Field4 != nil { n += 1 + sovThetest(uint64(*m.Field4)) } if m.Field5 != nil { n += 1 + sovThetest(uint64(*m.Field5)) } if m.Field6 != nil { n += 1 + sovThetest(uint64(*m.Field6)) } if m.Field7 != nil { n += 1 + sozThetest(uint64(*m.Field7)) } if m.Field8 != nil { n += 1 + sozThetest(uint64(*m.Field8)) } if m.Field9 != nil { n += 5 } if m.Field10 != nil { n += 5 } if m.Field11 != nil { n += 9 } if m.Field12 != nil { n += 9 } if m.Field13 != nil { n += 2 } if m.Field14 != nil { l = len(*m.Field14) n += 1 + l + sovThetest(uint64(l)) } if m.Field15 != nil { l = len(m.Field15) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomContainer) Size() (n int) { var l int _ = l l = m.CustomStruct.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNidOptNative) Size() (n int) { var l int _ = l n += 9 n += 5 n += 1 + sovThetest(uint64(m.FieldC)) n += 1 + sovThetest(uint64(m.FieldD)) n += 1 + sovThetest(uint64(m.FieldE)) n += 1 + sovThetest(uint64(m.FieldF)) n += 1 + sozThetest(uint64(m.FieldG)) n += 1 + sozThetest(uint64(m.FieldH)) n += 5 n += 5 n += 9 n += 9 n += 2 l = len(m.FieldN) n += 1 + l + sovThetest(uint64(l)) if m.FieldO != nil { l = len(m.FieldO) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinOptNative) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 9 } if m.FieldB != nil { n += 5 } if m.FieldC != nil { n += 1 + sovThetest(uint64(*m.FieldC)) } if m.FieldD != nil { n += 1 + sovThetest(uint64(*m.FieldD)) } if m.FieldE != nil { n += 1 + sovThetest(uint64(*m.FieldE)) } if m.FieldF != nil { n += 1 + sovThetest(uint64(*m.FieldF)) } if m.FieldG != nil { n += 1 + sozThetest(uint64(*m.FieldG)) } if m.FieldH != nil { n += 1 + sozThetest(uint64(*m.FieldH)) } if m.FieldI != nil { n += 5 } if m.FieldJ != nil { n += 5 } if m.FieldK != nil { n += 9 } if m.FielL != nil { n += 9 } if m.FieldM != nil { n += 2 } if m.FieldN != nil { l = len(*m.FieldN) n += 1 + l + sovThetest(uint64(l)) } if m.FieldO != nil { l = len(m.FieldO) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinRepNative) Size() (n int) { var l int _ = l if len(m.FieldA) > 0 { n += 9 * len(m.FieldA) } if len(m.FieldB) > 0 { n += 5 * len(m.FieldB) } if len(m.FieldC) > 0 { for _, e := range m.FieldC { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldD) > 0 { for _, e := range m.FieldD { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldE) > 0 { for _, e := range m.FieldE { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldF) > 0 { for _, e := range m.FieldF { n += 1 + sovThetest(uint64(e)) } } if len(m.FieldG) > 0 { for _, e := range m.FieldG { n += 1 + sozThetest(uint64(e)) } } if len(m.FieldH) > 0 { for _, e := range m.FieldH { n += 1 + sozThetest(uint64(e)) } } if len(m.FieldI) > 0 { n += 5 * len(m.FieldI) } if len(m.FieldJ) > 0 { n += 5 * len(m.FieldJ) } if len(m.FieldK) > 0 { n += 9 * len(m.FieldK) } if len(m.FieldL) > 0 { n += 9 * len(m.FieldL) } if len(m.FieldM) > 0 { n += 2 * len(m.FieldM) } if len(m.FieldN) > 0 { for _, s := range m.FieldN { l = len(s) n += 1 + l + sovThetest(uint64(l)) } } if len(m.FieldO) > 0 { for _, b := range m.FieldO { l = len(b) n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinStruct) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 9 } if m.FieldB != nil { n += 5 } if m.FieldC != nil { l = m.FieldC.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.FieldD) > 0 { for _, e := range m.FieldD { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.FieldE != nil { n += 1 + sovThetest(uint64(*m.FieldE)) } if m.FieldF != nil { n += 1 + sozThetest(uint64(*m.FieldF)) } if m.FieldG != nil { l = m.FieldG.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldH != nil { n += 2 } if m.FieldI != nil { l = len(*m.FieldI) n += 1 + l + sovThetest(uint64(l)) } if m.FieldJ != nil { l = len(m.FieldJ) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameCustomType) Size() (n int) { var l int _ = l if m.FieldA != nil { l = m.FieldA.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldB != nil { l = m.FieldB.Size() n += 1 + l + sovThetest(uint64(l)) } if len(m.FieldC) > 0 { for _, e := range m.FieldC { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if len(m.FieldD) > 0 { for _, e := range m.FieldD { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameNinEmbeddedStructUnion) Size() (n int) { var l int _ = l if m.NidOptNative != nil { l = m.NidOptNative.Size() n += 1 + l + sovThetest(uint64(l)) } if m.FieldA != nil { l = m.FieldA.Size() n += 2 + l + sovThetest(uint64(l)) } if m.FieldB != nil { n += 3 } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *CustomNameEnum) Size() (n int) { var l int _ = l if m.FieldA != nil { n += 1 + sovThetest(uint64(*m.FieldA)) } if len(m.FieldB) > 0 { for _, e := range m.FieldB { n += 1 + sovThetest(uint64(e)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NoExtensionsMap) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } if m.XXX_extensions != nil { n += len(m.XXX_extensions) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *Unrecognized) Size() (n int) { var l int _ = l if m.Field1 != nil { l = len(*m.Field1) n += 1 + l + sovThetest(uint64(l)) } return n } func (m *UnrecognizedWithInner) Size() (n int) { var l int _ = l if len(m.Embedded) > 0 { for _, e := range m.Embedded { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *UnrecognizedWithInner_Inner) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } return n } func (m *UnrecognizedWithEmbed) Size() (n int) { var l int _ = l l = m.UnrecognizedWithEmbed_Embedded.Size() n += 1 + l + sovThetest(uint64(l)) if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *UnrecognizedWithEmbed_Embedded) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovThetest(uint64(*m.Field1)) } return n } func (m *Node) Size() (n int) { var l int _ = l if m.Label != nil { l = len(*m.Label) n += 1 + l + sovThetest(uint64(l)) } if len(m.Children) > 0 { for _, e := range m.Children { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NonByteCustomType) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidOptNonByteCustomType) Size() (n int) { var l int _ = l l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinOptNonByteCustomType) Size() (n int) { var l int _ = l if m.Field1 != nil { l = m.Field1.Size() n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NidRepNonByteCustomType) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *NinRepNonByteCustomType) Size() (n int) { var l int _ = l if len(m.Field1) > 0 { for _, e := range m.Field1 { l = e.Size() n += 1 + l + sovThetest(uint64(l)) } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *ProtoType) Size() (n int) { var l int _ = l if m.Field2 != nil { l = len(*m.Field2) n += 1 + l + sovThetest(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovThetest(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozThetest(x uint64) (n int) { return sovThetest(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *NidOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNative{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + valueToStringThetest(this.Field8) + `,`, `Field9:` + valueToStringThetest(this.Field9) + `,`, `Field10:` + valueToStringThetest(this.Field10) + `,`, `Field11:` + valueToStringThetest(this.Field11) + `,`, `Field12:` + valueToStringThetest(this.Field12) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepPackedNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepPackedNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepPackedNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepPackedNative{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Field4:` + fmt.Sprintf("%v", this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + fmt.Sprintf("%v", this.Field8) + `,`, `Field9:` + fmt.Sprintf("%v", this.Field9) + `,`, `Field10:` + fmt.Sprintf("%v", this.Field10) + `,`, `Field11:` + fmt.Sprintf("%v", this.Field11) + `,`, `Field12:` + fmt.Sprintf("%v", this.Field12) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(strings.Replace(this.Field3.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field4:` + strings.Replace(strings.Replace(this.Field4.String(), "NinOptNative", "NinOptNative", 1), `&`, ``, 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(strings.Replace(this.Field8.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptStruct{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field4:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1), `&`, ``, 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepStruct{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + fmt.Sprintf("%v", this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `Field8:` + strings.Replace(fmt.Sprintf("%v", this.Field8), "NidOptNative", "NidOptNative", 1) + `,`, `Field13:` + fmt.Sprintf("%v", this.Field13) + `,`, `Field14:` + fmt.Sprintf("%v", this.Field14) + `,`, `Field15:` + fmt.Sprintf("%v", this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidEmbeddedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidEmbeddedStruct{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(strings.Replace(this.Field200.String(), "NidOptNative", "NidOptNative", 1), `&`, ``, 1) + `,`, `Field210:` + fmt.Sprintf("%v", this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinEmbeddedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinEmbeddedStruct{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(fmt.Sprintf("%v", this.Field200), "NidOptNative", "NidOptNative", 1) + `,`, `Field210:` + valueToStringThetest(this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidNestedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidNestedStruct{`, `Field1:` + strings.Replace(strings.Replace(this.Field1.String(), "NidOptStruct", "NidOptStruct", 1), `&`, ``, 1) + `,`, `Field2:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Field2), "NidRepStruct", "NidRepStruct", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinNestedStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinNestedStruct{`, `Field1:` + strings.Replace(fmt.Sprintf("%v", this.Field1), "NinOptStruct", "NinOptStruct", 1) + `,`, `Field2:` + strings.Replace(fmt.Sprintf("%v", this.Field2), "NinRepStruct", "NinRepStruct", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomDash) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomDash{`, `Value:` + valueToStringThetest(this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptCustom{`, `Id:` + valueToStringThetest(this.Id) + `,`, `Value:` + valueToStringThetest(this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepCustom) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepCustom{`, `Id:` + fmt.Sprintf("%v", this.Id) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNativeUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNativeUnion{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptStructUnion{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NidOptNative", "NidOptNative", 1) + `,`, `Field4:` + strings.Replace(fmt.Sprintf("%v", this.Field4), "NinOptNative", "NinOptNative", 1) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinEmbeddedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinEmbeddedStructUnion{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `Field200:` + strings.Replace(fmt.Sprintf("%v", this.Field200), "NinOptNative", "NinOptNative", 1) + `,`, `Field210:` + valueToStringThetest(this.Field210) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinNestedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinNestedStructUnion{`, `Field1:` + strings.Replace(fmt.Sprintf("%v", this.Field1), "NinOptNativeUnion", "NinOptNativeUnion", 1) + `,`, `Field2:` + strings.Replace(fmt.Sprintf("%v", this.Field2), "NinOptStructUnion", "NinOptStructUnion", 1) + `,`, `Field3:` + strings.Replace(fmt.Sprintf("%v", this.Field3), "NinEmbeddedStructUnion", "NinEmbeddedStructUnion", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Tree) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Tree{`, `Or:` + strings.Replace(fmt.Sprintf("%v", this.Or), "OrBranch", "OrBranch", 1) + `,`, `And:` + strings.Replace(fmt.Sprintf("%v", this.And), "AndBranch", "AndBranch", 1) + `,`, `Leaf:` + strings.Replace(fmt.Sprintf("%v", this.Leaf), "Leaf", "Leaf", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OrBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OrBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AndBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AndBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Leaf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Leaf{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `StrValue:` + fmt.Sprintf("%v", this.StrValue) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *DeepTree) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&DeepTree{`, `Down:` + strings.Replace(fmt.Sprintf("%v", this.Down), "ADeepBranch", "ADeepBranch", 1) + `,`, `And:` + strings.Replace(fmt.Sprintf("%v", this.And), "AndDeepBranch", "AndDeepBranch", 1) + `,`, `Leaf:` + strings.Replace(fmt.Sprintf("%v", this.Leaf), "DeepLeaf", "DeepLeaf", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *ADeepBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ADeepBranch{`, `Down:` + strings.Replace(strings.Replace(this.Down.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AndDeepBranch) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AndDeepBranch{`, `Left:` + strings.Replace(strings.Replace(this.Left.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `Right:` + strings.Replace(strings.Replace(this.Right.String(), "DeepTree", "DeepTree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *DeepLeaf) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&DeepLeaf{`, `Tree:` + strings.Replace(strings.Replace(this.Tree.String(), "Tree", "Tree", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Nil) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Nil{`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptEnum{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepEnum{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptEnumDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptEnumDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AnotherNinOptEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AnotherNinOptEnum{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *AnotherNinOptEnumDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&AnotherNinOptEnumDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Timer) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Timer{`, `Time1:` + fmt.Sprintf("%v", this.Time1) + `,`, `Time2:` + fmt.Sprintf("%v", this.Time2) + `,`, `Data:` + fmt.Sprintf("%v", this.Data) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *MyExtendable) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&MyExtendable{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_InternalExtensions:` + github_com_gogo_protobuf_proto.StringFromInternalExtension(this) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OtherExtenable) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OtherExtenable{`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `M:` + strings.Replace(fmt.Sprintf("%v", this.M), "MyExtendable", "MyExtendable", 1) + `,`, `XXX_InternalExtensions:` + github_com_gogo_protobuf_proto.StringFromInternalExtension(this) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `EnumField:` + valueToStringThetest(this.EnumField) + `,`, `NNM:` + strings.Replace(fmt.Sprintf("%v", this.NNM), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `NM:` + strings.Replace(fmt.Sprintf("%v", this.NM), "NestedDefinition_NestedMessage", "NestedDefinition_NestedMessage", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition_NestedMessage) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition_NestedMessage{`, `NestedField1:` + valueToStringThetest(this.NestedField1) + `,`, `NNM:` + strings.Replace(fmt.Sprintf("%v", this.NNM), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedDefinition_NestedMessage_NestedNestedMsg) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedDefinition_NestedMessage_NestedNestedMsg{`, `NestedNestedField1:` + valueToStringThetest(this.NestedNestedField1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NestedScope) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NestedScope{`, `A:` + strings.Replace(fmt.Sprintf("%v", this.A), "NestedDefinition_NestedMessage_NestedNestedMsg", "NestedDefinition_NestedMessage_NestedNestedMsg", 1) + `,`, `B:` + valueToStringThetest(this.B) + `,`, `C:` + strings.Replace(fmt.Sprintf("%v", this.C), "NestedDefinition_NestedMessage", "NestedDefinition_NestedMessage", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNativeDefault) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNativeDefault{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `Field3:` + valueToStringThetest(this.Field3) + `,`, `Field4:` + valueToStringThetest(this.Field4) + `,`, `Field5:` + valueToStringThetest(this.Field5) + `,`, `Field6:` + valueToStringThetest(this.Field6) + `,`, `Field7:` + valueToStringThetest(this.Field7) + `,`, `Field8:` + valueToStringThetest(this.Field8) + `,`, `Field9:` + valueToStringThetest(this.Field9) + `,`, `Field10:` + valueToStringThetest(this.Field10) + `,`, `Field11:` + valueToStringThetest(this.Field11) + `,`, `Field12:` + valueToStringThetest(this.Field12) + `,`, `Field13:` + valueToStringThetest(this.Field13) + `,`, `Field14:` + valueToStringThetest(this.Field14) + `,`, `Field15:` + valueToStringThetest(this.Field15) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomContainer) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomContainer{`, `CustomStruct:` + strings.Replace(strings.Replace(this.CustomStruct.String(), "NidOptCustom", "NidOptCustom", 1), `&`, ``, 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNidOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNidOptNative{`, `FieldA:` + fmt.Sprintf("%v", this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `FieldE:` + fmt.Sprintf("%v", this.FieldE) + `,`, `FieldF:` + fmt.Sprintf("%v", this.FieldF) + `,`, `FieldG:` + fmt.Sprintf("%v", this.FieldG) + `,`, `FieldH:` + fmt.Sprintf("%v", this.FieldH) + `,`, `FieldI:` + fmt.Sprintf("%v", this.FieldI) + `,`, `FieldJ:` + fmt.Sprintf("%v", this.FieldJ) + `,`, `FieldK:` + fmt.Sprintf("%v", this.FieldK) + `,`, `FieldL:` + fmt.Sprintf("%v", this.FieldL) + `,`, `FieldM:` + fmt.Sprintf("%v", this.FieldM) + `,`, `FieldN:` + fmt.Sprintf("%v", this.FieldN) + `,`, `FieldO:` + fmt.Sprintf("%v", this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinOptNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinOptNative{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + valueToStringThetest(this.FieldC) + `,`, `FieldD:` + valueToStringThetest(this.FieldD) + `,`, `FieldE:` + valueToStringThetest(this.FieldE) + `,`, `FieldF:` + valueToStringThetest(this.FieldF) + `,`, `FieldG:` + valueToStringThetest(this.FieldG) + `,`, `FieldH:` + valueToStringThetest(this.FieldH) + `,`, `FieldI:` + valueToStringThetest(this.FieldI) + `,`, `FieldJ:` + valueToStringThetest(this.FieldJ) + `,`, `FieldK:` + valueToStringThetest(this.FieldK) + `,`, `FielL:` + valueToStringThetest(this.FielL) + `,`, `FieldM:` + valueToStringThetest(this.FieldM) + `,`, `FieldN:` + valueToStringThetest(this.FieldN) + `,`, `FieldO:` + valueToStringThetest(this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinRepNative) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinRepNative{`, `FieldA:` + fmt.Sprintf("%v", this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `FieldE:` + fmt.Sprintf("%v", this.FieldE) + `,`, `FieldF:` + fmt.Sprintf("%v", this.FieldF) + `,`, `FieldG:` + fmt.Sprintf("%v", this.FieldG) + `,`, `FieldH:` + fmt.Sprintf("%v", this.FieldH) + `,`, `FieldI:` + fmt.Sprintf("%v", this.FieldI) + `,`, `FieldJ:` + fmt.Sprintf("%v", this.FieldJ) + `,`, `FieldK:` + fmt.Sprintf("%v", this.FieldK) + `,`, `FieldL:` + fmt.Sprintf("%v", this.FieldL) + `,`, `FieldM:` + fmt.Sprintf("%v", this.FieldM) + `,`, `FieldN:` + fmt.Sprintf("%v", this.FieldN) + `,`, `FieldO:` + fmt.Sprintf("%v", this.FieldO) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinStruct) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinStruct{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + strings.Replace(fmt.Sprintf("%v", this.FieldC), "NidOptNative", "NidOptNative", 1) + `,`, `FieldD:` + strings.Replace(fmt.Sprintf("%v", this.FieldD), "NinOptNative", "NinOptNative", 1) + `,`, `FieldE:` + valueToStringThetest(this.FieldE) + `,`, `FieldF:` + valueToStringThetest(this.FieldF) + `,`, `FieldG:` + strings.Replace(fmt.Sprintf("%v", this.FieldG), "NidOptNative", "NidOptNative", 1) + `,`, `FieldH:` + valueToStringThetest(this.FieldH) + `,`, `FieldI:` + valueToStringThetest(this.FieldI) + `,`, `FieldJ:` + valueToStringThetest(this.FieldJ) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameCustomType{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `FieldC:` + fmt.Sprintf("%v", this.FieldC) + `,`, `FieldD:` + fmt.Sprintf("%v", this.FieldD) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameNinEmbeddedStructUnion) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameNinEmbeddedStructUnion{`, `NidOptNative:` + strings.Replace(fmt.Sprintf("%v", this.NidOptNative), "NidOptNative", "NidOptNative", 1) + `,`, `FieldA:` + strings.Replace(fmt.Sprintf("%v", this.FieldA), "NinOptNative", "NinOptNative", 1) + `,`, `FieldB:` + valueToStringThetest(this.FieldB) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *CustomNameEnum) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&CustomNameEnum{`, `FieldA:` + valueToStringThetest(this.FieldA) + `,`, `FieldB:` + fmt.Sprintf("%v", this.FieldB) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NoExtensionsMap) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NoExtensionsMap{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_extensions:` + github_com_gogo_protobuf_proto.StringFromExtensionsBytes(this.XXX_extensions) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Unrecognized) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Unrecognized{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithInner) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithInner{`, `Embedded:` + strings.Replace(fmt.Sprintf("%v", this.Embedded), "UnrecognizedWithInner_Inner", "UnrecognizedWithInner_Inner", 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithInner_Inner) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithInner_Inner{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithEmbed) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithEmbed{`, `UnrecognizedWithEmbed_Embedded:` + strings.Replace(strings.Replace(this.UnrecognizedWithEmbed_Embedded.String(), "UnrecognizedWithEmbed_Embedded", "UnrecognizedWithEmbed_Embedded", 1), `&`, ``, 1) + `,`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *UnrecognizedWithEmbed_Embedded) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnrecognizedWithEmbed_Embedded{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `}`, }, "") return s } func (this *Node) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Node{`, `Label:` + valueToStringThetest(this.Label) + `,`, `Children:` + strings.Replace(fmt.Sprintf("%v", this.Children), "Node", "Node", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NonByteCustomType{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidOptNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidOptNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinOptNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinOptNonByteCustomType{`, `Field1:` + valueToStringThetest(this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NidRepNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NidRepNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *NinRepNonByteCustomType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NinRepNonByteCustomType{`, `Field1:` + fmt.Sprintf("%v", this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *ProtoType) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ProtoType{`, `Field2:` + valueToStringThetest(this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringThetest(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (this *NinOptNativeUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } if this.Field4 != nil { return this.Field4 } if this.Field5 != nil { return this.Field5 } if this.Field6 != nil { return this.Field6 } if this.Field13 != nil { return this.Field13 } if this.Field14 != nil { return this.Field14 } if this.Field15 != nil { return this.Field15 } return nil } func (this *NinOptNativeUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *float64: this.Field1 = vt case *float32: this.Field2 = vt case *int32: this.Field3 = vt case *int64: this.Field4 = vt case *uint32: this.Field5 = vt case *uint64: this.Field6 = vt case *bool: this.Field13 = vt case *string: this.Field14 = vt case []byte: this.Field15 = vt default: return false } return true } func (this *NinOptStructUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } if this.Field4 != nil { return this.Field4 } if this.Field6 != nil { return this.Field6 } if this.Field7 != nil { return this.Field7 } if this.Field13 != nil { return this.Field13 } if this.Field14 != nil { return this.Field14 } if this.Field15 != nil { return this.Field15 } return nil } func (this *NinOptStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *float64: this.Field1 = vt case *float32: this.Field2 = vt case *NidOptNative: this.Field3 = vt case *NinOptNative: this.Field4 = vt case *uint64: this.Field6 = vt case *int32: this.Field7 = vt case *bool: this.Field13 = vt case *string: this.Field14 = vt case []byte: this.Field15 = vt default: return false } return true } func (this *NinEmbeddedStructUnion) GetValue() interface{} { if this.NidOptNative != nil { return this.NidOptNative } if this.Field200 != nil { return this.Field200 } if this.Field210 != nil { return this.Field210 } return nil } func (this *NinEmbeddedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NidOptNative: this.NidOptNative = vt case *NinOptNative: this.Field200 = vt case *bool: this.Field210 = vt default: return false } return true } func (this *NinNestedStructUnion) GetValue() interface{} { if this.Field1 != nil { return this.Field1 } if this.Field2 != nil { return this.Field2 } if this.Field3 != nil { return this.Field3 } return nil } func (this *NinNestedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NinOptNativeUnion: this.Field1 = vt case *NinOptStructUnion: this.Field2 = vt case *NinEmbeddedStructUnion: this.Field3 = vt default: this.Field1 = new(NinOptNativeUnion) if set := this.Field1.SetValue(value); set { return true } this.Field1 = nil this.Field2 = new(NinOptStructUnion) if set := this.Field2.SetValue(value); set { return true } this.Field2 = nil this.Field3 = new(NinEmbeddedStructUnion) if set := this.Field3.SetValue(value); set { return true } this.Field3 = nil return false } return true } func (this *Tree) GetValue() interface{} { if this.Or != nil { return this.Or } if this.And != nil { return this.And } if this.Leaf != nil { return this.Leaf } return nil } func (this *Tree) SetValue(value interface{}) bool { switch vt := value.(type) { case *OrBranch: this.Or = vt case *AndBranch: this.And = vt case *Leaf: this.Leaf = vt default: return false } return true } func (this *DeepTree) GetValue() interface{} { if this.Down != nil { return this.Down } if this.And != nil { return this.And } if this.Leaf != nil { return this.Leaf } return nil } func (this *DeepTree) SetValue(value interface{}) bool { switch vt := value.(type) { case *ADeepBranch: this.Down = vt case *AndDeepBranch: this.And = vt case *DeepLeaf: this.Leaf = vt default: return false } return true } func (this *CustomNameNinEmbeddedStructUnion) GetValue() interface{} { if this.NidOptNative != nil { return this.NidOptNative } if this.FieldA != nil { return this.FieldA } if this.FieldB != nil { return this.FieldB } return nil } func (this *CustomNameNinEmbeddedStructUnion) SetValue(value interface{}) bool { switch vt := value.(type) { case *NidOptNative: this.NidOptNative = vt case *NinOptNative: this.FieldA = vt case *bool: this.FieldB = vt default: return false } return true } func init() { proto.RegisterFile("thetest.proto", fileDescriptorThetest) } var fileDescriptorThetest = []byte{ // 3070 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0x1b, 0xc7, 0xf5, 0xe7, 0xec, 0x50, 0x0a, 0xf5, 0xf4, 0x45, 0x6f, 0x62, 0x65, 0xc1, 0xe8, 0xbf, 0xa2, 0x37, 0xb2, 0xfe, 0x0c, 0x11, 0x4b, 0x14, 0x45, 0xc9, 0x32, 0xd3, 0xa4, 0xe0, 0x97, 0x1b, 0xb9, 0x11, 0x65, 0x30, 0x72, 0x5b, 0x03, 0x05, 0x0a, 0x5a, 0x5c, 0x4b, 0x44, 0xe5, 0xa5, 0x40, 0xae, 0xd2, 0xb8, 0x87, 0x22, 0xc8, 0xa1, 0x08, 0x7a, 0x2d, 0x7a, 0x6c, 0xe3, 0xa2, 0x28, 0x90, 0xde, 0x72, 0x28, 0x8a, 0xa2, 0x28, 0x1a, 0x5f, 0x0a, 0xa8, 0x37, 0xa3, 0xa7, 0x22, 0x28, 0x84, 0x88, 0xb9, 0xe4, 0x18, 0xf4, 0xd2, 0x1c, 0x72, 0x28, 0x76, 0x77, 0x76, 0x76, 0x66, 0xb8, 0xcb, 0x5d, 0x5a, 0x4a, 0x9b, 0x8b, 0x2d, 0xce, 0x7b, 0x6f, 0xe6, 0xed, 0xfb, 0xfd, 0xde, 0xdb, 0xb7, 0x33, 0x03, 0xd3, 0xe6, 0x81, 0x6e, 0xea, 0x3d, 0x73, 0xf9, 0xa8, 0xdb, 0x31, 0x3b, 0x72, 0xdc, 0xfa, 0x3b, 0x75, 0x6d, 0xbf, 0x6d, 0x1e, 0x1c, 0xdf, 0x5b, 0xde, 0xeb, 0x3c, 0x58, 0xd9, 0xef, 0xec, 0x77, 0x56, 0x6c, 0xe1, 0xbd, 0xe3, 0xfb, 0xf6, 0x2f, 0xfb, 0x87, 0xfd, 0x97, 0x63, 0xa4, 0xfd, 0x13, 0xc3, 0x54, 0xbd, 0xdd, 0xda, 0x39, 0x32, 0xeb, 0x4d, 0xb3, 0xfd, 0x96, 0x2e, 0xcf, 0xc3, 0xf8, 0xcd, 0xb6, 0x7e, 0xd8, 0x5a, 0x55, 0x50, 0x1a, 0x65, 0x50, 0x39, 0x7e, 0x72, 0xba, 0x10, 0x6b, 0x90, 0x31, 0x2a, 0xcd, 0x2b, 0x52, 0x1a, 0x65, 0x24, 0x4e, 0x9a, 0xa7, 0xd2, 0x35, 0x05, 0xa7, 0x51, 0x66, 0x8c, 0x93, 0xae, 0x51, 0x69, 0x41, 0x89, 0xa7, 0x51, 0x06, 0x73, 0xd2, 0x02, 0x95, 0xae, 0x2b, 0x63, 0x69, 0x94, 0x99, 0xe6, 0xa4, 0xeb, 0x54, 0xba, 0xa1, 0x8c, 0xa7, 0x51, 0x26, 0xce, 0x49, 0x37, 0xa8, 0xf4, 0xba, 0xf2, 0x4c, 0x1a, 0x65, 0x2e, 0x71, 0xd2, 0xeb, 0x54, 0xba, 0xa9, 0x24, 0xd2, 0x28, 0x23, 0x73, 0xd2, 0x4d, 0x2a, 0xbd, 0xa1, 0x4c, 0xa4, 0x51, 0xe6, 0x19, 0x4e, 0x7a, 0x43, 0x56, 0xe1, 0x19, 0xe7, 0xc9, 0x73, 0x0a, 0xa4, 0x51, 0x66, 0x96, 0x88, 0xdd, 0x41, 0x4f, 0xbe, 0xaa, 0x4c, 0xa6, 0x51, 0x66, 0x9c, 0x97, 0xaf, 0x7a, 0xf2, 0xbc, 0x32, 0x95, 0x46, 0x99, 0x24, 0x2f, 0xcf, 0x7b, 0xf2, 0x35, 0x65, 0x3a, 0x8d, 0x32, 0x09, 0x5e, 0xbe, 0xe6, 0xc9, 0x0b, 0xca, 0x4c, 0x1a, 0x65, 0x26, 0x78, 0x79, 0xc1, 0x93, 0xaf, 0x2b, 0xb3, 0x69, 0x94, 0x99, 0xe2, 0xe5, 0xeb, 0xda, 0xbb, 0x36, 0xbc, 0x86, 0x07, 0xef, 0x1c, 0x0f, 0x2f, 0x05, 0x76, 0x8e, 0x07, 0x96, 0x42, 0x3a, 0xc7, 0x43, 0x4a, 0xc1, 0x9c, 0xe3, 0xc1, 0xa4, 0x30, 0xce, 0xf1, 0x30, 0x52, 0x00, 0xe7, 0x78, 0x00, 0x29, 0x74, 0x73, 0x3c, 0x74, 0x14, 0xb4, 0x39, 0x1e, 0x34, 0x0a, 0xd7, 0x1c, 0x0f, 0x17, 0x05, 0x4a, 0x11, 0x80, 0xf2, 0x20, 0x52, 0x04, 0x88, 0x3c, 0x70, 0x14, 0x01, 0x1c, 0x0f, 0x16, 0x45, 0x80, 0xc5, 0x03, 0x44, 0x11, 0x00, 0xf1, 0xa0, 0x50, 0x04, 0x28, 0x3c, 0x10, 0x48, 0x8e, 0x35, 0xf4, 0x23, 0x9f, 0x1c, 0xc3, 0x43, 0x73, 0x0c, 0x0f, 0xcd, 0x31, 0x3c, 0x34, 0xc7, 0xf0, 0xd0, 0x1c, 0xc3, 0x43, 0x73, 0x0c, 0x0f, 0xcd, 0x31, 0x3c, 0x34, 0xc7, 0xf0, 0xd0, 0x1c, 0xc3, 0xc3, 0x73, 0x0c, 0x87, 0xe4, 0x18, 0x0e, 0xc9, 0x31, 0x1c, 0x92, 0x63, 0x38, 0x24, 0xc7, 0x70, 0x48, 0x8e, 0xe1, 0xc0, 0x1c, 0xf3, 0xe0, 0x9d, 0xe3, 0xe1, 0xf5, 0xcd, 0x31, 0x1c, 0x90, 0x63, 0x38, 0x20, 0xc7, 0x70, 0x40, 0x8e, 0xe1, 0x80, 0x1c, 0xc3, 0x01, 0x39, 0x86, 0x03, 0x72, 0x0c, 0x07, 0xe4, 0x18, 0x0e, 0xca, 0x31, 0x1c, 0x98, 0x63, 0x38, 0x30, 0xc7, 0x70, 0x60, 0x8e, 0xe1, 0xc0, 0x1c, 0xc3, 0x81, 0x39, 0x86, 0xd9, 0x1c, 0xfb, 0x33, 0x06, 0xd9, 0xc9, 0xb1, 0xdb, 0xcd, 0xbd, 0x1f, 0xea, 0x2d, 0x02, 0x85, 0x2a, 0x64, 0xda, 0xb8, 0x05, 0x5d, 0xd2, 0x83, 0x44, 0x15, 0x72, 0x8d, 0x97, 0xe7, 0xa9, 0xdc, 0xcd, 0x36, 0x5e, 0xbe, 0x46, 0xe5, 0x6e, 0xbe, 0xf1, 0xf2, 0x02, 0x95, 0xbb, 0x19, 0xc7, 0xcb, 0xd7, 0xa9, 0xdc, 0xcd, 0x39, 0x5e, 0xbe, 0x41, 0xe5, 0x6e, 0xd6, 0xf1, 0xf2, 0xeb, 0x54, 0xee, 0xe6, 0x1d, 0x2f, 0xdf, 0xa4, 0x72, 0x37, 0xf3, 0x78, 0xf9, 0x0d, 0x39, 0x2d, 0xe6, 0x9e, 0xab, 0x40, 0xa1, 0x4d, 0x8b, 0xd9, 0x27, 0x68, 0xac, 0x7a, 0x1a, 0x6e, 0xfe, 0x09, 0x1a, 0x79, 0x4f, 0xc3, 0xcd, 0x40, 0x41, 0x63, 0x4d, 0x7b, 0xcf, 0x86, 0xcf, 0x10, 0xe1, 0x4b, 0x09, 0xf0, 0x49, 0x0c, 0x74, 0x29, 0x01, 0x3a, 0x89, 0x81, 0x2d, 0x25, 0xc0, 0x26, 0x31, 0x90, 0xa5, 0x04, 0xc8, 0x24, 0x06, 0xae, 0x94, 0x00, 0x97, 0xc4, 0x40, 0x95, 0x12, 0xa0, 0x92, 0x18, 0x98, 0x52, 0x02, 0x4c, 0x12, 0x03, 0x51, 0x4a, 0x80, 0x48, 0x62, 0xe0, 0x49, 0x09, 0xf0, 0x48, 0x0c, 0x34, 0xf3, 0x22, 0x34, 0x12, 0x0b, 0xcb, 0xbc, 0x08, 0x8b, 0xc4, 0x42, 0x32, 0x2f, 0x42, 0x22, 0xb1, 0x70, 0xcc, 0x8b, 0x70, 0x48, 0x2c, 0x14, 0x5f, 0x4a, 0x6e, 0x47, 0xf8, 0xa6, 0xd9, 0x3d, 0xde, 0x33, 0xcf, 0xd5, 0x11, 0xe6, 0xb8, 0xf6, 0x61, 0x32, 0x2f, 0x2f, 0xdb, 0x0d, 0x2b, 0xdb, 0x71, 0x0a, 0x6f, 0xb0, 0x1c, 0xd7, 0x58, 0x30, 0x16, 0x86, 0xbf, 0x45, 0xe1, 0x5c, 0xbd, 0x61, 0x8e, 0x6b, 0x33, 0xc2, 0xfd, 0xdb, 0xfc, 0xca, 0x3b, 0xb6, 0xc7, 0x92, 0xdb, 0xb1, 0x91, 0xf0, 0x8f, 0xda, 0xb1, 0x65, 0xc3, 0x43, 0x4e, 0x83, 0x9d, 0x0d, 0x0f, 0xf6, 0xc0, 0x5b, 0x27, 0x6a, 0x07, 0x97, 0x0d, 0x0f, 0x2d, 0x0d, 0xea, 0xc5, 0xf6, 0x5b, 0x84, 0xc1, 0x0d, 0xfd, 0xc8, 0x87, 0xc1, 0xa3, 0xf6, 0x5b, 0x39, 0xae, 0x94, 0x8c, 0xca, 0x60, 0x3c, 0x32, 0x83, 0x47, 0xed, 0xbc, 0x72, 0x5c, 0x79, 0x19, 0x99, 0xc1, 0x5f, 0x41, 0x3f, 0x44, 0x18, 0xec, 0x85, 0x7f, 0xd4, 0x7e, 0x28, 0x1b, 0x1e, 0x72, 0x5f, 0x06, 0xe3, 0x11, 0x18, 0x1c, 0xa5, 0x3f, 0xca, 0x86, 0x87, 0xd6, 0x9f, 0xc1, 0xe7, 0xee, 0x66, 0xde, 0x47, 0x70, 0xa9, 0xde, 0x6e, 0xd5, 0x1e, 0xdc, 0xd3, 0x5b, 0x2d, 0xbd, 0x45, 0xe2, 0x98, 0xe3, 0x2a, 0x41, 0x00, 0xd4, 0x4f, 0x4e, 0x17, 0xbc, 0x08, 0xaf, 0x43, 0xc2, 0x89, 0x69, 0x2e, 0xa7, 0x9c, 0xa0, 0x90, 0x0a, 0x47, 0x55, 0xe5, 0x2b, 0xae, 0xd9, 0x6a, 0x4e, 0xf9, 0x3b, 0x62, 0xaa, 0x1c, 0x1d, 0xd6, 0x7e, 0x6e, 0x7b, 0x68, 0x9c, 0xdb, 0xc3, 0x95, 0x48, 0x1e, 0x32, 0xbe, 0xbd, 0x30, 0xe0, 0x1b, 0xe3, 0xd5, 0x31, 0xcc, 0xd6, 0xdb, 0xad, 0xba, 0xde, 0x33, 0xa3, 0xb9, 0xe4, 0xe8, 0x08, 0xf5, 0x20, 0xc7, 0xd1, 0x92, 0xb5, 0xa0, 0x94, 0xe6, 0x6b, 0x84, 0xd6, 0xb6, 0x96, 0x35, 0xb8, 0x65, 0xb3, 0x41, 0xcb, 0x7a, 0x95, 0x9d, 0x2e, 0x98, 0x0d, 0x5a, 0xd0, 0xcb, 0x21, 0xba, 0xd4, 0xdb, 0xee, 0xcb, 0xb9, 0x72, 0xdc, 0x33, 0x3b, 0x0f, 0xe4, 0x79, 0x90, 0xb6, 0x5a, 0xf6, 0x1a, 0x53, 0xe5, 0x29, 0xcb, 0xa9, 0x8f, 0x4f, 0x17, 0xe2, 0x77, 0x8e, 0xdb, 0xad, 0x86, 0xb4, 0xd5, 0x92, 0x6f, 0xc1, 0xd8, 0x77, 0x9a, 0x87, 0xc7, 0xba, 0xfd, 0x8a, 0x98, 0x2a, 0x17, 0x88, 0xc2, 0xcb, 0x81, 0x7b, 0x44, 0xd6, 0xc2, 0x2b, 0x7b, 0xf6, 0xd4, 0xcb, 0x77, 0xda, 0x86, 0xb9, 0x9a, 0xdf, 0x6c, 0x38, 0x53, 0x68, 0xdf, 0x07, 0x70, 0xd6, 0xac, 0x36, 0x7b, 0x07, 0x72, 0xdd, 0x9d, 0xd9, 0x59, 0x7a, 0xf3, 0xe3, 0xd3, 0x85, 0x42, 0x94, 0x59, 0xaf, 0xb5, 0x9a, 0xbd, 0x83, 0x6b, 0xe6, 0xc3, 0x23, 0x7d, 0xb9, 0xfc, 0xd0, 0xd4, 0x7b, 0xee, 0xec, 0x47, 0xee, 0x5b, 0x8f, 0x3c, 0x97, 0xc2, 0x3c, 0x57, 0x82, 0x7b, 0xa6, 0x9b, 0xfc, 0x33, 0xe5, 0x9e, 0xf6, 0x79, 0xde, 0x76, 0x5f, 0x12, 0x42, 0x24, 0x71, 0x58, 0x24, 0xf1, 0x79, 0x23, 0x79, 0xe4, 0xd6, 0x47, 0xe1, 0x59, 0xf1, 0xb0, 0x67, 0xc5, 0xe7, 0x79, 0xd6, 0x7f, 0x3b, 0xd9, 0x4a, 0xf3, 0xe9, 0x8e, 0xd1, 0xee, 0x18, 0x5f, 0xbb, 0xbd, 0xa0, 0x0b, 0xed, 0x02, 0x8a, 0xf1, 0x93, 0x47, 0x0b, 0x48, 0x7b, 0x5f, 0x72, 0x9f, 0xdc, 0x49, 0xa4, 0xa7, 0x7b, 0xf2, 0xaf, 0x4b, 0x4f, 0xf5, 0x55, 0x44, 0xe8, 0x57, 0x08, 0xe6, 0x06, 0x2a, 0xb9, 0x13, 0xa6, 0x8b, 0x2d, 0xe7, 0xc6, 0xa8, 0xe5, 0x9c, 0x38, 0xf8, 0x7b, 0x04, 0xcf, 0x09, 0xe5, 0xd5, 0x71, 0x6f, 0x45, 0x70, 0xef, 0xf9, 0xc1, 0x95, 0x6c, 0x45, 0xc6, 0x3b, 0x16, 0x5e, 0xc1, 0x80, 0x99, 0x99, 0xe2, 0x5e, 0x10, 0x70, 0x9f, 0xa7, 0x06, 0x3e, 0xe1, 0x72, 0x19, 0x40, 0xdc, 0xee, 0x40, 0x7c, 0xb7, 0xab, 0xeb, 0xb2, 0x0a, 0xd2, 0x4e, 0x97, 0x78, 0x38, 0xe3, 0xd8, 0xef, 0x74, 0xcb, 0xdd, 0xa6, 0xb1, 0x77, 0xd0, 0x90, 0x76, 0xba, 0xf2, 0x15, 0xc0, 0x25, 0xa3, 0x45, 0x3c, 0x9a, 0x75, 0x14, 0x4a, 0x46, 0x8b, 0x68, 0x58, 0x32, 0x59, 0x85, 0xf8, 0x1b, 0x7a, 0xf3, 0x3e, 0x71, 0x02, 0x1c, 0x1d, 0x6b, 0xa4, 0x61, 0x8f, 0x93, 0x05, 0xbf, 0x07, 0x09, 0x77, 0x62, 0x79, 0xd1, 0xb2, 0xb8, 0x6f, 0x92, 0x65, 0x89, 0x85, 0xe5, 0x0e, 0x79, 0x73, 0xd9, 0x52, 0x79, 0x09, 0xc6, 0x1a, 0xed, 0xfd, 0x03, 0x93, 0x2c, 0x3e, 0xa8, 0xe6, 0x88, 0xb5, 0xbb, 0x30, 0x41, 0x3d, 0xba, 0xe0, 0xa9, 0xab, 0xce, 0xa3, 0xc9, 0x29, 0xf6, 0x7d, 0xe2, 0xee, 0x5b, 0x3a, 0x43, 0x72, 0x1a, 0x12, 0x6f, 0x9a, 0x5d, 0xaf, 0xe8, 0xbb, 0x1d, 0x29, 0x1d, 0xd5, 0xde, 0x45, 0x90, 0xa8, 0xea, 0xfa, 0x91, 0x1d, 0xf0, 0xab, 0x10, 0xaf, 0x76, 0x7e, 0x64, 0x10, 0x07, 0x2f, 0x91, 0x88, 0x5a, 0x62, 0x12, 0x53, 0x5b, 0x2c, 0x5f, 0x65, 0xe3, 0xfe, 0x2c, 0x8d, 0x3b, 0xa3, 0x67, 0xc7, 0x5e, 0xe3, 0x62, 0x4f, 0x00, 0xb4, 0x94, 0x06, 0xe2, 0x7f, 0x1d, 0x26, 0x99, 0x55, 0xe4, 0x0c, 0x71, 0x43, 0x12, 0x0d, 0xd9, 0x58, 0x59, 0x1a, 0x9a, 0x0e, 0xd3, 0xdc, 0xc2, 0x96, 0x29, 0x13, 0xe2, 0x00, 0x53, 0x3b, 0xcc, 0x59, 0x3e, 0xcc, 0xfe, 0xaa, 0x24, 0xd4, 0x39, 0x27, 0x46, 0x76, 0xb8, 0x17, 0x1d, 0x72, 0x06, 0x83, 0x68, 0xfd, 0xad, 0x8d, 0x01, 0xae, 0xb7, 0x0f, 0xb5, 0x57, 0x01, 0x9c, 0x94, 0xaf, 0x19, 0xc7, 0x0f, 0x84, 0xac, 0x9b, 0x71, 0x03, 0xbc, 0x7b, 0xa0, 0xef, 0xea, 0x3d, 0x5b, 0x85, 0xef, 0xa7, 0xac, 0x02, 0x03, 0x4e, 0x8a, 0xd9, 0xf6, 0x2f, 0x85, 0xda, 0xfb, 0x76, 0x62, 0x96, 0xaa, 0xe2, 0xa8, 0xde, 0xd5, 0xcd, 0x92, 0xd1, 0x31, 0x0f, 0xf4, 0xae, 0x60, 0x91, 0x97, 0xd7, 0xb8, 0x84, 0x9d, 0xc9, 0xbf, 0x40, 0x2d, 0x02, 0x8d, 0xd6, 0xb4, 0x0f, 0x6d, 0x07, 0xad, 0x56, 0x60, 0xe0, 0x01, 0x71, 0x84, 0x07, 0x94, 0x37, 0xb8, 0xfe, 0x6d, 0x88, 0x9b, 0xc2, 0xa7, 0xe5, 0x0d, 0xee, 0x3b, 0x67, 0xb8, 0xb3, 0xfc, 0x37, 0xa6, 0x1b, 0x53, 0xd7, 0xe5, 0x97, 0x42, 0x5d, 0x0e, 0xe8, 0x6e, 0x47, 0x8d, 0x29, 0x8e, 0x1a, 0xd3, 0x3f, 0xd1, 0x8e, 0xc3, 0x1a, 0xae, 0xea, 0xf7, 0x9b, 0xc7, 0x87, 0xa6, 0xfc, 0x72, 0x28, 0xf6, 0x45, 0x54, 0xa1, 0xae, 0x16, 0xa2, 0xc2, 0x5f, 0x94, 0xca, 0x65, 0xea, 0xee, 0xf5, 0x11, 0x28, 0x50, 0x94, 0x2a, 0x15, 0x5a, 0xb6, 0x13, 0xef, 0x3d, 0x5a, 0x40, 0x1f, 0x3c, 0x5a, 0x88, 0x69, 0xbf, 0x43, 0x70, 0x89, 0x68, 0x32, 0xc4, 0xbd, 0x26, 0x38, 0x7f, 0xd9, 0xad, 0x19, 0x7e, 0x11, 0xf8, 0xaf, 0x91, 0xf7, 0xaf, 0x08, 0x94, 0x01, 0x5f, 0xdd, 0x78, 0xe7, 0x22, 0xb9, 0x5c, 0x44, 0xb5, 0xff, 0x7d, 0xcc, 0xef, 0xc2, 0xd8, 0x6e, 0xfb, 0x81, 0xde, 0xb5, 0xde, 0x04, 0xd6, 0x1f, 0x8e, 0xcb, 0xee, 0x61, 0x8e, 0x33, 0xe4, 0xca, 0x1c, 0xe7, 0x38, 0x59, 0x5e, 0x56, 0x20, 0x5e, 0x6d, 0x9a, 0x4d, 0xdb, 0x83, 0x29, 0x5a, 0x5f, 0x9b, 0x66, 0x53, 0x5b, 0x83, 0xa9, 0xed, 0x87, 0xb5, 0xb7, 0x4d, 0xdd, 0x68, 0x35, 0xef, 0x1d, 0x8a, 0x67, 0xa0, 0x6e, 0xbf, 0xba, 0x9a, 0x1d, 0x4b, 0xb4, 0x92, 0x27, 0xa8, 0x18, 0xb7, 0xfd, 0x79, 0x0b, 0x66, 0x76, 0x2c, 0xb7, 0x6d, 0x3b, 0xce, 0xcc, 0x59, 0x1d, 0xd3, 0x87, 0x17, 0x9a, 0x32, 0xec, 0x35, 0x65, 0x69, 0x40, 0xdb, 0x7c, 0xeb, 0xc4, 0xfa, 0xd1, 0x40, 0xdb, 0xd9, 0x78, 0x62, 0x26, 0x79, 0x29, 0x1b, 0x4f, 0x40, 0x72, 0x9a, 0xac, 0xfb, 0x37, 0x0c, 0x49, 0xa7, 0xd5, 0xa9, 0xea, 0xf7, 0xdb, 0x46, 0xdb, 0x1c, 0xec, 0x57, 0xa9, 0xc7, 0xf2, 0x37, 0x61, 0xc2, 0x0a, 0xa9, 0xfd, 0x8b, 0x00, 0x76, 0x85, 0xb4, 0x28, 0xc2, 0x14, 0x64, 0xc0, 0xa6, 0x8e, 0x67, 0x23, 0xdf, 0x04, 0x5c, 0xaf, 0x6f, 0x93, 0x97, 0x5b, 0x61, 0xa8, 0xe9, 0xb6, 0xde, 0xeb, 0x35, 0xf7, 0x75, 0xf2, 0x8b, 0x8c, 0xf5, 0xf6, 0x1b, 0xd6, 0x04, 0x72, 0x01, 0xa4, 0xfa, 0x36, 0x69, 0x78, 0x17, 0xa3, 0x4c, 0xd3, 0x90, 0xea, 0xdb, 0xa9, 0xbf, 0x20, 0x98, 0xe6, 0x46, 0x65, 0x0d, 0xa6, 0x9c, 0x01, 0xe6, 0x71, 0xc7, 0x1b, 0xdc, 0x98, 0xeb, 0xb3, 0x74, 0x4e, 0x9f, 0x53, 0x25, 0x98, 0x15, 0xc6, 0xe5, 0x65, 0x90, 0xd9, 0x21, 0xe2, 0x04, 0xd8, 0x0d, 0xb5, 0x8f, 0x44, 0xfb, 0x3f, 0x00, 0x2f, 0xae, 0xf2, 0x2c, 0x4c, 0xee, 0xde, 0xbd, 0x5d, 0xfb, 0x41, 0xbd, 0xf6, 0xe6, 0x6e, 0xad, 0x9a, 0x44, 0xda, 0x1f, 0x10, 0x4c, 0x92, 0xb6, 0x75, 0xaf, 0x73, 0xa4, 0xcb, 0x65, 0x40, 0x25, 0xc2, 0x87, 0xa7, 0xf3, 0x1b, 0x95, 0xe4, 0x15, 0x40, 0xe5, 0xe8, 0x50, 0xa3, 0xb2, 0x9c, 0x07, 0x54, 0x21, 0x00, 0x47, 0x43, 0x06, 0x55, 0xb4, 0x7f, 0x61, 0x78, 0x96, 0x6d, 0xa3, 0xdd, 0x7a, 0x72, 0x85, 0xff, 0x6e, 0x2a, 0x4e, 0xac, 0xe6, 0xd7, 0x0a, 0xcb, 0xd6, 0x3f, 0x94, 0x92, 0x1a, 0xff, 0x09, 0x55, 0x04, 0xaa, 0xb2, 0x1a, 0x74, 0x4f, 0xa4, 0x18, 0x67, 0x66, 0x18, 0xb8, 0x27, 0xc2, 0x49, 0x07, 0xee, 0x89, 0x70, 0xd2, 0x81, 0x7b, 0x22, 0x9c, 0x74, 0xe0, 0x2c, 0x80, 0x93, 0x0e, 0xdc, 0x13, 0xe1, 0xa4, 0x03, 0xf7, 0x44, 0x38, 0xe9, 0xe0, 0x3d, 0x11, 0x22, 0x0e, 0xbc, 0x27, 0xc2, 0xcb, 0x07, 0xef, 0x89, 0xf0, 0xf2, 0xc1, 0x7b, 0x22, 0xc5, 0xb8, 0xd9, 0x3d, 0xd6, 0x83, 0x4f, 0x1d, 0x78, 0xfb, 0x61, 0x1f, 0x81, 0x5e, 0x05, 0xde, 0x81, 0x59, 0x67, 0x43, 0xa2, 0xd2, 0x31, 0xcc, 0x66, 0xdb, 0xd0, 0xbb, 0xf2, 0x37, 0x60, 0xca, 0x19, 0x72, 0x3e, 0x73, 0xfc, 0x3e, 0x03, 0x1d, 0x39, 0xa9, 0xb7, 0x9c, 0xb6, 0xf6, 0x65, 0x1c, 0xe6, 0x9c, 0x81, 0x7a, 0xf3, 0x81, 0xce, 0xdd, 0x32, 0x5a, 0x12, 0xce, 0x94, 0x66, 0x2c, 0xf3, 0xfe, 0xe9, 0x82, 0x33, 0x5a, 0xa2, 0x6c, 0x5a, 0x12, 0x4e, 0x97, 0x78, 0x3d, 0xef, 0x05, 0xb4, 0x24, 0xdc, 0x3c, 0xe2, 0xf5, 0xe8, 0xfb, 0x86, 0xea, 0xb9, 0x77, 0x90, 0x78, 0xbd, 0x2a, 0x65, 0xd9, 0x92, 0x70, 0x1b, 0x89, 0xd7, 0xab, 0x51, 0xbe, 0x2d, 0x09, 0x67, 0x4f, 0xbc, 0xde, 0x4d, 0xca, 0xbc, 0x25, 0xe1, 0x14, 0x8a, 0xd7, 0xfb, 0x16, 0xe5, 0xe0, 0x92, 0x70, 0x57, 0x89, 0xd7, 0x7b, 0x9d, 0xb2, 0x71, 0x49, 0xb8, 0xb5, 0xc4, 0xeb, 0x6d, 0x51, 0x5e, 0x66, 0xc4, 0xfb, 0x4b, 0xbc, 0xe2, 0x2d, 0x8f, 0xa1, 0x19, 0xf1, 0x26, 0x13, 0xaf, 0xf9, 0x6d, 0x8f, 0xab, 0x19, 0xf1, 0x4e, 0x13, 0xaf, 0xf9, 0x86, 0xc7, 0xda, 0x8c, 0x78, 0x56, 0xc6, 0x6b, 0x6e, 0x7b, 0xfc, 0xcd, 0x88, 0xa7, 0x66, 0xbc, 0x66, 0xdd, 0x63, 0x72, 0x46, 0x3c, 0x3f, 0xe3, 0x35, 0x77, 0xbc, 0x4d, 0xf4, 0x8f, 0x04, 0xfa, 0x31, 0xb7, 0xa0, 0x34, 0x81, 0x7e, 0xe0, 0x43, 0x3d, 0xa1, 0x90, 0x31, 0x3a, 0x1e, 0xed, 0x34, 0x81, 0x76, 0xe0, 0x43, 0x39, 0x4d, 0xa0, 0x1c, 0xf8, 0xd0, 0x4d, 0x13, 0xe8, 0x06, 0x3e, 0x54, 0xd3, 0x04, 0xaa, 0x81, 0x0f, 0xcd, 0x34, 0x81, 0x66, 0xe0, 0x43, 0x31, 0x4d, 0xa0, 0x18, 0xf8, 0xd0, 0x4b, 0x13, 0xe8, 0x05, 0x3e, 0xd4, 0x5a, 0x14, 0xa9, 0x05, 0x7e, 0xb4, 0x5a, 0x14, 0x69, 0x05, 0x7e, 0x94, 0x7a, 0x51, 0xa4, 0xd4, 0x44, 0xff, 0x74, 0x61, 0xcc, 0x1a, 0x62, 0xd8, 0xb4, 0x28, 0xb2, 0x09, 0xfc, 0x98, 0xb4, 0x28, 0x32, 0x09, 0xfc, 0x58, 0xb4, 0x28, 0xb2, 0x08, 0xfc, 0x18, 0xf4, 0x58, 0x64, 0x90, 0x77, 0xc7, 0x47, 0x13, 0x8e, 0x14, 0xc3, 0x18, 0x84, 0x23, 0x30, 0x08, 0x47, 0x60, 0x10, 0x8e, 0xc0, 0x20, 0x1c, 0x81, 0x41, 0x38, 0x02, 0x83, 0x70, 0x04, 0x06, 0xe1, 0x08, 0x0c, 0xc2, 0x51, 0x18, 0x84, 0x23, 0x31, 0x08, 0x07, 0x31, 0x68, 0x51, 0xbc, 0xf1, 0x00, 0x7e, 0x05, 0x69, 0x51, 0x3c, 0xfa, 0x0c, 0xa7, 0x10, 0x8e, 0x44, 0x21, 0x1c, 0x44, 0xa1, 0x8f, 0x30, 0x3c, 0xcb, 0x51, 0x88, 0x9c, 0x0f, 0x5d, 0x54, 0x05, 0xda, 0x88, 0x70, 0xc1, 0xc2, 0x8f, 0x53, 0x1b, 0x11, 0x0e, 0xa9, 0x87, 0xf1, 0x6c, 0xb0, 0x0a, 0xd5, 0x22, 0x54, 0xa1, 0x9b, 0x94, 0x43, 0x1b, 0x11, 0x2e, 0x5e, 0x0c, 0x72, 0x6f, 0x73, 0x58, 0x11, 0x78, 0x3d, 0x52, 0x11, 0xd8, 0x8a, 0x54, 0x04, 0x6e, 0x79, 0x08, 0xfe, 0x54, 0x82, 0xe7, 0x3c, 0x04, 0x9d, 0xbf, 0x76, 0x1f, 0x1e, 0x59, 0x25, 0xc0, 0x3b, 0xa2, 0x92, 0xdd, 0x63, 0x1b, 0x06, 0x46, 0x69, 0xab, 0x25, 0xdf, 0xe6, 0x0f, 0xab, 0x8a, 0xa3, 0x1e, 0xe0, 0x30, 0x88, 0x93, 0xcd, 0xd0, 0x45, 0xc0, 0x5b, 0xad, 0x9e, 0x5d, 0x2d, 0xfc, 0x96, 0xad, 0x34, 0x2c, 0xb1, 0xdc, 0x80, 0x71, 0x5b, 0xbd, 0x67, 0xc3, 0x7b, 0x9e, 0x85, 0xab, 0x0d, 0x32, 0x93, 0xf6, 0x18, 0x41, 0x9a, 0xa3, 0xf2, 0xc5, 0x1c, 0x19, 0xbc, 0x12, 0xe9, 0xc8, 0x80, 0x4b, 0x10, 0xef, 0xf8, 0xe0, 0xff, 0x07, 0x4f, 0xaa, 0xd9, 0x2c, 0x11, 0x8f, 0x12, 0x7e, 0x02, 0x33, 0xde, 0x13, 0xd8, 0xdf, 0x6c, 0xeb, 0xe1, 0xbb, 0x99, 0x7e, 0xa9, 0xb9, 0x2e, 0xec, 0xa2, 0x0d, 0x35, 0xa3, 0xd9, 0xaa, 0x15, 0x61, 0xb6, 0xde, 0xb1, 0x77, 0x00, 0x7a, 0xed, 0x8e, 0xd1, 0xdb, 0x6e, 0x1e, 0x85, 0x6d, 0x46, 0x24, 0xac, 0xd6, 0xfc, 0xe4, 0xd7, 0x0b, 0x31, 0xed, 0x65, 0x98, 0xba, 0x63, 0x74, 0xf5, 0xbd, 0xce, 0xbe, 0xd1, 0xfe, 0xb1, 0xde, 0x12, 0x0c, 0x27, 0x5c, 0xc3, 0x62, 0xfc, 0x89, 0xa5, 0xfd, 0x0b, 0x04, 0x97, 0x59, 0xf5, 0xef, 0xb6, 0xcd, 0x83, 0x2d, 0xc3, 0xea, 0xe9, 0x5f, 0x85, 0x84, 0x4e, 0x80, 0xb3, 0xdf, 0x5d, 0x93, 0xee, 0x77, 0xa4, 0xaf, 0xfa, 0xb2, 0xfd, 0x6f, 0x83, 0x9a, 0x08, 0xbb, 0x20, 0xee, 0xb2, 0xf9, 0xd4, 0x55, 0x18, 0x73, 0xe6, 0xe7, 0xfd, 0x9a, 0x16, 0xfc, 0xfa, 0xad, 0x8f, 0x5f, 0x36, 0x8f, 0xe4, 0x5b, 0x9c, 0x5f, 0xcc, 0xe7, 0xaa, 0xaf, 0xfa, 0xb2, 0x4b, 0xbe, 0x72, 0xc2, 0xea, 0xff, 0x6c, 0x46, 0x85, 0x3b, 0x99, 0x81, 0x44, 0x4d, 0xd4, 0xf1, 0xf7, 0xb3, 0x0a, 0xf1, 0x7a, 0xa7, 0xa5, 0xcb, 0xcf, 0xc1, 0xd8, 0x1b, 0xcd, 0x7b, 0xfa, 0x21, 0x09, 0xb2, 0xf3, 0x43, 0x5e, 0x82, 0x44, 0xe5, 0xa0, 0x7d, 0xd8, 0xea, 0xea, 0x06, 0x39, 0xb3, 0x27, 0x5b, 0xe8, 0x96, 0x4d, 0x83, 0xca, 0xb4, 0x0a, 0x5c, 0xaa, 0x77, 0x8c, 0xf2, 0x43, 0x93, 0xad, 0x1b, 0xcb, 0x42, 0x8a, 0x90, 0x33, 0x9f, 0xdb, 0x56, 0x36, 0x5a, 0x0a, 0xe5, 0xb1, 0x8f, 0x4f, 0x17, 0xd0, 0x2e, 0xdd, 0x3f, 0xdf, 0x86, 0xe7, 0x49, 0xfa, 0x0c, 0x4c, 0x95, 0x0f, 0x9b, 0x6a, 0x82, 0x9c, 0x53, 0x33, 0xd3, 0x6d, 0x59, 0xd3, 0x19, 0xbe, 0xd3, 0x3d, 0x9d, 0x67, 0x56, 0x53, 0x34, 0xd4, 0x33, 0x3c, 0x92, 0x67, 0xbe, 0xd3, 0x2d, 0x87, 0x4d, 0x27, 0x78, 0xf6, 0x22, 0x4c, 0x50, 0x19, 0xc3, 0x06, 0x36, 0x53, 0xf2, 0x59, 0x0d, 0x26, 0x99, 0x84, 0x95, 0xc7, 0x00, 0x95, 0x92, 0x31, 0xeb, 0xbf, 0x72, 0x12, 0x59, 0xff, 0x55, 0x92, 0x52, 0xf6, 0x2a, 0xcc, 0x0a, 0xfb, 0x97, 0x96, 0xa4, 0x9a, 0x04, 0xeb, 0xbf, 0x5a, 0x72, 0x32, 0x15, 0x7f, 0xef, 0x37, 0x6a, 0x2c, 0xfb, 0x0a, 0xc8, 0x83, 0x3b, 0x9d, 0xf2, 0x38, 0x48, 0x25, 0x6b, 0xca, 0xe7, 0x41, 0x2a, 0x97, 0x93, 0x28, 0x35, 0xfb, 0xb3, 0x5f, 0xa6, 0x27, 0xcb, 0xba, 0x69, 0xea, 0xdd, 0xbb, 0xba, 0x59, 0x2e, 0x13, 0xe3, 0xd7, 0xe0, 0xb2, 0xef, 0x4e, 0xa9, 0x65, 0x5f, 0xa9, 0x38, 0xf6, 0xd5, 0xea, 0x80, 0x7d, 0xb5, 0x6a, 0xdb, 0xa3, 0xa2, 0x7b, 0xe2, 0x5c, 0x92, 0x7d, 0x76, 0x19, 0x95, 0x16, 0x73, 0xc2, 0x5d, 0x2a, 0xbe, 0x46, 0x74, 0xcb, 0xbe, 0xba, 0x7a, 0xc8, 0x89, 0x75, 0xb9, 0x58, 0x21, 0xf6, 0x15, 0x5f, 0xfb, 0xfb, 0xc2, 0xb1, 0x2a, 0xff, 0x86, 0x20, 0x93, 0x54, 0xa8, 0xc3, 0x55, 0xdf, 0x49, 0x0e, 0x98, 0xcb, 0xee, 0x55, 0xea, 0x70, 0xcd, 0x57, 0xb7, 0x1d, 0x72, 0xe9, 0xab, 0x56, 0x5c, 0x21, 0x2f, 0xf9, 0xd2, 0xaa, 0x7c, 0xd9, 0xcd, 0x51, 0xae, 0x02, 0x93, 0x00, 0xb9, 0x5a, 0xc5, 0x0a, 0x31, 0x28, 0x07, 0x1a, 0x04, 0x47, 0xc9, 0xb5, 0x2c, 0xbe, 0x4e, 0x26, 0xa9, 0x04, 0x4e, 0x12, 0x12, 0x2a, 0xd7, 0xbc, 0xbc, 0x7b, 0x72, 0xa6, 0xc6, 0x9e, 0x9c, 0xa9, 0xb1, 0x7f, 0x9c, 0xa9, 0xb1, 0x4f, 0xce, 0x54, 0xf4, 0xd9, 0x99, 0x8a, 0x3e, 0x3f, 0x53, 0xd1, 0x17, 0x67, 0x2a, 0x7a, 0xa7, 0xaf, 0xa2, 0x0f, 0xfa, 0x2a, 0xfa, 0xb0, 0xaf, 0xa2, 0x3f, 0xf6, 0x55, 0xf4, 0xb8, 0xaf, 0xa2, 0x93, 0xbe, 0x1a, 0x7b, 0xd2, 0x57, 0x63, 0x9f, 0xf4, 0x55, 0xf4, 0x59, 0x5f, 0x8d, 0x7d, 0xde, 0x57, 0xd1, 0x17, 0x7d, 0x35, 0xf6, 0xce, 0xa7, 0x6a, 0xec, 0xd1, 0xa7, 0x6a, 0xec, 0x83, 0x4f, 0x55, 0xf4, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5a, 0xab, 0x64, 0x51, 0x3b, 0x36, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/thetest.proto000066400000000000000000000557221317075173200211040ustar00rootroot00000000000000// 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 test; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.face_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.protosizer_all) = false; option (gogoproto.goproto_enum_stringer_all) = false; option (gogoproto.enum_stringer_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; option (gogoproto.compare_all) = true; message NidOptNative { optional double Field1 = 1 [(gogoproto.nullable) = false]; optional float Field2 = 2 [(gogoproto.nullable) = false]; optional int32 Field3 = 3 [(gogoproto.nullable) = false]; optional int64 Field4 = 4 [(gogoproto.nullable) = false]; optional uint32 Field5 = 5 [(gogoproto.nullable) = false]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false]; optional sint64 Field8 = 8 [(gogoproto.nullable) = false]; optional fixed32 Field9 = 9 [(gogoproto.nullable) = false]; optional sfixed32 Field10 = 10 [(gogoproto.nullable) = false]; optional fixed64 Field11 = 11 [(gogoproto.nullable) = false]; optional sfixed64 Field12 = 12 [(gogoproto.nullable) = false]; optional bool Field13 = 13 [(gogoproto.nullable) = false]; optional string Field14 = 14 [(gogoproto.nullable) = false]; optional bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinOptNative { optional double Field1 = 1; optional float Field2 = 2; optional int32 Field3 = 3; optional int64 Field4 = 4; optional uint32 Field5 = 5; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional sint64 Field8 = 8; optional fixed32 Field9 = 9; optional sfixed32 Field10 = 10; optional fixed64 Field11 = 11; optional sfixed64 Field12 = 12; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NidRepNative { repeated double Field1 = 1 [(gogoproto.nullable) = false]; repeated float Field2 = 2 [(gogoproto.nullable) = false]; repeated int32 Field3 = 3 [(gogoproto.nullable) = false]; repeated int64 Field4 = 4 [(gogoproto.nullable) = false]; repeated uint32 Field5 = 5 [(gogoproto.nullable) = false]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false]; repeated sint64 Field8 = 8 [(gogoproto.nullable) = false]; repeated fixed32 Field9 = 9 [(gogoproto.nullable) = false]; repeated sfixed32 Field10 = 10 [(gogoproto.nullable) = false]; repeated fixed64 Field11 = 11 [(gogoproto.nullable) = false]; repeated sfixed64 Field12 = 12 [(gogoproto.nullable) = false]; repeated bool Field13 = 13 [(gogoproto.nullable) = false]; repeated string Field14 = 14 [(gogoproto.nullable) = false]; repeated bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinRepNative { repeated double Field1 = 1; repeated float Field2 = 2; repeated int32 Field3 = 3; repeated int64 Field4 = 4; repeated uint32 Field5 = 5; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated sint64 Field8 = 8; repeated fixed32 Field9 = 9; repeated sfixed32 Field10 = 10; repeated fixed64 Field11 = 11; repeated sfixed64 Field12 = 12; repeated bool Field13 = 13; repeated string Field14 = 14; repeated bytes Field15 = 15; } message NidRepPackedNative { repeated double Field1 = 1 [(gogoproto.nullable) = false, packed = true]; repeated float Field2 = 2 [(gogoproto.nullable) = false, packed = true]; repeated int32 Field3 = 3 [(gogoproto.nullable) = false, packed = true]; repeated int64 Field4 = 4 [(gogoproto.nullable) = false, packed = true]; repeated uint32 Field5 = 5 [(gogoproto.nullable) = false, packed = true]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false, packed = true]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false, packed = true]; repeated sint64 Field8 = 8 [(gogoproto.nullable) = false, packed = true]; repeated fixed32 Field9 = 9 [(gogoproto.nullable) = false, packed = true]; repeated sfixed32 Field10 = 10 [(gogoproto.nullable) = false, packed = true]; repeated fixed64 Field11 = 11 [(gogoproto.nullable) = false, packed = true]; repeated sfixed64 Field12 = 12 [(gogoproto.nullable) = false, packed = true]; repeated bool Field13 = 13 [(gogoproto.nullable) = false, packed = true]; } message NinRepPackedNative { repeated double Field1 = 1 [packed = true]; repeated float Field2 = 2 [packed = true]; repeated int32 Field3 = 3 [packed = true]; repeated int64 Field4 = 4 [packed = true]; repeated uint32 Field5 = 5 [packed = true]; repeated uint64 Field6 = 6 [packed = true]; repeated sint32 Field7 = 7 [packed = true]; repeated sint64 Field8 = 8 [packed = true]; repeated fixed32 Field9 = 9 [packed = true]; repeated sfixed32 Field10 = 10 [packed = true]; repeated fixed64 Field11 = 11 [packed = true]; repeated sfixed64 Field12 = 12 [packed = true]; repeated bool Field13 = 13 [packed = true]; } message NidOptStruct { optional double Field1 = 1 [(gogoproto.nullable) = false]; optional float Field2 = 2 [(gogoproto.nullable) = false]; optional NidOptNative Field3 = 3 [(gogoproto.nullable) = false]; optional NinOptNative Field4 = 4 [(gogoproto.nullable) = false]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false]; optional NidOptNative Field8 = 8 [(gogoproto.nullable) = false]; optional bool Field13 = 13 [(gogoproto.nullable) = false]; optional string Field14 = 14 [(gogoproto.nullable) = false]; optional bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinOptStruct { optional double Field1 = 1; optional float Field2 = 2; optional NidOptNative Field3 = 3; optional NinOptNative Field4 = 4; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional NidOptNative Field8 = 8; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NidRepStruct { repeated double Field1 = 1 [(gogoproto.nullable) = false]; repeated float Field2 = 2 [(gogoproto.nullable) = false]; repeated NidOptNative Field3 = 3 [(gogoproto.nullable) = false]; repeated NinOptNative Field4 = 4 [(gogoproto.nullable) = false]; repeated uint64 Field6 = 6 [(gogoproto.nullable) = false]; repeated sint32 Field7 = 7 [(gogoproto.nullable) = false]; repeated NidOptNative Field8 = 8 [(gogoproto.nullable) = false]; repeated bool Field13 = 13 [(gogoproto.nullable) = false]; repeated string Field14 = 14 [(gogoproto.nullable) = false]; repeated bytes Field15 = 15 [(gogoproto.nullable) = false]; } message NinRepStruct { repeated double Field1 = 1; repeated float Field2 = 2; repeated NidOptNative Field3 = 3; repeated NinOptNative Field4 = 4; repeated uint64 Field6 = 6; repeated sint32 Field7 = 7; repeated NidOptNative Field8 = 8; repeated bool Field13 = 13; repeated string Field14 = 14; repeated bytes Field15 = 15; } message NidEmbeddedStruct { optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NidOptNative Field200 = 200 [(gogoproto.nullable) = false]; optional bool Field210 = 210 [(gogoproto.nullable) = false]; } message NinEmbeddedStruct { optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NidOptNative Field200 = 200; optional bool Field210 = 210; } message NidNestedStruct { optional NidOptStruct Field1 = 1 [(gogoproto.nullable) = false]; repeated NidRepStruct Field2 = 2 [(gogoproto.nullable) = false]; } message NinNestedStruct { optional NinOptStruct Field1 = 1; repeated NinRepStruct Field2 = 2; } message NidOptCustom { optional bytes Id = 1 [(gogoproto.customtype) = "Uuid", (gogoproto.nullable) = false]; optional bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } message CustomDash { optional bytes Value = 1 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom-dash-type.Bytes"]; } message NinOptCustom { optional bytes Id = 1 [(gogoproto.customtype) = "Uuid"]; optional bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message NidRepCustom { repeated bytes Id = 1 [(gogoproto.customtype) = "Uuid", (gogoproto.nullable) = false]; repeated bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128", (gogoproto.nullable) = false]; } message NinRepCustom { repeated bytes Id = 1 [(gogoproto.customtype) = "Uuid"]; repeated bytes Value = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message NinOptNativeUnion { option (gogoproto.onlyone) = true; optional double Field1 = 1; optional float Field2 = 2; optional int32 Field3 = 3; optional int64 Field4 = 4; optional uint32 Field5 = 5; optional uint64 Field6 = 6; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NinOptStructUnion { option (gogoproto.onlyone) = true; optional double Field1 = 1; optional float Field2 = 2; optional NidOptNative Field3 = 3; optional NinOptNative Field4 = 4; optional uint64 Field6 = 6; optional sint32 Field7 = 7; optional bool Field13 = 13; optional string Field14 = 14; optional bytes Field15 = 15; } message NinEmbeddedStructUnion { option (gogoproto.onlyone) = true; optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NinOptNative Field200 = 200; optional bool Field210 = 210; } message NinNestedStructUnion { option (gogoproto.onlyone) = true; optional NinOptNativeUnion Field1 = 1; optional NinOptStructUnion Field2 = 2; optional NinEmbeddedStructUnion Field3 = 3; } message Tree { option (gogoproto.onlyone) = true; optional OrBranch Or = 1; optional AndBranch And = 2; optional Leaf Leaf = 3; } message OrBranch { optional Tree Left = 1 [(gogoproto.nullable) = false]; optional Tree Right = 2 [(gogoproto.nullable) = false]; } message AndBranch { optional Tree Left = 1 [(gogoproto.nullable) = false]; optional Tree Right = 2 [(gogoproto.nullable) = false]; } message Leaf { optional int64 Value = 1 [(gogoproto.nullable) = false]; optional string StrValue = 2 [(gogoproto.nullable) = false]; } message DeepTree { option (gogoproto.onlyone) = true; optional ADeepBranch Down = 1; optional AndDeepBranch And = 2; optional DeepLeaf Leaf = 3; } message ADeepBranch { optional DeepTree Down = 2 [(gogoproto.nullable) = false]; } message AndDeepBranch { optional DeepTree Left = 1 [(gogoproto.nullable) = false]; optional DeepTree Right = 2 [(gogoproto.nullable) = false]; } message DeepLeaf { optional Tree Tree = 1 [(gogoproto.nullable) = false]; } message Nil { } enum TheTestEnum { A = 0; B = 1; C = 2; } enum AnotherTestEnum { option (gogoproto.goproto_enum_prefix) = false; D = 10; E = 11; } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. enum YetAnotherTestEnum { option (gogoproto.goproto_enum_prefix) = false; AA = 0; BB = 1 [(gogoproto.enumvalue_customname) = "BetterYetBB"]; } // YetAnotherTestEnum is used to test cross-package import of custom name // fields and default resolution. enum YetYetAnotherTestEnum { option (gogoproto.goproto_enum_prefix) = true; CC = 0; DD = 1 [(gogoproto.enumvalue_customname) = "BetterYetDD"]; } message NidOptEnum { optional TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; } message NinOptEnum { optional TheTestEnum Field1 = 1; optional YetAnotherTestEnum Field2 = 2; optional YetYetAnotherTestEnum Field3 = 3; } message NidRepEnum { repeated TheTestEnum Field1 = 1 [(gogoproto.nullable) = false]; repeated YetAnotherTestEnum Field2 = 2 [(gogoproto.nullable) = false]; repeated YetYetAnotherTestEnum Field3 = 3 [(gogoproto.nullable) = false]; } message NinRepEnum { repeated TheTestEnum Field1 = 1; repeated YetAnotherTestEnum Field2 = 2; repeated YetYetAnotherTestEnum Field3 = 3; } message NinOptEnumDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional TheTestEnum Field1 = 1 [default=C]; optional YetAnotherTestEnum Field2 = 2 [default=BB]; optional YetYetAnotherTestEnum Field3 = 3 [default=CC]; } message AnotherNinOptEnum { optional AnotherTestEnum Field1 = 1; optional YetAnotherTestEnum Field2 = 2; optional YetYetAnotherTestEnum Field3 = 3; } message AnotherNinOptEnumDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional AnotherTestEnum Field1 = 1 [default=E]; optional YetAnotherTestEnum Field2 = 2 [default=BB]; optional YetYetAnotherTestEnum Field3 = 3 [default=CC]; } message Timer { optional sfixed64 Time1 = 1 [(gogoproto.nullable) = false]; optional sfixed64 Time2 = 2 [(gogoproto.nullable) = false]; optional bytes Data = 3 [(gogoproto.nullable) = false]; } message MyExtendable { option (gogoproto.face) = false; optional int64 Field1 = 1; extensions 100 to 199; } extend MyExtendable { optional double FieldA = 100; optional NinOptNative FieldB = 101; optional NinEmbeddedStruct FieldC = 102; repeated int64 FieldD = 104; repeated NinOptNative FieldE = 105; } message OtherExtenable { option (gogoproto.face) = false; optional int64 Field2 = 2; extensions 14 to 16; optional int64 Field13 = 13; extensions 10 to 12; optional MyExtendable M = 1; } message NestedDefinition { optional int64 Field1 = 1; message NestedMessage { optional fixed64 NestedField1 = 1; optional NestedNestedMsg NNM = 2; message NestedNestedMsg { optional string NestedNestedField1 = 10; } } enum NestedEnum { TYPE_NESTED = 1; } optional NestedEnum EnumField = 2; optional NestedMessage.NestedNestedMsg NNM = 3; optional NestedMessage NM = 4; } message NestedScope { optional NestedDefinition.NestedMessage.NestedNestedMsg A = 1; optional NestedDefinition.NestedEnum B = 2; optional NestedDefinition.NestedMessage C = 3; } message NinOptNativeDefault { option (gogoproto.goproto_getters) = true; option (gogoproto.face) = false; optional double Field1 = 1 [default = 1234.1234]; optional float Field2 = 2 [default = 1234.1234]; optional int32 Field3 = 3 [default = 1234]; optional int64 Field4 = 4 [default = 1234]; optional uint32 Field5 = 5 [default = 1234]; optional uint64 Field6 = 6 [default = 1234]; optional sint32 Field7 = 7 [default = 1234]; optional sint64 Field8 = 8 [default = 1234]; optional fixed32 Field9 = 9 [default = 1234]; optional sfixed32 Field10 = 10 [default = 1234]; optional fixed64 Field11 = 11 [default = 1234]; optional sfixed64 Field12 = 12 [default = 1234]; optional bool Field13 = 13 [default = true]; optional string Field14 = 14 [default = "1234"]; optional bytes Field15 = 15; } message CustomContainer { optional NidOptCustom CustomStruct = 1 [(gogoproto.nullable) = false]; } message CustomNameNidOptNative { optional double Field1 = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldB"]; optional int32 Field3 = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldC"]; optional int64 Field4 = 4 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldD"]; optional uint32 Field5 = 5 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldE"]; optional uint64 Field6 = 6 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldF"]; optional sint32 Field7 = 7 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldG"]; optional sint64 Field8 = 8 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldH"]; optional fixed32 Field9 = 9 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldI"]; optional sfixed32 Field10 = 10 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldJ"]; optional fixed64 Field11 = 11 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldK"]; optional sfixed64 Field12 = 12 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldL"]; optional bool Field13 = 13 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldM"]; optional string Field14 = 14 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldN"]; optional bytes Field15 = 15 [(gogoproto.nullable) = false, (gogoproto.customname) = "FieldO"]; } message CustomNameNinOptNative { optional double Field1 = 1 [(gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.customname) = "FieldB"]; optional int32 Field3 = 3 [(gogoproto.customname) = "FieldC"]; optional int64 Field4 = 4 [(gogoproto.customname) = "FieldD"]; optional uint32 Field5 = 5 [(gogoproto.customname) = "FieldE"]; optional uint64 Field6 = 6 [(gogoproto.customname) = "FieldF"]; optional sint32 Field7 = 7 [(gogoproto.customname) = "FieldG"]; optional sint64 Field8 = 8 [(gogoproto.customname) = "FieldH"]; optional fixed32 Field9 = 9 [(gogoproto.customname) = "FieldI"]; optional sfixed32 Field10 = 10 [(gogoproto.customname) = "FieldJ"]; optional fixed64 Field11 = 11 [(gogoproto.customname) = "FieldK"]; optional sfixed64 Field12 = 12 [(gogoproto.customname) = "FielL"]; optional bool Field13 = 13 [(gogoproto.customname) = "FieldM"]; optional string Field14 = 14 [(gogoproto.customname) = "FieldN"]; optional bytes Field15 = 15 [(gogoproto.customname) = "FieldO"]; } message CustomNameNinRepNative { repeated double Field1 = 1 [(gogoproto.customname) = "FieldA"]; repeated float Field2 = 2 [(gogoproto.customname) = "FieldB"]; repeated int32 Field3 = 3 [(gogoproto.customname) = "FieldC"]; repeated int64 Field4 = 4 [(gogoproto.customname) = "FieldD"]; repeated uint32 Field5 = 5 [(gogoproto.customname) = "FieldE"]; repeated uint64 Field6 = 6 [(gogoproto.customname) = "FieldF"]; repeated sint32 Field7 = 7 [(gogoproto.customname) = "FieldG"]; repeated sint64 Field8 = 8 [(gogoproto.customname) = "FieldH"]; repeated fixed32 Field9 = 9 [(gogoproto.customname) = "FieldI"]; repeated sfixed32 Field10 = 10 [(gogoproto.customname) = "FieldJ"]; repeated fixed64 Field11 = 11 [(gogoproto.customname) = "FieldK"]; repeated sfixed64 Field12 = 12 [(gogoproto.customname) = "FieldL"]; repeated bool Field13 = 13 [(gogoproto.customname) = "FieldM"]; repeated string Field14 = 14 [(gogoproto.customname) = "FieldN"]; repeated bytes Field15 = 15 [(gogoproto.customname) = "FieldO"]; } message CustomNameNinStruct { optional double Field1 = 1 [(gogoproto.customname) = "FieldA"]; optional float Field2 = 2 [(gogoproto.customname) = "FieldB"]; optional NidOptNative Field3 = 3 [(gogoproto.customname) = "FieldC"]; repeated NinOptNative Field4 = 4 [(gogoproto.customname) = "FieldD"]; optional uint64 Field6 = 6 [(gogoproto.customname) = "FieldE"]; optional sint32 Field7 = 7 [(gogoproto.customname) = "FieldF"]; optional NidOptNative Field8 = 8 [(gogoproto.customname) = "FieldG"]; optional bool Field13 = 13 [(gogoproto.customname) = "FieldH"]; optional string Field14 = 14 [(gogoproto.customname) = "FieldI"]; optional bytes Field15 = 15 [(gogoproto.customname) = "FieldJ"]; } message CustomNameCustomType { optional bytes Id = 1 [(gogoproto.customname) = "FieldA", (gogoproto.customtype) = "Uuid"]; optional bytes Value = 2 [(gogoproto.customname) = "FieldB", (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; repeated bytes Ids = 3 [(gogoproto.customname) = "FieldC", (gogoproto.customtype) = "Uuid"]; repeated bytes Values = 4 [(gogoproto.customname) = "FieldD", (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"]; } message CustomNameNinEmbeddedStructUnion { option (gogoproto.onlyone) = true; optional NidOptNative Field1 = 1 [(gogoproto.embed) = true]; optional NinOptNative Field200 = 200 [(gogoproto.customname) = "FieldA"]; optional bool Field210 = 210 [(gogoproto.customname) = "FieldB"]; } message CustomNameEnum { optional TheTestEnum Field1 = 1 [(gogoproto.customname) = "FieldA"]; repeated TheTestEnum Field2 = 2 [(gogoproto.customname) = "FieldB"]; } message NoExtensionsMap { option (gogoproto.face) = false; option (gogoproto.goproto_extensions_map) = false; optional int64 Field1 = 1; extensions 100 to 199; } extend NoExtensionsMap { optional double FieldA1 = 100; optional NinOptNative FieldB1 = 101; optional NinEmbeddedStruct FieldC1 = 102; } message Unrecognized { option (gogoproto.goproto_unrecognized) = false; optional string Field1 = 1; } message UnrecognizedWithInner { message Inner { option (gogoproto.goproto_unrecognized) = false; optional uint32 Field1 = 1; } repeated Inner embedded = 1; optional string Field2 = 2; } message UnrecognizedWithEmbed { message Embedded { option (gogoproto.goproto_unrecognized) = false; optional uint32 Field1 = 1; } optional Embedded embedded = 1 [(gogoproto.embed) = true, (gogoproto.nullable) = false]; optional string Field2 = 2; } message Node { optional string Label = 1; repeated Node Children = 2; } message NonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message NidOptNonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T", (gogoproto.nullable) = false]; } message NinOptNonByteCustomType { optional ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message NidRepNonByteCustomType { repeated ProtoType Field1 = 1 [(gogoproto.customtype) = "T", (gogoproto.nullable) = false]; } message NinRepNonByteCustomType { repeated ProtoType Field1 = 1 [(gogoproto.customtype) = "T"]; } message ProtoType { optional string Field2 = 1; } golang-gogoprotobuf-0.5/test/thetestpb_test.go000066400000000000000000016764411317075173200217370ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: thetest.proto /* Package test is a generated protocol buffer package. It is generated from these files: thetest.proto It has these top-level messages: NidOptNative NinOptNative NidRepNative NinRepNative NidRepPackedNative NinRepPackedNative NidOptStruct NinOptStruct NidRepStruct NinRepStruct NidEmbeddedStruct NinEmbeddedStruct NidNestedStruct NinNestedStruct NidOptCustom CustomDash NinOptCustom NidRepCustom NinRepCustom NinOptNativeUnion NinOptStructUnion NinEmbeddedStructUnion NinNestedStructUnion Tree OrBranch AndBranch Leaf DeepTree ADeepBranch AndDeepBranch DeepLeaf Nil NidOptEnum NinOptEnum NidRepEnum NinRepEnum NinOptEnumDefault AnotherNinOptEnum AnotherNinOptEnumDefault Timer MyExtendable OtherExtenable NestedDefinition NestedScope NinOptNativeDefault CustomContainer CustomNameNidOptNative CustomNameNinOptNative CustomNameNinRepNative CustomNameNinStruct CustomNameCustomType CustomNameNinEmbeddedStructUnion CustomNameEnum NoExtensionsMap Unrecognized UnrecognizedWithInner UnrecognizedWithEmbed Node NonByteCustomType NidOptNonByteCustomType NinOptNonByteCustomType NidRepNonByteCustomType NinRepNonByteCustomType ProtoType */ package test import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestNidOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepPackedNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepPackedNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepPackedNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepPackedNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepPackedNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepPackedNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepPackedNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepPackedNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepPackedNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepPackedNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepPackedNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepPackedNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidEmbeddedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidEmbeddedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidEmbeddedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidEmbeddedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidEmbeddedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidEmbeddedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinEmbeddedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinEmbeddedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinEmbeddedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinEmbeddedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidNestedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidNestedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidNestedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidNestedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidNestedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidNestedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinNestedStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinNestedStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinNestedStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinNestedStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomDashProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomDashProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomDash, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomDash(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomDashProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomDash(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomDash{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepCustomProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepCustomProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepCustom, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepCustomProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepCustom(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepCustom{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptNativeUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNativeUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNativeUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNativeUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinEmbeddedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinEmbeddedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinEmbeddedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinEmbeddedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinNestedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinNestedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinNestedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinNestedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinNestedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestTreeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkTreeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Tree, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkTreeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedTree(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Tree{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOrBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkOrBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OrBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOrBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOrBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOrBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OrBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAndBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAndBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAndBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAndBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAndBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AndBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestLeafProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkLeafProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Leaf, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkLeafProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedLeaf(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Leaf{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDeepTreeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkDeepTreeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepTree, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDeepTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDeepTreeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDeepTree(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DeepTree{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestADeepBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkADeepBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ADeepBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedADeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkADeepBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedADeepBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ADeepBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAndDeepBranchProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAndDeepBranchProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndDeepBranch, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAndDeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAndDeepBranchProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAndDeepBranch(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AndDeepBranch{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDeepLeafProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkDeepLeafProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepLeaf, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDeepLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDeepLeafProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDeepLeaf(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DeepLeaf{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNilProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNilProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nil, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNil(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNilProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNil(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Nil{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptEnumDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnumDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptEnumDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptEnumDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptEnumDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAnotherNinOptEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAnotherNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAnotherNinOptEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAnotherNinOptEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AnotherNinOptEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkAnotherNinOptEnumDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnumDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedAnotherNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkAnotherNinOptEnumDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedAnotherNinOptEnumDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &AnotherNinOptEnumDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestTimerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkTimerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Timer, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedTimer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkTimerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedTimer(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Timer{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMyExtendableProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMyExtendableProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyExtendable, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMyExtendable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMyExtendableProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMyExtendable(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MyExtendable{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOtherExtenableProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkOtherExtenableProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OtherExtenable, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOtherExtenable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOtherExtenableProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOtherExtenable(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OtherExtenable{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinitionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedDefinitionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinitionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessageProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedDefinition_NestedMessageProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinition_NestedMessageProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition_NestedMessage(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition_NestedMessage{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessage_NestedNestedMsgProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage_NestedNestedMsg, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNestedScopeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNestedScopeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedScope, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNestedScope(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNestedScopeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNestedScope(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NestedScope{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeDefaultProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptNativeDefaultProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeDefault, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNativeDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNativeDefaultProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNativeDefault(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNativeDefault{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomContainerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomContainerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomContainer, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomContainer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomContainerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomContainer(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomContainer{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNidOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNidOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNidOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNidOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNidOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNidOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinOptNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNinOptNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinOptNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinOptNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinOptNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinOptNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinRepNativeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNinRepNativeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinRepNative, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinRepNativeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinRepNative(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinRepNative{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinStructProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNinStructProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinStruct, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinStructProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinStruct(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinStruct{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinEmbeddedStructUnionProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameNinEmbeddedStructUnionProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinEmbeddedStructUnion, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameNinEmbeddedStructUnionProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameNinEmbeddedStructUnion{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestCustomNameEnumProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkCustomNameEnumProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameEnum, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedCustomNameEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkCustomNameEnumProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedCustomNameEnum(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &CustomNameEnum{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNoExtensionsMapProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNoExtensionsMapProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NoExtensionsMap, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNoExtensionsMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNoExtensionsMapProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNoExtensionsMap(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NoExtensionsMap{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Unrecognized, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognized(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognized(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Unrecognized{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInnerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedWithInnerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithInnerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithInner(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithInner{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInner_InnerProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedWithInner_InnerProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner_Inner, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner_Inner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithInner_InnerProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithInner_Inner(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithInner_Inner{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedWithEmbedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithEmbedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithEmbed(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithEmbed{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbed_EmbeddedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkUnrecognizedWithEmbed_EmbeddedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed_Embedded, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkUnrecognizedWithEmbed_EmbeddedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &UnrecognizedWithEmbed_Embedded{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNodeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNodeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Node, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNode(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNodeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNode(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Node{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidOptNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidOptNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidOptNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidOptNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinOptNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinOptNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinOptNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinOptNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinOptNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidRepNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNidRepNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNidRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNidRepNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNidRepNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NidRepNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNinRepNonByteCustomTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkNinRepNonByteCustomTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNonByteCustomType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedNinRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkNinRepNonByteCustomTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedNinRepNonByteCustomType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &NinRepNonByteCustomType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestProtoTypeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkProtoTypeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoType, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedProtoType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkProtoTypeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedProtoType(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ProtoType{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestNidOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepPackedNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepPackedNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepPackedNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepPackedNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidEmbeddedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidEmbeddedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinEmbeddedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidNestedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidNestedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinNestedStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomDashJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomDash{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepCustomJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepCustom{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinEmbeddedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinNestedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinNestedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTreeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Tree{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOrBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OrBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAndBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestLeafJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Leaf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDeepTreeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepTree{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestADeepBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ADeepBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAndDeepBranchJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AndDeepBranch{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDeepLeafJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DeepLeaf{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNilJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Nil{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptEnumDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptEnumDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAnotherNinOptEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &AnotherNinOptEnumDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestTimerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Timer{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMyExtendableJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MyExtendable{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOtherExtenableJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OtherExtenable{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinitionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNestedScopeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NestedScope{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNativeDefaultJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNativeDefault{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomContainerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomContainer{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNidOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNidOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinOptNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinOptNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinRepNativeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinRepNative{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinStructJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinStruct{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameNinEmbeddedStructUnion{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCustomNameEnumJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &CustomNameEnum{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNoExtensionsMapJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NoExtensionsMap{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Unrecognized{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithInnerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithInner_Inner{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnrecognizedWithEmbed_Embedded{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNodeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Node{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidOptNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinOptNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NidRepNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NinRepNonByteCustomType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestProtoTypeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoType{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNidOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepPackedNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepPackedNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepPackedNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepPackedNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidEmbeddedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidEmbeddedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidNestedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidNestedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomDashProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomDashProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepCustomProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepCustomProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinEmbeddedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinNestedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTreeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Tree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTreeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Tree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOrBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOrBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestLeafProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Leaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestLeafProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Leaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepTreeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepTreeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestADeepBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestADeepBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndDeepBranchProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAndDeepBranchProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepLeafProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDeepLeafProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNilProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Nil{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNilProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Nil{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptEnumDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAnotherNinOptEnumDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTimerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Timer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestTimerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Timer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyExtendableProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMyExtendableProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOtherExtenableProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOtherExtenableProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinitionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinitionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessageProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedScopeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNestedScopeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeDefaultProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNativeDefaultProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomContainerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomContainerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNidOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNidOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinOptNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinOptNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinRepNativeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinRepNativeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinStructProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinStructProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameNinEmbeddedStructUnionProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameEnumProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCustomNameEnumProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNoExtensionsMapProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNoExtensionsMapProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInnerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInnerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithInner_InnerProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNodeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Node{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNodeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Node{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinOptNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidRepNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNinRepNonByteCustomTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNidOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepPackedNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepPackedNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepPackedNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepPackedNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidEmbeddedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidEmbeddedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinEmbeddedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinEmbeddedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidNestedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidNestedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinNestedStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinNestedStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomDashCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomDash(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepCustomCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepCustom(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNativeUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinEmbeddedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinEmbeddedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinNestedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinNestedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestTreeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedTree(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestOrBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedOrBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAndBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAndBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestLeafCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedLeaf(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestDeepTreeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedDeepTree(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestADeepBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedADeepBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAndDeepBranchCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAndDeepBranch(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestDeepLeafCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedDeepLeaf(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNilCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNil(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptEnumDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptEnumDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAnotherNinOptEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAnotherNinOptEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestAnotherNinOptEnumDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedAnotherNinOptEnumDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestTimerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedTimer(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestMyExtendableCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedMyExtendable(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestOtherExtenableCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedOtherExtenable(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinitionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinition_NestedMessageCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition_NestedMessage(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNestedScopeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNestedScope(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNativeDefaultCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNativeDefault(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomContainerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomContainer(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNidOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNidOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinOptNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinOptNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinRepNativeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinRepNative(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinStructCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinStruct(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameNinEmbeddedStructUnionCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestCustomNameEnumCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedCustomNameEnum(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNoExtensionsMapCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNoExtensionsMap(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognized(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithInnerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithInner(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithInner_InnerCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithInner_Inner(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithEmbedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithEmbed(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestUnrecognizedWithEmbed_EmbeddedCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNodeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNode(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidOptNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidOptNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinOptNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinOptNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNidRepNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNidRepNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestNinRepNonByteCustomTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedNinRepNonByteCustomType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestProtoTypeCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedProtoType(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestThetestDescription(t *testing.T) { ThetestDescription() } func TestNidOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepPackedNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepPackedNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepPackedNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidEmbeddedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinEmbeddedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidNestedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinNestedStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomDashVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomDash{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepCustomVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepCustom{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinEmbeddedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinNestedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinNestedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTreeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Tree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOrBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OrBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAndBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestLeafVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Leaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDeepTreeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepTree{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestADeepBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ADeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAndDeepBranchVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AndDeepBranch{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDeepLeafVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DeepLeaf{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNilVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Nil{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptEnumDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAnotherNinOptEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAnotherNinOptEnumDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &AnotherNinOptEnumDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestTimerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Timer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMyExtendableVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MyExtendable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOtherExtenableVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OtherExtenable{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinitionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinition_NestedMessageVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedDefinition_NestedMessage_NestedNestedMsg{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNestedScopeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NestedScope{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNativeDefaultVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNativeDefault{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomContainerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomContainer{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNidOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNidOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinOptNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinOptNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinRepNativeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinRepNative{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinStructVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinStruct{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameNinEmbeddedStructUnionVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameNinEmbeddedStructUnion{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCustomNameEnumVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &CustomNameEnum{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNoExtensionsMapVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NoExtensionsMap{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Unrecognized{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithInnerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithInner_InnerVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithInner_Inner{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithEmbedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnrecognizedWithEmbed_EmbeddedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnrecognizedWithEmbed_Embedded{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNodeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Node{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinOptNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinOptNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidRepNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NidRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNinRepNonByteCustomTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NinRepNonByteCustomType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestProtoTypeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoType{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNidOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepPackedNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepPackedNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidEmbeddedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinEmbeddedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidNestedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinNestedStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomDashFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepCustomFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNativeUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinEmbeddedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinNestedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestTreeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestOrBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAndBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestLeafFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestDeepTreeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestADeepBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAndDeepBranchFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestDeepLeafFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNilFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestAnotherNinOptEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestTimerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinitionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinition_NestedMessageFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNestedScopeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomContainerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNidOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinOptNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinRepNativeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinStructFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameNinEmbeddedStructUnionFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestCustomNameEnumFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithInnerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithInner_InnerFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithEmbedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestUnrecognizedWithEmbed_EmbeddedFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNodeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinOptNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidRepNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNinRepNonByteCustomTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestProtoTypeFace(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, true) msg := p.TestProto() if !p.Equal(msg) { t.Fatalf("%#v !Face Equal %#v", msg, p) } } func TestNidOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepPackedNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepPackedNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidEmbeddedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinEmbeddedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidNestedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinNestedStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomDashGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepCustomGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinEmbeddedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinNestedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTreeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOrBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAndBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestLeafGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestDeepTreeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestADeepBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAndDeepBranchGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestDeepLeafGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNilGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptEnumDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAnotherNinOptEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAnotherNinOptEnumDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestTimerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestMyExtendableGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOtherExtenableGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinitionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinition_NestedMessageGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNestedScopeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNativeDefaultGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomContainerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNidOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinOptNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinRepNativeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinStructGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameNinEmbeddedStructUnionGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCustomNameEnumGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNoExtensionsMapGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithInnerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithInner_InnerGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithEmbedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnrecognizedWithEmbed_EmbeddedGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNodeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinOptNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidRepNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNinRepNonByteCustomTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestProtoTypeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNidOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepPackedNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepPackedNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepPackedNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepPackedNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepPackedNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepPackedNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepPackedNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepPackedNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepPackedNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidEmbeddedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidEmbeddedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidEmbeddedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidEmbeddedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinEmbeddedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinEmbeddedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidNestedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidNestedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidNestedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidNestedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinNestedStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinNestedStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomDashSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomDash(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomDashSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomDash, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomDash(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepCustomSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepCustom(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepCustomSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepCustom, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepCustom(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNativeUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinEmbeddedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinEmbeddedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinEmbeddedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinEmbeddedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinNestedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinNestedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinNestedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinNestedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinNestedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestTreeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTree(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkTreeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Tree, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOrBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOrBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOrBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OrBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOrBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAndBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAndBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAndBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestLeafSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedLeaf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkLeafSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Leaf, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDeepTreeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepTree(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDeepTreeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepTree, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDeepTree(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestADeepBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedADeepBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkADeepBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ADeepBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedADeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAndDeepBranchSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAndDeepBranch(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAndDeepBranchSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AndDeepBranch, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAndDeepBranch(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDeepLeafSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDeepLeaf(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDeepLeafSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DeepLeaf, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDeepLeaf(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNilSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNil(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNilSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Nil, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNil(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptEnumDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptEnumDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptEnumDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptEnumDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAnotherNinOptEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAnotherNinOptEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestAnotherNinOptEnumDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedAnotherNinOptEnumDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkAnotherNinOptEnumDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*AnotherNinOptEnumDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedAnotherNinOptEnumDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestTimerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedTimer(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkTimerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Timer, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedTimer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMyExtendableSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMyExtendable(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMyExtendableSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MyExtendable, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMyExtendable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOtherExtenableSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOtherExtenable(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOtherExtenableSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OtherExtenable, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOtherExtenable(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinitionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinitionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessageSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinition_NestedMessageSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedDefinition_NestedMessage_NestedNestedMsgSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedDefinition_NestedMessage_NestedNestedMsgSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedDefinition_NestedMessage_NestedNestedMsg, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNestedScopeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNestedScope(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNestedScopeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NestedScope, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNestedScope(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNativeDefaultSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNativeDefault(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNativeDefaultSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNativeDefault, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNativeDefault(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomContainerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomContainer(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomContainerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomContainer, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomContainer(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNidOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNidOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNidOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNidOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNidOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinOptNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinOptNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinOptNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinOptNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinOptNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinRepNativeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinRepNative(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinRepNativeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinRepNative, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinRepNative(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinStructSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinStruct(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinStructSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinStruct, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinStruct(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameNinEmbeddedStructUnionSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameNinEmbeddedStructUnionSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameNinEmbeddedStructUnion, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestCustomNameEnumSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedCustomNameEnum(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkCustomNameEnumSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*CustomNameEnum, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedCustomNameEnum(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNoExtensionsMapSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNoExtensionsMap(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNoExtensionsMapSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NoExtensionsMap, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNoExtensionsMap(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognized(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Unrecognized, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognized(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInnerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithInnerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithInner_InnerSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithInner_Inner(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithInner_InnerSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithInner_Inner, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithInner_Inner(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithEmbedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestUnrecognizedWithEmbed_EmbeddedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkUnrecognizedWithEmbed_EmbeddedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*UnrecognizedWithEmbed_Embedded, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNodeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNode(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNodeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Node, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNode(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidOptNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidOptNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidOptNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinOptNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinOptNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinOptNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinOptNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinOptNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidRepNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNidRepNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNidRepNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NidRepNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNidRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNinRepNonByteCustomTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNinRepNonByteCustomType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkNinRepNonByteCustomTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*NinRepNonByteCustomType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedNinRepNonByteCustomType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestProtoTypeSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoType(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkProtoTypeSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoType, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedProtoType(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestNidOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepPackedNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepPackedNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepPackedNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepPackedNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidEmbeddedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidEmbeddedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinEmbeddedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidNestedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidNestedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinNestedStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomDashStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomDash(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepCustomStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepCustom(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinEmbeddedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinNestedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTreeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOrBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOrBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAndBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestLeafStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedLeaf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestDeepTreeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestADeepBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedADeepBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAndDeepBranchStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAndDeepBranch(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestDeepLeafStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepLeaf(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNilStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNil(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptEnumDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptEnumDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAnotherNinOptEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAnotherNinOptEnumDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedAnotherNinOptEnumDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestTimerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTimer(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestMyExtendableStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMyExtendable(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOtherExtenableStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOtherExtenable(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinitionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinition_NestedMessageStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedDefinition_NestedMessage_NestedNestedMsgStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedDefinition_NestedMessage_NestedNestedMsg(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNestedScopeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNestedScope(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeDefaultStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeDefault(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomContainerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomContainer(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNidOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNidOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinOptNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinOptNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinRepNativeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinRepNative(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinStructStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinStruct(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameNinEmbeddedStructUnionStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCustomNameEnumStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameEnum(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNoExtensionsMapStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNoExtensionsMap(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognized(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithInnerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithInner_InnerStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithInner_Inner(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithEmbedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnrecognizedWithEmbed_EmbeddedStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnrecognizedWithEmbed_Embedded(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNodeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNode(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidOptNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidOptNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNidRepNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNidRepNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinRepNonByteCustomTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinRepNonByteCustomType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestProtoTypeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoType(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestNinOptNativeUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptNativeUnion(popr, true) v := p.GetValue() msg := &NinOptNativeUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinOptStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinOptStructUnion(popr, true) v := p.GetValue() msg := &NinOptStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinEmbeddedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinEmbeddedStructUnion(popr, true) v := p.GetValue() msg := &NinEmbeddedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestNinNestedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNinNestedStructUnion(popr, true) v := p.GetValue() msg := &NinNestedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestTreeOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedTree(popr, true) v := p.GetValue() msg := &Tree{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestDeepTreeOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDeepTree(popr, true) v := p.GetValue() msg := &DeepTree{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } func TestCustomNameNinEmbeddedStructUnionOnlyOne(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedCustomNameNinEmbeddedStructUnion(popr, true) v := p.GetValue() msg := &CustomNameNinEmbeddedStructUnion{} if !msg.SetValue(v) { t.Fatalf("OnlyOne: Could not set Value") } if !p.Equal(msg) { t.Fatalf("%#v !OnlyOne Equal %#v", msg, p) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/typedecl/000077500000000000000000000000001317075173200201355ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/typedecl/Makefile000066400000000000000000000002621317075173200215750ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. typedecl.proto golang-gogoprotobuf-0.5/test/typedecl/models.go000066400000000000000000000013611317075173200217500ustar00rootroot00000000000000package typedecl import ( "encoding/json" "github.com/gogo/protobuf/jsonpb" ) type Dropped struct { Name string Age int32 } func (d *Dropped) Drop() bool { return true } func (d *Dropped) UnmarshalJSONPB(u *jsonpb.Unmarshaler, b []byte) error { return json.Unmarshal(b, d) } func (d *Dropped) MarshalJSONPB(*jsonpb.Marshaler) ([]byte, error) { return json.Marshal(d) } type DroppedWithoutGetters struct { Width int64 Height int64 } func (d *DroppedWithoutGetters) GetHeight() int64 { return d.Height } func (d *DroppedWithoutGetters) UnmarshalJSONPB(u *jsonpb.Unmarshaler, b []byte) error { return json.Unmarshal(b, d) } func (d *DroppedWithoutGetters) MarshalJSONPB(*jsonpb.Marshaler) ([]byte, error) { return json.Marshal(d) } golang-gogoprotobuf-0.5/test/typedecl/typedecl.pb.go000066400000000000000000000520751317075173200227060ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: typedecl.proto /* Package typedecl is a generated protocol buffer package. It is generated from these files: typedecl.proto It has these top-level messages: Dropped DroppedWithoutGetters Kept */ package typedecl import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package func (m *Dropped) Reset() { *m = Dropped{} } func (m *Dropped) String() string { return proto.CompactTextString(m) } func (*Dropped) ProtoMessage() {} func (*Dropped) Descriptor() ([]byte, []int) { return fileDescriptorTypedecl, []int{0} } func (m *Dropped) GetName() string { if m != nil { return m.Name } return "" } func (m *Dropped) GetAge() int32 { if m != nil { return m.Age } return 0 } func (m *DroppedWithoutGetters) Reset() { *m = DroppedWithoutGetters{} } func (m *DroppedWithoutGetters) String() string { return proto.CompactTextString(m) } func (*DroppedWithoutGetters) ProtoMessage() {} func (*DroppedWithoutGetters) Descriptor() ([]byte, []int) { return fileDescriptorTypedecl, []int{1} } type Kept struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Age int32 `protobuf:"varint,2,opt,name=age,proto3" json:"age,omitempty"` } func (m *Kept) Reset() { *m = Kept{} } func (m *Kept) String() string { return proto.CompactTextString(m) } func (*Kept) ProtoMessage() {} func (*Kept) Descriptor() ([]byte, []int) { return fileDescriptorTypedecl, []int{2} } func (m *Kept) GetName() string { if m != nil { return m.Name } return "" } func (m *Kept) GetAge() int32 { if m != nil { return m.Age } return 0 } func init() { proto.RegisterType((*Dropped)(nil), "typedecl.Dropped") proto.RegisterType((*DroppedWithoutGetters)(nil), "typedecl.DroppedWithoutGetters") proto.RegisterType((*Kept)(nil), "typedecl.Kept") } func (this *Dropped) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Dropped) if !ok { that2, ok := that.(Dropped) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Dropped") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Dropped but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Dropped but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Age != that1.Age { return fmt.Errorf("Age this(%v) Not Equal that(%v)", this.Age, that1.Age) } return nil } func (this *Dropped) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Dropped) if !ok { that2, ok := that.(Dropped) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Age != that1.Age { return false } return true } func (this *DroppedWithoutGetters) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DroppedWithoutGetters) if !ok { that2, ok := that.(DroppedWithoutGetters) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DroppedWithoutGetters") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DroppedWithoutGetters but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DroppedWithoutGetters but is not nil && this == nil") } if this.Height != that1.Height { return fmt.Errorf("Height this(%v) Not Equal that(%v)", this.Height, that1.Height) } if this.Width != that1.Width { return fmt.Errorf("Width this(%v) Not Equal that(%v)", this.Width, that1.Width) } return nil } func (this *DroppedWithoutGetters) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DroppedWithoutGetters) if !ok { that2, ok := that.(DroppedWithoutGetters) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Height != that1.Height { return false } if this.Width != that1.Width { return false } return true } func (this *Kept) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Kept) if !ok { that2, ok := that.(Kept) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Kept") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Kept but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Kept but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Age != that1.Age { return fmt.Errorf("Age this(%v) Not Equal that(%v)", this.Age, that1.Age) } return nil } func (this *Kept) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Kept) if !ok { that2, ok := that.(Kept) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Age != that1.Age { return false } return true } func (m *Dropped) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Dropped) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Name) > 0 { dAtA[i] = 0xa i++ i = encodeVarintTypedecl(dAtA, i, uint64(len(m.Name))) i += copy(dAtA[i:], m.Name) } if m.Age != 0 { dAtA[i] = 0x10 i++ i = encodeVarintTypedecl(dAtA, i, uint64(m.Age)) } return i, nil } func (m *DroppedWithoutGetters) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *DroppedWithoutGetters) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Height != 0 { dAtA[i] = 0x8 i++ i = encodeVarintTypedecl(dAtA, i, uint64(m.Height)) } if m.Width != 0 { dAtA[i] = 0x10 i++ i = encodeVarintTypedecl(dAtA, i, uint64(m.Width)) } return i, nil } func (m *Kept) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Kept) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Name) > 0 { dAtA[i] = 0xa i++ i = encodeVarintTypedecl(dAtA, i, uint64(len(m.Name))) i += copy(dAtA[i:], m.Name) } if m.Age != 0 { dAtA[i] = 0x10 i++ i = encodeVarintTypedecl(dAtA, i, uint64(m.Age)) } return i, nil } func encodeVarintTypedecl(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedDropped(r randyTypedecl, easy bool) *Dropped { this := &Dropped{} this.Name = string(randStringTypedecl(r)) this.Age = int32(r.Int31()) if r.Intn(2) == 0 { this.Age *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedDroppedWithoutGetters(r randyTypedecl, easy bool) *DroppedWithoutGetters { this := &DroppedWithoutGetters{} this.Height = int64(r.Int63()) if r.Intn(2) == 0 { this.Height *= -1 } this.Width = int64(r.Int63()) if r.Intn(2) == 0 { this.Width *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedKept(r randyTypedecl, easy bool) *Kept { this := &Kept{} this.Name = string(randStringTypedecl(r)) this.Age = int32(r.Int31()) if r.Intn(2) == 0 { this.Age *= -1 } if !easy && r.Intn(10) != 0 { } return this } type randyTypedecl interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTypedecl(r randyTypedecl) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTypedecl(r randyTypedecl) string { v1 := r.Intn(100) tmps := make([]rune, v1) for i := 0; i < v1; i++ { tmps[i] = randUTF8RuneTypedecl(r) } return string(tmps) } func randUnrecognizedTypedecl(r randyTypedecl, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTypedecl(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTypedecl(dAtA []byte, r randyTypedecl, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTypedecl(dAtA, uint64(key)) v2 := r.Int63() if r.Intn(2) == 0 { v2 *= -1 } dAtA = encodeVarintPopulateTypedecl(dAtA, uint64(v2)) case 1: dAtA = encodeVarintPopulateTypedecl(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTypedecl(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTypedecl(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTypedecl(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTypedecl(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Dropped) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovTypedecl(uint64(l)) } if m.Age != 0 { n += 1 + sovTypedecl(uint64(m.Age)) } return n } func (m *DroppedWithoutGetters) Size() (n int) { var l int _ = l if m.Height != 0 { n += 1 + sovTypedecl(uint64(m.Height)) } if m.Width != 0 { n += 1 + sovTypedecl(uint64(m.Width)) } return n } func (m *Kept) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovTypedecl(uint64(l)) } if m.Age != 0 { n += 1 + sovTypedecl(uint64(m.Age)) } return n } func sovTypedecl(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTypedecl(x uint64) (n int) { return sovTypedecl(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Dropped) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Dropped: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Dropped: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthTypedecl } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Age", wireType) } m.Age = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Age |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipTypedecl(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypedecl } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *DroppedWithoutGetters) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: DroppedWithoutGetters: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: DroppedWithoutGetters: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Height", wireType) } m.Height = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Height |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Width", wireType) } m.Width = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Width |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipTypedecl(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypedecl } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Kept) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Kept: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Kept: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthTypedecl } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Age", wireType) } m.Age = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedecl } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Age |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipTypedecl(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypedecl } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipTypedecl(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedecl } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedecl } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedecl } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthTypedecl } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedecl } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipTypedecl(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthTypedecl = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTypedecl = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("typedecl.proto", fileDescriptorTypedecl) } var fileDescriptorTypedecl = []byte{ // 242 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2b, 0xa9, 0x2c, 0x48, 0x4d, 0x49, 0x4d, 0xce, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x80, 0xf1, 0xa5, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xd3, 0xf3, 0xd3, 0xf3, 0xf5, 0xc1, 0x0a, 0x92, 0x4a, 0xd3, 0xc0, 0x3c, 0x30, 0x07, 0xcc, 0x82, 0x68, 0x54, 0x32, 0xe5, 0x62, 0x77, 0x29, 0xca, 0x2f, 0x28, 0x48, 0x4d, 0x11, 0x12, 0xe2, 0x62, 0xc9, 0x4b, 0xcc, 0x4d, 0x95, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x02, 0xb3, 0x85, 0x04, 0xb8, 0x98, 0x13, 0xd3, 0x53, 0x25, 0x98, 0x14, 0x18, 0x35, 0x58, 0x83, 0x40, 0x4c, 0x2b, 0x96, 0x0f, 0x0b, 0xe5, 0x19, 0x94, 0xfc, 0xb9, 0x44, 0xa1, 0xda, 0xc2, 0x33, 0x4b, 0x32, 0xf2, 0x4b, 0x4b, 0xdc, 0x53, 0x4b, 0x4a, 0x52, 0x8b, 0x8a, 0x85, 0xc4, 0xb8, 0xd8, 0x32, 0x52, 0x33, 0xd3, 0x33, 0x4a, 0xc0, 0xc6, 0x30, 0x07, 0x41, 0x79, 0x42, 0x22, 0x5c, 0xac, 0xe5, 0x99, 0x29, 0x25, 0x19, 0x60, 0xa3, 0x98, 0x83, 0x20, 0x1c, 0x2b, 0x8e, 0x8e, 0x05, 0xf2, 0x0c, 0x60, 0x03, 0x75, 0xb8, 0x58, 0xbc, 0x53, 0x0b, 0x4a, 0x88, 0x73, 0x84, 0x93, 0xc6, 0x83, 0x87, 0x72, 0x8c, 0x3f, 0x1e, 0xca, 0x31, 0xae, 0x78, 0x24, 0xc7, 0xb8, 0xe3, 0x91, 0x1c, 0xe3, 0x81, 0x47, 0x72, 0x8c, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x8f, 0x47, 0x72, 0x0c, 0x0d, 0x8f, 0xe5, 0x18, 0x92, 0xd8, 0xc0, 0xde, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xbe, 0xf8, 0x44, 0x8b, 0x31, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/typedecl/typedecl.proto000066400000000000000000000015151317075173200230350ustar00rootroot00000000000000syntax = "proto3"; package typedecl; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message Dropped { option (gogoproto.typedecl) = false; string name = 1; int32 age = 2; } message DroppedWithoutGetters { option (gogoproto.typedecl) = false; option (gogoproto.goproto_getters) = false; int64 height = 1; int64 width = 2; } message Kept { string name = 1; int32 age = 2; } golang-gogoprotobuf-0.5/test/typedecl/typedeclpb_test.go000066400000000000000000000461751317075173200236730ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: typedecl.proto /* Package typedecl is a generated protocol buffer package. It is generated from these files: typedecl.proto It has these top-level messages: Dropped DroppedWithoutGetters Kept */ package typedecl import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestDroppedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Dropped{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDroppedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Dropped{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDroppedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Dropped, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDropped(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDroppedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDropped(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Dropped{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDroppedWithoutGettersProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDroppedWithoutGettersMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDroppedWithoutGettersProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DroppedWithoutGetters, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDroppedWithoutGetters(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDroppedWithoutGettersProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDroppedWithoutGetters(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DroppedWithoutGetters{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestKeptProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Kept{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestKeptMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Kept{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkKeptProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Kept, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedKept(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkKeptProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedKept(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Kept{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDroppedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Dropped{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDroppedWithoutGettersJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DroppedWithoutGetters{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestKeptJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Kept{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDroppedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Dropped{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Dropped{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedWithoutGettersProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedWithoutGettersProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKeptProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Kept{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKeptProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Kept{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDropped(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Dropped{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDroppedWithoutGettersVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDroppedWithoutGetters(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestKeptVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKept(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Kept{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDroppedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDroppedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Dropped, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDropped(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDroppedWithoutGettersSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDroppedWithoutGettersSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DroppedWithoutGetters, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDroppedWithoutGetters(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestKeptSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkKeptSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Kept, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedKept(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/typedecl_all/000077500000000000000000000000001317075173200207655ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/typedecl_all/Makefile000066400000000000000000000002651317075173200224300ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. typedeclall.proto golang-gogoprotobuf-0.5/test/typedecl_all/models.go000066400000000000000000000013641317075173200226030ustar00rootroot00000000000000package typedeclall import ( "encoding/json" "github.com/gogo/protobuf/jsonpb" ) type Dropped struct { Name string Age int32 } func (d *Dropped) Drop() bool { return true } func (d *Dropped) UnmarshalJSONPB(u *jsonpb.Unmarshaler, b []byte) error { return json.Unmarshal(b, d) } func (d *Dropped) MarshalJSONPB(*jsonpb.Marshaler) ([]byte, error) { return json.Marshal(d) } type DroppedWithoutGetters struct { Width int64 Height int64 } func (d *DroppedWithoutGetters) GetHeight() int64 { return d.Height } func (d *DroppedWithoutGetters) UnmarshalJSONPB(u *jsonpb.Unmarshaler, b []byte) error { return json.Unmarshal(b, d) } func (d *DroppedWithoutGetters) MarshalJSONPB(*jsonpb.Marshaler) ([]byte, error) { return json.Marshal(d) } golang-gogoprotobuf-0.5/test/typedecl_all/typedeclall.pb.go000066400000000000000000000525131317075173200242240ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: typedeclall.proto /* Package typedeclall is a generated protocol buffer package. It is generated from these files: typedeclall.proto It has these top-level messages: Dropped DroppedWithoutGetters Kept */ package typedeclall import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package func (m *Dropped) Reset() { *m = Dropped{} } func (m *Dropped) String() string { return proto.CompactTextString(m) } func (*Dropped) ProtoMessage() {} func (*Dropped) Descriptor() ([]byte, []int) { return fileDescriptorTypedeclall, []int{0} } func (m *Dropped) GetName() string { if m != nil { return m.Name } return "" } func (m *Dropped) GetAge() int32 { if m != nil { return m.Age } return 0 } func (m *DroppedWithoutGetters) Reset() { *m = DroppedWithoutGetters{} } func (m *DroppedWithoutGetters) String() string { return proto.CompactTextString(m) } func (*DroppedWithoutGetters) ProtoMessage() {} func (*DroppedWithoutGetters) Descriptor() ([]byte, []int) { return fileDescriptorTypedeclall, []int{1} } type Kept struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Age int32 `protobuf:"varint,2,opt,name=age,proto3" json:"age,omitempty"` } func (m *Kept) Reset() { *m = Kept{} } func (m *Kept) String() string { return proto.CompactTextString(m) } func (*Kept) ProtoMessage() {} func (*Kept) Descriptor() ([]byte, []int) { return fileDescriptorTypedeclall, []int{2} } func (m *Kept) GetName() string { if m != nil { return m.Name } return "" } func (m *Kept) GetAge() int32 { if m != nil { return m.Age } return 0 } func init() { proto.RegisterType((*Dropped)(nil), "typedeclall.Dropped") proto.RegisterType((*DroppedWithoutGetters)(nil), "typedeclall.DroppedWithoutGetters") proto.RegisterType((*Kept)(nil), "typedeclall.Kept") } func (this *Dropped) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Dropped) if !ok { that2, ok := that.(Dropped) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Dropped") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Dropped but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Dropped but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Age != that1.Age { return fmt.Errorf("Age this(%v) Not Equal that(%v)", this.Age, that1.Age) } return nil } func (this *Dropped) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Dropped) if !ok { that2, ok := that.(Dropped) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Age != that1.Age { return false } return true } func (this *DroppedWithoutGetters) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*DroppedWithoutGetters) if !ok { that2, ok := that.(DroppedWithoutGetters) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *DroppedWithoutGetters") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *DroppedWithoutGetters but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *DroppedWithoutGetters but is not nil && this == nil") } if this.Height != that1.Height { return fmt.Errorf("Height this(%v) Not Equal that(%v)", this.Height, that1.Height) } if this.Width != that1.Width { return fmt.Errorf("Width this(%v) Not Equal that(%v)", this.Width, that1.Width) } return nil } func (this *DroppedWithoutGetters) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DroppedWithoutGetters) if !ok { that2, ok := that.(DroppedWithoutGetters) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Height != that1.Height { return false } if this.Width != that1.Width { return false } return true } func (this *Kept) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Kept) if !ok { that2, ok := that.(Kept) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Kept") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Kept but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Kept but is not nil && this == nil") } if this.Name != that1.Name { return fmt.Errorf("Name this(%v) Not Equal that(%v)", this.Name, that1.Name) } if this.Age != that1.Age { return fmt.Errorf("Age this(%v) Not Equal that(%v)", this.Age, that1.Age) } return nil } func (this *Kept) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Kept) if !ok { that2, ok := that.(Kept) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Name != that1.Name { return false } if this.Age != that1.Age { return false } return true } func (m *Dropped) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Dropped) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Name) > 0 { dAtA[i] = 0xa i++ i = encodeVarintTypedeclall(dAtA, i, uint64(len(m.Name))) i += copy(dAtA[i:], m.Name) } if m.Age != 0 { dAtA[i] = 0x10 i++ i = encodeVarintTypedeclall(dAtA, i, uint64(m.Age)) } return i, nil } func (m *DroppedWithoutGetters) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *DroppedWithoutGetters) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Height != 0 { dAtA[i] = 0x8 i++ i = encodeVarintTypedeclall(dAtA, i, uint64(m.Height)) } if m.Width != 0 { dAtA[i] = 0x10 i++ i = encodeVarintTypedeclall(dAtA, i, uint64(m.Width)) } return i, nil } func (m *Kept) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Kept) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Name) > 0 { dAtA[i] = 0xa i++ i = encodeVarintTypedeclall(dAtA, i, uint64(len(m.Name))) i += copy(dAtA[i:], m.Name) } if m.Age != 0 { dAtA[i] = 0x10 i++ i = encodeVarintTypedeclall(dAtA, i, uint64(m.Age)) } return i, nil } func encodeVarintTypedeclall(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedDropped(r randyTypedeclall, easy bool) *Dropped { this := &Dropped{} this.Name = string(randStringTypedeclall(r)) this.Age = int32(r.Int31()) if r.Intn(2) == 0 { this.Age *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedDroppedWithoutGetters(r randyTypedeclall, easy bool) *DroppedWithoutGetters { this := &DroppedWithoutGetters{} this.Height = int64(r.Int63()) if r.Intn(2) == 0 { this.Height *= -1 } this.Width = int64(r.Int63()) if r.Intn(2) == 0 { this.Width *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedKept(r randyTypedeclall, easy bool) *Kept { this := &Kept{} this.Name = string(randStringTypedeclall(r)) this.Age = int32(r.Int31()) if r.Intn(2) == 0 { this.Age *= -1 } if !easy && r.Intn(10) != 0 { } return this } type randyTypedeclall interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTypedeclall(r randyTypedeclall) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTypedeclall(r randyTypedeclall) string { v1 := r.Intn(100) tmps := make([]rune, v1) for i := 0; i < v1; i++ { tmps[i] = randUTF8RuneTypedeclall(r) } return string(tmps) } func randUnrecognizedTypedeclall(r randyTypedeclall, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTypedeclall(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTypedeclall(dAtA []byte, r randyTypedeclall, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTypedeclall(dAtA, uint64(key)) v2 := r.Int63() if r.Intn(2) == 0 { v2 *= -1 } dAtA = encodeVarintPopulateTypedeclall(dAtA, uint64(v2)) case 1: dAtA = encodeVarintPopulateTypedeclall(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTypedeclall(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTypedeclall(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTypedeclall(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTypedeclall(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Dropped) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovTypedeclall(uint64(l)) } if m.Age != 0 { n += 1 + sovTypedeclall(uint64(m.Age)) } return n } func (m *DroppedWithoutGetters) Size() (n int) { var l int _ = l if m.Height != 0 { n += 1 + sovTypedeclall(uint64(m.Height)) } if m.Width != 0 { n += 1 + sovTypedeclall(uint64(m.Width)) } return n } func (m *Kept) Size() (n int) { var l int _ = l l = len(m.Name) if l > 0 { n += 1 + l + sovTypedeclall(uint64(l)) } if m.Age != 0 { n += 1 + sovTypedeclall(uint64(m.Age)) } return n } func sovTypedeclall(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTypedeclall(x uint64) (n int) { return sovTypedeclall(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Dropped) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Dropped: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Dropped: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthTypedeclall } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Age", wireType) } m.Age = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Age |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipTypedeclall(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypedeclall } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *DroppedWithoutGetters) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: DroppedWithoutGetters: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: DroppedWithoutGetters: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Height", wireType) } m.Height = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Height |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Width", wireType) } m.Width = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Width |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipTypedeclall(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypedeclall } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Kept) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Kept: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Kept: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthTypedeclall } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Age", wireType) } m.Age = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclall } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Age |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipTypedeclall(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypedeclall } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipTypedeclall(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedeclall } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedeclall } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedeclall } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthTypedeclall } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedeclall } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipTypedeclall(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthTypedeclall = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTypedeclall = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("typedeclall.proto", fileDescriptorTypedeclall) } var fileDescriptorTypedeclall = []byte{ // 248 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2c, 0xa9, 0x2c, 0x48, 0x4d, 0x49, 0x4d, 0xce, 0x49, 0xcc, 0xc9, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x46, 0x12, 0x92, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0xab, 0x49, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0xa2, 0x57, 0x49, 0x9f, 0x8b, 0xdd, 0xa5, 0x28, 0xbf, 0xa0, 0x20, 0x35, 0x45, 0x48, 0x88, 0x8b, 0x25, 0x2f, 0x31, 0x37, 0x55, 0x82, 0x51, 0x81, 0x51, 0x83, 0x33, 0x08, 0xcc, 0x16, 0x12, 0xe0, 0x62, 0x4e, 0x4c, 0x4f, 0x95, 0x60, 0x52, 0x60, 0xd4, 0x60, 0x0d, 0x02, 0x31, 0x95, 0xbc, 0xb9, 0x44, 0xa1, 0x1a, 0xc2, 0x33, 0x4b, 0x32, 0xf2, 0x4b, 0x4b, 0xdc, 0x53, 0x4b, 0x4a, 0x52, 0x8b, 0x8a, 0x85, 0xc4, 0xb8, 0xd8, 0x32, 0x52, 0x33, 0xd3, 0x33, 0x4a, 0xc0, 0x06, 0x30, 0x07, 0x41, 0x79, 0x42, 0x22, 0x5c, 0xac, 0xe5, 0x99, 0x29, 0x25, 0x19, 0x60, 0x43, 0x98, 0x83, 0x20, 0x1c, 0x2b, 0x96, 0x8e, 0x05, 0xf2, 0x0c, 0x4a, 0x46, 0x5c, 0x2c, 0xde, 0xa9, 0x05, 0x25, 0xc4, 0x59, 0x6d, 0xc5, 0xf2, 0x61, 0xa1, 0x3c, 0xa3, 0x93, 0xce, 0x83, 0x87, 0x72, 0x8c, 0x3f, 0x1e, 0xca, 0x31, 0xae, 0x78, 0x24, 0xc7, 0xb8, 0xe3, 0x91, 0x1c, 0xe3, 0x81, 0x47, 0x72, 0x8c, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x8f, 0x47, 0x72, 0x0c, 0x0d, 0x8f, 0xe5, 0x18, 0x36, 0x3c, 0x96, 0x63, 0x48, 0x62, 0x03, 0x7b, 0xd3, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xc0, 0xcd, 0x29, 0x18, 0x37, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/typedecl_all/typedeclall.proto000066400000000000000000000015171317075173200243600ustar00rootroot00000000000000syntax = "proto3"; package typedeclall; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; option (gogoproto.typedecl_all) = false; message Dropped { string name = 1; int32 age = 2; } message DroppedWithoutGetters { option (gogoproto.goproto_getters) = false; int64 height = 1; int64 width = 2; } message Kept { option (gogoproto.typedecl) = true; string name = 1; int32 age = 2; } golang-gogoprotobuf-0.5/test/typedecl_all/typedeclallpb_test.go000066400000000000000000000462111317075173200252030ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: typedeclall.proto /* Package typedeclall is a generated protocol buffer package. It is generated from these files: typedeclall.proto It has these top-level messages: Dropped DroppedWithoutGetters Kept */ package typedeclall import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestDroppedProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Dropped{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDroppedMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Dropped{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDroppedProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Dropped, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDropped(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDroppedProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDropped(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Dropped{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDroppedWithoutGettersProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDroppedWithoutGettersMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkDroppedWithoutGettersProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DroppedWithoutGetters, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedDroppedWithoutGetters(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkDroppedWithoutGettersProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedDroppedWithoutGetters(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &DroppedWithoutGetters{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestKeptProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Kept{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestKeptMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Kept{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkKeptProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Kept, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedKept(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkKeptProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedKept(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Kept{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestDroppedJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Dropped{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDroppedWithoutGettersJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &DroppedWithoutGetters{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestKeptJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Kept{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDroppedProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Dropped{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Dropped{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedWithoutGettersProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedWithoutGettersProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKeptProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Kept{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKeptProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Kept{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDroppedVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDropped(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Dropped{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDroppedWithoutGettersVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedDroppedWithoutGetters(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &DroppedWithoutGetters{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestKeptVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKept(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Kept{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDroppedSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDropped(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDroppedSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Dropped, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDropped(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestDroppedWithoutGettersSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedDroppedWithoutGetters(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkDroppedWithoutGettersSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*DroppedWithoutGetters, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedDroppedWithoutGetters(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestKeptSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKept(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkKeptSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Kept, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedKept(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/typedeclimport/000077500000000000000000000000001317075173200213705ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/typedeclimport/Makefile000066400000000000000000000004571317075173200230360ustar00rootroot00000000000000regenerate: go install github.com/gogo/protobuf/protoc-gen-gogo protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. typedeclimport.proto protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. ./subpkg/subpkg.protogolang-gogoprotobuf-0.5/test/typedeclimport/models.go000066400000000000000000000002311317075173200231760ustar00rootroot00000000000000package typedeclimport import subpkg "github.com/gogo/protobuf/test/typedeclimport/subpkg" type SomeMessage struct { Imported subpkg.AnotherMessage } golang-gogoprotobuf-0.5/test/typedeclimport/subpkg/000077500000000000000000000000001317075173200226635ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/typedeclimport/subpkg/subpkg.pb.go000066400000000000000000000213541317075173200251120ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: subpkg/subpkg.proto /* Package subpkg is a generated protocol buffer package. It is generated from these files: subpkg/subpkg.proto It has these top-level messages: AnotherMessage */ package subpkg import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type AnotherMessage struct { Foo string `protobuf:"bytes,1,opt,name=foo,proto3" json:"foo,omitempty"` } func (m *AnotherMessage) Reset() { *m = AnotherMessage{} } func (m *AnotherMessage) String() string { return proto.CompactTextString(m) } func (*AnotherMessage) ProtoMessage() {} func (*AnotherMessage) Descriptor() ([]byte, []int) { return fileDescriptorSubpkg, []int{0} } func (m *AnotherMessage) GetFoo() string { if m != nil { return m.Foo } return "" } func init() { proto.RegisterType((*AnotherMessage)(nil), "subpkg.AnotherMessage") } func (this *AnotherMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*AnotherMessage) if !ok { that2, ok := that.(AnotherMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *AnotherMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *AnotherMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *AnotherMessage but is not nil && this == nil") } if this.Foo != that1.Foo { return fmt.Errorf("Foo this(%v) Not Equal that(%v)", this.Foo, that1.Foo) } return nil } func (this *AnotherMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*AnotherMessage) if !ok { that2, ok := that.(AnotherMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Foo != that1.Foo { return false } return true } func (m *AnotherMessage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *AnotherMessage) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Foo) > 0 { dAtA[i] = 0xa i++ i = encodeVarintSubpkg(dAtA, i, uint64(len(m.Foo))) i += copy(dAtA[i:], m.Foo) } return i, nil } func encodeFixed64Subpkg(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) dAtA[offset+1] = uint8(v >> 8) dAtA[offset+2] = uint8(v >> 16) dAtA[offset+3] = uint8(v >> 24) dAtA[offset+4] = uint8(v >> 32) dAtA[offset+5] = uint8(v >> 40) dAtA[offset+6] = uint8(v >> 48) dAtA[offset+7] = uint8(v >> 56) return offset + 8 } func encodeFixed32Subpkg(dAtA []byte, offset int, v uint32) int { dAtA[offset] = uint8(v) dAtA[offset+1] = uint8(v >> 8) dAtA[offset+2] = uint8(v >> 16) dAtA[offset+3] = uint8(v >> 24) return offset + 4 } func encodeVarintSubpkg(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *AnotherMessage) Size() (n int) { var l int _ = l l = len(m.Foo) if l > 0 { n += 1 + l + sovSubpkg(uint64(l)) } return n } func sovSubpkg(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozSubpkg(x uint64) (n int) { return sovSubpkg(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *AnotherMessage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowSubpkg } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: AnotherMessage: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: AnotherMessage: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Foo", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowSubpkg } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthSubpkg } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Foo = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipSubpkg(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthSubpkg } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipSubpkg(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowSubpkg } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowSubpkg } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowSubpkg } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthSubpkg } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowSubpkg } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipSubpkg(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthSubpkg = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowSubpkg = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("subpkg/subpkg.proto", fileDescriptorSubpkg) } var fileDescriptorSubpkg = []byte{ // 137 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2e, 0x2e, 0x4d, 0x2a, 0xc8, 0x4e, 0xd7, 0x87, 0x50, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0x6c, 0x10, 0x9e, 0x94, 0x6e, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x7a, 0x7e, 0x7a, 0xbe, 0x3e, 0x58, 0x3a, 0xa9, 0x34, 0x0d, 0xcc, 0x03, 0x73, 0xc0, 0x2c, 0x88, 0x36, 0x25, 0x25, 0x2e, 0x3e, 0xc7, 0xbc, 0xfc, 0x92, 0x8c, 0xd4, 0x22, 0xdf, 0xd4, 0xe2, 0xe2, 0xc4, 0xf4, 0x54, 0x21, 0x01, 0x2e, 0xe6, 0xb4, 0xfc, 0x7c, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x10, 0xd3, 0x49, 0xe4, 0xc1, 0x43, 0x39, 0xc6, 0x15, 0x8f, 0xe4, 0x18, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x24, 0x36, 0xb0, 0x01, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x37, 0x5d, 0xf6, 0x73, 0x8e, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/typedeclimport/subpkg/subpkg.proto000066400000000000000000000005301317075173200252410ustar00rootroot00000000000000syntax = "proto3"; package subpkg; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.marshaler_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; message AnotherMessage { string foo = 1; }golang-gogoprotobuf-0.5/test/typedeclimport/typedeclimport.pb.go000066400000000000000000000224241317075173200253670ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: typedeclimport.proto /* Package typedeclimport is a generated protocol buffer package. It is generated from these files: typedeclimport.proto It has these top-level messages: SomeMessage */ package typedeclimport import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import subpkg "github.com/gogo/protobuf/test/typedeclimport/subpkg" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package func (m *SomeMessage) Reset() { *m = SomeMessage{} } func (m *SomeMessage) String() string { return proto.CompactTextString(m) } func (*SomeMessage) ProtoMessage() {} func (*SomeMessage) Descriptor() ([]byte, []int) { return fileDescriptorTypedeclimport, []int{0} } func (m *SomeMessage) GetImported() subpkg.AnotherMessage { if m != nil { return m.Imported } return subpkg.AnotherMessage{} } func init() { proto.RegisterType((*SomeMessage)(nil), "typedeclimport.SomeMessage") } func (this *SomeMessage) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*SomeMessage) if !ok { that2, ok := that.(SomeMessage) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *SomeMessage") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *SomeMessage but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *SomeMessage but is not nil && this == nil") } if !this.Imported.Equal(&that1.Imported) { return fmt.Errorf("Imported this(%v) Not Equal that(%v)", this.Imported, that1.Imported) } return nil } func (this *SomeMessage) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*SomeMessage) if !ok { that2, ok := that.(SomeMessage) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Imported.Equal(&that1.Imported) { return false } return true } func (m *SomeMessage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *SomeMessage) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintTypedeclimport(dAtA, i, uint64(m.Imported.Size())) n1, err := m.Imported.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 return i, nil } func encodeFixed64Typedeclimport(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) dAtA[offset+1] = uint8(v >> 8) dAtA[offset+2] = uint8(v >> 16) dAtA[offset+3] = uint8(v >> 24) dAtA[offset+4] = uint8(v >> 32) dAtA[offset+5] = uint8(v >> 40) dAtA[offset+6] = uint8(v >> 48) dAtA[offset+7] = uint8(v >> 56) return offset + 8 } func encodeFixed32Typedeclimport(dAtA []byte, offset int, v uint32) int { dAtA[offset] = uint8(v) dAtA[offset+1] = uint8(v >> 8) dAtA[offset+2] = uint8(v >> 16) dAtA[offset+3] = uint8(v >> 24) return offset + 4 } func encodeVarintTypedeclimport(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *SomeMessage) Size() (n int) { var l int _ = l l = m.Imported.Size() n += 1 + l + sovTypedeclimport(uint64(l)) return n } func sovTypedeclimport(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTypedeclimport(x uint64) (n int) { return sovTypedeclimport(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *SomeMessage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclimport } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: SomeMessage: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: SomeMessage: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Imported", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypedeclimport } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypedeclimport } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Imported.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypedeclimport(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypedeclimport } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipTypedeclimport(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedeclimport } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedeclimport } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedeclimport } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthTypedeclimport } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypedeclimport } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipTypedeclimport(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthTypedeclimport = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTypedeclimport = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("typedeclimport.proto", fileDescriptorTypedeclimport) } var fileDescriptorTypedeclimport = []byte{ // 189 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x29, 0xa9, 0x2c, 0x48, 0x4d, 0x49, 0x4d, 0xce, 0xc9, 0xcc, 0x2d, 0xc8, 0x2f, 0x2a, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x43, 0x15, 0x95, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0x2b, 0x4b, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0xa2, 0x5d, 0xca, 0x01, 0xa7, 0xf2, 0x92, 0xd4, 0xe2, 0x12, 0x7d, 0x54, 0xc3, 0xf5, 0x8b, 0x4b, 0x93, 0x0a, 0xb2, 0xd3, 0xa1, 0x14, 0xc4, 0x04, 0x25, 0x5f, 0x2e, 0xee, 0xe0, 0xfc, 0xdc, 0x54, 0xdf, 0xd4, 0xe2, 0xe2, 0xc4, 0xf4, 0x54, 0x21, 0x0b, 0x2e, 0x0e, 0x88, 0xe2, 0xd4, 0x14, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x31, 0x3d, 0xa8, 0x7a, 0xc7, 0xbc, 0xfc, 0x92, 0x8c, 0xd4, 0x22, 0xa8, 0x4a, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xe0, 0xaa, 0xad, 0x58, 0x3e, 0x2c, 0x94, 0x67, 0x70, 0x12, 0x79, 0xf0, 0x50, 0x8e, 0x71, 0xc5, 0x23, 0x39, 0xc6, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x31, 0x89, 0x0d, 0x6c, 0x97, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x54, 0x23, 0xca, 0x44, 0x04, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/typedeclimport/typedeclimport.proto000066400000000000000000000010051317075173200255150ustar00rootroot00000000000000syntax = "proto3"; package typedeclimport; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; import "github.com/gogo/protobuf/test/typedeclimport/subpkg/subpkg.proto"; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; message SomeMessage { option (gogoproto.typedecl) = false; subpkg.AnotherMessage imported = 1 [(gogoproto.nullable) = false]; }golang-gogoprotobuf-0.5/test/typedeclimport/typedeclimport_test.go000066400000000000000000000002071317075173200260210ustar00rootroot00000000000000package typedeclimport import "testing" func Test(t *testing.T) { // No need to do anything, if this test runs, it means it works } golang-gogoprotobuf-0.5/test/types/000077500000000000000000000000001317075173200174705ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/types/Makefile000066400000000000000000000040141317075173200211270ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2016, 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-combo go install github.com/gogo/protobuf/protoc-gen-gogo protoc-gen-combo --version="3.0.0" --gogo_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:. \ --proto_path=../../../../../:../../protobuf/:. types.proto find combos -type d -not -name combos -exec cp types_test.go.in {}/types_test.go \; golang-gogoprotobuf-0.5/test/types/combos/000077500000000000000000000000001317075173200207525ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/types/combos/both/000077500000000000000000000000001317075173200217065ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/types/combos/both/types.pb.go000066400000000000000000004426611317075173200240160ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/types.proto /* Package types is a generated protocol buffer package. It is generated from these files: combos/both/types.proto It has these top-level messages: KnownTypes ProtoTypes StdTypes RepProtoTypes RepStdTypes MapProtoTypes MapStdTypes OneofProtoTypes OneofStdTypes */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import google_protobuf1 "github.com/gogo/protobuf/types" import google_protobuf2 "github.com/gogo/protobuf/types" import google_protobuf3 "github.com/gogo/protobuf/types" import time "time" import github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf var _ = time.Kitchen // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type KnownTypes struct { Dur *google_protobuf1.Duration `protobuf:"bytes,1,opt,name=dur" json:"dur,omitempty"` Ts *google_protobuf2.Timestamp `protobuf:"bytes,2,opt,name=ts" json:"ts,omitempty"` Dbl *google_protobuf3.DoubleValue `protobuf:"bytes,3,opt,name=dbl" json:"dbl,omitempty"` Flt *google_protobuf3.FloatValue `protobuf:"bytes,4,opt,name=flt" json:"flt,omitempty"` I64 *google_protobuf3.Int64Value `protobuf:"bytes,5,opt,name=i64" json:"i64,omitempty"` U64 *google_protobuf3.UInt64Value `protobuf:"bytes,6,opt,name=u64" json:"u64,omitempty"` I32 *google_protobuf3.Int32Value `protobuf:"bytes,7,opt,name=i32" json:"i32,omitempty"` U32 *google_protobuf3.UInt32Value `protobuf:"bytes,8,opt,name=u32" json:"u32,omitempty"` Bool *google_protobuf3.BoolValue `protobuf:"bytes,9,opt,name=bool" json:"bool,omitempty"` Str *google_protobuf3.StringValue `protobuf:"bytes,10,opt,name=str" json:"str,omitempty"` Bytes *google_protobuf3.BytesValue `protobuf:"bytes,11,opt,name=bytes" json:"bytes,omitempty"` } func (m *KnownTypes) Reset() { *m = KnownTypes{} } func (m *KnownTypes) String() string { return proto.CompactTextString(m) } func (*KnownTypes) ProtoMessage() {} func (*KnownTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{0} } func (m *KnownTypes) GetDur() *google_protobuf1.Duration { if m != nil { return m.Dur } return nil } func (m *KnownTypes) GetTs() *google_protobuf2.Timestamp { if m != nil { return m.Ts } return nil } func (m *KnownTypes) GetDbl() *google_protobuf3.DoubleValue { if m != nil { return m.Dbl } return nil } func (m *KnownTypes) GetFlt() *google_protobuf3.FloatValue { if m != nil { return m.Flt } return nil } func (m *KnownTypes) GetI64() *google_protobuf3.Int64Value { if m != nil { return m.I64 } return nil } func (m *KnownTypes) GetU64() *google_protobuf3.UInt64Value { if m != nil { return m.U64 } return nil } func (m *KnownTypes) GetI32() *google_protobuf3.Int32Value { if m != nil { return m.I32 } return nil } func (m *KnownTypes) GetU32() *google_protobuf3.UInt32Value { if m != nil { return m.U32 } return nil } func (m *KnownTypes) GetBool() *google_protobuf3.BoolValue { if m != nil { return m.Bool } return nil } func (m *KnownTypes) GetStr() *google_protobuf3.StringValue { if m != nil { return m.Str } return nil } func (m *KnownTypes) GetBytes() *google_protobuf3.BytesValue { if m != nil { return m.Bytes } return nil } type ProtoTypes struct { NullableTimestamp *google_protobuf2.Timestamp `protobuf:"bytes,1,opt,name=nullableTimestamp" json:"nullableTimestamp,omitempty"` NullableDuration *google_protobuf1.Duration `protobuf:"bytes,2,opt,name=nullableDuration" json:"nullableDuration,omitempty"` Timestamp google_protobuf2.Timestamp `protobuf:"bytes,3,opt,name=timestamp" json:"timestamp"` Duration google_protobuf1.Duration `protobuf:"bytes,4,opt,name=duration" json:"duration"` } func (m *ProtoTypes) Reset() { *m = ProtoTypes{} } func (m *ProtoTypes) String() string { return proto.CompactTextString(m) } func (*ProtoTypes) ProtoMessage() {} func (*ProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{1} } func (m *ProtoTypes) GetNullableTimestamp() *google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamp } return nil } func (m *ProtoTypes) GetNullableDuration() *google_protobuf1.Duration { if m != nil { return m.NullableDuration } return nil } func (m *ProtoTypes) GetTimestamp() google_protobuf2.Timestamp { if m != nil { return m.Timestamp } return google_protobuf2.Timestamp{} } func (m *ProtoTypes) GetDuration() google_protobuf1.Duration { if m != nil { return m.Duration } return google_protobuf1.Duration{} } type StdTypes struct { NullableTimestamp *time.Time `protobuf:"bytes,1,opt,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty"` NullableDuration *time.Duration `protobuf:"bytes,2,opt,name=nullableDuration,stdduration" json:"nullableDuration,omitempty"` Timestamp time.Time `protobuf:"bytes,3,opt,name=timestamp,stdtime" json:"timestamp"` Duration time.Duration `protobuf:"bytes,4,opt,name=duration,stdduration" json:"duration"` } func (m *StdTypes) Reset() { *m = StdTypes{} } func (m *StdTypes) String() string { return proto.CompactTextString(m) } func (*StdTypes) ProtoMessage() {} func (*StdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{2} } func (m *StdTypes) GetNullableTimestamp() *time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *StdTypes) GetNullableDuration() *time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *StdTypes) GetTimestamp() time.Time { if m != nil { return m.Timestamp } return time.Time{} } func (m *StdTypes) GetDuration() time.Duration { if m != nil { return m.Duration } return 0 } type RepProtoTypes struct { NullableTimestamps []*google_protobuf2.Timestamp `protobuf:"bytes,1,rep,name=nullableTimestamps" json:"nullableTimestamps,omitempty"` NullableDurations []*google_protobuf1.Duration `protobuf:"bytes,2,rep,name=nullableDurations" json:"nullableDurations,omitempty"` Timestamps []google_protobuf2.Timestamp `protobuf:"bytes,3,rep,name=timestamps" json:"timestamps"` Durations []google_protobuf1.Duration `protobuf:"bytes,4,rep,name=durations" json:"durations"` } func (m *RepProtoTypes) Reset() { *m = RepProtoTypes{} } func (m *RepProtoTypes) String() string { return proto.CompactTextString(m) } func (*RepProtoTypes) ProtoMessage() {} func (*RepProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{3} } func (m *RepProtoTypes) GetNullableTimestamps() []*google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamps } return nil } func (m *RepProtoTypes) GetNullableDurations() []*google_protobuf1.Duration { if m != nil { return m.NullableDurations } return nil } func (m *RepProtoTypes) GetTimestamps() []google_protobuf2.Timestamp { if m != nil { return m.Timestamps } return nil } func (m *RepProtoTypes) GetDurations() []google_protobuf1.Duration { if m != nil { return m.Durations } return nil } type RepStdTypes struct { NullableTimestamps []*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamps,stdtime" json:"nullableTimestamps,omitempty"` NullableDurations []*time.Duration `protobuf:"bytes,2,rep,name=nullableDurations,stdduration" json:"nullableDurations,omitempty"` Timestamps []time.Time `protobuf:"bytes,3,rep,name=timestamps,stdtime" json:"timestamps"` Durations []time.Duration `protobuf:"bytes,4,rep,name=durations,stdduration" json:"durations"` } func (m *RepStdTypes) Reset() { *m = RepStdTypes{} } func (m *RepStdTypes) String() string { return proto.CompactTextString(m) } func (*RepStdTypes) ProtoMessage() {} func (*RepStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{4} } func (m *RepStdTypes) GetNullableTimestamps() []*time.Time { if m != nil { return m.NullableTimestamps } return nil } func (m *RepStdTypes) GetNullableDurations() []*time.Duration { if m != nil { return m.NullableDurations } return nil } func (m *RepStdTypes) GetTimestamps() []time.Time { if m != nil { return m.Timestamps } return nil } func (m *RepStdTypes) GetDurations() []time.Duration { if m != nil { return m.Durations } return nil } type MapProtoTypes struct { NullableTimestamp map[int32]*google_protobuf2.Timestamp `protobuf:"bytes,1,rep,name=nullableTimestamp" json:"nullableTimestamp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Timestamp map[int32]google_protobuf2.Timestamp `protobuf:"bytes,2,rep,name=timestamp" json:"timestamp" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` NullableDuration map[int32]*google_protobuf1.Duration `protobuf:"bytes,3,rep,name=nullableDuration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Duration map[int32]google_protobuf1.Duration `protobuf:"bytes,4,rep,name=duration" json:"duration" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapProtoTypes) Reset() { *m = MapProtoTypes{} } func (m *MapProtoTypes) String() string { return proto.CompactTextString(m) } func (*MapProtoTypes) ProtoMessage() {} func (*MapProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{5} } func (m *MapProtoTypes) GetNullableTimestamp() map[int32]*google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamp } return nil } func (m *MapProtoTypes) GetTimestamp() map[int32]google_protobuf2.Timestamp { if m != nil { return m.Timestamp } return nil } func (m *MapProtoTypes) GetNullableDuration() map[int32]*google_protobuf1.Duration { if m != nil { return m.NullableDuration } return nil } func (m *MapProtoTypes) GetDuration() map[int32]google_protobuf1.Duration { if m != nil { return m.Duration } return nil } type MapStdTypes struct { NullableTimestamp map[int32]*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Timestamp map[int32]time.Time `protobuf:"bytes,2,rep,name=timestamp,stdtime" json:"timestamp" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` NullableDuration map[int32]*time.Duration `protobuf:"bytes,3,rep,name=nullableDuration,stdduration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Duration map[int32]time.Duration `protobuf:"bytes,4,rep,name=duration,stdduration" json:"duration" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapStdTypes) Reset() { *m = MapStdTypes{} } func (m *MapStdTypes) String() string { return proto.CompactTextString(m) } func (*MapStdTypes) ProtoMessage() {} func (*MapStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{6} } func (m *MapStdTypes) GetNullableTimestamp() map[int32]*time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *MapStdTypes) GetTimestamp() map[int32]time.Time { if m != nil { return m.Timestamp } return nil } func (m *MapStdTypes) GetNullableDuration() map[int32]*time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *MapStdTypes) GetDuration() map[int32]time.Duration { if m != nil { return m.Duration } return nil } type OneofProtoTypes struct { // Types that are valid to be assigned to OneOfProtoTimes: // *OneofProtoTypes_Timestamp // *OneofProtoTypes_Duration OneOfProtoTimes isOneofProtoTypes_OneOfProtoTimes `protobuf_oneof:"OneOfProtoTimes"` } func (m *OneofProtoTypes) Reset() { *m = OneofProtoTypes{} } func (m *OneofProtoTypes) String() string { return proto.CompactTextString(m) } func (*OneofProtoTypes) ProtoMessage() {} func (*OneofProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{7} } type isOneofProtoTypes_OneOfProtoTimes interface { isOneofProtoTypes_OneOfProtoTimes() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type OneofProtoTypes_Timestamp struct { Timestamp *google_protobuf2.Timestamp `protobuf:"bytes,1,opt,name=timestamp,oneof"` } type OneofProtoTypes_Duration struct { Duration *google_protobuf1.Duration `protobuf:"bytes,2,opt,name=duration,oneof"` } func (*OneofProtoTypes_Timestamp) isOneofProtoTypes_OneOfProtoTimes() {} func (*OneofProtoTypes_Duration) isOneofProtoTypes_OneOfProtoTimes() {} func (m *OneofProtoTypes) GetOneOfProtoTimes() isOneofProtoTypes_OneOfProtoTimes { if m != nil { return m.OneOfProtoTimes } return nil } func (m *OneofProtoTypes) GetTimestamp() *google_protobuf2.Timestamp { if x, ok := m.GetOneOfProtoTimes().(*OneofProtoTypes_Timestamp); ok { return x.Timestamp } return nil } func (m *OneofProtoTypes) GetDuration() *google_protobuf1.Duration { if x, ok := m.GetOneOfProtoTimes().(*OneofProtoTypes_Duration); ok { return x.Duration } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofProtoTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofProtoTypes_OneofMarshaler, _OneofProtoTypes_OneofUnmarshaler, _OneofProtoTypes_OneofSizer, []interface{}{ (*OneofProtoTypes_Timestamp)(nil), (*OneofProtoTypes_Duration)(nil), } } func _OneofProtoTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofProtoTypes) // OneOfProtoTimes switch x := m.OneOfProtoTimes.(type) { case *OneofProtoTypes_Timestamp: _ = b.EncodeVarint(1<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Timestamp); err != nil { return err } case *OneofProtoTypes_Duration: _ = b.EncodeVarint(2<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Duration); err != nil { return err } case nil: default: return fmt.Errorf("OneofProtoTypes.OneOfProtoTimes has unexpected type %T", x) } return nil } func _OneofProtoTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofProtoTypes) switch tag { case 1: // OneOfProtoTimes.timestamp if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(google_protobuf2.Timestamp) err := b.DecodeMessage(msg) m.OneOfProtoTimes = &OneofProtoTypes_Timestamp{msg} return true, err case 2: // OneOfProtoTimes.duration if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(google_protobuf1.Duration) err := b.DecodeMessage(msg) m.OneOfProtoTimes = &OneofProtoTypes_Duration{msg} return true, err default: return false, nil } } func _OneofProtoTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofProtoTypes) // OneOfProtoTimes switch x := m.OneOfProtoTimes.(type) { case *OneofProtoTypes_Timestamp: s := proto.Size(x.Timestamp) n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *OneofProtoTypes_Duration: s := proto.Size(x.Duration) n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type OneofStdTypes struct { // Types that are valid to be assigned to OneOfStdTimes: // *OneofStdTypes_Timestamp // *OneofStdTypes_Duration OneOfStdTimes isOneofStdTypes_OneOfStdTimes `protobuf_oneof:"OneOfStdTimes"` } func (m *OneofStdTypes) Reset() { *m = OneofStdTypes{} } func (m *OneofStdTypes) String() string { return proto.CompactTextString(m) } func (*OneofStdTypes) ProtoMessage() {} func (*OneofStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{8} } type isOneofStdTypes_OneOfStdTimes interface { isOneofStdTypes_OneOfStdTimes() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type OneofStdTypes_Timestamp struct { Timestamp *time.Time `protobuf:"bytes,1,opt,name=timestamp,oneof,stdtime"` } type OneofStdTypes_Duration struct { Duration *time.Duration `protobuf:"bytes,2,opt,name=duration,oneof,stdduration"` } func (*OneofStdTypes_Timestamp) isOneofStdTypes_OneOfStdTimes() {} func (*OneofStdTypes_Duration) isOneofStdTypes_OneOfStdTimes() {} func (m *OneofStdTypes) GetOneOfStdTimes() isOneofStdTypes_OneOfStdTimes { if m != nil { return m.OneOfStdTimes } return nil } func (m *OneofStdTypes) GetTimestamp() *time.Time { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Timestamp); ok { return x.Timestamp } return nil } func (m *OneofStdTypes) GetDuration() *time.Duration { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Duration); ok { return x.Duration } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofStdTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofStdTypes_OneofMarshaler, _OneofStdTypes_OneofUnmarshaler, _OneofStdTypes_OneofSizer, []interface{}{ (*OneofStdTypes_Timestamp)(nil), (*OneofStdTypes_Duration)(nil), } } func _OneofStdTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: _ = b.EncodeVarint(1<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdTimeMarshal(*x.Timestamp) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case *OneofStdTypes_Duration: _ = b.EncodeVarint(2<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdDurationMarshal(*x.Duration) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case nil: default: return fmt.Errorf("OneofStdTypes.OneOfStdTimes has unexpected type %T", x) } return nil } func _OneofStdTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofStdTypes) switch tag { case 1: // OneOfStdTimes.timestamp if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Time) if err2 := github_com_gogo_protobuf_types.StdTimeUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Timestamp{c} return true, err case 2: // OneOfStdTimes.duration if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Duration) if err2 := github_com_gogo_protobuf_types.StdDurationUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Duration{c} return true, err default: return false, nil } } func _OneofStdTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: s := github_com_gogo_protobuf_types.SizeOfStdTime(*x.Timestamp) n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *OneofStdTypes_Duration: s := github_com_gogo_protobuf_types.SizeOfStdDuration(*x.Duration) n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*KnownTypes)(nil), "types.KnownTypes") proto.RegisterType((*ProtoTypes)(nil), "types.ProtoTypes") proto.RegisterType((*StdTypes)(nil), "types.StdTypes") proto.RegisterType((*RepProtoTypes)(nil), "types.RepProtoTypes") proto.RegisterType((*RepStdTypes)(nil), "types.RepStdTypes") proto.RegisterType((*MapProtoTypes)(nil), "types.MapProtoTypes") proto.RegisterType((*MapStdTypes)(nil), "types.MapStdTypes") proto.RegisterType((*OneofProtoTypes)(nil), "types.OneofProtoTypes") proto.RegisterType((*OneofStdTypes)(nil), "types.OneofStdTypes") } func (this *KnownTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Dur.Compare(that1.Dur); c != 0 { return c } if c := this.Ts.Compare(that1.Ts); c != 0 { return c } if c := this.Dbl.Compare(that1.Dbl); c != 0 { return c } if c := this.Flt.Compare(that1.Flt); c != 0 { return c } if c := this.I64.Compare(that1.I64); c != 0 { return c } if c := this.U64.Compare(that1.U64); c != 0 { return c } if c := this.I32.Compare(that1.I32); c != 0 { return c } if c := this.U32.Compare(that1.U32); c != 0 { return c } if c := this.Bool.Compare(that1.Bool); c != 0 { return c } if c := this.Str.Compare(that1.Str); c != 0 { return c } if c := this.Bytes.Compare(that1.Bytes); c != 0 { return c } return 0 } func (this *ProtoTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NullableTimestamp.Compare(that1.NullableTimestamp); c != 0 { return c } if c := this.NullableDuration.Compare(that1.NullableDuration); c != 0 { return c } if c := this.Timestamp.Compare(&that1.Timestamp); c != 0 { return c } if c := this.Duration.Compare(&that1.Duration); c != 0 { return c } return 0 } func (this *RepProtoTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { if len(this.NullableTimestamps) < len(that1.NullableTimestamps) { return -1 } return 1 } for i := range this.NullableTimestamps { if c := this.NullableTimestamps[i].Compare(that1.NullableTimestamps[i]); c != 0 { return c } } if len(this.NullableDurations) != len(that1.NullableDurations) { if len(this.NullableDurations) < len(that1.NullableDurations) { return -1 } return 1 } for i := range this.NullableDurations { if c := this.NullableDurations[i].Compare(that1.NullableDurations[i]); c != 0 { return c } } if len(this.Timestamps) != len(that1.Timestamps) { if len(this.Timestamps) < len(that1.Timestamps) { return -1 } return 1 } for i := range this.Timestamps { if c := this.Timestamps[i].Compare(&that1.Timestamps[i]); c != 0 { return c } } if len(this.Durations) != len(that1.Durations) { if len(this.Durations) < len(that1.Durations) { return -1 } return 1 } for i := range this.Durations { if c := this.Durations[i].Compare(&that1.Durations[i]); c != 0 { return c } } return 0 } func (this *KnownTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *KnownTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *KnownTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *KnownTypes but is not nil && this == nil") } if !this.Dur.Equal(that1.Dur) { return fmt.Errorf("Dur this(%v) Not Equal that(%v)", this.Dur, that1.Dur) } if !this.Ts.Equal(that1.Ts) { return fmt.Errorf("Ts this(%v) Not Equal that(%v)", this.Ts, that1.Ts) } if !this.Dbl.Equal(that1.Dbl) { return fmt.Errorf("Dbl this(%v) Not Equal that(%v)", this.Dbl, that1.Dbl) } if !this.Flt.Equal(that1.Flt) { return fmt.Errorf("Flt this(%v) Not Equal that(%v)", this.Flt, that1.Flt) } if !this.I64.Equal(that1.I64) { return fmt.Errorf("I64 this(%v) Not Equal that(%v)", this.I64, that1.I64) } if !this.U64.Equal(that1.U64) { return fmt.Errorf("U64 this(%v) Not Equal that(%v)", this.U64, that1.U64) } if !this.I32.Equal(that1.I32) { return fmt.Errorf("I32 this(%v) Not Equal that(%v)", this.I32, that1.I32) } if !this.U32.Equal(that1.U32) { return fmt.Errorf("U32 this(%v) Not Equal that(%v)", this.U32, that1.U32) } if !this.Bool.Equal(that1.Bool) { return fmt.Errorf("Bool this(%v) Not Equal that(%v)", this.Bool, that1.Bool) } if !this.Str.Equal(that1.Str) { return fmt.Errorf("Str this(%v) Not Equal that(%v)", this.Str, that1.Str) } if !this.Bytes.Equal(that1.Bytes) { return fmt.Errorf("Bytes this(%v) Not Equal that(%v)", this.Bytes, that1.Bytes) } return nil } func (this *KnownTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Dur.Equal(that1.Dur) { return false } if !this.Ts.Equal(that1.Ts) { return false } if !this.Dbl.Equal(that1.Dbl) { return false } if !this.Flt.Equal(that1.Flt) { return false } if !this.I64.Equal(that1.I64) { return false } if !this.U64.Equal(that1.U64) { return false } if !this.I32.Equal(that1.I32) { return false } if !this.U32.Equal(that1.U32) { return false } if !this.Bool.Equal(that1.Bool) { return false } if !this.Str.Equal(that1.Str) { return false } if !this.Bytes.Equal(that1.Bytes) { return false } return true } func (this *ProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ProtoTypes but is not nil && this == nil") } if !this.NullableTimestamp.Equal(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", this.NullableTimestamp, that1.NullableTimestamp) } if !this.NullableDuration.Equal(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", this.NullableDuration, that1.NullableDuration) } if !this.Timestamp.Equal(&that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } if !this.Duration.Equal(&that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *ProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NullableTimestamp.Equal(that1.NullableTimestamp) { return false } if !this.NullableDuration.Equal(that1.NullableDuration) { return false } if !this.Timestamp.Equal(&that1.Timestamp) { return false } if !this.Duration.Equal(&that1.Duration) { return false } return true } func (this *StdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *StdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *StdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *StdTypes but is not nil && this == nil") } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return fmt.Errorf("this.NullableTimestamp != nil && that1.NullableTimestamp == nil") } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", this.NullableTimestamp, that1.NullableTimestamp) } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", *this.NullableDuration, *that1.NullableDuration) } } else if this.NullableDuration != nil { return fmt.Errorf("this.NullableDuration == nil && that.NullableDuration != nil") } else if that1.NullableDuration != nil { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", this.NullableDuration, that1.NullableDuration) } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } if this.Duration != that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *StdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return false } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return false } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return false } } else if this.NullableDuration != nil { return false } else if that1.NullableDuration != nil { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } if this.Duration != that1.Duration { return false } return true } func (this *RepProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *RepProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *RepProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *RepProtoTypes but is not nil && this == nil") } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return fmt.Errorf("NullableTimestamps this(%v) Not Equal that(%v)", len(this.NullableTimestamps), len(that1.NullableTimestamps)) } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(that1.NullableTimestamps[i]) { return fmt.Errorf("NullableTimestamps this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamps[i], i, that1.NullableTimestamps[i]) } } if len(this.NullableDurations) != len(that1.NullableDurations) { return fmt.Errorf("NullableDurations this(%v) Not Equal that(%v)", len(this.NullableDurations), len(that1.NullableDurations)) } for i := range this.NullableDurations { if !this.NullableDurations[i].Equal(that1.NullableDurations[i]) { return fmt.Errorf("NullableDurations this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDurations[i], i, that1.NullableDurations[i]) } } if len(this.Timestamps) != len(that1.Timestamps) { return fmt.Errorf("Timestamps this(%v) Not Equal that(%v)", len(this.Timestamps), len(that1.Timestamps)) } for i := range this.Timestamps { if !this.Timestamps[i].Equal(&that1.Timestamps[i]) { return fmt.Errorf("Timestamps this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamps[i], i, that1.Timestamps[i]) } } if len(this.Durations) != len(that1.Durations) { return fmt.Errorf("Durations this(%v) Not Equal that(%v)", len(this.Durations), len(that1.Durations)) } for i := range this.Durations { if !this.Durations[i].Equal(&that1.Durations[i]) { return fmt.Errorf("Durations this[%v](%v) Not Equal that[%v](%v)", i, this.Durations[i], i, that1.Durations[i]) } } return nil } func (this *RepProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return false } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(that1.NullableTimestamps[i]) { return false } } if len(this.NullableDurations) != len(that1.NullableDurations) { return false } for i := range this.NullableDurations { if !this.NullableDurations[i].Equal(that1.NullableDurations[i]) { return false } } if len(this.Timestamps) != len(that1.Timestamps) { return false } for i := range this.Timestamps { if !this.Timestamps[i].Equal(&that1.Timestamps[i]) { return false } } if len(this.Durations) != len(that1.Durations) { return false } for i := range this.Durations { if !this.Durations[i].Equal(&that1.Durations[i]) { return false } } return true } func (this *RepStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *RepStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *RepStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *RepStdTypes but is not nil && this == nil") } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return fmt.Errorf("NullableTimestamps this(%v) Not Equal that(%v)", len(this.NullableTimestamps), len(that1.NullableTimestamps)) } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return fmt.Errorf("NullableTimestamps this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamps[i], i, that1.NullableTimestamps[i]) } } if len(this.NullableDurations) != len(that1.NullableDurations) { return fmt.Errorf("NullableDurations this(%v) Not Equal that(%v)", len(this.NullableDurations), len(that1.NullableDurations)) } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDurations this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDurations[i], i, that1.NullableDurations[i]) } } if len(this.Timestamps) != len(that1.Timestamps) { return fmt.Errorf("Timestamps this(%v) Not Equal that(%v)", len(this.Timestamps), len(that1.Timestamps)) } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return fmt.Errorf("Timestamps this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamps[i], i, that1.Timestamps[i]) } } if len(this.Durations) != len(that1.Durations) { return fmt.Errorf("Durations this(%v) Not Equal that(%v)", len(this.Durations), len(that1.Durations)) } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return fmt.Errorf("Durations this[%v](%v) Not Equal that[%v](%v)", i, this.Durations[i], i, that1.Durations[i]) } } return nil } func (this *RepStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return false } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return false } } if len(this.NullableDurations) != len(that1.NullableDurations) { return false } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Timestamps) != len(that1.Timestamps) { return false } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return false } } if len(this.Durations) != len(that1.Durations) { return false } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return false } } return true } func (this *MapProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapProtoTypes) if !ok { that2, ok := that.(MapProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapProtoTypes but is not nil && this == nil") } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", len(this.NullableTimestamp), len(that1.NullableTimestamp)) } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(that1.NullableTimestamp[i]) { return fmt.Errorf("NullableTimestamp this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamp[i], i, that1.NullableTimestamp[i]) } } if len(this.Timestamp) != len(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", len(this.Timestamp), len(that1.Timestamp)) } for i := range this.Timestamp { a := this.Timestamp[i] b := that1.Timestamp[i] if !(&a).Equal(&b) { return fmt.Errorf("Timestamp this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamp[i], i, that1.Timestamp[i]) } } if len(this.NullableDuration) != len(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", len(this.NullableDuration), len(that1.NullableDuration)) } for i := range this.NullableDuration { if !this.NullableDuration[i].Equal(that1.NullableDuration[i]) { return fmt.Errorf("NullableDuration this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDuration[i], i, that1.NullableDuration[i]) } } if len(this.Duration) != len(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", len(this.Duration), len(that1.Duration)) } for i := range this.Duration { a := this.Duration[i] b := that1.Duration[i] if !(&a).Equal(&b) { return fmt.Errorf("Duration this[%v](%v) Not Equal that[%v](%v)", i, this.Duration[i], i, that1.Duration[i]) } } return nil } func (this *MapProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapProtoTypes) if !ok { that2, ok := that.(MapProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return false } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(that1.NullableTimestamp[i]) { return false } } if len(this.Timestamp) != len(that1.Timestamp) { return false } for i := range this.Timestamp { a := this.Timestamp[i] b := that1.Timestamp[i] if !(&a).Equal(&b) { return false } } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if !this.NullableDuration[i].Equal(that1.NullableDuration[i]) { return false } } if len(this.Duration) != len(that1.Duration) { return false } for i := range this.Duration { a := this.Duration[i] b := that1.Duration[i] if !(&a).Equal(&b) { return false } } return true } func (this *MapStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapStdTypes but is not nil && this == nil") } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", len(this.NullableTimestamp), len(that1.NullableTimestamp)) } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return fmt.Errorf("NullableTimestamp this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamp[i], i, that1.NullableTimestamp[i]) } } if len(this.Timestamp) != len(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", len(this.Timestamp), len(that1.Timestamp)) } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return fmt.Errorf("Timestamp this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamp[i], i, that1.Timestamp[i]) } } if len(this.NullableDuration) != len(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", len(this.NullableDuration), len(that1.NullableDuration)) } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDuration this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDuration[i], i, that1.NullableDuration[i]) } } if len(this.Duration) != len(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", len(this.Duration), len(that1.Duration)) } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return fmt.Errorf("Duration this[%v](%v) Not Equal that[%v](%v)", i, this.Duration[i], i, that1.Duration[i]) } } return nil } func (this *MapStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return false } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return false } } if len(this.Timestamp) != len(that1.Timestamp) { return false } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return false } } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Duration) != len(that1.Duration) { return false } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return false } } return true } func (this *OneofProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes) if !ok { that2, ok := that.(OneofProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes but is not nil && this == nil") } if that1.OneOfProtoTimes == nil { if this.OneOfProtoTimes != nil { return fmt.Errorf("this.OneOfProtoTimes != nil && that1.OneOfProtoTimes == nil") } } else if this.OneOfProtoTimes == nil { return fmt.Errorf("this.OneOfProtoTimes == nil && that1.OneOfProtoTimes != nil") } else if err := this.OneOfProtoTimes.VerboseEqual(that1.OneOfProtoTimes); err != nil { return err } return nil } func (this *OneofProtoTypes_Timestamp) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes_Timestamp) if !ok { that2, ok := that.(OneofProtoTypes_Timestamp) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes_Timestamp") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes_Timestamp but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes_Timestamp but is not nil && this == nil") } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *OneofProtoTypes_Duration) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes_Duration) if !ok { that2, ok := that.(OneofProtoTypes_Duration) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes_Duration") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes_Duration but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes_Duration but is not nil && this == nil") } if !this.Duration.Equal(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *OneofProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes) if !ok { that2, ok := that.(OneofProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.OneOfProtoTimes == nil { if this.OneOfProtoTimes != nil { return false } } else if this.OneOfProtoTimes == nil { return false } else if !this.OneOfProtoTimes.Equal(that1.OneOfProtoTimes) { return false } return true } func (this *OneofProtoTypes_Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes_Timestamp) if !ok { that2, ok := that.(OneofProtoTypes_Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } return true } func (this *OneofProtoTypes_Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes_Duration) if !ok { that2, ok := that.(OneofProtoTypes_Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Duration.Equal(that1.Duration) { return false } return true } func (this *OneofStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes but is not nil && this == nil") } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return fmt.Errorf("this.OneOfStdTimes != nil && that1.OneOfStdTimes == nil") } } else if this.OneOfStdTimes == nil { return fmt.Errorf("this.OneOfStdTimes == nil && that1.OneOfStdTimes != nil") } else if err := this.OneOfStdTimes.VerboseEqual(that1.OneOfStdTimes); err != nil { return err } return nil } func (this *OneofStdTypes_Timestamp) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Timestamp") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is not nil && this == nil") } if that1.Timestamp == nil { if this.Timestamp != nil { return fmt.Errorf("this.Timestamp != nil && that1.Timestamp == nil") } } else if !this.Timestamp.Equal(*that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *OneofStdTypes_Duration) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Duration") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Duration but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Duration but is not nil && this == nil") } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", *this.Duration, *that1.Duration) } } else if this.Duration != nil { return fmt.Errorf("this.Duration == nil && that.Duration != nil") } else if that1.Duration != nil { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *OneofStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return false } } else if this.OneOfStdTimes == nil { return false } else if !this.OneOfStdTimes.Equal(that1.OneOfStdTimes) { return false } return true } func (this *OneofStdTypes_Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Timestamp == nil { if this.Timestamp != nil { return false } } else if !this.Timestamp.Equal(*that1.Timestamp) { return false } return true } func (this *OneofStdTypes_Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return false } } else if this.Duration != nil { return false } else if that1.Duration != nil { return false } return true } func (m *KnownTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *KnownTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Dur != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(m.Dur.Size())) n1, err := m.Dur.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } if m.Ts != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Ts.Size())) n2, err := m.Ts.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } if m.Dbl != nil { dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(m.Dbl.Size())) n3, err := m.Dbl.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 } if m.Flt != nil { dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Flt.Size())) n4, err := m.Flt.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n4 } if m.I64 != nil { dAtA[i] = 0x2a i++ i = encodeVarintTypes(dAtA, i, uint64(m.I64.Size())) n5, err := m.I64.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n5 } if m.U64 != nil { dAtA[i] = 0x32 i++ i = encodeVarintTypes(dAtA, i, uint64(m.U64.Size())) n6, err := m.U64.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n6 } if m.I32 != nil { dAtA[i] = 0x3a i++ i = encodeVarintTypes(dAtA, i, uint64(m.I32.Size())) n7, err := m.I32.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n7 } if m.U32 != nil { dAtA[i] = 0x42 i++ i = encodeVarintTypes(dAtA, i, uint64(m.U32.Size())) n8, err := m.U32.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n8 } if m.Bool != nil { dAtA[i] = 0x4a i++ i = encodeVarintTypes(dAtA, i, uint64(m.Bool.Size())) n9, err := m.Bool.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n9 } if m.Str != nil { dAtA[i] = 0x52 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Str.Size())) n10, err := m.Str.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n10 } if m.Bytes != nil { dAtA[i] = 0x5a i++ i = encodeVarintTypes(dAtA, i, uint64(m.Bytes.Size())) n11, err := m.Bytes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n11 } return i, nil } func (m *ProtoTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ProtoTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NullableTimestamp != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(m.NullableTimestamp.Size())) n12, err := m.NullableTimestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n12 } if m.NullableDuration != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(m.NullableDuration.Size())) n13, err := m.NullableDuration.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n13 } dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(m.Timestamp.Size())) n14, err := m.Timestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n14 dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Duration.Size())) n15, err := m.Duration.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n15 return i, nil } func (m *StdTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *StdTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NullableTimestamp != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.NullableTimestamp))) n16, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.NullableTimestamp, dAtA[i:]) if err != nil { return 0, err } i += n16 } if m.NullableDuration != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*m.NullableDuration))) n17, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*m.NullableDuration, dAtA[i:]) if err != nil { return 0, err } i += n17 } dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp))) n18, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Timestamp, dAtA[i:]) if err != nil { return 0, err } i += n18 dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(m.Duration))) n19, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.Duration, dAtA[i:]) if err != nil { return 0, err } i += n19 return i, nil } func (m *RepProtoTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *RepProtoTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NullableTimestamps) > 0 { for _, msg := range m.NullableTimestamps { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.NullableDurations) > 0 { for _, msg := range m.NullableDurations { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Timestamps) > 0 { for _, msg := range m.Timestamps { dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Durations) > 0 { for _, msg := range m.Durations { dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } return i, nil } func (m *RepStdTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *RepStdTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NullableTimestamps) > 0 { for _, msg := range m.NullableTimestamps { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*msg))) n, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*msg, dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.NullableDurations) > 0 { for _, msg := range m.NullableDurations { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*msg))) n, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*msg, dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Timestamps) > 0 { for _, msg := range m.Timestamps { dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(msg))) n, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(msg, dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Durations) > 0 { for _, msg := range m.Durations { dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(msg))) n, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(msg, dAtA[i:]) if err != nil { return 0, err } i += n } } return i, nil } func (m *MapProtoTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MapProtoTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NullableTimestamp) > 0 { for k := range m.NullableTimestamp { dAtA[i] = 0xa i++ v := m.NullableTimestamp[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(v.Size())) n20, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n20 } } } if len(m.Timestamp) > 0 { for k := range m.Timestamp { dAtA[i] = 0x12 i++ v := m.Timestamp[k] msgSize := 0 if (&v) != nil { msgSize = (&v).Size() msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64((&v).Size())) n21, err := (&v).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n21 } } if len(m.NullableDuration) > 0 { for k := range m.NullableDuration { dAtA[i] = 0x1a i++ v := m.NullableDuration[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(v.Size())) n22, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n22 } } } if len(m.Duration) > 0 { for k := range m.Duration { dAtA[i] = 0x22 i++ v := m.Duration[k] msgSize := 0 if (&v) != nil { msgSize = (&v).Size() msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64((&v).Size())) n23, err := (&v).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n23 } } return i, nil } func (m *MapStdTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MapStdTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NullableTimestamp) > 0 { for k := range m.NullableTimestamp { dAtA[i] = 0xa i++ v := m.NullableTimestamp[k] msgSize := 0 if v != nil { msgSize = github_com_gogo_protobuf_types.SizeOfStdTime(*v) msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*v))) n24, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*v, dAtA[i:]) if err != nil { return 0, err } i += n24 } } } if len(m.Timestamp) > 0 { for k := range m.Timestamp { dAtA[i] = 0x12 i++ v := m.Timestamp[k] msgSize := 0 if (&v) != nil { msgSize = github_com_gogo_protobuf_types.SizeOfStdTime(*(&v)) msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*(&v)))) n25, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*(&v), dAtA[i:]) if err != nil { return 0, err } i += n25 } } if len(m.NullableDuration) > 0 { for k := range m.NullableDuration { dAtA[i] = 0x1a i++ v := m.NullableDuration[k] msgSize := 0 if v != nil { msgSize = github_com_gogo_protobuf_types.SizeOfStdDuration(*v) msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*v))) n26, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*v, dAtA[i:]) if err != nil { return 0, err } i += n26 } } } if len(m.Duration) > 0 { for k := range m.Duration { dAtA[i] = 0x22 i++ v := m.Duration[k] msgSize := 0 if (&v) != nil { msgSize = github_com_gogo_protobuf_types.SizeOfStdDuration(*(&v)) msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*(&v)))) n27, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*(&v), dAtA[i:]) if err != nil { return 0, err } i += n27 } } return i, nil } func (m *OneofProtoTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OneofProtoTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.OneOfProtoTimes != nil { nn28, err := m.OneOfProtoTimes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn28 } return i, nil } func (m *OneofProtoTypes_Timestamp) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Timestamp != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(m.Timestamp.Size())) n29, err := m.Timestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n29 } return i, nil } func (m *OneofProtoTypes_Duration) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Duration != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Duration.Size())) n30, err := m.Duration.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n30 } return i, nil } func (m *OneofStdTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OneofStdTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.OneOfStdTimes != nil { nn31, err := m.OneOfStdTimes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn31 } return i, nil } func (m *OneofStdTypes_Timestamp) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Timestamp != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.Timestamp))) n32, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.Timestamp, dAtA[i:]) if err != nil { return 0, err } i += n32 } return i, nil } func (m *OneofStdTypes_Duration) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Duration != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*m.Duration))) n33, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*m.Duration, dAtA[i:]) if err != nil { return 0, err } i += n33 } return i, nil } func encodeVarintTypes(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedKnownTypes(r randyTypes, easy bool) *KnownTypes { this := &KnownTypes{} if r.Intn(10) != 0 { this.Dur = google_protobuf1.NewPopulatedDuration(r, easy) } if r.Intn(10) != 0 { this.Ts = google_protobuf2.NewPopulatedTimestamp(r, easy) } if r.Intn(10) != 0 { this.Dbl = google_protobuf3.NewPopulatedDoubleValue(r, easy) } if r.Intn(10) != 0 { this.Flt = google_protobuf3.NewPopulatedFloatValue(r, easy) } if r.Intn(10) != 0 { this.I64 = google_protobuf3.NewPopulatedInt64Value(r, easy) } if r.Intn(10) != 0 { this.U64 = google_protobuf3.NewPopulatedUInt64Value(r, easy) } if r.Intn(10) != 0 { this.I32 = google_protobuf3.NewPopulatedInt32Value(r, easy) } if r.Intn(10) != 0 { this.U32 = google_protobuf3.NewPopulatedUInt32Value(r, easy) } if r.Intn(10) != 0 { this.Bool = google_protobuf3.NewPopulatedBoolValue(r, easy) } if r.Intn(10) != 0 { this.Str = google_protobuf3.NewPopulatedStringValue(r, easy) } if r.Intn(10) != 0 { this.Bytes = google_protobuf3.NewPopulatedBytesValue(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedProtoTypes(r randyTypes, easy bool) *ProtoTypes { this := &ProtoTypes{} if r.Intn(10) != 0 { this.NullableTimestamp = google_protobuf2.NewPopulatedTimestamp(r, easy) } if r.Intn(10) != 0 { this.NullableDuration = google_protobuf1.NewPopulatedDuration(r, easy) } v1 := google_protobuf2.NewPopulatedTimestamp(r, easy) this.Timestamp = *v1 v2 := google_protobuf1.NewPopulatedDuration(r, easy) this.Duration = *v2 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedStdTypes(r randyTypes, easy bool) *StdTypes { this := &StdTypes{} if r.Intn(10) != 0 { this.NullableTimestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } if r.Intn(10) != 0 { this.NullableDuration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } v3 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamp = *v3 v4 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Duration = *v4 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedRepProtoTypes(r randyTypes, easy bool) *RepProtoTypes { this := &RepProtoTypes{} if r.Intn(10) != 0 { v5 := r.Intn(5) this.NullableTimestamps = make([]*google_protobuf2.Timestamp, v5) for i := 0; i < v5; i++ { this.NullableTimestamps[i] = google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v6 := r.Intn(5) this.NullableDurations = make([]*google_protobuf1.Duration, v6) for i := 0; i < v6; i++ { this.NullableDurations[i] = google_protobuf1.NewPopulatedDuration(r, easy) } } if r.Intn(10) != 0 { v7 := r.Intn(5) this.Timestamps = make([]google_protobuf2.Timestamp, v7) for i := 0; i < v7; i++ { v8 := google_protobuf2.NewPopulatedTimestamp(r, easy) this.Timestamps[i] = *v8 } } if r.Intn(10) != 0 { v9 := r.Intn(5) this.Durations = make([]google_protobuf1.Duration, v9) for i := 0; i < v9; i++ { v10 := google_protobuf1.NewPopulatedDuration(r, easy) this.Durations[i] = *v10 } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedRepStdTypes(r randyTypes, easy bool) *RepStdTypes { this := &RepStdTypes{} if r.Intn(10) != 0 { v11 := r.Intn(5) this.NullableTimestamps = make([]*time.Time, v11) for i := 0; i < v11; i++ { this.NullableTimestamps[i] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v12 := r.Intn(5) this.NullableDurations = make([]*time.Duration, v12) for i := 0; i < v12; i++ { this.NullableDurations[i] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v13 := r.Intn(5) this.Timestamps = make([]time.Time, v13) for i := 0; i < v13; i++ { v14 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamps[i] = *v14 } } if r.Intn(10) != 0 { v15 := r.Intn(5) this.Durations = make([]time.Duration, v15) for i := 0; i < v15; i++ { v16 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Durations[i] = *v16 } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMapProtoTypes(r randyTypes, easy bool) *MapProtoTypes { this := &MapProtoTypes{} if r.Intn(10) != 0 { v17 := r.Intn(10) this.NullableTimestamp = make(map[int32]*google_protobuf2.Timestamp) for i := 0; i < v17; i++ { this.NullableTimestamp[int32(r.Int31())] = google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Timestamp = make(map[int32]google_protobuf2.Timestamp) for i := 0; i < v18; i++ { this.Timestamp[int32(r.Int31())] = *google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.NullableDuration = make(map[int32]*google_protobuf1.Duration) for i := 0; i < v19; i++ { this.NullableDuration[int32(r.Int31())] = google_protobuf1.NewPopulatedDuration(r, easy) } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Duration = make(map[int32]google_protobuf1.Duration) for i := 0; i < v20; i++ { this.Duration[int32(r.Int31())] = *google_protobuf1.NewPopulatedDuration(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMapStdTypes(r randyTypes, easy bool) *MapStdTypes { this := &MapStdTypes{} if r.Intn(10) != 0 { v21 := r.Intn(10) this.NullableTimestamp = make(map[int32]*time.Time) for i := 0; i < v21; i++ { this.NullableTimestamp[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Timestamp = make(map[int32]time.Time) for i := 0; i < v22; i++ { this.Timestamp[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.NullableDuration = make(map[int32]*time.Duration) for i := 0; i < v23; i++ { this.NullableDuration[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Duration = make(map[int32]time.Duration) for i := 0; i < v24; i++ { this.Duration[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofProtoTypes(r randyTypes, easy bool) *OneofProtoTypes { this := &OneofProtoTypes{} oneofNumber_OneOfProtoTimes := []int32{1, 2}[r.Intn(2)] switch oneofNumber_OneOfProtoTimes { case 1: this.OneOfProtoTimes = NewPopulatedOneofProtoTypes_Timestamp(r, easy) case 2: this.OneOfProtoTimes = NewPopulatedOneofProtoTypes_Duration(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofProtoTypes_Timestamp(r randyTypes, easy bool) *OneofProtoTypes_Timestamp { this := &OneofProtoTypes_Timestamp{} this.Timestamp = google_protobuf2.NewPopulatedTimestamp(r, easy) return this } func NewPopulatedOneofProtoTypes_Duration(r randyTypes, easy bool) *OneofProtoTypes_Duration { this := &OneofProtoTypes_Duration{} this.Duration = google_protobuf1.NewPopulatedDuration(r, easy) return this } func NewPopulatedOneofStdTypes(r randyTypes, easy bool) *OneofStdTypes { this := &OneofStdTypes{} oneofNumber_OneOfStdTimes := []int32{1, 2}[r.Intn(2)] switch oneofNumber_OneOfStdTimes { case 1: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Timestamp(r, easy) case 2: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Duration(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofStdTypes_Timestamp(r randyTypes, easy bool) *OneofStdTypes_Timestamp { this := &OneofStdTypes_Timestamp{} this.Timestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) return this } func NewPopulatedOneofStdTypes_Duration(r randyTypes, easy bool) *OneofStdTypes_Duration { this := &OneofStdTypes_Duration{} this.Duration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) return this } type randyTypes interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTypes(r randyTypes) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTypes(r randyTypes) string { v25 := r.Intn(100) tmps := make([]rune, v25) for i := 0; i < v25; i++ { tmps[i] = randUTF8RuneTypes(r) } return string(tmps) } func randUnrecognizedTypes(r randyTypes, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTypes(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTypes(dAtA []byte, r randyTypes, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) v26 := r.Int63() if r.Intn(2) == 0 { v26 *= -1 } dAtA = encodeVarintPopulateTypes(dAtA, uint64(v26)) case 1: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTypes(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTypes(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *KnownTypes) Size() (n int) { var l int _ = l if m.Dur != nil { l = m.Dur.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Ts != nil { l = m.Ts.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Dbl != nil { l = m.Dbl.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Flt != nil { l = m.Flt.Size() n += 1 + l + sovTypes(uint64(l)) } if m.I64 != nil { l = m.I64.Size() n += 1 + l + sovTypes(uint64(l)) } if m.U64 != nil { l = m.U64.Size() n += 1 + l + sovTypes(uint64(l)) } if m.I32 != nil { l = m.I32.Size() n += 1 + l + sovTypes(uint64(l)) } if m.U32 != nil { l = m.U32.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Bool != nil { l = m.Bool.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Str != nil { l = m.Str.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Bytes != nil { l = m.Bytes.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *ProtoTypes) Size() (n int) { var l int _ = l if m.NullableTimestamp != nil { l = m.NullableTimestamp.Size() n += 1 + l + sovTypes(uint64(l)) } if m.NullableDuration != nil { l = m.NullableDuration.Size() n += 1 + l + sovTypes(uint64(l)) } l = m.Timestamp.Size() n += 1 + l + sovTypes(uint64(l)) l = m.Duration.Size() n += 1 + l + sovTypes(uint64(l)) return n } func (m *StdTypes) Size() (n int) { var l int _ = l if m.NullableTimestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.NullableTimestamp) n += 1 + l + sovTypes(uint64(l)) } if m.NullableDuration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.NullableDuration) n += 1 + l + sovTypes(uint64(l)) } l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp) n += 1 + l + sovTypes(uint64(l)) l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.Duration) n += 1 + l + sovTypes(uint64(l)) return n } func (m *RepProtoTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamps) > 0 { for _, e := range m.NullableTimestamps { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.NullableDurations) > 0 { for _, e := range m.NullableDurations { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.Timestamps) > 0 { for _, e := range m.Timestamps { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.Durations) > 0 { for _, e := range m.Durations { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } return n } func (m *RepStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamps) > 0 { for _, e := range m.NullableTimestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(*e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.NullableDurations) > 0 { for _, e := range m.NullableDurations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.Timestamps) > 0 { for _, e := range m.Timestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.Durations) > 0 { for _, e := range m.Durations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(e) n += 1 + l + sovTypes(uint64(l)) } } return n } func (m *MapProtoTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamp) > 0 { for k, v := range m.NullableTimestamp { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Timestamp) > 0 { for k, v := range m.Timestamp { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Duration) > 0 { for k, v := range m.Duration { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } return n } func (m *MapStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamp) > 0 { for k, v := range m.NullableTimestamp { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*v) l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Timestamp) > 0 { for k, v := range m.Timestamp { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdTime(v) mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*v) l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Duration) > 0 { for k, v := range m.Duration { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdDuration(v) mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } return n } func (m *OneofProtoTypes) Size() (n int) { var l int _ = l if m.OneOfProtoTimes != nil { n += m.OneOfProtoTimes.Size() } return n } func (m *OneofProtoTypes_Timestamp) Size() (n int) { var l int _ = l if m.Timestamp != nil { l = m.Timestamp.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofProtoTypes_Duration) Size() (n int) { var l int _ = l if m.Duration != nil { l = m.Duration.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofStdTypes) Size() (n int) { var l int _ = l if m.OneOfStdTimes != nil { n += m.OneOfStdTimes.Size() } return n } func (m *OneofStdTypes_Timestamp) Size() (n int) { var l int _ = l if m.Timestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.Timestamp) n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofStdTypes_Duration) Size() (n int) { var l int _ = l if m.Duration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.Duration) n += 1 + l + sovTypes(uint64(l)) } return n } func sovTypes(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTypes(x uint64) (n int) { return sovTypes(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *KnownTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: KnownTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: KnownTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Dur", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Dur == nil { m.Dur = &google_protobuf1.Duration{} } if err := m.Dur.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Ts", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Ts == nil { m.Ts = &google_protobuf2.Timestamp{} } if err := m.Ts.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Dbl", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Dbl == nil { m.Dbl = &google_protobuf3.DoubleValue{} } if err := m.Dbl.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Flt", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Flt == nil { m.Flt = &google_protobuf3.FloatValue{} } if err := m.Flt.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field I64", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.I64 == nil { m.I64 = &google_protobuf3.Int64Value{} } if err := m.I64.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field U64", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.U64 == nil { m.U64 = &google_protobuf3.UInt64Value{} } if err := m.U64.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field I32", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.I32 == nil { m.I32 = &google_protobuf3.Int32Value{} } if err := m.I32.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field U32", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.U32 == nil { m.U32 = &google_protobuf3.UInt32Value{} } if err := m.U32.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Bool", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Bool == nil { m.Bool = &google_protobuf3.BoolValue{} } if err := m.Bool.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Str", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Str == nil { m.Str = &google_protobuf3.StringValue{} } if err := m.Str.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Bytes", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Bytes == nil { m.Bytes = &google_protobuf3.BytesValue{} } if err := m.Bytes.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ProtoTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: ProtoTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: ProtoTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableTimestamp == nil { m.NullableTimestamp = &google_protobuf2.Timestamp{} } if err := m.NullableTimestamp.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDuration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableDuration == nil { m.NullableDuration = &google_protobuf1.Duration{} } if err := m.NullableDuration.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Timestamp.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Duration.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *StdTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: StdTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: StdTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableTimestamp == nil { m.NullableTimestamp = new(time.Time) } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.NullableTimestamp, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDuration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableDuration == nil { m.NullableDuration = new(time.Duration) } if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(m.NullableDuration, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.Timestamp, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.Duration, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *RepProtoTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: RepProtoTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: RepProtoTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamps", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.NullableTimestamps = append(m.NullableTimestamps, &google_protobuf2.Timestamp{}) if err := m.NullableTimestamps[len(m.NullableTimestamps)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDurations", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.NullableDurations = append(m.NullableDurations, &google_protobuf1.Duration{}) if err := m.NullableDurations[len(m.NullableDurations)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamps", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Timestamps = append(m.Timestamps, google_protobuf2.Timestamp{}) if err := m.Timestamps[len(m.Timestamps)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Durations", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Durations = append(m.Durations, google_protobuf1.Duration{}) if err := m.Durations[len(m.Durations)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *RepStdTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: RepStdTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: RepStdTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamps", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.NullableTimestamps = append(m.NullableTimestamps, new(time.Time)) if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.NullableTimestamps[len(m.NullableTimestamps)-1], dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDurations", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.NullableDurations = append(m.NullableDurations, new(time.Duration)) if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(m.NullableDurations[len(m.NullableDurations)-1], dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamps", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Timestamps = append(m.Timestamps, time.Time{}) if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&(m.Timestamps[len(m.Timestamps)-1]), dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Durations", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Durations = append(m.Durations, time.Duration(0)) if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&(m.Durations[len(m.Durations)-1]), dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *MapProtoTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MapProtoTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MapProtoTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableTimestamp == nil { m.NullableTimestamp = make(map[int32]*google_protobuf2.Timestamp) } var mapkey int32 var mapvalue *google_protobuf2.Timestamp for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &google_protobuf2.Timestamp{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableTimestamp[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Timestamp == nil { m.Timestamp = make(map[int32]google_protobuf2.Timestamp) } var mapkey int32 mapvalue := &google_protobuf2.Timestamp{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &google_protobuf2.Timestamp{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Timestamp[mapkey] = *mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDuration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableDuration == nil { m.NullableDuration = make(map[int32]*google_protobuf1.Duration) } var mapkey int32 var mapvalue *google_protobuf1.Duration for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &google_protobuf1.Duration{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableDuration[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Duration == nil { m.Duration = make(map[int32]google_protobuf1.Duration) } var mapkey int32 mapvalue := &google_protobuf1.Duration{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &google_protobuf1.Duration{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Duration[mapkey] = *mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *MapStdTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MapStdTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MapStdTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableTimestamp == nil { m.NullableTimestamp = make(map[int32]*time.Time) } var mapkey int32 mapvalue := new(time.Time) for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(mapvalue, dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableTimestamp[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Timestamp == nil { m.Timestamp = make(map[int32]time.Time) } var mapkey int32 mapvalue := new(time.Time) for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(mapvalue, dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Timestamp[mapkey] = *mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDuration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableDuration == nil { m.NullableDuration = make(map[int32]*time.Duration) } var mapkey int32 mapvalue := new(time.Duration) for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(mapvalue, dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableDuration[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Duration == nil { m.Duration = make(map[int32]time.Duration) } var mapkey int32 mapvalue := new(time.Duration) for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(mapvalue, dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Duration[mapkey] = *mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OneofProtoTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OneofProtoTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OneofProtoTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &google_protobuf2.Timestamp{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.OneOfProtoTimes = &OneofProtoTypes_Timestamp{v} iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &google_protobuf1.Duration{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.OneOfProtoTimes = &OneofProtoTypes_Duration{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OneofStdTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OneofStdTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OneofStdTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := new(time.Time) if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(v, dAtA[iNdEx:postIndex]); err != nil { return err } m.OneOfStdTimes = &OneofStdTypes_Timestamp{v} iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := new(time.Duration) if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(v, dAtA[iNdEx:postIndex]); err != nil { return err } m.OneOfStdTimes = &OneofStdTypes_Duration{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipTypes(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypes } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypes } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypes } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthTypes } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypes } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipTypes(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthTypes = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTypes = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/both/types.proto", fileDescriptorTypes) } var fileDescriptorTypes = []byte{ // 923 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0x4f, 0x8f, 0xdb, 0x44, 0x1c, 0xdd, 0xb1, 0x9d, 0xb2, 0xfb, 0x5b, 0x2d, 0x6d, 0x2d, 0x01, 0x26, 0x20, 0x67, 0x09, 0x97, 0xa5, 0x55, 0x1d, 0x48, 0xa2, 0x80, 0x16, 0x15, 0x8a, 0xb5, 0x6d, 0xb7, 0x54, 0xdb, 0xad, 0xd2, 0xb2, 0x02, 0x24, 0x10, 0x76, 0xe3, 0xa4, 0x11, 0x8e, 0x27, 0xb2, 0xc7, 0x54, 0xb9, 0xf1, 0x11, 0x38, 0x82, 0xb8, 0xd0, 0x1b, 0x12, 0xdc, 0xe1, 0xc8, 0x05, 0xa9, 0x37, 0xf8, 0x04, 0xd0, 0x86, 0x0b, 0x1f, 0xa1, 0x47, 0x34, 0xe3, 0xf1, 0xbf, 0x78, 0xec, 0x90, 0x48, 0x2b, 0x2e, 0xdc, 0xd6, 0xeb, 0xf7, 0x9e, 0x9f, 0x9f, 0xdf, 0xef, 0x37, 0x81, 0x17, 0xee, 0xe1, 0x89, 0x8d, 0x83, 0x96, 0x8d, 0xc9, 0xfd, 0x16, 0x99, 0x4d, 0x9d, 0xc0, 0x98, 0xfa, 0x98, 0x60, 0xb5, 0xc6, 0x2e, 0xea, 0x97, 0x46, 0x63, 0x72, 0x3f, 0xb4, 0x8d, 0x7b, 0x78, 0xd2, 0x1a, 0xe1, 0x11, 0x6e, 0xb1, 0xbb, 0x76, 0x38, 0x64, 0x57, 0xec, 0x82, 0xfd, 0x15, 0xb1, 0xea, 0xfa, 0x08, 0xe3, 0x91, 0xeb, 0xa4, 0xa8, 0x41, 0xe8, 0x5b, 0x64, 0x8c, 0x3d, 0x7e, 0xbf, 0xb1, 0x78, 0x9f, 0x8c, 0x27, 0x4e, 0x40, 0xac, 0xc9, 0xb4, 0x4c, 0xe0, 0x81, 0x6f, 0x4d, 0xa7, 0x8e, 0xcf, 0x6d, 0x35, 0xbf, 0x55, 0x00, 0x6e, 0x7a, 0xf8, 0x81, 0x77, 0x97, 0xda, 0x53, 0x2f, 0x82, 0x3c, 0x08, 0x7d, 0x0d, 0xed, 0xa2, 0xbd, 0xed, 0xf6, 0x8b, 0x46, 0x44, 0x36, 0x62, 0xb2, 0x71, 0xc0, 0x9f, 0xde, 0xa7, 0x28, 0xf5, 0x02, 0x48, 0x24, 0xd0, 0x24, 0x86, 0xad, 0x17, 0xb0, 0x77, 0x63, 0x27, 0x7d, 0x89, 0x04, 0xaa, 0x01, 0xf2, 0xc0, 0x76, 0x35, 0x99, 0x81, 0x5f, 0x2e, 0x0a, 0xe3, 0xd0, 0x76, 0x9d, 0x13, 0xcb, 0x0d, 0x9d, 0x3e, 0x05, 0xaa, 0x97, 0x40, 0x1e, 0xba, 0x44, 0x53, 0x18, 0xfe, 0xa5, 0x02, 0xfe, 0x9a, 0x8b, 0x2d, 0xc2, 0xe1, 0x43, 0x97, 0x50, 0xf8, 0xb8, 0xd7, 0xd5, 0x6a, 0x25, 0xf0, 0x1b, 0x1e, 0xe9, 0x75, 0x39, 0x7c, 0xdc, 0xeb, 0x52, 0x37, 0x61, 0xaf, 0xab, 0x9d, 0x29, 0x71, 0xf3, 0x41, 0x16, 0x1f, 0xf6, 0xba, 0x4c, 0xbe, 0xd3, 0xd6, 0x9e, 0x29, 0x97, 0xef, 0xb4, 0x63, 0xf9, 0x4e, 0x9b, 0xc9, 0x77, 0xda, 0xda, 0x66, 0x85, 0x7c, 0x82, 0x0f, 0x19, 0x5e, 0xb1, 0x31, 0x76, 0xb5, 0xad, 0x92, 0x28, 0x4d, 0x8c, 0xdd, 0x08, 0xce, 0x70, 0x54, 0x3f, 0x20, 0xbe, 0x06, 0x25, 0xfa, 0x77, 0x88, 0x3f, 0xf6, 0x46, 0x5c, 0x3f, 0x20, 0xbe, 0xfa, 0x06, 0xd4, 0xec, 0x19, 0x71, 0x02, 0x6d, 0xbb, 0xe4, 0x05, 0x4c, 0x7a, 0x37, 0x22, 0x44, 0xc8, 0x7d, 0xe5, 0xef, 0x87, 0x0d, 0xd4, 0xfc, 0x4e, 0x02, 0xb8, 0x4d, 0x41, 0x51, 0x3b, 0x0e, 0xe1, 0xbc, 0x17, 0xba, 0xae, 0x65, 0xbb, 0x4e, 0xf2, 0x75, 0x79, 0x57, 0xaa, 0xbe, 0x7f, 0x91, 0xa4, 0x5e, 0x85, 0x73, 0xf1, 0x3f, 0xe3, 0x4e, 0xf1, 0x22, 0x55, 0x94, 0xae, 0x40, 0x51, 0xdf, 0x81, 0xad, 0xa4, 0xf0, 0xbc, 0x5b, 0x15, 0x46, 0x4c, 0xe5, 0xd1, 0x1f, 0x8d, 0x8d, 0x7e, 0x4a, 0x51, 0xdf, 0x86, 0xcd, 0x78, 0xa0, 0x78, 0xd5, 0xca, 0x1f, 0xcf, 0xd9, 0x09, 0x81, 0x47, 0xf4, 0xa3, 0x04, 0x9b, 0x77, 0xc8, 0x20, 0x0a, 0xe8, 0xd6, 0x5a, 0x01, 0x99, 0xca, 0x57, 0x7f, 0x36, 0x90, 0x28, 0xa6, 0x9b, 0x6b, 0xc4, 0x64, 0x2a, 0x5f, 0x53, 0xb5, 0x62, 0x58, 0xe6, 0x6a, 0x61, 0x6d, 0xd2, 0xd7, 0x65, 0xc6, 0x32, 0x81, 0xbd, 0xbb, 0x4a, 0x60, 0x4c, 0x81, 0x99, 0x49, 0x48, 0xcd, 0x1f, 0x24, 0xd8, 0xe9, 0x3b, 0xd3, 0x4c, 0xa9, 0xde, 0x07, 0xb5, 0xf0, 0xe2, 0x81, 0x86, 0x76, 0xe5, 0x25, 0xad, 0x12, 0xb0, 0xd4, 0xeb, 0x69, 0xfe, 0xb1, 0x0b, 0xba, 0xa0, 0xe4, 0xea, 0x5e, 0x15, 0x39, 0xea, 0x15, 0x00, 0x92, 0x9a, 0x91, 0x97, 0x99, 0xe1, 0xdd, 0xc8, 0x70, 0xd4, 0xcb, 0xb0, 0x35, 0x48, 0x2c, 0x28, 0x4b, 0x2c, 0xc4, 0xcd, 0x4c, 0x18, 0xbc, 0x5c, 0x3f, 0x49, 0xb0, 0xdd, 0x77, 0xa6, 0x49, 0xbf, 0x6e, 0xaf, 0x97, 0x15, 0x2f, 0x98, 0x28, 0xb1, 0xa3, 0x75, 0x12, 0xe3, 0x15, 0x13, 0xe4, 0x76, 0xb0, 0x62, 0x6e, 0x69, 0xc9, 0xb2, 0xd9, 0xbd, 0xb7, 0x52, 0x76, 0x69, 0xcd, 0x52, 0x56, 0xf3, 0xd7, 0x1a, 0xec, 0x1c, 0x59, 0xd9, 0x9e, 0x7d, 0x24, 0x9e, 0x4d, 0x2a, 0x7e, 0xd1, 0x88, 0x4e, 0xea, 0x1c, 0xc1, 0xb8, 0xb5, 0x88, 0xbe, 0xea, 0x11, 0x7f, 0x26, 0x1a, 0xd3, 0xeb, 0xd9, 0xc9, 0x8a, 0xc2, 0x7b, 0x55, 0x28, 0x99, 0x97, 0x2a, 0xee, 0xa3, 0x13, 0xc1, 0xbc, 0x47, 0x21, 0x5e, 0xa8, 0xb4, 0x18, 0x83, 0x23, 0x87, 0xc5, 0xd1, 0x3f, 0xc8, 0x8d, 0x2d, 0xd5, 0x6b, 0x0a, 0xf5, 0x72, 0x3a, 0x8b, 0x0b, 0xaf, 0xfe, 0x19, 0x3c, 0x2f, 0xce, 0x44, 0x3d, 0x07, 0xf2, 0xe7, 0xce, 0x8c, 0x6d, 0xba, 0x5a, 0x9f, 0xfe, 0xa9, 0xbe, 0x0e, 0xb5, 0x2f, 0xe8, 0x79, 0xf2, 0x2f, 0x7e, 0x1e, 0x44, 0xc0, 0x7d, 0xe9, 0x2d, 0x54, 0xff, 0x10, 0x9e, 0x3d, 0x25, 0xe5, 0x4f, 0xe1, 0x39, 0x61, 0x58, 0x82, 0x07, 0xb4, 0xf2, 0x0f, 0xa8, 0x58, 0x1c, 0x19, 0xfd, 0x13, 0xd8, 0x39, 0x0d, 0xdd, 0xe6, 0x6f, 0x35, 0xd8, 0x3e, 0xb2, 0xd2, 0x0d, 0xf0, 0x49, 0x79, 0x8b, 0x5f, 0x4b, 0x3f, 0x69, 0x0c, 0x2f, 0xe9, 0x70, 0xf9, 0x81, 0x73, 0xa3, 0xd8, 0xe4, 0x57, 0x04, 0xb2, 0x0b, 0x72, 0xc2, 0xa3, 0xe2, 0xe3, 0xd2, 0x2e, 0xef, 0x55, 0x18, 0x5d, 0x68, 0x60, 0xc9, 0x51, 0x76, 0xad, 0xd0, 0xe7, 0x5d, 0x81, 0x66, 0x5e, 0x4b, 0x70, 0x1a, 0xfd, 0xdf, 0xe8, 0xff, 0xa0, 0xd1, 0xdf, 0x20, 0x38, 0x7b, 0xec, 0x39, 0x78, 0x98, 0xd9, 0xcd, 0xfb, 0xd9, 0xda, 0x2d, 0xfd, 0xbd, 0x74, 0x98, 0xdb, 0x99, 0x6f, 0x66, 0xba, 0xb0, 0xcc, 0xc7, 0x61, 0x66, 0x9d, 0x99, 0xe7, 0x99, 0x8f, 0x63, 0xee, 0x83, 0xea, 0x35, 0x1f, 0x22, 0xd8, 0x61, 0xde, 0x92, 0x79, 0xbb, 0xb2, 0x92, 0xb3, 0x68, 0xb0, 0xf2, 0xfe, 0x2e, 0xaf, 0xe0, 0x2f, 0x2a, 0x7c, 0xce, 0xe5, 0x59, 0xe6, 0xe8, 0x98, 0x39, 0xa2, 0x9a, 0xe6, 0xde, 0xe3, 0x27, 0x3a, 0x7a, 0xfa, 0x44, 0x47, 0xdf, 0xcf, 0x75, 0xf4, 0xf3, 0x5c, 0x47, 0xbf, 0xcc, 0x75, 0xf4, 0x68, 0xae, 0xa3, 0xdf, 0xe7, 0x3a, 0x7a, 0x3c, 0xd7, 0xd1, 0xd3, 0xb9, 0xbe, 0xf1, 0xe5, 0x5f, 0xfa, 0x86, 0x7d, 0x86, 0xe9, 0x77, 0xfe, 0x09, 0x00, 0x00, 0xff, 0xff, 0x48, 0x89, 0xae, 0xdb, 0x94, 0x0e, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/types/combos/both/types.proto000066400000000000000000000126251317075173200241450ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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 = "proto3"; package types; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; //import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; //import "google/protobuf/struct.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/wrappers.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message KnownTypes { option (gogoproto.compare) = true; google.protobuf.Duration dur = 1; google.protobuf.Timestamp ts = 2; google.protobuf.DoubleValue dbl = 3; google.protobuf.FloatValue flt = 4; google.protobuf.Int64Value i64 = 5; google.protobuf.UInt64Value u64 = 6; google.protobuf.Int32Value i32 = 7; google.protobuf.UInt32Value u32 = 8; google.protobuf.BoolValue bool = 9; google.protobuf.StringValue str = 10; google.protobuf.BytesValue bytes = 11; // TODO uncomment this once https://github.com/gogo/protobuf/issues/197 is fixed // google.protobuf.Struct st = 12; // google.protobuf.Any an = 14; } message ProtoTypes { // TODO this should be a compare_all at the top of the file once time.Time, time.Duration, oneof and map is supported by compare option (gogoproto.compare) = true; google.protobuf.Timestamp nullableTimestamp = 1; google.protobuf.Duration nullableDuration = 2; google.protobuf.Timestamp timestamp = 3 [(gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.nullable) = false]; } message StdTypes { google.protobuf.Timestamp nullableTimestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration nullableDuration = 2 [(gogoproto.stdduration) = true]; google.protobuf.Timestamp timestamp = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message RepProtoTypes { option (gogoproto.compare) = true; repeated google.protobuf.Timestamp nullableTimestamps = 1; repeated google.protobuf.Duration nullableDurations = 2; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.nullable) = false]; } message RepStdTypes { repeated google.protobuf.Timestamp nullableTimestamps = 1 [(gogoproto.stdtime) = true]; repeated google.protobuf.Duration nullableDurations = 2 [(gogoproto.stdduration) = true]; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message MapProtoTypes { map nullableTimestamp = 1; map timestamp = 2 [(gogoproto.nullable) = false]; map nullableDuration = 3; map duration = 4 [(gogoproto.nullable) = false]; } message MapStdTypes { map nullableTimestamp = 1 [(gogoproto.stdtime) = true]; map timestamp = 2 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; map nullableDuration = 3 [(gogoproto.stdduration) = true]; map duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message OneofProtoTypes { oneof OneOfProtoTimes { google.protobuf.Timestamp timestamp = 1; google.protobuf.Duration duration = 2; } } message OneofStdTypes { oneof OneOfStdTimes { google.protobuf.Timestamp timestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration duration = 2 [(gogoproto.stdduration) = true]; } } golang-gogoprotobuf-0.5/test/types/combos/both/types_test.go000066400000000000000000000155121317075173200244440ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package types import ( math_rand "math/rand" "testing" "time" "github.com/gogo/protobuf/jsonpb" "github.com/gogo/protobuf/proto" ) func TestFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } golang-gogoprotobuf-0.5/test/types/combos/both/typespb_test.go000066400000000000000000001643051317075173200247730ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/both/types.proto /* Package types is a generated protocol buffer package. It is generated from these files: combos/both/types.proto It has these top-level messages: KnownTypes ProtoTypes StdTypes RepProtoTypes RepStdTypes MapProtoTypes MapStdTypes OneofProtoTypes OneofStdTypes */ package types import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestKnownTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestKnownTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkKnownTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*KnownTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedKnownTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkKnownTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedKnownTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &KnownTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestProtoTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestStdTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &StdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRepProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestRepProtoTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkRepProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedRepProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRepProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedRepProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &RepProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestRepStdTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkRepStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRepStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedRepStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &RepStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMapProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMapProtoTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMapProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMapProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMapProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMapProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MapProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMapStdTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMapStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMapStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMapStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MapStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOneofProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOneofProtoTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkOneofProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOneofProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOneofProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOneofProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OneofProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOneofStdTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkOneofStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOneofStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOneofStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OneofStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestKnownTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRepProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRepStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestKnownTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKnownTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKnownTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedKnownTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestProtoTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedProtoTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestRepProtoTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedRepProtoTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestKnownTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRepProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRepStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOneofProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOneofStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestKnownTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkKnownTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*KnownTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedKnownTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRepProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRepProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedRepProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRepStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMapProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMapProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMapProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMapStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOneofProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOneofProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOneofProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOneofStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/types/combos/marshaler/000077500000000000000000000000001317075173200227305ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/types/combos/marshaler/types.pb.go000066400000000000000000002700231317075173200250270ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/types.proto /* Package types is a generated protocol buffer package. It is generated from these files: combos/marshaler/types.proto It has these top-level messages: KnownTypes ProtoTypes StdTypes RepProtoTypes RepStdTypes MapProtoTypes MapStdTypes OneofProtoTypes OneofStdTypes */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import google_protobuf1 "github.com/gogo/protobuf/types" import google_protobuf2 "github.com/gogo/protobuf/types" import google_protobuf3 "github.com/gogo/protobuf/types" import time "time" import github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf var _ = time.Kitchen // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type KnownTypes struct { Dur *google_protobuf1.Duration `protobuf:"bytes,1,opt,name=dur" json:"dur,omitempty"` Ts *google_protobuf2.Timestamp `protobuf:"bytes,2,opt,name=ts" json:"ts,omitempty"` Dbl *google_protobuf3.DoubleValue `protobuf:"bytes,3,opt,name=dbl" json:"dbl,omitempty"` Flt *google_protobuf3.FloatValue `protobuf:"bytes,4,opt,name=flt" json:"flt,omitempty"` I64 *google_protobuf3.Int64Value `protobuf:"bytes,5,opt,name=i64" json:"i64,omitempty"` U64 *google_protobuf3.UInt64Value `protobuf:"bytes,6,opt,name=u64" json:"u64,omitempty"` I32 *google_protobuf3.Int32Value `protobuf:"bytes,7,opt,name=i32" json:"i32,omitempty"` U32 *google_protobuf3.UInt32Value `protobuf:"bytes,8,opt,name=u32" json:"u32,omitempty"` Bool *google_protobuf3.BoolValue `protobuf:"bytes,9,opt,name=bool" json:"bool,omitempty"` Str *google_protobuf3.StringValue `protobuf:"bytes,10,opt,name=str" json:"str,omitempty"` Bytes *google_protobuf3.BytesValue `protobuf:"bytes,11,opt,name=bytes" json:"bytes,omitempty"` } func (m *KnownTypes) Reset() { *m = KnownTypes{} } func (m *KnownTypes) String() string { return proto.CompactTextString(m) } func (*KnownTypes) ProtoMessage() {} func (*KnownTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{0} } func (m *KnownTypes) GetDur() *google_protobuf1.Duration { if m != nil { return m.Dur } return nil } func (m *KnownTypes) GetTs() *google_protobuf2.Timestamp { if m != nil { return m.Ts } return nil } func (m *KnownTypes) GetDbl() *google_protobuf3.DoubleValue { if m != nil { return m.Dbl } return nil } func (m *KnownTypes) GetFlt() *google_protobuf3.FloatValue { if m != nil { return m.Flt } return nil } func (m *KnownTypes) GetI64() *google_protobuf3.Int64Value { if m != nil { return m.I64 } return nil } func (m *KnownTypes) GetU64() *google_protobuf3.UInt64Value { if m != nil { return m.U64 } return nil } func (m *KnownTypes) GetI32() *google_protobuf3.Int32Value { if m != nil { return m.I32 } return nil } func (m *KnownTypes) GetU32() *google_protobuf3.UInt32Value { if m != nil { return m.U32 } return nil } func (m *KnownTypes) GetBool() *google_protobuf3.BoolValue { if m != nil { return m.Bool } return nil } func (m *KnownTypes) GetStr() *google_protobuf3.StringValue { if m != nil { return m.Str } return nil } func (m *KnownTypes) GetBytes() *google_protobuf3.BytesValue { if m != nil { return m.Bytes } return nil } type ProtoTypes struct { NullableTimestamp *google_protobuf2.Timestamp `protobuf:"bytes,1,opt,name=nullableTimestamp" json:"nullableTimestamp,omitempty"` NullableDuration *google_protobuf1.Duration `protobuf:"bytes,2,opt,name=nullableDuration" json:"nullableDuration,omitempty"` Timestamp google_protobuf2.Timestamp `protobuf:"bytes,3,opt,name=timestamp" json:"timestamp"` Duration google_protobuf1.Duration `protobuf:"bytes,4,opt,name=duration" json:"duration"` } func (m *ProtoTypes) Reset() { *m = ProtoTypes{} } func (m *ProtoTypes) String() string { return proto.CompactTextString(m) } func (*ProtoTypes) ProtoMessage() {} func (*ProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{1} } func (m *ProtoTypes) GetNullableTimestamp() *google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamp } return nil } func (m *ProtoTypes) GetNullableDuration() *google_protobuf1.Duration { if m != nil { return m.NullableDuration } return nil } func (m *ProtoTypes) GetTimestamp() google_protobuf2.Timestamp { if m != nil { return m.Timestamp } return google_protobuf2.Timestamp{} } func (m *ProtoTypes) GetDuration() google_protobuf1.Duration { if m != nil { return m.Duration } return google_protobuf1.Duration{} } type StdTypes struct { NullableTimestamp *time.Time `protobuf:"bytes,1,opt,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty"` NullableDuration *time.Duration `protobuf:"bytes,2,opt,name=nullableDuration,stdduration" json:"nullableDuration,omitempty"` Timestamp time.Time `protobuf:"bytes,3,opt,name=timestamp,stdtime" json:"timestamp"` Duration time.Duration `protobuf:"bytes,4,opt,name=duration,stdduration" json:"duration"` } func (m *StdTypes) Reset() { *m = StdTypes{} } func (m *StdTypes) String() string { return proto.CompactTextString(m) } func (*StdTypes) ProtoMessage() {} func (*StdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{2} } func (m *StdTypes) GetNullableTimestamp() *time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *StdTypes) GetNullableDuration() *time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *StdTypes) GetTimestamp() time.Time { if m != nil { return m.Timestamp } return time.Time{} } func (m *StdTypes) GetDuration() time.Duration { if m != nil { return m.Duration } return 0 } type RepProtoTypes struct { NullableTimestamps []*google_protobuf2.Timestamp `protobuf:"bytes,1,rep,name=nullableTimestamps" json:"nullableTimestamps,omitempty"` NullableDurations []*google_protobuf1.Duration `protobuf:"bytes,2,rep,name=nullableDurations" json:"nullableDurations,omitempty"` Timestamps []google_protobuf2.Timestamp `protobuf:"bytes,3,rep,name=timestamps" json:"timestamps"` Durations []google_protobuf1.Duration `protobuf:"bytes,4,rep,name=durations" json:"durations"` } func (m *RepProtoTypes) Reset() { *m = RepProtoTypes{} } func (m *RepProtoTypes) String() string { return proto.CompactTextString(m) } func (*RepProtoTypes) ProtoMessage() {} func (*RepProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{3} } func (m *RepProtoTypes) GetNullableTimestamps() []*google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamps } return nil } func (m *RepProtoTypes) GetNullableDurations() []*google_protobuf1.Duration { if m != nil { return m.NullableDurations } return nil } func (m *RepProtoTypes) GetTimestamps() []google_protobuf2.Timestamp { if m != nil { return m.Timestamps } return nil } func (m *RepProtoTypes) GetDurations() []google_protobuf1.Duration { if m != nil { return m.Durations } return nil } type RepStdTypes struct { NullableTimestamps []*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamps,stdtime" json:"nullableTimestamps,omitempty"` NullableDurations []*time.Duration `protobuf:"bytes,2,rep,name=nullableDurations,stdduration" json:"nullableDurations,omitempty"` Timestamps []time.Time `protobuf:"bytes,3,rep,name=timestamps,stdtime" json:"timestamps"` Durations []time.Duration `protobuf:"bytes,4,rep,name=durations,stdduration" json:"durations"` } func (m *RepStdTypes) Reset() { *m = RepStdTypes{} } func (m *RepStdTypes) String() string { return proto.CompactTextString(m) } func (*RepStdTypes) ProtoMessage() {} func (*RepStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{4} } func (m *RepStdTypes) GetNullableTimestamps() []*time.Time { if m != nil { return m.NullableTimestamps } return nil } func (m *RepStdTypes) GetNullableDurations() []*time.Duration { if m != nil { return m.NullableDurations } return nil } func (m *RepStdTypes) GetTimestamps() []time.Time { if m != nil { return m.Timestamps } return nil } func (m *RepStdTypes) GetDurations() []time.Duration { if m != nil { return m.Durations } return nil } type MapProtoTypes struct { NullableTimestamp map[int32]*google_protobuf2.Timestamp `protobuf:"bytes,1,rep,name=nullableTimestamp" json:"nullableTimestamp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Timestamp map[int32]google_protobuf2.Timestamp `protobuf:"bytes,2,rep,name=timestamp" json:"timestamp" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` NullableDuration map[int32]*google_protobuf1.Duration `protobuf:"bytes,3,rep,name=nullableDuration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Duration map[int32]google_protobuf1.Duration `protobuf:"bytes,4,rep,name=duration" json:"duration" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapProtoTypes) Reset() { *m = MapProtoTypes{} } func (m *MapProtoTypes) String() string { return proto.CompactTextString(m) } func (*MapProtoTypes) ProtoMessage() {} func (*MapProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{5} } func (m *MapProtoTypes) GetNullableTimestamp() map[int32]*google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamp } return nil } func (m *MapProtoTypes) GetTimestamp() map[int32]google_protobuf2.Timestamp { if m != nil { return m.Timestamp } return nil } func (m *MapProtoTypes) GetNullableDuration() map[int32]*google_protobuf1.Duration { if m != nil { return m.NullableDuration } return nil } func (m *MapProtoTypes) GetDuration() map[int32]google_protobuf1.Duration { if m != nil { return m.Duration } return nil } type MapStdTypes struct { NullableTimestamp map[int32]*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Timestamp map[int32]time.Time `protobuf:"bytes,2,rep,name=timestamp,stdtime" json:"timestamp" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` NullableDuration map[int32]*time.Duration `protobuf:"bytes,3,rep,name=nullableDuration,stdduration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Duration map[int32]time.Duration `protobuf:"bytes,4,rep,name=duration,stdduration" json:"duration" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapStdTypes) Reset() { *m = MapStdTypes{} } func (m *MapStdTypes) String() string { return proto.CompactTextString(m) } func (*MapStdTypes) ProtoMessage() {} func (*MapStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{6} } func (m *MapStdTypes) GetNullableTimestamp() map[int32]*time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *MapStdTypes) GetTimestamp() map[int32]time.Time { if m != nil { return m.Timestamp } return nil } func (m *MapStdTypes) GetNullableDuration() map[int32]*time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *MapStdTypes) GetDuration() map[int32]time.Duration { if m != nil { return m.Duration } return nil } type OneofProtoTypes struct { // Types that are valid to be assigned to OneOfProtoTimes: // *OneofProtoTypes_Timestamp // *OneofProtoTypes_Duration OneOfProtoTimes isOneofProtoTypes_OneOfProtoTimes `protobuf_oneof:"OneOfProtoTimes"` } func (m *OneofProtoTypes) Reset() { *m = OneofProtoTypes{} } func (m *OneofProtoTypes) String() string { return proto.CompactTextString(m) } func (*OneofProtoTypes) ProtoMessage() {} func (*OneofProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{7} } type isOneofProtoTypes_OneOfProtoTimes interface { isOneofProtoTypes_OneOfProtoTimes() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type OneofProtoTypes_Timestamp struct { Timestamp *google_protobuf2.Timestamp `protobuf:"bytes,1,opt,name=timestamp,oneof"` } type OneofProtoTypes_Duration struct { Duration *google_protobuf1.Duration `protobuf:"bytes,2,opt,name=duration,oneof"` } func (*OneofProtoTypes_Timestamp) isOneofProtoTypes_OneOfProtoTimes() {} func (*OneofProtoTypes_Duration) isOneofProtoTypes_OneOfProtoTimes() {} func (m *OneofProtoTypes) GetOneOfProtoTimes() isOneofProtoTypes_OneOfProtoTimes { if m != nil { return m.OneOfProtoTimes } return nil } func (m *OneofProtoTypes) GetTimestamp() *google_protobuf2.Timestamp { if x, ok := m.GetOneOfProtoTimes().(*OneofProtoTypes_Timestamp); ok { return x.Timestamp } return nil } func (m *OneofProtoTypes) GetDuration() *google_protobuf1.Duration { if x, ok := m.GetOneOfProtoTimes().(*OneofProtoTypes_Duration); ok { return x.Duration } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofProtoTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofProtoTypes_OneofMarshaler, _OneofProtoTypes_OneofUnmarshaler, _OneofProtoTypes_OneofSizer, []interface{}{ (*OneofProtoTypes_Timestamp)(nil), (*OneofProtoTypes_Duration)(nil), } } func _OneofProtoTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofProtoTypes) // OneOfProtoTimes switch x := m.OneOfProtoTimes.(type) { case *OneofProtoTypes_Timestamp: _ = b.EncodeVarint(1<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Timestamp); err != nil { return err } case *OneofProtoTypes_Duration: _ = b.EncodeVarint(2<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Duration); err != nil { return err } case nil: default: return fmt.Errorf("OneofProtoTypes.OneOfProtoTimes has unexpected type %T", x) } return nil } func _OneofProtoTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofProtoTypes) switch tag { case 1: // OneOfProtoTimes.timestamp if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(google_protobuf2.Timestamp) err := b.DecodeMessage(msg) m.OneOfProtoTimes = &OneofProtoTypes_Timestamp{msg} return true, err case 2: // OneOfProtoTimes.duration if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(google_protobuf1.Duration) err := b.DecodeMessage(msg) m.OneOfProtoTimes = &OneofProtoTypes_Duration{msg} return true, err default: return false, nil } } func _OneofProtoTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofProtoTypes) // OneOfProtoTimes switch x := m.OneOfProtoTimes.(type) { case *OneofProtoTypes_Timestamp: s := proto.Size(x.Timestamp) n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *OneofProtoTypes_Duration: s := proto.Size(x.Duration) n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type OneofStdTypes struct { // Types that are valid to be assigned to OneOfStdTimes: // *OneofStdTypes_Timestamp // *OneofStdTypes_Duration OneOfStdTimes isOneofStdTypes_OneOfStdTimes `protobuf_oneof:"OneOfStdTimes"` } func (m *OneofStdTypes) Reset() { *m = OneofStdTypes{} } func (m *OneofStdTypes) String() string { return proto.CompactTextString(m) } func (*OneofStdTypes) ProtoMessage() {} func (*OneofStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{8} } type isOneofStdTypes_OneOfStdTimes interface { isOneofStdTypes_OneOfStdTimes() Equal(interface{}) bool VerboseEqual(interface{}) error MarshalTo([]byte) (int, error) Size() int } type OneofStdTypes_Timestamp struct { Timestamp *time.Time `protobuf:"bytes,1,opt,name=timestamp,oneof,stdtime"` } type OneofStdTypes_Duration struct { Duration *time.Duration `protobuf:"bytes,2,opt,name=duration,oneof,stdduration"` } func (*OneofStdTypes_Timestamp) isOneofStdTypes_OneOfStdTimes() {} func (*OneofStdTypes_Duration) isOneofStdTypes_OneOfStdTimes() {} func (m *OneofStdTypes) GetOneOfStdTimes() isOneofStdTypes_OneOfStdTimes { if m != nil { return m.OneOfStdTimes } return nil } func (m *OneofStdTypes) GetTimestamp() *time.Time { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Timestamp); ok { return x.Timestamp } return nil } func (m *OneofStdTypes) GetDuration() *time.Duration { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Duration); ok { return x.Duration } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofStdTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofStdTypes_OneofMarshaler, _OneofStdTypes_OneofUnmarshaler, _OneofStdTypes_OneofSizer, []interface{}{ (*OneofStdTypes_Timestamp)(nil), (*OneofStdTypes_Duration)(nil), } } func _OneofStdTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: _ = b.EncodeVarint(1<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdTimeMarshal(*x.Timestamp) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case *OneofStdTypes_Duration: _ = b.EncodeVarint(2<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdDurationMarshal(*x.Duration) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case nil: default: return fmt.Errorf("OneofStdTypes.OneOfStdTimes has unexpected type %T", x) } return nil } func _OneofStdTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofStdTypes) switch tag { case 1: // OneOfStdTimes.timestamp if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Time) if err2 := github_com_gogo_protobuf_types.StdTimeUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Timestamp{c} return true, err case 2: // OneOfStdTimes.duration if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Duration) if err2 := github_com_gogo_protobuf_types.StdDurationUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Duration{c} return true, err default: return false, nil } } func _OneofStdTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: s := github_com_gogo_protobuf_types.SizeOfStdTime(*x.Timestamp) n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *OneofStdTypes_Duration: s := github_com_gogo_protobuf_types.SizeOfStdDuration(*x.Duration) n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*KnownTypes)(nil), "types.KnownTypes") proto.RegisterType((*ProtoTypes)(nil), "types.ProtoTypes") proto.RegisterType((*StdTypes)(nil), "types.StdTypes") proto.RegisterType((*RepProtoTypes)(nil), "types.RepProtoTypes") proto.RegisterType((*RepStdTypes)(nil), "types.RepStdTypes") proto.RegisterType((*MapProtoTypes)(nil), "types.MapProtoTypes") proto.RegisterType((*MapStdTypes)(nil), "types.MapStdTypes") proto.RegisterType((*OneofProtoTypes)(nil), "types.OneofProtoTypes") proto.RegisterType((*OneofStdTypes)(nil), "types.OneofStdTypes") } func (this *KnownTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Dur.Compare(that1.Dur); c != 0 { return c } if c := this.Ts.Compare(that1.Ts); c != 0 { return c } if c := this.Dbl.Compare(that1.Dbl); c != 0 { return c } if c := this.Flt.Compare(that1.Flt); c != 0 { return c } if c := this.I64.Compare(that1.I64); c != 0 { return c } if c := this.U64.Compare(that1.U64); c != 0 { return c } if c := this.I32.Compare(that1.I32); c != 0 { return c } if c := this.U32.Compare(that1.U32); c != 0 { return c } if c := this.Bool.Compare(that1.Bool); c != 0 { return c } if c := this.Str.Compare(that1.Str); c != 0 { return c } if c := this.Bytes.Compare(that1.Bytes); c != 0 { return c } return 0 } func (this *ProtoTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NullableTimestamp.Compare(that1.NullableTimestamp); c != 0 { return c } if c := this.NullableDuration.Compare(that1.NullableDuration); c != 0 { return c } if c := this.Timestamp.Compare(&that1.Timestamp); c != 0 { return c } if c := this.Duration.Compare(&that1.Duration); c != 0 { return c } return 0 } func (this *RepProtoTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { if len(this.NullableTimestamps) < len(that1.NullableTimestamps) { return -1 } return 1 } for i := range this.NullableTimestamps { if c := this.NullableTimestamps[i].Compare(that1.NullableTimestamps[i]); c != 0 { return c } } if len(this.NullableDurations) != len(that1.NullableDurations) { if len(this.NullableDurations) < len(that1.NullableDurations) { return -1 } return 1 } for i := range this.NullableDurations { if c := this.NullableDurations[i].Compare(that1.NullableDurations[i]); c != 0 { return c } } if len(this.Timestamps) != len(that1.Timestamps) { if len(this.Timestamps) < len(that1.Timestamps) { return -1 } return 1 } for i := range this.Timestamps { if c := this.Timestamps[i].Compare(&that1.Timestamps[i]); c != 0 { return c } } if len(this.Durations) != len(that1.Durations) { if len(this.Durations) < len(that1.Durations) { return -1 } return 1 } for i := range this.Durations { if c := this.Durations[i].Compare(&that1.Durations[i]); c != 0 { return c } } return 0 } func (this *KnownTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *KnownTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *KnownTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *KnownTypes but is not nil && this == nil") } if !this.Dur.Equal(that1.Dur) { return fmt.Errorf("Dur this(%v) Not Equal that(%v)", this.Dur, that1.Dur) } if !this.Ts.Equal(that1.Ts) { return fmt.Errorf("Ts this(%v) Not Equal that(%v)", this.Ts, that1.Ts) } if !this.Dbl.Equal(that1.Dbl) { return fmt.Errorf("Dbl this(%v) Not Equal that(%v)", this.Dbl, that1.Dbl) } if !this.Flt.Equal(that1.Flt) { return fmt.Errorf("Flt this(%v) Not Equal that(%v)", this.Flt, that1.Flt) } if !this.I64.Equal(that1.I64) { return fmt.Errorf("I64 this(%v) Not Equal that(%v)", this.I64, that1.I64) } if !this.U64.Equal(that1.U64) { return fmt.Errorf("U64 this(%v) Not Equal that(%v)", this.U64, that1.U64) } if !this.I32.Equal(that1.I32) { return fmt.Errorf("I32 this(%v) Not Equal that(%v)", this.I32, that1.I32) } if !this.U32.Equal(that1.U32) { return fmt.Errorf("U32 this(%v) Not Equal that(%v)", this.U32, that1.U32) } if !this.Bool.Equal(that1.Bool) { return fmt.Errorf("Bool this(%v) Not Equal that(%v)", this.Bool, that1.Bool) } if !this.Str.Equal(that1.Str) { return fmt.Errorf("Str this(%v) Not Equal that(%v)", this.Str, that1.Str) } if !this.Bytes.Equal(that1.Bytes) { return fmt.Errorf("Bytes this(%v) Not Equal that(%v)", this.Bytes, that1.Bytes) } return nil } func (this *KnownTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Dur.Equal(that1.Dur) { return false } if !this.Ts.Equal(that1.Ts) { return false } if !this.Dbl.Equal(that1.Dbl) { return false } if !this.Flt.Equal(that1.Flt) { return false } if !this.I64.Equal(that1.I64) { return false } if !this.U64.Equal(that1.U64) { return false } if !this.I32.Equal(that1.I32) { return false } if !this.U32.Equal(that1.U32) { return false } if !this.Bool.Equal(that1.Bool) { return false } if !this.Str.Equal(that1.Str) { return false } if !this.Bytes.Equal(that1.Bytes) { return false } return true } func (this *ProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ProtoTypes but is not nil && this == nil") } if !this.NullableTimestamp.Equal(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", this.NullableTimestamp, that1.NullableTimestamp) } if !this.NullableDuration.Equal(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", this.NullableDuration, that1.NullableDuration) } if !this.Timestamp.Equal(&that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } if !this.Duration.Equal(&that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *ProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NullableTimestamp.Equal(that1.NullableTimestamp) { return false } if !this.NullableDuration.Equal(that1.NullableDuration) { return false } if !this.Timestamp.Equal(&that1.Timestamp) { return false } if !this.Duration.Equal(&that1.Duration) { return false } return true } func (this *StdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *StdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *StdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *StdTypes but is not nil && this == nil") } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return fmt.Errorf("this.NullableTimestamp != nil && that1.NullableTimestamp == nil") } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", this.NullableTimestamp, that1.NullableTimestamp) } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", *this.NullableDuration, *that1.NullableDuration) } } else if this.NullableDuration != nil { return fmt.Errorf("this.NullableDuration == nil && that.NullableDuration != nil") } else if that1.NullableDuration != nil { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", this.NullableDuration, that1.NullableDuration) } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } if this.Duration != that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *StdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return false } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return false } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return false } } else if this.NullableDuration != nil { return false } else if that1.NullableDuration != nil { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } if this.Duration != that1.Duration { return false } return true } func (this *RepProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *RepProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *RepProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *RepProtoTypes but is not nil && this == nil") } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return fmt.Errorf("NullableTimestamps this(%v) Not Equal that(%v)", len(this.NullableTimestamps), len(that1.NullableTimestamps)) } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(that1.NullableTimestamps[i]) { return fmt.Errorf("NullableTimestamps this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamps[i], i, that1.NullableTimestamps[i]) } } if len(this.NullableDurations) != len(that1.NullableDurations) { return fmt.Errorf("NullableDurations this(%v) Not Equal that(%v)", len(this.NullableDurations), len(that1.NullableDurations)) } for i := range this.NullableDurations { if !this.NullableDurations[i].Equal(that1.NullableDurations[i]) { return fmt.Errorf("NullableDurations this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDurations[i], i, that1.NullableDurations[i]) } } if len(this.Timestamps) != len(that1.Timestamps) { return fmt.Errorf("Timestamps this(%v) Not Equal that(%v)", len(this.Timestamps), len(that1.Timestamps)) } for i := range this.Timestamps { if !this.Timestamps[i].Equal(&that1.Timestamps[i]) { return fmt.Errorf("Timestamps this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamps[i], i, that1.Timestamps[i]) } } if len(this.Durations) != len(that1.Durations) { return fmt.Errorf("Durations this(%v) Not Equal that(%v)", len(this.Durations), len(that1.Durations)) } for i := range this.Durations { if !this.Durations[i].Equal(&that1.Durations[i]) { return fmt.Errorf("Durations this[%v](%v) Not Equal that[%v](%v)", i, this.Durations[i], i, that1.Durations[i]) } } return nil } func (this *RepProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return false } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(that1.NullableTimestamps[i]) { return false } } if len(this.NullableDurations) != len(that1.NullableDurations) { return false } for i := range this.NullableDurations { if !this.NullableDurations[i].Equal(that1.NullableDurations[i]) { return false } } if len(this.Timestamps) != len(that1.Timestamps) { return false } for i := range this.Timestamps { if !this.Timestamps[i].Equal(&that1.Timestamps[i]) { return false } } if len(this.Durations) != len(that1.Durations) { return false } for i := range this.Durations { if !this.Durations[i].Equal(&that1.Durations[i]) { return false } } return true } func (this *RepStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *RepStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *RepStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *RepStdTypes but is not nil && this == nil") } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return fmt.Errorf("NullableTimestamps this(%v) Not Equal that(%v)", len(this.NullableTimestamps), len(that1.NullableTimestamps)) } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return fmt.Errorf("NullableTimestamps this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamps[i], i, that1.NullableTimestamps[i]) } } if len(this.NullableDurations) != len(that1.NullableDurations) { return fmt.Errorf("NullableDurations this(%v) Not Equal that(%v)", len(this.NullableDurations), len(that1.NullableDurations)) } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDurations this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDurations[i], i, that1.NullableDurations[i]) } } if len(this.Timestamps) != len(that1.Timestamps) { return fmt.Errorf("Timestamps this(%v) Not Equal that(%v)", len(this.Timestamps), len(that1.Timestamps)) } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return fmt.Errorf("Timestamps this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamps[i], i, that1.Timestamps[i]) } } if len(this.Durations) != len(that1.Durations) { return fmt.Errorf("Durations this(%v) Not Equal that(%v)", len(this.Durations), len(that1.Durations)) } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return fmt.Errorf("Durations this[%v](%v) Not Equal that[%v](%v)", i, this.Durations[i], i, that1.Durations[i]) } } return nil } func (this *RepStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return false } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return false } } if len(this.NullableDurations) != len(that1.NullableDurations) { return false } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Timestamps) != len(that1.Timestamps) { return false } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return false } } if len(this.Durations) != len(that1.Durations) { return false } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return false } } return true } func (this *MapProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapProtoTypes) if !ok { that2, ok := that.(MapProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapProtoTypes but is not nil && this == nil") } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", len(this.NullableTimestamp), len(that1.NullableTimestamp)) } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(that1.NullableTimestamp[i]) { return fmt.Errorf("NullableTimestamp this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamp[i], i, that1.NullableTimestamp[i]) } } if len(this.Timestamp) != len(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", len(this.Timestamp), len(that1.Timestamp)) } for i := range this.Timestamp { a := this.Timestamp[i] b := that1.Timestamp[i] if !(&a).Equal(&b) { return fmt.Errorf("Timestamp this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamp[i], i, that1.Timestamp[i]) } } if len(this.NullableDuration) != len(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", len(this.NullableDuration), len(that1.NullableDuration)) } for i := range this.NullableDuration { if !this.NullableDuration[i].Equal(that1.NullableDuration[i]) { return fmt.Errorf("NullableDuration this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDuration[i], i, that1.NullableDuration[i]) } } if len(this.Duration) != len(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", len(this.Duration), len(that1.Duration)) } for i := range this.Duration { a := this.Duration[i] b := that1.Duration[i] if !(&a).Equal(&b) { return fmt.Errorf("Duration this[%v](%v) Not Equal that[%v](%v)", i, this.Duration[i], i, that1.Duration[i]) } } return nil } func (this *MapProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapProtoTypes) if !ok { that2, ok := that.(MapProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return false } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(that1.NullableTimestamp[i]) { return false } } if len(this.Timestamp) != len(that1.Timestamp) { return false } for i := range this.Timestamp { a := this.Timestamp[i] b := that1.Timestamp[i] if !(&a).Equal(&b) { return false } } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if !this.NullableDuration[i].Equal(that1.NullableDuration[i]) { return false } } if len(this.Duration) != len(that1.Duration) { return false } for i := range this.Duration { a := this.Duration[i] b := that1.Duration[i] if !(&a).Equal(&b) { return false } } return true } func (this *MapStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapStdTypes but is not nil && this == nil") } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", len(this.NullableTimestamp), len(that1.NullableTimestamp)) } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return fmt.Errorf("NullableTimestamp this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamp[i], i, that1.NullableTimestamp[i]) } } if len(this.Timestamp) != len(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", len(this.Timestamp), len(that1.Timestamp)) } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return fmt.Errorf("Timestamp this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamp[i], i, that1.Timestamp[i]) } } if len(this.NullableDuration) != len(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", len(this.NullableDuration), len(that1.NullableDuration)) } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDuration this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDuration[i], i, that1.NullableDuration[i]) } } if len(this.Duration) != len(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", len(this.Duration), len(that1.Duration)) } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return fmt.Errorf("Duration this[%v](%v) Not Equal that[%v](%v)", i, this.Duration[i], i, that1.Duration[i]) } } return nil } func (this *MapStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return false } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return false } } if len(this.Timestamp) != len(that1.Timestamp) { return false } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return false } } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Duration) != len(that1.Duration) { return false } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return false } } return true } func (this *OneofProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes) if !ok { that2, ok := that.(OneofProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes but is not nil && this == nil") } if that1.OneOfProtoTimes == nil { if this.OneOfProtoTimes != nil { return fmt.Errorf("this.OneOfProtoTimes != nil && that1.OneOfProtoTimes == nil") } } else if this.OneOfProtoTimes == nil { return fmt.Errorf("this.OneOfProtoTimes == nil && that1.OneOfProtoTimes != nil") } else if err := this.OneOfProtoTimes.VerboseEqual(that1.OneOfProtoTimes); err != nil { return err } return nil } func (this *OneofProtoTypes_Timestamp) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes_Timestamp) if !ok { that2, ok := that.(OneofProtoTypes_Timestamp) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes_Timestamp") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes_Timestamp but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes_Timestamp but is not nil && this == nil") } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *OneofProtoTypes_Duration) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes_Duration) if !ok { that2, ok := that.(OneofProtoTypes_Duration) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes_Duration") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes_Duration but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes_Duration but is not nil && this == nil") } if !this.Duration.Equal(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *OneofProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes) if !ok { that2, ok := that.(OneofProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.OneOfProtoTimes == nil { if this.OneOfProtoTimes != nil { return false } } else if this.OneOfProtoTimes == nil { return false } else if !this.OneOfProtoTimes.Equal(that1.OneOfProtoTimes) { return false } return true } func (this *OneofProtoTypes_Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes_Timestamp) if !ok { that2, ok := that.(OneofProtoTypes_Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } return true } func (this *OneofProtoTypes_Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes_Duration) if !ok { that2, ok := that.(OneofProtoTypes_Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Duration.Equal(that1.Duration) { return false } return true } func (this *OneofStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes but is not nil && this == nil") } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return fmt.Errorf("this.OneOfStdTimes != nil && that1.OneOfStdTimes == nil") } } else if this.OneOfStdTimes == nil { return fmt.Errorf("this.OneOfStdTimes == nil && that1.OneOfStdTimes != nil") } else if err := this.OneOfStdTimes.VerboseEqual(that1.OneOfStdTimes); err != nil { return err } return nil } func (this *OneofStdTypes_Timestamp) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Timestamp") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is not nil && this == nil") } if that1.Timestamp == nil { if this.Timestamp != nil { return fmt.Errorf("this.Timestamp != nil && that1.Timestamp == nil") } } else if !this.Timestamp.Equal(*that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *OneofStdTypes_Duration) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Duration") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Duration but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Duration but is not nil && this == nil") } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", *this.Duration, *that1.Duration) } } else if this.Duration != nil { return fmt.Errorf("this.Duration == nil && that.Duration != nil") } else if that1.Duration != nil { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *OneofStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return false } } else if this.OneOfStdTimes == nil { return false } else if !this.OneOfStdTimes.Equal(that1.OneOfStdTimes) { return false } return true } func (this *OneofStdTypes_Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Timestamp == nil { if this.Timestamp != nil { return false } } else if !this.Timestamp.Equal(*that1.Timestamp) { return false } return true } func (this *OneofStdTypes_Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return false } } else if this.Duration != nil { return false } else if that1.Duration != nil { return false } return true } func (m *KnownTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *KnownTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Dur != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(m.Dur.Size())) n1, err := m.Dur.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } if m.Ts != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Ts.Size())) n2, err := m.Ts.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } if m.Dbl != nil { dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(m.Dbl.Size())) n3, err := m.Dbl.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 } if m.Flt != nil { dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Flt.Size())) n4, err := m.Flt.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n4 } if m.I64 != nil { dAtA[i] = 0x2a i++ i = encodeVarintTypes(dAtA, i, uint64(m.I64.Size())) n5, err := m.I64.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n5 } if m.U64 != nil { dAtA[i] = 0x32 i++ i = encodeVarintTypes(dAtA, i, uint64(m.U64.Size())) n6, err := m.U64.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n6 } if m.I32 != nil { dAtA[i] = 0x3a i++ i = encodeVarintTypes(dAtA, i, uint64(m.I32.Size())) n7, err := m.I32.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n7 } if m.U32 != nil { dAtA[i] = 0x42 i++ i = encodeVarintTypes(dAtA, i, uint64(m.U32.Size())) n8, err := m.U32.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n8 } if m.Bool != nil { dAtA[i] = 0x4a i++ i = encodeVarintTypes(dAtA, i, uint64(m.Bool.Size())) n9, err := m.Bool.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n9 } if m.Str != nil { dAtA[i] = 0x52 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Str.Size())) n10, err := m.Str.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n10 } if m.Bytes != nil { dAtA[i] = 0x5a i++ i = encodeVarintTypes(dAtA, i, uint64(m.Bytes.Size())) n11, err := m.Bytes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n11 } return i, nil } func (m *ProtoTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ProtoTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NullableTimestamp != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(m.NullableTimestamp.Size())) n12, err := m.NullableTimestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n12 } if m.NullableDuration != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(m.NullableDuration.Size())) n13, err := m.NullableDuration.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n13 } dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(m.Timestamp.Size())) n14, err := m.Timestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n14 dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Duration.Size())) n15, err := m.Duration.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n15 return i, nil } func (m *StdTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *StdTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.NullableTimestamp != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.NullableTimestamp))) n16, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.NullableTimestamp, dAtA[i:]) if err != nil { return 0, err } i += n16 } if m.NullableDuration != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*m.NullableDuration))) n17, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*m.NullableDuration, dAtA[i:]) if err != nil { return 0, err } i += n17 } dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp))) n18, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Timestamp, dAtA[i:]) if err != nil { return 0, err } i += n18 dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(m.Duration))) n19, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.Duration, dAtA[i:]) if err != nil { return 0, err } i += n19 return i, nil } func (m *RepProtoTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *RepProtoTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NullableTimestamps) > 0 { for _, msg := range m.NullableTimestamps { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.NullableDurations) > 0 { for _, msg := range m.NullableDurations { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Timestamps) > 0 { for _, msg := range m.Timestamps { dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Durations) > 0 { for _, msg := range m.Durations { dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } return i, nil } func (m *RepStdTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *RepStdTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NullableTimestamps) > 0 { for _, msg := range m.NullableTimestamps { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*msg))) n, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*msg, dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.NullableDurations) > 0 { for _, msg := range m.NullableDurations { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*msg))) n, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*msg, dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Timestamps) > 0 { for _, msg := range m.Timestamps { dAtA[i] = 0x1a i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(msg))) n, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(msg, dAtA[i:]) if err != nil { return 0, err } i += n } } if len(m.Durations) > 0 { for _, msg := range m.Durations { dAtA[i] = 0x22 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(msg))) n, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(msg, dAtA[i:]) if err != nil { return 0, err } i += n } } return i, nil } func (m *MapProtoTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MapProtoTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NullableTimestamp) > 0 { for k := range m.NullableTimestamp { dAtA[i] = 0xa i++ v := m.NullableTimestamp[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(v.Size())) n20, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n20 } } } if len(m.Timestamp) > 0 { for k := range m.Timestamp { dAtA[i] = 0x12 i++ v := m.Timestamp[k] msgSize := 0 if (&v) != nil { msgSize = (&v).Size() msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64((&v).Size())) n21, err := (&v).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n21 } } if len(m.NullableDuration) > 0 { for k := range m.NullableDuration { dAtA[i] = 0x1a i++ v := m.NullableDuration[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(v.Size())) n22, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n22 } } } if len(m.Duration) > 0 { for k := range m.Duration { dAtA[i] = 0x22 i++ v := m.Duration[k] msgSize := 0 if (&v) != nil { msgSize = (&v).Size() msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64((&v).Size())) n23, err := (&v).MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n23 } } return i, nil } func (m *MapStdTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *MapStdTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.NullableTimestamp) > 0 { for k := range m.NullableTimestamp { dAtA[i] = 0xa i++ v := m.NullableTimestamp[k] msgSize := 0 if v != nil { msgSize = github_com_gogo_protobuf_types.SizeOfStdTime(*v) msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*v))) n24, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*v, dAtA[i:]) if err != nil { return 0, err } i += n24 } } } if len(m.Timestamp) > 0 { for k := range m.Timestamp { dAtA[i] = 0x12 i++ v := m.Timestamp[k] msgSize := 0 if (&v) != nil { msgSize = github_com_gogo_protobuf_types.SizeOfStdTime(*(&v)) msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*(&v)))) n25, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*(&v), dAtA[i:]) if err != nil { return 0, err } i += n25 } } if len(m.NullableDuration) > 0 { for k := range m.NullableDuration { dAtA[i] = 0x1a i++ v := m.NullableDuration[k] msgSize := 0 if v != nil { msgSize = github_com_gogo_protobuf_types.SizeOfStdDuration(*v) msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*v))) n26, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*v, dAtA[i:]) if err != nil { return 0, err } i += n26 } } } if len(m.Duration) > 0 { for k := range m.Duration { dAtA[i] = 0x22 i++ v := m.Duration[k] msgSize := 0 if (&v) != nil { msgSize = github_com_gogo_protobuf_types.SizeOfStdDuration(*(&v)) msgSize += 1 + sovTypes(uint64(msgSize)) } mapSize := 1 + sovTypes(uint64(k)) + msgSize i = encodeVarintTypes(dAtA, i, uint64(mapSize)) dAtA[i] = 0x8 i++ i = encodeVarintTypes(dAtA, i, uint64(k)) dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*(&v)))) n27, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*(&v), dAtA[i:]) if err != nil { return 0, err } i += n27 } } return i, nil } func (m *OneofProtoTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OneofProtoTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.OneOfProtoTimes != nil { nn28, err := m.OneOfProtoTimes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn28 } return i, nil } func (m *OneofProtoTypes_Timestamp) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Timestamp != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(m.Timestamp.Size())) n29, err := m.Timestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n29 } return i, nil } func (m *OneofProtoTypes_Duration) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Duration != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(m.Duration.Size())) n30, err := m.Duration.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n30 } return i, nil } func (m *OneofStdTypes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OneofStdTypes) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.OneOfStdTimes != nil { nn31, err := m.OneOfStdTimes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn31 } return i, nil } func (m *OneofStdTypes_Timestamp) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Timestamp != nil { dAtA[i] = 0xa i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdTime(*m.Timestamp))) n32, err := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.Timestamp, dAtA[i:]) if err != nil { return 0, err } i += n32 } return i, nil } func (m *OneofStdTypes_Duration) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.Duration != nil { dAtA[i] = 0x12 i++ i = encodeVarintTypes(dAtA, i, uint64(github_com_gogo_protobuf_types.SizeOfStdDuration(*m.Duration))) n33, err := github_com_gogo_protobuf_types.StdDurationMarshalTo(*m.Duration, dAtA[i:]) if err != nil { return 0, err } i += n33 } return i, nil } func encodeVarintTypes(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedKnownTypes(r randyTypes, easy bool) *KnownTypes { this := &KnownTypes{} if r.Intn(10) != 0 { this.Dur = google_protobuf1.NewPopulatedDuration(r, easy) } if r.Intn(10) != 0 { this.Ts = google_protobuf2.NewPopulatedTimestamp(r, easy) } if r.Intn(10) != 0 { this.Dbl = google_protobuf3.NewPopulatedDoubleValue(r, easy) } if r.Intn(10) != 0 { this.Flt = google_protobuf3.NewPopulatedFloatValue(r, easy) } if r.Intn(10) != 0 { this.I64 = google_protobuf3.NewPopulatedInt64Value(r, easy) } if r.Intn(10) != 0 { this.U64 = google_protobuf3.NewPopulatedUInt64Value(r, easy) } if r.Intn(10) != 0 { this.I32 = google_protobuf3.NewPopulatedInt32Value(r, easy) } if r.Intn(10) != 0 { this.U32 = google_protobuf3.NewPopulatedUInt32Value(r, easy) } if r.Intn(10) != 0 { this.Bool = google_protobuf3.NewPopulatedBoolValue(r, easy) } if r.Intn(10) != 0 { this.Str = google_protobuf3.NewPopulatedStringValue(r, easy) } if r.Intn(10) != 0 { this.Bytes = google_protobuf3.NewPopulatedBytesValue(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedProtoTypes(r randyTypes, easy bool) *ProtoTypes { this := &ProtoTypes{} if r.Intn(10) != 0 { this.NullableTimestamp = google_protobuf2.NewPopulatedTimestamp(r, easy) } if r.Intn(10) != 0 { this.NullableDuration = google_protobuf1.NewPopulatedDuration(r, easy) } v1 := google_protobuf2.NewPopulatedTimestamp(r, easy) this.Timestamp = *v1 v2 := google_protobuf1.NewPopulatedDuration(r, easy) this.Duration = *v2 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedStdTypes(r randyTypes, easy bool) *StdTypes { this := &StdTypes{} if r.Intn(10) != 0 { this.NullableTimestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } if r.Intn(10) != 0 { this.NullableDuration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } v3 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamp = *v3 v4 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Duration = *v4 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedRepProtoTypes(r randyTypes, easy bool) *RepProtoTypes { this := &RepProtoTypes{} if r.Intn(10) != 0 { v5 := r.Intn(5) this.NullableTimestamps = make([]*google_protobuf2.Timestamp, v5) for i := 0; i < v5; i++ { this.NullableTimestamps[i] = google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v6 := r.Intn(5) this.NullableDurations = make([]*google_protobuf1.Duration, v6) for i := 0; i < v6; i++ { this.NullableDurations[i] = google_protobuf1.NewPopulatedDuration(r, easy) } } if r.Intn(10) != 0 { v7 := r.Intn(5) this.Timestamps = make([]google_protobuf2.Timestamp, v7) for i := 0; i < v7; i++ { v8 := google_protobuf2.NewPopulatedTimestamp(r, easy) this.Timestamps[i] = *v8 } } if r.Intn(10) != 0 { v9 := r.Intn(5) this.Durations = make([]google_protobuf1.Duration, v9) for i := 0; i < v9; i++ { v10 := google_protobuf1.NewPopulatedDuration(r, easy) this.Durations[i] = *v10 } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedRepStdTypes(r randyTypes, easy bool) *RepStdTypes { this := &RepStdTypes{} if r.Intn(10) != 0 { v11 := r.Intn(5) this.NullableTimestamps = make([]*time.Time, v11) for i := 0; i < v11; i++ { this.NullableTimestamps[i] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v12 := r.Intn(5) this.NullableDurations = make([]*time.Duration, v12) for i := 0; i < v12; i++ { this.NullableDurations[i] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v13 := r.Intn(5) this.Timestamps = make([]time.Time, v13) for i := 0; i < v13; i++ { v14 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamps[i] = *v14 } } if r.Intn(10) != 0 { v15 := r.Intn(5) this.Durations = make([]time.Duration, v15) for i := 0; i < v15; i++ { v16 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Durations[i] = *v16 } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMapProtoTypes(r randyTypes, easy bool) *MapProtoTypes { this := &MapProtoTypes{} if r.Intn(10) != 0 { v17 := r.Intn(10) this.NullableTimestamp = make(map[int32]*google_protobuf2.Timestamp) for i := 0; i < v17; i++ { this.NullableTimestamp[int32(r.Int31())] = google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Timestamp = make(map[int32]google_protobuf2.Timestamp) for i := 0; i < v18; i++ { this.Timestamp[int32(r.Int31())] = *google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.NullableDuration = make(map[int32]*google_protobuf1.Duration) for i := 0; i < v19; i++ { this.NullableDuration[int32(r.Int31())] = google_protobuf1.NewPopulatedDuration(r, easy) } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Duration = make(map[int32]google_protobuf1.Duration) for i := 0; i < v20; i++ { this.Duration[int32(r.Int31())] = *google_protobuf1.NewPopulatedDuration(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMapStdTypes(r randyTypes, easy bool) *MapStdTypes { this := &MapStdTypes{} if r.Intn(10) != 0 { v21 := r.Intn(10) this.NullableTimestamp = make(map[int32]*time.Time) for i := 0; i < v21; i++ { this.NullableTimestamp[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Timestamp = make(map[int32]time.Time) for i := 0; i < v22; i++ { this.Timestamp[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.NullableDuration = make(map[int32]*time.Duration) for i := 0; i < v23; i++ { this.NullableDuration[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Duration = make(map[int32]time.Duration) for i := 0; i < v24; i++ { this.Duration[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofProtoTypes(r randyTypes, easy bool) *OneofProtoTypes { this := &OneofProtoTypes{} oneofNumber_OneOfProtoTimes := []int32{1, 2}[r.Intn(2)] switch oneofNumber_OneOfProtoTimes { case 1: this.OneOfProtoTimes = NewPopulatedOneofProtoTypes_Timestamp(r, easy) case 2: this.OneOfProtoTimes = NewPopulatedOneofProtoTypes_Duration(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofProtoTypes_Timestamp(r randyTypes, easy bool) *OneofProtoTypes_Timestamp { this := &OneofProtoTypes_Timestamp{} this.Timestamp = google_protobuf2.NewPopulatedTimestamp(r, easy) return this } func NewPopulatedOneofProtoTypes_Duration(r randyTypes, easy bool) *OneofProtoTypes_Duration { this := &OneofProtoTypes_Duration{} this.Duration = google_protobuf1.NewPopulatedDuration(r, easy) return this } func NewPopulatedOneofStdTypes(r randyTypes, easy bool) *OneofStdTypes { this := &OneofStdTypes{} oneofNumber_OneOfStdTimes := []int32{1, 2}[r.Intn(2)] switch oneofNumber_OneOfStdTimes { case 1: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Timestamp(r, easy) case 2: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Duration(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofStdTypes_Timestamp(r randyTypes, easy bool) *OneofStdTypes_Timestamp { this := &OneofStdTypes_Timestamp{} this.Timestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) return this } func NewPopulatedOneofStdTypes_Duration(r randyTypes, easy bool) *OneofStdTypes_Duration { this := &OneofStdTypes_Duration{} this.Duration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) return this } type randyTypes interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTypes(r randyTypes) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTypes(r randyTypes) string { v25 := r.Intn(100) tmps := make([]rune, v25) for i := 0; i < v25; i++ { tmps[i] = randUTF8RuneTypes(r) } return string(tmps) } func randUnrecognizedTypes(r randyTypes, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTypes(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTypes(dAtA []byte, r randyTypes, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) v26 := r.Int63() if r.Intn(2) == 0 { v26 *= -1 } dAtA = encodeVarintPopulateTypes(dAtA, uint64(v26)) case 1: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTypes(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTypes(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *KnownTypes) Size() (n int) { var l int _ = l if m.Dur != nil { l = m.Dur.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Ts != nil { l = m.Ts.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Dbl != nil { l = m.Dbl.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Flt != nil { l = m.Flt.Size() n += 1 + l + sovTypes(uint64(l)) } if m.I64 != nil { l = m.I64.Size() n += 1 + l + sovTypes(uint64(l)) } if m.U64 != nil { l = m.U64.Size() n += 1 + l + sovTypes(uint64(l)) } if m.I32 != nil { l = m.I32.Size() n += 1 + l + sovTypes(uint64(l)) } if m.U32 != nil { l = m.U32.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Bool != nil { l = m.Bool.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Str != nil { l = m.Str.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Bytes != nil { l = m.Bytes.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *ProtoTypes) Size() (n int) { var l int _ = l if m.NullableTimestamp != nil { l = m.NullableTimestamp.Size() n += 1 + l + sovTypes(uint64(l)) } if m.NullableDuration != nil { l = m.NullableDuration.Size() n += 1 + l + sovTypes(uint64(l)) } l = m.Timestamp.Size() n += 1 + l + sovTypes(uint64(l)) l = m.Duration.Size() n += 1 + l + sovTypes(uint64(l)) return n } func (m *StdTypes) Size() (n int) { var l int _ = l if m.NullableTimestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.NullableTimestamp) n += 1 + l + sovTypes(uint64(l)) } if m.NullableDuration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.NullableDuration) n += 1 + l + sovTypes(uint64(l)) } l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp) n += 1 + l + sovTypes(uint64(l)) l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.Duration) n += 1 + l + sovTypes(uint64(l)) return n } func (m *RepProtoTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamps) > 0 { for _, e := range m.NullableTimestamps { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.NullableDurations) > 0 { for _, e := range m.NullableDurations { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.Timestamps) > 0 { for _, e := range m.Timestamps { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.Durations) > 0 { for _, e := range m.Durations { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } return n } func (m *RepStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamps) > 0 { for _, e := range m.NullableTimestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(*e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.NullableDurations) > 0 { for _, e := range m.NullableDurations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.Timestamps) > 0 { for _, e := range m.Timestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.Durations) > 0 { for _, e := range m.Durations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(e) n += 1 + l + sovTypes(uint64(l)) } } return n } func (m *MapProtoTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamp) > 0 { for k, v := range m.NullableTimestamp { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Timestamp) > 0 { for k, v := range m.Timestamp { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Duration) > 0 { for k, v := range m.Duration { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } return n } func (m *MapStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamp) > 0 { for k, v := range m.NullableTimestamp { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*v) l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Timestamp) > 0 { for k, v := range m.Timestamp { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdTime(v) mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*v) l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Duration) > 0 { for k, v := range m.Duration { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdDuration(v) mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } return n } func (m *OneofProtoTypes) Size() (n int) { var l int _ = l if m.OneOfProtoTimes != nil { n += m.OneOfProtoTimes.Size() } return n } func (m *OneofProtoTypes_Timestamp) Size() (n int) { var l int _ = l if m.Timestamp != nil { l = m.Timestamp.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofProtoTypes_Duration) Size() (n int) { var l int _ = l if m.Duration != nil { l = m.Duration.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofStdTypes) Size() (n int) { var l int _ = l if m.OneOfStdTimes != nil { n += m.OneOfStdTimes.Size() } return n } func (m *OneofStdTypes_Timestamp) Size() (n int) { var l int _ = l if m.Timestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.Timestamp) n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofStdTypes_Duration) Size() (n int) { var l int _ = l if m.Duration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.Duration) n += 1 + l + sovTypes(uint64(l)) } return n } func sovTypes(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTypes(x uint64) (n int) { return sovTypes(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func init() { proto.RegisterFile("combos/marshaler/types.proto", fileDescriptorTypes) } var fileDescriptorTypes = []byte{ // 927 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0xcd, 0x8e, 0xdb, 0x54, 0x18, 0x8d, 0x7f, 0x52, 0x32, 0x5f, 0x14, 0xda, 0x5a, 0x02, 0x99, 0x50, 0x39, 0x43, 0xd8, 0x0c, 0xad, 0xea, 0x40, 0x12, 0x05, 0x34, 0xa8, 0x50, 0xac, 0x69, 0x3b, 0xa5, 0x9a, 0x4e, 0x95, 0x96, 0x11, 0x20, 0x81, 0xb0, 0x1b, 0x27, 0x8d, 0x70, 0x7c, 0x23, 0xfb, 0x9a, 0x2a, 0x3b, 0x1e, 0x81, 0x25, 0x88, 0x0d, 0xdd, 0x21, 0xc1, 0x1e, 0x96, 0x6c, 0x90, 0xba, 0x83, 0x27, 0x80, 0x36, 0x6c, 0x78, 0x84, 0x2e, 0xd1, 0xbd, 0xbe, 0xfe, 0x8b, 0xaf, 0x1d, 0x12, 0x69, 0xc4, 0x86, 0xdd, 0x78, 0x7c, 0xce, 0xf1, 0xf1, 0xf1, 0xf9, 0xbe, 0x1b, 0xb8, 0x70, 0x1f, 0xcd, 0x2c, 0xe4, 0x77, 0x66, 0xa6, 0xe7, 0x3f, 0x30, 0x1d, 0xdb, 0xeb, 0xe0, 0xc5, 0xdc, 0xf6, 0xf5, 0xb9, 0x87, 0x30, 0x52, 0xaa, 0xf4, 0xa2, 0x79, 0x79, 0x32, 0xc5, 0x0f, 0x02, 0x4b, 0xbf, 0x8f, 0x66, 0x9d, 0x09, 0x9a, 0xa0, 0x0e, 0xbd, 0x6b, 0x05, 0x63, 0x7a, 0x45, 0x2f, 0xe8, 0x5f, 0x21, 0xab, 0xa9, 0x4d, 0x10, 0x9a, 0x38, 0x76, 0x82, 0x1a, 0x05, 0x9e, 0x89, 0xa7, 0xc8, 0x65, 0xf7, 0x5b, 0xab, 0xf7, 0xf1, 0x74, 0x66, 0xfb, 0xd8, 0x9c, 0xcd, 0x8b, 0x04, 0x1e, 0x7a, 0xe6, 0x7c, 0x6e, 0x7b, 0xcc, 0x56, 0xfb, 0x5b, 0x19, 0xe0, 0x96, 0x8b, 0x1e, 0xba, 0xf7, 0x88, 0x3d, 0xe5, 0x12, 0x48, 0xa3, 0xc0, 0x53, 0x85, 0x5d, 0x61, 0xaf, 0xde, 0x7d, 0x49, 0x0f, 0xc9, 0x7a, 0x44, 0xd6, 0x0f, 0xd8, 0xd3, 0x87, 0x04, 0xa5, 0x5c, 0x04, 0x11, 0xfb, 0xaa, 0x48, 0xb1, 0xcd, 0x1c, 0xf6, 0x5e, 0xe4, 0x64, 0x28, 0x62, 0x5f, 0xd1, 0x41, 0x1a, 0x59, 0x8e, 0x2a, 0x51, 0xf0, 0x85, 0xbc, 0x30, 0x0a, 0x2c, 0xc7, 0x3e, 0x31, 0x9d, 0xc0, 0x1e, 0x12, 0xa0, 0x72, 0x19, 0xa4, 0xb1, 0x83, 0x55, 0x99, 0xe2, 0x5f, 0xce, 0xe1, 0xaf, 0x3b, 0xc8, 0xc4, 0x0c, 0x3e, 0x76, 0x30, 0x81, 0x4f, 0x07, 0x7d, 0xb5, 0x5a, 0x00, 0xbf, 0xe9, 0xe2, 0x41, 0x9f, 0xc1, 0xa7, 0x83, 0x3e, 0x71, 0x13, 0x0c, 0xfa, 0xea, 0x99, 0x02, 0x37, 0x1f, 0xa4, 0xf1, 0xc1, 0xa0, 0x4f, 0xe5, 0x7b, 0x5d, 0xf5, 0xb9, 0x62, 0xf9, 0x5e, 0x37, 0x92, 0xef, 0x75, 0xa9, 0x7c, 0xaf, 0xab, 0xd6, 0x4a, 0xe4, 0x63, 0x7c, 0x40, 0xf1, 0xb2, 0x85, 0x90, 0xa3, 0xee, 0x14, 0x44, 0x69, 0x20, 0xe4, 0x84, 0x70, 0x8a, 0x23, 0xfa, 0x3e, 0xf6, 0x54, 0x28, 0xd0, 0xbf, 0x8b, 0xbd, 0xa9, 0x3b, 0x61, 0xfa, 0x3e, 0xf6, 0x94, 0x37, 0xa0, 0x6a, 0x2d, 0xb0, 0xed, 0xab, 0xf5, 0x82, 0x17, 0x30, 0xc8, 0xdd, 0x90, 0x10, 0x22, 0xf7, 0xe5, 0xbf, 0x1f, 0xb5, 0x84, 0xf6, 0x77, 0x22, 0xc0, 0x1d, 0x02, 0x0a, 0xdb, 0x71, 0x08, 0xe7, 0xdd, 0xc0, 0x71, 0x4c, 0xcb, 0xb1, 0xe3, 0xaf, 0xcb, 0xba, 0x52, 0xf6, 0xfd, 0xf3, 0x24, 0xe5, 0x1a, 0x9c, 0x8b, 0xfe, 0x19, 0x75, 0x8a, 0x15, 0xa9, 0xa4, 0x74, 0x39, 0x8a, 0xf2, 0x0e, 0xec, 0xc4, 0x85, 0x67, 0xdd, 0x2a, 0x31, 0x62, 0xc8, 0x8f, 0xff, 0x68, 0x55, 0x86, 0x09, 0x45, 0x79, 0x1b, 0x6a, 0xd1, 0x40, 0xb1, 0xaa, 0x15, 0x3f, 0x9e, 0xb1, 0x63, 0x02, 0x8b, 0xe8, 0x47, 0x11, 0x6a, 0x77, 0xf1, 0x28, 0x0c, 0xe8, 0xf6, 0x56, 0x01, 0x19, 0xf2, 0x57, 0x7f, 0xb6, 0x04, 0x5e, 0x4c, 0xb7, 0xb6, 0x88, 0xc9, 0x90, 0xbf, 0x26, 0x6a, 0xf9, 0xb0, 0x8c, 0xcd, 0xc2, 0xaa, 0x91, 0xd7, 0xa5, 0xc6, 0x52, 0x81, 0xbd, 0xbb, 0x49, 0x60, 0x54, 0x81, 0x9a, 0x89, 0x49, 0xed, 0x1f, 0x44, 0x68, 0x0c, 0xed, 0x79, 0xaa, 0x54, 0xef, 0x83, 0x92, 0x7b, 0x71, 0x5f, 0x15, 0x76, 0xa5, 0x35, 0xad, 0xe2, 0xb0, 0x94, 0x1b, 0x49, 0xfe, 0x91, 0x0b, 0xb2, 0xa0, 0xa4, 0xf2, 0x5e, 0xe5, 0x39, 0xca, 0x55, 0x00, 0x9c, 0x98, 0x91, 0xd6, 0x99, 0x61, 0xdd, 0x48, 0x71, 0x94, 0x2b, 0xb0, 0x33, 0x8a, 0x2d, 0xc8, 0x6b, 0x2c, 0x44, 0xcd, 0x8c, 0x19, 0xac, 0x5c, 0x3f, 0x89, 0x50, 0x1f, 0xda, 0xf3, 0xb8, 0x5f, 0x77, 0xb6, 0xcb, 0x8a, 0x15, 0x8c, 0x97, 0xd8, 0xd1, 0x36, 0x89, 0xb1, 0x8a, 0x71, 0x72, 0x3b, 0xd8, 0x30, 0xb7, 0xa4, 0x64, 0xe9, 0xec, 0xde, 0xdb, 0x28, 0xbb, 0xa4, 0x66, 0x09, 0xab, 0xfd, 0x6b, 0x15, 0x1a, 0x47, 0x66, 0xba, 0x67, 0x1f, 0xf1, 0x67, 0x93, 0x88, 0x5f, 0xd2, 0xc3, 0x93, 0x3a, 0x43, 0xd0, 0x6f, 0xaf, 0xa2, 0xaf, 0xb9, 0xd8, 0x5b, 0xf0, 0xc6, 0xf4, 0x46, 0x7a, 0xb2, 0xc2, 0xf0, 0x5e, 0xe5, 0x4a, 0x66, 0xa5, 0xf2, 0xfb, 0xe8, 0x84, 0x33, 0xef, 0x61, 0x88, 0x17, 0x4b, 0x2d, 0x46, 0xe0, 0xd0, 0x61, 0x7e, 0xf4, 0x0f, 0x32, 0x63, 0x4b, 0xf4, 0xda, 0x5c, 0xbd, 0x8c, 0xce, 0xea, 0xc2, 0x6b, 0x7e, 0x06, 0x2f, 0xf2, 0x33, 0x51, 0xce, 0x81, 0xf4, 0xb9, 0xbd, 0xa0, 0x9b, 0xae, 0x3a, 0x24, 0x7f, 0x2a, 0xaf, 0x43, 0xf5, 0x0b, 0x72, 0x9e, 0xfc, 0x8b, 0x9f, 0x07, 0x21, 0x70, 0x5f, 0x7c, 0x4b, 0x68, 0x7e, 0x08, 0xcf, 0x9f, 0x92, 0xf2, 0xa7, 0xf0, 0x02, 0x37, 0x2c, 0xce, 0x03, 0x3a, 0xd9, 0x07, 0x94, 0x2c, 0x8e, 0x94, 0xfe, 0x09, 0x34, 0x4e, 0x43, 0xb7, 0xfd, 0x5b, 0x15, 0xea, 0x47, 0x66, 0xb2, 0x01, 0x3e, 0x29, 0x6e, 0xf1, 0x6b, 0xc9, 0x27, 0x8d, 0xe0, 0x05, 0x1d, 0x2e, 0x3e, 0x70, 0x6e, 0xe6, 0x9b, 0xfc, 0x0a, 0x47, 0x76, 0x45, 0x8e, 0x7b, 0x54, 0x7c, 0x5c, 0xd8, 0xe5, 0xbd, 0x12, 0xa3, 0x2b, 0x0d, 0x2c, 0x38, 0xca, 0xae, 0xe7, 0xfa, 0xbc, 0xcb, 0xd1, 0xcc, 0x6a, 0x71, 0x4e, 0xa3, 0xff, 0x1b, 0xfd, 0x1f, 0x34, 0xfa, 0x1b, 0x01, 0xce, 0x1e, 0xbb, 0x36, 0x1a, 0xa7, 0x76, 0xf3, 0x7e, 0xba, 0x76, 0x6b, 0x7f, 0x2f, 0x1d, 0x66, 0x76, 0xe6, 0x9b, 0xa9, 0x2e, 0xac, 0xf3, 0x71, 0x98, 0x5a, 0x67, 0xc6, 0x79, 0xea, 0xe3, 0x98, 0xf9, 0x20, 0x7a, 0xed, 0x47, 0x02, 0x34, 0xa8, 0xb7, 0x78, 0xde, 0xae, 0x6e, 0xe4, 0x2c, 0x1c, 0xac, 0xac, 0xbf, 0x2b, 0x1b, 0xf8, 0x0b, 0x0b, 0x9f, 0x71, 0x79, 0x96, 0x3a, 0x3a, 0xa6, 0x8e, 0x88, 0xa6, 0xb1, 0xf7, 0xe4, 0xa9, 0x26, 0x3c, 0x7b, 0xaa, 0x09, 0xdf, 0x2f, 0x35, 0xe1, 0xe7, 0xa5, 0x26, 0xfc, 0xb2, 0xd4, 0x84, 0xc7, 0x4b, 0x4d, 0xf8, 0x7d, 0xa9, 0x55, 0x9e, 0x2c, 0x35, 0xe1, 0xd9, 0x52, 0xab, 0x7c, 0xf9, 0x97, 0x56, 0xb1, 0xce, 0x50, 0xfd, 0xde, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xb2, 0x8a, 0x72, 0x25, 0x99, 0x0e, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/types/combos/marshaler/types.proto000066400000000000000000000126261317075173200251700ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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 = "proto3"; package types; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; //import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; //import "google/protobuf/struct.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/wrappers.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message KnownTypes { option (gogoproto.compare) = true; google.protobuf.Duration dur = 1; google.protobuf.Timestamp ts = 2; google.protobuf.DoubleValue dbl = 3; google.protobuf.FloatValue flt = 4; google.protobuf.Int64Value i64 = 5; google.protobuf.UInt64Value u64 = 6; google.protobuf.Int32Value i32 = 7; google.protobuf.UInt32Value u32 = 8; google.protobuf.BoolValue bool = 9; google.protobuf.StringValue str = 10; google.protobuf.BytesValue bytes = 11; // TODO uncomment this once https://github.com/gogo/protobuf/issues/197 is fixed // google.protobuf.Struct st = 12; // google.protobuf.Any an = 14; } message ProtoTypes { // TODO this should be a compare_all at the top of the file once time.Time, time.Duration, oneof and map is supported by compare option (gogoproto.compare) = true; google.protobuf.Timestamp nullableTimestamp = 1; google.protobuf.Duration nullableDuration = 2; google.protobuf.Timestamp timestamp = 3 [(gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.nullable) = false]; } message StdTypes { google.protobuf.Timestamp nullableTimestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration nullableDuration = 2 [(gogoproto.stdduration) = true]; google.protobuf.Timestamp timestamp = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message RepProtoTypes { option (gogoproto.compare) = true; repeated google.protobuf.Timestamp nullableTimestamps = 1; repeated google.protobuf.Duration nullableDurations = 2; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.nullable) = false]; } message RepStdTypes { repeated google.protobuf.Timestamp nullableTimestamps = 1 [(gogoproto.stdtime) = true]; repeated google.protobuf.Duration nullableDurations = 2 [(gogoproto.stdduration) = true]; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message MapProtoTypes { map nullableTimestamp = 1; map timestamp = 2 [(gogoproto.nullable) = false]; map nullableDuration = 3; map duration = 4 [(gogoproto.nullable) = false]; } message MapStdTypes { map nullableTimestamp = 1 [(gogoproto.stdtime) = true]; map timestamp = 2 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; map nullableDuration = 3 [(gogoproto.stdduration) = true]; map duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message OneofProtoTypes { oneof OneOfProtoTimes { google.protobuf.Timestamp timestamp = 1; google.protobuf.Duration duration = 2; } } message OneofStdTypes { oneof OneOfStdTimes { google.protobuf.Timestamp timestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration duration = 2 [(gogoproto.stdduration) = true]; } } golang-gogoprotobuf-0.5/test/types/combos/marshaler/types_test.go000066400000000000000000000155121317075173200254660ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package types import ( math_rand "math/rand" "testing" "time" "github.com/gogo/protobuf/jsonpb" "github.com/gogo/protobuf/proto" ) func TestFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } golang-gogoprotobuf-0.5/test/types/combos/marshaler/typespb_test.go000066400000000000000000001643171317075173200260200ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/marshaler/types.proto /* Package types is a generated protocol buffer package. It is generated from these files: combos/marshaler/types.proto It has these top-level messages: KnownTypes ProtoTypes StdTypes RepProtoTypes RepStdTypes MapProtoTypes MapStdTypes OneofProtoTypes OneofStdTypes */ package types import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestKnownTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestKnownTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkKnownTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*KnownTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedKnownTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkKnownTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedKnownTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &KnownTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestProtoTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestStdTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &StdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRepProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestRepProtoTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkRepProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedRepProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRepProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedRepProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &RepProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestRepStdTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkRepStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRepStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedRepStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &RepStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMapProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMapProtoTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMapProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMapProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMapProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMapProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MapProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestMapStdTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkMapStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMapStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMapStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MapStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOneofProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOneofProtoTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkOneofProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOneofProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOneofProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOneofProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OneofProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOneofStdTypesMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func BenchmarkOneofStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOneofStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOneofStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OneofStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestKnownTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRepProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRepStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestKnownTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKnownTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKnownTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedKnownTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestProtoTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedProtoTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestRepProtoTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedRepProtoTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestKnownTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRepProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRepStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOneofProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOneofStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestKnownTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkKnownTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*KnownTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedKnownTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRepProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRepProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedRepProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRepStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMapProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMapProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMapProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMapStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOneofProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOneofProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOneofProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOneofStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/types/combos/neither/000077500000000000000000000000001317075173200224105ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/types/combos/neither/types.pb.go000066400000000000000000002302451317075173200245110ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/types.proto /* Package types is a generated protocol buffer package. It is generated from these files: combos/neither/types.proto It has these top-level messages: KnownTypes ProtoTypes StdTypes RepProtoTypes RepStdTypes MapProtoTypes MapStdTypes OneofProtoTypes OneofStdTypes */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import google_protobuf1 "github.com/gogo/protobuf/types" import google_protobuf2 "github.com/gogo/protobuf/types" import google_protobuf3 "github.com/gogo/protobuf/types" import time "time" import github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf var _ = time.Kitchen // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type KnownTypes struct { Dur *google_protobuf1.Duration `protobuf:"bytes,1,opt,name=dur" json:"dur,omitempty"` Ts *google_protobuf2.Timestamp `protobuf:"bytes,2,opt,name=ts" json:"ts,omitempty"` Dbl *google_protobuf3.DoubleValue `protobuf:"bytes,3,opt,name=dbl" json:"dbl,omitempty"` Flt *google_protobuf3.FloatValue `protobuf:"bytes,4,opt,name=flt" json:"flt,omitempty"` I64 *google_protobuf3.Int64Value `protobuf:"bytes,5,opt,name=i64" json:"i64,omitempty"` U64 *google_protobuf3.UInt64Value `protobuf:"bytes,6,opt,name=u64" json:"u64,omitempty"` I32 *google_protobuf3.Int32Value `protobuf:"bytes,7,opt,name=i32" json:"i32,omitempty"` U32 *google_protobuf3.UInt32Value `protobuf:"bytes,8,opt,name=u32" json:"u32,omitempty"` Bool *google_protobuf3.BoolValue `protobuf:"bytes,9,opt,name=bool" json:"bool,omitempty"` Str *google_protobuf3.StringValue `protobuf:"bytes,10,opt,name=str" json:"str,omitempty"` Bytes *google_protobuf3.BytesValue `protobuf:"bytes,11,opt,name=bytes" json:"bytes,omitempty"` } func (m *KnownTypes) Reset() { *m = KnownTypes{} } func (m *KnownTypes) String() string { return proto.CompactTextString(m) } func (*KnownTypes) ProtoMessage() {} func (*KnownTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{0} } func (m *KnownTypes) GetDur() *google_protobuf1.Duration { if m != nil { return m.Dur } return nil } func (m *KnownTypes) GetTs() *google_protobuf2.Timestamp { if m != nil { return m.Ts } return nil } func (m *KnownTypes) GetDbl() *google_protobuf3.DoubleValue { if m != nil { return m.Dbl } return nil } func (m *KnownTypes) GetFlt() *google_protobuf3.FloatValue { if m != nil { return m.Flt } return nil } func (m *KnownTypes) GetI64() *google_protobuf3.Int64Value { if m != nil { return m.I64 } return nil } func (m *KnownTypes) GetU64() *google_protobuf3.UInt64Value { if m != nil { return m.U64 } return nil } func (m *KnownTypes) GetI32() *google_protobuf3.Int32Value { if m != nil { return m.I32 } return nil } func (m *KnownTypes) GetU32() *google_protobuf3.UInt32Value { if m != nil { return m.U32 } return nil } func (m *KnownTypes) GetBool() *google_protobuf3.BoolValue { if m != nil { return m.Bool } return nil } func (m *KnownTypes) GetStr() *google_protobuf3.StringValue { if m != nil { return m.Str } return nil } func (m *KnownTypes) GetBytes() *google_protobuf3.BytesValue { if m != nil { return m.Bytes } return nil } type ProtoTypes struct { NullableTimestamp *google_protobuf2.Timestamp `protobuf:"bytes,1,opt,name=nullableTimestamp" json:"nullableTimestamp,omitempty"` NullableDuration *google_protobuf1.Duration `protobuf:"bytes,2,opt,name=nullableDuration" json:"nullableDuration,omitempty"` Timestamp google_protobuf2.Timestamp `protobuf:"bytes,3,opt,name=timestamp" json:"timestamp"` Duration google_protobuf1.Duration `protobuf:"bytes,4,opt,name=duration" json:"duration"` } func (m *ProtoTypes) Reset() { *m = ProtoTypes{} } func (m *ProtoTypes) String() string { return proto.CompactTextString(m) } func (*ProtoTypes) ProtoMessage() {} func (*ProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{1} } func (m *ProtoTypes) GetNullableTimestamp() *google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamp } return nil } func (m *ProtoTypes) GetNullableDuration() *google_protobuf1.Duration { if m != nil { return m.NullableDuration } return nil } func (m *ProtoTypes) GetTimestamp() google_protobuf2.Timestamp { if m != nil { return m.Timestamp } return google_protobuf2.Timestamp{} } func (m *ProtoTypes) GetDuration() google_protobuf1.Duration { if m != nil { return m.Duration } return google_protobuf1.Duration{} } type StdTypes struct { NullableTimestamp *time.Time `protobuf:"bytes,1,opt,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty"` NullableDuration *time.Duration `protobuf:"bytes,2,opt,name=nullableDuration,stdduration" json:"nullableDuration,omitempty"` Timestamp time.Time `protobuf:"bytes,3,opt,name=timestamp,stdtime" json:"timestamp"` Duration time.Duration `protobuf:"bytes,4,opt,name=duration,stdduration" json:"duration"` } func (m *StdTypes) Reset() { *m = StdTypes{} } func (m *StdTypes) String() string { return proto.CompactTextString(m) } func (*StdTypes) ProtoMessage() {} func (*StdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{2} } func (m *StdTypes) GetNullableTimestamp() *time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *StdTypes) GetNullableDuration() *time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *StdTypes) GetTimestamp() time.Time { if m != nil { return m.Timestamp } return time.Time{} } func (m *StdTypes) GetDuration() time.Duration { if m != nil { return m.Duration } return 0 } type RepProtoTypes struct { NullableTimestamps []*google_protobuf2.Timestamp `protobuf:"bytes,1,rep,name=nullableTimestamps" json:"nullableTimestamps,omitempty"` NullableDurations []*google_protobuf1.Duration `protobuf:"bytes,2,rep,name=nullableDurations" json:"nullableDurations,omitempty"` Timestamps []google_protobuf2.Timestamp `protobuf:"bytes,3,rep,name=timestamps" json:"timestamps"` Durations []google_protobuf1.Duration `protobuf:"bytes,4,rep,name=durations" json:"durations"` } func (m *RepProtoTypes) Reset() { *m = RepProtoTypes{} } func (m *RepProtoTypes) String() string { return proto.CompactTextString(m) } func (*RepProtoTypes) ProtoMessage() {} func (*RepProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{3} } func (m *RepProtoTypes) GetNullableTimestamps() []*google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamps } return nil } func (m *RepProtoTypes) GetNullableDurations() []*google_protobuf1.Duration { if m != nil { return m.NullableDurations } return nil } func (m *RepProtoTypes) GetTimestamps() []google_protobuf2.Timestamp { if m != nil { return m.Timestamps } return nil } func (m *RepProtoTypes) GetDurations() []google_protobuf1.Duration { if m != nil { return m.Durations } return nil } type RepStdTypes struct { NullableTimestamps []*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamps,stdtime" json:"nullableTimestamps,omitempty"` NullableDurations []*time.Duration `protobuf:"bytes,2,rep,name=nullableDurations,stdduration" json:"nullableDurations,omitempty"` Timestamps []time.Time `protobuf:"bytes,3,rep,name=timestamps,stdtime" json:"timestamps"` Durations []time.Duration `protobuf:"bytes,4,rep,name=durations,stdduration" json:"durations"` } func (m *RepStdTypes) Reset() { *m = RepStdTypes{} } func (m *RepStdTypes) String() string { return proto.CompactTextString(m) } func (*RepStdTypes) ProtoMessage() {} func (*RepStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{4} } func (m *RepStdTypes) GetNullableTimestamps() []*time.Time { if m != nil { return m.NullableTimestamps } return nil } func (m *RepStdTypes) GetNullableDurations() []*time.Duration { if m != nil { return m.NullableDurations } return nil } func (m *RepStdTypes) GetTimestamps() []time.Time { if m != nil { return m.Timestamps } return nil } func (m *RepStdTypes) GetDurations() []time.Duration { if m != nil { return m.Durations } return nil } type MapProtoTypes struct { NullableTimestamp map[int32]*google_protobuf2.Timestamp `protobuf:"bytes,1,rep,name=nullableTimestamp" json:"nullableTimestamp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Timestamp map[int32]google_protobuf2.Timestamp `protobuf:"bytes,2,rep,name=timestamp" json:"timestamp" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` NullableDuration map[int32]*google_protobuf1.Duration `protobuf:"bytes,3,rep,name=nullableDuration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Duration map[int32]google_protobuf1.Duration `protobuf:"bytes,4,rep,name=duration" json:"duration" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapProtoTypes) Reset() { *m = MapProtoTypes{} } func (m *MapProtoTypes) String() string { return proto.CompactTextString(m) } func (*MapProtoTypes) ProtoMessage() {} func (*MapProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{5} } func (m *MapProtoTypes) GetNullableTimestamp() map[int32]*google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamp } return nil } func (m *MapProtoTypes) GetTimestamp() map[int32]google_protobuf2.Timestamp { if m != nil { return m.Timestamp } return nil } func (m *MapProtoTypes) GetNullableDuration() map[int32]*google_protobuf1.Duration { if m != nil { return m.NullableDuration } return nil } func (m *MapProtoTypes) GetDuration() map[int32]google_protobuf1.Duration { if m != nil { return m.Duration } return nil } type MapStdTypes struct { NullableTimestamp map[int32]*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Timestamp map[int32]time.Time `protobuf:"bytes,2,rep,name=timestamp,stdtime" json:"timestamp" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` NullableDuration map[int32]*time.Duration `protobuf:"bytes,3,rep,name=nullableDuration,stdduration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Duration map[int32]time.Duration `protobuf:"bytes,4,rep,name=duration,stdduration" json:"duration" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapStdTypes) Reset() { *m = MapStdTypes{} } func (m *MapStdTypes) String() string { return proto.CompactTextString(m) } func (*MapStdTypes) ProtoMessage() {} func (*MapStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{6} } func (m *MapStdTypes) GetNullableTimestamp() map[int32]*time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *MapStdTypes) GetTimestamp() map[int32]time.Time { if m != nil { return m.Timestamp } return nil } func (m *MapStdTypes) GetNullableDuration() map[int32]*time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *MapStdTypes) GetDuration() map[int32]time.Duration { if m != nil { return m.Duration } return nil } type OneofProtoTypes struct { // Types that are valid to be assigned to OneOfProtoTimes: // *OneofProtoTypes_Timestamp // *OneofProtoTypes_Duration OneOfProtoTimes isOneofProtoTypes_OneOfProtoTimes `protobuf_oneof:"OneOfProtoTimes"` } func (m *OneofProtoTypes) Reset() { *m = OneofProtoTypes{} } func (m *OneofProtoTypes) String() string { return proto.CompactTextString(m) } func (*OneofProtoTypes) ProtoMessage() {} func (*OneofProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{7} } type isOneofProtoTypes_OneOfProtoTimes interface { isOneofProtoTypes_OneOfProtoTimes() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type OneofProtoTypes_Timestamp struct { Timestamp *google_protobuf2.Timestamp `protobuf:"bytes,1,opt,name=timestamp,oneof"` } type OneofProtoTypes_Duration struct { Duration *google_protobuf1.Duration `protobuf:"bytes,2,opt,name=duration,oneof"` } func (*OneofProtoTypes_Timestamp) isOneofProtoTypes_OneOfProtoTimes() {} func (*OneofProtoTypes_Duration) isOneofProtoTypes_OneOfProtoTimes() {} func (m *OneofProtoTypes) GetOneOfProtoTimes() isOneofProtoTypes_OneOfProtoTimes { if m != nil { return m.OneOfProtoTimes } return nil } func (m *OneofProtoTypes) GetTimestamp() *google_protobuf2.Timestamp { if x, ok := m.GetOneOfProtoTimes().(*OneofProtoTypes_Timestamp); ok { return x.Timestamp } return nil } func (m *OneofProtoTypes) GetDuration() *google_protobuf1.Duration { if x, ok := m.GetOneOfProtoTimes().(*OneofProtoTypes_Duration); ok { return x.Duration } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofProtoTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofProtoTypes_OneofMarshaler, _OneofProtoTypes_OneofUnmarshaler, _OneofProtoTypes_OneofSizer, []interface{}{ (*OneofProtoTypes_Timestamp)(nil), (*OneofProtoTypes_Duration)(nil), } } func _OneofProtoTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofProtoTypes) // OneOfProtoTimes switch x := m.OneOfProtoTimes.(type) { case *OneofProtoTypes_Timestamp: _ = b.EncodeVarint(1<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Timestamp); err != nil { return err } case *OneofProtoTypes_Duration: _ = b.EncodeVarint(2<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Duration); err != nil { return err } case nil: default: return fmt.Errorf("OneofProtoTypes.OneOfProtoTimes has unexpected type %T", x) } return nil } func _OneofProtoTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofProtoTypes) switch tag { case 1: // OneOfProtoTimes.timestamp if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(google_protobuf2.Timestamp) err := b.DecodeMessage(msg) m.OneOfProtoTimes = &OneofProtoTypes_Timestamp{msg} return true, err case 2: // OneOfProtoTimes.duration if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(google_protobuf1.Duration) err := b.DecodeMessage(msg) m.OneOfProtoTimes = &OneofProtoTypes_Duration{msg} return true, err default: return false, nil } } func _OneofProtoTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofProtoTypes) // OneOfProtoTimes switch x := m.OneOfProtoTimes.(type) { case *OneofProtoTypes_Timestamp: s := proto.Size(x.Timestamp) n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *OneofProtoTypes_Duration: s := proto.Size(x.Duration) n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type OneofStdTypes struct { // Types that are valid to be assigned to OneOfStdTimes: // *OneofStdTypes_Timestamp // *OneofStdTypes_Duration OneOfStdTimes isOneofStdTypes_OneOfStdTimes `protobuf_oneof:"OneOfStdTimes"` } func (m *OneofStdTypes) Reset() { *m = OneofStdTypes{} } func (m *OneofStdTypes) String() string { return proto.CompactTextString(m) } func (*OneofStdTypes) ProtoMessage() {} func (*OneofStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{8} } type isOneofStdTypes_OneOfStdTimes interface { isOneofStdTypes_OneOfStdTimes() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type OneofStdTypes_Timestamp struct { Timestamp *time.Time `protobuf:"bytes,1,opt,name=timestamp,oneof,stdtime"` } type OneofStdTypes_Duration struct { Duration *time.Duration `protobuf:"bytes,2,opt,name=duration,oneof,stdduration"` } func (*OneofStdTypes_Timestamp) isOneofStdTypes_OneOfStdTimes() {} func (*OneofStdTypes_Duration) isOneofStdTypes_OneOfStdTimes() {} func (m *OneofStdTypes) GetOneOfStdTimes() isOneofStdTypes_OneOfStdTimes { if m != nil { return m.OneOfStdTimes } return nil } func (m *OneofStdTypes) GetTimestamp() *time.Time { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Timestamp); ok { return x.Timestamp } return nil } func (m *OneofStdTypes) GetDuration() *time.Duration { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Duration); ok { return x.Duration } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofStdTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofStdTypes_OneofMarshaler, _OneofStdTypes_OneofUnmarshaler, _OneofStdTypes_OneofSizer, []interface{}{ (*OneofStdTypes_Timestamp)(nil), (*OneofStdTypes_Duration)(nil), } } func _OneofStdTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: _ = b.EncodeVarint(1<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdTimeMarshal(*x.Timestamp) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case *OneofStdTypes_Duration: _ = b.EncodeVarint(2<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdDurationMarshal(*x.Duration) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case nil: default: return fmt.Errorf("OneofStdTypes.OneOfStdTimes has unexpected type %T", x) } return nil } func _OneofStdTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofStdTypes) switch tag { case 1: // OneOfStdTimes.timestamp if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Time) if err2 := github_com_gogo_protobuf_types.StdTimeUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Timestamp{c} return true, err case 2: // OneOfStdTimes.duration if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Duration) if err2 := github_com_gogo_protobuf_types.StdDurationUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Duration{c} return true, err default: return false, nil } } func _OneofStdTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: s := github_com_gogo_protobuf_types.SizeOfStdTime(*x.Timestamp) n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *OneofStdTypes_Duration: s := github_com_gogo_protobuf_types.SizeOfStdDuration(*x.Duration) n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*KnownTypes)(nil), "types.KnownTypes") proto.RegisterType((*ProtoTypes)(nil), "types.ProtoTypes") proto.RegisterType((*StdTypes)(nil), "types.StdTypes") proto.RegisterType((*RepProtoTypes)(nil), "types.RepProtoTypes") proto.RegisterType((*RepStdTypes)(nil), "types.RepStdTypes") proto.RegisterType((*MapProtoTypes)(nil), "types.MapProtoTypes") proto.RegisterType((*MapStdTypes)(nil), "types.MapStdTypes") proto.RegisterType((*OneofProtoTypes)(nil), "types.OneofProtoTypes") proto.RegisterType((*OneofStdTypes)(nil), "types.OneofStdTypes") } func (this *KnownTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Dur.Compare(that1.Dur); c != 0 { return c } if c := this.Ts.Compare(that1.Ts); c != 0 { return c } if c := this.Dbl.Compare(that1.Dbl); c != 0 { return c } if c := this.Flt.Compare(that1.Flt); c != 0 { return c } if c := this.I64.Compare(that1.I64); c != 0 { return c } if c := this.U64.Compare(that1.U64); c != 0 { return c } if c := this.I32.Compare(that1.I32); c != 0 { return c } if c := this.U32.Compare(that1.U32); c != 0 { return c } if c := this.Bool.Compare(that1.Bool); c != 0 { return c } if c := this.Str.Compare(that1.Str); c != 0 { return c } if c := this.Bytes.Compare(that1.Bytes); c != 0 { return c } return 0 } func (this *ProtoTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NullableTimestamp.Compare(that1.NullableTimestamp); c != 0 { return c } if c := this.NullableDuration.Compare(that1.NullableDuration); c != 0 { return c } if c := this.Timestamp.Compare(&that1.Timestamp); c != 0 { return c } if c := this.Duration.Compare(&that1.Duration); c != 0 { return c } return 0 } func (this *RepProtoTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { if len(this.NullableTimestamps) < len(that1.NullableTimestamps) { return -1 } return 1 } for i := range this.NullableTimestamps { if c := this.NullableTimestamps[i].Compare(that1.NullableTimestamps[i]); c != 0 { return c } } if len(this.NullableDurations) != len(that1.NullableDurations) { if len(this.NullableDurations) < len(that1.NullableDurations) { return -1 } return 1 } for i := range this.NullableDurations { if c := this.NullableDurations[i].Compare(that1.NullableDurations[i]); c != 0 { return c } } if len(this.Timestamps) != len(that1.Timestamps) { if len(this.Timestamps) < len(that1.Timestamps) { return -1 } return 1 } for i := range this.Timestamps { if c := this.Timestamps[i].Compare(&that1.Timestamps[i]); c != 0 { return c } } if len(this.Durations) != len(that1.Durations) { if len(this.Durations) < len(that1.Durations) { return -1 } return 1 } for i := range this.Durations { if c := this.Durations[i].Compare(&that1.Durations[i]); c != 0 { return c } } return 0 } func (this *KnownTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *KnownTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *KnownTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *KnownTypes but is not nil && this == nil") } if !this.Dur.Equal(that1.Dur) { return fmt.Errorf("Dur this(%v) Not Equal that(%v)", this.Dur, that1.Dur) } if !this.Ts.Equal(that1.Ts) { return fmt.Errorf("Ts this(%v) Not Equal that(%v)", this.Ts, that1.Ts) } if !this.Dbl.Equal(that1.Dbl) { return fmt.Errorf("Dbl this(%v) Not Equal that(%v)", this.Dbl, that1.Dbl) } if !this.Flt.Equal(that1.Flt) { return fmt.Errorf("Flt this(%v) Not Equal that(%v)", this.Flt, that1.Flt) } if !this.I64.Equal(that1.I64) { return fmt.Errorf("I64 this(%v) Not Equal that(%v)", this.I64, that1.I64) } if !this.U64.Equal(that1.U64) { return fmt.Errorf("U64 this(%v) Not Equal that(%v)", this.U64, that1.U64) } if !this.I32.Equal(that1.I32) { return fmt.Errorf("I32 this(%v) Not Equal that(%v)", this.I32, that1.I32) } if !this.U32.Equal(that1.U32) { return fmt.Errorf("U32 this(%v) Not Equal that(%v)", this.U32, that1.U32) } if !this.Bool.Equal(that1.Bool) { return fmt.Errorf("Bool this(%v) Not Equal that(%v)", this.Bool, that1.Bool) } if !this.Str.Equal(that1.Str) { return fmt.Errorf("Str this(%v) Not Equal that(%v)", this.Str, that1.Str) } if !this.Bytes.Equal(that1.Bytes) { return fmt.Errorf("Bytes this(%v) Not Equal that(%v)", this.Bytes, that1.Bytes) } return nil } func (this *KnownTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Dur.Equal(that1.Dur) { return false } if !this.Ts.Equal(that1.Ts) { return false } if !this.Dbl.Equal(that1.Dbl) { return false } if !this.Flt.Equal(that1.Flt) { return false } if !this.I64.Equal(that1.I64) { return false } if !this.U64.Equal(that1.U64) { return false } if !this.I32.Equal(that1.I32) { return false } if !this.U32.Equal(that1.U32) { return false } if !this.Bool.Equal(that1.Bool) { return false } if !this.Str.Equal(that1.Str) { return false } if !this.Bytes.Equal(that1.Bytes) { return false } return true } func (this *ProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ProtoTypes but is not nil && this == nil") } if !this.NullableTimestamp.Equal(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", this.NullableTimestamp, that1.NullableTimestamp) } if !this.NullableDuration.Equal(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", this.NullableDuration, that1.NullableDuration) } if !this.Timestamp.Equal(&that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } if !this.Duration.Equal(&that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *ProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NullableTimestamp.Equal(that1.NullableTimestamp) { return false } if !this.NullableDuration.Equal(that1.NullableDuration) { return false } if !this.Timestamp.Equal(&that1.Timestamp) { return false } if !this.Duration.Equal(&that1.Duration) { return false } return true } func (this *StdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *StdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *StdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *StdTypes but is not nil && this == nil") } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return fmt.Errorf("this.NullableTimestamp != nil && that1.NullableTimestamp == nil") } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", this.NullableTimestamp, that1.NullableTimestamp) } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", *this.NullableDuration, *that1.NullableDuration) } } else if this.NullableDuration != nil { return fmt.Errorf("this.NullableDuration == nil && that.NullableDuration != nil") } else if that1.NullableDuration != nil { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", this.NullableDuration, that1.NullableDuration) } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } if this.Duration != that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *StdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return false } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return false } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return false } } else if this.NullableDuration != nil { return false } else if that1.NullableDuration != nil { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } if this.Duration != that1.Duration { return false } return true } func (this *RepProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *RepProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *RepProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *RepProtoTypes but is not nil && this == nil") } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return fmt.Errorf("NullableTimestamps this(%v) Not Equal that(%v)", len(this.NullableTimestamps), len(that1.NullableTimestamps)) } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(that1.NullableTimestamps[i]) { return fmt.Errorf("NullableTimestamps this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamps[i], i, that1.NullableTimestamps[i]) } } if len(this.NullableDurations) != len(that1.NullableDurations) { return fmt.Errorf("NullableDurations this(%v) Not Equal that(%v)", len(this.NullableDurations), len(that1.NullableDurations)) } for i := range this.NullableDurations { if !this.NullableDurations[i].Equal(that1.NullableDurations[i]) { return fmt.Errorf("NullableDurations this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDurations[i], i, that1.NullableDurations[i]) } } if len(this.Timestamps) != len(that1.Timestamps) { return fmt.Errorf("Timestamps this(%v) Not Equal that(%v)", len(this.Timestamps), len(that1.Timestamps)) } for i := range this.Timestamps { if !this.Timestamps[i].Equal(&that1.Timestamps[i]) { return fmt.Errorf("Timestamps this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamps[i], i, that1.Timestamps[i]) } } if len(this.Durations) != len(that1.Durations) { return fmt.Errorf("Durations this(%v) Not Equal that(%v)", len(this.Durations), len(that1.Durations)) } for i := range this.Durations { if !this.Durations[i].Equal(&that1.Durations[i]) { return fmt.Errorf("Durations this[%v](%v) Not Equal that[%v](%v)", i, this.Durations[i], i, that1.Durations[i]) } } return nil } func (this *RepProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return false } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(that1.NullableTimestamps[i]) { return false } } if len(this.NullableDurations) != len(that1.NullableDurations) { return false } for i := range this.NullableDurations { if !this.NullableDurations[i].Equal(that1.NullableDurations[i]) { return false } } if len(this.Timestamps) != len(that1.Timestamps) { return false } for i := range this.Timestamps { if !this.Timestamps[i].Equal(&that1.Timestamps[i]) { return false } } if len(this.Durations) != len(that1.Durations) { return false } for i := range this.Durations { if !this.Durations[i].Equal(&that1.Durations[i]) { return false } } return true } func (this *RepStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *RepStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *RepStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *RepStdTypes but is not nil && this == nil") } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return fmt.Errorf("NullableTimestamps this(%v) Not Equal that(%v)", len(this.NullableTimestamps), len(that1.NullableTimestamps)) } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return fmt.Errorf("NullableTimestamps this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamps[i], i, that1.NullableTimestamps[i]) } } if len(this.NullableDurations) != len(that1.NullableDurations) { return fmt.Errorf("NullableDurations this(%v) Not Equal that(%v)", len(this.NullableDurations), len(that1.NullableDurations)) } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDurations this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDurations[i], i, that1.NullableDurations[i]) } } if len(this.Timestamps) != len(that1.Timestamps) { return fmt.Errorf("Timestamps this(%v) Not Equal that(%v)", len(this.Timestamps), len(that1.Timestamps)) } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return fmt.Errorf("Timestamps this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamps[i], i, that1.Timestamps[i]) } } if len(this.Durations) != len(that1.Durations) { return fmt.Errorf("Durations this(%v) Not Equal that(%v)", len(this.Durations), len(that1.Durations)) } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return fmt.Errorf("Durations this[%v](%v) Not Equal that[%v](%v)", i, this.Durations[i], i, that1.Durations[i]) } } return nil } func (this *RepStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return false } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return false } } if len(this.NullableDurations) != len(that1.NullableDurations) { return false } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Timestamps) != len(that1.Timestamps) { return false } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return false } } if len(this.Durations) != len(that1.Durations) { return false } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return false } } return true } func (this *MapProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapProtoTypes) if !ok { that2, ok := that.(MapProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapProtoTypes but is not nil && this == nil") } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", len(this.NullableTimestamp), len(that1.NullableTimestamp)) } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(that1.NullableTimestamp[i]) { return fmt.Errorf("NullableTimestamp this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamp[i], i, that1.NullableTimestamp[i]) } } if len(this.Timestamp) != len(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", len(this.Timestamp), len(that1.Timestamp)) } for i := range this.Timestamp { a := this.Timestamp[i] b := that1.Timestamp[i] if !(&a).Equal(&b) { return fmt.Errorf("Timestamp this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamp[i], i, that1.Timestamp[i]) } } if len(this.NullableDuration) != len(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", len(this.NullableDuration), len(that1.NullableDuration)) } for i := range this.NullableDuration { if !this.NullableDuration[i].Equal(that1.NullableDuration[i]) { return fmt.Errorf("NullableDuration this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDuration[i], i, that1.NullableDuration[i]) } } if len(this.Duration) != len(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", len(this.Duration), len(that1.Duration)) } for i := range this.Duration { a := this.Duration[i] b := that1.Duration[i] if !(&a).Equal(&b) { return fmt.Errorf("Duration this[%v](%v) Not Equal that[%v](%v)", i, this.Duration[i], i, that1.Duration[i]) } } return nil } func (this *MapProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapProtoTypes) if !ok { that2, ok := that.(MapProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return false } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(that1.NullableTimestamp[i]) { return false } } if len(this.Timestamp) != len(that1.Timestamp) { return false } for i := range this.Timestamp { a := this.Timestamp[i] b := that1.Timestamp[i] if !(&a).Equal(&b) { return false } } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if !this.NullableDuration[i].Equal(that1.NullableDuration[i]) { return false } } if len(this.Duration) != len(that1.Duration) { return false } for i := range this.Duration { a := this.Duration[i] b := that1.Duration[i] if !(&a).Equal(&b) { return false } } return true } func (this *MapStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapStdTypes but is not nil && this == nil") } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", len(this.NullableTimestamp), len(that1.NullableTimestamp)) } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return fmt.Errorf("NullableTimestamp this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamp[i], i, that1.NullableTimestamp[i]) } } if len(this.Timestamp) != len(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", len(this.Timestamp), len(that1.Timestamp)) } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return fmt.Errorf("Timestamp this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamp[i], i, that1.Timestamp[i]) } } if len(this.NullableDuration) != len(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", len(this.NullableDuration), len(that1.NullableDuration)) } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDuration this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDuration[i], i, that1.NullableDuration[i]) } } if len(this.Duration) != len(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", len(this.Duration), len(that1.Duration)) } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return fmt.Errorf("Duration this[%v](%v) Not Equal that[%v](%v)", i, this.Duration[i], i, that1.Duration[i]) } } return nil } func (this *MapStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return false } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return false } } if len(this.Timestamp) != len(that1.Timestamp) { return false } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return false } } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Duration) != len(that1.Duration) { return false } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return false } } return true } func (this *OneofProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes) if !ok { that2, ok := that.(OneofProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes but is not nil && this == nil") } if that1.OneOfProtoTimes == nil { if this.OneOfProtoTimes != nil { return fmt.Errorf("this.OneOfProtoTimes != nil && that1.OneOfProtoTimes == nil") } } else if this.OneOfProtoTimes == nil { return fmt.Errorf("this.OneOfProtoTimes == nil && that1.OneOfProtoTimes != nil") } else if err := this.OneOfProtoTimes.VerboseEqual(that1.OneOfProtoTimes); err != nil { return err } return nil } func (this *OneofProtoTypes_Timestamp) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes_Timestamp) if !ok { that2, ok := that.(OneofProtoTypes_Timestamp) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes_Timestamp") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes_Timestamp but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes_Timestamp but is not nil && this == nil") } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *OneofProtoTypes_Duration) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes_Duration) if !ok { that2, ok := that.(OneofProtoTypes_Duration) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes_Duration") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes_Duration but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes_Duration but is not nil && this == nil") } if !this.Duration.Equal(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *OneofProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes) if !ok { that2, ok := that.(OneofProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.OneOfProtoTimes == nil { if this.OneOfProtoTimes != nil { return false } } else if this.OneOfProtoTimes == nil { return false } else if !this.OneOfProtoTimes.Equal(that1.OneOfProtoTimes) { return false } return true } func (this *OneofProtoTypes_Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes_Timestamp) if !ok { that2, ok := that.(OneofProtoTypes_Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } return true } func (this *OneofProtoTypes_Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes_Duration) if !ok { that2, ok := that.(OneofProtoTypes_Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Duration.Equal(that1.Duration) { return false } return true } func (this *OneofStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes but is not nil && this == nil") } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return fmt.Errorf("this.OneOfStdTimes != nil && that1.OneOfStdTimes == nil") } } else if this.OneOfStdTimes == nil { return fmt.Errorf("this.OneOfStdTimes == nil && that1.OneOfStdTimes != nil") } else if err := this.OneOfStdTimes.VerboseEqual(that1.OneOfStdTimes); err != nil { return err } return nil } func (this *OneofStdTypes_Timestamp) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Timestamp") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is not nil && this == nil") } if that1.Timestamp == nil { if this.Timestamp != nil { return fmt.Errorf("this.Timestamp != nil && that1.Timestamp == nil") } } else if !this.Timestamp.Equal(*that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *OneofStdTypes_Duration) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Duration") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Duration but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Duration but is not nil && this == nil") } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", *this.Duration, *that1.Duration) } } else if this.Duration != nil { return fmt.Errorf("this.Duration == nil && that.Duration != nil") } else if that1.Duration != nil { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *OneofStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return false } } else if this.OneOfStdTimes == nil { return false } else if !this.OneOfStdTimes.Equal(that1.OneOfStdTimes) { return false } return true } func (this *OneofStdTypes_Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Timestamp == nil { if this.Timestamp != nil { return false } } else if !this.Timestamp.Equal(*that1.Timestamp) { return false } return true } func (this *OneofStdTypes_Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return false } } else if this.Duration != nil { return false } else if that1.Duration != nil { return false } return true } func NewPopulatedKnownTypes(r randyTypes, easy bool) *KnownTypes { this := &KnownTypes{} if r.Intn(10) != 0 { this.Dur = google_protobuf1.NewPopulatedDuration(r, easy) } if r.Intn(10) != 0 { this.Ts = google_protobuf2.NewPopulatedTimestamp(r, easy) } if r.Intn(10) != 0 { this.Dbl = google_protobuf3.NewPopulatedDoubleValue(r, easy) } if r.Intn(10) != 0 { this.Flt = google_protobuf3.NewPopulatedFloatValue(r, easy) } if r.Intn(10) != 0 { this.I64 = google_protobuf3.NewPopulatedInt64Value(r, easy) } if r.Intn(10) != 0 { this.U64 = google_protobuf3.NewPopulatedUInt64Value(r, easy) } if r.Intn(10) != 0 { this.I32 = google_protobuf3.NewPopulatedInt32Value(r, easy) } if r.Intn(10) != 0 { this.U32 = google_protobuf3.NewPopulatedUInt32Value(r, easy) } if r.Intn(10) != 0 { this.Bool = google_protobuf3.NewPopulatedBoolValue(r, easy) } if r.Intn(10) != 0 { this.Str = google_protobuf3.NewPopulatedStringValue(r, easy) } if r.Intn(10) != 0 { this.Bytes = google_protobuf3.NewPopulatedBytesValue(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedProtoTypes(r randyTypes, easy bool) *ProtoTypes { this := &ProtoTypes{} if r.Intn(10) != 0 { this.NullableTimestamp = google_protobuf2.NewPopulatedTimestamp(r, easy) } if r.Intn(10) != 0 { this.NullableDuration = google_protobuf1.NewPopulatedDuration(r, easy) } v1 := google_protobuf2.NewPopulatedTimestamp(r, easy) this.Timestamp = *v1 v2 := google_protobuf1.NewPopulatedDuration(r, easy) this.Duration = *v2 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedStdTypes(r randyTypes, easy bool) *StdTypes { this := &StdTypes{} if r.Intn(10) != 0 { this.NullableTimestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } if r.Intn(10) != 0 { this.NullableDuration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } v3 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamp = *v3 v4 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Duration = *v4 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedRepProtoTypes(r randyTypes, easy bool) *RepProtoTypes { this := &RepProtoTypes{} if r.Intn(10) != 0 { v5 := r.Intn(5) this.NullableTimestamps = make([]*google_protobuf2.Timestamp, v5) for i := 0; i < v5; i++ { this.NullableTimestamps[i] = google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v6 := r.Intn(5) this.NullableDurations = make([]*google_protobuf1.Duration, v6) for i := 0; i < v6; i++ { this.NullableDurations[i] = google_protobuf1.NewPopulatedDuration(r, easy) } } if r.Intn(10) != 0 { v7 := r.Intn(5) this.Timestamps = make([]google_protobuf2.Timestamp, v7) for i := 0; i < v7; i++ { v8 := google_protobuf2.NewPopulatedTimestamp(r, easy) this.Timestamps[i] = *v8 } } if r.Intn(10) != 0 { v9 := r.Intn(5) this.Durations = make([]google_protobuf1.Duration, v9) for i := 0; i < v9; i++ { v10 := google_protobuf1.NewPopulatedDuration(r, easy) this.Durations[i] = *v10 } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedRepStdTypes(r randyTypes, easy bool) *RepStdTypes { this := &RepStdTypes{} if r.Intn(10) != 0 { v11 := r.Intn(5) this.NullableTimestamps = make([]*time.Time, v11) for i := 0; i < v11; i++ { this.NullableTimestamps[i] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v12 := r.Intn(5) this.NullableDurations = make([]*time.Duration, v12) for i := 0; i < v12; i++ { this.NullableDurations[i] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v13 := r.Intn(5) this.Timestamps = make([]time.Time, v13) for i := 0; i < v13; i++ { v14 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamps[i] = *v14 } } if r.Intn(10) != 0 { v15 := r.Intn(5) this.Durations = make([]time.Duration, v15) for i := 0; i < v15; i++ { v16 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Durations[i] = *v16 } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMapProtoTypes(r randyTypes, easy bool) *MapProtoTypes { this := &MapProtoTypes{} if r.Intn(10) != 0 { v17 := r.Intn(10) this.NullableTimestamp = make(map[int32]*google_protobuf2.Timestamp) for i := 0; i < v17; i++ { this.NullableTimestamp[int32(r.Int31())] = google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Timestamp = make(map[int32]google_protobuf2.Timestamp) for i := 0; i < v18; i++ { this.Timestamp[int32(r.Int31())] = *google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.NullableDuration = make(map[int32]*google_protobuf1.Duration) for i := 0; i < v19; i++ { this.NullableDuration[int32(r.Int31())] = google_protobuf1.NewPopulatedDuration(r, easy) } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Duration = make(map[int32]google_protobuf1.Duration) for i := 0; i < v20; i++ { this.Duration[int32(r.Int31())] = *google_protobuf1.NewPopulatedDuration(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMapStdTypes(r randyTypes, easy bool) *MapStdTypes { this := &MapStdTypes{} if r.Intn(10) != 0 { v21 := r.Intn(10) this.NullableTimestamp = make(map[int32]*time.Time) for i := 0; i < v21; i++ { this.NullableTimestamp[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Timestamp = make(map[int32]time.Time) for i := 0; i < v22; i++ { this.Timestamp[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.NullableDuration = make(map[int32]*time.Duration) for i := 0; i < v23; i++ { this.NullableDuration[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Duration = make(map[int32]time.Duration) for i := 0; i < v24; i++ { this.Duration[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofProtoTypes(r randyTypes, easy bool) *OneofProtoTypes { this := &OneofProtoTypes{} oneofNumber_OneOfProtoTimes := []int32{1, 2}[r.Intn(2)] switch oneofNumber_OneOfProtoTimes { case 1: this.OneOfProtoTimes = NewPopulatedOneofProtoTypes_Timestamp(r, easy) case 2: this.OneOfProtoTimes = NewPopulatedOneofProtoTypes_Duration(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofProtoTypes_Timestamp(r randyTypes, easy bool) *OneofProtoTypes_Timestamp { this := &OneofProtoTypes_Timestamp{} this.Timestamp = google_protobuf2.NewPopulatedTimestamp(r, easy) return this } func NewPopulatedOneofProtoTypes_Duration(r randyTypes, easy bool) *OneofProtoTypes_Duration { this := &OneofProtoTypes_Duration{} this.Duration = google_protobuf1.NewPopulatedDuration(r, easy) return this } func NewPopulatedOneofStdTypes(r randyTypes, easy bool) *OneofStdTypes { this := &OneofStdTypes{} oneofNumber_OneOfStdTimes := []int32{1, 2}[r.Intn(2)] switch oneofNumber_OneOfStdTimes { case 1: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Timestamp(r, easy) case 2: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Duration(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofStdTypes_Timestamp(r randyTypes, easy bool) *OneofStdTypes_Timestamp { this := &OneofStdTypes_Timestamp{} this.Timestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) return this } func NewPopulatedOneofStdTypes_Duration(r randyTypes, easy bool) *OneofStdTypes_Duration { this := &OneofStdTypes_Duration{} this.Duration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) return this } type randyTypes interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTypes(r randyTypes) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTypes(r randyTypes) string { v25 := r.Intn(100) tmps := make([]rune, v25) for i := 0; i < v25; i++ { tmps[i] = randUTF8RuneTypes(r) } return string(tmps) } func randUnrecognizedTypes(r randyTypes, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTypes(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTypes(dAtA []byte, r randyTypes, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) v26 := r.Int63() if r.Intn(2) == 0 { v26 *= -1 } dAtA = encodeVarintPopulateTypes(dAtA, uint64(v26)) case 1: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTypes(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTypes(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *KnownTypes) Size() (n int) { var l int _ = l if m.Dur != nil { l = m.Dur.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Ts != nil { l = m.Ts.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Dbl != nil { l = m.Dbl.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Flt != nil { l = m.Flt.Size() n += 1 + l + sovTypes(uint64(l)) } if m.I64 != nil { l = m.I64.Size() n += 1 + l + sovTypes(uint64(l)) } if m.U64 != nil { l = m.U64.Size() n += 1 + l + sovTypes(uint64(l)) } if m.I32 != nil { l = m.I32.Size() n += 1 + l + sovTypes(uint64(l)) } if m.U32 != nil { l = m.U32.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Bool != nil { l = m.Bool.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Str != nil { l = m.Str.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Bytes != nil { l = m.Bytes.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *ProtoTypes) Size() (n int) { var l int _ = l if m.NullableTimestamp != nil { l = m.NullableTimestamp.Size() n += 1 + l + sovTypes(uint64(l)) } if m.NullableDuration != nil { l = m.NullableDuration.Size() n += 1 + l + sovTypes(uint64(l)) } l = m.Timestamp.Size() n += 1 + l + sovTypes(uint64(l)) l = m.Duration.Size() n += 1 + l + sovTypes(uint64(l)) return n } func (m *StdTypes) Size() (n int) { var l int _ = l if m.NullableTimestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.NullableTimestamp) n += 1 + l + sovTypes(uint64(l)) } if m.NullableDuration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.NullableDuration) n += 1 + l + sovTypes(uint64(l)) } l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp) n += 1 + l + sovTypes(uint64(l)) l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.Duration) n += 1 + l + sovTypes(uint64(l)) return n } func (m *RepProtoTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamps) > 0 { for _, e := range m.NullableTimestamps { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.NullableDurations) > 0 { for _, e := range m.NullableDurations { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.Timestamps) > 0 { for _, e := range m.Timestamps { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.Durations) > 0 { for _, e := range m.Durations { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } return n } func (m *RepStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamps) > 0 { for _, e := range m.NullableTimestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(*e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.NullableDurations) > 0 { for _, e := range m.NullableDurations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.Timestamps) > 0 { for _, e := range m.Timestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.Durations) > 0 { for _, e := range m.Durations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(e) n += 1 + l + sovTypes(uint64(l)) } } return n } func (m *MapProtoTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamp) > 0 { for k, v := range m.NullableTimestamp { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Timestamp) > 0 { for k, v := range m.Timestamp { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Duration) > 0 { for k, v := range m.Duration { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } return n } func (m *MapStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamp) > 0 { for k, v := range m.NullableTimestamp { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*v) l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Timestamp) > 0 { for k, v := range m.Timestamp { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdTime(v) mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*v) l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Duration) > 0 { for k, v := range m.Duration { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdDuration(v) mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } return n } func (m *OneofProtoTypes) Size() (n int) { var l int _ = l if m.OneOfProtoTimes != nil { n += m.OneOfProtoTimes.Size() } return n } func (m *OneofProtoTypes_Timestamp) Size() (n int) { var l int _ = l if m.Timestamp != nil { l = m.Timestamp.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofProtoTypes_Duration) Size() (n int) { var l int _ = l if m.Duration != nil { l = m.Duration.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofStdTypes) Size() (n int) { var l int _ = l if m.OneOfStdTimes != nil { n += m.OneOfStdTimes.Size() } return n } func (m *OneofStdTypes_Timestamp) Size() (n int) { var l int _ = l if m.Timestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.Timestamp) n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofStdTypes_Duration) Size() (n int) { var l int _ = l if m.Duration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.Duration) n += 1 + l + sovTypes(uint64(l)) } return n } func sovTypes(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTypes(x uint64) (n int) { return sovTypes(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func init() { proto.RegisterFile("combos/neither/types.proto", fileDescriptorTypes) } var fileDescriptorTypes = []byte{ // 925 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0xcd, 0x8e, 0xdb, 0x54, 0x18, 0x8d, 0x7f, 0x52, 0x32, 0x5f, 0x14, 0xda, 0x5a, 0x02, 0x99, 0x80, 0x9c, 0x21, 0x6c, 0x86, 0x56, 0x75, 0x20, 0x89, 0x02, 0x1a, 0x54, 0x28, 0xd6, 0xb4, 0x9d, 0x52, 0x4d, 0xa7, 0x4a, 0xcb, 0x08, 0x90, 0x40, 0xd8, 0x8d, 0x93, 0x46, 0x38, 0xbe, 0x91, 0x7d, 0x4d, 0x95, 0x1d, 0x8f, 0xc0, 0x12, 0xc4, 0x86, 0xee, 0x90, 0x60, 0x0f, 0x4b, 0x36, 0x48, 0xdd, 0xc1, 0x13, 0x40, 0x1b, 0x36, 0x3c, 0x42, 0x97, 0xe8, 0x5e, 0x5f, 0xff, 0xc5, 0xd7, 0x0e, 0x89, 0x34, 0x62, 0xd3, 0xdd, 0x78, 0x7c, 0xce, 0xf1, 0xf1, 0xf1, 0xf9, 0xbe, 0x1b, 0x68, 0xde, 0x43, 0x33, 0x0b, 0xf9, 0x1d, 0xd7, 0x9e, 0xe2, 0xfb, 0xb6, 0xd7, 0xc1, 0x8b, 0xb9, 0xed, 0xeb, 0x73, 0x0f, 0x61, 0xa4, 0x54, 0xe9, 0x45, 0xf3, 0xd2, 0x64, 0x8a, 0xef, 0x07, 0x96, 0x7e, 0x0f, 0xcd, 0x3a, 0x13, 0x34, 0x41, 0x1d, 0x7a, 0xd7, 0x0a, 0xc6, 0xf4, 0x8a, 0x5e, 0xd0, 0xbf, 0x42, 0x56, 0x53, 0x9b, 0x20, 0x34, 0x71, 0xec, 0x04, 0x35, 0x0a, 0x3c, 0x13, 0x4f, 0x91, 0xcb, 0xee, 0xb7, 0x56, 0xef, 0xe3, 0xe9, 0xcc, 0xf6, 0xb1, 0x39, 0x9b, 0x17, 0x09, 0x3c, 0xf0, 0xcc, 0xf9, 0xdc, 0xf6, 0x98, 0xad, 0xf6, 0x77, 0x32, 0xc0, 0x4d, 0x17, 0x3d, 0x70, 0xef, 0x12, 0x7b, 0xca, 0x45, 0x90, 0x46, 0x81, 0xa7, 0x0a, 0xbb, 0xc2, 0x5e, 0xbd, 0xfb, 0x92, 0x1e, 0x92, 0xf5, 0x88, 0xac, 0x1f, 0xb0, 0xa7, 0x0f, 0x09, 0x4a, 0xb9, 0x00, 0x22, 0xf6, 0x55, 0x91, 0x62, 0x9b, 0x39, 0xec, 0xdd, 0xc8, 0xc9, 0x50, 0xc4, 0xbe, 0xa2, 0x83, 0x34, 0xb2, 0x1c, 0x55, 0xa2, 0xe0, 0x57, 0xf2, 0xc2, 0x28, 0xb0, 0x1c, 0xfb, 0xc4, 0x74, 0x02, 0x7b, 0x48, 0x80, 0xca, 0x25, 0x90, 0xc6, 0x0e, 0x56, 0x65, 0x8a, 0x7f, 0x39, 0x87, 0xbf, 0xe6, 0x20, 0x13, 0x33, 0xf8, 0xd8, 0xc1, 0x04, 0x3e, 0x1d, 0xf4, 0xd5, 0x6a, 0x01, 0xfc, 0x86, 0x8b, 0x07, 0x7d, 0x06, 0x9f, 0x0e, 0xfa, 0xc4, 0x4d, 0x30, 0xe8, 0xab, 0x67, 0x0a, 0xdc, 0x7c, 0x98, 0xc6, 0x07, 0x83, 0x3e, 0x95, 0xef, 0x75, 0xd5, 0xe7, 0x8a, 0xe5, 0x7b, 0xdd, 0x48, 0xbe, 0xd7, 0xa5, 0xf2, 0xbd, 0xae, 0x5a, 0x2b, 0x91, 0x8f, 0xf1, 0x01, 0xc5, 0xcb, 0x16, 0x42, 0x8e, 0xba, 0x53, 0x10, 0xa5, 0x81, 0x90, 0x13, 0xc2, 0x29, 0x8e, 0xe8, 0xfb, 0xd8, 0x53, 0xa1, 0x40, 0xff, 0x0e, 0xf6, 0xa6, 0xee, 0x84, 0xe9, 0xfb, 0xd8, 0x53, 0xde, 0x84, 0xaa, 0xb5, 0xc0, 0xb6, 0xaf, 0xd6, 0x0b, 0x5e, 0xc0, 0x20, 0x77, 0x43, 0x42, 0x88, 0xdc, 0x97, 0xff, 0x79, 0xd8, 0x12, 0xda, 0xdf, 0x8b, 0x00, 0xb7, 0x09, 0x28, 0x6c, 0xc7, 0x21, 0x9c, 0x77, 0x03, 0xc7, 0x31, 0x2d, 0xc7, 0x8e, 0xbf, 0x2e, 0xeb, 0x4a, 0xd9, 0xf7, 0xcf, 0x93, 0x94, 0xab, 0x70, 0x2e, 0xfa, 0x67, 0xd4, 0x29, 0x56, 0xa4, 0x92, 0xd2, 0xe5, 0x28, 0xca, 0xbb, 0xb0, 0x13, 0x17, 0x9e, 0x75, 0xab, 0xc4, 0x88, 0x21, 0x3f, 0xfa, 0xb3, 0x55, 0x19, 0x26, 0x14, 0xe5, 0x1d, 0xa8, 0x45, 0x03, 0xc5, 0xaa, 0x56, 0xfc, 0x78, 0xc6, 0x8e, 0x09, 0x2c, 0xa2, 0x9f, 0x44, 0xa8, 0xdd, 0xc1, 0xa3, 0x30, 0xa0, 0x5b, 0x5b, 0x05, 0x64, 0xc8, 0x5f, 0xff, 0xd5, 0x12, 0x78, 0x31, 0xdd, 0xdc, 0x22, 0x26, 0x43, 0xfe, 0x86, 0xa8, 0xe5, 0xc3, 0x32, 0x36, 0x0b, 0xab, 0x46, 0x5e, 0x97, 0x1a, 0x4b, 0x05, 0xf6, 0xde, 0x26, 0x81, 0x51, 0x05, 0x6a, 0x26, 0x26, 0xb5, 0x7f, 0x14, 0xa1, 0x31, 0xb4, 0xe7, 0xa9, 0x52, 0x7d, 0x00, 0x4a, 0xee, 0xc5, 0x7d, 0x55, 0xd8, 0x95, 0xd6, 0xb4, 0x8a, 0xc3, 0x52, 0xae, 0x27, 0xf9, 0x47, 0x2e, 0xc8, 0x82, 0x92, 0xca, 0x7b, 0x95, 0xe7, 0x28, 0x57, 0x00, 0x70, 0x62, 0x46, 0x5a, 0x67, 0x86, 0x75, 0x23, 0xc5, 0x51, 0x2e, 0xc3, 0xce, 0x28, 0xb6, 0x20, 0xaf, 0xb1, 0x10, 0x35, 0x33, 0x66, 0xb0, 0x72, 0xfd, 0x2c, 0x42, 0x7d, 0x68, 0xcf, 0xe3, 0x7e, 0xdd, 0xde, 0x2e, 0x2b, 0x56, 0x30, 0x5e, 0x62, 0x47, 0xdb, 0x24, 0xc6, 0x2a, 0xc6, 0xc9, 0xed, 0x60, 0xc3, 0xdc, 0x92, 0x92, 0xa5, 0xb3, 0x7b, 0x7f, 0xa3, 0xec, 0x92, 0x9a, 0x25, 0xac, 0xf6, 0x6f, 0x55, 0x68, 0x1c, 0x99, 0xe9, 0x9e, 0x7d, 0xcc, 0x9f, 0x4d, 0x22, 0x7e, 0x51, 0x0f, 0x4f, 0xea, 0x0c, 0x41, 0xbf, 0xb5, 0x8a, 0xbe, 0xea, 0x62, 0x6f, 0xc1, 0x1b, 0xd3, 0xeb, 0xe9, 0xc9, 0x0a, 0xc3, 0x7b, 0x8d, 0x2b, 0x99, 0x95, 0xca, 0xef, 0xa3, 0x13, 0xce, 0xbc, 0x87, 0x21, 0x5e, 0x28, 0xb5, 0x18, 0x81, 0x43, 0x87, 0xf9, 0xd1, 0x3f, 0xc8, 0x8c, 0x2d, 0xd1, 0x6b, 0x73, 0xf5, 0x32, 0x3a, 0xab, 0x0b, 0xaf, 0xf9, 0x39, 0xbc, 0xc8, 0xcf, 0x44, 0x39, 0x07, 0xd2, 0x17, 0xf6, 0x82, 0x6e, 0xba, 0xea, 0x90, 0xfc, 0xa9, 0xbc, 0x01, 0xd5, 0x2f, 0xc9, 0x79, 0xf2, 0x1f, 0x7e, 0x1e, 0x84, 0xc0, 0x7d, 0xf1, 0x6d, 0xa1, 0xf9, 0x11, 0x3c, 0x7f, 0x4a, 0xca, 0x9f, 0xc1, 0x0b, 0xdc, 0xb0, 0x38, 0x0f, 0xe8, 0x64, 0x1f, 0x50, 0xb2, 0x38, 0x52, 0xfa, 0x27, 0xd0, 0x38, 0x0d, 0xdd, 0xf6, 0xef, 0x55, 0xa8, 0x1f, 0x99, 0xc9, 0x06, 0xf8, 0xb4, 0xb8, 0xc5, 0xaf, 0x27, 0x9f, 0x34, 0x82, 0x17, 0x74, 0xb8, 0xf8, 0xc0, 0xb9, 0x91, 0x6f, 0xf2, 0xab, 0x1c, 0xd9, 0x15, 0x39, 0xee, 0x51, 0xf1, 0x49, 0x61, 0x97, 0xf7, 0x4a, 0x8c, 0xae, 0x34, 0xb0, 0xe0, 0x28, 0xbb, 0x96, 0xeb, 0xf3, 0x2e, 0x47, 0x33, 0xab, 0xc5, 0x39, 0x8d, 0x9e, 0x35, 0xfa, 0x7f, 0x68, 0xf4, 0xb7, 0x02, 0x9c, 0x3d, 0x76, 0x6d, 0x34, 0x4e, 0xed, 0xe6, 0xfd, 0x74, 0xed, 0xd6, 0xfe, 0x5e, 0x3a, 0xcc, 0xec, 0xcc, 0xb7, 0x52, 0x5d, 0x58, 0xe7, 0xe3, 0x30, 0xb5, 0xce, 0x8c, 0xf3, 0xd4, 0xc7, 0x31, 0xf3, 0x41, 0xf4, 0xda, 0x0f, 0x05, 0x68, 0x50, 0x6f, 0xf1, 0xbc, 0x5d, 0xd9, 0xc8, 0x59, 0x38, 0x58, 0x59, 0x7f, 0x97, 0x37, 0xf0, 0x17, 0x16, 0x3e, 0xe3, 0xf2, 0x2c, 0x75, 0x74, 0x4c, 0x1d, 0x11, 0x4d, 0x63, 0xef, 0xf1, 0x13, 0x4d, 0x78, 0xfa, 0x44, 0x13, 0x7e, 0x58, 0x6a, 0xc2, 0x2f, 0x4b, 0x4d, 0xf8, 0x75, 0xa9, 0x09, 0x8f, 0x96, 0x5a, 0xe5, 0x8f, 0xa5, 0x56, 0x79, 0xbc, 0xd4, 0x84, 0xa7, 0x4b, 0xad, 0xf2, 0xd5, 0xdf, 0x5a, 0xc5, 0x3a, 0x43, 0xf5, 0x7b, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x72, 0x11, 0x02, 0x8e, 0x97, 0x0e, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/types/combos/neither/types.proto000066400000000000000000000126271317075173200246510ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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 = "proto3"; package types; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; //import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; //import "google/protobuf/struct.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/wrappers.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message KnownTypes { option (gogoproto.compare) = true; google.protobuf.Duration dur = 1; google.protobuf.Timestamp ts = 2; google.protobuf.DoubleValue dbl = 3; google.protobuf.FloatValue flt = 4; google.protobuf.Int64Value i64 = 5; google.protobuf.UInt64Value u64 = 6; google.protobuf.Int32Value i32 = 7; google.protobuf.UInt32Value u32 = 8; google.protobuf.BoolValue bool = 9; google.protobuf.StringValue str = 10; google.protobuf.BytesValue bytes = 11; // TODO uncomment this once https://github.com/gogo/protobuf/issues/197 is fixed // google.protobuf.Struct st = 12; // google.protobuf.Any an = 14; } message ProtoTypes { // TODO this should be a compare_all at the top of the file once time.Time, time.Duration, oneof and map is supported by compare option (gogoproto.compare) = true; google.protobuf.Timestamp nullableTimestamp = 1; google.protobuf.Duration nullableDuration = 2; google.protobuf.Timestamp timestamp = 3 [(gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.nullable) = false]; } message StdTypes { google.protobuf.Timestamp nullableTimestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration nullableDuration = 2 [(gogoproto.stdduration) = true]; google.protobuf.Timestamp timestamp = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message RepProtoTypes { option (gogoproto.compare) = true; repeated google.protobuf.Timestamp nullableTimestamps = 1; repeated google.protobuf.Duration nullableDurations = 2; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.nullable) = false]; } message RepStdTypes { repeated google.protobuf.Timestamp nullableTimestamps = 1 [(gogoproto.stdtime) = true]; repeated google.protobuf.Duration nullableDurations = 2 [(gogoproto.stdduration) = true]; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message MapProtoTypes { map nullableTimestamp = 1; map timestamp = 2 [(gogoproto.nullable) = false]; map nullableDuration = 3; map duration = 4 [(gogoproto.nullable) = false]; } message MapStdTypes { map nullableTimestamp = 1 [(gogoproto.stdtime) = true]; map timestamp = 2 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; map nullableDuration = 3 [(gogoproto.stdduration) = true]; map duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message OneofProtoTypes { oneof OneOfProtoTimes { google.protobuf.Timestamp timestamp = 1; google.protobuf.Duration duration = 2; } } message OneofStdTypes { oneof OneOfStdTimes { google.protobuf.Timestamp timestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration duration = 2 [(gogoproto.stdduration) = true]; } } golang-gogoprotobuf-0.5/test/types/combos/neither/types_test.go000066400000000000000000000155121317075173200251460ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package types import ( math_rand "math/rand" "testing" "time" "github.com/gogo/protobuf/jsonpb" "github.com/gogo/protobuf/proto" ) func TestFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } golang-gogoprotobuf-0.5/test/types/combos/neither/typespb_test.go000066400000000000000000001465201317075173200254740ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/neither/types.proto /* Package types is a generated protocol buffer package. It is generated from these files: combos/neither/types.proto It has these top-level messages: KnownTypes ProtoTypes StdTypes RepProtoTypes RepStdTypes MapProtoTypes MapStdTypes OneofProtoTypes OneofStdTypes */ package types import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestKnownTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkKnownTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*KnownTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedKnownTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkKnownTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedKnownTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &KnownTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &StdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRepProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkRepProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedRepProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRepProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedRepProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &RepProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkRepStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRepStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedRepStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &RepStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMapProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMapProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMapProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMapProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMapProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MapProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMapStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMapStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMapStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MapStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOneofProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkOneofProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOneofProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOneofProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOneofProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OneofProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkOneofStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOneofStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOneofStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OneofStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestKnownTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRepProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRepStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestKnownTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKnownTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKnownTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedKnownTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestProtoTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedProtoTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestRepProtoTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedRepProtoTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestKnownTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRepProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRepStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOneofProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOneofStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestKnownTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkKnownTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*KnownTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedKnownTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRepProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRepProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedRepProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRepStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMapProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMapProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMapProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMapStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOneofProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOneofProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOneofProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOneofStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/types/combos/unmarshaler/000077500000000000000000000000001317075173200232735ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/types/combos/unmarshaler/types.pb.go000066400000000000000000004032101317075173200253660ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/types.proto /* Package types is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/types.proto It has these top-level messages: KnownTypes ProtoTypes StdTypes RepProtoTypes RepStdTypes MapProtoTypes MapStdTypes OneofProtoTypes OneofStdTypes */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import google_protobuf1 "github.com/gogo/protobuf/types" import google_protobuf2 "github.com/gogo/protobuf/types" import google_protobuf3 "github.com/gogo/protobuf/types" import time "time" import github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf var _ = time.Kitchen // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type KnownTypes struct { Dur *google_protobuf1.Duration `protobuf:"bytes,1,opt,name=dur" json:"dur,omitempty"` Ts *google_protobuf2.Timestamp `protobuf:"bytes,2,opt,name=ts" json:"ts,omitempty"` Dbl *google_protobuf3.DoubleValue `protobuf:"bytes,3,opt,name=dbl" json:"dbl,omitempty"` Flt *google_protobuf3.FloatValue `protobuf:"bytes,4,opt,name=flt" json:"flt,omitempty"` I64 *google_protobuf3.Int64Value `protobuf:"bytes,5,opt,name=i64" json:"i64,omitempty"` U64 *google_protobuf3.UInt64Value `protobuf:"bytes,6,opt,name=u64" json:"u64,omitempty"` I32 *google_protobuf3.Int32Value `protobuf:"bytes,7,opt,name=i32" json:"i32,omitempty"` U32 *google_protobuf3.UInt32Value `protobuf:"bytes,8,opt,name=u32" json:"u32,omitempty"` Bool *google_protobuf3.BoolValue `protobuf:"bytes,9,opt,name=bool" json:"bool,omitempty"` Str *google_protobuf3.StringValue `protobuf:"bytes,10,opt,name=str" json:"str,omitempty"` Bytes *google_protobuf3.BytesValue `protobuf:"bytes,11,opt,name=bytes" json:"bytes,omitempty"` } func (m *KnownTypes) Reset() { *m = KnownTypes{} } func (m *KnownTypes) String() string { return proto.CompactTextString(m) } func (*KnownTypes) ProtoMessage() {} func (*KnownTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{0} } func (m *KnownTypes) GetDur() *google_protobuf1.Duration { if m != nil { return m.Dur } return nil } func (m *KnownTypes) GetTs() *google_protobuf2.Timestamp { if m != nil { return m.Ts } return nil } func (m *KnownTypes) GetDbl() *google_protobuf3.DoubleValue { if m != nil { return m.Dbl } return nil } func (m *KnownTypes) GetFlt() *google_protobuf3.FloatValue { if m != nil { return m.Flt } return nil } func (m *KnownTypes) GetI64() *google_protobuf3.Int64Value { if m != nil { return m.I64 } return nil } func (m *KnownTypes) GetU64() *google_protobuf3.UInt64Value { if m != nil { return m.U64 } return nil } func (m *KnownTypes) GetI32() *google_protobuf3.Int32Value { if m != nil { return m.I32 } return nil } func (m *KnownTypes) GetU32() *google_protobuf3.UInt32Value { if m != nil { return m.U32 } return nil } func (m *KnownTypes) GetBool() *google_protobuf3.BoolValue { if m != nil { return m.Bool } return nil } func (m *KnownTypes) GetStr() *google_protobuf3.StringValue { if m != nil { return m.Str } return nil } func (m *KnownTypes) GetBytes() *google_protobuf3.BytesValue { if m != nil { return m.Bytes } return nil } type ProtoTypes struct { NullableTimestamp *google_protobuf2.Timestamp `protobuf:"bytes,1,opt,name=nullableTimestamp" json:"nullableTimestamp,omitempty"` NullableDuration *google_protobuf1.Duration `protobuf:"bytes,2,opt,name=nullableDuration" json:"nullableDuration,omitempty"` Timestamp google_protobuf2.Timestamp `protobuf:"bytes,3,opt,name=timestamp" json:"timestamp"` Duration google_protobuf1.Duration `protobuf:"bytes,4,opt,name=duration" json:"duration"` } func (m *ProtoTypes) Reset() { *m = ProtoTypes{} } func (m *ProtoTypes) String() string { return proto.CompactTextString(m) } func (*ProtoTypes) ProtoMessage() {} func (*ProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{1} } func (m *ProtoTypes) GetNullableTimestamp() *google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamp } return nil } func (m *ProtoTypes) GetNullableDuration() *google_protobuf1.Duration { if m != nil { return m.NullableDuration } return nil } func (m *ProtoTypes) GetTimestamp() google_protobuf2.Timestamp { if m != nil { return m.Timestamp } return google_protobuf2.Timestamp{} } func (m *ProtoTypes) GetDuration() google_protobuf1.Duration { if m != nil { return m.Duration } return google_protobuf1.Duration{} } type StdTypes struct { NullableTimestamp *time.Time `protobuf:"bytes,1,opt,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty"` NullableDuration *time.Duration `protobuf:"bytes,2,opt,name=nullableDuration,stdduration" json:"nullableDuration,omitempty"` Timestamp time.Time `protobuf:"bytes,3,opt,name=timestamp,stdtime" json:"timestamp"` Duration time.Duration `protobuf:"bytes,4,opt,name=duration,stdduration" json:"duration"` } func (m *StdTypes) Reset() { *m = StdTypes{} } func (m *StdTypes) String() string { return proto.CompactTextString(m) } func (*StdTypes) ProtoMessage() {} func (*StdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{2} } func (m *StdTypes) GetNullableTimestamp() *time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *StdTypes) GetNullableDuration() *time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *StdTypes) GetTimestamp() time.Time { if m != nil { return m.Timestamp } return time.Time{} } func (m *StdTypes) GetDuration() time.Duration { if m != nil { return m.Duration } return 0 } type RepProtoTypes struct { NullableTimestamps []*google_protobuf2.Timestamp `protobuf:"bytes,1,rep,name=nullableTimestamps" json:"nullableTimestamps,omitempty"` NullableDurations []*google_protobuf1.Duration `protobuf:"bytes,2,rep,name=nullableDurations" json:"nullableDurations,omitempty"` Timestamps []google_protobuf2.Timestamp `protobuf:"bytes,3,rep,name=timestamps" json:"timestamps"` Durations []google_protobuf1.Duration `protobuf:"bytes,4,rep,name=durations" json:"durations"` } func (m *RepProtoTypes) Reset() { *m = RepProtoTypes{} } func (m *RepProtoTypes) String() string { return proto.CompactTextString(m) } func (*RepProtoTypes) ProtoMessage() {} func (*RepProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{3} } func (m *RepProtoTypes) GetNullableTimestamps() []*google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamps } return nil } func (m *RepProtoTypes) GetNullableDurations() []*google_protobuf1.Duration { if m != nil { return m.NullableDurations } return nil } func (m *RepProtoTypes) GetTimestamps() []google_protobuf2.Timestamp { if m != nil { return m.Timestamps } return nil } func (m *RepProtoTypes) GetDurations() []google_protobuf1.Duration { if m != nil { return m.Durations } return nil } type RepStdTypes struct { NullableTimestamps []*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamps,stdtime" json:"nullableTimestamps,omitempty"` NullableDurations []*time.Duration `protobuf:"bytes,2,rep,name=nullableDurations,stdduration" json:"nullableDurations,omitempty"` Timestamps []time.Time `protobuf:"bytes,3,rep,name=timestamps,stdtime" json:"timestamps"` Durations []time.Duration `protobuf:"bytes,4,rep,name=durations,stdduration" json:"durations"` } func (m *RepStdTypes) Reset() { *m = RepStdTypes{} } func (m *RepStdTypes) String() string { return proto.CompactTextString(m) } func (*RepStdTypes) ProtoMessage() {} func (*RepStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{4} } func (m *RepStdTypes) GetNullableTimestamps() []*time.Time { if m != nil { return m.NullableTimestamps } return nil } func (m *RepStdTypes) GetNullableDurations() []*time.Duration { if m != nil { return m.NullableDurations } return nil } func (m *RepStdTypes) GetTimestamps() []time.Time { if m != nil { return m.Timestamps } return nil } func (m *RepStdTypes) GetDurations() []time.Duration { if m != nil { return m.Durations } return nil } type MapProtoTypes struct { NullableTimestamp map[int32]*google_protobuf2.Timestamp `protobuf:"bytes,1,rep,name=nullableTimestamp" json:"nullableTimestamp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Timestamp map[int32]google_protobuf2.Timestamp `protobuf:"bytes,2,rep,name=timestamp" json:"timestamp" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` NullableDuration map[int32]*google_protobuf1.Duration `protobuf:"bytes,3,rep,name=nullableDuration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Duration map[int32]google_protobuf1.Duration `protobuf:"bytes,4,rep,name=duration" json:"duration" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapProtoTypes) Reset() { *m = MapProtoTypes{} } func (m *MapProtoTypes) String() string { return proto.CompactTextString(m) } func (*MapProtoTypes) ProtoMessage() {} func (*MapProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{5} } func (m *MapProtoTypes) GetNullableTimestamp() map[int32]*google_protobuf2.Timestamp { if m != nil { return m.NullableTimestamp } return nil } func (m *MapProtoTypes) GetTimestamp() map[int32]google_protobuf2.Timestamp { if m != nil { return m.Timestamp } return nil } func (m *MapProtoTypes) GetNullableDuration() map[int32]*google_protobuf1.Duration { if m != nil { return m.NullableDuration } return nil } func (m *MapProtoTypes) GetDuration() map[int32]google_protobuf1.Duration { if m != nil { return m.Duration } return nil } type MapStdTypes struct { NullableTimestamp map[int32]*time.Time `protobuf:"bytes,1,rep,name=nullableTimestamp,stdtime" json:"nullableTimestamp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Timestamp map[int32]time.Time `protobuf:"bytes,2,rep,name=timestamp,stdtime" json:"timestamp" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` NullableDuration map[int32]*time.Duration `protobuf:"bytes,3,rep,name=nullableDuration,stdduration" json:"nullableDuration,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` Duration map[int32]time.Duration `protobuf:"bytes,4,rep,name=duration,stdduration" json:"duration" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *MapStdTypes) Reset() { *m = MapStdTypes{} } func (m *MapStdTypes) String() string { return proto.CompactTextString(m) } func (*MapStdTypes) ProtoMessage() {} func (*MapStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{6} } func (m *MapStdTypes) GetNullableTimestamp() map[int32]*time.Time { if m != nil { return m.NullableTimestamp } return nil } func (m *MapStdTypes) GetTimestamp() map[int32]time.Time { if m != nil { return m.Timestamp } return nil } func (m *MapStdTypes) GetNullableDuration() map[int32]*time.Duration { if m != nil { return m.NullableDuration } return nil } func (m *MapStdTypes) GetDuration() map[int32]time.Duration { if m != nil { return m.Duration } return nil } type OneofProtoTypes struct { // Types that are valid to be assigned to OneOfProtoTimes: // *OneofProtoTypes_Timestamp // *OneofProtoTypes_Duration OneOfProtoTimes isOneofProtoTypes_OneOfProtoTimes `protobuf_oneof:"OneOfProtoTimes"` } func (m *OneofProtoTypes) Reset() { *m = OneofProtoTypes{} } func (m *OneofProtoTypes) String() string { return proto.CompactTextString(m) } func (*OneofProtoTypes) ProtoMessage() {} func (*OneofProtoTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{7} } type isOneofProtoTypes_OneOfProtoTimes interface { isOneofProtoTypes_OneOfProtoTimes() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type OneofProtoTypes_Timestamp struct { Timestamp *google_protobuf2.Timestamp `protobuf:"bytes,1,opt,name=timestamp,oneof"` } type OneofProtoTypes_Duration struct { Duration *google_protobuf1.Duration `protobuf:"bytes,2,opt,name=duration,oneof"` } func (*OneofProtoTypes_Timestamp) isOneofProtoTypes_OneOfProtoTimes() {} func (*OneofProtoTypes_Duration) isOneofProtoTypes_OneOfProtoTimes() {} func (m *OneofProtoTypes) GetOneOfProtoTimes() isOneofProtoTypes_OneOfProtoTimes { if m != nil { return m.OneOfProtoTimes } return nil } func (m *OneofProtoTypes) GetTimestamp() *google_protobuf2.Timestamp { if x, ok := m.GetOneOfProtoTimes().(*OneofProtoTypes_Timestamp); ok { return x.Timestamp } return nil } func (m *OneofProtoTypes) GetDuration() *google_protobuf1.Duration { if x, ok := m.GetOneOfProtoTimes().(*OneofProtoTypes_Duration); ok { return x.Duration } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofProtoTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofProtoTypes_OneofMarshaler, _OneofProtoTypes_OneofUnmarshaler, _OneofProtoTypes_OneofSizer, []interface{}{ (*OneofProtoTypes_Timestamp)(nil), (*OneofProtoTypes_Duration)(nil), } } func _OneofProtoTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofProtoTypes) // OneOfProtoTimes switch x := m.OneOfProtoTimes.(type) { case *OneofProtoTypes_Timestamp: _ = b.EncodeVarint(1<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Timestamp); err != nil { return err } case *OneofProtoTypes_Duration: _ = b.EncodeVarint(2<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Duration); err != nil { return err } case nil: default: return fmt.Errorf("OneofProtoTypes.OneOfProtoTimes has unexpected type %T", x) } return nil } func _OneofProtoTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofProtoTypes) switch tag { case 1: // OneOfProtoTimes.timestamp if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(google_protobuf2.Timestamp) err := b.DecodeMessage(msg) m.OneOfProtoTimes = &OneofProtoTypes_Timestamp{msg} return true, err case 2: // OneOfProtoTimes.duration if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(google_protobuf1.Duration) err := b.DecodeMessage(msg) m.OneOfProtoTimes = &OneofProtoTypes_Duration{msg} return true, err default: return false, nil } } func _OneofProtoTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofProtoTypes) // OneOfProtoTimes switch x := m.OneOfProtoTimes.(type) { case *OneofProtoTypes_Timestamp: s := proto.Size(x.Timestamp) n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *OneofProtoTypes_Duration: s := proto.Size(x.Duration) n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } type OneofStdTypes struct { // Types that are valid to be assigned to OneOfStdTimes: // *OneofStdTypes_Timestamp // *OneofStdTypes_Duration OneOfStdTimes isOneofStdTypes_OneOfStdTimes `protobuf_oneof:"OneOfStdTimes"` } func (m *OneofStdTypes) Reset() { *m = OneofStdTypes{} } func (m *OneofStdTypes) String() string { return proto.CompactTextString(m) } func (*OneofStdTypes) ProtoMessage() {} func (*OneofStdTypes) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{8} } type isOneofStdTypes_OneOfStdTimes interface { isOneofStdTypes_OneOfStdTimes() Equal(interface{}) bool VerboseEqual(interface{}) error Size() int } type OneofStdTypes_Timestamp struct { Timestamp *time.Time `protobuf:"bytes,1,opt,name=timestamp,oneof,stdtime"` } type OneofStdTypes_Duration struct { Duration *time.Duration `protobuf:"bytes,2,opt,name=duration,oneof,stdduration"` } func (*OneofStdTypes_Timestamp) isOneofStdTypes_OneOfStdTimes() {} func (*OneofStdTypes_Duration) isOneofStdTypes_OneOfStdTimes() {} func (m *OneofStdTypes) GetOneOfStdTimes() isOneofStdTypes_OneOfStdTimes { if m != nil { return m.OneOfStdTimes } return nil } func (m *OneofStdTypes) GetTimestamp() *time.Time { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Timestamp); ok { return x.Timestamp } return nil } func (m *OneofStdTypes) GetDuration() *time.Duration { if x, ok := m.GetOneOfStdTimes().(*OneofStdTypes_Duration); ok { return x.Duration } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*OneofStdTypes) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _OneofStdTypes_OneofMarshaler, _OneofStdTypes_OneofUnmarshaler, _OneofStdTypes_OneofSizer, []interface{}{ (*OneofStdTypes_Timestamp)(nil), (*OneofStdTypes_Duration)(nil), } } func _OneofStdTypes_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: _ = b.EncodeVarint(1<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdTimeMarshal(*x.Timestamp) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case *OneofStdTypes_Duration: _ = b.EncodeVarint(2<<3 | proto.WireBytes) dAtA, err := github_com_gogo_protobuf_types.StdDurationMarshal(*x.Duration) if err != nil { return err } if err := b.EncodeRawBytes(dAtA); err != nil { return err } case nil: default: return fmt.Errorf("OneofStdTypes.OneOfStdTimes has unexpected type %T", x) } return nil } func _OneofStdTypes_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*OneofStdTypes) switch tag { case 1: // OneOfStdTimes.timestamp if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Time) if err2 := github_com_gogo_protobuf_types.StdTimeUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Timestamp{c} return true, err case 2: // OneOfStdTimes.duration if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeRawBytes(true) if err != nil { return true, err } c := new(time.Duration) if err2 := github_com_gogo_protobuf_types.StdDurationUnmarshal(c, x); err2 != nil { return true, err } m.OneOfStdTimes = &OneofStdTypes_Duration{c} return true, err default: return false, nil } } func _OneofStdTypes_OneofSizer(msg proto.Message) (n int) { m := msg.(*OneofStdTypes) // OneOfStdTimes switch x := m.OneOfStdTimes.(type) { case *OneofStdTypes_Timestamp: s := github_com_gogo_protobuf_types.SizeOfStdTime(*x.Timestamp) n += proto.SizeVarint(1<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *OneofStdTypes_Duration: s := github_com_gogo_protobuf_types.SizeOfStdDuration(*x.Duration) n += proto.SizeVarint(2<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } func init() { proto.RegisterType((*KnownTypes)(nil), "types.KnownTypes") proto.RegisterType((*ProtoTypes)(nil), "types.ProtoTypes") proto.RegisterType((*StdTypes)(nil), "types.StdTypes") proto.RegisterType((*RepProtoTypes)(nil), "types.RepProtoTypes") proto.RegisterType((*RepStdTypes)(nil), "types.RepStdTypes") proto.RegisterType((*MapProtoTypes)(nil), "types.MapProtoTypes") proto.RegisterType((*MapStdTypes)(nil), "types.MapStdTypes") proto.RegisterType((*OneofProtoTypes)(nil), "types.OneofProtoTypes") proto.RegisterType((*OneofStdTypes)(nil), "types.OneofStdTypes") } func (this *KnownTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.Dur.Compare(that1.Dur); c != 0 { return c } if c := this.Ts.Compare(that1.Ts); c != 0 { return c } if c := this.Dbl.Compare(that1.Dbl); c != 0 { return c } if c := this.Flt.Compare(that1.Flt); c != 0 { return c } if c := this.I64.Compare(that1.I64); c != 0 { return c } if c := this.U64.Compare(that1.U64); c != 0 { return c } if c := this.I32.Compare(that1.I32); c != 0 { return c } if c := this.U32.Compare(that1.U32); c != 0 { return c } if c := this.Bool.Compare(that1.Bool); c != 0 { return c } if c := this.Str.Compare(that1.Str); c != 0 { return c } if c := this.Bytes.Compare(that1.Bytes); c != 0 { return c } return 0 } func (this *ProtoTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := this.NullableTimestamp.Compare(that1.NullableTimestamp); c != 0 { return c } if c := this.NullableDuration.Compare(that1.NullableDuration); c != 0 { return c } if c := this.Timestamp.Compare(&that1.Timestamp); c != 0 { return c } if c := this.Duration.Compare(&that1.Duration); c != 0 { return c } return 0 } func (this *RepProtoTypes) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { if len(this.NullableTimestamps) < len(that1.NullableTimestamps) { return -1 } return 1 } for i := range this.NullableTimestamps { if c := this.NullableTimestamps[i].Compare(that1.NullableTimestamps[i]); c != 0 { return c } } if len(this.NullableDurations) != len(that1.NullableDurations) { if len(this.NullableDurations) < len(that1.NullableDurations) { return -1 } return 1 } for i := range this.NullableDurations { if c := this.NullableDurations[i].Compare(that1.NullableDurations[i]); c != 0 { return c } } if len(this.Timestamps) != len(that1.Timestamps) { if len(this.Timestamps) < len(that1.Timestamps) { return -1 } return 1 } for i := range this.Timestamps { if c := this.Timestamps[i].Compare(&that1.Timestamps[i]); c != 0 { return c } } if len(this.Durations) != len(that1.Durations) { if len(this.Durations) < len(that1.Durations) { return -1 } return 1 } for i := range this.Durations { if c := this.Durations[i].Compare(&that1.Durations[i]); c != 0 { return c } } return 0 } func (this *KnownTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *KnownTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *KnownTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *KnownTypes but is not nil && this == nil") } if !this.Dur.Equal(that1.Dur) { return fmt.Errorf("Dur this(%v) Not Equal that(%v)", this.Dur, that1.Dur) } if !this.Ts.Equal(that1.Ts) { return fmt.Errorf("Ts this(%v) Not Equal that(%v)", this.Ts, that1.Ts) } if !this.Dbl.Equal(that1.Dbl) { return fmt.Errorf("Dbl this(%v) Not Equal that(%v)", this.Dbl, that1.Dbl) } if !this.Flt.Equal(that1.Flt) { return fmt.Errorf("Flt this(%v) Not Equal that(%v)", this.Flt, that1.Flt) } if !this.I64.Equal(that1.I64) { return fmt.Errorf("I64 this(%v) Not Equal that(%v)", this.I64, that1.I64) } if !this.U64.Equal(that1.U64) { return fmt.Errorf("U64 this(%v) Not Equal that(%v)", this.U64, that1.U64) } if !this.I32.Equal(that1.I32) { return fmt.Errorf("I32 this(%v) Not Equal that(%v)", this.I32, that1.I32) } if !this.U32.Equal(that1.U32) { return fmt.Errorf("U32 this(%v) Not Equal that(%v)", this.U32, that1.U32) } if !this.Bool.Equal(that1.Bool) { return fmt.Errorf("Bool this(%v) Not Equal that(%v)", this.Bool, that1.Bool) } if !this.Str.Equal(that1.Str) { return fmt.Errorf("Str this(%v) Not Equal that(%v)", this.Str, that1.Str) } if !this.Bytes.Equal(that1.Bytes) { return fmt.Errorf("Bytes this(%v) Not Equal that(%v)", this.Bytes, that1.Bytes) } return nil } func (this *KnownTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*KnownTypes) if !ok { that2, ok := that.(KnownTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Dur.Equal(that1.Dur) { return false } if !this.Ts.Equal(that1.Ts) { return false } if !this.Dbl.Equal(that1.Dbl) { return false } if !this.Flt.Equal(that1.Flt) { return false } if !this.I64.Equal(that1.I64) { return false } if !this.U64.Equal(that1.U64) { return false } if !this.I32.Equal(that1.I32) { return false } if !this.U32.Equal(that1.U32) { return false } if !this.Bool.Equal(that1.Bool) { return false } if !this.Str.Equal(that1.Str) { return false } if !this.Bytes.Equal(that1.Bytes) { return false } return true } func (this *ProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *ProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *ProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *ProtoTypes but is not nil && this == nil") } if !this.NullableTimestamp.Equal(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", this.NullableTimestamp, that1.NullableTimestamp) } if !this.NullableDuration.Equal(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", this.NullableDuration, that1.NullableDuration) } if !this.Timestamp.Equal(&that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } if !this.Duration.Equal(&that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *ProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ProtoTypes) if !ok { that2, ok := that.(ProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.NullableTimestamp.Equal(that1.NullableTimestamp) { return false } if !this.NullableDuration.Equal(that1.NullableDuration) { return false } if !this.Timestamp.Equal(&that1.Timestamp) { return false } if !this.Duration.Equal(&that1.Duration) { return false } return true } func (this *StdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *StdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *StdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *StdTypes but is not nil && this == nil") } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return fmt.Errorf("this.NullableTimestamp != nil && that1.NullableTimestamp == nil") } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", this.NullableTimestamp, that1.NullableTimestamp) } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", *this.NullableDuration, *that1.NullableDuration) } } else if this.NullableDuration != nil { return fmt.Errorf("this.NullableDuration == nil && that.NullableDuration != nil") } else if that1.NullableDuration != nil { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", this.NullableDuration, that1.NullableDuration) } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } if this.Duration != that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *StdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*StdTypes) if !ok { that2, ok := that.(StdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.NullableTimestamp == nil { if this.NullableTimestamp != nil { return false } } else if !this.NullableTimestamp.Equal(*that1.NullableTimestamp) { return false } if this.NullableDuration != nil && that1.NullableDuration != nil { if *this.NullableDuration != *that1.NullableDuration { return false } } else if this.NullableDuration != nil { return false } else if that1.NullableDuration != nil { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } if this.Duration != that1.Duration { return false } return true } func (this *RepProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *RepProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *RepProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *RepProtoTypes but is not nil && this == nil") } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return fmt.Errorf("NullableTimestamps this(%v) Not Equal that(%v)", len(this.NullableTimestamps), len(that1.NullableTimestamps)) } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(that1.NullableTimestamps[i]) { return fmt.Errorf("NullableTimestamps this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamps[i], i, that1.NullableTimestamps[i]) } } if len(this.NullableDurations) != len(that1.NullableDurations) { return fmt.Errorf("NullableDurations this(%v) Not Equal that(%v)", len(this.NullableDurations), len(that1.NullableDurations)) } for i := range this.NullableDurations { if !this.NullableDurations[i].Equal(that1.NullableDurations[i]) { return fmt.Errorf("NullableDurations this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDurations[i], i, that1.NullableDurations[i]) } } if len(this.Timestamps) != len(that1.Timestamps) { return fmt.Errorf("Timestamps this(%v) Not Equal that(%v)", len(this.Timestamps), len(that1.Timestamps)) } for i := range this.Timestamps { if !this.Timestamps[i].Equal(&that1.Timestamps[i]) { return fmt.Errorf("Timestamps this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamps[i], i, that1.Timestamps[i]) } } if len(this.Durations) != len(that1.Durations) { return fmt.Errorf("Durations this(%v) Not Equal that(%v)", len(this.Durations), len(that1.Durations)) } for i := range this.Durations { if !this.Durations[i].Equal(&that1.Durations[i]) { return fmt.Errorf("Durations this[%v](%v) Not Equal that[%v](%v)", i, this.Durations[i], i, that1.Durations[i]) } } return nil } func (this *RepProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*RepProtoTypes) if !ok { that2, ok := that.(RepProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return false } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(that1.NullableTimestamps[i]) { return false } } if len(this.NullableDurations) != len(that1.NullableDurations) { return false } for i := range this.NullableDurations { if !this.NullableDurations[i].Equal(that1.NullableDurations[i]) { return false } } if len(this.Timestamps) != len(that1.Timestamps) { return false } for i := range this.Timestamps { if !this.Timestamps[i].Equal(&that1.Timestamps[i]) { return false } } if len(this.Durations) != len(that1.Durations) { return false } for i := range this.Durations { if !this.Durations[i].Equal(&that1.Durations[i]) { return false } } return true } func (this *RepStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *RepStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *RepStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *RepStdTypes but is not nil && this == nil") } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return fmt.Errorf("NullableTimestamps this(%v) Not Equal that(%v)", len(this.NullableTimestamps), len(that1.NullableTimestamps)) } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return fmt.Errorf("NullableTimestamps this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamps[i], i, that1.NullableTimestamps[i]) } } if len(this.NullableDurations) != len(that1.NullableDurations) { return fmt.Errorf("NullableDurations this(%v) Not Equal that(%v)", len(this.NullableDurations), len(that1.NullableDurations)) } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDurations this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDurations[i], i, that1.NullableDurations[i]) } } if len(this.Timestamps) != len(that1.Timestamps) { return fmt.Errorf("Timestamps this(%v) Not Equal that(%v)", len(this.Timestamps), len(that1.Timestamps)) } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return fmt.Errorf("Timestamps this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamps[i], i, that1.Timestamps[i]) } } if len(this.Durations) != len(that1.Durations) { return fmt.Errorf("Durations this(%v) Not Equal that(%v)", len(this.Durations), len(that1.Durations)) } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return fmt.Errorf("Durations this[%v](%v) Not Equal that[%v](%v)", i, this.Durations[i], i, that1.Durations[i]) } } return nil } func (this *RepStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*RepStdTypes) if !ok { that2, ok := that.(RepStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamps) != len(that1.NullableTimestamps) { return false } for i := range this.NullableTimestamps { if !this.NullableTimestamps[i].Equal(*that1.NullableTimestamps[i]) { return false } } if len(this.NullableDurations) != len(that1.NullableDurations) { return false } for i := range this.NullableDurations { if dthis, dthat := this.NullableDurations[i], that1.NullableDurations[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Timestamps) != len(that1.Timestamps) { return false } for i := range this.Timestamps { if !this.Timestamps[i].Equal(that1.Timestamps[i]) { return false } } if len(this.Durations) != len(that1.Durations) { return false } for i := range this.Durations { if this.Durations[i] != that1.Durations[i] { return false } } return true } func (this *MapProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapProtoTypes) if !ok { that2, ok := that.(MapProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapProtoTypes but is not nil && this == nil") } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", len(this.NullableTimestamp), len(that1.NullableTimestamp)) } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(that1.NullableTimestamp[i]) { return fmt.Errorf("NullableTimestamp this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamp[i], i, that1.NullableTimestamp[i]) } } if len(this.Timestamp) != len(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", len(this.Timestamp), len(that1.Timestamp)) } for i := range this.Timestamp { a := this.Timestamp[i] b := that1.Timestamp[i] if !(&a).Equal(&b) { return fmt.Errorf("Timestamp this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamp[i], i, that1.Timestamp[i]) } } if len(this.NullableDuration) != len(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", len(this.NullableDuration), len(that1.NullableDuration)) } for i := range this.NullableDuration { if !this.NullableDuration[i].Equal(that1.NullableDuration[i]) { return fmt.Errorf("NullableDuration this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDuration[i], i, that1.NullableDuration[i]) } } if len(this.Duration) != len(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", len(this.Duration), len(that1.Duration)) } for i := range this.Duration { a := this.Duration[i] b := that1.Duration[i] if !(&a).Equal(&b) { return fmt.Errorf("Duration this[%v](%v) Not Equal that[%v](%v)", i, this.Duration[i], i, that1.Duration[i]) } } return nil } func (this *MapProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapProtoTypes) if !ok { that2, ok := that.(MapProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return false } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(that1.NullableTimestamp[i]) { return false } } if len(this.Timestamp) != len(that1.Timestamp) { return false } for i := range this.Timestamp { a := this.Timestamp[i] b := that1.Timestamp[i] if !(&a).Equal(&b) { return false } } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if !this.NullableDuration[i].Equal(that1.NullableDuration[i]) { return false } } if len(this.Duration) != len(that1.Duration) { return false } for i := range this.Duration { a := this.Duration[i] b := that1.Duration[i] if !(&a).Equal(&b) { return false } } return true } func (this *MapStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *MapStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *MapStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *MapStdTypes but is not nil && this == nil") } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return fmt.Errorf("NullableTimestamp this(%v) Not Equal that(%v)", len(this.NullableTimestamp), len(that1.NullableTimestamp)) } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return fmt.Errorf("NullableTimestamp this[%v](%v) Not Equal that[%v](%v)", i, this.NullableTimestamp[i], i, that1.NullableTimestamp[i]) } } if len(this.Timestamp) != len(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", len(this.Timestamp), len(that1.Timestamp)) } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return fmt.Errorf("Timestamp this[%v](%v) Not Equal that[%v](%v)", i, this.Timestamp[i], i, that1.Timestamp[i]) } } if len(this.NullableDuration) != len(that1.NullableDuration) { return fmt.Errorf("NullableDuration this(%v) Not Equal that(%v)", len(this.NullableDuration), len(that1.NullableDuration)) } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return fmt.Errorf("NullableDuration this[%v](%v) Not Equal that[%v](%v)", i, this.NullableDuration[i], i, that1.NullableDuration[i]) } } if len(this.Duration) != len(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", len(this.Duration), len(that1.Duration)) } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return fmt.Errorf("Duration this[%v](%v) Not Equal that[%v](%v)", i, this.Duration[i], i, that1.Duration[i]) } } return nil } func (this *MapStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*MapStdTypes) if !ok { that2, ok := that.(MapStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.NullableTimestamp) != len(that1.NullableTimestamp) { return false } for i := range this.NullableTimestamp { if !this.NullableTimestamp[i].Equal(*that1.NullableTimestamp[i]) { return false } } if len(this.Timestamp) != len(that1.Timestamp) { return false } for i := range this.Timestamp { if !this.Timestamp[i].Equal(that1.Timestamp[i]) { return false } } if len(this.NullableDuration) != len(that1.NullableDuration) { return false } for i := range this.NullableDuration { if dthis, dthat := this.NullableDuration[i], that1.NullableDuration[i]; (dthis != nil && dthat != nil && *dthis != *dthat) || (dthis != nil && dthat == nil) || (dthis == nil && dthat != nil) { return false } } if len(this.Duration) != len(that1.Duration) { return false } for i := range this.Duration { if this.Duration[i] != that1.Duration[i] { return false } } return true } func (this *OneofProtoTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes) if !ok { that2, ok := that.(OneofProtoTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes but is not nil && this == nil") } if that1.OneOfProtoTimes == nil { if this.OneOfProtoTimes != nil { return fmt.Errorf("this.OneOfProtoTimes != nil && that1.OneOfProtoTimes == nil") } } else if this.OneOfProtoTimes == nil { return fmt.Errorf("this.OneOfProtoTimes == nil && that1.OneOfProtoTimes != nil") } else if err := this.OneOfProtoTimes.VerboseEqual(that1.OneOfProtoTimes); err != nil { return err } return nil } func (this *OneofProtoTypes_Timestamp) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes_Timestamp) if !ok { that2, ok := that.(OneofProtoTypes_Timestamp) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes_Timestamp") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes_Timestamp but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes_Timestamp but is not nil && this == nil") } if !this.Timestamp.Equal(that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *OneofProtoTypes_Duration) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofProtoTypes_Duration) if !ok { that2, ok := that.(OneofProtoTypes_Duration) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofProtoTypes_Duration") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofProtoTypes_Duration but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofProtoTypes_Duration but is not nil && this == nil") } if !this.Duration.Equal(that1.Duration) { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *OneofProtoTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes) if !ok { that2, ok := that.(OneofProtoTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.OneOfProtoTimes == nil { if this.OneOfProtoTimes != nil { return false } } else if this.OneOfProtoTimes == nil { return false } else if !this.OneOfProtoTimes.Equal(that1.OneOfProtoTimes) { return false } return true } func (this *OneofProtoTypes_Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes_Timestamp) if !ok { that2, ok := that.(OneofProtoTypes_Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Timestamp.Equal(that1.Timestamp) { return false } return true } func (this *OneofProtoTypes_Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofProtoTypes_Duration) if !ok { that2, ok := that.(OneofProtoTypes_Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Duration.Equal(that1.Duration) { return false } return true } func (this *OneofStdTypes) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes but is not nil && this == nil") } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return fmt.Errorf("this.OneOfStdTimes != nil && that1.OneOfStdTimes == nil") } } else if this.OneOfStdTimes == nil { return fmt.Errorf("this.OneOfStdTimes == nil && that1.OneOfStdTimes != nil") } else if err := this.OneOfStdTimes.VerboseEqual(that1.OneOfStdTimes); err != nil { return err } return nil } func (this *OneofStdTypes_Timestamp) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Timestamp") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Timestamp but is not nil && this == nil") } if that1.Timestamp == nil { if this.Timestamp != nil { return fmt.Errorf("this.Timestamp != nil && that1.Timestamp == nil") } } else if !this.Timestamp.Equal(*that1.Timestamp) { return fmt.Errorf("Timestamp this(%v) Not Equal that(%v)", this.Timestamp, that1.Timestamp) } return nil } func (this *OneofStdTypes_Duration) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OneofStdTypes_Duration") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OneofStdTypes_Duration but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OneofStdTypes_Duration but is not nil && this == nil") } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", *this.Duration, *that1.Duration) } } else if this.Duration != nil { return fmt.Errorf("this.Duration == nil && that.Duration != nil") } else if that1.Duration != nil { return fmt.Errorf("Duration this(%v) Not Equal that(%v)", this.Duration, that1.Duration) } return nil } func (this *OneofStdTypes) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes) if !ok { that2, ok := that.(OneofStdTypes) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.OneOfStdTimes == nil { if this.OneOfStdTimes != nil { return false } } else if this.OneOfStdTimes == nil { return false } else if !this.OneOfStdTimes.Equal(that1.OneOfStdTimes) { return false } return true } func (this *OneofStdTypes_Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Timestamp) if !ok { that2, ok := that.(OneofStdTypes_Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Timestamp == nil { if this.Timestamp != nil { return false } } else if !this.Timestamp.Equal(*that1.Timestamp) { return false } return true } func (this *OneofStdTypes_Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OneofStdTypes_Duration) if !ok { that2, ok := that.(OneofStdTypes_Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Duration != nil && that1.Duration != nil { if *this.Duration != *that1.Duration { return false } } else if this.Duration != nil { return false } else if that1.Duration != nil { return false } return true } func NewPopulatedKnownTypes(r randyTypes, easy bool) *KnownTypes { this := &KnownTypes{} if r.Intn(10) != 0 { this.Dur = google_protobuf1.NewPopulatedDuration(r, easy) } if r.Intn(10) != 0 { this.Ts = google_protobuf2.NewPopulatedTimestamp(r, easy) } if r.Intn(10) != 0 { this.Dbl = google_protobuf3.NewPopulatedDoubleValue(r, easy) } if r.Intn(10) != 0 { this.Flt = google_protobuf3.NewPopulatedFloatValue(r, easy) } if r.Intn(10) != 0 { this.I64 = google_protobuf3.NewPopulatedInt64Value(r, easy) } if r.Intn(10) != 0 { this.U64 = google_protobuf3.NewPopulatedUInt64Value(r, easy) } if r.Intn(10) != 0 { this.I32 = google_protobuf3.NewPopulatedInt32Value(r, easy) } if r.Intn(10) != 0 { this.U32 = google_protobuf3.NewPopulatedUInt32Value(r, easy) } if r.Intn(10) != 0 { this.Bool = google_protobuf3.NewPopulatedBoolValue(r, easy) } if r.Intn(10) != 0 { this.Str = google_protobuf3.NewPopulatedStringValue(r, easy) } if r.Intn(10) != 0 { this.Bytes = google_protobuf3.NewPopulatedBytesValue(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedProtoTypes(r randyTypes, easy bool) *ProtoTypes { this := &ProtoTypes{} if r.Intn(10) != 0 { this.NullableTimestamp = google_protobuf2.NewPopulatedTimestamp(r, easy) } if r.Intn(10) != 0 { this.NullableDuration = google_protobuf1.NewPopulatedDuration(r, easy) } v1 := google_protobuf2.NewPopulatedTimestamp(r, easy) this.Timestamp = *v1 v2 := google_protobuf1.NewPopulatedDuration(r, easy) this.Duration = *v2 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedStdTypes(r randyTypes, easy bool) *StdTypes { this := &StdTypes{} if r.Intn(10) != 0 { this.NullableTimestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } if r.Intn(10) != 0 { this.NullableDuration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } v3 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamp = *v3 v4 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Duration = *v4 if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedRepProtoTypes(r randyTypes, easy bool) *RepProtoTypes { this := &RepProtoTypes{} if r.Intn(10) != 0 { v5 := r.Intn(5) this.NullableTimestamps = make([]*google_protobuf2.Timestamp, v5) for i := 0; i < v5; i++ { this.NullableTimestamps[i] = google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v6 := r.Intn(5) this.NullableDurations = make([]*google_protobuf1.Duration, v6) for i := 0; i < v6; i++ { this.NullableDurations[i] = google_protobuf1.NewPopulatedDuration(r, easy) } } if r.Intn(10) != 0 { v7 := r.Intn(5) this.Timestamps = make([]google_protobuf2.Timestamp, v7) for i := 0; i < v7; i++ { v8 := google_protobuf2.NewPopulatedTimestamp(r, easy) this.Timestamps[i] = *v8 } } if r.Intn(10) != 0 { v9 := r.Intn(5) this.Durations = make([]google_protobuf1.Duration, v9) for i := 0; i < v9; i++ { v10 := google_protobuf1.NewPopulatedDuration(r, easy) this.Durations[i] = *v10 } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedRepStdTypes(r randyTypes, easy bool) *RepStdTypes { this := &RepStdTypes{} if r.Intn(10) != 0 { v11 := r.Intn(5) this.NullableTimestamps = make([]*time.Time, v11) for i := 0; i < v11; i++ { this.NullableTimestamps[i] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v12 := r.Intn(5) this.NullableDurations = make([]*time.Duration, v12) for i := 0; i < v12; i++ { this.NullableDurations[i] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v13 := r.Intn(5) this.Timestamps = make([]time.Time, v13) for i := 0; i < v13; i++ { v14 := github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) this.Timestamps[i] = *v14 } } if r.Intn(10) != 0 { v15 := r.Intn(5) this.Durations = make([]time.Duration, v15) for i := 0; i < v15; i++ { v16 := github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) this.Durations[i] = *v16 } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMapProtoTypes(r randyTypes, easy bool) *MapProtoTypes { this := &MapProtoTypes{} if r.Intn(10) != 0 { v17 := r.Intn(10) this.NullableTimestamp = make(map[int32]*google_protobuf2.Timestamp) for i := 0; i < v17; i++ { this.NullableTimestamp[int32(r.Int31())] = google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v18 := r.Intn(10) this.Timestamp = make(map[int32]google_protobuf2.Timestamp) for i := 0; i < v18; i++ { this.Timestamp[int32(r.Int31())] = *google_protobuf2.NewPopulatedTimestamp(r, easy) } } if r.Intn(10) != 0 { v19 := r.Intn(10) this.NullableDuration = make(map[int32]*google_protobuf1.Duration) for i := 0; i < v19; i++ { this.NullableDuration[int32(r.Int31())] = google_protobuf1.NewPopulatedDuration(r, easy) } } if r.Intn(10) != 0 { v20 := r.Intn(10) this.Duration = make(map[int32]google_protobuf1.Duration) for i := 0; i < v20; i++ { this.Duration[int32(r.Int31())] = *google_protobuf1.NewPopulatedDuration(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedMapStdTypes(r randyTypes, easy bool) *MapStdTypes { this := &MapStdTypes{} if r.Intn(10) != 0 { v21 := r.Intn(10) this.NullableTimestamp = make(map[int32]*time.Time) for i := 0; i < v21; i++ { this.NullableTimestamp[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v22 := r.Intn(10) this.Timestamp = make(map[int32]time.Time) for i := 0; i < v22; i++ { this.Timestamp[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) } } if r.Intn(10) != 0 { v23 := r.Intn(10) this.NullableDuration = make(map[int32]*time.Duration) for i := 0; i < v23; i++ { this.NullableDuration[int32(r.Int31())] = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if r.Intn(10) != 0 { v24 := r.Intn(10) this.Duration = make(map[int32]time.Duration) for i := 0; i < v24; i++ { this.Duration[int32(r.Int31())] = *github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofProtoTypes(r randyTypes, easy bool) *OneofProtoTypes { this := &OneofProtoTypes{} oneofNumber_OneOfProtoTimes := []int32{1, 2}[r.Intn(2)] switch oneofNumber_OneOfProtoTimes { case 1: this.OneOfProtoTimes = NewPopulatedOneofProtoTypes_Timestamp(r, easy) case 2: this.OneOfProtoTimes = NewPopulatedOneofProtoTypes_Duration(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofProtoTypes_Timestamp(r randyTypes, easy bool) *OneofProtoTypes_Timestamp { this := &OneofProtoTypes_Timestamp{} this.Timestamp = google_protobuf2.NewPopulatedTimestamp(r, easy) return this } func NewPopulatedOneofProtoTypes_Duration(r randyTypes, easy bool) *OneofProtoTypes_Duration { this := &OneofProtoTypes_Duration{} this.Duration = google_protobuf1.NewPopulatedDuration(r, easy) return this } func NewPopulatedOneofStdTypes(r randyTypes, easy bool) *OneofStdTypes { this := &OneofStdTypes{} oneofNumber_OneOfStdTimes := []int32{1, 2}[r.Intn(2)] switch oneofNumber_OneOfStdTimes { case 1: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Timestamp(r, easy) case 2: this.OneOfStdTimes = NewPopulatedOneofStdTypes_Duration(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOneofStdTypes_Timestamp(r randyTypes, easy bool) *OneofStdTypes_Timestamp { this := &OneofStdTypes_Timestamp{} this.Timestamp = github_com_gogo_protobuf_types.NewPopulatedStdTime(r, easy) return this } func NewPopulatedOneofStdTypes_Duration(r randyTypes, easy bool) *OneofStdTypes_Duration { this := &OneofStdTypes_Duration{} this.Duration = github_com_gogo_protobuf_types.NewPopulatedStdDuration(r, easy) return this } type randyTypes interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneTypes(r randyTypes) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringTypes(r randyTypes) string { v25 := r.Intn(100) tmps := make([]rune, v25) for i := 0; i < v25; i++ { tmps[i] = randUTF8RuneTypes(r) } return string(tmps) } func randUnrecognizedTypes(r randyTypes, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldTypes(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldTypes(dAtA []byte, r randyTypes, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) v26 := r.Int63() if r.Intn(2) == 0 { v26 *= -1 } dAtA = encodeVarintPopulateTypes(dAtA, uint64(v26)) case 1: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateTypes(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateTypes(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateTypes(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *KnownTypes) Size() (n int) { var l int _ = l if m.Dur != nil { l = m.Dur.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Ts != nil { l = m.Ts.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Dbl != nil { l = m.Dbl.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Flt != nil { l = m.Flt.Size() n += 1 + l + sovTypes(uint64(l)) } if m.I64 != nil { l = m.I64.Size() n += 1 + l + sovTypes(uint64(l)) } if m.U64 != nil { l = m.U64.Size() n += 1 + l + sovTypes(uint64(l)) } if m.I32 != nil { l = m.I32.Size() n += 1 + l + sovTypes(uint64(l)) } if m.U32 != nil { l = m.U32.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Bool != nil { l = m.Bool.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Str != nil { l = m.Str.Size() n += 1 + l + sovTypes(uint64(l)) } if m.Bytes != nil { l = m.Bytes.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *ProtoTypes) Size() (n int) { var l int _ = l if m.NullableTimestamp != nil { l = m.NullableTimestamp.Size() n += 1 + l + sovTypes(uint64(l)) } if m.NullableDuration != nil { l = m.NullableDuration.Size() n += 1 + l + sovTypes(uint64(l)) } l = m.Timestamp.Size() n += 1 + l + sovTypes(uint64(l)) l = m.Duration.Size() n += 1 + l + sovTypes(uint64(l)) return n } func (m *StdTypes) Size() (n int) { var l int _ = l if m.NullableTimestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.NullableTimestamp) n += 1 + l + sovTypes(uint64(l)) } if m.NullableDuration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.NullableDuration) n += 1 + l + sovTypes(uint64(l)) } l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Timestamp) n += 1 + l + sovTypes(uint64(l)) l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.Duration) n += 1 + l + sovTypes(uint64(l)) return n } func (m *RepProtoTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamps) > 0 { for _, e := range m.NullableTimestamps { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.NullableDurations) > 0 { for _, e := range m.NullableDurations { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.Timestamps) > 0 { for _, e := range m.Timestamps { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } if len(m.Durations) > 0 { for _, e := range m.Durations { l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } return n } func (m *RepStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamps) > 0 { for _, e := range m.NullableTimestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(*e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.NullableDurations) > 0 { for _, e := range m.NullableDurations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.Timestamps) > 0 { for _, e := range m.Timestamps { l = github_com_gogo_protobuf_types.SizeOfStdTime(e) n += 1 + l + sovTypes(uint64(l)) } } if len(m.Durations) > 0 { for _, e := range m.Durations { l = github_com_gogo_protobuf_types.SizeOfStdDuration(e) n += 1 + l + sovTypes(uint64(l)) } } return n } func (m *MapProtoTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamp) > 0 { for k, v := range m.NullableTimestamp { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Timestamp) > 0 { for k, v := range m.Timestamp { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Duration) > 0 { for k, v := range m.Duration { _ = k _ = v l = v.Size() mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } return n } func (m *MapStdTypes) Size() (n int) { var l int _ = l if len(m.NullableTimestamp) > 0 { for k, v := range m.NullableTimestamp { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*v) l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Timestamp) > 0 { for k, v := range m.Timestamp { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdTime(v) mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.NullableDuration) > 0 { for k, v := range m.NullableDuration { _ = k _ = v l = 0 if v != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*v) l += 1 + sovTypes(uint64(l)) } mapEntrySize := 1 + sovTypes(uint64(k)) + l n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } if len(m.Duration) > 0 { for k, v := range m.Duration { _ = k _ = v l = github_com_gogo_protobuf_types.SizeOfStdDuration(v) mapEntrySize := 1 + sovTypes(uint64(k)) + 1 + l + sovTypes(uint64(l)) n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) } } return n } func (m *OneofProtoTypes) Size() (n int) { var l int _ = l if m.OneOfProtoTimes != nil { n += m.OneOfProtoTimes.Size() } return n } func (m *OneofProtoTypes_Timestamp) Size() (n int) { var l int _ = l if m.Timestamp != nil { l = m.Timestamp.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofProtoTypes_Duration) Size() (n int) { var l int _ = l if m.Duration != nil { l = m.Duration.Size() n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofStdTypes) Size() (n int) { var l int _ = l if m.OneOfStdTimes != nil { n += m.OneOfStdTimes.Size() } return n } func (m *OneofStdTypes_Timestamp) Size() (n int) { var l int _ = l if m.Timestamp != nil { l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.Timestamp) n += 1 + l + sovTypes(uint64(l)) } return n } func (m *OneofStdTypes_Duration) Size() (n int) { var l int _ = l if m.Duration != nil { l = github_com_gogo_protobuf_types.SizeOfStdDuration(*m.Duration) n += 1 + l + sovTypes(uint64(l)) } return n } func sovTypes(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTypes(x uint64) (n int) { return sovTypes(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *KnownTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: KnownTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: KnownTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Dur", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Dur == nil { m.Dur = &google_protobuf1.Duration{} } if err := m.Dur.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Ts", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Ts == nil { m.Ts = &google_protobuf2.Timestamp{} } if err := m.Ts.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Dbl", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Dbl == nil { m.Dbl = &google_protobuf3.DoubleValue{} } if err := m.Dbl.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Flt", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Flt == nil { m.Flt = &google_protobuf3.FloatValue{} } if err := m.Flt.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field I64", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.I64 == nil { m.I64 = &google_protobuf3.Int64Value{} } if err := m.I64.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field U64", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.U64 == nil { m.U64 = &google_protobuf3.UInt64Value{} } if err := m.U64.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field I32", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.I32 == nil { m.I32 = &google_protobuf3.Int32Value{} } if err := m.I32.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field U32", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.U32 == nil { m.U32 = &google_protobuf3.UInt32Value{} } if err := m.U32.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Bool", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Bool == nil { m.Bool = &google_protobuf3.BoolValue{} } if err := m.Bool.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Str", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Str == nil { m.Str = &google_protobuf3.StringValue{} } if err := m.Str.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Bytes", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Bytes == nil { m.Bytes = &google_protobuf3.BytesValue{} } if err := m.Bytes.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ProtoTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: ProtoTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: ProtoTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableTimestamp == nil { m.NullableTimestamp = &google_protobuf2.Timestamp{} } if err := m.NullableTimestamp.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDuration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableDuration == nil { m.NullableDuration = &google_protobuf1.Duration{} } if err := m.NullableDuration.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Timestamp.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Duration.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *StdTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: StdTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: StdTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableTimestamp == nil { m.NullableTimestamp = new(time.Time) } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.NullableTimestamp, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDuration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableDuration == nil { m.NullableDuration = new(time.Duration) } if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(m.NullableDuration, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.Timestamp, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.Duration, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *RepProtoTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: RepProtoTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: RepProtoTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamps", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.NullableTimestamps = append(m.NullableTimestamps, &google_protobuf2.Timestamp{}) if err := m.NullableTimestamps[len(m.NullableTimestamps)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDurations", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.NullableDurations = append(m.NullableDurations, &google_protobuf1.Duration{}) if err := m.NullableDurations[len(m.NullableDurations)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamps", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Timestamps = append(m.Timestamps, google_protobuf2.Timestamp{}) if err := m.Timestamps[len(m.Timestamps)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Durations", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Durations = append(m.Durations, google_protobuf1.Duration{}) if err := m.Durations[len(m.Durations)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *RepStdTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: RepStdTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: RepStdTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamps", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.NullableTimestamps = append(m.NullableTimestamps, new(time.Time)) if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.NullableTimestamps[len(m.NullableTimestamps)-1], dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDurations", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.NullableDurations = append(m.NullableDurations, new(time.Duration)) if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(m.NullableDurations[len(m.NullableDurations)-1], dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamps", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Timestamps = append(m.Timestamps, time.Time{}) if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&(m.Timestamps[len(m.Timestamps)-1]), dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Durations", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Durations = append(m.Durations, time.Duration(0)) if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&(m.Durations[len(m.Durations)-1]), dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *MapProtoTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MapProtoTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MapProtoTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableTimestamp == nil { m.NullableTimestamp = make(map[int32]*google_protobuf2.Timestamp) } var mapkey int32 var mapvalue *google_protobuf2.Timestamp for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &google_protobuf2.Timestamp{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableTimestamp[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Timestamp == nil { m.Timestamp = make(map[int32]google_protobuf2.Timestamp) } var mapkey int32 mapvalue := &google_protobuf2.Timestamp{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &google_protobuf2.Timestamp{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Timestamp[mapkey] = *mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDuration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableDuration == nil { m.NullableDuration = make(map[int32]*google_protobuf1.Duration) } var mapkey int32 var mapvalue *google_protobuf1.Duration for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &google_protobuf1.Duration{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableDuration[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Duration == nil { m.Duration = make(map[int32]google_protobuf1.Duration) } var mapkey int32 mapvalue := &google_protobuf1.Duration{} for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &google_protobuf1.Duration{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Duration[mapkey] = *mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *MapStdTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: MapStdTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: MapStdTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableTimestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableTimestamp == nil { m.NullableTimestamp = make(map[int32]*time.Time) } var mapkey int32 mapvalue := new(time.Time) for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(mapvalue, dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableTimestamp[mapkey] = mapvalue iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Timestamp == nil { m.Timestamp = make(map[int32]time.Time) } var mapkey int32 mapvalue := new(time.Time) for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(mapvalue, dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Timestamp[mapkey] = *mapvalue iNdEx = postIndex case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NullableDuration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.NullableDuration == nil { m.NullableDuration = make(map[int32]*time.Duration) } var mapkey int32 mapvalue := new(time.Duration) for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(mapvalue, dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.NullableDuration[mapkey] = mapvalue iNdEx = postIndex case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Duration == nil { m.Duration = make(map[int32]time.Duration) } var mapkey int32 mapvalue := new(time.Duration) for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapkey |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthTypes } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthTypes } if postmsgIndex > l { return io.ErrUnexpectedEOF } if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(mapvalue, dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Duration[mapkey] = *mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OneofProtoTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OneofProtoTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OneofProtoTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &google_protobuf2.Timestamp{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.OneOfProtoTimes = &OneofProtoTypes_Timestamp{v} iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &google_protobuf1.Duration{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.OneOfProtoTimes = &OneofProtoTypes_Duration{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OneofStdTypes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OneofStdTypes: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OneofStdTypes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := new(time.Time) if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(v, dAtA[iNdEx:postIndex]); err != nil { return err } m.OneOfStdTimes = &OneofStdTypes_Timestamp{v} iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := new(time.Duration) if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(v, dAtA[iNdEx:postIndex]); err != nil { return err } m.OneOfStdTimes = &OneofStdTypes_Duration{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTypes } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipTypes(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypes } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypes } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypes } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthTypes } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTypes } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipTypes(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthTypes = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTypes = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("combos/unmarshaler/types.proto", fileDescriptorTypes) } var fileDescriptorTypes = []byte{ // 928 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0xcd, 0x8e, 0xdb, 0x54, 0x18, 0x8d, 0x7f, 0x52, 0x32, 0x5f, 0x14, 0xda, 0x5a, 0x02, 0x99, 0x80, 0x9c, 0x21, 0x6c, 0x86, 0x56, 0x75, 0x20, 0x89, 0x02, 0x1a, 0x54, 0x28, 0xd6, 0xb4, 0x9d, 0x52, 0x4d, 0xa7, 0x4a, 0xcb, 0x08, 0x90, 0x40, 0xd8, 0x8d, 0x93, 0x46, 0x38, 0xbe, 0x91, 0x7d, 0x4d, 0x95, 0x1d, 0x8f, 0xc0, 0x12, 0xc4, 0x86, 0xee, 0x90, 0x60, 0x0f, 0x4b, 0x36, 0x48, 0xdd, 0xc1, 0x13, 0x40, 0x1b, 0x36, 0x3c, 0x42, 0x97, 0xe8, 0x5e, 0x5f, 0xff, 0xc5, 0xd7, 0x0e, 0x89, 0x34, 0x62, 0xd3, 0xdd, 0x78, 0x7c, 0xce, 0xf1, 0xf1, 0xf1, 0xf9, 0xbe, 0x1b, 0xd0, 0xee, 0xa1, 0x99, 0x85, 0xfc, 0x4e, 0xe0, 0xce, 0x4c, 0xcf, 0xbf, 0x6f, 0x3a, 0xb6, 0xd7, 0xc1, 0x8b, 0xb9, 0xed, 0xeb, 0x73, 0x0f, 0x61, 0xa4, 0x54, 0xe9, 0x45, 0xf3, 0xd2, 0x64, 0x8a, 0xef, 0x07, 0x96, 0x7e, 0x0f, 0xcd, 0x3a, 0x13, 0x34, 0x41, 0x1d, 0x7a, 0xd7, 0x0a, 0xc6, 0xf4, 0x8a, 0x5e, 0xd0, 0xbf, 0x42, 0x56, 0x53, 0x9b, 0x20, 0x34, 0x71, 0xec, 0x04, 0x35, 0x0a, 0x3c, 0x13, 0x4f, 0x91, 0xcb, 0xee, 0xb7, 0x56, 0xef, 0xe3, 0xe9, 0xcc, 0xf6, 0xb1, 0x39, 0x9b, 0x17, 0x09, 0x3c, 0xf0, 0xcc, 0xf9, 0xdc, 0xf6, 0x98, 0xad, 0xf6, 0x77, 0x32, 0xc0, 0x4d, 0x17, 0x3d, 0x70, 0xef, 0x12, 0x7b, 0xca, 0x45, 0x90, 0x46, 0x81, 0xa7, 0x0a, 0xbb, 0xc2, 0x5e, 0xbd, 0xfb, 0x92, 0x1e, 0x92, 0xf5, 0x88, 0xac, 0x1f, 0xb0, 0xa7, 0x0f, 0x09, 0x4a, 0xb9, 0x00, 0x22, 0xf6, 0x55, 0x91, 0x62, 0x9b, 0x39, 0xec, 0xdd, 0xc8, 0xc9, 0x50, 0xc4, 0xbe, 0xa2, 0x83, 0x34, 0xb2, 0x1c, 0x55, 0xa2, 0xe0, 0x57, 0xf2, 0xc2, 0x28, 0xb0, 0x1c, 0xfb, 0xc4, 0x74, 0x02, 0x7b, 0x48, 0x80, 0xca, 0x25, 0x90, 0xc6, 0x0e, 0x56, 0x65, 0x8a, 0x7f, 0x39, 0x87, 0xbf, 0xe6, 0x20, 0x13, 0x33, 0xf8, 0xd8, 0xc1, 0x04, 0x3e, 0x1d, 0xf4, 0xd5, 0x6a, 0x01, 0xfc, 0x86, 0x8b, 0x07, 0x7d, 0x06, 0x9f, 0x0e, 0xfa, 0xc4, 0x4d, 0x30, 0xe8, 0xab, 0x67, 0x0a, 0xdc, 0x7c, 0x98, 0xc6, 0x07, 0x83, 0x3e, 0x95, 0xef, 0x75, 0xd5, 0xe7, 0x8a, 0xe5, 0x7b, 0xdd, 0x48, 0xbe, 0xd7, 0xa5, 0xf2, 0xbd, 0xae, 0x5a, 0x2b, 0x91, 0x8f, 0xf1, 0x01, 0xc5, 0xcb, 0x16, 0x42, 0x8e, 0xba, 0x53, 0x10, 0xa5, 0x81, 0x90, 0x13, 0xc2, 0x29, 0x8e, 0xe8, 0xfb, 0xd8, 0x53, 0xa1, 0x40, 0xff, 0x0e, 0xf6, 0xa6, 0xee, 0x84, 0xe9, 0xfb, 0xd8, 0x53, 0xde, 0x84, 0xaa, 0xb5, 0xc0, 0xb6, 0xaf, 0xd6, 0x0b, 0x5e, 0xc0, 0x20, 0x77, 0x43, 0x42, 0x88, 0xdc, 0x97, 0xff, 0x79, 0xd8, 0x12, 0xda, 0xdf, 0x8b, 0x00, 0xb7, 0x09, 0x28, 0x6c, 0xc7, 0x21, 0x9c, 0x77, 0x03, 0xc7, 0x31, 0x2d, 0xc7, 0x8e, 0xbf, 0x2e, 0xeb, 0x4a, 0xd9, 0xf7, 0xcf, 0x93, 0x94, 0xab, 0x70, 0x2e, 0xfa, 0x67, 0xd4, 0x29, 0x56, 0xa4, 0x92, 0xd2, 0xe5, 0x28, 0xca, 0xbb, 0xb0, 0x13, 0x17, 0x9e, 0x75, 0xab, 0xc4, 0x88, 0x21, 0x3f, 0xfa, 0xb3, 0x55, 0x19, 0x26, 0x14, 0xe5, 0x1d, 0xa8, 0x45, 0x03, 0xc5, 0xaa, 0x56, 0xfc, 0x78, 0xc6, 0x8e, 0x09, 0x2c, 0xa2, 0x9f, 0x44, 0xa8, 0xdd, 0xc1, 0xa3, 0x30, 0xa0, 0x5b, 0x5b, 0x05, 0x64, 0xc8, 0x5f, 0xff, 0xd5, 0x12, 0x78, 0x31, 0xdd, 0xdc, 0x22, 0x26, 0x43, 0xfe, 0x86, 0xa8, 0xe5, 0xc3, 0x32, 0x36, 0x0b, 0xab, 0x46, 0x5e, 0x97, 0x1a, 0x4b, 0x05, 0xf6, 0xde, 0x26, 0x81, 0x51, 0x05, 0x6a, 0x26, 0x26, 0xb5, 0x7f, 0x14, 0xa1, 0x31, 0xb4, 0xe7, 0xa9, 0x52, 0x7d, 0x00, 0x4a, 0xee, 0xc5, 0x7d, 0x55, 0xd8, 0x95, 0xd6, 0xb4, 0x8a, 0xc3, 0x52, 0xae, 0x27, 0xf9, 0x47, 0x2e, 0xc8, 0x82, 0x92, 0xca, 0x7b, 0x95, 0xe7, 0x28, 0x57, 0x00, 0x70, 0x62, 0x46, 0x5a, 0x67, 0x86, 0x75, 0x23, 0xc5, 0x51, 0x2e, 0xc3, 0xce, 0x28, 0xb6, 0x20, 0xaf, 0xb1, 0x10, 0x35, 0x33, 0x66, 0xb0, 0x72, 0xfd, 0x2c, 0x42, 0x7d, 0x68, 0xcf, 0xe3, 0x7e, 0xdd, 0xde, 0x2e, 0x2b, 0x56, 0x30, 0x5e, 0x62, 0x47, 0xdb, 0x24, 0xc6, 0x2a, 0xc6, 0xc9, 0xed, 0x60, 0xc3, 0xdc, 0x92, 0x92, 0xa5, 0xb3, 0x7b, 0x7f, 0xa3, 0xec, 0x92, 0x9a, 0x25, 0xac, 0xf6, 0x6f, 0x55, 0x68, 0x1c, 0x99, 0xe9, 0x9e, 0x7d, 0xcc, 0x9f, 0x4d, 0x22, 0x7e, 0x51, 0x0f, 0x4f, 0xea, 0x0c, 0x41, 0xbf, 0xb5, 0x8a, 0xbe, 0xea, 0x62, 0x6f, 0xc1, 0x1b, 0xd3, 0xeb, 0xe9, 0xc9, 0x0a, 0xc3, 0x7b, 0x8d, 0x2b, 0x99, 0x95, 0xca, 0xef, 0xa3, 0x13, 0xce, 0xbc, 0x87, 0x21, 0x5e, 0x28, 0xb5, 0x18, 0x81, 0x43, 0x87, 0xf9, 0xd1, 0x3f, 0xc8, 0x8c, 0x2d, 0xd1, 0x6b, 0x73, 0xf5, 0x32, 0x3a, 0xab, 0x0b, 0xaf, 0xf9, 0x39, 0xbc, 0xc8, 0xcf, 0x44, 0x39, 0x07, 0xd2, 0x17, 0xf6, 0x82, 0x6e, 0xba, 0xea, 0x90, 0xfc, 0xa9, 0xbc, 0x01, 0xd5, 0x2f, 0xc9, 0x79, 0xf2, 0x1f, 0x7e, 0x1e, 0x84, 0xc0, 0x7d, 0xf1, 0x6d, 0xa1, 0xf9, 0x11, 0x3c, 0x7f, 0x4a, 0xca, 0x9f, 0xc1, 0x0b, 0xdc, 0xb0, 0x38, 0x0f, 0xe8, 0x64, 0x1f, 0x50, 0xb2, 0x38, 0x52, 0xfa, 0x27, 0xd0, 0x38, 0x0d, 0xdd, 0xf6, 0xef, 0x55, 0xa8, 0x1f, 0x99, 0xc9, 0x06, 0xf8, 0xb4, 0xb8, 0xc5, 0xaf, 0x27, 0x9f, 0x34, 0x82, 0x17, 0x74, 0xb8, 0xf8, 0xc0, 0xb9, 0x91, 0x6f, 0xf2, 0xab, 0x1c, 0xd9, 0x15, 0x39, 0xee, 0x51, 0xf1, 0x49, 0x61, 0x97, 0xf7, 0x4a, 0x8c, 0xae, 0x34, 0xb0, 0xe0, 0x28, 0xbb, 0x96, 0xeb, 0xf3, 0x2e, 0x47, 0x33, 0xab, 0xc5, 0x39, 0x8d, 0x9e, 0x35, 0xfa, 0x7f, 0x68, 0xf4, 0xb7, 0x02, 0x9c, 0x3d, 0x76, 0x6d, 0x34, 0x4e, 0xed, 0xe6, 0xfd, 0x74, 0xed, 0xd6, 0xfe, 0x5e, 0x3a, 0xcc, 0xec, 0xcc, 0xb7, 0x52, 0x5d, 0x58, 0xe7, 0xe3, 0x30, 0xb5, 0xce, 0x8c, 0xf3, 0xd4, 0xc7, 0x31, 0xf3, 0x41, 0xf4, 0xda, 0x0f, 0x05, 0x68, 0x50, 0x6f, 0xf1, 0xbc, 0x5d, 0xd9, 0xc8, 0x59, 0x38, 0x58, 0x59, 0x7f, 0x97, 0x37, 0xf0, 0x17, 0x16, 0x3e, 0xe3, 0xf2, 0x2c, 0x75, 0x74, 0x4c, 0x1d, 0x11, 0x4d, 0x63, 0xef, 0xf1, 0x13, 0x4d, 0x78, 0xfa, 0x44, 0x13, 0x7e, 0x58, 0x6a, 0xc2, 0x2f, 0x4b, 0x4d, 0xf8, 0x75, 0xa9, 0x09, 0x8f, 0x96, 0x5a, 0xe5, 0x8f, 0xa5, 0x26, 0x3c, 0x5e, 0x6a, 0xc2, 0xd3, 0xa5, 0x56, 0xf9, 0xea, 0x6f, 0xad, 0x62, 0x9d, 0xa1, 0xfa, 0xbd, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xd2, 0xea, 0x00, 0x6a, 0x9b, 0x0e, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/types/combos/unmarshaler/types.proto000066400000000000000000000126261317075173200255330ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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 = "proto3"; package types; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; //import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; //import "google/protobuf/struct.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/wrappers.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message KnownTypes { option (gogoproto.compare) = true; google.protobuf.Duration dur = 1; google.protobuf.Timestamp ts = 2; google.protobuf.DoubleValue dbl = 3; google.protobuf.FloatValue flt = 4; google.protobuf.Int64Value i64 = 5; google.protobuf.UInt64Value u64 = 6; google.protobuf.Int32Value i32 = 7; google.protobuf.UInt32Value u32 = 8; google.protobuf.BoolValue bool = 9; google.protobuf.StringValue str = 10; google.protobuf.BytesValue bytes = 11; // TODO uncomment this once https://github.com/gogo/protobuf/issues/197 is fixed // google.protobuf.Struct st = 12; // google.protobuf.Any an = 14; } message ProtoTypes { // TODO this should be a compare_all at the top of the file once time.Time, time.Duration, oneof and map is supported by compare option (gogoproto.compare) = true; google.protobuf.Timestamp nullableTimestamp = 1; google.protobuf.Duration nullableDuration = 2; google.protobuf.Timestamp timestamp = 3 [(gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.nullable) = false]; } message StdTypes { google.protobuf.Timestamp nullableTimestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration nullableDuration = 2 [(gogoproto.stdduration) = true]; google.protobuf.Timestamp timestamp = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message RepProtoTypes { option (gogoproto.compare) = true; repeated google.protobuf.Timestamp nullableTimestamps = 1; repeated google.protobuf.Duration nullableDurations = 2; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.nullable) = false]; } message RepStdTypes { repeated google.protobuf.Timestamp nullableTimestamps = 1 [(gogoproto.stdtime) = true]; repeated google.protobuf.Duration nullableDurations = 2 [(gogoproto.stdduration) = true]; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message MapProtoTypes { map nullableTimestamp = 1; map timestamp = 2 [(gogoproto.nullable) = false]; map nullableDuration = 3; map duration = 4 [(gogoproto.nullable) = false]; } message MapStdTypes { map nullableTimestamp = 1 [(gogoproto.stdtime) = true]; map timestamp = 2 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; map nullableDuration = 3 [(gogoproto.stdduration) = true]; map duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message OneofProtoTypes { oneof OneOfProtoTimes { google.protobuf.Timestamp timestamp = 1; google.protobuf.Duration duration = 2; } } message OneofStdTypes { oneof OneOfStdTimes { google.protobuf.Timestamp timestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration duration = 2 [(gogoproto.stdduration) = true]; } } golang-gogoprotobuf-0.5/test/types/combos/unmarshaler/types_test.go000066400000000000000000000155121317075173200260310ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package types import ( math_rand "math/rand" "testing" "time" "github.com/gogo/protobuf/jsonpb" "github.com/gogo/protobuf/proto" ) func TestFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } golang-gogoprotobuf-0.5/test/types/combos/unmarshaler/typespb_test.go000066400000000000000000001465301317075173200263600ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: combos/unmarshaler/types.proto /* Package types is a generated protocol buffer package. It is generated from these files: combos/unmarshaler/types.proto It has these top-level messages: KnownTypes ProtoTypes StdTypes RepProtoTypes RepStdTypes MapProtoTypes MapStdTypes OneofProtoTypes OneofStdTypes */ package types import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" import _ "github.com/gogo/protobuf/types" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestKnownTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkKnownTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*KnownTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedKnownTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkKnownTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedKnownTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &KnownTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &ProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &StdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRepProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkRepProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedRepProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRepProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedRepProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &RepProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkRepStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkRepStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedRepStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &RepStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMapProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMapProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMapProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMapProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMapProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MapProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkMapStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkMapStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedMapStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &MapStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOneofProtoTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkOneofProtoTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofProtoTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOneofProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOneofProtoTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOneofProtoTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OneofProtoTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkOneofStdTypesProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkOneofStdTypesProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedOneofStdTypes(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &OneofStdTypes{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestKnownTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &KnownTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &ProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &StdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRepProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestRepStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &RepStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestMapStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &MapStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofProtoTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofProtoTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOneofStdTypesJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OneofStdTypes{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestKnownTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKnownTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestRepStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestMapStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofProtoTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofProtoTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOneofStdTypesProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestKnownTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedKnownTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestProtoTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedProtoTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestRepProtoTypesCompare(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if c := p.Compare(msg); c != 0 { t.Fatalf("%#v !Compare %#v, since %d", msg, p, c) } p2 := NewPopulatedRepProtoTypes(popr, false) c := p.Compare(p2) c2 := p2.Compare(p) if c != (-1 * c2) { t.Errorf("p.Compare(p2) = %d", c) t.Errorf("p2.Compare(p) = %d", c2) t.Errorf("p = %#v", p) t.Errorf("p2 = %#v", p2) } } func TestKnownTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedKnownTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &KnownTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &ProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &StdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRepProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestRepStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedRepStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &RepStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestMapStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedMapStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &MapStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOneofProtoTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofProtoTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OneofProtoTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOneofStdTypesVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOneofStdTypes(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OneofStdTypes{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestKnownTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedKnownTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkKnownTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*KnownTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedKnownTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*ProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*StdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRepProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRepProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedRepProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestRepStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedRepStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkRepStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*RepStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedRepStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMapProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMapProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMapProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestMapStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedMapStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkMapStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*MapStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedMapStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOneofProtoTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofProtoTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOneofProtoTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofProtoTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOneofProtoTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } func TestOneofStdTypesSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOneofStdTypes(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func BenchmarkOneofStdTypesSize(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*OneofStdTypes, 1000) for i := 0; i < 1000; i++ { pops[i] = NewPopulatedOneofStdTypes(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { total += pops[i%1000].Size() } b.SetBytes(int64(total / b.N)) } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/types/types.proto000066400000000000000000000126271317075173200217310ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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 = "proto3"; package types; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; //import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; //import "google/protobuf/struct.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/wrappers.proto"; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; option (gogoproto.unmarshaler_all) = false; option (gogoproto.marshaler_all) = false; option (gogoproto.sizer_all) = true; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.unsafe_marshaler_all) = false; option (gogoproto.unsafe_unmarshaler_all) = false; message KnownTypes { option (gogoproto.compare) = true; google.protobuf.Duration dur = 1; google.protobuf.Timestamp ts = 2; google.protobuf.DoubleValue dbl = 3; google.protobuf.FloatValue flt = 4; google.protobuf.Int64Value i64 = 5; google.protobuf.UInt64Value u64 = 6; google.protobuf.Int32Value i32 = 7; google.protobuf.UInt32Value u32 = 8; google.protobuf.BoolValue bool = 9; google.protobuf.StringValue str = 10; google.protobuf.BytesValue bytes = 11; // TODO uncomment this once https://github.com/gogo/protobuf/issues/197 is fixed // google.protobuf.Struct st = 12; // google.protobuf.Any an = 14; } message ProtoTypes { // TODO this should be a compare_all at the top of the file once time.Time, time.Duration, oneof and map is supported by compare option (gogoproto.compare) = true; google.protobuf.Timestamp nullableTimestamp = 1; google.protobuf.Duration nullableDuration = 2; google.protobuf.Timestamp timestamp = 3 [(gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.nullable) = false]; } message StdTypes { google.protobuf.Timestamp nullableTimestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration nullableDuration = 2 [(gogoproto.stdduration) = true]; google.protobuf.Timestamp timestamp = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; google.protobuf.Duration duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message RepProtoTypes { option (gogoproto.compare) = true; repeated google.protobuf.Timestamp nullableTimestamps = 1; repeated google.protobuf.Duration nullableDurations = 2; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.nullable) = false]; } message RepStdTypes { repeated google.protobuf.Timestamp nullableTimestamps = 1 [(gogoproto.stdtime) = true]; repeated google.protobuf.Duration nullableDurations = 2 [(gogoproto.stdduration) = true]; repeated google.protobuf.Timestamp timestamps = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; repeated google.protobuf.Duration durations = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message MapProtoTypes { map nullableTimestamp = 1; map timestamp = 2 [(gogoproto.nullable) = false]; map nullableDuration = 3; map duration = 4 [(gogoproto.nullable) = false]; } message MapStdTypes { map nullableTimestamp = 1 [(gogoproto.stdtime) = true]; map timestamp = 2 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false]; map nullableDuration = 3 [(gogoproto.stdduration) = true]; map duration = 4 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false]; } message OneofProtoTypes { oneof OneOfProtoTimes { google.protobuf.Timestamp timestamp = 1; google.protobuf.Duration duration = 2; } } message OneofStdTypes { oneof OneOfStdTimes { google.protobuf.Timestamp timestamp = 1 [(gogoproto.stdtime) = true]; google.protobuf.Duration duration = 2 [(gogoproto.stdduration) = true]; } } golang-gogoprotobuf-0.5/test/types/types_test.go.in000066400000000000000000000155131317075173200226340ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package types import ( "testing" "time" math_rand "math/rand" "github.com/gogo/protobuf/proto" "github.com/gogo/protobuf/jsonpb" ) func TestFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &StdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &ProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleRepProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedRepProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &RepStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &RepProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleMapProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedMapProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &MapStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &MapProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) protoData, err := proto.Marshal(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := proto.Unmarshal(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := proto.Marshal(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := proto.Unmarshal(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } func TestJsonFullCircleOneofProtoToStd(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) protoMsg := NewPopulatedOneofProtoTypes(popr, true) j := &jsonpb.Marshaler{} protoData, err := j.MarshalToString(protoMsg) if err != nil { t.Fatal(err) } stdMsg := &OneofStdTypes{} if err2 := jsonpb.UnmarshalString(protoData, stdMsg); err2 != nil { t.Fatal(err) } stdData, err := j.MarshalToString(stdMsg) if err != nil { t.Fatal(err) } protoMsgOut := &OneofProtoTypes{} if err3 := jsonpb.UnmarshalString(stdData, protoMsgOut); err3 != nil { t.Fatal(err) } if !protoMsg.Equal(protoMsgOut) { t.Fatalf("want %#v got %#v", protoMsg, protoMsgOut) } } golang-gogoprotobuf-0.5/test/unmarshalmerge/000077500000000000000000000000001317075173200213365ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/unmarshalmerge/Makefile000066400000000000000000000027641317075173200230070ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. unmarshalmerge.proto) golang-gogoprotobuf-0.5/test/unmarshalmerge/unmarshalmerge.pb.go000066400000000000000000001150601317075173200253020ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: unmarshalmerge.proto /* Package unmarshalmerge is a generated protocol buffer package. It is generated from these files: unmarshalmerge.proto It has these top-level messages: Big BigUnsafe Sub IntMerge */ package unmarshalmerge import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import bytes "bytes" import strings "strings" import reflect "reflect" import io "io" import encoding_binary "encoding/binary" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Big struct { Sub *Sub `protobuf:"bytes,1,opt,name=Sub" json:"Sub,omitempty"` Number *int64 `protobuf:"varint,2,opt,name=Number" json:"Number,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Big) Reset() { *m = Big{} } func (*Big) ProtoMessage() {} func (*Big) Descriptor() ([]byte, []int) { return fileDescriptorUnmarshalmerge, []int{0} } func (m *Big) GetSub() *Sub { if m != nil { return m.Sub } return nil } func (m *Big) GetNumber() int64 { if m != nil && m.Number != nil { return *m.Number } return 0 } type BigUnsafe struct { Sub *Sub `protobuf:"bytes,1,opt,name=Sub" json:"Sub,omitempty"` Number *int64 `protobuf:"varint,2,opt,name=Number" json:"Number,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *BigUnsafe) Reset() { *m = BigUnsafe{} } func (*BigUnsafe) ProtoMessage() {} func (*BigUnsafe) Descriptor() ([]byte, []int) { return fileDescriptorUnmarshalmerge, []int{1} } func (m *BigUnsafe) GetSub() *Sub { if m != nil { return m.Sub } return nil } func (m *BigUnsafe) GetNumber() int64 { if m != nil && m.Number != nil { return *m.Number } return 0 } type Sub struct { SubNumber *int64 `protobuf:"varint,1,opt,name=SubNumber" json:"SubNumber,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *Sub) Reset() { *m = Sub{} } func (*Sub) ProtoMessage() {} func (*Sub) Descriptor() ([]byte, []int) { return fileDescriptorUnmarshalmerge, []int{2} } func (m *Sub) GetSubNumber() int64 { if m != nil && m.SubNumber != nil { return *m.SubNumber } return 0 } type IntMerge struct { Int64 int64 `protobuf:"varint,1,req,name=Int64" json:"Int64"` Int32 int32 `protobuf:"varint,2,opt,name=Int32" json:"Int32"` Sint32 int32 `protobuf:"zigzag32,3,req,name=Sint32" json:"Sint32"` Sint64 int64 `protobuf:"zigzag64,4,opt,name=Sint64" json:"Sint64"` Uint64 uint64 `protobuf:"varint,5,opt,name=Uint64" json:"Uint64"` Uint32 uint32 `protobuf:"varint,6,req,name=Uint32" json:"Uint32"` Fixed64 uint64 `protobuf:"fixed64,7,opt,name=Fixed64" json:"Fixed64"` Fixed32 uint32 `protobuf:"fixed32,8,opt,name=Fixed32" json:"Fixed32"` Sfixed32 int32 `protobuf:"fixed32,9,req,name=Sfixed32" json:"Sfixed32"` Sfixed64 int64 `protobuf:"fixed64,10,opt,name=Sfixed64" json:"Sfixed64"` Bool bool `protobuf:"varint,11,opt,name=Bool" json:"Bool"` XXX_unrecognized []byte `json:"-"` } func (m *IntMerge) Reset() { *m = IntMerge{} } func (*IntMerge) ProtoMessage() {} func (*IntMerge) Descriptor() ([]byte, []int) { return fileDescriptorUnmarshalmerge, []int{3} } func (m *IntMerge) GetInt64() int64 { if m != nil { return m.Int64 } return 0 } func (m *IntMerge) GetInt32() int32 { if m != nil { return m.Int32 } return 0 } func (m *IntMerge) GetSint32() int32 { if m != nil { return m.Sint32 } return 0 } func (m *IntMerge) GetSint64() int64 { if m != nil { return m.Sint64 } return 0 } func (m *IntMerge) GetUint64() uint64 { if m != nil { return m.Uint64 } return 0 } func (m *IntMerge) GetUint32() uint32 { if m != nil { return m.Uint32 } return 0 } func (m *IntMerge) GetFixed64() uint64 { if m != nil { return m.Fixed64 } return 0 } func (m *IntMerge) GetFixed32() uint32 { if m != nil { return m.Fixed32 } return 0 } func (m *IntMerge) GetSfixed32() int32 { if m != nil { return m.Sfixed32 } return 0 } func (m *IntMerge) GetSfixed64() int64 { if m != nil { return m.Sfixed64 } return 0 } func (m *IntMerge) GetBool() bool { if m != nil { return m.Bool } return false } func init() { proto.RegisterType((*Big)(nil), "unmarshalmerge.Big") proto.RegisterType((*BigUnsafe)(nil), "unmarshalmerge.BigUnsafe") proto.RegisterType((*Sub)(nil), "unmarshalmerge.Sub") proto.RegisterType((*IntMerge)(nil), "unmarshalmerge.IntMerge") } func (this *Big) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Big) if !ok { that2, ok := that.(Big) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Big") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Big but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Big but is not nil && this == nil") } if !this.Sub.Equal(that1.Sub) { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } if this.Number != nil && that1.Number != nil { if *this.Number != *that1.Number { return fmt.Errorf("Number this(%v) Not Equal that(%v)", *this.Number, *that1.Number) } } else if this.Number != nil { return fmt.Errorf("this.Number == nil && that.Number != nil") } else if that1.Number != nil { return fmt.Errorf("Number this(%v) Not Equal that(%v)", this.Number, that1.Number) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Big) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Big) if !ok { that2, ok := that.(Big) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Sub.Equal(that1.Sub) { return false } if this.Number != nil && that1.Number != nil { if *this.Number != *that1.Number { return false } } else if this.Number != nil { return false } else if that1.Number != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *BigUnsafe) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*BigUnsafe) if !ok { that2, ok := that.(BigUnsafe) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *BigUnsafe") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *BigUnsafe but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *BigUnsafe but is not nil && this == nil") } if !this.Sub.Equal(that1.Sub) { return fmt.Errorf("Sub this(%v) Not Equal that(%v)", this.Sub, that1.Sub) } if this.Number != nil && that1.Number != nil { if *this.Number != *that1.Number { return fmt.Errorf("Number this(%v) Not Equal that(%v)", *this.Number, *that1.Number) } } else if this.Number != nil { return fmt.Errorf("this.Number == nil && that.Number != nil") } else if that1.Number != nil { return fmt.Errorf("Number this(%v) Not Equal that(%v)", this.Number, that1.Number) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *BigUnsafe) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*BigUnsafe) if !ok { that2, ok := that.(BigUnsafe) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.Sub.Equal(that1.Sub) { return false } if this.Number != nil && that1.Number != nil { if *this.Number != *that1.Number { return false } } else if this.Number != nil { return false } else if that1.Number != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Sub) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*Sub) if !ok { that2, ok := that.(Sub) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *Sub") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *Sub but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *Sub but is not nil && this == nil") } if this.SubNumber != nil && that1.SubNumber != nil { if *this.SubNumber != *that1.SubNumber { return fmt.Errorf("SubNumber this(%v) Not Equal that(%v)", *this.SubNumber, *that1.SubNumber) } } else if this.SubNumber != nil { return fmt.Errorf("this.SubNumber == nil && that.SubNumber != nil") } else if that1.SubNumber != nil { return fmt.Errorf("SubNumber this(%v) Not Equal that(%v)", this.SubNumber, that1.SubNumber) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *Sub) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Sub) if !ok { that2, ok := that.(Sub) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.SubNumber != nil && that1.SubNumber != nil { if *this.SubNumber != *that1.SubNumber { return false } } else if this.SubNumber != nil { return false } else if that1.SubNumber != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *IntMerge) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*IntMerge) if !ok { that2, ok := that.(IntMerge) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *IntMerge") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *IntMerge but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *IntMerge but is not nil && this == nil") } if this.Int64 != that1.Int64 { return fmt.Errorf("Int64 this(%v) Not Equal that(%v)", this.Int64, that1.Int64) } if this.Int32 != that1.Int32 { return fmt.Errorf("Int32 this(%v) Not Equal that(%v)", this.Int32, that1.Int32) } if this.Sint32 != that1.Sint32 { return fmt.Errorf("Sint32 this(%v) Not Equal that(%v)", this.Sint32, that1.Sint32) } if this.Sint64 != that1.Sint64 { return fmt.Errorf("Sint64 this(%v) Not Equal that(%v)", this.Sint64, that1.Sint64) } if this.Uint64 != that1.Uint64 { return fmt.Errorf("Uint64 this(%v) Not Equal that(%v)", this.Uint64, that1.Uint64) } if this.Uint32 != that1.Uint32 { return fmt.Errorf("Uint32 this(%v) Not Equal that(%v)", this.Uint32, that1.Uint32) } if this.Fixed64 != that1.Fixed64 { return fmt.Errorf("Fixed64 this(%v) Not Equal that(%v)", this.Fixed64, that1.Fixed64) } if this.Fixed32 != that1.Fixed32 { return fmt.Errorf("Fixed32 this(%v) Not Equal that(%v)", this.Fixed32, that1.Fixed32) } if this.Sfixed32 != that1.Sfixed32 { return fmt.Errorf("Sfixed32 this(%v) Not Equal that(%v)", this.Sfixed32, that1.Sfixed32) } if this.Sfixed64 != that1.Sfixed64 { return fmt.Errorf("Sfixed64 this(%v) Not Equal that(%v)", this.Sfixed64, that1.Sfixed64) } if this.Bool != that1.Bool { return fmt.Errorf("Bool this(%v) Not Equal that(%v)", this.Bool, that1.Bool) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *IntMerge) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*IntMerge) if !ok { that2, ok := that.(IntMerge) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Int64 != that1.Int64 { return false } if this.Int32 != that1.Int32 { return false } if this.Sint32 != that1.Sint32 { return false } if this.Sint64 != that1.Sint64 { return false } if this.Uint64 != that1.Uint64 { return false } if this.Uint32 != that1.Uint32 { return false } if this.Fixed64 != that1.Fixed64 { return false } if this.Fixed32 != that1.Fixed32 { return false } if this.Sfixed32 != that1.Sfixed32 { return false } if this.Sfixed64 != that1.Sfixed64 { return false } if this.Bool != that1.Bool { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *Big) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unmarshalmerge.Big{") if this.Sub != nil { s = append(s, "Sub: "+fmt.Sprintf("%#v", this.Sub)+",\n") } if this.Number != nil { s = append(s, "Number: "+valueToGoStringUnmarshalmerge(this.Number, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *BigUnsafe) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unmarshalmerge.BigUnsafe{") if this.Sub != nil { s = append(s, "Sub: "+fmt.Sprintf("%#v", this.Sub)+",\n") } if this.Number != nil { s = append(s, "Number: "+valueToGoStringUnmarshalmerge(this.Number, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Sub) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&unmarshalmerge.Sub{") if this.SubNumber != nil { s = append(s, "SubNumber: "+valueToGoStringUnmarshalmerge(this.SubNumber, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *IntMerge) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 15) s = append(s, "&unmarshalmerge.IntMerge{") s = append(s, "Int64: "+fmt.Sprintf("%#v", this.Int64)+",\n") s = append(s, "Int32: "+fmt.Sprintf("%#v", this.Int32)+",\n") s = append(s, "Sint32: "+fmt.Sprintf("%#v", this.Sint32)+",\n") s = append(s, "Sint64: "+fmt.Sprintf("%#v", this.Sint64)+",\n") s = append(s, "Uint64: "+fmt.Sprintf("%#v", this.Uint64)+",\n") s = append(s, "Uint32: "+fmt.Sprintf("%#v", this.Uint32)+",\n") s = append(s, "Fixed64: "+fmt.Sprintf("%#v", this.Fixed64)+",\n") s = append(s, "Fixed32: "+fmt.Sprintf("%#v", this.Fixed32)+",\n") s = append(s, "Sfixed32: "+fmt.Sprintf("%#v", this.Sfixed32)+",\n") s = append(s, "Sfixed64: "+fmt.Sprintf("%#v", this.Sfixed64)+",\n") s = append(s, "Bool: "+fmt.Sprintf("%#v", this.Bool)+",\n") if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringUnmarshalmerge(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func NewPopulatedBig(r randyUnmarshalmerge, easy bool) *Big { this := &Big{} if r.Intn(10) != 0 { this.Sub = NewPopulatedSub(r, easy) } if r.Intn(10) != 0 { v1 := int64(r.Int63()) if r.Intn(2) == 0 { v1 *= -1 } this.Number = &v1 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnmarshalmerge(r, 3) } return this } func NewPopulatedBigUnsafe(r randyUnmarshalmerge, easy bool) *BigUnsafe { this := &BigUnsafe{} if r.Intn(10) != 0 { this.Sub = NewPopulatedSub(r, easy) } if r.Intn(10) != 0 { v2 := int64(r.Int63()) if r.Intn(2) == 0 { v2 *= -1 } this.Number = &v2 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnmarshalmerge(r, 3) } return this } func NewPopulatedSub(r randyUnmarshalmerge, easy bool) *Sub { this := &Sub{} if r.Intn(10) != 0 { v3 := int64(r.Int63()) if r.Intn(2) == 0 { v3 *= -1 } this.SubNumber = &v3 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnmarshalmerge(r, 2) } return this } func NewPopulatedIntMerge(r randyUnmarshalmerge, easy bool) *IntMerge { this := &IntMerge{} this.Int64 = int64(r.Int63()) if r.Intn(2) == 0 { this.Int64 *= -1 } this.Int32 = int32(r.Int31()) if r.Intn(2) == 0 { this.Int32 *= -1 } this.Sint32 = int32(r.Int31()) if r.Intn(2) == 0 { this.Sint32 *= -1 } this.Sint64 = int64(r.Int63()) if r.Intn(2) == 0 { this.Sint64 *= -1 } this.Uint64 = uint64(uint64(r.Uint32())) this.Uint32 = uint32(r.Uint32()) this.Fixed64 = uint64(uint64(r.Uint32())) this.Fixed32 = uint32(r.Uint32()) this.Sfixed32 = int32(r.Int31()) if r.Intn(2) == 0 { this.Sfixed32 *= -1 } this.Sfixed64 = int64(r.Int63()) if r.Intn(2) == 0 { this.Sfixed64 *= -1 } this.Bool = bool(bool(r.Intn(2) == 0)) if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnmarshalmerge(r, 12) } return this } type randyUnmarshalmerge interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneUnmarshalmerge(r randyUnmarshalmerge) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringUnmarshalmerge(r randyUnmarshalmerge) string { v4 := r.Intn(100) tmps := make([]rune, v4) for i := 0; i < v4; i++ { tmps[i] = randUTF8RuneUnmarshalmerge(r) } return string(tmps) } func randUnrecognizedUnmarshalmerge(r randyUnmarshalmerge, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldUnmarshalmerge(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldUnmarshalmerge(dAtA []byte, r randyUnmarshalmerge, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateUnmarshalmerge(dAtA, uint64(key)) v5 := r.Int63() if r.Intn(2) == 0 { v5 *= -1 } dAtA = encodeVarintPopulateUnmarshalmerge(dAtA, uint64(v5)) case 1: dAtA = encodeVarintPopulateUnmarshalmerge(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateUnmarshalmerge(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateUnmarshalmerge(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateUnmarshalmerge(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateUnmarshalmerge(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (this *Big) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Big{`, `Sub:` + strings.Replace(fmt.Sprintf("%v", this.Sub), "Sub", "Sub", 1) + `,`, `Number:` + valueToStringUnmarshalmerge(this.Number) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *BigUnsafe) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&BigUnsafe{`, `Sub:` + strings.Replace(fmt.Sprintf("%v", this.Sub), "Sub", "Sub", 1) + `,`, `Number:` + valueToStringUnmarshalmerge(this.Number) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *Sub) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Sub{`, `SubNumber:` + valueToStringUnmarshalmerge(this.SubNumber) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *IntMerge) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&IntMerge{`, `Int64:` + fmt.Sprintf("%v", this.Int64) + `,`, `Int32:` + fmt.Sprintf("%v", this.Int32) + `,`, `Sint32:` + fmt.Sprintf("%v", this.Sint32) + `,`, `Sint64:` + fmt.Sprintf("%v", this.Sint64) + `,`, `Uint64:` + fmt.Sprintf("%v", this.Uint64) + `,`, `Uint32:` + fmt.Sprintf("%v", this.Uint32) + `,`, `Fixed64:` + fmt.Sprintf("%v", this.Fixed64) + `,`, `Fixed32:` + fmt.Sprintf("%v", this.Fixed32) + `,`, `Sfixed32:` + fmt.Sprintf("%v", this.Sfixed32) + `,`, `Sfixed64:` + fmt.Sprintf("%v", this.Sfixed64) + `,`, `Bool:` + fmt.Sprintf("%v", this.Bool) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringUnmarshalmerge(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Big) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Big: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Big: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sub", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnmarshalmerge } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sub == nil { m.Sub = &Sub{} } if err := m.Sub.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Number", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Number = &v default: iNdEx = preIndex skippy, err := skipUnmarshalmerge(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnmarshalmerge } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *BigUnsafe) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: BigUnsafe: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: BigUnsafe: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Sub", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnmarshalmerge } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Sub == nil { m.Sub = &Sub{} } if err := m.Sub.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Number", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Number = &v default: iNdEx = preIndex skippy, err := skipUnmarshalmerge(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnmarshalmerge } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Sub) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Sub: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Sub: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field SubNumber", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.SubNumber = &v default: iNdEx = preIndex skippy, err := skipUnmarshalmerge(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnmarshalmerge } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *IntMerge) Unmarshal(dAtA []byte) error { var hasFields [1]uint64 l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: IntMerge: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: IntMerge: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int64", wireType) } m.Int64 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Int64 |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } hasFields[0] |= uint64(0x00000001) case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int32", wireType) } m.Int32 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Int32 |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Sint32", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } v = int32((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31)) m.Sint32 = v hasFields[0] |= uint64(0x00000002) case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Sint64", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63) m.Sint64 = int64(v) case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Uint64", wireType) } m.Uint64 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Uint64 |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Uint32", wireType) } m.Uint32 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Uint32 |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } hasFields[0] |= uint64(0x00000004) case 7: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed64", wireType) } m.Fixed64 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Fixed64 = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 8: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Fixed32", wireType) } m.Fixed32 = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.Fixed32 = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 case 9: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed32", wireType) } m.Sfixed32 = 0 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } m.Sfixed32 = int32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 hasFields[0] |= uint64(0x00000008) case 10: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Sfixed64", wireType) } m.Sfixed64 = 0 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } m.Sfixed64 = int64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 case 11: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Bool", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Bool = bool(v != 0) default: iNdEx = preIndex skippy, err := skipUnmarshalmerge(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnmarshalmerge } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if hasFields[0]&uint64(0x00000001) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Int64") } if hasFields[0]&uint64(0x00000002) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Sint32") } if hasFields[0]&uint64(0x00000004) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Uint32") } if hasFields[0]&uint64(0x00000008) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Sfixed32") } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipUnmarshalmerge(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthUnmarshalmerge } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnmarshalmerge } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipUnmarshalmerge(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthUnmarshalmerge = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowUnmarshalmerge = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("unmarshalmerge.proto", fileDescriptorUnmarshalmerge) } var fileDescriptorUnmarshalmerge = []byte{ // 386 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0xd0, 0xcd, 0x8a, 0x9b, 0x50, 0x14, 0x07, 0xf0, 0x1c, 0x35, 0xc6, 0xdc, 0xd0, 0xaf, 0xdb, 0x52, 0x2e, 0x21, 0xdc, 0x5c, 0x02, 0x85, 0xdb, 0x45, 0x13, 0x50, 0x71, 0xd1, 0xa5, 0x8b, 0x42, 0x0a, 0x2d, 0x25, 0x92, 0x07, 0x88, 0xad, 0x31, 0x42, 0xd4, 0x62, 0x14, 0xba, 0xec, 0x23, 0xf4, 0x15, 0xba, 0x9b, 0x47, 0x98, 0x65, 0x96, 0xf3, 0x08, 0xb3, 0x0a, 0xa3, 0x4f, 0x30, 0xcb, 0x59, 0x0e, 0x5e, 0x6f, 0x3e, 0x9c, 0xed, 0xec, 0x3c, 0xff, 0xdf, 0xdf, 0x73, 0xe0, 0xa2, 0x77, 0x45, 0x12, 0xaf, 0xb2, 0xdd, 0x66, 0xb5, 0x8d, 0x83, 0x2c, 0x0c, 0xa6, 0xbf, 0xb3, 0x34, 0x4f, 0xf1, 0xcb, 0x76, 0x3a, 0xfc, 0x14, 0x46, 0xf9, 0xa6, 0xf0, 0xa7, 0x3f, 0xd3, 0x78, 0x16, 0xa6, 0x61, 0x3a, 0x13, 0x35, 0xbf, 0x58, 0x8b, 0x49, 0x0c, 0xe2, 0xab, 0xf9, 0x7d, 0xf2, 0x15, 0xa9, 0x6e, 0x14, 0xe2, 0x0f, 0x48, 0xf5, 0x0a, 0x9f, 0x00, 0x03, 0x3e, 0x30, 0xdf, 0x4e, 0x9f, 0x5c, 0xf2, 0x0a, 0x7f, 0x51, 0x3b, 0x7e, 0x8f, 0xf4, 0xef, 0x45, 0xec, 0x07, 0x19, 0x51, 0x18, 0x70, 0x75, 0x21, 0xa7, 0xcf, 0xda, 0xbf, 0xff, 0x63, 0x98, 0xfc, 0x40, 0x7d, 0x37, 0x0a, 0x97, 0xc9, 0x6e, 0xb5, 0x0e, 0x9e, 0xbd, 0x71, 0x5f, 0x6f, 0xfc, 0x28, 0x96, 0xe0, 0x11, 0xea, 0x7b, 0x85, 0x2f, 0x7b, 0x20, 0x7a, 0xe7, 0x40, 0x1e, 0x3f, 0x28, 0xc8, 0x98, 0x27, 0xf9, 0xb7, 0x7a, 0x3d, 0x1e, 0xa2, 0xee, 0x3c, 0xc9, 0x1d, 0x9b, 0x00, 0x53, 0xb8, 0xea, 0x6a, 0x37, 0x87, 0x71, 0x67, 0xd1, 0x44, 0xd2, 0x2c, 0x53, 0x1c, 0xec, 0x5e, 0x98, 0x65, 0xe2, 0x11, 0xd2, 0xbd, 0x48, 0xa0, 0xca, 0x14, 0xfe, 0x46, 0xa2, 0xcc, 0x8e, 0xea, 0xd8, 0x44, 0x63, 0xc0, 0xf1, 0xa5, 0x3a, 0x76, 0xad, 0xcb, 0x46, 0xbb, 0x0c, 0xb8, 0x76, 0xd4, 0x65, 0x4b, 0x2d, 0x93, 0xe8, 0x4c, 0xe1, 0x2f, 0x2e, 0xd5, 0x32, 0x31, 0x45, 0xbd, 0x2f, 0xd1, 0x9f, 0xe0, 0x97, 0x63, 0x93, 0x1e, 0x03, 0xae, 0x4b, 0x3e, 0x86, 0x27, 0xb7, 0x4c, 0x62, 0x30, 0xe0, 0xbd, 0x96, 0x5b, 0x26, 0x66, 0xc8, 0xf0, 0xd6, 0xb2, 0xd0, 0x67, 0x0a, 0x7f, 0x25, 0x0b, 0xa7, 0xf4, 0xdc, 0x70, 0x6c, 0x82, 0x18, 0xf0, 0xd7, 0xed, 0x86, 0x63, 0x63, 0x82, 0x34, 0x37, 0x4d, 0xb7, 0x64, 0xc0, 0x80, 0x1b, 0x52, 0x45, 0xd2, 0x3c, 0xb0, 0xcb, 0x6e, 0x4b, 0xda, 0xb9, 0x2b, 0x29, 0xdc, 0x97, 0x14, 0x1e, 0x4a, 0x0a, 0x7f, 0x2b, 0x0a, 0x57, 0x15, 0x85, 0xeb, 0x8a, 0xc2, 0xbe, 0xa2, 0xf0, 0x18, 0x00, 0x00, 0xff, 0xff, 0xb2, 0x4e, 0xc7, 0x4e, 0xa1, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/unmarshalmerge/unmarshalmerge.proto000066400000000000000000000055561317075173200254500ustar00rootroot00000000000000// 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 unmarshalmerge; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.benchgen_all) = true; message Big { option (gogoproto.unmarshaler) = true; optional Sub Sub = 1; optional int64 Number = 2; } message BigUnsafe { option (gogoproto.unsafe_unmarshaler) = true; optional Sub Sub = 1; optional int64 Number = 2; } message Sub { option (gogoproto.unmarshaler) = true; optional int64 SubNumber = 1; } message IntMerge { option (gogoproto.unmarshaler) = true; required int64 Int64 = 1 [(gogoproto.nullable) = false]; optional int32 Int32 = 2 [(gogoproto.nullable) = false]; required sint32 Sint32 = 3 [(gogoproto.nullable) = false]; optional sint64 Sint64 = 4 [(gogoproto.nullable) = false]; optional uint64 Uint64 = 5 [(gogoproto.nullable) = false]; required uint32 Uint32 = 6 [(gogoproto.nullable) = false]; optional fixed64 Fixed64 = 7 [(gogoproto.nullable) = false]; optional fixed32 Fixed32 = 8 [(gogoproto.nullable) = false]; required sfixed32 Sfixed32 = 9 [(gogoproto.nullable) = false]; optional sfixed64 Sfixed64 = 10 [(gogoproto.nullable) = false]; optional bool Bool = 11 [(gogoproto.nullable) = false]; } golang-gogoprotobuf-0.5/test/unmarshalmerge/unmarshalmerge_test.go000066400000000000000000000056461317075173200257510ustar00rootroot00000000000000// 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. package unmarshalmerge import ( "github.com/gogo/protobuf/proto" math_rand "math/rand" "testing" "time" ) func TestUnmarshalMerge(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedBig(popr, true) if p.GetSub() == nil { p.Sub = &Sub{SubNumber: proto.Int64(12345)} } data, err := proto.Marshal(p) if err != nil { t.Fatal(err) } s := &Sub{} b := &Big{ Sub: s, } err = proto.UnmarshalMerge(data, b) if err != nil { t.Fatal(err) } if s.GetSubNumber() != p.GetSub().GetSubNumber() { t.Fatalf("should have unmarshaled subnumber into sub") } } func TestUnsafeUnmarshalMerge(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedBigUnsafe(popr, true) if p.GetSub() == nil { p.Sub = &Sub{SubNumber: proto.Int64(12345)} } data, err := proto.Marshal(p) if err != nil { t.Fatal(err) } s := &Sub{} b := &BigUnsafe{ Sub: s, } err = proto.UnmarshalMerge(data, b) if err != nil { t.Fatal(err) } if s.GetSubNumber() != p.GetSub().GetSubNumber() { t.Fatalf("should have unmarshaled subnumber into sub") } } func TestInt64Merge(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedIntMerge(popr, true) p2 := NewPopulatedIntMerge(popr, true) data, err := proto.Marshal(p2) if err != nil { t.Fatal(err) } if err := proto.UnmarshalMerge(data, p); err != nil { t.Fatal(err) } if !p.Equal(p2) { t.Fatalf("exptected %#v but got %#v", p2, p) } } golang-gogoprotobuf-0.5/test/unmarshalmerge/unmarshalmergepb_test.go000066400000000000000000000502221317075173200262610ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: unmarshalmerge.proto /* Package unmarshalmerge is a generated protocol buffer package. It is generated from these files: unmarshalmerge.proto It has these top-level messages: Big BigUnsafe Sub IntMerge */ package unmarshalmerge import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import unsafe "unsafe" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestBigProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Big{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkBigProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Big, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedBig(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkBigProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedBig(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Big{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestBigUnsafeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBigUnsafe(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &BigUnsafe{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkBigUnsafeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*BigUnsafe, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedBigUnsafe(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkBigUnsafeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedBigUnsafe(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &BigUnsafe{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestSubProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSub(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Sub{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkSubProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*Sub, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedSub(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkSubProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedSub(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &Sub{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestIntMergeProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIntMerge(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &IntMerge{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func BenchmarkIntMergeProtoMarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 pops := make([]*IntMerge, 10000) for i := 0; i < 10000; i++ { pops[i] = NewPopulatedIntMerge(popr, false) } b.ResetTimer() for i := 0; i < b.N; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000]) if err != nil { panic(err) } total += len(dAtA) } b.SetBytes(int64(total / b.N)) } func BenchmarkIntMergeProtoUnmarshal(b *testing.B) { popr := math_rand.New(math_rand.NewSource(616)) total := 0 datas := make([][]byte, 10000) for i := 0; i < 10000; i++ { dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedIntMerge(popr, false)) if err != nil { panic(err) } datas[i] = dAtA } msg := &IntMerge{} b.ResetTimer() for i := 0; i < b.N; i++ { total += len(datas[i%10000]) if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil { panic(err) } } b.SetBytes(int64(total / b.N)) } func TestBigJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBig(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Big{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestBigUnsafeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBigUnsafe(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &BigUnsafe{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestSubJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSub(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &Sub{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestIntMergeJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIntMerge(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &IntMerge{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestBigProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBig(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Big{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBigProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBig(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Big{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBigUnsafeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBigUnsafe(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &BigUnsafe{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBigUnsafeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedBigUnsafe(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &BigUnsafe{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSub(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &Sub{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestSubProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedSub(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &Sub{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestIntMergeProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIntMerge(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &IntMerge{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestIntMergeProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedIntMerge(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &IntMerge{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBigVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedBig(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Big{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestBigUnsafeVerboseEqual(t *testing.T) { var bigendian uint32 = 0x01020304 if *(*byte)(unsafe.Pointer(&bigendian)) == 1 { t.Skip("unsafe does not work on big endian architectures") } popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedBigUnsafe(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &BigUnsafe{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestSubVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSub(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &Sub{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestIntMergeVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedIntMerge(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &IntMerge{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestBigGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedBig(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestBigUnsafeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedBigUnsafe(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestSubGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSub(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestIntMergeGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedIntMerge(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestBigStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedBig(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestBigUnsafeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedBigUnsafe(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestSubStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedSub(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestIntMergeStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedIntMerge(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/unrecognized/000077500000000000000000000000001317075173200210205ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/unrecognized/Makefile000066400000000000000000000027621317075173200224670ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. unrecognized.proto) golang-gogoprotobuf-0.5/test/unrecognized/oldnew_test.go000066400000000000000000000130111317075173200236720ustar00rootroot00000000000000// 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. package unrecognized import ( "github.com/gogo/protobuf/proto" math_rand "math/rand" "testing" time "time" ) func TestNewOld(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) newer := NewPopulatedA(popr, true) data1, err := proto.Marshal(newer) if err != nil { panic(err) } older := &OldA{} if err = proto.Unmarshal(data1, older); err != nil { panic(err) } data2, err := proto.Marshal(older) if err != nil { panic(err) } bluer := &A{} if err := proto.Unmarshal(data2, bluer); err != nil { panic(err) } if err := newer.VerboseEqual(bluer); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", newer, bluer, err) } } func TestOldNew(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) older := NewPopulatedOldA(popr, true) data1, err := proto.Marshal(older) if err != nil { panic(err) } newer := &A{} if err = proto.Unmarshal(data1, newer); err != nil { panic(err) } data2, err := proto.Marshal(newer) if err != nil { panic(err) } bluer := &OldA{} if err := proto.Unmarshal(data2, bluer); err != nil { panic(err) } if err := older.VerboseEqual(bluer); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", older, bluer, err) } } func TestOldNewOldNew(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) older := NewPopulatedOldA(popr, true) data1, err := proto.Marshal(older) if err != nil { panic(err) } newer := &A{} if err = proto.Unmarshal(data1, newer); err != nil { panic(err) } data2, err := proto.Marshal(newer) if err != nil { panic(err) } bluer := &OldA{} if err = proto.Unmarshal(data2, bluer); err != nil { panic(err) } if err = older.VerboseEqual(bluer); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", older, bluer, err) } data3, err := proto.Marshal(bluer) if err != nil { panic(err) } purple := &A{} if err = proto.Unmarshal(data3, purple); err != nil { panic(err) } data4, err := proto.Marshal(purple) if err != nil { panic(err) } magenta := &OldA{} if err := proto.Unmarshal(data4, magenta); err != nil { panic(err) } if err := older.VerboseEqual(magenta); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", older, magenta, err) } } func TestOldUToU(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) older := NewPopulatedOldU(popr, true) // need optional field to be always initialized, to check it's lost in this test older.Field1 = proto.String(randStringUnrecognized(popr)) data1, err := proto.Marshal(older) if err != nil { panic(err) } newer := &U{} if err = proto.Unmarshal(data1, newer); err != nil { panic(err) } data2, err := proto.Marshal(newer) if err != nil { panic(err) } older2 := &OldU{} if err := proto.Unmarshal(data2, older2); err != nil { panic(err) } // check that Field1 is lost if older2.Field1 != nil { t.Fatalf("field must be lost, but it's not, older: %#v, older2: %#v", older, older2) } // now restore Field1 and messages should be equal now older2.Field1 = older.Field1 if err := older.VerboseEqual(older2); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", older, older2, err) } } func TestOldUnoM(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) older := NewPopulatedOldUnoM(popr, true) // need optional field to be always initialized, to check it's lost in this test older.Field1 = proto.String(randStringUnrecognized(popr)) data1, err := proto.Marshal(older) if err != nil { panic(err) } newer := &UnoM{} if err = proto.Unmarshal(data1, newer); err != nil { panic(err) } data2, err := proto.Marshal(newer) if err != nil { panic(err) } older2 := &OldUnoM{} if err := proto.Unmarshal(data2, older2); err != nil { panic(err) } // check that Field1 is lost if older2.Field1 != nil { t.Fatalf("field must be lost, but it's not, older: %#v, older2: %#v", older, older2) } // now restore Field1 and messages should be equal now older2.Field1 = older.Field1 if err := older.VerboseEqual(older2); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", older, older2, err) } } golang-gogoprotobuf-0.5/test/unrecognized/unrecognized.pb.go000066400000000000000000003456711317075173200244630ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: unrecognized.proto /* Package unrecognized is a generated protocol buffer package. It is generated from these files: unrecognized.proto It has these top-level messages: A B D C U UnoM OldA OldB OldC OldU OldUnoM */ package unrecognized import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type A struct { Field1 *int64 `protobuf:"varint,2,opt,name=Field1" json:"Field1,omitempty"` B []*B `protobuf:"bytes,1,rep,name=B" json:"B,omitempty"` } func (m *A) Reset() { *m = A{} } func (*A) ProtoMessage() {} func (*A) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{0} } type B struct { C *C `protobuf:"bytes,1,opt,name=C" json:"C,omitempty"` D *D `protobuf:"bytes,2,opt,name=D" json:"D,omitempty"` F *OldC `protobuf:"bytes,5,opt,name=F" json:"F,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *B) Reset() { *m = B{} } func (*B) ProtoMessage() {} func (*B) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{1} } type D struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *D) Reset() { *m = D{} } func (*D) ProtoMessage() {} func (*D) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{2} } type C struct { Field2 *float64 `protobuf:"fixed64,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *string `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field4 *float64 `protobuf:"fixed64,4,opt,name=Field4" json:"Field4,omitempty"` Field5 [][]byte `protobuf:"bytes,5,rep,name=Field5" json:"Field5,omitempty"` Field6 *int64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 []float32 `protobuf:"fixed32,7,rep,name=Field7" json:"Field7,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *C) Reset() { *m = C{} } func (*C) ProtoMessage() {} func (*C) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{3} } type U struct { Field2 []float64 `protobuf:"fixed64,2,rep,name=Field2" json:"Field2,omitempty"` Field3 *uint32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` } func (m *U) Reset() { *m = U{} } func (*U) ProtoMessage() {} func (*U) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{4} } type UnoM struct { Field2 []float64 `protobuf:"fixed64,2,rep,name=Field2" json:"Field2,omitempty"` Field3 *uint32 `protobuf:"varint,3,opt,name=Field3" json:"Field3,omitempty"` } func (m *UnoM) Reset() { *m = UnoM{} } func (*UnoM) ProtoMessage() {} func (*UnoM) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{5} } type OldA struct { Field1 *int64 `protobuf:"varint,2,opt,name=Field1" json:"Field1,omitempty"` B []*OldB `protobuf:"bytes,1,rep,name=B" json:"B,omitempty"` } func (m *OldA) Reset() { *m = OldA{} } func (*OldA) ProtoMessage() {} func (*OldA) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{6} } type OldB struct { C *OldC `protobuf:"bytes,1,opt,name=C" json:"C,omitempty"` F *OldC `protobuf:"bytes,5,opt,name=F" json:"F,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldB) Reset() { *m = OldB{} } func (*OldB) ProtoMessage() {} func (*OldB) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{7} } type OldC struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *float64 `protobuf:"fixed64,2,opt,name=Field2" json:"Field2,omitempty"` Field3 *string `protobuf:"bytes,3,opt,name=Field3" json:"Field3,omitempty"` Field6 *int64 `protobuf:"varint,6,opt,name=Field6" json:"Field6,omitempty"` Field7 []float32 `protobuf:"fixed32,7,rep,name=Field7" json:"Field7,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldC) Reset() { *m = OldC{} } func (*OldC) ProtoMessage() {} func (*OldC) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{8} } type OldU struct { Field1 *string `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 []float64 `protobuf:"fixed64,2,rep,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldU) Reset() { *m = OldU{} } func (*OldU) ProtoMessage() {} func (*OldU) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{9} } type OldUnoM struct { Field1 *string `protobuf:"bytes,1,opt,name=Field1" json:"Field1,omitempty"` Field2 []float64 `protobuf:"fixed64,2,rep,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldUnoM) Reset() { *m = OldUnoM{} } func (*OldUnoM) ProtoMessage() {} func (*OldUnoM) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognized, []int{10} } func init() { proto.RegisterType((*A)(nil), "unrecognized.A") proto.RegisterType((*B)(nil), "unrecognized.B") proto.RegisterType((*D)(nil), "unrecognized.D") proto.RegisterType((*C)(nil), "unrecognized.C") proto.RegisterType((*U)(nil), "unrecognized.U") proto.RegisterType((*UnoM)(nil), "unrecognized.UnoM") proto.RegisterType((*OldA)(nil), "unrecognized.OldA") proto.RegisterType((*OldB)(nil), "unrecognized.OldB") proto.RegisterType((*OldC)(nil), "unrecognized.OldC") proto.RegisterType((*OldU)(nil), "unrecognized.OldU") proto.RegisterType((*OldUnoM)(nil), "unrecognized.OldUnoM") } func (this *A) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *B) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *D) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *C) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *U) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *UnoM) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *OldA) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *OldB) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *OldC) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *OldU) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func (this *OldUnoM) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedDescription() } func UnrecognizedDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3938 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0xe3, 0xd6, 0x75, 0x16, 0xf8, 0x23, 0x91, 0x87, 0x14, 0x05, 0x41, 0xb2, 0x96, 0x2b, 0xc7, 0x92, 0x96, 0xfe, 0x93, 0xed, 0x46, 0x9b, 0xca, 0xfb, 0x8b, 0x6d, 0xe2, 0x50, 0x24, 0x25, 0x6b, 0x2b, 0x89, 0x0a, 0x24, 0xc6, 0xeb, 0xf4, 0x01, 0x03, 0x81, 0x97, 0x14, 0x76, 0x41, 0x00, 0x01, 0xc0, 0x5d, 0x6b, 0xa7, 0xd3, 0xd9, 0x8e, 0xfb, 0x97, 0xe9, 0xb4, 0x4d, 0x9b, 0xce, 0x34, 0x71, 0x1d, 0x37, 0x9b, 0x99, 0xd6, 0x69, 0xd2, 0x9f, 0xa4, 0x69, 0xd3, 0xb4, 0x4f, 0x7d, 0x49, 0xeb, 0xa7, 0x8e, 0xf3, 0xd6, 0x87, 0x3e, 0x78, 0x77, 0x3c, 0xd3, 0x3f, 0xb7, 0x4d, 0x1b, 0x3f, 0x74, 0x66, 0x5f, 0x3a, 0xf7, 0x0f, 0x04, 0x48, 0x6a, 0x41, 0x79, 0xc6, 0xce, 0x93, 0x74, 0xcf, 0x3d, 0xdf, 0x77, 0xcf, 0x3d, 0xf7, 0xdc, 0x7b, 0xce, 0xbd, 0x20, 0x7c, 0xeb, 0x12, 0x2c, 0xb5, 0x6d, 0xbb, 0x6d, 0xa2, 0xb3, 0x8e, 0x6b, 0xfb, 0xf6, 0x41, 0xb7, 0x75, 0xb6, 0x89, 0x3c, 0xdd, 0x35, 0x1c, 0xdf, 0x76, 0x57, 0x88, 0x4c, 0x9a, 0xa2, 0x1a, 0x2b, 0x5c, 0xa3, 0xb4, 0x0d, 0xd3, 0xeb, 0x86, 0x89, 0xaa, 0x81, 0xe2, 0x1e, 0xf2, 0xa5, 0x4b, 0x90, 0x6a, 0x19, 0x26, 0x2a, 0x0a, 0x4b, 0xc9, 0xe5, 0xdc, 0xea, 0x13, 0x2b, 0x7d, 0xa0, 0x95, 0x28, 0x62, 0x17, 0x8b, 0x15, 0x82, 0x28, 0xbd, 0x9b, 0x82, 0x99, 0x21, 0xbd, 0x92, 0x04, 0x29, 0x4b, 0xeb, 0x60, 0x46, 0x61, 0x39, 0xab, 0x90, 0xff, 0xa5, 0x22, 0x4c, 0x38, 0x9a, 0x7e, 0x43, 0x6b, 0xa3, 0x62, 0x82, 0x88, 0x79, 0x53, 0x5a, 0x00, 0x68, 0x22, 0x07, 0x59, 0x4d, 0x64, 0xe9, 0x47, 0xc5, 0xe4, 0x52, 0x72, 0x39, 0xab, 0x84, 0x24, 0xd2, 0x73, 0x30, 0xed, 0x74, 0x0f, 0x4c, 0x43, 0x57, 0x43, 0x6a, 0xb0, 0x94, 0x5c, 0x4e, 0x2b, 0x22, 0xed, 0xa8, 0xf6, 0x94, 0x9f, 0x86, 0xa9, 0x5b, 0x48, 0xbb, 0x11, 0x56, 0xcd, 0x11, 0xd5, 0x02, 0x16, 0x87, 0x14, 0x2b, 0x90, 0xef, 0x20, 0xcf, 0xd3, 0xda, 0x48, 0xf5, 0x8f, 0x1c, 0x54, 0x4c, 0x91, 0xd9, 0x2f, 0x0d, 0xcc, 0xbe, 0x7f, 0xe6, 0x39, 0x86, 0xda, 0x3f, 0x72, 0x90, 0x54, 0x86, 0x2c, 0xb2, 0xba, 0x1d, 0xca, 0x90, 0x3e, 0xc6, 0x7f, 0x35, 0xab, 0xdb, 0xe9, 0x67, 0xc9, 0x60, 0x18, 0xa3, 0x98, 0xf0, 0x90, 0x7b, 0xd3, 0xd0, 0x51, 0x71, 0x9c, 0x10, 0x3c, 0x3d, 0x40, 0xb0, 0x47, 0xfb, 0xfb, 0x39, 0x38, 0x4e, 0xaa, 0x40, 0x16, 0xbd, 0xe2, 0x23, 0xcb, 0x33, 0x6c, 0xab, 0x38, 0x41, 0x48, 0x9e, 0x1c, 0xb2, 0x8a, 0xc8, 0x6c, 0xf6, 0x53, 0xf4, 0x70, 0xd2, 0x05, 0x98, 0xb0, 0x1d, 0xdf, 0xb0, 0x2d, 0xaf, 0x98, 0x59, 0x12, 0x96, 0x73, 0xab, 0x1f, 0x1b, 0x1a, 0x08, 0x75, 0xaa, 0xa3, 0x70, 0x65, 0x69, 0x13, 0x44, 0xcf, 0xee, 0xba, 0x3a, 0x52, 0x75, 0xbb, 0x89, 0x54, 0xc3, 0x6a, 0xd9, 0xc5, 0x2c, 0x21, 0x58, 0x1c, 0x9c, 0x08, 0x51, 0xac, 0xd8, 0x4d, 0xb4, 0x69, 0xb5, 0x6c, 0xa5, 0xe0, 0x45, 0xda, 0xd2, 0x1c, 0x8c, 0x7b, 0x47, 0x96, 0xaf, 0xbd, 0x52, 0xcc, 0x93, 0x08, 0x61, 0xad, 0xd2, 0xdf, 0x8c, 0xc3, 0xd4, 0x28, 0x21, 0x76, 0x05, 0xd2, 0x2d, 0x3c, 0xcb, 0x62, 0xe2, 0x24, 0x3e, 0xa0, 0x98, 0xa8, 0x13, 0xc7, 0x3f, 0xa0, 0x13, 0xcb, 0x90, 0xb3, 0x90, 0xe7, 0xa3, 0x26, 0x8d, 0x88, 0xe4, 0x88, 0x31, 0x05, 0x14, 0x34, 0x18, 0x52, 0xa9, 0x0f, 0x14, 0x52, 0xd7, 0x60, 0x2a, 0x30, 0x49, 0x75, 0x35, 0xab, 0xcd, 0x63, 0xf3, 0x6c, 0x9c, 0x25, 0x2b, 0x35, 0x8e, 0x53, 0x30, 0x4c, 0x29, 0xa0, 0x48, 0x5b, 0xaa, 0x02, 0xd8, 0x16, 0xb2, 0x5b, 0x6a, 0x13, 0xe9, 0x66, 0x31, 0x73, 0x8c, 0x97, 0xea, 0x58, 0x65, 0xc0, 0x4b, 0x36, 0x95, 0xea, 0xa6, 0x74, 0xb9, 0x17, 0x6a, 0x13, 0xc7, 0x44, 0xca, 0x36, 0xdd, 0x64, 0x03, 0xd1, 0xd6, 0x80, 0x82, 0x8b, 0x70, 0xdc, 0xa3, 0x26, 0x9b, 0x59, 0x96, 0x18, 0xb1, 0x12, 0x3b, 0x33, 0x85, 0xc1, 0xe8, 0xc4, 0x26, 0xdd, 0x70, 0x53, 0x7a, 0x1c, 0x02, 0x81, 0x4a, 0xc2, 0x0a, 0xc8, 0x29, 0x94, 0xe7, 0xc2, 0x1d, 0xad, 0x83, 0xe6, 0x6f, 0x43, 0x21, 0xea, 0x1e, 0x69, 0x16, 0xd2, 0x9e, 0xaf, 0xb9, 0x3e, 0x89, 0xc2, 0xb4, 0x42, 0x1b, 0x92, 0x08, 0x49, 0x64, 0x35, 0xc9, 0x29, 0x97, 0x56, 0xf0, 0xbf, 0xd2, 0xa7, 0x7b, 0x13, 0x4e, 0x92, 0x09, 0x3f, 0x35, 0xb8, 0xa2, 0x11, 0xe6, 0xfe, 0x79, 0xcf, 0x5f, 0x84, 0xc9, 0xc8, 0x04, 0x46, 0x1d, 0xba, 0xf4, 0xf3, 0xf0, 0xc8, 0x50, 0x6a, 0xe9, 0x1a, 0xcc, 0x76, 0x2d, 0xc3, 0xf2, 0x91, 0xeb, 0xb8, 0x08, 0x47, 0x2c, 0x1d, 0xaa, 0xf8, 0x2f, 0x13, 0xc7, 0xc4, 0x5c, 0x23, 0xac, 0x4d, 0x59, 0x94, 0x99, 0xee, 0xa0, 0xf0, 0xd9, 0x6c, 0xe6, 0x5f, 0x27, 0xc4, 0x3b, 0x77, 0xee, 0xdc, 0x49, 0x94, 0xbe, 0x3c, 0x0e, 0xb3, 0xc3, 0xf6, 0xcc, 0xd0, 0xed, 0x3b, 0x07, 0xe3, 0x56, 0xb7, 0x73, 0x80, 0x5c, 0xe2, 0xa4, 0xb4, 0xc2, 0x5a, 0x52, 0x19, 0xd2, 0xa6, 0x76, 0x80, 0xcc, 0x62, 0x6a, 0x49, 0x58, 0x2e, 0xac, 0x3e, 0x37, 0xd2, 0xae, 0x5c, 0xd9, 0xc2, 0x10, 0x85, 0x22, 0xa5, 0x4f, 0x41, 0x8a, 0x1d, 0xd1, 0x98, 0xe1, 0xd9, 0xd1, 0x18, 0xf0, 0x5e, 0x52, 0x08, 0x4e, 0x7a, 0x14, 0xb2, 0xf8, 0x2f, 0x8d, 0x8d, 0x71, 0x62, 0x73, 0x06, 0x0b, 0x70, 0x5c, 0x48, 0xf3, 0x90, 0x21, 0xdb, 0xa4, 0x89, 0x78, 0x6a, 0x0b, 0xda, 0x38, 0xb0, 0x9a, 0xa8, 0xa5, 0x75, 0x4d, 0x5f, 0xbd, 0xa9, 0x99, 0x5d, 0x44, 0x02, 0x3e, 0xab, 0xe4, 0x99, 0xf0, 0xb3, 0x58, 0x26, 0x2d, 0x42, 0x8e, 0xee, 0x2a, 0xc3, 0x6a, 0xa2, 0x57, 0xc8, 0xe9, 0x99, 0x56, 0xe8, 0x46, 0xdb, 0xc4, 0x12, 0x3c, 0xfc, 0x75, 0xcf, 0xb6, 0x78, 0x68, 0x92, 0x21, 0xb0, 0x80, 0x0c, 0x7f, 0xb1, 0xff, 0xe0, 0x7e, 0x6c, 0xf8, 0xf4, 0xfa, 0x63, 0xaa, 0xf4, 0xbd, 0x04, 0xa4, 0xc8, 0x79, 0x31, 0x05, 0xb9, 0xfd, 0x97, 0x77, 0x6b, 0x6a, 0xb5, 0xde, 0x58, 0xdb, 0xaa, 0x89, 0x82, 0x54, 0x00, 0x20, 0x82, 0xf5, 0xad, 0x7a, 0x79, 0x5f, 0x4c, 0x04, 0xed, 0xcd, 0x9d, 0xfd, 0x0b, 0xe7, 0xc4, 0x64, 0x00, 0x68, 0x50, 0x41, 0x2a, 0xac, 0xf0, 0xfc, 0xaa, 0x98, 0x96, 0x44, 0xc8, 0x53, 0x82, 0xcd, 0x6b, 0xb5, 0xea, 0x85, 0x73, 0xe2, 0x78, 0x54, 0xf2, 0xfc, 0xaa, 0x38, 0x21, 0x4d, 0x42, 0x96, 0x48, 0xd6, 0xea, 0xf5, 0x2d, 0x31, 0x13, 0x70, 0xee, 0xed, 0x2b, 0x9b, 0x3b, 0x1b, 0x62, 0x36, 0xe0, 0xdc, 0x50, 0xea, 0x8d, 0x5d, 0x11, 0x02, 0x86, 0xed, 0xda, 0xde, 0x5e, 0x79, 0xa3, 0x26, 0xe6, 0x02, 0x8d, 0xb5, 0x97, 0xf7, 0x6b, 0x7b, 0x62, 0x3e, 0x62, 0xd6, 0xf3, 0xab, 0xe2, 0x64, 0x30, 0x44, 0x6d, 0xa7, 0xb1, 0x2d, 0x16, 0xa4, 0x69, 0x98, 0xa4, 0x43, 0x70, 0x23, 0xa6, 0xfa, 0x44, 0x17, 0xce, 0x89, 0x62, 0xcf, 0x10, 0xca, 0x32, 0x1d, 0x11, 0x5c, 0x38, 0x27, 0x4a, 0xa5, 0x0a, 0xa4, 0x49, 0x74, 0x49, 0x12, 0x14, 0xb6, 0xca, 0x6b, 0xb5, 0x2d, 0xb5, 0xbe, 0xbb, 0xbf, 0x59, 0xdf, 0x29, 0x6f, 0x89, 0x42, 0x4f, 0xa6, 0xd4, 0x3e, 0xd3, 0xd8, 0x54, 0x6a, 0x55, 0x31, 0x11, 0x96, 0xed, 0xd6, 0xca, 0xfb, 0xb5, 0xaa, 0x98, 0x2c, 0xe9, 0x30, 0x3b, 0xec, 0x9c, 0x1c, 0xba, 0x33, 0x42, 0x4b, 0x9c, 0x38, 0x66, 0x89, 0x09, 0xd7, 0xc0, 0x12, 0x7f, 0x5d, 0x80, 0x99, 0x21, 0xb9, 0x62, 0xe8, 0x20, 0x2f, 0x40, 0x9a, 0x86, 0x28, 0xcd, 0x9e, 0xcf, 0x0c, 0x4d, 0x3a, 0x24, 0x60, 0x07, 0x32, 0x28, 0xc1, 0x85, 0x2b, 0x88, 0xe4, 0x31, 0x15, 0x04, 0xa6, 0x18, 0x30, 0xf2, 0x55, 0x01, 0x8a, 0xc7, 0x71, 0xc7, 0x1c, 0x14, 0x89, 0xc8, 0x41, 0x71, 0xa5, 0xdf, 0x80, 0x33, 0xc7, 0xcf, 0x61, 0xc0, 0x8a, 0x37, 0x05, 0x98, 0x1b, 0x5e, 0x68, 0x0d, 0xb5, 0xe1, 0x53, 0x30, 0xde, 0x41, 0xfe, 0xa1, 0xcd, 0x8b, 0x8d, 0xa7, 0x86, 0xa4, 0x30, 0xdc, 0xdd, 0xef, 0x2b, 0x86, 0x0a, 0xe7, 0xc0, 0xe4, 0x71, 0xd5, 0x12, 0xb5, 0x66, 0xc0, 0xd2, 0x2f, 0x24, 0xe0, 0x91, 0xa1, 0xe4, 0x43, 0x0d, 0x7d, 0x0c, 0xc0, 0xb0, 0x9c, 0xae, 0x4f, 0x0b, 0x0a, 0x7a, 0x3e, 0x65, 0x89, 0x84, 0xec, 0x7d, 0x7c, 0xf6, 0x74, 0xfd, 0xa0, 0x3f, 0x49, 0xfa, 0x81, 0x8a, 0x88, 0xc2, 0xa5, 0x9e, 0xa1, 0x29, 0x62, 0xe8, 0xc2, 0x31, 0x33, 0x1d, 0xc8, 0xd5, 0x9f, 0x00, 0x51, 0x37, 0x0d, 0x64, 0xf9, 0xaa, 0xe7, 0xbb, 0x48, 0xeb, 0x18, 0x56, 0x9b, 0x1c, 0xc0, 0x19, 0x39, 0xdd, 0xd2, 0x4c, 0x0f, 0x29, 0x53, 0xb4, 0x7b, 0x8f, 0xf7, 0x62, 0x04, 0xc9, 0x71, 0x6e, 0x08, 0x31, 0x1e, 0x41, 0xd0, 0xee, 0x00, 0x51, 0xfa, 0x6e, 0x06, 0x72, 0xa1, 0xb2, 0x54, 0x3a, 0x03, 0xf9, 0xeb, 0xda, 0x4d, 0x4d, 0xe5, 0x57, 0x0d, 0xea, 0x89, 0x1c, 0x96, 0xed, 0xb2, 0xeb, 0xc6, 0x27, 0x60, 0x96, 0xa8, 0xd8, 0x5d, 0x1f, 0xb9, 0xaa, 0x6e, 0x6a, 0x9e, 0x47, 0x9c, 0x96, 0x21, 0xaa, 0x12, 0xee, 0xab, 0xe3, 0xae, 0x0a, 0xef, 0x91, 0xce, 0xc3, 0x0c, 0x41, 0x74, 0xba, 0xa6, 0x6f, 0x38, 0x26, 0x52, 0xf1, 0xe5, 0xc7, 0x23, 0x07, 0x71, 0x60, 0xd9, 0x34, 0xd6, 0xd8, 0x66, 0x0a, 0xd8, 0x22, 0x4f, 0xaa, 0xc2, 0x63, 0x04, 0xd6, 0x46, 0x16, 0x72, 0x35, 0x1f, 0xa9, 0xe8, 0xf3, 0x5d, 0xcd, 0xf4, 0x54, 0xcd, 0x6a, 0xaa, 0x87, 0x9a, 0x77, 0x58, 0x9c, 0xc5, 0x04, 0x6b, 0x89, 0xa2, 0xa0, 0x9c, 0xc6, 0x8a, 0x1b, 0x4c, 0xaf, 0x46, 0xd4, 0xca, 0x56, 0xf3, 0x45, 0xcd, 0x3b, 0x94, 0x64, 0x98, 0x23, 0x2c, 0x9e, 0xef, 0x1a, 0x56, 0x5b, 0xd5, 0x0f, 0x91, 0x7e, 0x43, 0xed, 0xfa, 0xad, 0x4b, 0xc5, 0x47, 0xc3, 0xe3, 0x13, 0x0b, 0xf7, 0x88, 0x4e, 0x05, 0xab, 0x34, 0xfc, 0xd6, 0x25, 0x69, 0x0f, 0xf2, 0x78, 0x31, 0x3a, 0xc6, 0x6d, 0xa4, 0xb6, 0x6c, 0x97, 0x64, 0x96, 0xc2, 0x90, 0x9d, 0x1d, 0xf2, 0xe0, 0x4a, 0x9d, 0x01, 0xb6, 0xed, 0x26, 0x92, 0xd3, 0x7b, 0xbb, 0xb5, 0x5a, 0x55, 0xc9, 0x71, 0x96, 0x75, 0xdb, 0xc5, 0x01, 0xd5, 0xb6, 0x03, 0x07, 0xe7, 0x68, 0x40, 0xb5, 0x6d, 0xee, 0xde, 0xf3, 0x30, 0xa3, 0xeb, 0x74, 0xce, 0x86, 0xae, 0xb2, 0x2b, 0x8a, 0x57, 0x14, 0x23, 0xce, 0xd2, 0xf5, 0x0d, 0xaa, 0xc0, 0x62, 0xdc, 0x93, 0x2e, 0xc3, 0x23, 0x3d, 0x67, 0x85, 0x81, 0xd3, 0x03, 0xb3, 0xec, 0x87, 0x9e, 0x87, 0x19, 0xe7, 0x68, 0x10, 0x28, 0x45, 0x46, 0x74, 0x8e, 0xfa, 0x61, 0x17, 0x61, 0xd6, 0x39, 0x74, 0x06, 0x71, 0x33, 0x61, 0x9c, 0xe4, 0x1c, 0x3a, 0xfd, 0xc0, 0x27, 0xc9, 0x7d, 0xd5, 0x45, 0xba, 0xe6, 0xa3, 0x66, 0xf1, 0x54, 0x58, 0x3d, 0xd4, 0x21, 0x9d, 0x05, 0x51, 0xd7, 0x55, 0x64, 0x69, 0x07, 0x26, 0x52, 0x35, 0x17, 0x59, 0x9a, 0x57, 0x5c, 0x0c, 0x2b, 0x17, 0x74, 0xbd, 0x46, 0x7a, 0xcb, 0xa4, 0x53, 0x7a, 0x16, 0xa6, 0xed, 0x83, 0xeb, 0x3a, 0x0d, 0x49, 0xd5, 0x71, 0x51, 0xcb, 0x78, 0xa5, 0xf8, 0x04, 0xf1, 0xef, 0x14, 0xee, 0x20, 0x01, 0xb9, 0x4b, 0xc4, 0xd2, 0x33, 0x20, 0xea, 0xde, 0xa1, 0xe6, 0x3a, 0xa4, 0x26, 0xf0, 0x1c, 0x4d, 0x47, 0xc5, 0x27, 0xa9, 0x2a, 0x95, 0xef, 0x70, 0x31, 0xde, 0x12, 0xde, 0x2d, 0xa3, 0xe5, 0x73, 0xc6, 0xa7, 0xe9, 0x96, 0x20, 0x32, 0xc6, 0xb6, 0x0c, 0x22, 0x76, 0x45, 0x64, 0xe0, 0x65, 0xa2, 0x56, 0x70, 0x0e, 0x9d, 0xf0, 0xb8, 0x8f, 0xc3, 0x24, 0xd6, 0xec, 0x0d, 0xfa, 0x0c, 0xad, 0x67, 0x9c, 0xc3, 0xd0, 0x88, 0x1f, 0x5a, 0x69, 0x59, 0x92, 0x21, 0x1f, 0x8e, 0x4f, 0x29, 0x0b, 0x34, 0x42, 0x45, 0x01, 0xe7, 0xfa, 0x4a, 0xbd, 0x8a, 0xb3, 0xf4, 0xe7, 0x6a, 0x62, 0x02, 0x57, 0x0b, 0x5b, 0x9b, 0xfb, 0x35, 0x55, 0x69, 0xec, 0xec, 0x6f, 0x6e, 0xd7, 0xc4, 0x64, 0xb8, 0x2c, 0xfd, 0x41, 0x02, 0x0a, 0xd1, 0x1b, 0x86, 0xf4, 0x33, 0x70, 0x8a, 0x3f, 0x07, 0x78, 0xc8, 0x57, 0x6f, 0x19, 0x2e, 0xd9, 0x32, 0x1d, 0x8d, 0x56, 0xd8, 0xc1, 0xa2, 0xcd, 0x32, 0xad, 0x3d, 0xe4, 0xbf, 0x64, 0xb8, 0x78, 0x43, 0x74, 0x34, 0x5f, 0xda, 0x82, 0x45, 0xcb, 0x56, 0x3d, 0x5f, 0xb3, 0x9a, 0x9a, 0xdb, 0x54, 0x7b, 0x0f, 0x31, 0xaa, 0xa6, 0xeb, 0xc8, 0xf3, 0x6c, 0x9a, 0xaa, 0x02, 0x96, 0x8f, 0x59, 0xf6, 0x1e, 0x53, 0xee, 0x9d, 0xe1, 0x65, 0xa6, 0xda, 0x17, 0x60, 0xc9, 0xe3, 0x02, 0xec, 0x51, 0xc8, 0x76, 0x34, 0x47, 0x45, 0x96, 0xef, 0x1e, 0x91, 0xba, 0x32, 0xa3, 0x64, 0x3a, 0x9a, 0x53, 0xc3, 0xed, 0x8f, 0xa6, 0xbc, 0xff, 0xe7, 0x24, 0xe4, 0xc3, 0xb5, 0x25, 0x2e, 0xd5, 0x75, 0x92, 0x47, 0x04, 0x72, 0xd2, 0x3c, 0xfe, 0xd0, 0x4a, 0x74, 0xa5, 0x82, 0x13, 0x8c, 0x3c, 0x4e, 0x2b, 0x3e, 0x85, 0x22, 0x71, 0x72, 0xc7, 0x67, 0x0b, 0xa2, 0xb7, 0x98, 0x8c, 0xc2, 0x5a, 0xd2, 0x06, 0x8c, 0x5f, 0xf7, 0x08, 0xf7, 0x38, 0xe1, 0x7e, 0xe2, 0xe1, 0xdc, 0x57, 0xf7, 0x08, 0x79, 0xf6, 0xea, 0x9e, 0xba, 0x53, 0x57, 0xb6, 0xcb, 0x5b, 0x0a, 0x83, 0x4b, 0xa7, 0x21, 0x65, 0x6a, 0xb7, 0x8f, 0xa2, 0xa9, 0x88, 0x88, 0x46, 0x75, 0xfc, 0x69, 0x48, 0xdd, 0x42, 0xda, 0x8d, 0x68, 0x02, 0x20, 0xa2, 0x0f, 0x31, 0xf4, 0xcf, 0x42, 0x9a, 0xf8, 0x4b, 0x02, 0x60, 0x1e, 0x13, 0xc7, 0xa4, 0x0c, 0xa4, 0x2a, 0x75, 0x05, 0x87, 0xbf, 0x08, 0x79, 0x2a, 0x55, 0x77, 0x37, 0x6b, 0x95, 0x9a, 0x98, 0x28, 0x9d, 0x87, 0x71, 0xea, 0x04, 0xbc, 0x35, 0x02, 0x37, 0x88, 0x63, 0xac, 0xc9, 0x38, 0x04, 0xde, 0xdb, 0xd8, 0x5e, 0xab, 0x29, 0x62, 0x22, 0xbc, 0xbc, 0x1e, 0xe4, 0xc3, 0x65, 0xe5, 0x47, 0x13, 0x53, 0x7f, 0x2b, 0x40, 0x2e, 0x54, 0x26, 0xe2, 0x02, 0x45, 0x33, 0x4d, 0xfb, 0x96, 0xaa, 0x99, 0x86, 0xe6, 0xb1, 0xa0, 0x00, 0x22, 0x2a, 0x63, 0xc9, 0xa8, 0x8b, 0xf6, 0x91, 0x18, 0xff, 0x86, 0x00, 0x62, 0x7f, 0x89, 0xd9, 0x67, 0xa0, 0xf0, 0x13, 0x35, 0xf0, 0x75, 0x01, 0x0a, 0xd1, 0xba, 0xb2, 0xcf, 0xbc, 0x33, 0x3f, 0x51, 0xf3, 0xde, 0x49, 0xc0, 0x64, 0xa4, 0x9a, 0x1c, 0xd5, 0xba, 0xcf, 0xc3, 0xb4, 0xd1, 0x44, 0x1d, 0xc7, 0xf6, 0x91, 0xa5, 0x1f, 0xa9, 0x26, 0xba, 0x89, 0xcc, 0x62, 0x89, 0x1c, 0x14, 0x67, 0x1f, 0x5e, 0xaf, 0xae, 0x6c, 0xf6, 0x70, 0x5b, 0x18, 0x26, 0xcf, 0x6c, 0x56, 0x6b, 0xdb, 0xbb, 0xf5, 0xfd, 0xda, 0x4e, 0xe5, 0x65, 0xb5, 0xb1, 0xf3, 0xb3, 0x3b, 0xf5, 0x97, 0x76, 0x14, 0xd1, 0xe8, 0x53, 0xfb, 0x10, 0xb7, 0xfa, 0x2e, 0x88, 0xfd, 0x46, 0x49, 0xa7, 0x60, 0x98, 0x59, 0xe2, 0x98, 0x34, 0x03, 0x53, 0x3b, 0x75, 0x75, 0x6f, 0xb3, 0x5a, 0x53, 0x6b, 0xeb, 0xeb, 0xb5, 0xca, 0xfe, 0x1e, 0xbd, 0xc0, 0x07, 0xda, 0xfb, 0xd1, 0x4d, 0xfd, 0x5a, 0x12, 0x66, 0x86, 0x58, 0x22, 0x95, 0xd9, 0xdd, 0x81, 0x5e, 0x67, 0x3e, 0x3e, 0x8a, 0xf5, 0x2b, 0x38, 0xe5, 0xef, 0x6a, 0xae, 0xcf, 0xae, 0x1a, 0xcf, 0x00, 0xf6, 0x92, 0xe5, 0x1b, 0x2d, 0x03, 0xb9, 0xec, 0xbd, 0x83, 0x5e, 0x28, 0xa6, 0x7a, 0x72, 0xfa, 0xe4, 0xf1, 0x53, 0x20, 0x39, 0xb6, 0x67, 0xf8, 0xc6, 0x4d, 0xa4, 0x1a, 0x16, 0x7f, 0x1c, 0xc1, 0x17, 0x8c, 0x94, 0x22, 0xf2, 0x9e, 0x4d, 0xcb, 0x0f, 0xb4, 0x2d, 0xd4, 0xd6, 0xfa, 0xb4, 0xf1, 0x01, 0x9e, 0x54, 0x44, 0xde, 0x13, 0x68, 0x9f, 0x81, 0x7c, 0xd3, 0xee, 0xe2, 0xaa, 0x8b, 0xea, 0xe1, 0x7c, 0x21, 0x28, 0x39, 0x2a, 0x0b, 0x54, 0x58, 0x3d, 0xdd, 0x7b, 0x95, 0xc9, 0x2b, 0x39, 0x2a, 0xa3, 0x2a, 0x4f, 0xc3, 0x94, 0xd6, 0x6e, 0xbb, 0x98, 0x9c, 0x13, 0xd1, 0x1b, 0x42, 0x21, 0x10, 0x13, 0xc5, 0xf9, 0xab, 0x90, 0xe1, 0x7e, 0xc0, 0x29, 0x19, 0x7b, 0x42, 0x75, 0xe8, 0xcb, 0x5c, 0x62, 0x39, 0xab, 0x64, 0x2c, 0xde, 0x79, 0x06, 0xf2, 0x86, 0xa7, 0xf6, 0x1e, 0x99, 0x13, 0x4b, 0x89, 0xe5, 0x8c, 0x92, 0x33, 0xbc, 0xe0, 0x81, 0xae, 0xf4, 0x66, 0x02, 0x0a, 0xd1, 0x47, 0x72, 0xa9, 0x0a, 0x19, 0xd3, 0xd6, 0x35, 0x12, 0x5a, 0xf4, 0x0b, 0xcd, 0x72, 0xcc, 0xbb, 0xfa, 0xca, 0x16, 0xd3, 0x57, 0x02, 0xe4, 0xfc, 0x3f, 0x0a, 0x90, 0xe1, 0x62, 0x69, 0x0e, 0x52, 0x8e, 0xe6, 0x1f, 0x12, 0xba, 0xf4, 0x5a, 0x42, 0x14, 0x14, 0xd2, 0xc6, 0x72, 0xcf, 0xd1, 0x2c, 0x12, 0x02, 0x4c, 0x8e, 0xdb, 0x78, 0x5d, 0x4d, 0xa4, 0x35, 0xc9, 0xf5, 0xc3, 0xee, 0x74, 0x90, 0xe5, 0x7b, 0x7c, 0x5d, 0x99, 0xbc, 0xc2, 0xc4, 0xd2, 0x73, 0x30, 0xed, 0xbb, 0x9a, 0x61, 0x46, 0x74, 0x53, 0x44, 0x57, 0xe4, 0x1d, 0x81, 0xb2, 0x0c, 0xa7, 0x39, 0x6f, 0x13, 0xf9, 0x9a, 0x7e, 0x88, 0x9a, 0x3d, 0xd0, 0x38, 0x79, 0x81, 0x3d, 0xc5, 0x14, 0xaa, 0xac, 0x9f, 0x63, 0x4b, 0x3f, 0x14, 0x60, 0x9a, 0x5f, 0x98, 0x9a, 0x81, 0xb3, 0xb6, 0x01, 0x34, 0xcb, 0xb2, 0xfd, 0xb0, 0xbb, 0x06, 0x43, 0x79, 0x00, 0xb7, 0x52, 0x0e, 0x40, 0x4a, 0x88, 0x60, 0xbe, 0x03, 0xd0, 0xeb, 0x39, 0xd6, 0x6d, 0x8b, 0x90, 0x63, 0x5f, 0x40, 0xc8, 0x67, 0x34, 0x7a, 0xc5, 0x06, 0x2a, 0xc2, 0x37, 0x2b, 0x69, 0x16, 0xd2, 0x07, 0xa8, 0x6d, 0x58, 0xec, 0x5d, 0x93, 0x36, 0xf8, 0x5b, 0x6d, 0x2a, 0x78, 0xab, 0x5d, 0xbb, 0x06, 0x33, 0xba, 0xdd, 0xe9, 0x37, 0x77, 0x4d, 0xec, 0xbb, 0xe6, 0x7b, 0x2f, 0x0a, 0x9f, 0x83, 0x5e, 0x89, 0xf9, 0xf5, 0x44, 0x72, 0x63, 0x77, 0xed, 0x9b, 0x89, 0xf9, 0x0d, 0x8a, 0xdb, 0xe5, 0xd3, 0x54, 0x50, 0xcb, 0x44, 0x3a, 0x36, 0x1d, 0x7e, 0xfc, 0x14, 0x7c, 0xbc, 0x6d, 0xf8, 0x87, 0xdd, 0x83, 0x15, 0xdd, 0xee, 0x9c, 0x6d, 0xdb, 0x6d, 0xbb, 0xf7, 0xd9, 0x10, 0xb7, 0x48, 0x83, 0xfc, 0xc7, 0x3e, 0x1d, 0x66, 0x03, 0xe9, 0x7c, 0xec, 0x77, 0x46, 0x79, 0x07, 0x66, 0x98, 0xb2, 0x4a, 0xbe, 0x5d, 0xd0, 0x2b, 0x84, 0xf4, 0xd0, 0xf7, 0x9f, 0xe2, 0x77, 0xde, 0x25, 0xb9, 0x5a, 0x99, 0x66, 0x50, 0xdc, 0x47, 0x6f, 0x19, 0xb2, 0x02, 0x8f, 0x44, 0xf8, 0xe8, 0xbe, 0x44, 0x6e, 0x0c, 0xe3, 0x0f, 0x18, 0xe3, 0x4c, 0x88, 0x71, 0x8f, 0x41, 0xe5, 0x0a, 0x4c, 0x9e, 0x84, 0xeb, 0xef, 0x19, 0x57, 0x1e, 0x85, 0x49, 0x36, 0x60, 0x8a, 0x90, 0xe8, 0x5d, 0xcf, 0xb7, 0x3b, 0xe4, 0xd0, 0x7b, 0x38, 0xcd, 0x3f, 0xbc, 0x4b, 0x37, 0x4a, 0x01, 0xc3, 0x2a, 0x01, 0x4a, 0x96, 0x81, 0x7c, 0xae, 0x69, 0x22, 0xdd, 0x8c, 0x61, 0x78, 0x8b, 0x19, 0x12, 0xe8, 0xcb, 0x9f, 0x85, 0x59, 0xfc, 0x3f, 0x39, 0x93, 0xc2, 0x96, 0xc4, 0xbf, 0x76, 0x15, 0x7f, 0xf8, 0x2a, 0xdd, 0x8b, 0x33, 0x01, 0x41, 0xc8, 0xa6, 0xd0, 0x2a, 0xb6, 0x91, 0xef, 0x23, 0xd7, 0x53, 0x35, 0x73, 0x98, 0x79, 0xa1, 0xe7, 0x82, 0xe2, 0x57, 0xde, 0x8b, 0xae, 0xe2, 0x06, 0x45, 0x96, 0x4d, 0x53, 0x6e, 0xc0, 0xa9, 0x21, 0x51, 0x31, 0x02, 0xe7, 0x6b, 0x8c, 0x73, 0x76, 0x20, 0x32, 0x30, 0xed, 0x2e, 0x70, 0x79, 0xb0, 0x96, 0x23, 0x70, 0xfe, 0x3e, 0xe3, 0x94, 0x18, 0x96, 0x2f, 0x29, 0x66, 0xbc, 0x0a, 0xd3, 0x37, 0x91, 0x7b, 0x60, 0x7b, 0xec, 0x89, 0x66, 0x04, 0xba, 0xd7, 0x19, 0xdd, 0x14, 0x03, 0x92, 0x37, 0x1b, 0xcc, 0x75, 0x19, 0x32, 0x2d, 0x4d, 0x47, 0x23, 0x50, 0x7c, 0x95, 0x51, 0x4c, 0x60, 0x7d, 0x0c, 0x2d, 0x43, 0xbe, 0x6d, 0xb3, 0xb4, 0x14, 0x0f, 0x7f, 0x83, 0xc1, 0x73, 0x1c, 0xc3, 0x28, 0x1c, 0xdb, 0xe9, 0x9a, 0x38, 0x67, 0xc5, 0x53, 0xfc, 0x01, 0xa7, 0xe0, 0x18, 0x46, 0x71, 0x02, 0xb7, 0x7e, 0x8d, 0x53, 0x78, 0x21, 0x7f, 0xbe, 0x00, 0x39, 0xdb, 0x32, 0x8f, 0x6c, 0x6b, 0x14, 0x23, 0xee, 0x32, 0x06, 0x60, 0x10, 0x4c, 0x70, 0x05, 0xb2, 0xa3, 0x2e, 0xc4, 0x1f, 0xbe, 0xc7, 0xb7, 0x07, 0x5f, 0x81, 0x0d, 0x98, 0xe2, 0x07, 0x94, 0x61, 0x5b, 0x23, 0x50, 0xfc, 0x11, 0xa3, 0x28, 0x84, 0x60, 0x6c, 0x1a, 0x3e, 0xf2, 0xfc, 0x36, 0x1a, 0x85, 0xe4, 0x4d, 0x3e, 0x0d, 0x06, 0x61, 0xae, 0x3c, 0x40, 0x96, 0x7e, 0x38, 0x1a, 0xc3, 0x37, 0xb8, 0x2b, 0x39, 0x06, 0x53, 0x54, 0x60, 0xb2, 0xa3, 0xb9, 0xde, 0xa1, 0x66, 0x8e, 0xb4, 0x1c, 0x7f, 0xcc, 0x38, 0xf2, 0x01, 0x88, 0x79, 0xa4, 0x6b, 0x9d, 0x84, 0xe6, 0x9b, 0xdc, 0x23, 0x21, 0x18, 0xdb, 0x7a, 0x9e, 0x4f, 0xde, 0xb3, 0x4e, 0xc2, 0xf6, 0x2d, 0xbe, 0xf5, 0x28, 0x76, 0x3b, 0xcc, 0x78, 0x05, 0xb2, 0x9e, 0x71, 0x7b, 0x24, 0x9a, 0x3f, 0xe1, 0x2b, 0x4d, 0x00, 0x18, 0xfc, 0x32, 0x9c, 0x1e, 0x9a, 0x26, 0x46, 0x20, 0xfb, 0x53, 0x46, 0x36, 0x37, 0x24, 0x55, 0xb0, 0x23, 0xe1, 0xa4, 0x94, 0x7f, 0xc6, 0x8f, 0x04, 0xd4, 0xc7, 0xb5, 0x8b, 0x2f, 0x0a, 0x9e, 0xd6, 0x3a, 0x99, 0xd7, 0xfe, 0x9c, 0x7b, 0x8d, 0x62, 0x23, 0x5e, 0xdb, 0x87, 0x39, 0xc6, 0x78, 0xb2, 0x75, 0xfd, 0x36, 0x3f, 0x58, 0x29, 0xba, 0x11, 0x5d, 0xdd, 0x9f, 0x83, 0xf9, 0xc0, 0x9d, 0xbc, 0x22, 0xf5, 0xd4, 0x8e, 0xe6, 0x8c, 0xc0, 0xfc, 0x1d, 0xc6, 0xcc, 0x4f, 0xfc, 0xa0, 0xa4, 0xf5, 0xb6, 0x35, 0x07, 0x93, 0x5f, 0x83, 0x22, 0x27, 0xef, 0x5a, 0x2e, 0xd2, 0xed, 0xb6, 0x65, 0xdc, 0x46, 0xcd, 0x11, 0xa8, 0xff, 0xa2, 0x6f, 0xa9, 0x1a, 0x21, 0x38, 0x66, 0xde, 0x04, 0x31, 0xa8, 0x55, 0x54, 0xa3, 0xe3, 0xd8, 0xae, 0x1f, 0xc3, 0xf8, 0x5d, 0xbe, 0x52, 0x01, 0x6e, 0x93, 0xc0, 0xe4, 0x1a, 0x14, 0x48, 0x73, 0xd4, 0x90, 0xfc, 0x4b, 0x46, 0x34, 0xd9, 0x43, 0xb1, 0x83, 0x43, 0xb7, 0x3b, 0x8e, 0xe6, 0x8e, 0x72, 0xfe, 0xfd, 0x15, 0x3f, 0x38, 0x18, 0x84, 0x1d, 0x1c, 0xfe, 0x91, 0x83, 0x70, 0xb6, 0x1f, 0x81, 0xe1, 0x7b, 0xfc, 0xe0, 0xe0, 0x18, 0x46, 0xc1, 0x0b, 0x86, 0x11, 0x28, 0xfe, 0x9a, 0x53, 0x70, 0x0c, 0xa6, 0xf8, 0x4c, 0x2f, 0xd1, 0xba, 0xa8, 0x6d, 0x78, 0xbe, 0x4b, 0xeb, 0xe0, 0x87, 0x53, 0x7d, 0xff, 0xbd, 0x68, 0x11, 0xa6, 0x84, 0xa0, 0xf2, 0x55, 0x98, 0xea, 0x2b, 0x31, 0xa4, 0xb8, 0xdf, 0x7e, 0x14, 0x7f, 0xf1, 0x7d, 0x76, 0x18, 0x45, 0x2b, 0x0c, 0x79, 0x0b, 0xaf, 0x7b, 0xb4, 0x0e, 0x88, 0x27, 0x7b, 0xf5, 0xfd, 0x60, 0xe9, 0x23, 0x65, 0x80, 0xbc, 0x0e, 0x93, 0x91, 0x1a, 0x20, 0x9e, 0xea, 0x97, 0x18, 0x55, 0x3e, 0x5c, 0x02, 0xc8, 0xe7, 0x21, 0x85, 0xf3, 0x79, 0x3c, 0xfc, 0x97, 0x19, 0x9c, 0xa8, 0xcb, 0x9f, 0x84, 0x0c, 0xcf, 0xe3, 0xf1, 0xd0, 0x5f, 0x61, 0xd0, 0x00, 0x82, 0xe1, 0x3c, 0x87, 0xc7, 0xc3, 0x7f, 0x95, 0xc3, 0x39, 0x04, 0xc3, 0x47, 0x77, 0xe1, 0xdf, 0xfd, 0x7a, 0x8a, 0x9d, 0xc3, 0xdc, 0x77, 0x57, 0x60, 0x82, 0x25, 0xef, 0x78, 0xf4, 0x17, 0xd8, 0xe0, 0x1c, 0x21, 0x5f, 0x84, 0xf4, 0x88, 0x0e, 0xff, 0x0d, 0x06, 0xa5, 0xfa, 0x72, 0x05, 0x72, 0xa1, 0x84, 0x1d, 0x0f, 0xff, 0x4d, 0x06, 0x0f, 0xa3, 0xb0, 0xe9, 0x2c, 0x61, 0xc7, 0x13, 0xfc, 0x16, 0x37, 0x9d, 0x21, 0xb0, 0xdb, 0x78, 0xae, 0x8e, 0x47, 0x7f, 0x91, 0x7b, 0x9d, 0x43, 0xe4, 0x17, 0x20, 0x1b, 0x9c, 0xbf, 0xf1, 0xf8, 0xdf, 0x66, 0xf8, 0x1e, 0x06, 0x7b, 0x20, 0x74, 0xfe, 0xc7, 0x53, 0xfc, 0x0e, 0xf7, 0x40, 0x08, 0x85, 0xb7, 0x51, 0x7f, 0x4e, 0x8f, 0x67, 0xfa, 0x12, 0xdf, 0x46, 0x7d, 0x29, 0x1d, 0xaf, 0x26, 0x39, 0x06, 0xe3, 0x29, 0x7e, 0x97, 0xaf, 0x26, 0xd1, 0xc7, 0x66, 0xf4, 0x27, 0xc9, 0x78, 0x8e, 0xdf, 0xe3, 0x66, 0xf4, 0xe5, 0x48, 0x79, 0x17, 0xa4, 0xc1, 0x04, 0x19, 0xcf, 0xf7, 0x65, 0xc6, 0x37, 0x3d, 0x90, 0x1f, 0xe5, 0x97, 0x60, 0x6e, 0x78, 0x72, 0x8c, 0x67, 0xfd, 0xca, 0xfb, 0x7d, 0xd7, 0x99, 0x70, 0x6e, 0x94, 0xf7, 0x7b, 0xa7, 0x6c, 0x38, 0x31, 0xc6, 0xd3, 0xbe, 0xf6, 0x7e, 0xf4, 0xa0, 0x0d, 0xe7, 0x45, 0xb9, 0x0c, 0xd0, 0xcb, 0x49, 0xf1, 0x5c, 0xaf, 0x33, 0xae, 0x10, 0x08, 0x6f, 0x0d, 0x96, 0x92, 0xe2, 0xf1, 0x5f, 0xe5, 0x5b, 0x83, 0x21, 0xf0, 0xd6, 0xe0, 0xd9, 0x28, 0x1e, 0xfd, 0x06, 0xdf, 0x1a, 0x1c, 0x22, 0x5f, 0x81, 0x8c, 0xd5, 0x35, 0x4d, 0x1c, 0x5b, 0xd2, 0xc3, 0x7f, 0xce, 0x54, 0xfc, 0xb7, 0x07, 0x0c, 0xcc, 0x01, 0xf2, 0x79, 0x48, 0xa3, 0xce, 0x01, 0x6a, 0xc6, 0x21, 0xff, 0xfd, 0x01, 0x3f, 0x4f, 0xb0, 0xb6, 0xfc, 0x02, 0x00, 0xbd, 0x4c, 0x93, 0xaf, 0x44, 0x31, 0xd8, 0xff, 0x78, 0xc0, 0x7e, 0x29, 0xd1, 0x83, 0xf4, 0x08, 0xe8, 0xef, 0x2e, 0x1e, 0x4e, 0xf0, 0x5e, 0x94, 0x80, 0x5c, 0xc0, 0x2f, 0xc3, 0xc4, 0x75, 0xcf, 0xb6, 0x7c, 0xad, 0x1d, 0x87, 0xfe, 0x4f, 0x86, 0xe6, 0xfa, 0xd8, 0x61, 0x1d, 0xdb, 0x45, 0xbe, 0xd6, 0xf6, 0xe2, 0xb0, 0xff, 0xc5, 0xb0, 0x01, 0x00, 0x83, 0x75, 0xcd, 0xf3, 0x47, 0x99, 0xf7, 0x7f, 0x73, 0x30, 0x07, 0x60, 0xa3, 0xf1, 0xff, 0x37, 0xd0, 0x51, 0x1c, 0xf6, 0x47, 0xdc, 0x68, 0xa6, 0x2f, 0x7f, 0x12, 0xb2, 0xf8, 0x5f, 0xfa, 0xeb, 0xa1, 0x18, 0xf0, 0xff, 0x30, 0x70, 0x0f, 0x81, 0x47, 0xf6, 0xfc, 0xa6, 0x6f, 0xc4, 0x3b, 0xfb, 0x7f, 0xd9, 0x4a, 0x73, 0x7d, 0xb9, 0x0c, 0x39, 0xcf, 0x6f, 0x36, 0xbb, 0xac, 0xa2, 0x89, 0x81, 0xff, 0xf8, 0x41, 0x70, 0xc9, 0x0d, 0x30, 0x6b, 0x67, 0x86, 0x3f, 0xd6, 0xc1, 0x86, 0xbd, 0x61, 0xd3, 0x67, 0x3a, 0x78, 0x30, 0x81, 0x8f, 0xa1, 0xde, 0xae, 0x64, 0x4f, 0x6b, 0xf9, 0xb0, 0x6c, 0xfe, 0x64, 0xef, 0x72, 0xa5, 0x4f, 0x83, 0x50, 0x96, 0xe6, 0x60, 0x9c, 0x18, 0xf8, 0xd3, 0xe4, 0xb1, 0x31, 0xa9, 0xb0, 0x96, 0xf4, 0x18, 0x08, 0x6b, 0xec, 0xd5, 0x73, 0x6a, 0x25, 0x32, 0xf2, 0x9a, 0x22, 0xac, 0xc9, 0xa9, 0xb7, 0xef, 0x2e, 0x8e, 0x95, 0x74, 0x10, 0xd6, 0xb0, 0x66, 0x85, 0x7c, 0x8a, 0x1a, 0xd0, 0xac, 0x28, 0x42, 0x05, 0x77, 0x57, 0xd9, 0x4f, 0xcd, 0xfa, 0xba, 0xab, 0x8a, 0x50, 0x95, 0x96, 0x40, 0x58, 0x27, 0xcf, 0xef, 0xb9, 0x55, 0x29, 0xda, 0x5d, 0x37, 0x9b, 0x15, 0x45, 0x58, 0x2f, 0x3d, 0x0a, 0x42, 0x35, 0x64, 0xa6, 0x10, 0x36, 0xb3, 0xf4, 0x25, 0x01, 0x84, 0x4a, 0xd0, 0xbb, 0x4a, 0x06, 0x12, 0x58, 0xef, 0x6a, 0x20, 0x7f, 0x9e, 0xbd, 0x31, 0xb3, 0x56, 0x20, 0x3f, 0x47, 0x9e, 0x4c, 0xb9, 0xfe, 0xb9, 0x40, 0x7e, 0x9e, 0xfc, 0xc8, 0x39, 0xcf, 0xe4, 0xe7, 0x03, 0xf9, 0x05, 0xf2, 0x01, 0x80, 0x8f, 0x7e, 0x21, 0x90, 0x5f, 0x24, 0x3f, 0x95, 0x4f, 0x30, 0xf9, 0xc5, 0xd2, 0x65, 0x10, 0x1a, 0x11, 0xa3, 0x92, 0xc7, 0x1a, 0x35, 0xc9, 0x8d, 0x62, 0x2e, 0x7d, 0x11, 0x52, 0x0d, 0xcb, 0xde, 0x3e, 0x31, 0x5a, 0xfc, 0xb5, 0xbb, 0x8b, 0x63, 0x5f, 0xbc, 0xbb, 0x38, 0xf6, 0xb5, 0xbb, 0x8b, 0x63, 0x84, 0x69, 0x1d, 0x52, 0x75, 0xb3, 0x79, 0xfc, 0x0a, 0x2f, 0xf5, 0x56, 0x78, 0xd0, 0xf3, 0xa1, 0x45, 0xbe, 0x4a, 0x78, 0xd6, 0xb0, 0x3e, 0x5f, 0xe7, 0xa1, 0x2b, 0x55, 0x19, 0x61, 0x2d, 0x7f, 0x81, 0x70, 0x55, 0x8e, 0x5b, 0xce, 0x0f, 0xbc, 0x90, 0xa3, 0x2e, 0xcc, 0x05, 0x32, 0x7e, 0xa3, 0x6f, 0xfc, 0xec, 0xd0, 0xf1, 0x43, 0x5e, 0x2f, 0x6d, 0xc0, 0x04, 0xc6, 0x85, 0x17, 0x66, 0x44, 0xa8, 0x9c, 0x0f, 0x2f, 0xcc, 0xda, 0xb9, 0xb7, 0xee, 0x2d, 0x8c, 0xbd, 0x7d, 0x6f, 0x61, 0xec, 0x9f, 0xee, 0x2d, 0x8c, 0xbd, 0x73, 0x6f, 0x41, 0xf8, 0xd1, 0xbd, 0x05, 0xe1, 0xff, 0xee, 0x2d, 0x08, 0x77, 0xee, 0x2f, 0x08, 0xdf, 0xb8, 0xbf, 0x20, 0x7c, 0xfb, 0xfe, 0x82, 0xf0, 0xfd, 0xfb, 0x0b, 0xc2, 0x5b, 0xf7, 0x17, 0x84, 0xb7, 0xef, 0x2f, 0x08, 0xef, 0xdc, 0x5f, 0x10, 0xfe, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x9f, 0xd0, 0x73, 0xa2, 0x33, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *A) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*A) if !ok { that2, ok := that.(A) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *A") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *A but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *A but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.B) != len(that1.B) { return fmt.Errorf("B this(%v) Not Equal that(%v)", len(this.B), len(that1.B)) } for i := range this.B { if !this.B[i].Equal(that1.B[i]) { return fmt.Errorf("B this[%v](%v) Not Equal that[%v](%v)", i, this.B[i], i, that1.B[i]) } } return nil } func (this *A) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*A) if !ok { that2, ok := that.(A) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if len(this.B) != len(that1.B) { return false } for i := range this.B { if !this.B[i].Equal(that1.B[i]) { return false } } return true } func (this *B) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*B) if !ok { that2, ok := that.(B) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *B") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *B but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *B but is not nil && this == nil") } if !this.C.Equal(that1.C) { return fmt.Errorf("C this(%v) Not Equal that(%v)", this.C, that1.C) } if !this.D.Equal(that1.D) { return fmt.Errorf("D this(%v) Not Equal that(%v)", this.D, that1.D) } if !this.F.Equal(that1.F) { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *B) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*B) if !ok { that2, ok := that.(B) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.C.Equal(that1.C) { return false } if !this.D.Equal(that1.D) { return false } if !this.F.Equal(that1.F) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *D) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*D) if !ok { that2, ok := that.(D) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *D") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *D but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *D but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *D) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*D) if !ok { that2, ok := that.(D) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *C) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*C) if !ok { that2, ok := that.(C) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *C") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *C but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *C but is not nil && this == nil") } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", *this.Field4, *that1.Field4) } } else if this.Field4 != nil { return fmt.Errorf("this.Field4 == nil && that.Field4 != nil") } else if that1.Field4 != nil { return fmt.Errorf("Field4 this(%v) Not Equal that(%v)", this.Field4, that1.Field4) } if len(this.Field5) != len(that1.Field5) { return fmt.Errorf("Field5 this(%v) Not Equal that(%v)", len(this.Field5), len(that1.Field5)) } for i := range this.Field5 { if !bytes.Equal(this.Field5[i], that1.Field5[i]) { return fmt.Errorf("Field5 this[%v](%v) Not Equal that[%v](%v)", i, this.Field5[i], i, that1.Field5[i]) } } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *C) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*C) if !ok { that2, ok := that.(C) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field4 != nil && that1.Field4 != nil { if *this.Field4 != *that1.Field4 { return false } } else if this.Field4 != nil { return false } else if that1.Field4 != nil { return false } if len(this.Field5) != len(that1.Field5) { return false } for i := range this.Field5 { if !bytes.Equal(this.Field5[i], that1.Field5[i]) { return false } } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *U) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*U) if !ok { that2, ok := that.(U) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *U") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *U but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *U but is not nil && this == nil") } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *U) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*U) if !ok { that2, ok := that.(U) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } return true } func (this *UnoM) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*UnoM) if !ok { that2, ok := that.(UnoM) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *UnoM") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *UnoM but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *UnoM but is not nil && this == nil") } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } return nil } func (this *UnoM) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UnoM) if !ok { that2, ok := that.(UnoM) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } return true } func (this *OldA) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OldA) if !ok { that2, ok := that.(OldA) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OldA") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OldA but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OldA but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.B) != len(that1.B) { return fmt.Errorf("B this(%v) Not Equal that(%v)", len(this.B), len(that1.B)) } for i := range this.B { if !this.B[i].Equal(that1.B[i]) { return fmt.Errorf("B this[%v](%v) Not Equal that[%v](%v)", i, this.B[i], i, that1.B[i]) } } return nil } func (this *OldA) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OldA) if !ok { that2, ok := that.(OldA) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if len(this.B) != len(that1.B) { return false } for i := range this.B { if !this.B[i].Equal(that1.B[i]) { return false } } return true } func (this *OldB) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OldB) if !ok { that2, ok := that.(OldB) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OldB") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OldB but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OldB but is not nil && this == nil") } if !this.C.Equal(that1.C) { return fmt.Errorf("C this(%v) Not Equal that(%v)", this.C, that1.C) } if !this.F.Equal(that1.F) { return fmt.Errorf("F this(%v) Not Equal that(%v)", this.F, that1.F) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OldB) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OldB) if !ok { that2, ok := that.(OldB) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.C.Equal(that1.C) { return false } if !this.F.Equal(that1.F) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OldC) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OldC) if !ok { that2, ok := that.(OldC) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OldC") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OldC but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OldC but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", *this.Field3, *that1.Field3) } } else if this.Field3 != nil { return fmt.Errorf("this.Field3 == nil && that.Field3 != nil") } else if that1.Field3 != nil { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", this.Field3, that1.Field3) } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", *this.Field6, *that1.Field6) } } else if this.Field6 != nil { return fmt.Errorf("this.Field6 == nil && that.Field6 != nil") } else if that1.Field6 != nil { return fmt.Errorf("Field6 this(%v) Not Equal that(%v)", this.Field6, that1.Field6) } if len(this.Field7) != len(that1.Field7) { return fmt.Errorf("Field7 this(%v) Not Equal that(%v)", len(this.Field7), len(that1.Field7)) } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return fmt.Errorf("Field7 this[%v](%v) Not Equal that[%v](%v)", i, this.Field7[i], i, that1.Field7[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OldC) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OldC) if !ok { that2, ok := that.(OldC) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if this.Field3 != nil && that1.Field3 != nil { if *this.Field3 != *that1.Field3 { return false } } else if this.Field3 != nil { return false } else if that1.Field3 != nil { return false } if this.Field6 != nil && that1.Field6 != nil { if *this.Field6 != *that1.Field6 { return false } } else if this.Field6 != nil { return false } else if that1.Field6 != nil { return false } if len(this.Field7) != len(that1.Field7) { return false } for i := range this.Field7 { if this.Field7[i] != that1.Field7[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OldU) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OldU) if !ok { that2, ok := that.(OldU) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OldU") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OldU but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OldU but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OldU) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OldU) if !ok { that2, ok := that.(OldU) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OldUnoM) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OldUnoM) if !ok { that2, ok := that.(OldUnoM) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OldUnoM") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OldUnoM but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OldUnoM but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OldUnoM) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OldUnoM) if !ok { that2, ok := that.(OldUnoM) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *A) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unrecognized.A{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognized(this.Field1, "int64")+",\n") } if this.B != nil { s = append(s, "B: "+fmt.Sprintf("%#v", this.B)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *B) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&unrecognized.B{") if this.C != nil { s = append(s, "C: "+fmt.Sprintf("%#v", this.C)+",\n") } if this.D != nil { s = append(s, "D: "+fmt.Sprintf("%#v", this.D)+",\n") } if this.F != nil { s = append(s, "F: "+fmt.Sprintf("%#v", this.F)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *D) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&unrecognized.D{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognized(this.Field1, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *C) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 10) s = append(s, "&unrecognized.C{") if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringUnrecognized(this.Field2, "float64")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringUnrecognized(this.Field3, "string")+",\n") } if this.Field4 != nil { s = append(s, "Field4: "+valueToGoStringUnrecognized(this.Field4, "float64")+",\n") } if this.Field5 != nil { s = append(s, "Field5: "+fmt.Sprintf("%#v", this.Field5)+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringUnrecognized(this.Field6, "int64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *U) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unrecognized.U{") if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringUnrecognized(this.Field3, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *UnoM) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unrecognized.UnoM{") if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringUnrecognized(this.Field3, "uint32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OldA) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unrecognized.OldA{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognized(this.Field1, "int64")+",\n") } if this.B != nil { s = append(s, "B: "+fmt.Sprintf("%#v", this.B)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OldB) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unrecognized.OldB{") if this.C != nil { s = append(s, "C: "+fmt.Sprintf("%#v", this.C)+",\n") } if this.F != nil { s = append(s, "F: "+fmt.Sprintf("%#v", this.F)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OldC) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 9) s = append(s, "&unrecognized.OldC{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognized(this.Field1, "int64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringUnrecognized(this.Field2, "float64")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+valueToGoStringUnrecognized(this.Field3, "string")+",\n") } if this.Field6 != nil { s = append(s, "Field6: "+valueToGoStringUnrecognized(this.Field6, "int64")+",\n") } if this.Field7 != nil { s = append(s, "Field7: "+fmt.Sprintf("%#v", this.Field7)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OldU) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unrecognized.OldU{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognized(this.Field1, "string")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OldUnoM) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unrecognized.OldUnoM{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognized(this.Field1, "string")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringUnrecognized(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *A) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *A) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.B) > 0 { for _, msg := range m.B { dAtA[i] = 0xa i++ i = encodeVarintUnrecognized(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.Field1 != nil { dAtA[i] = 0x10 i++ i = encodeVarintUnrecognized(dAtA, i, uint64(*m.Field1)) } return i, nil } func (m *B) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *B) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.C != nil { dAtA[i] = 0xa i++ i = encodeVarintUnrecognized(dAtA, i, uint64(m.C.Size())) n1, err := m.C.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } if m.D != nil { dAtA[i] = 0x12 i++ i = encodeVarintUnrecognized(dAtA, i, uint64(m.D.Size())) n2, err := m.D.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } if m.F != nil { dAtA[i] = 0x2a i++ i = encodeVarintUnrecognized(dAtA, i, uint64(m.F.Size())) n3, err := m.F.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *D) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *D) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintUnrecognized(dAtA, i, uint64(*m.Field1)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *C) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *C) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field2 != nil { dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field2)))) i += 8 } if m.Field3 != nil { dAtA[i] = 0x1a i++ i = encodeVarintUnrecognized(dAtA, i, uint64(len(*m.Field3))) i += copy(dAtA[i:], *m.Field3) } if m.Field4 != nil { dAtA[i] = 0x21 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field4)))) i += 8 } if len(m.Field5) > 0 { for _, b := range m.Field5 { dAtA[i] = 0x2a i++ i = encodeVarintUnrecognized(dAtA, i, uint64(len(b))) i += copy(dAtA[i:], b) } } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintUnrecognized(dAtA, i, uint64(*m.Field6)) } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x3d i++ f4 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f4)) i += 4 } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *U) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *U) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x11 i++ f5 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f5)) i += 8 } } if m.Field3 != nil { dAtA[i] = 0x18 i++ i = encodeVarintUnrecognized(dAtA, i, uint64(*m.Field3)) } return i, nil } func (m *OldA) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OldA) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.B) > 0 { for _, msg := range m.B { dAtA[i] = 0xa i++ i = encodeVarintUnrecognized(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } if m.Field1 != nil { dAtA[i] = 0x10 i++ i = encodeVarintUnrecognized(dAtA, i, uint64(*m.Field1)) } return i, nil } func (m *OldB) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OldB) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.C != nil { dAtA[i] = 0xa i++ i = encodeVarintUnrecognized(dAtA, i, uint64(m.C.Size())) n6, err := m.C.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n6 } if m.F != nil { dAtA[i] = 0x2a i++ i = encodeVarintUnrecognized(dAtA, i, uint64(m.F.Size())) n7, err := m.F.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n7 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *OldC) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OldC) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintUnrecognized(dAtA, i, uint64(*m.Field1)) } if m.Field2 != nil { dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.Field2)))) i += 8 } if m.Field3 != nil { dAtA[i] = 0x1a i++ i = encodeVarintUnrecognized(dAtA, i, uint64(len(*m.Field3))) i += copy(dAtA[i:], *m.Field3) } if m.Field6 != nil { dAtA[i] = 0x30 i++ i = encodeVarintUnrecognized(dAtA, i, uint64(*m.Field6)) } if len(m.Field7) > 0 { for _, num := range m.Field7 { dAtA[i] = 0x3d i++ f8 := math.Float32bits(float32(num)) encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f8)) i += 4 } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *OldU) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *OldU) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0xa i++ i = encodeVarintUnrecognized(dAtA, i, uint64(len(*m.Field1))) i += copy(dAtA[i:], *m.Field1) } if len(m.Field2) > 0 { for _, num := range m.Field2 { dAtA[i] = 0x11 i++ f9 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f9)) i += 8 } } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintUnrecognized(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedA(r randyUnrecognized, easy bool) *A { this := &A{} if r.Intn(10) != 0 { v1 := r.Intn(5) this.B = make([]*B, v1) for i := 0; i < v1; i++ { this.B[i] = NewPopulatedB(r, easy) } } if r.Intn(10) != 0 { v2 := int64(r.Int63()) if r.Intn(2) == 0 { v2 *= -1 } this.Field1 = &v2 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedB(r randyUnrecognized, easy bool) *B { this := &B{} if r.Intn(10) != 0 { this.C = NewPopulatedC(r, easy) } if r.Intn(10) != 0 { this.D = NewPopulatedD(r, easy) } if r.Intn(10) != 0 { this.F = NewPopulatedOldC(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognized(r, 6) } return this } func NewPopulatedD(r randyUnrecognized, easy bool) *D { this := &D{} if r.Intn(10) != 0 { v3 := int64(r.Int63()) if r.Intn(2) == 0 { v3 *= -1 } this.Field1 = &v3 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognized(r, 2) } return this } func NewPopulatedC(r randyUnrecognized, easy bool) *C { this := &C{} if r.Intn(10) != 0 { v4 := float64(r.Float64()) if r.Intn(2) == 0 { v4 *= -1 } this.Field2 = &v4 } if r.Intn(10) != 0 { v5 := string(randStringUnrecognized(r)) this.Field3 = &v5 } if r.Intn(10) != 0 { v6 := float64(r.Float64()) if r.Intn(2) == 0 { v6 *= -1 } this.Field4 = &v6 } if r.Intn(10) != 0 { v7 := r.Intn(10) this.Field5 = make([][]byte, v7) for i := 0; i < v7; i++ { v8 := r.Intn(100) this.Field5[i] = make([]byte, v8) for j := 0; j < v8; j++ { this.Field5[i][j] = byte(r.Intn(256)) } } } if r.Intn(10) != 0 { v9 := int64(r.Int63()) if r.Intn(2) == 0 { v9 *= -1 } this.Field6 = &v9 } if r.Intn(10) != 0 { v10 := r.Intn(10) this.Field7 = make([]float32, v10) for i := 0; i < v10; i++ { this.Field7[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognized(r, 8) } return this } func NewPopulatedU(r randyUnrecognized, easy bool) *U { this := &U{} if r.Intn(10) != 0 { v11 := r.Intn(10) this.Field2 = make([]float64, v11) for i := 0; i < v11; i++ { this.Field2[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v12 := uint32(r.Uint32()) this.Field3 = &v12 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUnoM(r randyUnrecognized, easy bool) *UnoM { this := &UnoM{} if r.Intn(10) != 0 { v13 := r.Intn(10) this.Field2 = make([]float64, v13) for i := 0; i < v13; i++ { this.Field2[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if r.Intn(10) != 0 { v14 := uint32(r.Uint32()) this.Field3 = &v14 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOldA(r randyUnrecognized, easy bool) *OldA { this := &OldA{} if r.Intn(10) != 0 { v15 := r.Intn(5) this.B = make([]*OldB, v15) for i := 0; i < v15; i++ { this.B[i] = NewPopulatedOldB(r, easy) } } if r.Intn(10) != 0 { v16 := int64(r.Int63()) if r.Intn(2) == 0 { v16 *= -1 } this.Field1 = &v16 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedOldB(r randyUnrecognized, easy bool) *OldB { this := &OldB{} if r.Intn(10) != 0 { this.C = NewPopulatedOldC(r, easy) } if r.Intn(10) != 0 { this.F = NewPopulatedOldC(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognized(r, 6) } return this } func NewPopulatedOldC(r randyUnrecognized, easy bool) *OldC { this := &OldC{} if r.Intn(10) != 0 { v17 := int64(r.Int63()) if r.Intn(2) == 0 { v17 *= -1 } this.Field1 = &v17 } if r.Intn(10) != 0 { v18 := float64(r.Float64()) if r.Intn(2) == 0 { v18 *= -1 } this.Field2 = &v18 } if r.Intn(10) != 0 { v19 := string(randStringUnrecognized(r)) this.Field3 = &v19 } if r.Intn(10) != 0 { v20 := int64(r.Int63()) if r.Intn(2) == 0 { v20 *= -1 } this.Field6 = &v20 } if r.Intn(10) != 0 { v21 := r.Intn(10) this.Field7 = make([]float32, v21) for i := 0; i < v21; i++ { this.Field7[i] = float32(r.Float32()) if r.Intn(2) == 0 { this.Field7[i] *= -1 } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognized(r, 8) } return this } func NewPopulatedOldU(r randyUnrecognized, easy bool) *OldU { this := &OldU{} if r.Intn(10) != 0 { v22 := string(randStringUnrecognized(r)) this.Field1 = &v22 } if r.Intn(10) != 0 { v23 := r.Intn(10) this.Field2 = make([]float64, v23) for i := 0; i < v23; i++ { this.Field2[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognized(r, 3) } return this } func NewPopulatedOldUnoM(r randyUnrecognized, easy bool) *OldUnoM { this := &OldUnoM{} if r.Intn(10) != 0 { v24 := string(randStringUnrecognized(r)) this.Field1 = &v24 } if r.Intn(10) != 0 { v25 := r.Intn(10) this.Field2 = make([]float64, v25) for i := 0; i < v25; i++ { this.Field2[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognized(r, 3) } return this } type randyUnrecognized interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneUnrecognized(r randyUnrecognized) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringUnrecognized(r randyUnrecognized) string { v26 := r.Intn(100) tmps := make([]rune, v26) for i := 0; i < v26; i++ { tmps[i] = randUTF8RuneUnrecognized(r) } return string(tmps) } func randUnrecognizedUnrecognized(r randyUnrecognized, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldUnrecognized(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldUnrecognized(dAtA []byte, r randyUnrecognized, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateUnrecognized(dAtA, uint64(key)) v27 := r.Int63() if r.Intn(2) == 0 { v27 *= -1 } dAtA = encodeVarintPopulateUnrecognized(dAtA, uint64(v27)) case 1: dAtA = encodeVarintPopulateUnrecognized(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateUnrecognized(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateUnrecognized(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateUnrecognized(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateUnrecognized(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *A) Size() (n int) { var l int _ = l if len(m.B) > 0 { for _, e := range m.B { l = e.Size() n += 1 + l + sovUnrecognized(uint64(l)) } } if m.Field1 != nil { n += 1 + sovUnrecognized(uint64(*m.Field1)) } return n } func (m *B) Size() (n int) { var l int _ = l if m.C != nil { l = m.C.Size() n += 1 + l + sovUnrecognized(uint64(l)) } if m.D != nil { l = m.D.Size() n += 1 + l + sovUnrecognized(uint64(l)) } if m.F != nil { l = m.F.Size() n += 1 + l + sovUnrecognized(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *D) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovUnrecognized(uint64(*m.Field1)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *C) Size() (n int) { var l int _ = l if m.Field2 != nil { n += 9 } if m.Field3 != nil { l = len(*m.Field3) n += 1 + l + sovUnrecognized(uint64(l)) } if m.Field4 != nil { n += 9 } if len(m.Field5) > 0 { for _, b := range m.Field5 { l = len(b) n += 1 + l + sovUnrecognized(uint64(l)) } } if m.Field6 != nil { n += 1 + sovUnrecognized(uint64(*m.Field6)) } if len(m.Field7) > 0 { n += 5 * len(m.Field7) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *U) Size() (n int) { var l int _ = l if len(m.Field2) > 0 { n += 9 * len(m.Field2) } if m.Field3 != nil { n += 1 + sovUnrecognized(uint64(*m.Field3)) } return n } func (m *OldA) Size() (n int) { var l int _ = l if len(m.B) > 0 { for _, e := range m.B { l = e.Size() n += 1 + l + sovUnrecognized(uint64(l)) } } if m.Field1 != nil { n += 1 + sovUnrecognized(uint64(*m.Field1)) } return n } func (m *OldB) Size() (n int) { var l int _ = l if m.C != nil { l = m.C.Size() n += 1 + l + sovUnrecognized(uint64(l)) } if m.F != nil { l = m.F.Size() n += 1 + l + sovUnrecognized(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OldC) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovUnrecognized(uint64(*m.Field1)) } if m.Field2 != nil { n += 9 } if m.Field3 != nil { l = len(*m.Field3) n += 1 + l + sovUnrecognized(uint64(l)) } if m.Field6 != nil { n += 1 + sovUnrecognized(uint64(*m.Field6)) } if len(m.Field7) > 0 { n += 5 * len(m.Field7) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *OldU) Size() (n int) { var l int _ = l if m.Field1 != nil { l = len(*m.Field1) n += 1 + l + sovUnrecognized(uint64(l)) } if len(m.Field2) > 0 { n += 9 * len(m.Field2) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovUnrecognized(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozUnrecognized(x uint64) (n int) { return sovUnrecognized(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *A) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&A{`, `B:` + strings.Replace(fmt.Sprintf("%v", this.B), "B", "B", 1) + `,`, `Field1:` + valueToStringUnrecognized(this.Field1) + `,`, `}`, }, "") return s } func (this *B) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&B{`, `C:` + strings.Replace(fmt.Sprintf("%v", this.C), "C", "C", 1) + `,`, `D:` + strings.Replace(fmt.Sprintf("%v", this.D), "D", "D", 1) + `,`, `F:` + strings.Replace(fmt.Sprintf("%v", this.F), "OldC", "OldC", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *D) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&D{`, `Field1:` + valueToStringUnrecognized(this.Field1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *C) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&C{`, `Field2:` + valueToStringUnrecognized(this.Field2) + `,`, `Field3:` + valueToStringUnrecognized(this.Field3) + `,`, `Field4:` + valueToStringUnrecognized(this.Field4) + `,`, `Field5:` + fmt.Sprintf("%v", this.Field5) + `,`, `Field6:` + valueToStringUnrecognized(this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *U) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&U{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + valueToStringUnrecognized(this.Field3) + `,`, `}`, }, "") return s } func (this *UnoM) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UnoM{`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `Field3:` + valueToStringUnrecognized(this.Field3) + `,`, `}`, }, "") return s } func (this *OldA) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OldA{`, `B:` + strings.Replace(fmt.Sprintf("%v", this.B), "OldB", "OldB", 1) + `,`, `Field1:` + valueToStringUnrecognized(this.Field1) + `,`, `}`, }, "") return s } func (this *OldB) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OldB{`, `C:` + strings.Replace(fmt.Sprintf("%v", this.C), "OldC", "OldC", 1) + `,`, `F:` + strings.Replace(fmt.Sprintf("%v", this.F), "OldC", "OldC", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OldC) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OldC{`, `Field1:` + valueToStringUnrecognized(this.Field1) + `,`, `Field2:` + valueToStringUnrecognized(this.Field2) + `,`, `Field3:` + valueToStringUnrecognized(this.Field3) + `,`, `Field6:` + valueToStringUnrecognized(this.Field6) + `,`, `Field7:` + fmt.Sprintf("%v", this.Field7) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OldU) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OldU{`, `Field1:` + valueToStringUnrecognized(this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OldUnoM) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OldUnoM{`, `Field1:` + valueToStringUnrecognized(this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringUnrecognized(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *A) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: A: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: A: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.B = append(m.B, &B{}) if err := m.B[len(m.B)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: iNdEx = preIndex skippy, err := skipUnrecognized(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognized } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *B) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: B: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: B: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field C", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.C == nil { m.C = &C{} } if err := m.C.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field D", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.D == nil { m.D = &D{} } if err := m.D.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field F", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.F == nil { m.F = &OldC{} } if err := m.F.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipUnrecognized(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognized } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *D) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: D: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: D: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: iNdEx = preIndex skippy, err := skipUnrecognized(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognized } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *C) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: C: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: C: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 2: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field2 = &v2 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field3 = &s iNdEx = postIndex case 4: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field4", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field4 = &v2 case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field5", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Field5 = append(m.Field5, make([]byte, postIndex-iNdEx)) copy(m.Field5[len(m.Field5)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field7 = append(m.Field7, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field7 = append(m.Field7, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } default: iNdEx = preIndex skippy, err := skipUnrecognized(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognized } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *U) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: U: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: U: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 2: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var v uint32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } m.Field3 = &v default: iNdEx = preIndex skippy, err := skipUnrecognized(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognized } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OldA) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OldA: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OldA: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.B = append(m.B, &OldB{}) if err := m.B[len(m.B)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v default: iNdEx = preIndex skippy, err := skipUnrecognized(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognized } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OldB) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OldB: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OldB: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field C", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.C == nil { m.C = &OldC{} } if err := m.C.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field F", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.F == nil { m.F = &OldC{} } if err := m.F.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipUnrecognized(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognized } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OldC) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OldC: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OldC: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 2: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field2 = &v2 case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field3 = &s iNdEx = postIndex case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field6", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field6 = &v case 7: if wireType == 5 { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field7 = append(m.Field7, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 v2 := float32(math.Float32frombits(v)) m.Field7 = append(m.Field7, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field7", wireType) } default: iNdEx = preIndex skippy, err := skipUnrecognized(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognized } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *OldU) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: OldU: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: OldU: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Field1 = &s iNdEx = postIndex case 2: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field2 = append(m.Field2, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognized } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthUnrecognized } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field2 = append(m.Field2, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field2", wireType) } default: iNdEx = preIndex skippy, err := skipUnrecognized(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognized } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipUnrecognized(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnrecognized } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnrecognized } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnrecognized } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthUnrecognized } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnrecognized } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipUnrecognized(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthUnrecognized = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowUnrecognized = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("unrecognized.proto", fileDescriptorUnrecognized) } var fileDescriptorUnrecognized = []byte{ // 414 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x51, 0xbd, 0x4e, 0xc2, 0x50, 0x18, 0xed, 0x47, 0x0b, 0x84, 0x2b, 0x46, 0xd3, 0xc1, 0xdc, 0x68, 0xbc, 0x6d, 0x3a, 0x75, 0x11, 0x22, 0xbf, 0x91, 0x49, 0xda, 0xa6, 0x1a, 0x13, 0x43, 0xd2, 0x84, 0x17, 0x80, 0x62, 0x25, 0x41, 0x6a, 0x08, 0x2c, 0x0e, 0xc6, 0xd1, 0xd1, 0xc4, 0x17, 0xb0, 0x9b, 0xa3, 0xa3, 0x8f, 0xc0, 0xc8, 0xe8, 0x48, 0xfb, 0x04, 0x8e, 0x8e, 0xa6, 0xd7, 0xd2, 0x5c, 0x04, 0x92, 0xea, 0x76, 0xbf, 0x73, 0xee, 0x77, 0xce, 0xc9, 0x77, 0x90, 0x38, 0x19, 0x8e, 0x7a, 0x5d, 0xd7, 0x19, 0xf6, 0xef, 0x7a, 0x76, 0xe1, 0x76, 0xe4, 0x8e, 0x5d, 0x31, 0xcf, 0x62, 0xfb, 0x47, 0x4e, 0x7f, 0x7c, 0x3d, 0xe9, 0x14, 0xba, 0xee, 0x4d, 0xd1, 0x71, 0x1d, 0xb7, 0x48, 0x3f, 0x75, 0x26, 0x57, 0x74, 0xa2, 0x03, 0x7d, 0xfd, 0x2c, 0x2b, 0xa7, 0x08, 0x9a, 0xe2, 0x21, 0x02, 0x0d, 0x83, 0xcc, 0xab, 0x5b, 0xa5, 0x9d, 0xc2, 0x92, 0x83, 0x66, 0x81, 0x26, 0xee, 0xa1, 0x8c, 0xd9, 0xef, 0x0d, 0xec, 0x63, 0x9c, 0x92, 0x41, 0xe5, 0xad, 0x68, 0x6a, 0x08, 0x33, 0x4f, 0xe2, 0x94, 0x2e, 0x02, 0x2d, 0x54, 0xd0, 0x31, 0xc8, 0xb0, 0xaa, 0xa0, 0x5b, 0xa0, 0x87, 0xb4, 0x41, 0x97, 0x57, 0x68, 0xc3, 0x02, 0x43, 0x94, 0x11, 0x98, 0x38, 0x4d, 0x69, 0x71, 0x99, 0x6e, 0x0d, 0x6c, 0xdd, 0x02, 0x53, 0x39, 0x40, 0x60, 0x30, 0x39, 0x80, 0xcd, 0xa1, 0x3c, 0x03, 0x02, 0x3d, 0x66, 0x4b, 0xd4, 0x08, 0x22, 0xb6, 0x14, 0xe3, 0x65, 0xcc, 0xcb, 0xa0, 0xe6, 0x22, 0xbc, 0x1c, 0xe3, 0x15, 0x2c, 0x30, 0xff, 0x2b, 0x31, 0x5e, 0xc5, 0x69, 0x99, 0x57, 0xf3, 0x11, 0x5e, 0x8d, 0xf1, 0x1a, 0xce, 0x30, 0xee, 0xb5, 0x18, 0xaf, 0xe3, 0xac, 0xcc, 0xab, 0xa9, 0x08, 0xaf, 0x2b, 0x27, 0x08, 0xda, 0x4b, 0xa1, 0xf8, 0x8d, 0xa1, 0xb6, 0x17, 0xa1, 0xa2, 0x93, 0x9e, 0x23, 0xa1, 0x3d, 0x74, 0x2f, 0xff, 0xbc, 0xbd, 0xfb, 0xe8, 0x49, 0xdc, 0x93, 0x27, 0x71, 0x2f, 0x9e, 0xc4, 0x51, 0x25, 0x13, 0x09, 0xad, 0x81, 0xdd, 0x0c, 0x2f, 0xbc, 0x68, 0x78, 0xf5, 0xc2, 0x09, 0x4a, 0xbe, 0xa0, 0x3a, 0x5a, 0xa8, 0xb3, 0xe8, 0x79, 0x6d, 0x53, 0x7a, 0x82, 0x2e, 0xef, 0xa9, 0x96, 0xbe, 0xa9, 0xce, 0x7f, 0x17, 0x99, 0xb4, 0x98, 0x1a, 0xf5, 0x6f, 0xff, 0xf2, 0xcf, 0xad, 0xf5, 0x67, 0xae, 0xae, 0x9c, 0xa1, 0x6c, 0xb8, 0xc7, 0x16, 0x93, 0x70, 0xb5, 0x91, 0x67, 0x8b, 0xd1, 0x2a, 0x53, 0x9f, 0x70, 0x33, 0x9f, 0x70, 0x1f, 0x3e, 0xe1, 0xe6, 0x3e, 0x81, 0x4f, 0x9f, 0xc0, 0x97, 0x4f, 0xe0, 0x21, 0x20, 0xf0, 0x1a, 0x10, 0x78, 0x0b, 0x08, 0xbc, 0x07, 0x04, 0xa6, 0x01, 0x81, 0x59, 0x40, 0x60, 0x1e, 0x10, 0xf8, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x75, 0x16, 0xec, 0x6e, 0xfb, 0x03, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/unrecognized/unrecognized.proto000066400000000000000000000075631317075173200246140ustar00rootroot00000000000000// 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 unrecognized; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; option (gogoproto.unmarshaler_all) = true; option (gogoproto.marshaler_all) = true; option (gogoproto.sizer_all) = true; message A { option (gogoproto.goproto_unrecognized) = false; optional int64 Field1 = 2; repeated B B = 1; } message B { optional C C = 1; optional D D = 2; optional OldC F = 5; } message D { optional int64 Field1 = 1; } message C { optional double Field2 = 2; optional string Field3 = 3; optional double Field4 = 4; repeated bytes Field5 = 5; optional int64 Field6 = 6; repeated float Field7 = 7; } message U { // unserializing U as OldU must leave Field1 unset option (gogoproto.goproto_unrecognized) = false; repeated double Field2 = 2; optional uint32 Field3 = 3; } message UnoM { // disable marshal/unmarshal generation here // to check that reflection based code handles missing XXX_unrecognized field coorectly option (gogoproto.sizer) = false; option (gogoproto.marshaler) = false; option (gogoproto.unmarshaler) = false; // unserializing U as OldU must leave Field1 unset option (gogoproto.goproto_unrecognized) = false; repeated double Field2 = 2; optional uint32 Field3 = 3; } message OldA { // OldA == A, so removing unrecognized should not affect anything, tests must pass option (gogoproto.goproto_unrecognized) = false; optional int64 Field1 = 2; repeated OldB B = 1; } message OldB { optional OldC C = 1; optional OldC F = 5; } message OldC { optional int64 Field1 = 1; optional double Field2 = 2; optional string Field3 = 3; optional int64 Field6 = 6; repeated float Field7 = 7; } message OldU { optional string Field1 = 1; repeated double Field2 = 2; } message OldUnoM { // disable marshal/unmarshal generation here // to check that reflection based code handles missing XXX_unrecognized field coorectly option (gogoproto.sizer) = false; option (gogoproto.marshaler) = false; option (gogoproto.unmarshaler) = false; optional string Field1 = 1; repeated double Field2 = 2; } golang-gogoprotobuf-0.5/test/unrecognized/unrecognizedpb_test.go000066400000000000000000001563611317075173200254400ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: unrecognized.proto /* Package unrecognized is a generated protocol buffer package. It is generated from these files: unrecognized.proto It has these top-level messages: A B D C U UnoM OldA OldB OldC OldU OldUnoM */ package unrecognized import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestAProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &B{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestBMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &B{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedD(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &D{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestDMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedD(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &D{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &C{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestCMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &C{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &U{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestUMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &U{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnoMProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnoM(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnoM{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOldAProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldA{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOldAMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldA(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldA{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldBProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldB(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldB{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOldBMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldB(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldB{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldCProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldC(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldC{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOldCMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldC(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldC{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldUProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldU(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldU{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOldUMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldU(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldU{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldUnoMProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldUnoM(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldUnoM{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &A{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestBJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &B{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestDJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedD(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &D{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestCJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &C{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &U{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestUnoMJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnoM(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &UnoM{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOldAJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldA(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldA{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOldBJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldB(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldB{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOldCJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldC(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldC{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOldUJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldU(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldU{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOldUnoMJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldUnoM(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldUnoM{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &A{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &A{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &B{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestBProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &B{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedD(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &D{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestDProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedD(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &D{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &C{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestCProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &C{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &U{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &U{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnoMProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnoM(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &UnoM{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnoMProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedUnoM(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &UnoM{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldAProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldA(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OldA{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldAProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldA(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OldA{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldBProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldB(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OldB{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldBProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldB(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OldB{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldCProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldC(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OldC{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldCProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldC(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OldC{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldUProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldU(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OldU{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldUProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldU(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OldU{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldUnoMProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldUnoM(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OldUnoM{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldUnoMProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldUnoM(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OldUnoM{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedDescription(t *testing.T) { UnrecognizedDescription() } func TestAVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestBVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedB(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &B{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestDVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedD(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &D{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestCVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedC(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &C{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedU(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &U{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestUnoMVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnoM(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &UnoM{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOldAVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OldA{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOldBVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldB(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OldB{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOldCVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldC(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OldC{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOldUVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldU(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OldU{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOldUnoMVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldUnoM(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OldUnoM{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestBGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedB(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestDGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedD(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestCGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedC(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedU(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestUnoMGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnoM(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOldAGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldA(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOldBGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldB(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOldCGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldC(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOldUGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldU(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOldUnoMGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldUnoM(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestASize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestBSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedB(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestDSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedD(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestCSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedC(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestUSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedU(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestOldASize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldA(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestOldBSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldB(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestOldCSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldC(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestOldUSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldU(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestAStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestBStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedB(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestDStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedD(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestCStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedC(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedU(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestUnoMStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedUnoM(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOldAStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldA(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOldBStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldB(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOldCStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldC(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOldUStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldU(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOldUnoMStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldUnoM(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/unrecognizedgroup/000077500000000000000000000000001317075173200220755ustar00rootroot00000000000000golang-gogoprotobuf-0.5/test/unrecognizedgroup/Makefile000066400000000000000000000027671317075173200235510ustar00rootroot00000000000000# 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: (protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. unrecognizedgroup.proto) golang-gogoprotobuf-0.5/test/unrecognizedgroup/oldnew_test.go000066400000000000000000000073541317075173200247640ustar00rootroot00000000000000// 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. package unrecognizedgroup import ( "github.com/gogo/protobuf/proto" math_rand "math/rand" "testing" time "time" ) func TestNewOld(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) newer := NewPopulatedNewNoGroup(popr, true) data1, err := proto.Marshal(newer) if err != nil { panic(err) } older := &OldWithGroup{} if err = proto.Unmarshal(data1, older); err != nil { panic(err) } data2, err := proto.Marshal(older) if err != nil { panic(err) } bluer := &NewNoGroup{} if err := proto.Unmarshal(data2, bluer); err != nil { panic(err) } if err := newer.VerboseEqual(bluer); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", newer, bluer, err) } } func TestOldNew(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) older := NewPopulatedOldWithGroup(popr, true) data1, err := proto.Marshal(older) if err != nil { panic(err) } newer := &NewNoGroup{} if err = proto.Unmarshal(data1, newer); err != nil { panic(err) } data2, err := proto.Marshal(newer) if err != nil { panic(err) } bluer := &OldWithGroup{} if err := proto.Unmarshal(data2, bluer); err != nil { panic(err) } if err := older.VerboseEqual(bluer); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", older, bluer, err) } } func TestOldNewOldNew(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) older := NewPopulatedOldWithGroup(popr, true) data1, err := proto.Marshal(older) if err != nil { panic(err) } newer := &NewNoGroup{} if err = proto.Unmarshal(data1, newer); err != nil { panic(err) } data2, err := proto.Marshal(newer) if err != nil { panic(err) } bluer := &OldWithGroup{} if err = proto.Unmarshal(data2, bluer); err != nil { panic(err) } if err = older.VerboseEqual(bluer); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", older, bluer, err) } data3, err := proto.Marshal(bluer) if err != nil { panic(err) } purple := &NewNoGroup{} if err = proto.Unmarshal(data3, purple); err != nil { panic(err) } data4, err := proto.Marshal(purple) if err != nil { panic(err) } magenta := &OldWithGroup{} if err := proto.Unmarshal(data4, magenta); err != nil { panic(err) } if err := older.VerboseEqual(magenta); err != nil { t.Fatalf("%#v !VerboseProto %#v, since %v", older, magenta, err) } } golang-gogoprotobuf-0.5/test/unrecognizedgroup/unrecognizedgroup.pb.go000066400000000000000000001741671317075173200266150ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: unrecognizedgroup.proto /* Package unrecognizedgroup is a generated protocol buffer package. It is generated from these files: unrecognizedgroup.proto It has these top-level messages: NewNoGroup A OldWithGroup */ package unrecognizedgroup import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import compress_gzip "compress/gzip" import bytes "bytes" import io_ioutil "io/ioutil" import strings "strings" import reflect "reflect" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type NewNoGroup struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` Field3 []float64 `protobuf:"fixed64,3,rep,name=Field3" json:"Field3,omitempty"` A *A `protobuf:"bytes,5,opt,name=A" json:"A,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *NewNoGroup) Reset() { *m = NewNoGroup{} } func (*NewNoGroup) ProtoMessage() {} func (*NewNoGroup) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognizedgroup, []int{0} } type A struct { AField *int64 `protobuf:"varint,1,opt,name=AField" json:"AField,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *A) Reset() { *m = A{} } func (*A) ProtoMessage() {} func (*A) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognizedgroup, []int{1} } type OldWithGroup struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` Group1 *OldWithGroup_Group1 `protobuf:"group,2,opt,name=Group1,json=group1" json:"group1,omitempty"` Field3 []float64 `protobuf:"fixed64,3,rep,name=Field3" json:"Field3,omitempty"` Group2 *OldWithGroup_Group2 `protobuf:"group,4,opt,name=Group2,json=group2" json:"group2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldWithGroup) Reset() { *m = OldWithGroup{} } func (*OldWithGroup) ProtoMessage() {} func (*OldWithGroup) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognizedgroup, []int{2} } type OldWithGroup_Group1 struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` Field2 *int32 `protobuf:"varint,2,opt,name=Field2" json:"Field2,omitempty"` Field3 []float64 `protobuf:"fixed64,3,rep,name=Field3" json:"Field3,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldWithGroup_Group1) Reset() { *m = OldWithGroup_Group1{} } func (*OldWithGroup_Group1) ProtoMessage() {} func (*OldWithGroup_Group1) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognizedgroup, []int{2, 0} } type OldWithGroup_Group2 struct { Field1 *int64 `protobuf:"varint,1,opt,name=Field1" json:"Field1,omitempty"` Field2 []float64 `protobuf:"fixed64,2,rep,name=Field2" json:"Field2,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *OldWithGroup_Group2) Reset() { *m = OldWithGroup_Group2{} } func (*OldWithGroup_Group2) ProtoMessage() {} func (*OldWithGroup_Group2) Descriptor() ([]byte, []int) { return fileDescriptorUnrecognizedgroup, []int{2, 1} } func init() { proto.RegisterType((*NewNoGroup)(nil), "unrecognizedgroup.NewNoGroup") proto.RegisterType((*A)(nil), "unrecognizedgroup.A") proto.RegisterType((*OldWithGroup)(nil), "unrecognizedgroup.OldWithGroup") proto.RegisterType((*OldWithGroup_Group1)(nil), "unrecognizedgroup.OldWithGroup.Group1") proto.RegisterType((*OldWithGroup_Group2)(nil), "unrecognizedgroup.OldWithGroup.Group2") } func (this *NewNoGroup) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedgroupDescription() } func (this *A) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedgroupDescription() } func (this *OldWithGroup) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedgroupDescription() } func (this *OldWithGroup_Group1) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedgroupDescription() } func (this *OldWithGroup_Group2) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { return UnrecognizedgroupDescription() } func UnrecognizedgroupDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ // 3830 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5d, 0x70, 0x1b, 0xd7, 0x75, 0xd6, 0xe2, 0x8f, 0xc0, 0x01, 0x08, 0x2e, 0x97, 0x34, 0x05, 0xd1, 0x31, 0x45, 0xc1, 0x7f, 0x94, 0xdd, 0x50, 0x31, 0x65, 0xc9, 0xf2, 0xaa, 0xb1, 0x0b, 0x82, 0x10, 0x03, 0x95, 0x24, 0x90, 0x05, 0x19, 0xcb, 0xe9, 0xc3, 0xce, 0x72, 0x71, 0x01, 0xae, 0xb4, 0xd8, 0xdd, 0xec, 0x2e, 0x24, 0x53, 0xd3, 0x07, 0x75, 0xdc, 0xbf, 0x4c, 0xa7, 0x6d, 0xfa, 0x33, 0xd3, 0xc4, 0x75, 0xdc, 0x38, 0x33, 0xad, 0xd3, 0xa4, 0x3f, 0x49, 0xd3, 0xa6, 0x69, 0x9f, 0xfa, 0x92, 0x36, 0xd3, 0x87, 0x4e, 0xf3, 0xd6, 0x87, 0x3e, 0x44, 0x1e, 0xcf, 0xf4, 0xcf, 0x69, 0xd3, 0xc6, 0x0f, 0x9d, 0xd1, 0x4b, 0xe6, 0xfe, 0x2d, 0x76, 0x01, 0x90, 0x0b, 0x66, 0xc6, 0xf6, 0x8b, 0xc4, 0x7b, 0xee, 0xf9, 0xbe, 0x7b, 0xee, 0xb9, 0xe7, 0xde, 0x73, 0xee, 0x5d, 0xc0, 0xd7, 0xae, 0xc0, 0x72, 0xd7, 0xb6, 0xbb, 0x26, 0xba, 0xe0, 0xb8, 0xb6, 0x6f, 0xef, 0xf7, 0x3b, 0x17, 0xda, 0xc8, 0xd3, 0x5d, 0xc3, 0xf1, 0x6d, 0x77, 0x95, 0xc8, 0xa4, 0x19, 0xaa, 0xb1, 0xca, 0x35, 0xca, 0xdb, 0x30, 0x7b, 0xcd, 0x30, 0xd1, 0x46, 0xa0, 0xd8, 0x42, 0xbe, 0x74, 0x05, 0x52, 0x1d, 0xc3, 0x44, 0x25, 0x61, 0x39, 0xb9, 0x92, 0x5f, 0x7b, 0x6c, 0x75, 0x08, 0xb4, 0x1a, 0x45, 0x34, 0xb1, 0x58, 0x21, 0x88, 0xf2, 0x3b, 0x29, 0x98, 0x1b, 0xd3, 0x2b, 0x49, 0x90, 0xb2, 0xb4, 0x1e, 0x66, 0x14, 0x56, 0x72, 0x0a, 0xf9, 0x5b, 0x2a, 0xc1, 0x94, 0xa3, 0xe9, 0xb7, 0xb4, 0x2e, 0x2a, 0x25, 0x88, 0x98, 0x37, 0xa5, 0x25, 0x80, 0x36, 0x72, 0x90, 0xd5, 0x46, 0x96, 0x7e, 0x58, 0x4a, 0x2e, 0x27, 0x57, 0x72, 0x4a, 0x48, 0x22, 0x3d, 0x0d, 0xb3, 0x4e, 0x7f, 0xdf, 0x34, 0x74, 0x35, 0xa4, 0x06, 0xcb, 0xc9, 0x95, 0xb4, 0x22, 0xd2, 0x8e, 0x8d, 0x81, 0xf2, 0x93, 0x30, 0x73, 0x07, 0x69, 0xb7, 0xc2, 0xaa, 0x79, 0xa2, 0x5a, 0xc4, 0xe2, 0x90, 0x62, 0x15, 0x0a, 0x3d, 0xe4, 0x79, 0x5a, 0x17, 0xa9, 0xfe, 0xa1, 0x83, 0x4a, 0x29, 0x32, 0xfb, 0xe5, 0x91, 0xd9, 0x0f, 0xcf, 0x3c, 0xcf, 0x50, 0xbb, 0x87, 0x0e, 0x92, 0x2a, 0x90, 0x43, 0x56, 0xbf, 0x47, 0x19, 0xd2, 0x47, 0xf8, 0xaf, 0x66, 0xf5, 0x7b, 0xc3, 0x2c, 0x59, 0x0c, 0x63, 0x14, 0x53, 0x1e, 0x72, 0x6f, 0x1b, 0x3a, 0x2a, 0x65, 0x08, 0xc1, 0x93, 0x23, 0x04, 0x2d, 0xda, 0x3f, 0xcc, 0xc1, 0x71, 0x52, 0x15, 0x72, 0xe8, 0x15, 0x1f, 0x59, 0x9e, 0x61, 0x5b, 0xa5, 0x29, 0x42, 0xf2, 0xf8, 0x98, 0x55, 0x44, 0x66, 0x7b, 0x98, 0x62, 0x80, 0x93, 0x2e, 0xc3, 0x94, 0xed, 0xf8, 0x86, 0x6d, 0x79, 0xa5, 0xec, 0xb2, 0xb0, 0x92, 0x5f, 0xfb, 0xc8, 0xd8, 0x40, 0x68, 0x50, 0x1d, 0x85, 0x2b, 0x4b, 0x75, 0x10, 0x3d, 0xbb, 0xef, 0xea, 0x48, 0xd5, 0xed, 0x36, 0x52, 0x0d, 0xab, 0x63, 0x97, 0x72, 0x84, 0xe0, 0xec, 0xe8, 0x44, 0x88, 0x62, 0xd5, 0x6e, 0xa3, 0xba, 0xd5, 0xb1, 0x95, 0xa2, 0x17, 0x69, 0x4b, 0x0b, 0x90, 0xf1, 0x0e, 0x2d, 0x5f, 0x7b, 0xa5, 0x54, 0x20, 0x11, 0xc2, 0x5a, 0xe5, 0xbf, 0xc9, 0xc0, 0xcc, 0x24, 0x21, 0x76, 0x15, 0xd2, 0x1d, 0x3c, 0xcb, 0x52, 0xe2, 0x24, 0x3e, 0xa0, 0x98, 0xa8, 0x13, 0x33, 0x3f, 0xa1, 0x13, 0x2b, 0x90, 0xb7, 0x90, 0xe7, 0xa3, 0x36, 0x8d, 0x88, 0xe4, 0x84, 0x31, 0x05, 0x14, 0x34, 0x1a, 0x52, 0xa9, 0x9f, 0x28, 0xa4, 0x6e, 0xc0, 0x4c, 0x60, 0x92, 0xea, 0x6a, 0x56, 0x97, 0xc7, 0xe6, 0x85, 0x38, 0x4b, 0x56, 0x6b, 0x1c, 0xa7, 0x60, 0x98, 0x52, 0x44, 0x91, 0xb6, 0xb4, 0x01, 0x60, 0x5b, 0xc8, 0xee, 0xa8, 0x6d, 0xa4, 0x9b, 0xa5, 0xec, 0x11, 0x5e, 0x6a, 0x60, 0x95, 0x11, 0x2f, 0xd9, 0x54, 0xaa, 0x9b, 0xd2, 0xf3, 0x83, 0x50, 0x9b, 0x3a, 0x22, 0x52, 0xb6, 0xe9, 0x26, 0x1b, 0x89, 0xb6, 0x3d, 0x28, 0xba, 0x08, 0xc7, 0x3d, 0x6a, 0xb3, 0x99, 0xe5, 0x88, 0x11, 0xab, 0xb1, 0x33, 0x53, 0x18, 0x8c, 0x4e, 0x6c, 0xda, 0x0d, 0x37, 0xa5, 0x47, 0x21, 0x10, 0xa8, 0x24, 0xac, 0x80, 0x9c, 0x42, 0x05, 0x2e, 0xdc, 0xd1, 0x7a, 0x68, 0xf1, 0x2e, 0x14, 0xa3, 0xee, 0x91, 0xe6, 0x21, 0xed, 0xf9, 0x9a, 0xeb, 0x93, 0x28, 0x4c, 0x2b, 0xb4, 0x21, 0x89, 0x90, 0x44, 0x56, 0x9b, 0x9c, 0x72, 0x69, 0x05, 0xff, 0x29, 0xfd, 0xcc, 0x60, 0xc2, 0x49, 0x32, 0xe1, 0x27, 0x46, 0x57, 0x34, 0xc2, 0x3c, 0x3c, 0xef, 0xc5, 0xe7, 0x60, 0x3a, 0x32, 0x81, 0x49, 0x87, 0x2e, 0xff, 0x3c, 0x3c, 0x34, 0x96, 0x5a, 0xba, 0x01, 0xf3, 0x7d, 0xcb, 0xb0, 0x7c, 0xe4, 0x3a, 0x2e, 0xc2, 0x11, 0x4b, 0x87, 0x2a, 0xfd, 0xdb, 0xd4, 0x11, 0x31, 0xb7, 0x17, 0xd6, 0xa6, 0x2c, 0xca, 0x5c, 0x7f, 0x54, 0xf8, 0x54, 0x2e, 0xfb, 0xef, 0x53, 0xe2, 0xbd, 0x7b, 0xf7, 0xee, 0x25, 0xca, 0x9f, 0xcf, 0xc0, 0xfc, 0xb8, 0x3d, 0x33, 0x76, 0xfb, 0x2e, 0x40, 0xc6, 0xea, 0xf7, 0xf6, 0x91, 0x4b, 0x9c, 0x94, 0x56, 0x58, 0x4b, 0xaa, 0x40, 0xda, 0xd4, 0xf6, 0x91, 0x59, 0x4a, 0x2d, 0x0b, 0x2b, 0xc5, 0xb5, 0xa7, 0x27, 0xda, 0x95, 0xab, 0x5b, 0x18, 0xa2, 0x50, 0xa4, 0xf4, 0x02, 0xa4, 0xd8, 0x11, 0x8d, 0x19, 0x9e, 0x9a, 0x8c, 0x01, 0xef, 0x25, 0x85, 0xe0, 0xa4, 0x87, 0x21, 0x87, 0xff, 0xa7, 0xb1, 0x91, 0x21, 0x36, 0x67, 0xb1, 0x00, 0xc7, 0x85, 0xb4, 0x08, 0x59, 0xb2, 0x4d, 0xda, 0x88, 0xa7, 0xb6, 0xa0, 0x8d, 0x03, 0xab, 0x8d, 0x3a, 0x5a, 0xdf, 0xf4, 0xd5, 0xdb, 0x9a, 0xd9, 0x47, 0x24, 0xe0, 0x73, 0x4a, 0x81, 0x09, 0x3f, 0x85, 0x65, 0xd2, 0x59, 0xc8, 0xd3, 0x5d, 0x65, 0x58, 0x6d, 0xf4, 0x0a, 0x39, 0x3d, 0xd3, 0x0a, 0xdd, 0x68, 0x75, 0x2c, 0xc1, 0xc3, 0xdf, 0xf4, 0x6c, 0x8b, 0x87, 0x26, 0x19, 0x02, 0x0b, 0xc8, 0xf0, 0xcf, 0x0d, 0x1f, 0xdc, 0x8f, 0x8c, 0x9f, 0xde, 0x70, 0x4c, 0x95, 0xbf, 0x95, 0x80, 0x14, 0x39, 0x2f, 0x66, 0x20, 0xbf, 0xfb, 0x72, 0xb3, 0xa6, 0x6e, 0x34, 0xf6, 0xd6, 0xb7, 0x6a, 0xa2, 0x20, 0x15, 0x01, 0x88, 0xe0, 0xda, 0x56, 0xa3, 0xb2, 0x2b, 0x26, 0x82, 0x76, 0x7d, 0x67, 0xf7, 0xf2, 0xb3, 0x62, 0x32, 0x00, 0xec, 0x51, 0x41, 0x2a, 0xac, 0x70, 0x71, 0x4d, 0x4c, 0x4b, 0x22, 0x14, 0x28, 0x41, 0xfd, 0x46, 0x6d, 0xe3, 0xf2, 0xb3, 0x62, 0x26, 0x2a, 0xb9, 0xb8, 0x26, 0x4e, 0x49, 0xd3, 0x90, 0x23, 0x92, 0xf5, 0x46, 0x63, 0x4b, 0xcc, 0x06, 0x9c, 0xad, 0x5d, 0xa5, 0xbe, 0xb3, 0x29, 0xe6, 0x02, 0xce, 0x4d, 0xa5, 0xb1, 0xd7, 0x14, 0x21, 0x60, 0xd8, 0xae, 0xb5, 0x5a, 0x95, 0xcd, 0x9a, 0x98, 0x0f, 0x34, 0xd6, 0x5f, 0xde, 0xad, 0xb5, 0xc4, 0x42, 0xc4, 0xac, 0x8b, 0x6b, 0xe2, 0x74, 0x30, 0x44, 0x6d, 0x67, 0x6f, 0x5b, 0x2c, 0x4a, 0xb3, 0x30, 0x4d, 0x87, 0xe0, 0x46, 0xcc, 0x0c, 0x89, 0x2e, 0x3f, 0x2b, 0x8a, 0x03, 0x43, 0x28, 0xcb, 0x6c, 0x44, 0x70, 0xf9, 0x59, 0x51, 0x2a, 0x57, 0x21, 0x4d, 0xa2, 0x4b, 0x92, 0xa0, 0xb8, 0x55, 0x59, 0xaf, 0x6d, 0xa9, 0x8d, 0xe6, 0x6e, 0xbd, 0xb1, 0x53, 0xd9, 0x12, 0x85, 0x81, 0x4c, 0xa9, 0x7d, 0x72, 0xaf, 0xae, 0xd4, 0x36, 0xc4, 0x44, 0x58, 0xd6, 0xac, 0x55, 0x76, 0x6b, 0x1b, 0x62, 0xb2, 0xac, 0xc3, 0xfc, 0xb8, 0x73, 0x72, 0xec, 0xce, 0x08, 0x2d, 0x71, 0xe2, 0x88, 0x25, 0x26, 0x5c, 0x23, 0x4b, 0xfc, 0x65, 0x01, 0xe6, 0xc6, 0xe4, 0x8a, 0xb1, 0x83, 0xbc, 0x08, 0x69, 0x1a, 0xa2, 0x34, 0x7b, 0x9e, 0x1f, 0x9b, 0x74, 0x48, 0xc0, 0x8e, 0x64, 0x50, 0x82, 0x0b, 0x57, 0x10, 0xc9, 0x23, 0x2a, 0x08, 0x4c, 0x31, 0x62, 0xe4, 0xab, 0x02, 0x94, 0x8e, 0xe2, 0x8e, 0x39, 0x28, 0x12, 0x91, 0x83, 0xe2, 0xea, 0xb0, 0x01, 0xe7, 0x8e, 0x9e, 0xc3, 0x88, 0x15, 0x6f, 0x09, 0xb0, 0x30, 0xbe, 0xd0, 0x1a, 0x6b, 0xc3, 0x0b, 0x90, 0xe9, 0x21, 0xff, 0xc0, 0xe6, 0xc5, 0xc6, 0x13, 0x63, 0x52, 0x18, 0xee, 0x1e, 0xf6, 0x15, 0x43, 0x85, 0x73, 0x60, 0xf2, 0xa8, 0x6a, 0x89, 0x5a, 0x33, 0x62, 0xe9, 0x67, 0x13, 0xf0, 0xd0, 0x58, 0xf2, 0xb1, 0x86, 0x3e, 0x02, 0x60, 0x58, 0x4e, 0xdf, 0xa7, 0x05, 0x05, 0x3d, 0x9f, 0x72, 0x44, 0x42, 0xf6, 0x3e, 0x3e, 0x7b, 0xfa, 0x7e, 0xd0, 0x9f, 0x24, 0xfd, 0x40, 0x45, 0x44, 0xe1, 0xca, 0xc0, 0xd0, 0x14, 0x31, 0x74, 0xe9, 0x88, 0x99, 0x8e, 0xe4, 0xea, 0x8f, 0x81, 0xa8, 0x9b, 0x06, 0xb2, 0x7c, 0xd5, 0xf3, 0x5d, 0xa4, 0xf5, 0x0c, 0xab, 0x4b, 0x0e, 0xe0, 0xac, 0x9c, 0xee, 0x68, 0xa6, 0x87, 0x94, 0x19, 0xda, 0xdd, 0xe2, 0xbd, 0x18, 0x41, 0x72, 0x9c, 0x1b, 0x42, 0x64, 0x22, 0x08, 0xda, 0x1d, 0x20, 0xca, 0xdf, 0xcc, 0x42, 0x3e, 0x54, 0x96, 0x4a, 0xe7, 0xa0, 0x70, 0x53, 0xbb, 0xad, 0xa9, 0xfc, 0xaa, 0x41, 0x3d, 0x91, 0xc7, 0xb2, 0x26, 0xbb, 0x6e, 0x7c, 0x0c, 0xe6, 0x89, 0x8a, 0xdd, 0xf7, 0x91, 0xab, 0xea, 0xa6, 0xe6, 0x79, 0xc4, 0x69, 0x59, 0xa2, 0x2a, 0xe1, 0xbe, 0x06, 0xee, 0xaa, 0xf2, 0x1e, 0xe9, 0x12, 0xcc, 0x11, 0x44, 0xaf, 0x6f, 0xfa, 0x86, 0x63, 0x22, 0x15, 0x5f, 0x7e, 0x3c, 0x72, 0x10, 0x07, 0x96, 0xcd, 0x62, 0x8d, 0x6d, 0xa6, 0x80, 0x2d, 0xf2, 0xa4, 0x0d, 0x78, 0x84, 0xc0, 0xba, 0xc8, 0x42, 0xae, 0xe6, 0x23, 0x15, 0x7d, 0xa6, 0xaf, 0x99, 0x9e, 0xaa, 0x59, 0x6d, 0xf5, 0x40, 0xf3, 0x0e, 0x4a, 0xf3, 0x98, 0x60, 0x3d, 0x51, 0x12, 0x94, 0x33, 0x58, 0x71, 0x93, 0xe9, 0xd5, 0x88, 0x5a, 0xc5, 0x6a, 0x7f, 0x42, 0xf3, 0x0e, 0x24, 0x19, 0x16, 0x08, 0x8b, 0xe7, 0xbb, 0x86, 0xd5, 0x55, 0xf5, 0x03, 0xa4, 0xdf, 0x52, 0xfb, 0x7e, 0xe7, 0x4a, 0xe9, 0xe1, 0xf0, 0xf8, 0xc4, 0xc2, 0x16, 0xd1, 0xa9, 0x62, 0x95, 0x3d, 0xbf, 0x73, 0x45, 0x6a, 0x41, 0x01, 0x2f, 0x46, 0xcf, 0xb8, 0x8b, 0xd4, 0x8e, 0xed, 0x92, 0xcc, 0x52, 0x1c, 0xb3, 0xb3, 0x43, 0x1e, 0x5c, 0x6d, 0x30, 0xc0, 0xb6, 0xdd, 0x46, 0x72, 0xba, 0xd5, 0xac, 0xd5, 0x36, 0x94, 0x3c, 0x67, 0xb9, 0x66, 0xbb, 0x38, 0xa0, 0xba, 0x76, 0xe0, 0xe0, 0x3c, 0x0d, 0xa8, 0xae, 0xcd, 0xdd, 0x7b, 0x09, 0xe6, 0x74, 0x9d, 0xce, 0xd9, 0xd0, 0x55, 0x76, 0x45, 0xf1, 0x4a, 0x62, 0xc4, 0x59, 0xba, 0xbe, 0x49, 0x15, 0x58, 0x8c, 0x7b, 0xd2, 0xf3, 0xf0, 0xd0, 0xc0, 0x59, 0x61, 0xe0, 0xec, 0xc8, 0x2c, 0x87, 0xa1, 0x97, 0x60, 0xce, 0x39, 0x1c, 0x05, 0x4a, 0x91, 0x11, 0x9d, 0xc3, 0x61, 0xd8, 0x73, 0x30, 0xef, 0x1c, 0x38, 0xa3, 0xb8, 0xb9, 0x30, 0x4e, 0x72, 0x0e, 0x9c, 0x61, 0xe0, 0xe3, 0xe4, 0xbe, 0xea, 0x22, 0x5d, 0xf3, 0x51, 0xbb, 0x74, 0x3a, 0xac, 0x1e, 0xea, 0x90, 0x2e, 0x80, 0xa8, 0xeb, 0x2a, 0xb2, 0xb4, 0x7d, 0x13, 0xa9, 0x9a, 0x8b, 0x2c, 0xcd, 0x2b, 0x9d, 0x0d, 0x2b, 0x17, 0x75, 0xbd, 0x46, 0x7a, 0x2b, 0xa4, 0x53, 0x7a, 0x0a, 0x66, 0xed, 0xfd, 0x9b, 0x3a, 0x0d, 0x49, 0xd5, 0x71, 0x51, 0xc7, 0x78, 0xa5, 0xf4, 0x18, 0xf1, 0xef, 0x0c, 0xee, 0x20, 0x01, 0xd9, 0x24, 0x62, 0xe9, 0x3c, 0x88, 0xba, 0x77, 0xa0, 0xb9, 0x0e, 0xa9, 0x09, 0x3c, 0x47, 0xd3, 0x51, 0xe9, 0x71, 0xaa, 0x4a, 0xe5, 0x3b, 0x5c, 0x8c, 0xb7, 0x84, 0x77, 0xc7, 0xe8, 0xf8, 0x9c, 0xf1, 0x49, 0xba, 0x25, 0x88, 0x8c, 0xb1, 0xad, 0x80, 0x88, 0x5d, 0x11, 0x19, 0x78, 0x85, 0xa8, 0x15, 0x9d, 0x03, 0x27, 0x3c, 0xee, 0xa3, 0x30, 0x8d, 0x35, 0x07, 0x83, 0x9e, 0xa7, 0xf5, 0x8c, 0x73, 0x10, 0x1a, 0xf1, 0x7d, 0x2b, 0x2d, 0xcb, 0x32, 0x14, 0xc2, 0xf1, 0x29, 0xe5, 0x80, 0x46, 0xa8, 0x28, 0xe0, 0x5c, 0x5f, 0x6d, 0x6c, 0xe0, 0x2c, 0xfd, 0xe9, 0x9a, 0x98, 0xc0, 0xd5, 0xc2, 0x56, 0x7d, 0xb7, 0xa6, 0x2a, 0x7b, 0x3b, 0xbb, 0xf5, 0xed, 0x9a, 0x98, 0x0c, 0x97, 0xa5, 0xdf, 0x49, 0x40, 0x31, 0x7a, 0xc3, 0x90, 0x7e, 0x1a, 0x4e, 0xf3, 0xe7, 0x00, 0x0f, 0xf9, 0xea, 0x1d, 0xc3, 0x25, 0x5b, 0xa6, 0xa7, 0xd1, 0x0a, 0x3b, 0x58, 0xb4, 0x79, 0xa6, 0xd5, 0x42, 0xfe, 0x4b, 0x86, 0x8b, 0x37, 0x44, 0x4f, 0xf3, 0xa5, 0x2d, 0x38, 0x6b, 0xd9, 0xaa, 0xe7, 0x6b, 0x56, 0x5b, 0x73, 0xdb, 0xea, 0xe0, 0x21, 0x46, 0xd5, 0x74, 0x1d, 0x79, 0x9e, 0x4d, 0x53, 0x55, 0xc0, 0xf2, 0x11, 0xcb, 0x6e, 0x31, 0xe5, 0xc1, 0x19, 0x5e, 0x61, 0xaa, 0x43, 0x01, 0x96, 0x3c, 0x2a, 0xc0, 0x1e, 0x86, 0x5c, 0x4f, 0x73, 0x54, 0x64, 0xf9, 0xee, 0x21, 0xa9, 0x2b, 0xb3, 0x4a, 0xb6, 0xa7, 0x39, 0x35, 0xdc, 0xfe, 0x60, 0xca, 0xfb, 0x7f, 0x4d, 0x42, 0x21, 0x5c, 0x5b, 0xe2, 0x52, 0x5d, 0x27, 0x79, 0x44, 0x20, 0x27, 0xcd, 0xa3, 0xc7, 0x56, 0xa2, 0xab, 0x55, 0x9c, 0x60, 0xe4, 0x0c, 0xad, 0xf8, 0x14, 0x8a, 0xc4, 0xc9, 0x1d, 0x9f, 0x2d, 0x88, 0xde, 0x62, 0xb2, 0x0a, 0x6b, 0x49, 0x9b, 0x90, 0xb9, 0xe9, 0x11, 0xee, 0x0c, 0xe1, 0x7e, 0xec, 0x78, 0xee, 0xeb, 0x2d, 0x42, 0x9e, 0xbb, 0xde, 0x52, 0x77, 0x1a, 0xca, 0x76, 0x65, 0x4b, 0x61, 0x70, 0xe9, 0x0c, 0xa4, 0x4c, 0xed, 0xee, 0x61, 0x34, 0x15, 0x11, 0xd1, 0xa4, 0x8e, 0x3f, 0x03, 0xa9, 0x3b, 0x48, 0xbb, 0x15, 0x4d, 0x00, 0x44, 0xf4, 0x3e, 0x86, 0xfe, 0x05, 0x48, 0x13, 0x7f, 0x49, 0x00, 0xcc, 0x63, 0xe2, 0x29, 0x29, 0x0b, 0xa9, 0x6a, 0x43, 0xc1, 0xe1, 0x2f, 0x42, 0x81, 0x4a, 0xd5, 0x66, 0xbd, 0x56, 0xad, 0x89, 0x89, 0xf2, 0x25, 0xc8, 0x50, 0x27, 0xe0, 0xad, 0x11, 0xb8, 0x41, 0x3c, 0xc5, 0x9a, 0x8c, 0x43, 0xe0, 0xbd, 0x7b, 0xdb, 0xeb, 0x35, 0x45, 0x4c, 0x84, 0x97, 0xd7, 0x83, 0x42, 0xb8, 0xac, 0xfc, 0x60, 0x62, 0xea, 0x6f, 0x05, 0xc8, 0x87, 0xca, 0x44, 0x5c, 0xa0, 0x68, 0xa6, 0x69, 0xdf, 0x51, 0x35, 0xd3, 0xd0, 0x3c, 0x16, 0x14, 0x40, 0x44, 0x15, 0x2c, 0x99, 0x74, 0xd1, 0x3e, 0x10, 0xe3, 0xdf, 0x10, 0x40, 0x1c, 0x2e, 0x31, 0x87, 0x0c, 0x14, 0x3e, 0x54, 0x03, 0x5f, 0x17, 0xa0, 0x18, 0xad, 0x2b, 0x87, 0xcc, 0x3b, 0xf7, 0xa1, 0x9a, 0xf7, 0xfd, 0x04, 0x4c, 0x47, 0xaa, 0xc9, 0x49, 0xad, 0xfb, 0x0c, 0xcc, 0x1a, 0x6d, 0xd4, 0x73, 0x6c, 0x1f, 0x59, 0xfa, 0xa1, 0x6a, 0xa2, 0xdb, 0xc8, 0x2c, 0x95, 0xc9, 0x41, 0x71, 0xe1, 0xf8, 0x7a, 0x75, 0xb5, 0x3e, 0xc0, 0x6d, 0x61, 0x98, 0x3c, 0x57, 0xdf, 0xa8, 0x6d, 0x37, 0x1b, 0xbb, 0xb5, 0x9d, 0xea, 0xcb, 0xea, 0xde, 0xce, 0xcf, 0xee, 0x34, 0x5e, 0xda, 0x51, 0x44, 0x63, 0x48, 0xed, 0x7d, 0xdc, 0xea, 0x4d, 0x10, 0x87, 0x8d, 0x92, 0x4e, 0xc3, 0x38, 0xb3, 0xc4, 0x53, 0xd2, 0x1c, 0xcc, 0xec, 0x34, 0xd4, 0x56, 0x7d, 0xa3, 0xa6, 0xd6, 0xae, 0x5d, 0xab, 0x55, 0x77, 0x5b, 0xf4, 0x02, 0x1f, 0x68, 0xef, 0x46, 0x37, 0xf5, 0x6b, 0x49, 0x98, 0x1b, 0x63, 0x89, 0x54, 0x61, 0x77, 0x07, 0x7a, 0x9d, 0xf9, 0xe8, 0x24, 0xd6, 0xaf, 0xe2, 0x94, 0xdf, 0xd4, 0x5c, 0x9f, 0x5d, 0x35, 0xce, 0x03, 0xf6, 0x92, 0xe5, 0x1b, 0x1d, 0x03, 0xb9, 0xec, 0xbd, 0x83, 0x5e, 0x28, 0x66, 0x06, 0x72, 0xfa, 0xe4, 0xf1, 0x53, 0x20, 0x39, 0xb6, 0x67, 0xf8, 0xc6, 0x6d, 0xa4, 0x1a, 0x16, 0x7f, 0x1c, 0xc1, 0x17, 0x8c, 0x94, 0x22, 0xf2, 0x9e, 0xba, 0xe5, 0x07, 0xda, 0x16, 0xea, 0x6a, 0x43, 0xda, 0xf8, 0x00, 0x4f, 0x2a, 0x22, 0xef, 0x09, 0xb4, 0xcf, 0x41, 0xa1, 0x6d, 0xf7, 0x71, 0xd5, 0x45, 0xf5, 0x70, 0xbe, 0x10, 0x94, 0x3c, 0x95, 0x05, 0x2a, 0xac, 0x9e, 0x1e, 0xbc, 0xca, 0x14, 0x94, 0x3c, 0x95, 0x51, 0x95, 0x27, 0x61, 0x46, 0xeb, 0x76, 0x5d, 0x4c, 0xce, 0x89, 0xe8, 0x0d, 0xa1, 0x18, 0x88, 0x89, 0xe2, 0xe2, 0x75, 0xc8, 0x72, 0x3f, 0xe0, 0x94, 0x8c, 0x3d, 0xa1, 0x3a, 0xf4, 0x65, 0x2e, 0xb1, 0x92, 0x53, 0xb2, 0x16, 0xef, 0x3c, 0x07, 0x05, 0xc3, 0x53, 0x07, 0x8f, 0xcc, 0x89, 0xe5, 0xc4, 0x4a, 0x56, 0xc9, 0x1b, 0x5e, 0xf0, 0x40, 0x57, 0x7e, 0x2b, 0x01, 0xc5, 0xe8, 0x23, 0xb9, 0xb4, 0x01, 0x59, 0xd3, 0xd6, 0x35, 0x12, 0x5a, 0xf4, 0x0b, 0xcd, 0x4a, 0xcc, 0xbb, 0xfa, 0xea, 0x16, 0xd3, 0x57, 0x02, 0xe4, 0xe2, 0x3f, 0x09, 0x90, 0xe5, 0x62, 0x69, 0x01, 0x52, 0x8e, 0xe6, 0x1f, 0x10, 0xba, 0xf4, 0x7a, 0x42, 0x14, 0x14, 0xd2, 0xc6, 0x72, 0xcf, 0xd1, 0x2c, 0x12, 0x02, 0x4c, 0x8e, 0xdb, 0x78, 0x5d, 0x4d, 0xa4, 0xb5, 0xc9, 0xf5, 0xc3, 0xee, 0xf5, 0x90, 0xe5, 0x7b, 0x7c, 0x5d, 0x99, 0xbc, 0xca, 0xc4, 0xd2, 0xd3, 0x30, 0xeb, 0xbb, 0x9a, 0x61, 0x46, 0x74, 0x53, 0x44, 0x57, 0xe4, 0x1d, 0x81, 0xb2, 0x0c, 0x67, 0x38, 0x6f, 0x1b, 0xf9, 0x9a, 0x7e, 0x80, 0xda, 0x03, 0x50, 0x86, 0xbc, 0xc0, 0x9e, 0x66, 0x0a, 0x1b, 0xac, 0x9f, 0x63, 0xcb, 0xdf, 0x13, 0x60, 0x96, 0x5f, 0x98, 0xda, 0x81, 0xb3, 0xb6, 0x01, 0x34, 0xcb, 0xb2, 0xfd, 0xb0, 0xbb, 0x46, 0x43, 0x79, 0x04, 0xb7, 0x5a, 0x09, 0x40, 0x4a, 0x88, 0x60, 0xb1, 0x07, 0x30, 0xe8, 0x39, 0xd2, 0x6d, 0x67, 0x21, 0xcf, 0xbe, 0x80, 0x90, 0xcf, 0x68, 0xf4, 0x8a, 0x0d, 0x54, 0x84, 0x6f, 0x56, 0xd2, 0x3c, 0xa4, 0xf7, 0x51, 0xd7, 0xb0, 0xd8, 0xbb, 0x26, 0x6d, 0xf0, 0xb7, 0xda, 0x54, 0xf0, 0x56, 0xbb, 0x7e, 0x03, 0xe6, 0x74, 0xbb, 0x37, 0x6c, 0xee, 0xba, 0x38, 0x74, 0xcd, 0xf7, 0x3e, 0x21, 0x7c, 0x1a, 0x06, 0x25, 0xe6, 0x97, 0x13, 0xc9, 0xcd, 0xe6, 0xfa, 0x57, 0x13, 0x8b, 0x9b, 0x14, 0xd7, 0xe4, 0xd3, 0x54, 0x50, 0xc7, 0x44, 0x3a, 0x36, 0x1d, 0x7e, 0xf4, 0x04, 0x7c, 0xb4, 0x6b, 0xf8, 0x07, 0xfd, 0xfd, 0x55, 0xdd, 0xee, 0x5d, 0xe8, 0xda, 0x5d, 0x7b, 0xf0, 0xd9, 0x10, 0xb7, 0x48, 0x83, 0xfc, 0xc5, 0x3e, 0x1d, 0xe6, 0x02, 0xe9, 0x62, 0xec, 0x77, 0x46, 0x79, 0x07, 0xe6, 0x98, 0xb2, 0x4a, 0xbe, 0x5d, 0xd0, 0x2b, 0x84, 0x74, 0xec, 0xfb, 0x4f, 0xe9, 0x1b, 0xef, 0x90, 0x5c, 0xad, 0xcc, 0x32, 0x28, 0xee, 0xa3, 0xb7, 0x0c, 0x59, 0x81, 0x87, 0x22, 0x7c, 0x74, 0x5f, 0x22, 0x37, 0x86, 0xf1, 0x3b, 0x8c, 0x71, 0x2e, 0xc4, 0xd8, 0x62, 0x50, 0xb9, 0x0a, 0xd3, 0x27, 0xe1, 0xfa, 0x7b, 0xc6, 0x55, 0x40, 0x61, 0x92, 0x4d, 0x98, 0x21, 0x24, 0x7a, 0xdf, 0xf3, 0xed, 0x1e, 0x39, 0xf4, 0x8e, 0xa7, 0xf9, 0x87, 0x77, 0xe8, 0x46, 0x29, 0x62, 0x58, 0x35, 0x40, 0xc9, 0x32, 0x90, 0xcf, 0x35, 0x6d, 0xa4, 0x9b, 0x31, 0x0c, 0xdf, 0x65, 0x86, 0x04, 0xfa, 0xf2, 0xa7, 0x60, 0x1e, 0xff, 0x4d, 0xce, 0xa4, 0xb0, 0x25, 0xf1, 0xaf, 0x5d, 0xa5, 0xef, 0xbd, 0x4a, 0xf7, 0xe2, 0x5c, 0x40, 0x10, 0xb2, 0x29, 0xb4, 0x8a, 0x5d, 0xe4, 0xfb, 0xc8, 0xf5, 0x54, 0xcd, 0x1c, 0x67, 0x5e, 0xe8, 0xb9, 0xa0, 0xf4, 0x85, 0x77, 0xa3, 0xab, 0xb8, 0x49, 0x91, 0x15, 0xd3, 0x94, 0xf7, 0xe0, 0xf4, 0x98, 0xa8, 0x98, 0x80, 0xf3, 0x35, 0xc6, 0x39, 0x3f, 0x12, 0x19, 0x98, 0xb6, 0x09, 0x5c, 0x1e, 0xac, 0xe5, 0x04, 0x9c, 0xbf, 0xcf, 0x38, 0x25, 0x86, 0xe5, 0x4b, 0x8a, 0x19, 0xaf, 0xc3, 0xec, 0x6d, 0xe4, 0xee, 0xdb, 0x1e, 0x7b, 0xa2, 0x99, 0x80, 0xee, 0x75, 0x46, 0x37, 0xc3, 0x80, 0xe4, 0xcd, 0x06, 0x73, 0x3d, 0x0f, 0xd9, 0x8e, 0xa6, 0xa3, 0x09, 0x28, 0xbe, 0xc8, 0x28, 0xa6, 0xb0, 0x3e, 0x86, 0x56, 0xa0, 0xd0, 0xb5, 0x59, 0x5a, 0x8a, 0x87, 0xbf, 0xc1, 0xe0, 0x79, 0x8e, 0x61, 0x14, 0x8e, 0xed, 0xf4, 0x4d, 0x9c, 0xb3, 0xe2, 0x29, 0xfe, 0x80, 0x53, 0x70, 0x0c, 0xa3, 0x38, 0x81, 0x5b, 0xbf, 0xc4, 0x29, 0xbc, 0x90, 0x3f, 0x5f, 0x84, 0xbc, 0x6d, 0x99, 0x87, 0xb6, 0x35, 0x89, 0x11, 0x6f, 0x32, 0x06, 0x60, 0x10, 0x4c, 0x70, 0x15, 0x72, 0x93, 0x2e, 0xc4, 0x1f, 0xbe, 0xcb, 0xb7, 0x07, 0x5f, 0x81, 0x4d, 0x98, 0xe1, 0x07, 0x94, 0x61, 0x5b, 0x13, 0x50, 0xfc, 0x11, 0xa3, 0x28, 0x86, 0x60, 0x6c, 0x1a, 0x3e, 0xf2, 0xfc, 0x2e, 0x9a, 0x84, 0xe4, 0x2d, 0x3e, 0x0d, 0x06, 0x61, 0xae, 0xdc, 0x47, 0x96, 0x7e, 0x30, 0x19, 0xc3, 0x57, 0xb8, 0x2b, 0x39, 0x06, 0x53, 0x54, 0x61, 0xba, 0xa7, 0xb9, 0xde, 0x81, 0x66, 0x4e, 0xb4, 0x1c, 0x7f, 0xcc, 0x38, 0x0a, 0x01, 0x88, 0x79, 0xa4, 0x6f, 0x9d, 0x84, 0xe6, 0xab, 0xdc, 0x23, 0x21, 0x18, 0xdb, 0x7a, 0x9e, 0x4f, 0xde, 0xb3, 0x4e, 0xc2, 0xf6, 0x35, 0xbe, 0xf5, 0x28, 0x76, 0x3b, 0xcc, 0x78, 0x15, 0x72, 0x9e, 0x71, 0x77, 0x22, 0x9a, 0x3f, 0xe1, 0x2b, 0x4d, 0x00, 0x18, 0xfc, 0x32, 0x9c, 0x19, 0x9b, 0x26, 0x26, 0x20, 0xfb, 0x53, 0x46, 0xb6, 0x30, 0x26, 0x55, 0xb0, 0x23, 0xe1, 0xa4, 0x94, 0x7f, 0xc6, 0x8f, 0x04, 0x34, 0xc4, 0xd5, 0xc4, 0x17, 0x05, 0x4f, 0xeb, 0x9c, 0xcc, 0x6b, 0x7f, 0xce, 0xbd, 0x46, 0xb1, 0x11, 0xaf, 0xed, 0xc2, 0x02, 0x63, 0x3c, 0xd9, 0xba, 0x7e, 0x9d, 0x1f, 0xac, 0x14, 0xbd, 0x17, 0x5d, 0xdd, 0x9f, 0x83, 0xc5, 0xc0, 0x9d, 0xbc, 0x22, 0xf5, 0xd4, 0x9e, 0xe6, 0x4c, 0xc0, 0xfc, 0x0d, 0xc6, 0xcc, 0x4f, 0xfc, 0xa0, 0xa4, 0xf5, 0xb6, 0x35, 0x07, 0x93, 0xdf, 0x80, 0x12, 0x27, 0xef, 0x5b, 0x2e, 0xd2, 0xed, 0xae, 0x65, 0xdc, 0x45, 0xed, 0x09, 0xa8, 0xff, 0x62, 0x68, 0xa9, 0xf6, 0x42, 0x70, 0xcc, 0x5c, 0x07, 0x31, 0xa8, 0x55, 0x54, 0xa3, 0xe7, 0xd8, 0xae, 0x1f, 0xc3, 0xf8, 0x4d, 0xbe, 0x52, 0x01, 0xae, 0x4e, 0x60, 0x72, 0x0d, 0x8a, 0xa4, 0x39, 0x69, 0x48, 0xfe, 0x25, 0x23, 0x9a, 0x1e, 0xa0, 0xd8, 0xc1, 0xa1, 0xdb, 0x3d, 0x47, 0x73, 0x27, 0x39, 0xff, 0xfe, 0x8a, 0x1f, 0x1c, 0x0c, 0xc2, 0x0e, 0x0e, 0xff, 0xd0, 0x41, 0x38, 0xdb, 0x4f, 0xc0, 0xf0, 0x2d, 0x7e, 0x70, 0x70, 0x0c, 0xa3, 0xe0, 0x05, 0xc3, 0x04, 0x14, 0x7f, 0xcd, 0x29, 0x38, 0x06, 0x53, 0x7c, 0x72, 0x90, 0x68, 0x5d, 0xd4, 0x35, 0x3c, 0xdf, 0xa5, 0x75, 0xf0, 0xf1, 0x54, 0xdf, 0x7e, 0x37, 0x5a, 0x84, 0x29, 0x21, 0xa8, 0x7c, 0x1d, 0x66, 0x86, 0x4a, 0x0c, 0x29, 0xee, 0xb7, 0x1f, 0xa5, 0x5f, 0x78, 0x8f, 0x1d, 0x46, 0xd1, 0x0a, 0x43, 0xde, 0xc2, 0xeb, 0x1e, 0xad, 0x03, 0xe2, 0xc9, 0x5e, 0x7d, 0x2f, 0x58, 0xfa, 0x48, 0x19, 0x20, 0x5f, 0x83, 0xe9, 0x48, 0x0d, 0x10, 0x4f, 0xf5, 0x8b, 0x8c, 0xaa, 0x10, 0x2e, 0x01, 0xe4, 0x4b, 0x90, 0xc2, 0xf9, 0x3c, 0x1e, 0xfe, 0x4b, 0x0c, 0x4e, 0xd4, 0xe5, 0x8f, 0x43, 0x96, 0xe7, 0xf1, 0x78, 0xe8, 0x2f, 0x33, 0x68, 0x00, 0xc1, 0x70, 0x9e, 0xc3, 0xe3, 0xe1, 0xbf, 0xc2, 0xe1, 0x1c, 0x82, 0xe1, 0x93, 0xbb, 0xf0, 0xef, 0x7e, 0x2d, 0xc5, 0xce, 0x61, 0xee, 0xbb, 0xab, 0x30, 0xc5, 0x92, 0x77, 0x3c, 0xfa, 0xb3, 0x6c, 0x70, 0x8e, 0x90, 0x9f, 0x83, 0xf4, 0x84, 0x0e, 0xff, 0x75, 0x06, 0xa5, 0xfa, 0x72, 0x15, 0xf2, 0xa1, 0x84, 0x1d, 0x0f, 0xff, 0x0d, 0x06, 0x0f, 0xa3, 0xb0, 0xe9, 0x2c, 0x61, 0xc7, 0x13, 0xfc, 0x26, 0x37, 0x9d, 0x21, 0xb0, 0xdb, 0x78, 0xae, 0x8e, 0x47, 0x7f, 0x8e, 0x7b, 0x9d, 0x43, 0xe4, 0x17, 0x21, 0x17, 0x9c, 0xbf, 0xf1, 0xf8, 0xdf, 0x62, 0xf8, 0x01, 0x06, 0x7b, 0x20, 0x74, 0xfe, 0xc7, 0x53, 0xfc, 0x36, 0xf7, 0x40, 0x08, 0x85, 0xb7, 0xd1, 0x70, 0x4e, 0x8f, 0x67, 0xfa, 0x1d, 0xbe, 0x8d, 0x86, 0x52, 0x3a, 0x5e, 0x4d, 0x72, 0x0c, 0xc6, 0x53, 0xfc, 0x2e, 0x5f, 0x4d, 0xa2, 0x8f, 0xcd, 0x18, 0x4e, 0x92, 0xf1, 0x1c, 0xbf, 0xc7, 0xcd, 0x18, 0xca, 0x91, 0x72, 0x13, 0xa4, 0xd1, 0x04, 0x19, 0xcf, 0xf7, 0x79, 0xc6, 0x37, 0x3b, 0x92, 0x1f, 0xe5, 0x97, 0x60, 0x61, 0x7c, 0x72, 0x8c, 0x67, 0xfd, 0xc2, 0x7b, 0x43, 0xd7, 0x99, 0x70, 0x6e, 0x94, 0x77, 0x07, 0xa7, 0x6c, 0x38, 0x31, 0xc6, 0xd3, 0xbe, 0xf6, 0x5e, 0xf4, 0xa0, 0x0d, 0xe7, 0x45, 0xb9, 0x02, 0x30, 0xc8, 0x49, 0xf1, 0x5c, 0xaf, 0x33, 0xae, 0x10, 0x08, 0x6f, 0x0d, 0x96, 0x92, 0xe2, 0xf1, 0x5f, 0xe4, 0x5b, 0x83, 0x21, 0xf0, 0xd6, 0xe0, 0xd9, 0x28, 0x1e, 0xfd, 0x06, 0xdf, 0x1a, 0x1c, 0x22, 0x5f, 0x85, 0xac, 0xd5, 0x37, 0x4d, 0x1c, 0x5b, 0xd2, 0xf1, 0x3f, 0x67, 0x2a, 0xfd, 0xc7, 0x03, 0x06, 0xe6, 0x00, 0xf9, 0x12, 0xa4, 0x51, 0x6f, 0x1f, 0xb5, 0xe3, 0x90, 0xff, 0xf9, 0x80, 0x9f, 0x27, 0x58, 0x5b, 0x7e, 0x11, 0x80, 0x5e, 0xa6, 0xc9, 0x57, 0xa2, 0x18, 0xec, 0x7f, 0x3d, 0x60, 0xbf, 0x94, 0x18, 0x40, 0x06, 0x04, 0xf4, 0x77, 0x17, 0xc7, 0x13, 0xbc, 0x1b, 0x25, 0x20, 0x17, 0xf0, 0xe7, 0x61, 0xea, 0xa6, 0x67, 0x5b, 0xbe, 0xd6, 0x8d, 0x43, 0xff, 0x80, 0xa1, 0xb9, 0x3e, 0x76, 0x58, 0xcf, 0x76, 0x91, 0xaf, 0x75, 0xbd, 0x38, 0xec, 0x7f, 0x33, 0x6c, 0x00, 0xc0, 0x60, 0x5d, 0xf3, 0xfc, 0x49, 0xe6, 0xfd, 0x3f, 0x1c, 0xcc, 0x01, 0xd8, 0x68, 0xfc, 0xf7, 0x2d, 0x74, 0x18, 0x87, 0xfd, 0x21, 0x37, 0x9a, 0xe9, 0xcb, 0x1f, 0x87, 0x1c, 0xfe, 0x93, 0xfe, 0x7a, 0x28, 0x06, 0xfc, 0xbf, 0x0c, 0x3c, 0x40, 0xe0, 0x91, 0x3d, 0xbf, 0xed, 0x1b, 0xf1, 0xce, 0xfe, 0x3f, 0xb6, 0xd2, 0x5c, 0x5f, 0xae, 0x40, 0xde, 0xf3, 0xdb, 0xed, 0x3e, 0xab, 0x68, 0x62, 0xe0, 0x3f, 0x7a, 0x10, 0x5c, 0x72, 0x03, 0xcc, 0xfa, 0xb9, 0xf1, 0x8f, 0x75, 0xb0, 0x69, 0x6f, 0xda, 0xf4, 0x99, 0x0e, 0x7e, 0x90, 0x82, 0xd3, 0xe1, 0x3d, 0xdd, 0x75, 0xed, 0xbe, 0xc3, 0xde, 0xd7, 0x66, 0x47, 0x3a, 0x16, 0x4f, 0xf6, 0x42, 0x57, 0xb6, 0x00, 0x76, 0xd0, 0x9d, 0x1d, 0x7b, 0x13, 0x83, 0xa5, 0x05, 0xc8, 0x10, 0x9b, 0x9f, 0x21, 0x1f, 0x98, 0x92, 0x0a, 0x6b, 0x05, 0xf2, 0x8b, 0xe4, 0xc7, 0xc8, 0x02, 0x93, 0x5f, 0x94, 0xca, 0x20, 0x54, 0xc8, 0x0b, 0x7a, 0x7e, 0x6d, 0x7e, 0x75, 0xd4, 0xc8, 0x8a, 0x22, 0x54, 0xe4, 0xc2, 0xaf, 0xbe, 0x79, 0x56, 0xf8, 0xdc, 0x9b, 0x67, 0x85, 0x2f, 0xbd, 0x79, 0x56, 0x28, 0x9f, 0x07, 0xa1, 0x82, 0xe9, 0x2a, 0x84, 0x81, 0x0f, 0x43, 0x5b, 0x43, 0xaa, 0xff, 0x98, 0x80, 0x42, 0xc3, 0x6c, 0xbf, 0x64, 0xf8, 0x07, 0xc7, 0x5b, 0xf7, 0x02, 0x64, 0xc8, 0x78, 0xcf, 0x90, 0x57, 0x53, 0x58, 0x7b, 0x62, 0x8c, 0x29, 0x61, 0xa2, 0x55, 0xf2, 0xef, 0x33, 0x0a, 0x43, 0x1d, 0x39, 0x3b, 0xce, 0xbb, 0x46, 0x9e, 0x57, 0x27, 0xe5, 0x5d, 0x63, 0xbc, 0x6b, 0x8b, 0x4d, 0xc8, 0x6c, 0x46, 0x47, 0x38, 0xca, 0xaf, 0x6b, 0xfc, 0x37, 0x68, 0xb4, 0x75, 0x94, 0x45, 0x8b, 0x57, 0x18, 0xe3, 0xda, 0x44, 0x8c, 0x03, 0xe4, 0xda, 0xfa, 0xca, 0x77, 0xef, 0x2f, 0x9d, 0xfa, 0xe7, 0xfb, 0x4b, 0xa7, 0xfe, 0xe5, 0xfe, 0xd2, 0xa9, 0xef, 0xdf, 0x5f, 0x12, 0x7e, 0x78, 0x7f, 0x49, 0xf8, 0xff, 0xfb, 0x4b, 0xc2, 0xbd, 0xb7, 0x97, 0x84, 0xaf, 0xbc, 0xbd, 0x24, 0x7c, 0xfd, 0xed, 0x25, 0xe1, 0xdb, 0x6f, 0x2f, 0x09, 0x3f, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x9f, 0x59, 0x94, 0xa6, 0x14, 0x32, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) if err != nil { panic(err) } ungzipped, err := io_ioutil.ReadAll(gzipr) if err != nil { panic(err) } if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil { panic(err) } return d } func (this *NewNoGroup) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*NewNoGroup) if !ok { that2, ok := that.(NewNoGroup) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *NewNoGroup") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *NewNoGroup but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *NewNoGroup but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !this.A.Equal(that1.A) { return fmt.Errorf("A this(%v) Not Equal that(%v)", this.A, that1.A) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *NewNoGroup) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*NewNoGroup) if !ok { that2, ok := that.(NewNoGroup) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !this.A.Equal(that1.A) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *A) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*A) if !ok { that2, ok := that.(A) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *A") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *A but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *A but is not nil && this == nil") } if this.AField != nil && that1.AField != nil { if *this.AField != *that1.AField { return fmt.Errorf("AField this(%v) Not Equal that(%v)", *this.AField, *that1.AField) } } else if this.AField != nil { return fmt.Errorf("this.AField == nil && that.AField != nil") } else if that1.AField != nil { return fmt.Errorf("AField this(%v) Not Equal that(%v)", this.AField, that1.AField) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *A) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*A) if !ok { that2, ok := that.(A) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.AField != nil && that1.AField != nil { if *this.AField != *that1.AField { return false } } else if this.AField != nil { return false } else if that1.AField != nil { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OldWithGroup) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OldWithGroup) if !ok { that2, ok := that.(OldWithGroup) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OldWithGroup") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OldWithGroup but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OldWithGroup but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if !this.Group1.Equal(that1.Group1) { return fmt.Errorf("Group1 this(%v) Not Equal that(%v)", this.Group1, that1.Group1) } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !this.Group2.Equal(that1.Group2) { return fmt.Errorf("Group2 this(%v) Not Equal that(%v)", this.Group2, that1.Group2) } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OldWithGroup) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OldWithGroup) if !ok { that2, ok := that.(OldWithGroup) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if !this.Group1.Equal(that1.Group1) { return false } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !this.Group2.Equal(that1.Group2) { return false } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OldWithGroup_Group1) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OldWithGroup_Group1) if !ok { that2, ok := that.(OldWithGroup_Group1) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OldWithGroup_Group1") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OldWithGroup_Group1 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OldWithGroup_Group1 but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", *this.Field2, *that1.Field2) } } else if this.Field2 != nil { return fmt.Errorf("this.Field2 == nil && that.Field2 != nil") } else if that1.Field2 != nil { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", this.Field2, that1.Field2) } if len(this.Field3) != len(that1.Field3) { return fmt.Errorf("Field3 this(%v) Not Equal that(%v)", len(this.Field3), len(that1.Field3)) } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return fmt.Errorf("Field3 this[%v](%v) Not Equal that[%v](%v)", i, this.Field3[i], i, that1.Field3[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OldWithGroup_Group1) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OldWithGroup_Group1) if !ok { that2, ok := that.(OldWithGroup_Group1) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if this.Field2 != nil && that1.Field2 != nil { if *this.Field2 != *that1.Field2 { return false } } else if this.Field2 != nil { return false } else if that1.Field2 != nil { return false } if len(this.Field3) != len(that1.Field3) { return false } for i := range this.Field3 { if this.Field3[i] != that1.Field3[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *OldWithGroup_Group2) VerboseEqual(that interface{}) error { if that == nil { if this == nil { return nil } return fmt.Errorf("that == nil && this != nil") } that1, ok := that.(*OldWithGroup_Group2) if !ok { that2, ok := that.(OldWithGroup_Group2) if ok { that1 = &that2 } else { return fmt.Errorf("that is not of type *OldWithGroup_Group2") } } if that1 == nil { if this == nil { return nil } return fmt.Errorf("that is type *OldWithGroup_Group2 but is nil && this != nil") } else if this == nil { return fmt.Errorf("that is type *OldWithGroup_Group2 but is not nil && this == nil") } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1) } } else if this.Field1 != nil { return fmt.Errorf("this.Field1 == nil && that.Field1 != nil") } else if that1.Field1 != nil { return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1) } if len(this.Field2) != len(that1.Field2) { return fmt.Errorf("Field2 this(%v) Not Equal that(%v)", len(this.Field2), len(that1.Field2)) } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return fmt.Errorf("Field2 this[%v](%v) Not Equal that[%v](%v)", i, this.Field2[i], i, that1.Field2[i]) } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized) } return nil } func (this *OldWithGroup_Group2) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*OldWithGroup_Group2) if !ok { that2, ok := that.(OldWithGroup_Group2) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Field1 != nil && that1.Field1 != nil { if *this.Field1 != *that1.Field1 { return false } } else if this.Field1 != nil { return false } else if that1.Field1 != nil { return false } if len(this.Field2) != len(that1.Field2) { return false } for i := range this.Field2 { if this.Field2[i] != that1.Field2[i] { return false } } if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) { return false } return true } func (this *NewNoGroup) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&unrecognizedgroup.NewNoGroup{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognizedgroup(this.Field1, "int64")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.A != nil { s = append(s, "A: "+fmt.Sprintf("%#v", this.A)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *A) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&unrecognizedgroup.A{") if this.AField != nil { s = append(s, "AField: "+valueToGoStringUnrecognizedgroup(this.AField, "int64")+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OldWithGroup) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 8) s = append(s, "&unrecognizedgroup.OldWithGroup{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognizedgroup(this.Field1, "int64")+",\n") } if this.Group1 != nil { s = append(s, "Group1: "+fmt.Sprintf("%#v", this.Group1)+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.Group2 != nil { s = append(s, "Group2: "+fmt.Sprintf("%#v", this.Group2)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OldWithGroup_Group1) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&unrecognizedgroup.OldWithGroup_Group1{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognizedgroup(this.Field1, "int64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+valueToGoStringUnrecognizedgroup(this.Field2, "int32")+",\n") } if this.Field3 != nil { s = append(s, "Field3: "+fmt.Sprintf("%#v", this.Field3)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *OldWithGroup_Group2) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&unrecognizedgroup.OldWithGroup_Group2{") if this.Field1 != nil { s = append(s, "Field1: "+valueToGoStringUnrecognizedgroup(this.Field1, "int64")+",\n") } if this.Field2 != nil { s = append(s, "Field2: "+fmt.Sprintf("%#v", this.Field2)+",\n") } if this.XXX_unrecognized != nil { s = append(s, "XXX_unrecognized:"+fmt.Sprintf("%#v", this.XXX_unrecognized)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringUnrecognizedgroup(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *NewNoGroup) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *NewNoGroup) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Field1 != nil { dAtA[i] = 0x8 i++ i = encodeVarintUnrecognizedgroup(dAtA, i, uint64(*m.Field1)) } if len(m.Field3) > 0 { for _, num := range m.Field3 { dAtA[i] = 0x19 i++ f1 := math.Float64bits(float64(num)) encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(f1)) i += 8 } } if m.A != nil { dAtA[i] = 0x2a i++ i = encodeVarintUnrecognizedgroup(dAtA, i, uint64(m.A.Size())) n2, err := m.A.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n2 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func (m *A) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *A) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.AField != nil { dAtA[i] = 0x8 i++ i = encodeVarintUnrecognizedgroup(dAtA, i, uint64(*m.AField)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintUnrecognizedgroup(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedNewNoGroup(r randyUnrecognizedgroup, easy bool) *NewNoGroup { this := &NewNoGroup{} if r.Intn(10) != 0 { v1 := int64(r.Int63()) if r.Intn(2) == 0 { v1 *= -1 } this.Field1 = &v1 } if r.Intn(10) != 0 { v2 := r.Intn(10) this.Field3 = make([]float64, v2) for i := 0; i < v2; i++ { this.Field3[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { this.A = NewPopulatedA(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognizedgroup(r, 6) } return this } func NewPopulatedA(r randyUnrecognizedgroup, easy bool) *A { this := &A{} if r.Intn(10) != 0 { v3 := int64(r.Int63()) if r.Intn(2) == 0 { v3 *= -1 } this.AField = &v3 } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognizedgroup(r, 2) } return this } func NewPopulatedOldWithGroup(r randyUnrecognizedgroup, easy bool) *OldWithGroup { this := &OldWithGroup{} if r.Intn(10) != 0 { v4 := int64(r.Int63()) if r.Intn(2) == 0 { v4 *= -1 } this.Field1 = &v4 } if r.Intn(10) != 0 { this.Group1 = NewPopulatedOldWithGroup_Group1(r, easy) } if r.Intn(10) != 0 { v5 := r.Intn(10) this.Field3 = make([]float64, v5) for i := 0; i < v5; i++ { this.Field3[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if r.Intn(10) != 0 { this.Group2 = NewPopulatedOldWithGroup_Group2(r, easy) } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognizedgroup(r, 5) } return this } func NewPopulatedOldWithGroup_Group1(r randyUnrecognizedgroup, easy bool) *OldWithGroup_Group1 { this := &OldWithGroup_Group1{} if r.Intn(10) != 0 { v6 := int64(r.Int63()) if r.Intn(2) == 0 { v6 *= -1 } this.Field1 = &v6 } if r.Intn(10) != 0 { v7 := int32(r.Int31()) if r.Intn(2) == 0 { v7 *= -1 } this.Field2 = &v7 } if r.Intn(10) != 0 { v8 := r.Intn(10) this.Field3 = make([]float64, v8) for i := 0; i < v8; i++ { this.Field3[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field3[i] *= -1 } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognizedgroup(r, 4) } return this } func NewPopulatedOldWithGroup_Group2(r randyUnrecognizedgroup, easy bool) *OldWithGroup_Group2 { this := &OldWithGroup_Group2{} if r.Intn(10) != 0 { v9 := int64(r.Int63()) if r.Intn(2) == 0 { v9 *= -1 } this.Field1 = &v9 } if r.Intn(10) != 0 { v10 := r.Intn(10) this.Field2 = make([]float64, v10) for i := 0; i < v10; i++ { this.Field2[i] = float64(r.Float64()) if r.Intn(2) == 0 { this.Field2[i] *= -1 } } } if !easy && r.Intn(10) != 0 { this.XXX_unrecognized = randUnrecognizedUnrecognizedgroup(r, 3) } return this } type randyUnrecognizedgroup interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneUnrecognizedgroup(r randyUnrecognizedgroup) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringUnrecognizedgroup(r randyUnrecognizedgroup) string { v11 := r.Intn(100) tmps := make([]rune, v11) for i := 0; i < v11; i++ { tmps[i] = randUTF8RuneUnrecognizedgroup(r) } return string(tmps) } func randUnrecognizedUnrecognizedgroup(r randyUnrecognizedgroup, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldUnrecognizedgroup(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldUnrecognizedgroup(dAtA []byte, r randyUnrecognizedgroup, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateUnrecognizedgroup(dAtA, uint64(key)) v12 := r.Int63() if r.Intn(2) == 0 { v12 *= -1 } dAtA = encodeVarintPopulateUnrecognizedgroup(dAtA, uint64(v12)) case 1: dAtA = encodeVarintPopulateUnrecognizedgroup(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateUnrecognizedgroup(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateUnrecognizedgroup(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateUnrecognizedgroup(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateUnrecognizedgroup(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *NewNoGroup) Size() (n int) { var l int _ = l if m.Field1 != nil { n += 1 + sovUnrecognizedgroup(uint64(*m.Field1)) } if len(m.Field3) > 0 { n += 9 * len(m.Field3) } if m.A != nil { l = m.A.Size() n += 1 + l + sovUnrecognizedgroup(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func (m *A) Size() (n int) { var l int _ = l if m.AField != nil { n += 1 + sovUnrecognizedgroup(uint64(*m.AField)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovUnrecognizedgroup(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozUnrecognizedgroup(x uint64) (n int) { return sovUnrecognizedgroup(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *NewNoGroup) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&NewNoGroup{`, `Field1:` + valueToStringUnrecognizedgroup(this.Field1) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `A:` + strings.Replace(fmt.Sprintf("%v", this.A), "A", "A", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *A) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&A{`, `AField:` + valueToStringUnrecognizedgroup(this.AField) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OldWithGroup) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OldWithGroup{`, `Field1:` + valueToStringUnrecognizedgroup(this.Field1) + `,`, `Group1:` + strings.Replace(fmt.Sprintf("%v", this.Group1), "OldWithGroup_Group1", "OldWithGroup_Group1", 1) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `Group2:` + strings.Replace(fmt.Sprintf("%v", this.Group2), "OldWithGroup_Group2", "OldWithGroup_Group2", 1) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OldWithGroup_Group1) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OldWithGroup_Group1{`, `Field1:` + valueToStringUnrecognizedgroup(this.Field1) + `,`, `Field2:` + valueToStringUnrecognizedgroup(this.Field2) + `,`, `Field3:` + fmt.Sprintf("%v", this.Field3) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func (this *OldWithGroup_Group2) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&OldWithGroup_Group2{`, `Field1:` + valueToStringUnrecognizedgroup(this.Field1) + `,`, `Field2:` + fmt.Sprintf("%v", this.Field2) + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } func valueToStringUnrecognizedgroup(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *NewNoGroup) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: NewNoGroup: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: NewNoGroup: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Field1", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Field1 = &v case 3: if wireType == 1 { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field3 = append(m.Field3, v2) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ packedLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if packedLen < 0 { return ErrInvalidLengthUnrecognizedgroup } postIndex := iNdEx + packedLen if postIndex > l { return io.ErrUnexpectedEOF } for iNdEx < postIndex { var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 v2 := float64(math.Float64frombits(v)) m.Field3 = append(m.Field3, v2) } } else { return fmt.Errorf("proto: wrong wireType = %d for field Field3", wireType) } case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field A", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthUnrecognizedgroup } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.A == nil { m.A = &A{} } if err := m.A.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipUnrecognizedgroup(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognizedgroup } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *A) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: A: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: A: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field AField", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.AField = &v default: iNdEx = preIndex skippy, err := skipUnrecognizedgroup(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthUnrecognizedgroup } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipUnrecognizedgroup(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthUnrecognizedgroup } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowUnrecognizedgroup } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipUnrecognizedgroup(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthUnrecognizedgroup = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowUnrecognizedgroup = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("unrecognizedgroup.proto", fileDescriptorUnrecognizedgroup) } var fileDescriptorUnrecognizedgroup = []byte{ // 305 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2f, 0xcd, 0x2b, 0x4a, 0x4d, 0xce, 0x4f, 0xcf, 0xcb, 0xac, 0x4a, 0x4d, 0x49, 0x2f, 0xca, 0x2f, 0x2d, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xc4, 0x90, 0x90, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0xab, 0x4c, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0x62, 0x82, 0x52, 0x1e, 0x17, 0x97, 0x5f, 0x6a, 0xb9, 0x5f, 0xbe, 0x3b, 0x48, 0xb3, 0x90, 0x18, 0x17, 0x9b, 0x5b, 0x66, 0x6a, 0x4e, 0x8a, 0xa1, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x73, 0x10, 0x94, 0x07, 0x17, 0x37, 0x96, 0x60, 0x56, 0x60, 0xd6, 0x60, 0x84, 0x8a, 0x1b, 0x0b, 0x29, 0x71, 0x31, 0x3a, 0x4a, 0xb0, 0x2a, 0x30, 0x6a, 0x70, 0x1b, 0x89, 0xe8, 0x61, 0x3a, 0xd2, 0x31, 0x88, 0xd1, 0xd1, 0x8a, 0xa7, 0x63, 0xa1, 0x3c, 0xe3, 0x84, 0x85, 0xf2, 0x8c, 0x0b, 0x16, 0xca, 0x33, 0x2a, 0x69, 0x72, 0x31, 0x3a, 0x82, 0x8c, 0x73, 0x04, 0x9b, 0x00, 0xb3, 0x06, 0xc2, 0x43, 0x53, 0x7a, 0x8a, 0x89, 0x8b, 0xc7, 0x3f, 0x27, 0x25, 0x3c, 0xb3, 0x24, 0x03, 0xbf, 0xeb, 0xec, 0xb8, 0xd8, 0xc0, 0xf6, 0x19, 0x4a, 0x30, 0x29, 0x30, 0x6a, 0x70, 0x19, 0xa9, 0x61, 0x71, 0x0a, 0xb2, 0x41, 0x7a, 0x60, 0xd2, 0x30, 0x08, 0xaa, 0x0b, 0xa7, 0xef, 0x60, 0xe6, 0x1a, 0x49, 0xb0, 0x90, 0x60, 0xae, 0x11, 0xd4, 0x5c, 0x23, 0xa9, 0x00, 0x2e, 0x36, 0x77, 0x54, 0x1b, 0x70, 0x85, 0xab, 0x11, 0xd8, 0xe5, 0xac, 0x50, 0x71, 0x23, 0x5c, 0x2e, 0x92, 0xb2, 0x80, 0x9a, 0x68, 0x44, 0x94, 0x89, 0x08, 0x9d, 0x46, 0x4e, 0x1a, 0x27, 0x1e, 0xca, 0x31, 0x5c, 0x78, 0x28, 0xc7, 0x70, 0xe3, 0xa1, 0x1c, 0xc3, 0x83, 0x87, 0x72, 0x8c, 0x1f, 0x1e, 0xca, 0x31, 0xfe, 0x78, 0x28, 0xc7, 0xd8, 0xf0, 0x48, 0x8e, 0x71, 0xc5, 0x23, 0x39, 0xc6, 0x0d, 0x8f, 0xe4, 0x18, 0x77, 0x3c, 0x92, 0x63, 0x04, 0x04, 0x00, 0x00, 0xff, 0xff, 0xef, 0x1c, 0xa5, 0xe4, 0x6d, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/test/unrecognizedgroup/unrecognizedgroup.proto000066400000000000000000000051551317075173200267410ustar00rootroot00000000000000// 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 unrecognizedgroup; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; option (gogoproto.goproto_stringer_all) = false; option (gogoproto.goproto_enum_prefix_all) = false; option (gogoproto.goproto_getters_all) = false; option (gogoproto.equal_all) = true; option (gogoproto.verbose_equal_all) = true; option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.description_all) = true; option (gogoproto.testgen_all) = true; option (gogoproto.populate_all) = true; message NewNoGroup { option (gogoproto.unmarshaler) = true; option (gogoproto.marshaler) = true; option (gogoproto.sizer) = true; optional int64 Field1 = 1; repeated double Field3 = 3; optional A A = 5; } message A { option (gogoproto.unmarshaler) = true; option (gogoproto.marshaler) = true; option (gogoproto.sizer) = true; optional int64 AField = 1; } message OldWithGroup { optional int64 Field1 = 1; optional group Group1 = 2 { optional int64 Field1 = 1; optional int32 Field2 = 2; repeated double Field3 = 3; } repeated double Field3 = 3; optional group Group2 = 4 { optional int64 Field1 = 1; repeated double Field2 = 2; } } golang-gogoprotobuf-0.5/test/unrecognizedgroup/unrecognizedgrouppb_test.go000066400000000000000000000570541317075173200275710ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: unrecognizedgroup.proto /* Package unrecognizedgroup is a generated protocol buffer package. It is generated from these files: unrecognizedgroup.proto It has these top-level messages: NewNoGroup A OldWithGroup */ package unrecognizedgroup import testing "testing" import math_rand "math/rand" import time "time" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb" import fmt "fmt" import go_parser "go/parser" import proto "github.com/gogo/protobuf/proto" import math "math" import _ "github.com/gogo/protobuf/gogoproto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf func TestNewNoGroupProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNewNoGroup(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NewNoGroup{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNewNoGroupMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNewNoGroup(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NewNoGroup{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestAMarshalTo(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, false) size := p.Size() dAtA := make([]byte, size) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } _, err := p.MarshalTo(dAtA) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldWithGroupProto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldWithGroup{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOldWithGroup_Group1Proto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup_Group1(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldWithGroup_Group1{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestOldWithGroup_Group2Proto(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup_Group2(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldWithGroup_Group2{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } littlefuzz := make([]byte, len(dAtA)) copy(littlefuzz, dAtA) for i := range dAtA { dAtA[i] = byte(popr.Intn(256)) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } if len(littlefuzz) > 0 { fuzzamount := 100 for i := 0; i < fuzzamount; i++ { littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256)) littlefuzz = append(littlefuzz, byte(popr.Intn(256))) } // shouldn't panic _ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg) } } func TestNewNoGroupJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNewNoGroup(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &NewNoGroup{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestAJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &A{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOldWithGroupJSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldWithGroup{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOldWithGroup_Group1JSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup_Group1(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldWithGroup_Group1{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestOldWithGroup_Group2JSON(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup_Group2(popr, true) marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{} jsondata, err := marshaler.MarshalToString(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } msg := &OldWithGroup_Group2{} err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p) } } func TestNewNoGroupProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNewNoGroup(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &NewNoGroup{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestNewNoGroupProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNewNoGroup(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &NewNoGroup{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &A{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestAProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &A{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldWithGroupProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OldWithGroup{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldWithGroupProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OldWithGroup{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldWithGroup_Group1ProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup_Group1(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OldWithGroup_Group1{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldWithGroup_Group1ProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup_Group1(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OldWithGroup_Group1{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldWithGroup_Group2ProtoText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup_Group2(popr, true) dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p) msg := &OldWithGroup_Group2{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestOldWithGroup_Group2ProtoCompactText(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedOldWithGroup_Group2(popr, true) dAtA := github_com_gogo_protobuf_proto.CompactTextString(p) msg := &OldWithGroup_Group2{} if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err) } if !p.Equal(msg) { t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p) } } func TestUnrecognizedgroupDescription(t *testing.T) { UnrecognizedgroupDescription() } func TestNewNoGroupVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNewNoGroup(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &NewNoGroup{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestAVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &A{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOldWithGroupVerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldWithGroup(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OldWithGroup{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOldWithGroup_Group1VerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldWithGroup_Group1(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OldWithGroup_Group1{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestOldWithGroup_Group2VerboseEqual(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldWithGroup_Group2(popr, false) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { panic(err) } msg := &OldWithGroup_Group2{} if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil { panic(err) } if err := p.VerboseEqual(msg); err != nil { t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err) } } func TestNewNoGroupGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNewNoGroup(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestAGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOldWithGroupGoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldWithGroup(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOldWithGroup_Group1GoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldWithGroup_Group1(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestOldWithGroup_Group2GoString(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldWithGroup_Group2(popr, false) s1 := p.GoString() s2 := fmt.Sprintf("%#v", p) if s1 != s2 { t.Fatalf("GoString want %v got %v", s1, s2) } _, err := go_parser.ParseExpr(s1) if err != nil { t.Fatal(err) } } func TestNewNoGroupSize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedNewNoGroup(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestASize(t *testing.T) { seed := time.Now().UnixNano() popr := math_rand.New(math_rand.NewSource(seed)) p := NewPopulatedA(popr, true) size2 := github_com_gogo_protobuf_proto.Size(p) dAtA, err := github_com_gogo_protobuf_proto.Marshal(p) if err != nil { t.Fatalf("seed = %d, err = %v", seed, err) } size := p.Size() if len(dAtA) != size { t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA)) } if size2 != size { t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2) } size3 := github_com_gogo_protobuf_proto.Size(p) if size3 != size { t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3) } } func TestNewNoGroupStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedNewNoGroup(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestAStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedA(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOldWithGroupStringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldWithGroup(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOldWithGroup_Group1Stringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldWithGroup_Group1(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } func TestOldWithGroup_Group2Stringer(t *testing.T) { popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano())) p := NewPopulatedOldWithGroup_Group2(popr, false) s1 := p.String() s2 := fmt.Sprintf("%v", p) if s1 != s2 { t.Fatalf("String want %v got %v", s1, s2) } } //These tests are generated by github.com/gogo/protobuf/plugin/testgen golang-gogoprotobuf-0.5/test/uuid.go000066400000000000000000000063211317075173200176230ustar00rootroot00000000000000// 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. package test import ( "bytes" "encoding/hex" "encoding/json" ) func PutLittleEndianUint64(b []byte, offset int, v uint64) { b[offset] = byte(v) b[offset+1] = byte(v >> 8) b[offset+2] = byte(v >> 16) b[offset+3] = byte(v >> 24) b[offset+4] = byte(v >> 32) b[offset+5] = byte(v >> 40) b[offset+6] = byte(v >> 48) b[offset+7] = byte(v >> 56) } type Uuid []byte func (uuid Uuid) Marshal() ([]byte, error) { if len(uuid) == 0 { return nil, nil } return []byte(uuid), nil } func (uuid Uuid) MarshalTo(data []byte) (n int, err error) { if len(uuid) == 0 { return 0, nil } copy(data, uuid) return 16, nil } func (uuid *Uuid) Unmarshal(data []byte) error { if len(data) == 0 { uuid = nil return nil } id := Uuid(make([]byte, 16)) copy(id, data) *uuid = id return nil } func (uuid *Uuid) Size() int { if uuid == nil { return 0 } if len(*uuid) == 0 { return 0 } return 16 } func (uuid Uuid) MarshalJSON() ([]byte, error) { s := hex.EncodeToString([]byte(uuid)) return json.Marshal(s) } func (uuid *Uuid) UnmarshalJSON(data []byte) error { var s string err := json.Unmarshal(data, &s) if err != nil { return err } d, err := hex.DecodeString(s) if err != nil { return err } *uuid = Uuid(d) return nil } func (uuid Uuid) Equal(other Uuid) bool { return bytes.Equal(uuid[0:], other[0:]) } func (uuid Uuid) Compare(other Uuid) int { return bytes.Compare(uuid[0:], other[0:]) } type int63 interface { Int63() int64 } func NewPopulatedUuid(r int63) *Uuid { u := RandV4(r) return &u } func RandV4(r int63) Uuid { uuid := make(Uuid, 16) uuid.RandV4(r) return uuid } func (uuid Uuid) RandV4(r int63) { PutLittleEndianUint64(uuid, 0, uint64(r.Int63())) PutLittleEndianUint64(uuid, 8, uint64(r.Int63())) uuid[6] = (uuid[6] & 0xf) | 0x40 uuid[8] = (uuid[8] & 0x3f) | 0x80 } golang-gogoprotobuf-0.5/test/uuid_test.go000066400000000000000000000034771317075173200206730ustar00rootroot00000000000000// 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. package test import ( "github.com/gogo/protobuf/proto" "testing" ) func TestBugUuid(t *testing.T) { u := &CustomContainer{CustomStruct: NidOptCustom{Id: Uuid{}}} data, err := proto.Marshal(u) if err != nil { panic(err) } u2 := &CustomContainer{} err = proto.Unmarshal(data, u2) if err != nil { panic(err) } t.Logf("%+v", u2) if u2.CustomStruct.Id != nil { t.Fatalf("should be nil") } } golang-gogoprotobuf-0.5/types/000077500000000000000000000000001317075173200165115ustar00rootroot00000000000000golang-gogoprotobuf-0.5/types/Makefile000066400000000000000000000046231317075173200201560ustar00rootroot00000000000000# Protocol Buffers for Go with Gadgets # # Copyright (c) 2016, 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-gogotypes go install github.com/gogo/protobuf/protoc-min-version protoc-min-version --version="3.0.0" --gogotypes_out=. -I=../protobuf/google/protobuf ../protobuf/google/protobuf/any.proto protoc-min-version --version="3.0.0" --gogotypes_out=. -I=../protobuf/google/protobuf ../protobuf/google/protobuf/empty.proto protoc-min-version --version="3.0.0" --gogotypes_out=. -I=../protobuf/google/protobuf ../protobuf/google/protobuf/timestamp.proto protoc-min-version --version="3.0.0" --gogotypes_out=. -I=../protobuf/google/protobuf ../protobuf/google/protobuf/duration.proto protoc-min-version --version="3.0.0" --gogotypes_out=. -I=../protobuf/google/protobuf ../protobuf/google/protobuf/struct.proto protoc-min-version --version="3.0.0" --gogotypes_out=. -I=../protobuf/google/protobuf ../protobuf/google/protobuf/wrappers.proto protoc-min-version --version="3.0.0" --gogotypes_out=. -I=../protobuf/google/protobuf ../protobuf/google/protobuf/field_mask.proto golang-gogoprotobuf-0.5/types/any.go000066400000000000000000000111151317075173200176260ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. package types // This file implements functions to marshal proto.Message to/from // google.protobuf.Any message. import ( "fmt" "reflect" "strings" "github.com/gogo/protobuf/proto" ) const googleApis = "type.googleapis.com/" // AnyMessageName returns the name of the message contained in a google.protobuf.Any message. // // Note that regular type assertions should be done using the Is // function. AnyMessageName is provided for less common use cases like filtering a // sequence of Any messages based on a set of allowed message type names. func AnyMessageName(any *Any) (string, error) { if any == nil { return "", fmt.Errorf("message is nil") } slash := strings.LastIndex(any.TypeUrl, "/") if slash < 0 { return "", fmt.Errorf("message type url %q is invalid", any.TypeUrl) } return any.TypeUrl[slash+1:], nil } // MarshalAny takes the protocol buffer and encodes it into google.protobuf.Any. func MarshalAny(pb proto.Message) (*Any, error) { value, err := proto.Marshal(pb) if err != nil { return nil, err } return &Any{TypeUrl: googleApis + proto.MessageName(pb), Value: value}, nil } // DynamicAny is a value that can be passed to UnmarshalAny to automatically // allocate a proto.Message for the type specified in a google.protobuf.Any // message. The allocated message is stored in the embedded proto.Message. // // Example: // // var x ptypes.DynamicAny // if err := ptypes.UnmarshalAny(a, &x); err != nil { ... } // fmt.Printf("unmarshaled message: %v", x.Message) type DynamicAny struct { proto.Message } // Empty returns a new proto.Message of the type specified in a // google.protobuf.Any message. It returns an error if corresponding message // type isn't linked in. func EmptyAny(any *Any) (proto.Message, error) { aname, err := AnyMessageName(any) if err != nil { return nil, err } t := proto.MessageType(aname) if t == nil { return nil, fmt.Errorf("any: message type %q isn't linked in", aname) } return reflect.New(t.Elem()).Interface().(proto.Message), nil } // UnmarshalAny parses the protocol buffer representation in a google.protobuf.Any // message and places the decoded result in pb. It returns an error if type of // contents of Any message does not match type of pb message. // // pb can be a proto.Message, or a *DynamicAny. func UnmarshalAny(any *Any, pb proto.Message) error { if d, ok := pb.(*DynamicAny); ok { if d.Message == nil { var err error d.Message, err = EmptyAny(any) if err != nil { return err } } return UnmarshalAny(any, d.Message) } aname, err := AnyMessageName(any) if err != nil { return err } mname := proto.MessageName(pb) if aname != mname { return fmt.Errorf("mismatched message type: got %q want %q", aname, mname) } return proto.Unmarshal(any.Value, pb) } // Is returns true if any value contains a given message type. func Is(any *Any, pb proto.Message) bool { aname, err := AnyMessageName(any) if err != nil { return false } return aname == proto.MessageName(pb) } golang-gogoprotobuf-0.5/types/any.pb.go000066400000000000000000000371701317075173200202370ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: any.proto /* Package types is a generated protocol buffer package. It is generated from these files: any.proto It has these top-level messages: Any */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import bytes "bytes" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package // `Any` contains an arbitrary serialized protocol buffer message along with a // URL that describes the type of the serialized message. // // Protobuf library provides support to pack/unpack Any values in the form // of utility functions or additional generated methods of the Any type. // // Example 1: Pack and unpack a message in C++. // // Foo foo = ...; // Any any; // any.PackFrom(foo); // ... // if (any.UnpackTo(&foo)) { // ... // } // // Example 2: Pack and unpack a message in Java. // // Foo foo = ...; // Any any = Any.pack(foo); // ... // if (any.is(Foo.class)) { // foo = any.unpack(Foo.class); // } // // Example 3: Pack and unpack a message in Python. // // foo = Foo(...) // any = Any() // any.Pack(foo) // ... // if any.Is(Foo.DESCRIPTOR): // any.Unpack(foo) // ... // // Example 4: Pack and unpack a message in Go // // foo := &pb.Foo{...} // any, err := ptypes.MarshalAny(foo) // ... // foo := &pb.Foo{} // if err := ptypes.UnmarshalAny(any, foo); err != nil { // ... // } // // The pack methods provided by protobuf library will by default use // 'type.googleapis.com/full.type.name' as the type URL and the unpack // methods only use the fully qualified type name after the last '/' // in the type URL, for example "foo.bar.com/x/y.z" will yield type // name "y.z". // // // JSON // ==== // The JSON representation of an `Any` value uses the regular // representation of the deserialized, embedded message, with an // additional field `@type` which contains the type URL. Example: // // package google.profile; // message Person { // string first_name = 1; // string last_name = 2; // } // // { // "@type": "type.googleapis.com/google.profile.Person", // "firstName": , // "lastName": // } // // If the embedded message type is well-known and has a custom JSON // representation, that representation will be embedded adding a field // `value` which holds the custom JSON in addition to the `@type` // field. Example (for message [google.protobuf.Duration][]): // // { // "@type": "type.googleapis.com/google.protobuf.Duration", // "value": "1.212s" // } // type Any struct { // A URL/resource name whose content describes the type of the // serialized protocol buffer message. // // For URLs which use the scheme `http`, `https`, or no scheme, the // following restrictions and interpretations apply: // // * If no scheme is provided, `https` is assumed. // * The last segment of the URL's path must represent the fully // qualified name of the type (as in `path/google.protobuf.Duration`). // The name should be in a canonical form (e.g., leading "." is // not accepted). // * An HTTP GET on the URL must yield a [google.protobuf.Type][] // value in binary format, or produce an error. // * Applications are allowed to cache lookup results based on the // URL, or have them precompiled into a binary to avoid any // lookup. Therefore, binary compatibility needs to be preserved // on changes to types. (Use versioned type names to manage // breaking changes.) // // Schemes other than `http`, `https` (or the empty scheme) might be // used with implementation specific semantics. // TypeUrl string `protobuf:"bytes,1,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"` // Must be a valid serialized protocol buffer of the above specified type. Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` } func (m *Any) Reset() { *m = Any{} } func (*Any) ProtoMessage() {} func (*Any) Descriptor() ([]byte, []int) { return fileDescriptorAny, []int{0} } func (*Any) XXX_WellKnownType() string { return "Any" } func (m *Any) GetTypeUrl() string { if m != nil { return m.TypeUrl } return "" } func (m *Any) GetValue() []byte { if m != nil { return m.Value } return nil } func init() { proto.RegisterType((*Any)(nil), "google.protobuf.Any") } func (this *Any) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Any) if !ok { that2, ok := that.(Any) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.TypeUrl != that1.TypeUrl { if this.TypeUrl < that1.TypeUrl { return -1 } return 1 } if c := bytes.Compare(this.Value, that1.Value); c != 0 { return c } return 0 } func (this *Any) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Any) if !ok { that2, ok := that.(Any) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.TypeUrl != that1.TypeUrl { return false } if !bytes.Equal(this.Value, that1.Value) { return false } return true } func (this *Any) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&types.Any{") s = append(s, "TypeUrl: "+fmt.Sprintf("%#v", this.TypeUrl)+",\n") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringAny(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Any) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Any) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.TypeUrl) > 0 { dAtA[i] = 0xa i++ i = encodeVarintAny(dAtA, i, uint64(len(m.TypeUrl))) i += copy(dAtA[i:], m.TypeUrl) } if len(m.Value) > 0 { dAtA[i] = 0x12 i++ i = encodeVarintAny(dAtA, i, uint64(len(m.Value))) i += copy(dAtA[i:], m.Value) } return i, nil } func encodeVarintAny(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedAny(r randyAny, easy bool) *Any { this := &Any{} this.TypeUrl = string(randStringAny(r)) v1 := r.Intn(100) this.Value = make([]byte, v1) for i := 0; i < v1; i++ { this.Value[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { } return this } type randyAny interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneAny(r randyAny) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringAny(r randyAny) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneAny(r) } return string(tmps) } func randUnrecognizedAny(r randyAny, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldAny(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldAny(dAtA []byte, r randyAny, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateAny(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateAny(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateAny(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateAny(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateAny(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateAny(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateAny(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Any) Size() (n int) { var l int _ = l l = len(m.TypeUrl) if l > 0 { n += 1 + l + sovAny(uint64(l)) } l = len(m.Value) if l > 0 { n += 1 + l + sovAny(uint64(l)) } return n } func sovAny(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozAny(x uint64) (n int) { return sovAny(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Any) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Any{`, `TypeUrl:` + fmt.Sprintf("%v", this.TypeUrl) + `,`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func valueToStringAny(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Any) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowAny } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Any: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Any: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field TypeUrl", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowAny } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthAny } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.TypeUrl = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowAny } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthAny } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) if m.Value == nil { m.Value = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAny(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthAny } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipAny(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowAny } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowAny } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowAny } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthAny } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowAny } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipAny(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthAny = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowAny = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("any.proto", fileDescriptorAny) } var fileDescriptorAny = []byte{ // 204 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4c, 0xcc, 0xab, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x4f, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0x85, 0xf0, 0x92, 0x4a, 0xd3, 0x94, 0xcc, 0xb8, 0x98, 0x1d, 0xf3, 0x2a, 0x85, 0x24, 0xb9, 0x38, 0x4a, 0x2a, 0x0b, 0x52, 0xe3, 0x4b, 0x8b, 0x72, 0x24, 0x18, 0x15, 0x18, 0x35, 0x38, 0x83, 0xd8, 0x41, 0xfc, 0xd0, 0xa2, 0x1c, 0x21, 0x11, 0x2e, 0xd6, 0xb2, 0xc4, 0x9c, 0xd2, 0x54, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x9e, 0x20, 0x08, 0xc7, 0xa9, 0xfe, 0xc2, 0x43, 0x39, 0x86, 0x1b, 0x0f, 0xe5, 0x18, 0x3e, 0x3c, 0x94, 0x63, 0xfc, 0xf1, 0x50, 0x8e, 0xb1, 0xe1, 0x91, 0x1c, 0xe3, 0x8a, 0x47, 0x72, 0x8c, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x8b, 0x47, 0x72, 0x0c, 0x1f, 0x40, 0xe2, 0x8f, 0xe5, 0x18, 0xb9, 0x84, 0x93, 0xf3, 0x73, 0xf5, 0xd0, 0xac, 0x77, 0xe2, 0x70, 0xcc, 0xab, 0x0c, 0x00, 0x71, 0x02, 0x18, 0xa3, 0x58, 0x41, 0x36, 0x16, 0x2f, 0x62, 0x62, 0x76, 0x0f, 0x70, 0x5a, 0xc5, 0x24, 0xe7, 0x0e, 0x51, 0x1a, 0x00, 0x55, 0xaa, 0x17, 0x9e, 0x9a, 0x93, 0xe3, 0x9d, 0x97, 0x5f, 0x9e, 0x17, 0x02, 0x52, 0x96, 0xc4, 0x06, 0x36, 0xc3, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xb7, 0x39, 0x2f, 0x89, 0xdd, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/types/any_test.go000066400000000000000000000073151317075173200206740ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. package types import ( "testing" "github.com/gogo/protobuf/proto" pb "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" ) func TestMarshalUnmarshal(t *testing.T) { orig := &Any{Value: []byte("test")} packed, err := MarshalAny(orig) if err != nil { t.Errorf("MarshalAny(%+v): got: _, %v exp: _, nil", orig, err) } unpacked := &Any{} err = UnmarshalAny(packed, unpacked) if err != nil || !proto.Equal(unpacked, orig) { t.Errorf("got: %v, %+v; want nil, %+v", err, unpacked, orig) } } func TestIs(t *testing.T) { a, err := MarshalAny(&pb.FileDescriptorProto{}) if err != nil { t.Fatal(err) } if Is(a, &pb.DescriptorProto{}) { t.Error("FileDescriptorProto is not a DescriptorProto, but Is says it is") } if !Is(a, &pb.FileDescriptorProto{}) { t.Error("FileDescriptorProto is indeed a FileDescriptorProto, but Is says it is not") } } func TestIsDifferentUrlPrefixes(t *testing.T) { m := &pb.FileDescriptorProto{} a := &Any{TypeUrl: "foo/bar/" + proto.MessageName(m)} if !Is(a, m) { t.Errorf("message with type url %q didn't satisfy Is for type %q", a.TypeUrl, proto.MessageName(m)) } } func TestUnmarshalDynamic(t *testing.T) { want := &pb.FileDescriptorProto{Name: proto.String("foo")} a, err := MarshalAny(want) if err != nil { t.Fatal(err) } var got DynamicAny if err := UnmarshalAny(a, &got); err != nil { t.Fatal(err) } if !proto.Equal(got.Message, want) { t.Errorf("invalid result from UnmarshalAny, got %q want %q", got.Message, want) } } func TestEmpty(t *testing.T) { want := &pb.FileDescriptorProto{} a, err := MarshalAny(want) if err != nil { t.Fatal(err) } got, err := EmptyAny(a) if err != nil { t.Fatal(err) } if !proto.Equal(got, want) { t.Errorf("unequal empty message, got %q, want %q", got, want) } // that's a valid type_url for a message which shouldn't be linked into this // test binary. We want an error. a.TypeUrl = "type.googleapis.com/google.protobuf.TestAny" if _, err := EmptyAny(a); err == nil { t.Errorf("got no error for an attempt to create a message of type %q, which shouldn't be linked in", a.TypeUrl) } } golang-gogoprotobuf-0.5/types/doc.go000066400000000000000000000033341317075173200176100ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. /* Package types contains code for interacting with well-known types. */ package types golang-gogoprotobuf-0.5/types/duration.go000066400000000000000000000073131317075173200206710ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. package types // This file implements conversions between google.protobuf.Duration // and time.Duration. import ( "errors" "fmt" "time" ) const ( // Range of a Duration in seconds, as specified in // google/protobuf/duration.proto. This is about 10,000 years in seconds. maxSeconds = int64(10000 * 365.25 * 24 * 60 * 60) minSeconds = -maxSeconds ) // validateDuration determines whether the Duration is valid according to the // definition in google/protobuf/duration.proto. A valid Duration // may still be too large to fit into a time.Duration (the range of Duration // is about 10,000 years, and the range of time.Duration is about 290). func validateDuration(d *Duration) error { if d == nil { return errors.New("duration: nil Duration") } if d.Seconds < minSeconds || d.Seconds > maxSeconds { return fmt.Errorf("duration: %#v: seconds out of range", d) } if d.Nanos <= -1e9 || d.Nanos >= 1e9 { return fmt.Errorf("duration: %#v: nanos out of range", d) } // Seconds and Nanos must have the same sign, unless d.Nanos is zero. if (d.Seconds < 0 && d.Nanos > 0) || (d.Seconds > 0 && d.Nanos < 0) { return fmt.Errorf("duration: %#v: seconds and nanos have different signs", d) } return nil } // DurationFromProto converts a Duration to a time.Duration. DurationFromProto // returns an error if the Duration is invalid or is too large to be // represented in a time.Duration. func DurationFromProto(p *Duration) (time.Duration, error) { if err := validateDuration(p); err != nil { return 0, err } d := time.Duration(p.Seconds) * time.Second if int64(d/time.Second) != p.Seconds { return 0, fmt.Errorf("duration: %#v is out of range for time.Duration", p) } if p.Nanos != 0 { d += time.Duration(p.Nanos) if (d < 0) != (p.Nanos < 0) { return 0, fmt.Errorf("duration: %#v is out of range for time.Duration", p) } } return d, nil } // DurationProto converts a time.Duration to a Duration. func DurationProto(d time.Duration) *Duration { nanos := d.Nanoseconds() secs := nanos / 1e9 nanos -= secs * 1e9 return &Duration{ Seconds: secs, Nanos: int32(nanos), } } golang-gogoprotobuf-0.5/types/duration.pb.go000066400000000000000000000301711317075173200212670ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: duration.proto /* Package types is a generated protocol buffer package. It is generated from these files: duration.proto It has these top-level messages: Duration */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package // A Duration represents a signed, fixed-length span of time represented // as a count of seconds and fractions of seconds at nanosecond // resolution. It is independent of any calendar and concepts like "day" // or "month". It is related to Timestamp in that the difference between // two Timestamp values is a Duration and it can be added or subtracted // from a Timestamp. Range is approximately +-10,000 years. // // # Examples // // Example 1: Compute Duration from two Timestamps in pseudo code. // // Timestamp start = ...; // Timestamp end = ...; // Duration duration = ...; // // duration.seconds = end.seconds - start.seconds; // duration.nanos = end.nanos - start.nanos; // // if (duration.seconds < 0 && duration.nanos > 0) { // duration.seconds += 1; // duration.nanos -= 1000000000; // } else if (durations.seconds > 0 && duration.nanos < 0) { // duration.seconds -= 1; // duration.nanos += 1000000000; // } // // Example 2: Compute Timestamp from Timestamp + Duration in pseudo code. // // Timestamp start = ...; // Duration duration = ...; // Timestamp end = ...; // // end.seconds = start.seconds + duration.seconds; // end.nanos = start.nanos + duration.nanos; // // if (end.nanos < 0) { // end.seconds -= 1; // end.nanos += 1000000000; // } else if (end.nanos >= 1000000000) { // end.seconds += 1; // end.nanos -= 1000000000; // } // // Example 3: Compute Duration from datetime.timedelta in Python. // // td = datetime.timedelta(days=3, minutes=10) // duration = Duration() // duration.FromTimedelta(td) // // # JSON Mapping // // In JSON format, the Duration type is encoded as a string rather than an // object, where the string ends in the suffix "s" (indicating seconds) and // is preceded by the number of seconds, with nanoseconds expressed as // fractional seconds. For example, 3 seconds with 0 nanoseconds should be // encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should // be expressed in JSON format as "3.000000001s", and 3 seconds and 1 // microsecond should be expressed in JSON format as "3.000001s". // // type Duration struct { // Signed seconds of the span of time. Must be from -315,576,000,000 // to +315,576,000,000 inclusive. Note: these bounds are computed from: // 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years Seconds int64 `protobuf:"varint,1,opt,name=seconds,proto3" json:"seconds,omitempty"` // Signed fractions of a second at nanosecond resolution of the span // of time. Durations less than one second are represented with a 0 // `seconds` field and a positive or negative `nanos` field. For durations // of one second or more, a non-zero value for the `nanos` field must be // of the same sign as the `seconds` field. Must be from -999,999,999 // to +999,999,999 inclusive. Nanos int32 `protobuf:"varint,2,opt,name=nanos,proto3" json:"nanos,omitempty"` } func (m *Duration) Reset() { *m = Duration{} } func (*Duration) ProtoMessage() {} func (*Duration) Descriptor() ([]byte, []int) { return fileDescriptorDuration, []int{0} } func (*Duration) XXX_WellKnownType() string { return "Duration" } func (m *Duration) GetSeconds() int64 { if m != nil { return m.Seconds } return 0 } func (m *Duration) GetNanos() int32 { if m != nil { return m.Nanos } return 0 } func init() { proto.RegisterType((*Duration)(nil), "google.protobuf.Duration") } func (this *Duration) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Duration) if !ok { that2, ok := that.(Duration) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Seconds != that1.Seconds { if this.Seconds < that1.Seconds { return -1 } return 1 } if this.Nanos != that1.Nanos { if this.Nanos < that1.Nanos { return -1 } return 1 } return 0 } func (this *Duration) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Duration) if !ok { that2, ok := that.(Duration) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Seconds != that1.Seconds { return false } if this.Nanos != that1.Nanos { return false } return true } func (this *Duration) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&types.Duration{") s = append(s, "Seconds: "+fmt.Sprintf("%#v", this.Seconds)+",\n") s = append(s, "Nanos: "+fmt.Sprintf("%#v", this.Nanos)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringDuration(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Duration) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Duration) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Seconds != 0 { dAtA[i] = 0x8 i++ i = encodeVarintDuration(dAtA, i, uint64(m.Seconds)) } if m.Nanos != 0 { dAtA[i] = 0x10 i++ i = encodeVarintDuration(dAtA, i, uint64(m.Nanos)) } return i, nil } func encodeVarintDuration(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *Duration) Size() (n int) { var l int _ = l if m.Seconds != 0 { n += 1 + sovDuration(uint64(m.Seconds)) } if m.Nanos != 0 { n += 1 + sovDuration(uint64(m.Nanos)) } return n } func sovDuration(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozDuration(x uint64) (n int) { return sovDuration(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Duration) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowDuration } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Duration: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Duration: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Seconds", wireType) } m.Seconds = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowDuration } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Seconds |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Nanos", wireType) } m.Nanos = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowDuration } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Nanos |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipDuration(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthDuration } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipDuration(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowDuration } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowDuration } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowDuration } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthDuration } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowDuration } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipDuration(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthDuration = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowDuration = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("duration.proto", fileDescriptorDuration) } var fileDescriptorDuration = []byte{ // 203 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4b, 0x29, 0x2d, 0x4a, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x4f, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0x85, 0xf0, 0x92, 0x4a, 0xd3, 0x94, 0xac, 0xb8, 0x38, 0x5c, 0xa0, 0x4a, 0x84, 0x24, 0xb8, 0xd8, 0x8b, 0x53, 0x93, 0xf3, 0xf3, 0x52, 0x8a, 0x25, 0x18, 0x15, 0x18, 0x35, 0x98, 0x83, 0x60, 0x5c, 0x21, 0x11, 0x2e, 0xd6, 0xbc, 0xc4, 0xbc, 0xfc, 0x62, 0x09, 0x26, 0x05, 0x46, 0x0d, 0xd6, 0x20, 0x08, 0xc7, 0xa9, 0xfe, 0xc2, 0x43, 0x39, 0x86, 0x1b, 0x0f, 0xe5, 0x18, 0x3e, 0x3c, 0x94, 0x63, 0x5c, 0xf1, 0x48, 0x8e, 0xf1, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x7c, 0xf1, 0x48, 0x8e, 0xe1, 0xc3, 0x23, 0x39, 0xc6, 0x15, 0x8f, 0xe5, 0x18, 0xb9, 0x84, 0x93, 0xf3, 0x73, 0xf5, 0xd0, 0xac, 0x76, 0xe2, 0x85, 0x59, 0x1c, 0x00, 0x12, 0x09, 0x60, 0x8c, 0x62, 0x2d, 0xa9, 0x2c, 0x48, 0x2d, 0xfe, 0xc1, 0xc8, 0xb8, 0x88, 0x89, 0xd9, 0x3d, 0xc0, 0x69, 0x15, 0x93, 0x9c, 0x3b, 0x44, 0x4b, 0x00, 0x54, 0x8b, 0x5e, 0x78, 0x6a, 0x4e, 0x8e, 0x77, 0x5e, 0x7e, 0x79, 0x5e, 0x08, 0x48, 0x65, 0x12, 0x1b, 0xd8, 0x2c, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x5a, 0x25, 0xa5, 0xe6, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/types/duration_gogo.go000066400000000000000000000053671317075173200217130ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package types import ( "fmt" "time" ) func NewPopulatedDuration(r interface { Int63() int64 }, easy bool) *Duration { this := &Duration{} maxSecs := time.Hour.Nanoseconds() / 1e9 max := 2 * maxSecs s := int64(r.Int63()) % max s -= maxSecs neg := int64(1) if s < 0 { neg = -1 } this.Seconds = s this.Nanos = int32(neg * (r.Int63() % 1e9)) return this } func (d *Duration) String() string { td, err := DurationFromProto(d) if err != nil { return fmt.Sprintf("(%v)", err) } return td.String() } func NewPopulatedStdDuration(r interface { Int63() int64 }, easy bool) *time.Duration { dur := NewPopulatedDuration(r, easy) d, err := DurationFromProto(dur) if err != nil { return nil } return &d } func SizeOfStdDuration(d time.Duration) int { dur := DurationProto(d) return dur.Size() } func StdDurationMarshal(d time.Duration) ([]byte, error) { size := SizeOfStdDuration(d) buf := make([]byte, size) _, err := StdDurationMarshalTo(d, buf) return buf, err } func StdDurationMarshalTo(d time.Duration, data []byte) (int, error) { dur := DurationProto(d) return dur.MarshalTo(data) } func StdDurationUnmarshal(d *time.Duration, data []byte) error { dur := &Duration{} if err := dur.Unmarshal(data); err != nil { return err } dd, err := DurationFromProto(dur) if err != nil { return err } *d = dd return nil } golang-gogoprotobuf-0.5/types/duration_test.go000066400000000000000000000117011317075173200217240ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. package types import ( "math" "testing" "time" "github.com/gogo/protobuf/proto" ) const ( minGoSeconds = math.MinInt64 / int64(1e9) maxGoSeconds = math.MaxInt64 / int64(1e9) ) var durationTests = []struct { proto *Duration isValid bool inRange bool dur time.Duration }{ // The zero duration. {&Duration{Seconds: 0, Nanos: 0}, true, true, 0}, // Some ordinary non-zero durations. {&Duration{Seconds: 100, Nanos: 0}, true, true, 100 * time.Second}, {&Duration{Seconds: -100, Nanos: 0}, true, true, -100 * time.Second}, {&Duration{Seconds: 100, Nanos: 987}, true, true, 100*time.Second + 987}, {&Duration{Seconds: -100, Nanos: -987}, true, true, -(100*time.Second + 987)}, // The largest duration representable in Go. {&Duration{Seconds: maxGoSeconds, Nanos: int32(math.MaxInt64 - 1e9*maxGoSeconds)}, true, true, math.MaxInt64}, // The smallest duration representable in Go. {&Duration{Seconds: minGoSeconds, Nanos: int32(math.MinInt64 - 1e9*minGoSeconds)}, true, true, math.MinInt64}, {nil, false, false, 0}, {&Duration{Seconds: -100, Nanos: 987}, false, false, 0}, {&Duration{Seconds: 100, Nanos: -987}, false, false, 0}, {&Duration{Seconds: math.MinInt64, Nanos: 0}, false, false, 0}, {&Duration{Seconds: math.MaxInt64, Nanos: 0}, false, false, 0}, // The largest valid duration. {&Duration{Seconds: maxSeconds, Nanos: 1e9 - 1}, true, false, 0}, // The smallest valid duration. {&Duration{Seconds: minSeconds, Nanos: -(1e9 - 1)}, true, false, 0}, // The smallest invalid duration above the valid range. {&Duration{Seconds: maxSeconds + 1, Nanos: 0}, false, false, 0}, // The largest invalid duration below the valid range. {&Duration{Seconds: minSeconds - 1, Nanos: -(1e9 - 1)}, false, false, 0}, // One nanosecond past the largest duration representable in Go. {&Duration{Seconds: maxGoSeconds, Nanos: int32(math.MaxInt64-1e9*maxGoSeconds) + 1}, true, false, 0}, // One nanosecond past the smallest duration representable in Go. {&Duration{Seconds: minGoSeconds, Nanos: int32(math.MinInt64-1e9*minGoSeconds) - 1}, true, false, 0}, // One second past the largest duration representable in Go. {&Duration{Seconds: maxGoSeconds + 1, Nanos: int32(math.MaxInt64 - 1e9*maxGoSeconds)}, true, false, 0}, // One second past the smallest duration representable in Go. {&Duration{Seconds: minGoSeconds - 1, Nanos: int32(math.MinInt64 - 1e9*minGoSeconds)}, true, false, 0}, } func TestValidateDuration(t *testing.T) { for _, test := range durationTests { err := validateDuration(test.proto) gotValid := (err == nil) if gotValid != test.isValid { t.Errorf("validateDuration(%v) = %t, want %t", test.proto, gotValid, test.isValid) } } } func TestDurationFromProto(t *testing.T) { for _, test := range durationTests { got, err := DurationFromProto(test.proto) gotOK := (err == nil) wantOK := test.isValid && test.inRange if gotOK != wantOK { t.Errorf("DurationFromProto(%v) ok = %t, want %t", test.proto, gotOK, wantOK) } if err == nil && got != test.dur { t.Errorf("DurationFromProto(%v) = %v, want %v", test.proto, got, test.dur) } } } func TestDurationProto(t *testing.T) { for _, test := range durationTests { if test.isValid && test.inRange { got := DurationProto(test.dur) if !proto.Equal(got, test.proto) { t.Errorf("DurationProto(%v) = %v, want %v", test.dur, got, test.proto) } } } } golang-gogoprotobuf-0.5/types/empty.pb.go000066400000000000000000000235351317075173200206060ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: empty.proto /* Package types is a generated protocol buffer package. It is generated from these files: empty.proto It has these top-level messages: Empty */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package // A generic empty message that you can re-use to avoid defining duplicated // empty messages in your APIs. A typical example is to use it as the request // or the response type of an API method. For instance: // // service Foo { // rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); // } // // The JSON representation for `Empty` is empty JSON object `{}`. type Empty struct { } func (m *Empty) Reset() { *m = Empty{} } func (*Empty) ProtoMessage() {} func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptorEmpty, []int{0} } func (*Empty) XXX_WellKnownType() string { return "Empty" } func init() { proto.RegisterType((*Empty)(nil), "google.protobuf.Empty") } func (this *Empty) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Empty) if !ok { that2, ok := that.(Empty) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } return 0 } func (this *Empty) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Empty) if !ok { that2, ok := that.(Empty) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } return true } func (this *Empty) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 4) s = append(s, "&types.Empty{") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringEmpty(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Empty) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Empty) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l return i, nil } func encodeVarintEmpty(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedEmpty(r randyEmpty, easy bool) *Empty { this := &Empty{} if !easy && r.Intn(10) != 0 { } return this } type randyEmpty interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneEmpty(r randyEmpty) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringEmpty(r randyEmpty) string { v1 := r.Intn(100) tmps := make([]rune, v1) for i := 0; i < v1; i++ { tmps[i] = randUTF8RuneEmpty(r) } return string(tmps) } func randUnrecognizedEmpty(r randyEmpty, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldEmpty(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldEmpty(dAtA []byte, r randyEmpty, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateEmpty(dAtA, uint64(key)) v2 := r.Int63() if r.Intn(2) == 0 { v2 *= -1 } dAtA = encodeVarintPopulateEmpty(dAtA, uint64(v2)) case 1: dAtA = encodeVarintPopulateEmpty(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateEmpty(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateEmpty(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateEmpty(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateEmpty(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Empty) Size() (n int) { var l int _ = l return n } func sovEmpty(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozEmpty(x uint64) (n int) { return sovEmpty(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Empty) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Empty{`, `}`, }, "") return s } func valueToStringEmpty(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Empty) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEmpty } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Empty: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Empty: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipEmpty(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthEmpty } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipEmpty(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEmpty } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEmpty } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEmpty } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthEmpty } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowEmpty } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipEmpty(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthEmpty = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowEmpty = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("empty.proto", fileDescriptorEmpty) } var fileDescriptorEmpty = []byte{ // 169 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4e, 0xcd, 0x2d, 0x28, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x4f, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0x85, 0xf0, 0x92, 0x4a, 0xd3, 0x94, 0xd8, 0xb9, 0x58, 0x5d, 0x41, 0xf2, 0x4e, 0x2d, 0x8c, 0x17, 0x1e, 0xca, 0x31, 0xdc, 0x78, 0x28, 0xc7, 0xf0, 0xe1, 0xa1, 0x1c, 0xe3, 0x8f, 0x87, 0x72, 0x8c, 0x0d, 0x8f, 0xe4, 0x18, 0x57, 0x3c, 0x92, 0x63, 0x3c, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x5f, 0x3c, 0x92, 0x63, 0xf8, 0x00, 0x12, 0x7f, 0x2c, 0xc7, 0xc8, 0x25, 0x9c, 0x9c, 0x9f, 0xab, 0x87, 0x66, 0xa0, 0x13, 0x17, 0xd8, 0xb8, 0x00, 0x10, 0x37, 0x80, 0x31, 0x8a, 0xb5, 0xa4, 0xb2, 0x20, 0xb5, 0xf8, 0x07, 0x23, 0xe3, 0x22, 0x26, 0x66, 0xf7, 0x00, 0xa7, 0x55, 0x4c, 0x72, 0xee, 0x10, 0xf5, 0x01, 0x50, 0xf5, 0x7a, 0xe1, 0xa9, 0x39, 0x39, 0xde, 0x79, 0xf9, 0xe5, 0x79, 0x21, 0x20, 0x95, 0x49, 0x6c, 0x60, 0x83, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x7c, 0xa8, 0xf0, 0xc4, 0xb6, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/types/field_mask.pb.go000066400000000000000000000426121317075173200215430ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: field_mask.proto /* Package types is a generated protocol buffer package. It is generated from these files: field_mask.proto It has these top-level messages: FieldMask */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package // `FieldMask` represents a set of symbolic field paths, for example: // // paths: "f.a" // paths: "f.b.d" // // Here `f` represents a field in some root message, `a` and `b` // fields in the message found in `f`, and `d` a field found in the // message in `f.b`. // // Field masks are used to specify a subset of fields that should be // returned by a get operation or modified by an update operation. // Field masks also have a custom JSON encoding (see below). // // # Field Masks in Projections // // When used in the context of a projection, a response message or // sub-message is filtered by the API to only contain those fields as // specified in the mask. For example, if the mask in the previous // example is applied to a response message as follows: // // f { // a : 22 // b { // d : 1 // x : 2 // } // y : 13 // } // z: 8 // // The result will not contain specific values for fields x,y and z // (their value will be set to the default, and omitted in proto text // output): // // // f { // a : 22 // b { // d : 1 // } // } // // A repeated field is not allowed except at the last position of a // paths string. // // If a FieldMask object is not present in a get operation, the // operation applies to all fields (as if a FieldMask of all fields // had been specified). // // Note that a field mask does not necessarily apply to the // top-level response message. In case of a REST get operation, the // field mask applies directly to the response, but in case of a REST // list operation, the mask instead applies to each individual message // in the returned resource list. In case of a REST custom method, // other definitions may be used. Where the mask applies will be // clearly documented together with its declaration in the API. In // any case, the effect on the returned resource/resources is required // behavior for APIs. // // # Field Masks in Update Operations // // A field mask in update operations specifies which fields of the // targeted resource are going to be updated. The API is required // to only change the values of the fields as specified in the mask // and leave the others untouched. If a resource is passed in to // describe the updated values, the API ignores the values of all // fields not covered by the mask. // // If a repeated field is specified for an update operation, the existing // repeated values in the target resource will be overwritten by the new values. // Note that a repeated field is only allowed in the last position of a `paths` // string. // // If a sub-message is specified in the last position of the field mask for an // update operation, then the existing sub-message in the target resource is // overwritten. Given the target message: // // f { // b { // d : 1 // x : 2 // } // c : 1 // } // // And an update message: // // f { // b { // d : 10 // } // } // // then if the field mask is: // // paths: "f.b" // // then the result will be: // // f { // b { // d : 10 // } // c : 1 // } // // However, if the update mask was: // // paths: "f.b.d" // // then the result would be: // // f { // b { // d : 10 // x : 2 // } // c : 1 // } // // In order to reset a field's value to the default, the field must // be in the mask and set to the default value in the provided resource. // Hence, in order to reset all fields of a resource, provide a default // instance of the resource and set all fields in the mask, or do // not provide a mask as described below. // // If a field mask is not present on update, the operation applies to // all fields (as if a field mask of all fields has been specified). // Note that in the presence of schema evolution, this may mean that // fields the client does not know and has therefore not filled into // the request will be reset to their default. If this is unwanted // behavior, a specific service may require a client to always specify // a field mask, producing an error if not. // // As with get operations, the location of the resource which // describes the updated values in the request message depends on the // operation kind. In any case, the effect of the field mask is // required to be honored by the API. // // ## Considerations for HTTP REST // // The HTTP kind of an update operation which uses a field mask must // be set to PATCH instead of PUT in order to satisfy HTTP semantics // (PUT must only be used for full updates). // // # JSON Encoding of Field Masks // // In JSON, a field mask is encoded as a single string where paths are // separated by a comma. Fields name in each path are converted // to/from lower-camel naming conventions. // // As an example, consider the following message declarations: // // message Profile { // User user = 1; // Photo photo = 2; // } // message User { // string display_name = 1; // string address = 2; // } // // In proto a field mask for `Profile` may look as such: // // mask { // paths: "user.display_name" // paths: "photo" // } // // In JSON, the same mask is represented as below: // // { // mask: "user.displayName,photo" // } // // # Field Masks and Oneof Fields // // Field masks treat fields in oneofs just as regular fields. Consider the // following message: // // message SampleMessage { // oneof test_oneof { // string name = 4; // SubMessage sub_message = 9; // } // } // // The field mask can be: // // mask { // paths: "name" // } // // Or: // // mask { // paths: "sub_message" // } // // Note that oneof type names ("test_oneof" in this case) cannot be used in // paths. type FieldMask struct { // The set of field mask paths. Paths []string `protobuf:"bytes,1,rep,name=paths" json:"paths,omitempty"` } func (m *FieldMask) Reset() { *m = FieldMask{} } func (*FieldMask) ProtoMessage() {} func (*FieldMask) Descriptor() ([]byte, []int) { return fileDescriptorFieldMask, []int{0} } func (m *FieldMask) GetPaths() []string { if m != nil { return m.Paths } return nil } func init() { proto.RegisterType((*FieldMask)(nil), "google.protobuf.FieldMask") } func (this *FieldMask) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*FieldMask) if !ok { that2, ok := that.(FieldMask) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if len(this.Paths) != len(that1.Paths) { if len(this.Paths) < len(that1.Paths) { return -1 } return 1 } for i := range this.Paths { if this.Paths[i] != that1.Paths[i] { if this.Paths[i] < that1.Paths[i] { return -1 } return 1 } } return 0 } func (this *FieldMask) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FieldMask) if !ok { that2, ok := that.(FieldMask) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Paths) != len(that1.Paths) { return false } for i := range this.Paths { if this.Paths[i] != that1.Paths[i] { return false } } return true } func (this *FieldMask) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.FieldMask{") s = append(s, "Paths: "+fmt.Sprintf("%#v", this.Paths)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringFieldMask(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *FieldMask) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FieldMask) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Paths) > 0 { for _, s := range m.Paths { dAtA[i] = 0xa i++ l = len(s) for l >= 1<<7 { dAtA[i] = uint8(uint64(l)&0x7f | 0x80) l >>= 7 i++ } dAtA[i] = uint8(l) i++ i += copy(dAtA[i:], s) } } return i, nil } func encodeVarintFieldMask(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedFieldMask(r randyFieldMask, easy bool) *FieldMask { this := &FieldMask{} v1 := r.Intn(10) this.Paths = make([]string, v1) for i := 0; i < v1; i++ { this.Paths[i] = string(randStringFieldMask(r)) } if !easy && r.Intn(10) != 0 { } return this } type randyFieldMask interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneFieldMask(r randyFieldMask) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringFieldMask(r randyFieldMask) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneFieldMask(r) } return string(tmps) } func randUnrecognizedFieldMask(r randyFieldMask, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldFieldMask(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldFieldMask(dAtA []byte, r randyFieldMask, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateFieldMask(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateFieldMask(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateFieldMask(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateFieldMask(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateFieldMask(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateFieldMask(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateFieldMask(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *FieldMask) Size() (n int) { var l int _ = l if len(m.Paths) > 0 { for _, s := range m.Paths { l = len(s) n += 1 + l + sovFieldMask(uint64(l)) } } return n } func sovFieldMask(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozFieldMask(x uint64) (n int) { return sovFieldMask(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *FieldMask) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FieldMask{`, `Paths:` + fmt.Sprintf("%v", this.Paths) + `,`, `}`, }, "") return s } func valueToStringFieldMask(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *FieldMask) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFieldMask } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FieldMask: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FieldMask: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Paths", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowFieldMask } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthFieldMask } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Paths = append(m.Paths, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipFieldMask(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthFieldMask } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipFieldMask(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowFieldMask } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowFieldMask } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowFieldMask } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthFieldMask } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowFieldMask } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipFieldMask(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthFieldMask = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowFieldMask = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("field_mask.proto", fileDescriptorFieldMask) } var fileDescriptorFieldMask = []byte{ // 193 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x48, 0xcb, 0x4c, 0xcd, 0x49, 0x89, 0xcf, 0x4d, 0x2c, 0xce, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x4f, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0x85, 0xf0, 0x92, 0x4a, 0xd3, 0x94, 0x14, 0xb9, 0x38, 0xdd, 0x40, 0x8a, 0x7c, 0x13, 0x8b, 0xb3, 0x85, 0x44, 0xb8, 0x58, 0x0b, 0x12, 0x4b, 0x32, 0x8a, 0x25, 0x18, 0x15, 0x98, 0x35, 0x38, 0x83, 0x20, 0x1c, 0xa7, 0x56, 0xc6, 0x0b, 0x0f, 0xe5, 0x18, 0x6e, 0x3c, 0x94, 0x63, 0xf8, 0xf0, 0x50, 0x8e, 0xf1, 0xc7, 0x43, 0x39, 0xc6, 0x86, 0x47, 0x72, 0x8c, 0x2b, 0x1e, 0xc9, 0x31, 0x9e, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x2f, 0x1e, 0xc9, 0x31, 0x7c, 0x00, 0x89, 0x3f, 0x96, 0x63, 0xe4, 0x12, 0x4e, 0xce, 0xcf, 0xd5, 0x43, 0xb3, 0xca, 0x89, 0x0f, 0x6e, 0x51, 0x00, 0x48, 0x28, 0x80, 0x31, 0x8a, 0xb5, 0xa4, 0xb2, 0x20, 0xb5, 0x78, 0x11, 0x13, 0xb3, 0x7b, 0x80, 0xd3, 0x2a, 0x26, 0x39, 0x77, 0x88, 0x86, 0x00, 0xa8, 0x06, 0xbd, 0xf0, 0xd4, 0x9c, 0x1c, 0xef, 0xbc, 0xfc, 0xf2, 0xbc, 0x10, 0x90, 0xb2, 0x24, 0x36, 0xb0, 0x49, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x51, 0x31, 0x89, 0xb5, 0xd6, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/types/struct.pb.go000066400000000000000000001263371317075173200210000ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: struct.proto /* Package types is a generated protocol buffer package. It is generated from these files: struct.proto It has these top-level messages: Struct Value ListValue */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import strconv "strconv" import strings "strings" import reflect "reflect" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package // `NullValue` is a singleton enumeration to represent the null value for the // `Value` type union. // // The JSON representation for `NullValue` is JSON `null`. type NullValue int32 const ( // Null value. NULL_VALUE NullValue = 0 ) var NullValue_name = map[int32]string{ 0: "NULL_VALUE", } var NullValue_value = map[string]int32{ "NULL_VALUE": 0, } func (NullValue) EnumDescriptor() ([]byte, []int) { return fileDescriptorStruct, []int{0} } func (NullValue) XXX_WellKnownType() string { return "NullValue" } // `Struct` represents a structured data value, consisting of fields // which map to dynamically typed values. In some languages, `Struct` // might be supported by a native representation. For example, in // scripting languages like JS a struct is represented as an // object. The details of that representation are described together // with the proto support for the language. // // The JSON representation for `Struct` is JSON object. type Struct struct { // Unordered map of dynamically typed values. Fields map[string]*Value `protobuf:"bytes,1,rep,name=fields" json:"fields,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` } func (m *Struct) Reset() { *m = Struct{} } func (*Struct) ProtoMessage() {} func (*Struct) Descriptor() ([]byte, []int) { return fileDescriptorStruct, []int{0} } func (*Struct) XXX_WellKnownType() string { return "Struct" } func (m *Struct) GetFields() map[string]*Value { if m != nil { return m.Fields } return nil } // `Value` represents a dynamically typed value which can be either // null, a number, a string, a boolean, a recursive struct value, or a // list of values. A producer of value is expected to set one of that // variants, absence of any variant indicates an error. // // The JSON representation for `Value` is JSON value. type Value struct { // The kind of value. // // Types that are valid to be assigned to Kind: // *Value_NullValue // *Value_NumberValue // *Value_StringValue // *Value_BoolValue // *Value_StructValue // *Value_ListValue Kind isValue_Kind `protobuf_oneof:"kind"` } func (m *Value) Reset() { *m = Value{} } func (*Value) ProtoMessage() {} func (*Value) Descriptor() ([]byte, []int) { return fileDescriptorStruct, []int{1} } func (*Value) XXX_WellKnownType() string { return "Value" } type isValue_Kind interface { isValue_Kind() Equal(interface{}) bool MarshalTo([]byte) (int, error) Size() int } type Value_NullValue struct { NullValue NullValue `protobuf:"varint,1,opt,name=null_value,json=nullValue,proto3,enum=google.protobuf.NullValue,oneof"` } type Value_NumberValue struct { NumberValue float64 `protobuf:"fixed64,2,opt,name=number_value,json=numberValue,proto3,oneof"` } type Value_StringValue struct { StringValue string `protobuf:"bytes,3,opt,name=string_value,json=stringValue,proto3,oneof"` } type Value_BoolValue struct { BoolValue bool `protobuf:"varint,4,opt,name=bool_value,json=boolValue,proto3,oneof"` } type Value_StructValue struct { StructValue *Struct `protobuf:"bytes,5,opt,name=struct_value,json=structValue,oneof"` } type Value_ListValue struct { ListValue *ListValue `protobuf:"bytes,6,opt,name=list_value,json=listValue,oneof"` } func (*Value_NullValue) isValue_Kind() {} func (*Value_NumberValue) isValue_Kind() {} func (*Value_StringValue) isValue_Kind() {} func (*Value_BoolValue) isValue_Kind() {} func (*Value_StructValue) isValue_Kind() {} func (*Value_ListValue) isValue_Kind() {} func (m *Value) GetKind() isValue_Kind { if m != nil { return m.Kind } return nil } func (m *Value) GetNullValue() NullValue { if x, ok := m.GetKind().(*Value_NullValue); ok { return x.NullValue } return NULL_VALUE } func (m *Value) GetNumberValue() float64 { if x, ok := m.GetKind().(*Value_NumberValue); ok { return x.NumberValue } return 0 } func (m *Value) GetStringValue() string { if x, ok := m.GetKind().(*Value_StringValue); ok { return x.StringValue } return "" } func (m *Value) GetBoolValue() bool { if x, ok := m.GetKind().(*Value_BoolValue); ok { return x.BoolValue } return false } func (m *Value) GetStructValue() *Struct { if x, ok := m.GetKind().(*Value_StructValue); ok { return x.StructValue } return nil } func (m *Value) GetListValue() *ListValue { if x, ok := m.GetKind().(*Value_ListValue); ok { return x.ListValue } return nil } // XXX_OneofFuncs is for the internal use of the proto package. func (*Value) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _Value_OneofMarshaler, _Value_OneofUnmarshaler, _Value_OneofSizer, []interface{}{ (*Value_NullValue)(nil), (*Value_NumberValue)(nil), (*Value_StringValue)(nil), (*Value_BoolValue)(nil), (*Value_StructValue)(nil), (*Value_ListValue)(nil), } } func _Value_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*Value) // kind switch x := m.Kind.(type) { case *Value_NullValue: _ = b.EncodeVarint(1<<3 | proto.WireVarint) _ = b.EncodeVarint(uint64(x.NullValue)) case *Value_NumberValue: _ = b.EncodeVarint(2<<3 | proto.WireFixed64) _ = b.EncodeFixed64(math.Float64bits(x.NumberValue)) case *Value_StringValue: _ = b.EncodeVarint(3<<3 | proto.WireBytes) _ = b.EncodeStringBytes(x.StringValue) case *Value_BoolValue: t := uint64(0) if x.BoolValue { t = 1 } _ = b.EncodeVarint(4<<3 | proto.WireVarint) _ = b.EncodeVarint(t) case *Value_StructValue: _ = b.EncodeVarint(5<<3 | proto.WireBytes) if err := b.EncodeMessage(x.StructValue); err != nil { return err } case *Value_ListValue: _ = b.EncodeVarint(6<<3 | proto.WireBytes) if err := b.EncodeMessage(x.ListValue); err != nil { return err } case nil: default: return fmt.Errorf("Value.Kind has unexpected type %T", x) } return nil } func _Value_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*Value) switch tag { case 1: // kind.null_value if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Kind = &Value_NullValue{NullValue(x)} return true, err case 2: // kind.number_value if wire != proto.WireFixed64 { return true, proto.ErrInternalBadWireType } x, err := b.DecodeFixed64() m.Kind = &Value_NumberValue{math.Float64frombits(x)} return true, err case 3: // kind.string_value if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Kind = &Value_StringValue{x} return true, err case 4: // kind.bool_value if wire != proto.WireVarint { return true, proto.ErrInternalBadWireType } x, err := b.DecodeVarint() m.Kind = &Value_BoolValue{x != 0} return true, err case 5: // kind.struct_value if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(Struct) err := b.DecodeMessage(msg) m.Kind = &Value_StructValue{msg} return true, err case 6: // kind.list_value if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(ListValue) err := b.DecodeMessage(msg) m.Kind = &Value_ListValue{msg} return true, err default: return false, nil } } func _Value_OneofSizer(msg proto.Message) (n int) { m := msg.(*Value) // kind switch x := m.Kind.(type) { case *Value_NullValue: n += proto.SizeVarint(1<<3 | proto.WireVarint) n += proto.SizeVarint(uint64(x.NullValue)) case *Value_NumberValue: n += proto.SizeVarint(2<<3 | proto.WireFixed64) n += 8 case *Value_StringValue: n += proto.SizeVarint(3<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(len(x.StringValue))) n += len(x.StringValue) case *Value_BoolValue: n += proto.SizeVarint(4<<3 | proto.WireVarint) n += 1 case *Value_StructValue: s := proto.Size(x.StructValue) n += proto.SizeVarint(5<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case *Value_ListValue: s := proto.Size(x.ListValue) n += proto.SizeVarint(6<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } // `ListValue` is a wrapper around a repeated field of values. // // The JSON representation for `ListValue` is JSON array. type ListValue struct { // Repeated field of dynamically typed values. Values []*Value `protobuf:"bytes,1,rep,name=values" json:"values,omitempty"` } func (m *ListValue) Reset() { *m = ListValue{} } func (*ListValue) ProtoMessage() {} func (*ListValue) Descriptor() ([]byte, []int) { return fileDescriptorStruct, []int{2} } func (*ListValue) XXX_WellKnownType() string { return "ListValue" } func (m *ListValue) GetValues() []*Value { if m != nil { return m.Values } return nil } func init() { proto.RegisterType((*Struct)(nil), "google.protobuf.Struct") proto.RegisterType((*Value)(nil), "google.protobuf.Value") proto.RegisterType((*ListValue)(nil), "google.protobuf.ListValue") proto.RegisterEnum("google.protobuf.NullValue", NullValue_name, NullValue_value) } func (x NullValue) String() string { s, ok := NullValue_name[int32(x)] if ok { return s } return strconv.Itoa(int(x)) } func (this *Struct) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Struct) if !ok { that2, ok := that.(Struct) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Fields) != len(that1.Fields) { return false } for i := range this.Fields { if !this.Fields[i].Equal(that1.Fields[i]) { return false } } return true } func (this *Value) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Value) if !ok { that2, ok := that.(Value) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if that1.Kind == nil { if this.Kind != nil { return false } } else if this.Kind == nil { return false } else if !this.Kind.Equal(that1.Kind) { return false } return true } func (this *Value_NullValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Value_NullValue) if !ok { that2, ok := that.(Value_NullValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NullValue != that1.NullValue { return false } return true } func (this *Value_NumberValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Value_NumberValue) if !ok { that2, ok := that.(Value_NumberValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.NumberValue != that1.NumberValue { return false } return true } func (this *Value_StringValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Value_StringValue) if !ok { that2, ok := that.(Value_StringValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.StringValue != that1.StringValue { return false } return true } func (this *Value_BoolValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Value_BoolValue) if !ok { that2, ok := that.(Value_BoolValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.BoolValue != that1.BoolValue { return false } return true } func (this *Value_StructValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Value_StructValue) if !ok { that2, ok := that.(Value_StructValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.StructValue.Equal(that1.StructValue) { return false } return true } func (this *Value_ListValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Value_ListValue) if !ok { that2, ok := that.(Value_ListValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !this.ListValue.Equal(that1.ListValue) { return false } return true } func (this *ListValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*ListValue) if !ok { that2, ok := that.(ListValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if len(this.Values) != len(that1.Values) { return false } for i := range this.Values { if !this.Values[i].Equal(that1.Values[i]) { return false } } return true } func (this *Struct) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.Struct{") keysForFields := make([]string, 0, len(this.Fields)) for k := range this.Fields { keysForFields = append(keysForFields, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForFields) mapStringForFields := "map[string]*Value{" for _, k := range keysForFields { mapStringForFields += fmt.Sprintf("%#v: %#v,", k, this.Fields[k]) } mapStringForFields += "}" if this.Fields != nil { s = append(s, "Fields: "+mapStringForFields+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Value) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 10) s = append(s, "&types.Value{") if this.Kind != nil { s = append(s, "Kind: "+fmt.Sprintf("%#v", this.Kind)+",\n") } s = append(s, "}") return strings.Join(s, "") } func (this *Value_NullValue) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&types.Value_NullValue{` + `NullValue:` + fmt.Sprintf("%#v", this.NullValue) + `}`}, ", ") return s } func (this *Value_NumberValue) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&types.Value_NumberValue{` + `NumberValue:` + fmt.Sprintf("%#v", this.NumberValue) + `}`}, ", ") return s } func (this *Value_StringValue) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&types.Value_StringValue{` + `StringValue:` + fmt.Sprintf("%#v", this.StringValue) + `}`}, ", ") return s } func (this *Value_BoolValue) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&types.Value_BoolValue{` + `BoolValue:` + fmt.Sprintf("%#v", this.BoolValue) + `}`}, ", ") return s } func (this *Value_StructValue) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&types.Value_StructValue{` + `StructValue:` + fmt.Sprintf("%#v", this.StructValue) + `}`}, ", ") return s } func (this *Value_ListValue) GoString() string { if this == nil { return "nil" } s := strings.Join([]string{`&types.Value_ListValue{` + `ListValue:` + fmt.Sprintf("%#v", this.ListValue) + `}`}, ", ") return s } func (this *ListValue) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.ListValue{") if this.Values != nil { s = append(s, "Values: "+fmt.Sprintf("%#v", this.Values)+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringStruct(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Struct) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Struct) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Fields) > 0 { for k := range m.Fields { dAtA[i] = 0xa i++ v := m.Fields[k] msgSize := 0 if v != nil { msgSize = v.Size() msgSize += 1 + sovStruct(uint64(msgSize)) } mapSize := 1 + len(k) + sovStruct(uint64(len(k))) + msgSize i = encodeVarintStruct(dAtA, i, uint64(mapSize)) dAtA[i] = 0xa i++ i = encodeVarintStruct(dAtA, i, uint64(len(k))) i += copy(dAtA[i:], k) if v != nil { dAtA[i] = 0x12 i++ i = encodeVarintStruct(dAtA, i, uint64(v.Size())) n1, err := v.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n1 } } } return i, nil } func (m *Value) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Value) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Kind != nil { nn2, err := m.Kind.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += nn2 } return i, nil } func (m *Value_NullValue) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x8 i++ i = encodeVarintStruct(dAtA, i, uint64(m.NullValue)) return i, nil } func (m *Value_NumberValue) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x11 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.NumberValue)))) i += 8 return i, nil } func (m *Value_StringValue) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x1a i++ i = encodeVarintStruct(dAtA, i, uint64(len(m.StringValue))) i += copy(dAtA[i:], m.StringValue) return i, nil } func (m *Value_BoolValue) MarshalTo(dAtA []byte) (int, error) { i := 0 dAtA[i] = 0x20 i++ if m.BoolValue { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ return i, nil } func (m *Value_StructValue) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.StructValue != nil { dAtA[i] = 0x2a i++ i = encodeVarintStruct(dAtA, i, uint64(m.StructValue.Size())) n3, err := m.StructValue.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n3 } return i, nil } func (m *Value_ListValue) MarshalTo(dAtA []byte) (int, error) { i := 0 if m.ListValue != nil { dAtA[i] = 0x32 i++ i = encodeVarintStruct(dAtA, i, uint64(m.ListValue.Size())) n4, err := m.ListValue.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n4 } return i, nil } func (m *ListValue) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *ListValue) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Values) > 0 { for _, msg := range m.Values { dAtA[i] = 0xa i++ i = encodeVarintStruct(dAtA, i, uint64(msg.Size())) n, err := msg.MarshalTo(dAtA[i:]) if err != nil { return 0, err } i += n } } return i, nil } func encodeVarintStruct(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedStruct(r randyStruct, easy bool) *Struct { this := &Struct{} if r.Intn(10) == 0 { v1 := r.Intn(10) this.Fields = make(map[string]*Value) for i := 0; i < v1; i++ { this.Fields[randStringStruct(r)] = NewPopulatedValue(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedValue(r randyStruct, easy bool) *Value { this := &Value{} oneofNumber_Kind := []int32{1, 2, 3, 4, 5, 6}[r.Intn(6)] switch oneofNumber_Kind { case 1: this.Kind = NewPopulatedValue_NullValue(r, easy) case 2: this.Kind = NewPopulatedValue_NumberValue(r, easy) case 3: this.Kind = NewPopulatedValue_StringValue(r, easy) case 4: this.Kind = NewPopulatedValue_BoolValue(r, easy) case 5: this.Kind = NewPopulatedValue_StructValue(r, easy) case 6: this.Kind = NewPopulatedValue_ListValue(r, easy) } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedValue_NullValue(r randyStruct, easy bool) *Value_NullValue { this := &Value_NullValue{} this.NullValue = NullValue([]int32{0}[r.Intn(1)]) return this } func NewPopulatedValue_NumberValue(r randyStruct, easy bool) *Value_NumberValue { this := &Value_NumberValue{} this.NumberValue = float64(r.Float64()) if r.Intn(2) == 0 { this.NumberValue *= -1 } return this } func NewPopulatedValue_StringValue(r randyStruct, easy bool) *Value_StringValue { this := &Value_StringValue{} this.StringValue = string(randStringStruct(r)) return this } func NewPopulatedValue_BoolValue(r randyStruct, easy bool) *Value_BoolValue { this := &Value_BoolValue{} this.BoolValue = bool(bool(r.Intn(2) == 0)) return this } func NewPopulatedValue_StructValue(r randyStruct, easy bool) *Value_StructValue { this := &Value_StructValue{} this.StructValue = NewPopulatedStruct(r, easy) return this } func NewPopulatedValue_ListValue(r randyStruct, easy bool) *Value_ListValue { this := &Value_ListValue{} this.ListValue = NewPopulatedListValue(r, easy) return this } func NewPopulatedListValue(r randyStruct, easy bool) *ListValue { this := &ListValue{} if r.Intn(10) == 0 { v2 := r.Intn(5) this.Values = make([]*Value, v2) for i := 0; i < v2; i++ { this.Values[i] = NewPopulatedValue(r, easy) } } if !easy && r.Intn(10) != 0 { } return this } type randyStruct interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneStruct(r randyStruct) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringStruct(r randyStruct) string { v3 := r.Intn(100) tmps := make([]rune, v3) for i := 0; i < v3; i++ { tmps[i] = randUTF8RuneStruct(r) } return string(tmps) } func randUnrecognizedStruct(r randyStruct, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldStruct(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldStruct(dAtA []byte, r randyStruct, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateStruct(dAtA, uint64(key)) v4 := r.Int63() if r.Intn(2) == 0 { v4 *= -1 } dAtA = encodeVarintPopulateStruct(dAtA, uint64(v4)) case 1: dAtA = encodeVarintPopulateStruct(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateStruct(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateStruct(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateStruct(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateStruct(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *Struct) Size() (n int) { var l int _ = l if len(m.Fields) > 0 { for k, v := range m.Fields { _ = k _ = v l = 0 if v != nil { l = v.Size() l += 1 + sovStruct(uint64(l)) } mapEntrySize := 1 + len(k) + sovStruct(uint64(len(k))) + l n += mapEntrySize + 1 + sovStruct(uint64(mapEntrySize)) } } return n } func (m *Value) Size() (n int) { var l int _ = l if m.Kind != nil { n += m.Kind.Size() } return n } func (m *Value_NullValue) Size() (n int) { var l int _ = l n += 1 + sovStruct(uint64(m.NullValue)) return n } func (m *Value_NumberValue) Size() (n int) { var l int _ = l n += 9 return n } func (m *Value_StringValue) Size() (n int) { var l int _ = l l = len(m.StringValue) n += 1 + l + sovStruct(uint64(l)) return n } func (m *Value_BoolValue) Size() (n int) { var l int _ = l n += 2 return n } func (m *Value_StructValue) Size() (n int) { var l int _ = l if m.StructValue != nil { l = m.StructValue.Size() n += 1 + l + sovStruct(uint64(l)) } return n } func (m *Value_ListValue) Size() (n int) { var l int _ = l if m.ListValue != nil { l = m.ListValue.Size() n += 1 + l + sovStruct(uint64(l)) } return n } func (m *ListValue) Size() (n int) { var l int _ = l if len(m.Values) > 0 { for _, e := range m.Values { l = e.Size() n += 1 + l + sovStruct(uint64(l)) } } return n } func sovStruct(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozStruct(x uint64) (n int) { return sovStruct(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Struct) String() string { if this == nil { return "nil" } keysForFields := make([]string, 0, len(this.Fields)) for k := range this.Fields { keysForFields = append(keysForFields, k) } github_com_gogo_protobuf_sortkeys.Strings(keysForFields) mapStringForFields := "map[string]*Value{" for _, k := range keysForFields { mapStringForFields += fmt.Sprintf("%v: %v,", k, this.Fields[k]) } mapStringForFields += "}" s := strings.Join([]string{`&Struct{`, `Fields:` + mapStringForFields + `,`, `}`, }, "") return s } func (this *Value) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Value{`, `Kind:` + fmt.Sprintf("%v", this.Kind) + `,`, `}`, }, "") return s } func (this *Value_NullValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Value_NullValue{`, `NullValue:` + fmt.Sprintf("%v", this.NullValue) + `,`, `}`, }, "") return s } func (this *Value_NumberValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Value_NumberValue{`, `NumberValue:` + fmt.Sprintf("%v", this.NumberValue) + `,`, `}`, }, "") return s } func (this *Value_StringValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Value_StringValue{`, `StringValue:` + fmt.Sprintf("%v", this.StringValue) + `,`, `}`, }, "") return s } func (this *Value_BoolValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Value_BoolValue{`, `BoolValue:` + fmt.Sprintf("%v", this.BoolValue) + `,`, `}`, }, "") return s } func (this *Value_StructValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Value_StructValue{`, `StructValue:` + strings.Replace(fmt.Sprintf("%v", this.StructValue), "Struct", "Struct", 1) + `,`, `}`, }, "") return s } func (this *Value_ListValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Value_ListValue{`, `ListValue:` + strings.Replace(fmt.Sprintf("%v", this.ListValue), "ListValue", "ListValue", 1) + `,`, `}`, }, "") return s } func (this *ListValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&ListValue{`, `Values:` + strings.Replace(fmt.Sprintf("%v", this.Values), "Value", "Value", 1) + `,`, `}`, }, "") return s } func valueToStringStruct(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Struct) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Struct: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Struct: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Fields", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthStruct } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } if m.Fields == nil { m.Fields = make(map[string]*Value) } var mapkey string var mapvalue *Value for iNdEx < postIndex { entryPreIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) if fieldNum == 1 { var stringLenmapkey uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLenmapkey |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLenmapkey := int(stringLenmapkey) if intStringLenmapkey < 0 { return ErrInvalidLengthStruct } postStringIndexmapkey := iNdEx + intStringLenmapkey if postStringIndexmapkey > l { return io.ErrUnexpectedEOF } mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) iNdEx = postStringIndexmapkey } else if fieldNum == 2 { var mapmsglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ mapmsglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if mapmsglen < 0 { return ErrInvalidLengthStruct } postmsgIndex := iNdEx + mapmsglen if mapmsglen < 0 { return ErrInvalidLengthStruct } if postmsgIndex > l { return io.ErrUnexpectedEOF } mapvalue = &Value{} if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { return err } iNdEx = postmsgIndex } else { iNdEx = entryPreIndex skippy, err := skipStruct(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthStruct } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } iNdEx += skippy } } m.Fields[mapkey] = mapvalue iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipStruct(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthStruct } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Value) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Value: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Value: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field NullValue", wireType) } var v NullValue for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (NullValue(b) & 0x7F) << shift if b < 0x80 { break } } m.Kind = &Value_NullValue{v} case 2: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field NumberValue", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Kind = &Value_NumberValue{float64(math.Float64frombits(v))} case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StringValue", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthStruct } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Kind = &Value_StringValue{string(dAtA[iNdEx:postIndex])} iNdEx = postIndex case 4: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field BoolValue", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } b := bool(v != 0) m.Kind = &Value_BoolValue{b} case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StructValue", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthStruct } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &Struct{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.Kind = &Value_StructValue{v} iNdEx = postIndex case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ListValue", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthStruct } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } v := &ListValue{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } m.Kind = &Value_ListValue{v} iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipStruct(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthStruct } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *ListValue) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: ListValue: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: ListValue: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Values", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowStruct } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthStruct } postIndex := iNdEx + msglen if postIndex > l { return io.ErrUnexpectedEOF } m.Values = append(m.Values, &Value{}) if err := m.Values[len(m.Values)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipStruct(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthStruct } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipStruct(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowStruct } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowStruct } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowStruct } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthStruct } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowStruct } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipStruct(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthStruct = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowStruct = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("struct.proto", fileDescriptorStruct) } var fileDescriptorStruct = []byte{ // 432 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xb1, 0x6f, 0xd3, 0x40, 0x14, 0xc6, 0xfd, 0x9c, 0xc6, 0x22, 0xcf, 0x55, 0xa9, 0x0e, 0x09, 0xa2, 0x22, 0x1d, 0x51, 0xba, 0x58, 0x08, 0x79, 0x08, 0x0b, 0x22, 0x2c, 0x58, 0x2a, 0xad, 0x84, 0x55, 0x19, 0x43, 0x8b, 0xc4, 0x12, 0xe1, 0xd4, 0x8d, 0xac, 0x5e, 0xef, 0x2a, 0xfb, 0x0c, 0xca, 0x06, 0xff, 0x05, 0x33, 0x13, 0x62, 0xe4, 0xaf, 0x60, 0xec, 0xc8, 0x88, 0x3d, 0x31, 0x76, 0xec, 0x88, 0xee, 0xce, 0x36, 0xa8, 0x51, 0x36, 0xbf, 0xcf, 0xbf, 0xf7, 0xbd, 0xf7, 0xbd, 0xc3, 0xcd, 0x42, 0xe6, 0xe5, 0x5c, 0xfa, 0x17, 0xb9, 0x90, 0x82, 0xdc, 0x5e, 0x08, 0xb1, 0x60, 0xa9, 0xa9, 0x92, 0xf2, 0x74, 0xfc, 0x05, 0xd0, 0x79, 0xad, 0x09, 0x32, 0x45, 0xe7, 0x34, 0x4b, 0xd9, 0x49, 0x31, 0x84, 0x51, 0xcf, 0x73, 0x27, 0xbb, 0xfe, 0x0d, 0xd8, 0x37, 0xa0, 0xff, 0x42, 0x53, 0x7b, 0x5c, 0xe6, 0xcb, 0xb8, 0x69, 0xd9, 0x79, 0x85, 0xee, 0x7f, 0x32, 0xd9, 0xc6, 0xde, 0x59, 0xba, 0x1c, 0xc2, 0x08, 0xbc, 0x41, 0xac, 0x3e, 0xc9, 0x23, 0xec, 0x7f, 0x78, 0xcf, 0xca, 0x74, 0x68, 0x8f, 0xc0, 0x73, 0x27, 0x77, 0x57, 0xcc, 0x8f, 0xd5, 0xdf, 0xd8, 0x40, 0x4f, 0xed, 0x27, 0x30, 0xfe, 0x61, 0x63, 0x5f, 0x8b, 0x64, 0x8a, 0xc8, 0x4b, 0xc6, 0x66, 0xc6, 0x40, 0x99, 0x6e, 0x4d, 0x76, 0x56, 0x0c, 0x0e, 0x4b, 0xc6, 0x34, 0x7f, 0x60, 0xc5, 0x03, 0xde, 0x16, 0x64, 0x17, 0x37, 0x79, 0x79, 0x9e, 0xa4, 0xf9, 0xec, 0xdf, 0x7c, 0x38, 0xb0, 0x62, 0xd7, 0xa8, 0x1d, 0x54, 0xc8, 0x3c, 0xe3, 0x8b, 0x06, 0xea, 0xa9, 0xc5, 0x15, 0x64, 0x54, 0x03, 0x3d, 0x40, 0x4c, 0x84, 0x68, 0xd7, 0xd8, 0x18, 0x81, 0x77, 0x4b, 0x8d, 0x52, 0x9a, 0x01, 0x9e, 0xb5, 0xd7, 0x6e, 0x90, 0xbe, 0x8e, 0x7a, 0x6f, 0xcd, 0x1d, 0x1b, 0xfb, 0x72, 0x2e, 0xbb, 0x94, 0x2c, 0x2b, 0xda, 0x5e, 0x47, 0xf7, 0xae, 0xa6, 0x0c, 0xb3, 0x42, 0x76, 0x29, 0x59, 0x5b, 0x04, 0x0e, 0x6e, 0x9c, 0x65, 0xfc, 0x64, 0x3c, 0xc5, 0x41, 0x47, 0x10, 0x1f, 0x1d, 0x6d, 0xd6, 0xbe, 0xe8, 0xba, 0xa3, 0x37, 0xd4, 0xc3, 0xfb, 0x38, 0xe8, 0x8e, 0x48, 0xb6, 0x10, 0x0f, 0x8f, 0xc2, 0x70, 0x76, 0xfc, 0x3c, 0x3c, 0xda, 0xdb, 0xb6, 0x82, 0xcf, 0x70, 0x59, 0x51, 0xeb, 0x57, 0x45, 0xad, 0xab, 0x8a, 0xc2, 0x75, 0x45, 0xe1, 0x53, 0x4d, 0xe1, 0x5b, 0x4d, 0xe1, 0x67, 0x4d, 0xe1, 0xb2, 0xa6, 0xf0, 0xbb, 0xa6, 0xf0, 0xa7, 0xa6, 0xd6, 0x55, 0x4d, 0x01, 0xef, 0xcc, 0xc5, 0xf9, 0xcd, 0x71, 0x81, 0x6b, 0x92, 0x47, 0xaa, 0x8e, 0xe0, 0x5d, 0x5f, 0x2e, 0x2f, 0xd2, 0xe2, 0x1a, 0xe0, 0xab, 0xdd, 0xdb, 0x8f, 0x82, 0xef, 0x36, 0xdd, 0x37, 0x0d, 0x51, 0xbb, 0xdf, 0xdb, 0x94, 0xb1, 0x97, 0x5c, 0x7c, 0xe4, 0x6f, 0x14, 0x99, 0x38, 0xda, 0xe9, 0xf1, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x75, 0xc5, 0x1c, 0x3b, 0xd5, 0x02, 0x00, 0x00, } golang-gogoprotobuf-0.5/types/timestamp.go000066400000000000000000000113721317075173200210470ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. package types // This file implements operations on google.protobuf.Timestamp. import ( "errors" "fmt" "time" ) const ( // Seconds field of the earliest valid Timestamp. // This is time.Date(1, 1, 1, 0, 0, 0, 0, time.UTC).Unix(). minValidSeconds = -62135596800 // Seconds field just after the latest valid Timestamp. // This is time.Date(10000, 1, 1, 0, 0, 0, 0, time.UTC).Unix(). maxValidSeconds = 253402300800 ) // validateTimestamp determines whether a Timestamp is valid. // A valid timestamp represents a time in the range // [0001-01-01, 10000-01-01) and has a Nanos field // in the range [0, 1e9). // // If the Timestamp is valid, validateTimestamp returns nil. // Otherwise, it returns an error that describes // the problem. // // Every valid Timestamp can be represented by a time.Time, but the converse is not true. func validateTimestamp(ts *Timestamp) error { if ts == nil { return errors.New("timestamp: nil Timestamp") } if ts.Seconds < minValidSeconds { return fmt.Errorf("timestamp: %#v before 0001-01-01", ts) } if ts.Seconds >= maxValidSeconds { return fmt.Errorf("timestamp: %#v after 10000-01-01", ts) } if ts.Nanos < 0 || ts.Nanos >= 1e9 { return fmt.Errorf("timestamp: %#v: nanos not in range [0, 1e9)", ts) } return nil } // TimestampFromProto converts a google.protobuf.Timestamp proto to a time.Time. // It returns an error if the argument is invalid. // // Unlike most Go functions, if Timestamp returns an error, the first return value // is not the zero time.Time. Instead, it is the value obtained from the // time.Unix function when passed the contents of the Timestamp, in the UTC // locale. This may or may not be a meaningful time; many invalid Timestamps // do map to valid time.Times. // // A nil Timestamp returns an error. The first return value in that case is // undefined. func TimestampFromProto(ts *Timestamp) (time.Time, error) { // Don't return the zero value on error, because corresponds to a valid // timestamp. Instead return whatever time.Unix gives us. var t time.Time if ts == nil { t = time.Unix(0, 0).UTC() // treat nil like the empty Timestamp } else { t = time.Unix(ts.Seconds, int64(ts.Nanos)).UTC() } return t, validateTimestamp(ts) } // TimestampNow returns a google.protobuf.Timestamp for the current time. func TimestampNow() *Timestamp { ts, err := TimestampProto(time.Now()) if err != nil { panic("ptypes: time.Now() out of Timestamp range") } return ts } // TimestampProto converts the time.Time to a google.protobuf.Timestamp proto. // It returns an error if the resulting Timestamp is invalid. func TimestampProto(t time.Time) (*Timestamp, error) { seconds := t.Unix() nanos := int32(t.Sub(time.Unix(seconds, 0))) ts := &Timestamp{ Seconds: seconds, Nanos: nanos, } if err := validateTimestamp(ts); err != nil { return nil, err } return ts, nil } // TimestampString returns the RFC 3339 string for valid Timestamps. For invalid // Timestamps, it returns an error message in parentheses. func TimestampString(ts *Timestamp) string { t, err := TimestampFromProto(ts) if err != nil { return fmt.Sprintf("(%v)", err) } return t.Format(time.RFC3339Nano) } golang-gogoprotobuf-0.5/types/timestamp.pb.go000066400000000000000000000323731317075173200214530ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: timestamp.proto /* Package types is a generated protocol buffer package. It is generated from these files: timestamp.proto It has these top-level messages: Timestamp */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package // A Timestamp represents a point in time independent of any time zone // or calendar, represented as seconds and fractions of seconds at // nanosecond resolution in UTC Epoch time. It is encoded using the // Proleptic Gregorian Calendar which extends the Gregorian calendar // backwards to year one. It is encoded assuming all minutes are 60 // seconds long, i.e. leap seconds are "smeared" so that no leap second // table is needed for interpretation. Range is from // 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. // By restricting to that range, we ensure that we can convert to // and from RFC 3339 date strings. // See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt). // // # Examples // // Example 1: Compute Timestamp from POSIX `time()`. // // Timestamp timestamp; // timestamp.set_seconds(time(NULL)); // timestamp.set_nanos(0); // // Example 2: Compute Timestamp from POSIX `gettimeofday()`. // // struct timeval tv; // gettimeofday(&tv, NULL); // // Timestamp timestamp; // timestamp.set_seconds(tv.tv_sec); // timestamp.set_nanos(tv.tv_usec * 1000); // // Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`. // // FILETIME ft; // GetSystemTimeAsFileTime(&ft); // UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime; // // // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z // // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z. // Timestamp timestamp; // timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL)); // timestamp.set_nanos((INT32) ((ticks % 10000000) * 100)); // // Example 4: Compute Timestamp from Java `System.currentTimeMillis()`. // // long millis = System.currentTimeMillis(); // // Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) // .setNanos((int) ((millis % 1000) * 1000000)).build(); // // // Example 5: Compute Timestamp from current time in Python. // // timestamp = Timestamp() // timestamp.GetCurrentTime() // // # JSON Mapping // // In JSON format, the Timestamp type is encoded as a string in the // [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the // format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" // where {year} is always expressed using four digits while {month}, {day}, // {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional // seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), // are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone // is required, though only UTC (as indicated by "Z") is presently supported. // // For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past // 01:30 UTC on January 15, 2017. // // In JavaScript, one can convert a Date object to this format using the // standard [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString] // method. In Python, a standard `datetime.datetime` object can be converted // to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) // with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one // can use the Joda Time's [`ISODateTimeFormat.dateTime()`]( // http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()) // to obtain a formatter capable of generating timestamps in this format. // // type Timestamp struct { // Represents seconds of UTC time since Unix epoch // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to // 9999-12-31T23:59:59Z inclusive. Seconds int64 `protobuf:"varint,1,opt,name=seconds,proto3" json:"seconds,omitempty"` // Non-negative fractions of a second at nanosecond resolution. Negative // second values with fractions must still have non-negative nanos values // that count forward in time. Must be from 0 to 999,999,999 // inclusive. Nanos int32 `protobuf:"varint,2,opt,name=nanos,proto3" json:"nanos,omitempty"` } func (m *Timestamp) Reset() { *m = Timestamp{} } func (*Timestamp) ProtoMessage() {} func (*Timestamp) Descriptor() ([]byte, []int) { return fileDescriptorTimestamp, []int{0} } func (*Timestamp) XXX_WellKnownType() string { return "Timestamp" } func (m *Timestamp) GetSeconds() int64 { if m != nil { return m.Seconds } return 0 } func (m *Timestamp) GetNanos() int32 { if m != nil { return m.Nanos } return 0 } func init() { proto.RegisterType((*Timestamp)(nil), "google.protobuf.Timestamp") } func (this *Timestamp) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Timestamp) if !ok { that2, ok := that.(Timestamp) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Seconds != that1.Seconds { if this.Seconds < that1.Seconds { return -1 } return 1 } if this.Nanos != that1.Nanos { if this.Nanos < that1.Nanos { return -1 } return 1 } return 0 } func (this *Timestamp) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Timestamp) if !ok { that2, ok := that.(Timestamp) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Seconds != that1.Seconds { return false } if this.Nanos != that1.Nanos { return false } return true } func (this *Timestamp) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&types.Timestamp{") s = append(s, "Seconds: "+fmt.Sprintf("%#v", this.Seconds)+",\n") s = append(s, "Nanos: "+fmt.Sprintf("%#v", this.Nanos)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringTimestamp(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Timestamp) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Timestamp) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Seconds != 0 { dAtA[i] = 0x8 i++ i = encodeVarintTimestamp(dAtA, i, uint64(m.Seconds)) } if m.Nanos != 0 { dAtA[i] = 0x10 i++ i = encodeVarintTimestamp(dAtA, i, uint64(m.Nanos)) } return i, nil } func encodeVarintTimestamp(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *Timestamp) Size() (n int) { var l int _ = l if m.Seconds != 0 { n += 1 + sovTimestamp(uint64(m.Seconds)) } if m.Nanos != 0 { n += 1 + sovTimestamp(uint64(m.Nanos)) } return n } func sovTimestamp(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozTimestamp(x uint64) (n int) { return sovTimestamp(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Timestamp) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTimestamp } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Timestamp: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Timestamp: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Seconds", wireType) } m.Seconds = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTimestamp } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Seconds |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Nanos", wireType) } m.Nanos = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTimestamp } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Nanos |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipTimestamp(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthTimestamp } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipTimestamp(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTimestamp } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTimestamp } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTimestamp } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthTimestamp } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowTimestamp } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipTimestamp(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthTimestamp = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTimestamp = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("timestamp.proto", fileDescriptorTimestamp) } var fileDescriptorTimestamp = []byte{ // 205 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2f, 0xc9, 0xcc, 0x4d, 0x2d, 0x2e, 0x49, 0xcc, 0x2d, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x4f, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0x85, 0xf0, 0x92, 0x4a, 0xd3, 0x94, 0xac, 0xb9, 0x38, 0x43, 0x60, 0x6a, 0x84, 0x24, 0xb8, 0xd8, 0x8b, 0x53, 0x93, 0xf3, 0xf3, 0x52, 0x8a, 0x25, 0x18, 0x15, 0x18, 0x35, 0x98, 0x83, 0x60, 0x5c, 0x21, 0x11, 0x2e, 0xd6, 0xbc, 0xc4, 0xbc, 0xfc, 0x62, 0x09, 0x26, 0x05, 0x46, 0x0d, 0xd6, 0x20, 0x08, 0xc7, 0xa9, 0x81, 0xf1, 0xc2, 0x43, 0x39, 0x86, 0x1b, 0x0f, 0xe5, 0x18, 0x3e, 0x3c, 0x94, 0x63, 0x5c, 0xf1, 0x48, 0x8e, 0xf1, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x7c, 0xf1, 0x48, 0x8e, 0xe1, 0xc3, 0x23, 0x39, 0xc6, 0x15, 0x8f, 0xe5, 0x18, 0xb9, 0x84, 0x93, 0xf3, 0x73, 0xf5, 0xd0, 0x2c, 0x77, 0xe2, 0x83, 0x5b, 0x1d, 0x00, 0x12, 0x0a, 0x60, 0x8c, 0x62, 0x2d, 0xa9, 0x2c, 0x48, 0x2d, 0xfe, 0xc1, 0xc8, 0xb8, 0x88, 0x89, 0xd9, 0x3d, 0xc0, 0x69, 0x15, 0x93, 0x9c, 0x3b, 0x44, 0x4f, 0x00, 0x54, 0x8f, 0x5e, 0x78, 0x6a, 0x4e, 0x8e, 0x77, 0x5e, 0x7e, 0x79, 0x5e, 0x08, 0x48, 0x65, 0x12, 0x1b, 0xd8, 0x30, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9b, 0xa2, 0x42, 0xda, 0xea, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/types/timestamp_gogo.go000066400000000000000000000051121317075173200220550ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2016, 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. package types import ( "time" ) func NewPopulatedTimestamp(r interface { Int63() int64 }, easy bool) *Timestamp { this := &Timestamp{} ns := int64(r.Int63()) this.Seconds = ns / 1e9 this.Nanos = int32(ns % 1e9) return this } func (ts *Timestamp) String() string { return TimestampString(ts) } func NewPopulatedStdTime(r interface { Int63() int64 }, easy bool) *time.Time { timestamp := NewPopulatedTimestamp(r, easy) t, err := TimestampFromProto(timestamp) if err != nil { return nil } return &t } func SizeOfStdTime(t time.Time) int { ts, err := TimestampProto(t) if err != nil { return 0 } return ts.Size() } func StdTimeMarshal(t time.Time) ([]byte, error) { size := SizeOfStdTime(t) buf := make([]byte, size) _, err := StdTimeMarshalTo(t, buf) return buf, err } func StdTimeMarshalTo(t time.Time, data []byte) (int, error) { ts, err := TimestampProto(t) if err != nil { return 0, err } return ts.MarshalTo(data) } func StdTimeUnmarshal(t *time.Time, data []byte) error { ts := &Timestamp{} if err := ts.Unmarshal(data); err != nil { return err } tt, err := TimestampFromProto(ts) if err != nil { return err } *t = tt return nil } golang-gogoprotobuf-0.5/types/timestamp_test.go000066400000000000000000000132461317075173200221100ustar00rootroot00000000000000// Go support for Protocol Buffers - Google's data interchange format // // Copyright 2016 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. package types import ( "math" "testing" "time" "github.com/gogo/protobuf/proto" ) var tests = []struct { ts *Timestamp valid bool t time.Time }{ // The timestamp representing the Unix epoch date. {&Timestamp{Seconds: 0, Nanos: 0}, true, utcDate(1970, 1, 1)}, // The smallest representable timestamp. {&Timestamp{Seconds: math.MinInt64, Nanos: math.MinInt32}, false, time.Unix(math.MinInt64, math.MinInt32).UTC()}, // The smallest representable timestamp with non-negative nanos. {&Timestamp{Seconds: math.MinInt64, Nanos: 0}, false, time.Unix(math.MinInt64, 0).UTC()}, // The earliest valid timestamp. {&Timestamp{Seconds: minValidSeconds, Nanos: 0}, true, utcDate(1, 1, 1)}, //"0001-01-01T00:00:00Z"}, // The largest representable timestamp. {&Timestamp{Seconds: math.MaxInt64, Nanos: math.MaxInt32}, false, time.Unix(math.MaxInt64, math.MaxInt32).UTC()}, // The largest representable timestamp with nanos in range. {&Timestamp{Seconds: math.MaxInt64, Nanos: 1e9 - 1}, false, time.Unix(math.MaxInt64, 1e9-1).UTC()}, // The largest valid timestamp. {&Timestamp{Seconds: maxValidSeconds - 1, Nanos: 1e9 - 1}, true, time.Date(9999, 12, 31, 23, 59, 59, 1e9-1, time.UTC)}, // The smallest invalid timestamp that is larger than the valid range. {&Timestamp{Seconds: maxValidSeconds, Nanos: 0}, false, time.Unix(maxValidSeconds, 0).UTC()}, // A date before the epoch. {&Timestamp{Seconds: -281836800, Nanos: 0}, true, utcDate(1961, 1, 26)}, // A date after the epoch. {&Timestamp{Seconds: 1296000000, Nanos: 0}, true, utcDate(2011, 1, 26)}, // A date after the epoch, in the middle of the day. {&Timestamp{Seconds: 1296012345, Nanos: 940483}, true, time.Date(2011, 1, 26, 3, 25, 45, 940483, time.UTC)}, } func TestValidateTimestamp(t *testing.T) { for _, s := range tests { got := validateTimestamp(s.ts) if (got == nil) != s.valid { t.Errorf("validateTimestamp(%v) = %v, want %v", s.ts, got, s.valid) } } } func TestTimestampFromProto(t *testing.T) { for _, s := range tests { got, err := TimestampFromProto(s.ts) if (err == nil) != s.valid { t.Errorf("TimestampFromProto(%v) error = %v, but valid = %t", s.ts, err, s.valid) } else if s.valid && got != s.t { t.Errorf("TimestampFromProto(%v) = %v, want %v", s.ts, got, s.t) } } // Special case: a nil TimestampFromProto is an error, but returns the 0 Unix time. got, err := TimestampFromProto(nil) want := time.Unix(0, 0).UTC() if got != want { t.Errorf("TimestampFromProto(nil) = %v, want %v", got, want) } if err == nil { t.Errorf("TimestampFromProto(nil) error = nil, expected error") } } func TestTimestampProto(t *testing.T) { for _, s := range tests { got, err := TimestampProto(s.t) if (err == nil) != s.valid { t.Errorf("TimestampProto(%v) error = %v, but valid = %t", s.t, err, s.valid) } else if s.valid && !proto.Equal(got, s.ts) { t.Errorf("TimestampProto(%v) = %v, want %v", s.t, got, s.ts) } } // No corresponding special case here: no time.Time results in a nil Timestamp. } func TestTimestampString(t *testing.T) { for _, test := range []struct { ts *Timestamp want string }{ // Not much testing needed because presumably time.Format is // well-tested. {&Timestamp{Seconds: 0, Nanos: 0}, "1970-01-01T00:00:00Z"}, {&Timestamp{Seconds: minValidSeconds - 1, Nanos: 0}, "(timestamp: &types.Timestamp{Seconds: -62135596801,\nNanos: 0,\n} before 0001-01-01)"}, } { got := TimestampString(test.ts) if got != test.want { t.Errorf("TimestampString(%v) = %q, want %q", test.ts, got, test.want) } } } func utcDate(year, month, day int) time.Time { return time.Date(year, time.Month(month), day, 0, 0, 0, 0, time.UTC) } func TestTimestampNow(t *testing.T) { // Bracket the expected time. before := time.Now() ts := TimestampNow() after := time.Now() tm, err := TimestampFromProto(ts) if err != nil { t.Errorf("between %v and %v\nTimestampNow() = %v\nwhich is invalid (%v)", before, after, ts, err) } if tm.Before(before) || tm.After(after) { t.Errorf("between %v and %v\nTimestamp(TimestampNow()) = %v", before, after, tm) } } golang-gogoprotobuf-0.5/types/wrappers.pb.go000066400000000000000000001322451317075173200213120ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: wrappers.proto /* Package types is a generated protocol buffer package. It is generated from these files: wrappers.proto It has these top-level messages: DoubleValue FloatValue Int64Value UInt64Value Int32Value UInt32Value BoolValue StringValue BytesValue */ package types import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import bytes "bytes" import strings "strings" import reflect "reflect" import encoding_binary "encoding/binary" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package // Wrapper message for `double`. // // The JSON representation for `DoubleValue` is JSON number. type DoubleValue struct { // The double value. Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"` } func (m *DoubleValue) Reset() { *m = DoubleValue{} } func (*DoubleValue) ProtoMessage() {} func (*DoubleValue) Descriptor() ([]byte, []int) { return fileDescriptorWrappers, []int{0} } func (*DoubleValue) XXX_WellKnownType() string { return "DoubleValue" } func (m *DoubleValue) GetValue() float64 { if m != nil { return m.Value } return 0 } // Wrapper message for `float`. // // The JSON representation for `FloatValue` is JSON number. type FloatValue struct { // The float value. Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"` } func (m *FloatValue) Reset() { *m = FloatValue{} } func (*FloatValue) ProtoMessage() {} func (*FloatValue) Descriptor() ([]byte, []int) { return fileDescriptorWrappers, []int{1} } func (*FloatValue) XXX_WellKnownType() string { return "FloatValue" } func (m *FloatValue) GetValue() float32 { if m != nil { return m.Value } return 0 } // Wrapper message for `int64`. // // The JSON representation for `Int64Value` is JSON string. type Int64Value struct { // The int64 value. Value int64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"` } func (m *Int64Value) Reset() { *m = Int64Value{} } func (*Int64Value) ProtoMessage() {} func (*Int64Value) Descriptor() ([]byte, []int) { return fileDescriptorWrappers, []int{2} } func (*Int64Value) XXX_WellKnownType() string { return "Int64Value" } func (m *Int64Value) GetValue() int64 { if m != nil { return m.Value } return 0 } // Wrapper message for `uint64`. // // The JSON representation for `UInt64Value` is JSON string. type UInt64Value struct { // The uint64 value. Value uint64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"` } func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { return fileDescriptorWrappers, []int{3} } func (*UInt64Value) XXX_WellKnownType() string { return "UInt64Value" } func (m *UInt64Value) GetValue() uint64 { if m != nil { return m.Value } return 0 } // Wrapper message for `int32`. // // The JSON representation for `Int32Value` is JSON number. type Int32Value struct { // The int32 value. Value int32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"` } func (m *Int32Value) Reset() { *m = Int32Value{} } func (*Int32Value) ProtoMessage() {} func (*Int32Value) Descriptor() ([]byte, []int) { return fileDescriptorWrappers, []int{4} } func (*Int32Value) XXX_WellKnownType() string { return "Int32Value" } func (m *Int32Value) GetValue() int32 { if m != nil { return m.Value } return 0 } // Wrapper message for `uint32`. // // The JSON representation for `UInt32Value` is JSON number. type UInt32Value struct { // The uint32 value. Value uint32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"` } func (m *UInt32Value) Reset() { *m = UInt32Value{} } func (*UInt32Value) ProtoMessage() {} func (*UInt32Value) Descriptor() ([]byte, []int) { return fileDescriptorWrappers, []int{5} } func (*UInt32Value) XXX_WellKnownType() string { return "UInt32Value" } func (m *UInt32Value) GetValue() uint32 { if m != nil { return m.Value } return 0 } // Wrapper message for `bool`. // // The JSON representation for `BoolValue` is JSON `true` and `false`. type BoolValue struct { // The bool value. Value bool `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"` } func (m *BoolValue) Reset() { *m = BoolValue{} } func (*BoolValue) ProtoMessage() {} func (*BoolValue) Descriptor() ([]byte, []int) { return fileDescriptorWrappers, []int{6} } func (*BoolValue) XXX_WellKnownType() string { return "BoolValue" } func (m *BoolValue) GetValue() bool { if m != nil { return m.Value } return false } // Wrapper message for `string`. // // The JSON representation for `StringValue` is JSON string. type StringValue struct { // The string value. Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` } func (m *StringValue) Reset() { *m = StringValue{} } func (*StringValue) ProtoMessage() {} func (*StringValue) Descriptor() ([]byte, []int) { return fileDescriptorWrappers, []int{7} } func (*StringValue) XXX_WellKnownType() string { return "StringValue" } func (m *StringValue) GetValue() string { if m != nil { return m.Value } return "" } // Wrapper message for `bytes`. // // The JSON representation for `BytesValue` is JSON string. type BytesValue struct { // The bytes value. Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` } func (m *BytesValue) Reset() { *m = BytesValue{} } func (*BytesValue) ProtoMessage() {} func (*BytesValue) Descriptor() ([]byte, []int) { return fileDescriptorWrappers, []int{8} } func (*BytesValue) XXX_WellKnownType() string { return "BytesValue" } func (m *BytesValue) GetValue() []byte { if m != nil { return m.Value } return nil } func init() { proto.RegisterType((*DoubleValue)(nil), "google.protobuf.DoubleValue") proto.RegisterType((*FloatValue)(nil), "google.protobuf.FloatValue") proto.RegisterType((*Int64Value)(nil), "google.protobuf.Int64Value") proto.RegisterType((*UInt64Value)(nil), "google.protobuf.UInt64Value") proto.RegisterType((*Int32Value)(nil), "google.protobuf.Int32Value") proto.RegisterType((*UInt32Value)(nil), "google.protobuf.UInt32Value") proto.RegisterType((*BoolValue)(nil), "google.protobuf.BoolValue") proto.RegisterType((*StringValue)(nil), "google.protobuf.StringValue") proto.RegisterType((*BytesValue)(nil), "google.protobuf.BytesValue") } func (this *DoubleValue) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*DoubleValue) if !ok { that2, ok := that.(DoubleValue) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } return 0 } func (this *FloatValue) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*FloatValue) if !ok { that2, ok := that.(FloatValue) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } return 0 } func (this *Int64Value) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Int64Value) if !ok { that2, ok := that.(Int64Value) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } return 0 } func (this *UInt64Value) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UInt64Value) if !ok { that2, ok := that.(UInt64Value) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } return 0 } func (this *Int32Value) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*Int32Value) if !ok { that2, ok := that.(Int32Value) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } return 0 } func (this *UInt32Value) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*UInt32Value) if !ok { that2, ok := that.(UInt32Value) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } return 0 } func (this *BoolValue) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*BoolValue) if !ok { that2, ok := that.(BoolValue) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if !this.Value { return -1 } return 1 } return 0 } func (this *StringValue) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*StringValue) if !ok { that2, ok := that.(StringValue) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if this.Value != that1.Value { if this.Value < that1.Value { return -1 } return 1 } return 0 } func (this *BytesValue) Compare(that interface{}) int { if that == nil { if this == nil { return 0 } return 1 } that1, ok := that.(*BytesValue) if !ok { that2, ok := that.(BytesValue) if ok { that1 = &that2 } else { return 1 } } if that1 == nil { if this == nil { return 0 } return 1 } else if this == nil { return -1 } if c := bytes.Compare(this.Value, that1.Value); c != 0 { return c } return 0 } func (this *DoubleValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*DoubleValue) if !ok { that2, ok := that.(DoubleValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } return true } func (this *FloatValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*FloatValue) if !ok { that2, ok := that.(FloatValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } return true } func (this *Int64Value) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Int64Value) if !ok { that2, ok := that.(Int64Value) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } return true } func (this *UInt64Value) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UInt64Value) if !ok { that2, ok := that.(UInt64Value) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } return true } func (this *Int32Value) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Int32Value) if !ok { that2, ok := that.(Int32Value) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } return true } func (this *UInt32Value) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*UInt32Value) if !ok { that2, ok := that.(UInt32Value) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } return true } func (this *BoolValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*BoolValue) if !ok { that2, ok := that.(BoolValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } return true } func (this *StringValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*StringValue) if !ok { that2, ok := that.(StringValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Value != that1.Value { return false } return true } func (this *BytesValue) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*BytesValue) if !ok { that2, ok := that.(BytesValue) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if !bytes.Equal(this.Value, that1.Value) { return false } return true } func (this *DoubleValue) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.DoubleValue{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *FloatValue) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.FloatValue{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *Int64Value) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.Int64Value{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *UInt64Value) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.UInt64Value{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *Int32Value) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.Int32Value{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *UInt32Value) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.UInt32Value{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *BoolValue) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.BoolValue{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *StringValue) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.StringValue{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func (this *BytesValue) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&types.BytesValue{") s = append(s, "Value: "+fmt.Sprintf("%#v", this.Value)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringWrappers(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *DoubleValue) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *DoubleValue) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Value != 0 { dAtA[i] = 0x9 i++ encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Value)))) i += 8 } return i, nil } func (m *FloatValue) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *FloatValue) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Value != 0 { dAtA[i] = 0xd i++ encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.Value)))) i += 4 } return i, nil } func (m *Int64Value) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Int64Value) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Value != 0 { dAtA[i] = 0x8 i++ i = encodeVarintWrappers(dAtA, i, uint64(m.Value)) } return i, nil } func (m *UInt64Value) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UInt64Value) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Value != 0 { dAtA[i] = 0x8 i++ i = encodeVarintWrappers(dAtA, i, uint64(m.Value)) } return i, nil } func (m *Int32Value) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Int32Value) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Value != 0 { dAtA[i] = 0x8 i++ i = encodeVarintWrappers(dAtA, i, uint64(m.Value)) } return i, nil } func (m *UInt32Value) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *UInt32Value) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Value != 0 { dAtA[i] = 0x8 i++ i = encodeVarintWrappers(dAtA, i, uint64(m.Value)) } return i, nil } func (m *BoolValue) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *BoolValue) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Value { dAtA[i] = 0x8 i++ if m.Value { dAtA[i] = 1 } else { dAtA[i] = 0 } i++ } return i, nil } func (m *StringValue) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *StringValue) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Value) > 0 { dAtA[i] = 0xa i++ i = encodeVarintWrappers(dAtA, i, uint64(len(m.Value))) i += copy(dAtA[i:], m.Value) } return i, nil } func (m *BytesValue) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *BytesValue) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.Value) > 0 { dAtA[i] = 0xa i++ i = encodeVarintWrappers(dAtA, i, uint64(len(m.Value))) i += copy(dAtA[i:], m.Value) } return i, nil } func encodeVarintWrappers(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func NewPopulatedDoubleValue(r randyWrappers, easy bool) *DoubleValue { this := &DoubleValue{} this.Value = float64(r.Float64()) if r.Intn(2) == 0 { this.Value *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedFloatValue(r randyWrappers, easy bool) *FloatValue { this := &FloatValue{} this.Value = float32(r.Float32()) if r.Intn(2) == 0 { this.Value *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedInt64Value(r randyWrappers, easy bool) *Int64Value { this := &Int64Value{} this.Value = int64(r.Int63()) if r.Intn(2) == 0 { this.Value *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUInt64Value(r randyWrappers, easy bool) *UInt64Value { this := &UInt64Value{} this.Value = uint64(uint64(r.Uint32())) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedInt32Value(r randyWrappers, easy bool) *Int32Value { this := &Int32Value{} this.Value = int32(r.Int31()) if r.Intn(2) == 0 { this.Value *= -1 } if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedUInt32Value(r randyWrappers, easy bool) *UInt32Value { this := &UInt32Value{} this.Value = uint32(r.Uint32()) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedBoolValue(r randyWrappers, easy bool) *BoolValue { this := &BoolValue{} this.Value = bool(bool(r.Intn(2) == 0)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedStringValue(r randyWrappers, easy bool) *StringValue { this := &StringValue{} this.Value = string(randStringWrappers(r)) if !easy && r.Intn(10) != 0 { } return this } func NewPopulatedBytesValue(r randyWrappers, easy bool) *BytesValue { this := &BytesValue{} v1 := r.Intn(100) this.Value = make([]byte, v1) for i := 0; i < v1; i++ { this.Value[i] = byte(r.Intn(256)) } if !easy && r.Intn(10) != 0 { } return this } type randyWrappers interface { Float32() float32 Float64() float64 Int63() int64 Int31() int32 Uint32() uint32 Intn(n int) int } func randUTF8RuneWrappers(r randyWrappers) rune { ru := r.Intn(62) if ru < 10 { return rune(ru + 48) } else if ru < 36 { return rune(ru + 55) } return rune(ru + 61) } func randStringWrappers(r randyWrappers) string { v2 := r.Intn(100) tmps := make([]rune, v2) for i := 0; i < v2; i++ { tmps[i] = randUTF8RuneWrappers(r) } return string(tmps) } func randUnrecognizedWrappers(r randyWrappers, maxFieldNumber int) (dAtA []byte) { l := r.Intn(5) for i := 0; i < l; i++ { wire := r.Intn(4) if wire == 3 { wire = 5 } fieldNumber := maxFieldNumber + r.Intn(100) dAtA = randFieldWrappers(dAtA, r, fieldNumber, wire) } return dAtA } func randFieldWrappers(dAtA []byte, r randyWrappers, fieldNumber int, wire int) []byte { key := uint32(fieldNumber)<<3 | uint32(wire) switch wire { case 0: dAtA = encodeVarintPopulateWrappers(dAtA, uint64(key)) v3 := r.Int63() if r.Intn(2) == 0 { v3 *= -1 } dAtA = encodeVarintPopulateWrappers(dAtA, uint64(v3)) case 1: dAtA = encodeVarintPopulateWrappers(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) case 2: dAtA = encodeVarintPopulateWrappers(dAtA, uint64(key)) ll := r.Intn(100) dAtA = encodeVarintPopulateWrappers(dAtA, uint64(ll)) for j := 0; j < ll; j++ { dAtA = append(dAtA, byte(r.Intn(256))) } default: dAtA = encodeVarintPopulateWrappers(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) } return dAtA } func encodeVarintPopulateWrappers(dAtA []byte, v uint64) []byte { for v >= 1<<7 { dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80)) v >>= 7 } dAtA = append(dAtA, uint8(v)) return dAtA } func (m *DoubleValue) Size() (n int) { var l int _ = l if m.Value != 0 { n += 9 } return n } func (m *FloatValue) Size() (n int) { var l int _ = l if m.Value != 0 { n += 5 } return n } func (m *Int64Value) Size() (n int) { var l int _ = l if m.Value != 0 { n += 1 + sovWrappers(uint64(m.Value)) } return n } func (m *UInt64Value) Size() (n int) { var l int _ = l if m.Value != 0 { n += 1 + sovWrappers(uint64(m.Value)) } return n } func (m *Int32Value) Size() (n int) { var l int _ = l if m.Value != 0 { n += 1 + sovWrappers(uint64(m.Value)) } return n } func (m *UInt32Value) Size() (n int) { var l int _ = l if m.Value != 0 { n += 1 + sovWrappers(uint64(m.Value)) } return n } func (m *BoolValue) Size() (n int) { var l int _ = l if m.Value { n += 2 } return n } func (m *StringValue) Size() (n int) { var l int _ = l l = len(m.Value) if l > 0 { n += 1 + l + sovWrappers(uint64(l)) } return n } func (m *BytesValue) Size() (n int) { var l int _ = l l = len(m.Value) if l > 0 { n += 1 + l + sovWrappers(uint64(l)) } return n } func sovWrappers(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozWrappers(x uint64) (n int) { return sovWrappers(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *DoubleValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&DoubleValue{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func (this *FloatValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&FloatValue{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func (this *Int64Value) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Int64Value{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func (this *UInt64Value) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UInt64Value{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func (this *Int32Value) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Int32Value{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func (this *UInt32Value) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&UInt32Value{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func (this *BoolValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&BoolValue{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func (this *StringValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&StringValue{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func (this *BytesValue) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&BytesValue{`, `Value:` + fmt.Sprintf("%v", this.Value) + `,`, `}`, }, "") return s } func valueToStringWrappers(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *DoubleValue) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: DoubleValue: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: DoubleValue: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 1 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var v uint64 if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) iNdEx += 8 m.Value = float64(math.Float64frombits(v)) default: iNdEx = preIndex skippy, err := skipWrappers(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthWrappers } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *FloatValue) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: FloatValue: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: FloatValue: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 5 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var v uint32 if (iNdEx + 4) > l { return io.ErrUnexpectedEOF } v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) iNdEx += 4 m.Value = float32(math.Float32frombits(v)) default: iNdEx = preIndex skippy, err := skipWrappers(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthWrappers } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Int64Value) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Int64Value: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Int64Value: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } m.Value = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Value |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipWrappers(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthWrappers } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UInt64Value) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: UInt64Value: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: UInt64Value: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } m.Value = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Value |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipWrappers(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthWrappers } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *Int32Value) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Int32Value: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Int32Value: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } m.Value = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Value |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipWrappers(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthWrappers } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *UInt32Value) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: UInt32Value: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: UInt32Value: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } m.Value = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Value |= (uint32(b) & 0x7F) << shift if b < 0x80 { break } } default: iNdEx = preIndex skippy, err := skipWrappers(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthWrappers } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *BoolValue) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: BoolValue: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: BoolValue: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int(b) & 0x7F) << shift if b < 0x80 { break } } m.Value = bool(v != 0) default: iNdEx = preIndex skippy, err := skipWrappers(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthWrappers } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *StringValue) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: StringValue: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: StringValue: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthWrappers } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Value = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipWrappers(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthWrappers } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *BytesValue) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: BytesValue: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: BytesValue: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowWrappers } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ byteLen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if byteLen < 0 { return ErrInvalidLengthWrappers } postIndex := iNdEx + byteLen if postIndex > l { return io.ErrUnexpectedEOF } m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) if m.Value == nil { m.Value = []byte{} } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipWrappers(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthWrappers } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipWrappers(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowWrappers } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowWrappers } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowWrappers } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthWrappers } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowWrappers } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipWrappers(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthWrappers = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowWrappers = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("wrappers.proto", fileDescriptorWrappers) } var fileDescriptorWrappers = []byte{ // 278 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2b, 0x2f, 0x4a, 0x2c, 0x28, 0x48, 0x2d, 0x2a, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x4f, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0x85, 0xf0, 0x92, 0x4a, 0xd3, 0x94, 0x94, 0xb9, 0xb8, 0x5d, 0xf2, 0x4b, 0x93, 0x72, 0x52, 0xc3, 0x12, 0x73, 0x4a, 0x53, 0x85, 0x44, 0xb8, 0x58, 0xcb, 0x40, 0x0c, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xc6, 0x20, 0x08, 0x47, 0x49, 0x89, 0x8b, 0xcb, 0x2d, 0x27, 0x3f, 0xb1, 0x04, 0x8b, 0x1a, 0x26, 0x24, 0x35, 0x9e, 0x79, 0x25, 0x66, 0x26, 0x58, 0xd4, 0x30, 0xc3, 0xd4, 0x28, 0x73, 0x71, 0x87, 0xe2, 0x52, 0xc4, 0x82, 0x6a, 0x90, 0xb1, 0x11, 0x16, 0x35, 0xac, 0x68, 0x06, 0x61, 0x55, 0xc4, 0x0b, 0x53, 0xa4, 0xc8, 0xc5, 0xe9, 0x94, 0x9f, 0x9f, 0x83, 0x45, 0x09, 0x07, 0x92, 0x39, 0xc1, 0x25, 0x45, 0x99, 0x79, 0xe9, 0x58, 0x14, 0x71, 0x22, 0x39, 0xc8, 0xa9, 0xb2, 0x24, 0xb5, 0x18, 0x8b, 0x1a, 0x1e, 0xa8, 0x1a, 0xa7, 0x76, 0xc6, 0x0b, 0x0f, 0xe5, 0x18, 0x6e, 0x3c, 0x94, 0x63, 0xf8, 0xf0, 0x50, 0x8e, 0xf1, 0xc7, 0x43, 0x39, 0xc6, 0x86, 0x47, 0x72, 0x8c, 0x2b, 0x1e, 0xc9, 0x31, 0x9e, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x2f, 0x1e, 0xc9, 0x31, 0x7c, 0x00, 0x89, 0x3f, 0x96, 0x63, 0xe4, 0x12, 0x4e, 0xce, 0xcf, 0xd5, 0x43, 0x8b, 0x0e, 0x27, 0xde, 0x70, 0x68, 0x7c, 0x05, 0x80, 0x44, 0x02, 0x18, 0xa3, 0x58, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x7f, 0x30, 0x32, 0x2e, 0x62, 0x62, 0x76, 0x0f, 0x70, 0x5a, 0xc5, 0x24, 0xe7, 0x0e, 0xd1, 0x12, 0x00, 0xd5, 0xa2, 0x17, 0x9e, 0x9a, 0x93, 0xe3, 0x9d, 0x97, 0x5f, 0x9e, 0x17, 0x02, 0x52, 0x99, 0xc4, 0x06, 0x36, 0xcb, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x23, 0x27, 0x6c, 0x5f, 0xfa, 0x01, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/000077500000000000000000000000001317075173200166575ustar00rootroot00000000000000golang-gogoprotobuf-0.5/vanity/command/000077500000000000000000000000001317075173200202755ustar00rootroot00000000000000golang-gogoprotobuf-0.5/vanity/command/command.go000066400000000000000000000120451317075173200222440ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package command import ( "fmt" "go/format" "io/ioutil" "os" "strings" _ "github.com/gogo/protobuf/plugin/compare" _ "github.com/gogo/protobuf/plugin/defaultcheck" _ "github.com/gogo/protobuf/plugin/description" _ "github.com/gogo/protobuf/plugin/embedcheck" _ "github.com/gogo/protobuf/plugin/enumstringer" _ "github.com/gogo/protobuf/plugin/equal" _ "github.com/gogo/protobuf/plugin/face" _ "github.com/gogo/protobuf/plugin/gostring" _ "github.com/gogo/protobuf/plugin/marshalto" _ "github.com/gogo/protobuf/plugin/oneofcheck" _ "github.com/gogo/protobuf/plugin/populate" _ "github.com/gogo/protobuf/plugin/size" _ "github.com/gogo/protobuf/plugin/stringer" "github.com/gogo/protobuf/plugin/testgen" _ "github.com/gogo/protobuf/plugin/union" _ "github.com/gogo/protobuf/plugin/unmarshal" "github.com/gogo/protobuf/proto" "github.com/gogo/protobuf/protoc-gen-gogo/generator" _ "github.com/gogo/protobuf/protoc-gen-gogo/grpc" plugin "github.com/gogo/protobuf/protoc-gen-gogo/plugin" ) func Read() *plugin.CodeGeneratorRequest { g := generator.New() data, err := ioutil.ReadAll(os.Stdin) if err != nil { g.Error(err, "reading input") } if err := proto.Unmarshal(data, g.Request); err != nil { g.Error(err, "parsing input proto") } if len(g.Request.FileToGenerate) == 0 { g.Fail("no files to generate") } return g.Request } // filenameSuffix replaces the .pb.go at the end of each filename. func GeneratePlugin(req *plugin.CodeGeneratorRequest, p generator.Plugin, filenameSuffix string) *plugin.CodeGeneratorResponse { g := generator.New() g.Request = req if len(g.Request.FileToGenerate) == 0 { g.Fail("no files to generate") } g.CommandLineParameters(g.Request.GetParameter()) g.WrapTypes() g.SetPackageNames() g.BuildTypeNameMap() g.GeneratePlugin(p) for i := 0; i < len(g.Response.File); i++ { g.Response.File[i].Name = proto.String( strings.Replace(*g.Response.File[i].Name, ".pb.go", filenameSuffix, -1), ) } if err := goformat(g.Response); err != nil { g.Error(err) } return g.Response } func goformat(resp *plugin.CodeGeneratorResponse) error { for i := 0; i < len(resp.File); i++ { formatted, err := format.Source([]byte(resp.File[i].GetContent())) if err != nil { return fmt.Errorf("go format error: %v", err) } fmts := string(formatted) resp.File[i].Content = &fmts } return nil } func Generate(req *plugin.CodeGeneratorRequest) *plugin.CodeGeneratorResponse { // Begin by allocating a generator. The request and response structures are stored there // so we can do error handling easily - the response structure contains the field to // report failure. g := generator.New() g.Request = req g.CommandLineParameters(g.Request.GetParameter()) // Create a wrapped version of the Descriptors and EnumDescriptors that // point to the file that defines them. g.WrapTypes() g.SetPackageNames() g.BuildTypeNameMap() g.GenerateAllFiles() if err := goformat(g.Response); err != nil { g.Error(err) } testReq := proto.Clone(req).(*plugin.CodeGeneratorRequest) testResp := GeneratePlugin(testReq, testgen.NewPlugin(), "pb_test.go") for i := 0; i < len(testResp.File); i++ { if strings.Contains(*testResp.File[i].Content, `//These tests are generated by github.com/gogo/protobuf/plugin/testgen`) { g.Response.File = append(g.Response.File, testResp.File[i]) } } return g.Response } func Write(resp *plugin.CodeGeneratorResponse) { g := generator.New() // Send back the results. data, err := proto.Marshal(resp) if err != nil { g.Error(err, "failed to marshal output proto") } _, err = os.Stdout.Write(data) if err != nil { g.Error(err, "failed to write output proto") } } golang-gogoprotobuf-0.5/vanity/enum.go000066400000000000000000000052641317075173200201610ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, The GoGo Authors. 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. package vanity import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" ) func EnumHasBoolExtension(enum *descriptor.EnumDescriptorProto, extension *proto.ExtensionDesc) bool { if enum.Options == nil { return false } value, err := proto.GetExtension(enum.Options, extension) if err != nil { return false } if value == nil { return false } if value.(*bool) == nil { return false } return true } func SetBoolEnumOption(extension *proto.ExtensionDesc, value bool) func(enum *descriptor.EnumDescriptorProto) { return func(enum *descriptor.EnumDescriptorProto) { if EnumHasBoolExtension(enum, extension) { return } if enum.Options == nil { enum.Options = &descriptor.EnumOptions{} } if err := proto.SetExtension(enum.Options, extension, &value); err != nil { panic(err) } } } func TurnOffGoEnumPrefix(enum *descriptor.EnumDescriptorProto) { SetBoolEnumOption(gogoproto.E_GoprotoEnumPrefix, false)(enum) } func TurnOffGoEnumStringer(enum *descriptor.EnumDescriptorProto) { SetBoolEnumOption(gogoproto.E_GoprotoEnumStringer, false)(enum) } func TurnOnEnumStringer(enum *descriptor.EnumDescriptorProto) { SetBoolEnumOption(gogoproto.E_EnumStringer, true)(enum) } golang-gogoprotobuf-0.5/vanity/field.go000066400000000000000000000056661317075173200203060ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, The GoGo Authors. 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. package vanity import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" ) func FieldHasBoolExtension(field *descriptor.FieldDescriptorProto, extension *proto.ExtensionDesc) bool { if field.Options == nil { return false } value, err := proto.GetExtension(field.Options, extension) if err != nil { return false } if value == nil { return false } if value.(*bool) == nil { return false } return true } func SetBoolFieldOption(extension *proto.ExtensionDesc, value bool) func(field *descriptor.FieldDescriptorProto) { return func(field *descriptor.FieldDescriptorProto) { if FieldHasBoolExtension(field, extension) { return } if field.Options == nil { field.Options = &descriptor.FieldOptions{} } if err := proto.SetExtension(field.Options, extension, &value); err != nil { panic(err) } } } func TurnOffNullable(field *descriptor.FieldDescriptorProto) { if field.IsRepeated() && !field.IsMessage() { return } SetBoolFieldOption(gogoproto.E_Nullable, false)(field) } func TurnOffNullableForNativeTypes(field *descriptor.FieldDescriptorProto) { if field.IsRepeated() || field.IsMessage() { return } SetBoolFieldOption(gogoproto.E_Nullable, false)(field) } func TurnOffNullableForNativeTypesWithoutDefaultsOnly(field *descriptor.FieldDescriptorProto) { if field.IsRepeated() || field.IsMessage() { return } if field.DefaultValue != nil { return } SetBoolFieldOption(gogoproto.E_Nullable, false)(field) } golang-gogoprotobuf-0.5/vanity/file.go000066400000000000000000000137611317075173200201350ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package vanity import ( "path/filepath" "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" ) func NotGoogleProtobufDescriptorProto(file *descriptor.FileDescriptorProto) bool { // can not just check if file.GetName() == "google/protobuf/descriptor.proto" because we do not want to assume compile path _, fileName := filepath.Split(file.GetName()) return !(file.GetPackage() == "google.protobuf" && fileName == "descriptor.proto") } func FilterFiles(files []*descriptor.FileDescriptorProto, f func(file *descriptor.FileDescriptorProto) bool) []*descriptor.FileDescriptorProto { filtered := make([]*descriptor.FileDescriptorProto, 0, len(files)) for i := range files { if !f(files[i]) { continue } filtered = append(filtered, files[i]) } return filtered } func FileHasBoolExtension(file *descriptor.FileDescriptorProto, extension *proto.ExtensionDesc) bool { if file.Options == nil { return false } value, err := proto.GetExtension(file.Options, extension) if err != nil { return false } if value == nil { return false } if value.(*bool) == nil { return false } return true } func SetBoolFileOption(extension *proto.ExtensionDesc, value bool) func(file *descriptor.FileDescriptorProto) { return func(file *descriptor.FileDescriptorProto) { if FileHasBoolExtension(file, extension) { return } if file.Options == nil { file.Options = &descriptor.FileOptions{} } if err := proto.SetExtension(file.Options, extension, &value); err != nil { panic(err) } } } func TurnOffGoGettersAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_GoprotoGettersAll, false)(file) } func TurnOffGoEnumPrefixAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_GoprotoEnumPrefixAll, false)(file) } func TurnOffGoStringerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_GoprotoStringerAll, false)(file) } func TurnOnVerboseEqualAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_VerboseEqualAll, true)(file) } func TurnOnFaceAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_FaceAll, true)(file) } func TurnOnGoStringAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_GostringAll, true)(file) } func TurnOnPopulateAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_PopulateAll, true)(file) } func TurnOnStringerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_StringerAll, true)(file) } func TurnOnEqualAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_EqualAll, true)(file) } func TurnOnDescriptionAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_DescriptionAll, true)(file) } func TurnOnTestGenAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_TestgenAll, true)(file) } func TurnOnBenchGenAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_BenchgenAll, true)(file) } func TurnOnMarshalerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_MarshalerAll, true)(file) } func TurnOnUnmarshalerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_UnmarshalerAll, true)(file) } func TurnOnStable_MarshalerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_StableMarshalerAll, true)(file) } func TurnOnSizerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_SizerAll, true)(file) } func TurnOffGoEnumStringerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_GoprotoEnumStringerAll, false)(file) } func TurnOnEnumStringerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_EnumStringerAll, true)(file) } func TurnOnUnsafeUnmarshalerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_UnsafeUnmarshalerAll, true)(file) } func TurnOnUnsafeMarshalerAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_UnsafeMarshalerAll, true)(file) } func TurnOffGoExtensionsMapAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_GoprotoExtensionsMapAll, false)(file) } func TurnOffGoUnrecognizedAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_GoprotoUnrecognizedAll, false)(file) } func TurnOffGogoImport(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_GogoprotoImport, false)(file) } func TurnOnCompareAll(file *descriptor.FileDescriptorProto) { SetBoolFileOption(gogoproto.E_CompareAll, true)(file) } golang-gogoprotobuf-0.5/vanity/foreach.go000066400000000000000000000077141317075173200206260ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package vanity import descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" func ForEachFile(files []*descriptor.FileDescriptorProto, f func(file *descriptor.FileDescriptorProto)) { for _, file := range files { f(file) } } func OnlyProto2(files []*descriptor.FileDescriptorProto) []*descriptor.FileDescriptorProto { outs := make([]*descriptor.FileDescriptorProto, 0, len(files)) for i, file := range files { if file.GetSyntax() == "proto3" { continue } outs = append(outs, files[i]) } return outs } func OnlyProto3(files []*descriptor.FileDescriptorProto) []*descriptor.FileDescriptorProto { outs := make([]*descriptor.FileDescriptorProto, 0, len(files)) for i, file := range files { if file.GetSyntax() != "proto3" { continue } outs = append(outs, files[i]) } return outs } func ForEachMessageInFiles(files []*descriptor.FileDescriptorProto, f func(msg *descriptor.DescriptorProto)) { for _, file := range files { ForEachMessage(file.MessageType, f) } } func ForEachMessage(msgs []*descriptor.DescriptorProto, f func(msg *descriptor.DescriptorProto)) { for _, msg := range msgs { f(msg) ForEachMessage(msg.NestedType, f) } } func ForEachFieldInFilesExcludingExtensions(files []*descriptor.FileDescriptorProto, f func(field *descriptor.FieldDescriptorProto)) { for _, file := range files { ForEachFieldExcludingExtensions(file.MessageType, f) } } func ForEachFieldInFiles(files []*descriptor.FileDescriptorProto, f func(field *descriptor.FieldDescriptorProto)) { for _, file := range files { for _, ext := range file.Extension { f(ext) } ForEachField(file.MessageType, f) } } func ForEachFieldExcludingExtensions(msgs []*descriptor.DescriptorProto, f func(field *descriptor.FieldDescriptorProto)) { for _, msg := range msgs { for _, field := range msg.Field { f(field) } ForEachField(msg.NestedType, f) } } func ForEachField(msgs []*descriptor.DescriptorProto, f func(field *descriptor.FieldDescriptorProto)) { for _, msg := range msgs { for _, field := range msg.Field { f(field) } for _, ext := range msg.Extension { f(ext) } ForEachField(msg.NestedType, f) } } func ForEachEnumInFiles(files []*descriptor.FileDescriptorProto, f func(enum *descriptor.EnumDescriptorProto)) { for _, file := range files { for _, enum := range file.EnumType { f(enum) } } } func ForEachEnum(msgs []*descriptor.DescriptorProto, f func(field *descriptor.EnumDescriptorProto)) { for _, msg := range msgs { for _, field := range msg.EnumType { f(field) } ForEachEnum(msg.NestedType, f) } } golang-gogoprotobuf-0.5/vanity/msg.go000066400000000000000000000107361317075173200200030ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, The GoGo Authors. 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. package vanity import ( "github.com/gogo/protobuf/gogoproto" "github.com/gogo/protobuf/proto" descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" ) func MessageHasBoolExtension(msg *descriptor.DescriptorProto, extension *proto.ExtensionDesc) bool { if msg.Options == nil { return false } value, err := proto.GetExtension(msg.Options, extension) if err != nil { return false } if value == nil { return false } if value.(*bool) == nil { return false } return true } func SetBoolMessageOption(extension *proto.ExtensionDesc, value bool) func(msg *descriptor.DescriptorProto) { return func(msg *descriptor.DescriptorProto) { if MessageHasBoolExtension(msg, extension) { return } if msg.Options == nil { msg.Options = &descriptor.MessageOptions{} } if err := proto.SetExtension(msg.Options, extension, &value); err != nil { panic(err) } } } func TurnOffGoGetters(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_GoprotoGetters, false)(msg) } func TurnOffGoStringer(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_GoprotoStringer, false)(msg) } func TurnOnVerboseEqual(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_VerboseEqual, true)(msg) } func TurnOnFace(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Face, true)(msg) } func TurnOnGoString(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Face, true)(msg) } func TurnOnPopulate(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Populate, true)(msg) } func TurnOnStringer(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Stringer, true)(msg) } func TurnOnEqual(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Equal, true)(msg) } func TurnOnDescription(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Description, true)(msg) } func TurnOnTestGen(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Testgen, true)(msg) } func TurnOnBenchGen(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Benchgen, true)(msg) } func TurnOnMarshaler(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Marshaler, true)(msg) } func TurnOnUnmarshaler(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Unmarshaler, true)(msg) } func TurnOnSizer(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Sizer, true)(msg) } func TurnOnUnsafeUnmarshaler(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_UnsafeUnmarshaler, true)(msg) } func TurnOnUnsafeMarshaler(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_UnsafeMarshaler, true)(msg) } func TurnOffGoExtensionsMap(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_GoprotoExtensionsMap, false)(msg) } func TurnOffGoUnrecognized(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_GoprotoUnrecognized, false)(msg) } func TurnOnCompare(msg *descriptor.DescriptorProto) { SetBoolMessageOption(gogoproto.E_Compare, true)(msg) } golang-gogoprotobuf-0.5/vanity/test/000077500000000000000000000000001317075173200176365ustar00rootroot00000000000000golang-gogoprotobuf-0.5/vanity/test/Makefile000066400000000000000000000050051317075173200212760ustar00rootroot00000000000000# 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-gogofast protoc --gogofast_out=./fast/ vanity.proto protoc --proto_path=../../:../../../../../:../../protobuf/:. --gogofast_out=./fast/ gogovanity.proto protoc-min-version -version="3.0.0" --proto_path=../../:../../../../../:../../protobuf/:. --gogofast_out=./fast/ proto3.proto go install github.com/gogo/protobuf/protoc-gen-gogofaster protoc --gogofaster_out=./faster/ vanity.proto protoc --proto_path=../../:../../../../../:../../protobuf/:. --gogofaster_out=./faster/ gogovanity.proto protoc-min-version -version="3.0.0" --proto_path=../../:../../../../../:../../protobuf/:. --gogofaster_out=./faster/ proto3.proto go install github.com/gogo/protobuf/protoc-gen-gogoslick protoc --gogoslick_out=./slick/ vanity.proto protoc --proto_path=../../:../../../../../:../../protobuf/:. --gogoslick_out=./slick/ gogovanity.proto protoc-min-version -version="3.0.0" --proto_path=../../:../../../../../:../../protobuf/:. --gogoslick_out=./slick/ proto3.proto test: go install github.com/gogo/protobuf/protoc-gen-gofast protoc --gofast_out=./gofast/ vanity.proto go test ./... golang-gogoprotobuf-0.5/vanity/test/doc.go000066400000000000000000000000151317075173200207260ustar00rootroot00000000000000package test golang-gogoprotobuf-0.5/vanity/test/fast/000077500000000000000000000000001317075173200205735ustar00rootroot00000000000000golang-gogoprotobuf-0.5/vanity/test/fast/gogovanity.pb.go000066400000000000000000000217011317075173200237110ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: gogovanity.proto /* Package vanity is a generated protocol buffer package. It is generated from these files: gogovanity.proto It has these top-level messages: B */ package vanity import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type B struct { String_ *string `protobuf:"bytes,1,opt,name=String" json:"String,omitempty"` Int64 *int64 `protobuf:"varint,2,opt,name=Int64" json:"Int64,omitempty"` Int32 *int32 `protobuf:"varint,3,opt,name=Int32,def=1234" json:"Int32,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *B) Reset() { *m = B{} } func (m *B) String() string { return proto.CompactTextString(m) } func (*B) ProtoMessage() {} func (*B) Descriptor() ([]byte, []int) { return fileDescriptorGogovanity, []int{0} } const Default_B_Int32 int32 = 1234 func (m *B) GetString_() string { if m != nil && m.String_ != nil { return *m.String_ } return "" } func (m *B) GetInt64() int64 { if m != nil && m.Int64 != nil { return *m.Int64 } return 0 } func (m *B) GetInt32() int32 { if m != nil && m.Int32 != nil { return *m.Int32 } return Default_B_Int32 } func init() { proto.RegisterType((*B)(nil), "vanity.B") } func (m *B) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *B) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.String_ != nil { dAtA[i] = 0xa i++ i = encodeVarintGogovanity(dAtA, i, uint64(len(*m.String_))) i += copy(dAtA[i:], *m.String_) } if m.Int64 != nil { dAtA[i] = 0x10 i++ i = encodeVarintGogovanity(dAtA, i, uint64(*m.Int64)) } if m.Int32 != nil { dAtA[i] = 0x18 i++ i = encodeVarintGogovanity(dAtA, i, uint64(*m.Int32)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintGogovanity(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *B) Size() (n int) { var l int _ = l if m.String_ != nil { l = len(*m.String_) n += 1 + l + sovGogovanity(uint64(l)) } if m.Int64 != nil { n += 1 + sovGogovanity(uint64(*m.Int64)) } if m.Int32 != nil { n += 1 + sovGogovanity(uint64(*m.Int32)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovGogovanity(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozGogovanity(x uint64) (n int) { return sovGogovanity(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *B) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: B: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: B: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field String_", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGogovanity } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.String_ = &s iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int64", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Int64 = &v case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int32", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Int32 = &v default: iNdEx = preIndex skippy, err := skipGogovanity(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthGogovanity } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipGogovanity(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthGogovanity } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipGogovanity(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthGogovanity = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGogovanity = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("gogovanity.proto", fileDescriptorGogovanity) } var fileDescriptorGogovanity = []byte{ // 157 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x48, 0xcf, 0x4f, 0xcf, 0x2f, 0x4b, 0xcc, 0xcb, 0x2c, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0xf0, 0xa4, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x41, 0x8a, 0xf4, 0xc1, 0xd2, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0xb4, 0x29, 0x05, 0x73, 0x31, 0x3a, 0x09, 0xc9, 0x70, 0xb1, 0x05, 0x97, 0x14, 0x65, 0xe6, 0xa5, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x3a, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x18, 0x04, 0x15, 0x13, 0x12, 0xe1, 0x62, 0xf5, 0xcc, 0x2b, 0x31, 0x33, 0x91, 0x60, 0x52, 0x60, 0xd4, 0x60, 0x0e, 0x82, 0x70, 0x84, 0xa4, 0xc0, 0xa2, 0xc6, 0x46, 0x12, 0xcc, 0x0a, 0x8c, 0x1a, 0xac, 0x56, 0x2c, 0x86, 0x46, 0xc6, 0x26, 0x41, 0x10, 0x21, 0x27, 0x9e, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x11, 0x10, 0x00, 0x00, 0xff, 0xff, 0x35, 0x73, 0x31, 0x4a, 0xac, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/test/fast/proto3.pb.go000066400000000000000000000150121317075173200227470ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto3.proto /* Package vanity is a generated protocol buffer package. It is generated from these files: proto3.proto It has these top-level messages: Aproto3 */ package vanity import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Aproto3 struct { B string `protobuf:"bytes,1,opt,name=B,proto3" json:"B,omitempty"` } func (m *Aproto3) Reset() { *m = Aproto3{} } func (m *Aproto3) String() string { return proto.CompactTextString(m) } func (*Aproto3) ProtoMessage() {} func (*Aproto3) Descriptor() ([]byte, []int) { return fileDescriptorProto3, []int{0} } func (m *Aproto3) GetB() string { if m != nil { return m.B } return "" } func init() { proto.RegisterType((*Aproto3)(nil), "vanity.Aproto3") } func (m *Aproto3) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Aproto3) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.B) > 0 { dAtA[i] = 0xa i++ i = encodeVarintProto3(dAtA, i, uint64(len(m.B))) i += copy(dAtA[i:], m.B) } return i, nil } func encodeVarintProto3(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *Aproto3) Size() (n int) { var l int _ = l l = len(m.B) if l > 0 { n += 1 + l + sovProto3(uint64(l)) } return n } func sovProto3(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozProto3(x uint64) (n int) { return sovProto3(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Aproto3) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Aproto3: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Aproto3: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthProto3 } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.B = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipProto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthProto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipProto3(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthProto3 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipProto3(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthProto3 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowProto3 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("proto3.proto", fileDescriptorProto3) } var fileDescriptorProto3 = []byte{ // 82 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x29, 0x28, 0xca, 0x2f, 0xc9, 0x37, 0xd6, 0x03, 0x53, 0x42, 0x6c, 0x65, 0x89, 0x79, 0x99, 0x25, 0x95, 0x4a, 0xe2, 0x5c, 0xec, 0x8e, 0x10, 0x09, 0x21, 0x1e, 0x2e, 0x46, 0x27, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x46, 0x27, 0x27, 0x9e, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x31, 0x89, 0x0d, 0xa2, 0x06, 0x10, 0x00, 0x00, 0xff, 0xff, 0x97, 0x18, 0x92, 0x84, 0x45, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/test/fast/vanity.pb.go000066400000000000000000000176571317075173200230540ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: vanity.proto /* Package vanity is a generated protocol buffer package. It is generated from these files: vanity.proto It has these top-level messages: A */ package vanity import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type A struct { Strings *string `protobuf:"bytes,1,opt,name=Strings" json:"Strings,omitempty"` Int *int64 `protobuf:"varint,2,req,name=Int" json:"Int,omitempty"` XXX_unrecognized []byte `json:"-"` } func (m *A) Reset() { *m = A{} } func (m *A) String() string { return proto.CompactTextString(m) } func (*A) ProtoMessage() {} func (*A) Descriptor() ([]byte, []int) { return fileDescriptorVanity, []int{0} } func (m *A) GetStrings() string { if m != nil && m.Strings != nil { return *m.Strings } return "" } func (m *A) GetInt() int64 { if m != nil && m.Int != nil { return *m.Int } return 0 } func init() { proto.RegisterType((*A)(nil), "vanity.A") } func (m *A) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *A) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.Strings != nil { dAtA[i] = 0xa i++ i = encodeVarintVanity(dAtA, i, uint64(len(*m.Strings))) i += copy(dAtA[i:], *m.Strings) } if m.Int == nil { return 0, github_com_gogo_protobuf_proto.NewRequiredNotSetError("Int") } else { dAtA[i] = 0x10 i++ i = encodeVarintVanity(dAtA, i, uint64(*m.Int)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } return i, nil } func encodeVarintVanity(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *A) Size() (n int) { var l int _ = l if m.Strings != nil { l = len(*m.Strings) n += 1 + l + sovVanity(uint64(l)) } if m.Int != nil { n += 1 + sovVanity(uint64(*m.Int)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } func sovVanity(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozVanity(x uint64) (n int) { return sovVanity(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *A) Unmarshal(dAtA []byte) error { var hasFields [1]uint64 l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowVanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: A: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: A: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Strings", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowVanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthVanity } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.Strings = &s iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int", wireType) } var v int64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowVanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } m.Int = &v hasFields[0] |= uint64(0x00000001) default: iNdEx = preIndex skippy, err := skipVanity(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthVanity } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) iNdEx += skippy } } if hasFields[0]&uint64(0x00000001) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Int") } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipVanity(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthVanity } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipVanity(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthVanity = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowVanity = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("vanity.proto", fileDescriptorVanity) } var fileDescriptorVanity = []byte{ // 97 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x29, 0x4b, 0xcc, 0xcb, 0x2c, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0xf0, 0x94, 0xf4, 0xb9, 0x18, 0x1d, 0x85, 0x24, 0xb8, 0xd8, 0x83, 0x4b, 0x8a, 0x32, 0xf3, 0xd2, 0x8b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x38, 0x83, 0x60, 0x5c, 0x21, 0x01, 0x2e, 0x66, 0xcf, 0xbc, 0x12, 0x09, 0x26, 0x05, 0x26, 0x0d, 0xe6, 0x20, 0x10, 0xd3, 0x89, 0xe7, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x04, 0x04, 0x00, 0x00, 0xff, 0xff, 0x2f, 0x7a, 0xd7, 0x63, 0x55, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/test/faster/000077500000000000000000000000001317075173200211225ustar00rootroot00000000000000golang-gogoprotobuf-0.5/vanity/test/faster/gogovanity.pb.go000066400000000000000000000211521317075173200242400ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: gogovanity.proto /* Package vanity is a generated protocol buffer package. It is generated from these files: gogovanity.proto It has these top-level messages: B */ package vanity import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type B struct { String_ *string `protobuf:"bytes,1,opt,name=String" json:"String,omitempty"` Int64 int64 `protobuf:"varint,2,opt,name=Int64" json:"Int64"` Int32 *int32 `protobuf:"varint,3,opt,name=Int32,def=1234" json:"Int32,omitempty"` } func (m *B) Reset() { *m = B{} } func (m *B) String() string { return proto.CompactTextString(m) } func (*B) ProtoMessage() {} func (*B) Descriptor() ([]byte, []int) { return fileDescriptorGogovanity, []int{0} } const Default_B_Int32 int32 = 1234 func (m *B) GetString_() string { if m != nil && m.String_ != nil { return *m.String_ } return "" } func (m *B) GetInt64() int64 { if m != nil { return m.Int64 } return 0 } func (m *B) GetInt32() int32 { if m != nil && m.Int32 != nil { return *m.Int32 } return Default_B_Int32 } func init() { proto.RegisterType((*B)(nil), "vanity.B") } func (m *B) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *B) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.String_ != nil { dAtA[i] = 0xa i++ i = encodeVarintGogovanity(dAtA, i, uint64(len(*m.String_))) i += copy(dAtA[i:], *m.String_) } dAtA[i] = 0x10 i++ i = encodeVarintGogovanity(dAtA, i, uint64(m.Int64)) if m.Int32 != nil { dAtA[i] = 0x18 i++ i = encodeVarintGogovanity(dAtA, i, uint64(*m.Int32)) } return i, nil } func encodeVarintGogovanity(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *B) Size() (n int) { var l int _ = l if m.String_ != nil { l = len(*m.String_) n += 1 + l + sovGogovanity(uint64(l)) } n += 1 + sovGogovanity(uint64(m.Int64)) if m.Int32 != nil { n += 1 + sovGogovanity(uint64(*m.Int32)) } return n } func sovGogovanity(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozGogovanity(x uint64) (n int) { return sovGogovanity(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *B) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: B: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: B: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field String_", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGogovanity } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.String_ = &s iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int64", wireType) } m.Int64 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Int64 |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int32", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Int32 = &v default: iNdEx = preIndex skippy, err := skipGogovanity(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthGogovanity } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipGogovanity(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthGogovanity } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipGogovanity(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthGogovanity = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGogovanity = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("gogovanity.proto", fileDescriptorGogovanity) } var fileDescriptorGogovanity = []byte{ // 163 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x48, 0xcf, 0x4f, 0xcf, 0x2f, 0x4b, 0xcc, 0xcb, 0x2c, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0xf0, 0xa4, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x41, 0x8a, 0xf4, 0xc1, 0xd2, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0xb4, 0x29, 0x45, 0x72, 0x31, 0x3a, 0x09, 0xc9, 0x70, 0xb1, 0x05, 0x97, 0x14, 0x65, 0xe6, 0xa5, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x3a, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x18, 0x04, 0x15, 0x13, 0x92, 0xe2, 0x62, 0xf5, 0xcc, 0x2b, 0x31, 0x33, 0x91, 0x60, 0x52, 0x60, 0xd4, 0x60, 0x06, 0x4b, 0x32, 0x04, 0x41, 0x84, 0xa0, 0x72, 0xc6, 0x46, 0x12, 0xcc, 0x0a, 0x8c, 0x1a, 0xac, 0x56, 0x2c, 0x86, 0x46, 0xc6, 0x26, 0x41, 0x10, 0x21, 0x27, 0x81, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x06, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xde, 0x29, 0x72, 0xb6, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/test/faster/proto3.pb.go000066400000000000000000000150501317075173200233000ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto3.proto /* Package vanity is a generated protocol buffer package. It is generated from these files: proto3.proto It has these top-level messages: Aproto3 */ package vanity import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Aproto3 struct { B string `protobuf:"bytes,1,opt,name=B,proto3" json:"B,omitempty"` } func (m *Aproto3) Reset() { *m = Aproto3{} } func (m *Aproto3) String() string { return proto.CompactTextString(m) } func (*Aproto3) ProtoMessage() {} func (*Aproto3) Descriptor() ([]byte, []int) { return fileDescriptorProto3, []int{0} } func (m *Aproto3) GetB() string { if m != nil { return m.B } return "" } func init() { proto.RegisterType((*Aproto3)(nil), "vanity.Aproto3") } func (m *Aproto3) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Aproto3) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.B) > 0 { dAtA[i] = 0xa i++ i = encodeVarintProto3(dAtA, i, uint64(len(m.B))) i += copy(dAtA[i:], m.B) } return i, nil } func encodeVarintProto3(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *Aproto3) Size() (n int) { var l int _ = l l = len(m.B) if l > 0 { n += 1 + l + sovProto3(uint64(l)) } return n } func sovProto3(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozProto3(x uint64) (n int) { return sovProto3(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *Aproto3) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Aproto3: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Aproto3: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthProto3 } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.B = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipProto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthProto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipProto3(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthProto3 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipProto3(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthProto3 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowProto3 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("proto3.proto", fileDescriptorProto3) } var fileDescriptorProto3 = []byte{ // 87 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x29, 0x28, 0xca, 0x2f, 0xc9, 0x37, 0xd6, 0x03, 0x53, 0x42, 0x6c, 0x65, 0x89, 0x79, 0x99, 0x25, 0x95, 0x4a, 0xe2, 0x5c, 0xec, 0x8e, 0x10, 0x09, 0x21, 0x1e, 0x2e, 0x46, 0x27, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x46, 0x27, 0x27, 0x81, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x24, 0x36, 0x88, 0x3a, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x77, 0x21, 0xa3, 0xc0, 0x49, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/test/faster/vanity.pb.go000066400000000000000000000167141317075173200233740ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: vanity.proto /* Package vanity is a generated protocol buffer package. It is generated from these files: vanity.proto It has these top-level messages: A */ package vanity import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import io "io" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type A struct { Strings string `protobuf:"bytes,1,opt,name=Strings" json:"Strings"` Int int64 `protobuf:"varint,2,req,name=Int" json:"Int"` } func (m *A) Reset() { *m = A{} } func (m *A) String() string { return proto.CompactTextString(m) } func (*A) ProtoMessage() {} func (*A) Descriptor() ([]byte, []int) { return fileDescriptorVanity, []int{0} } func (m *A) GetStrings() string { if m != nil { return m.Strings } return "" } func (m *A) GetInt() int64 { if m != nil { return m.Int } return 0 } func init() { proto.RegisterType((*A)(nil), "vanity.A") } func (m *A) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *A) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintVanity(dAtA, i, uint64(len(m.Strings))) i += copy(dAtA[i:], m.Strings) dAtA[i] = 0x10 i++ i = encodeVarintVanity(dAtA, i, uint64(m.Int)) return i, nil } func encodeVarintVanity(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *A) Size() (n int) { var l int _ = l l = len(m.Strings) n += 1 + l + sovVanity(uint64(l)) n += 1 + sovVanity(uint64(m.Int)) return n } func sovVanity(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozVanity(x uint64) (n int) { return sovVanity(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *A) Unmarshal(dAtA []byte) error { var hasFields [1]uint64 l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowVanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: A: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: A: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Strings", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowVanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthVanity } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Strings = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int", wireType) } m.Int = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowVanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Int |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } hasFields[0] |= uint64(0x00000001) default: iNdEx = preIndex skippy, err := skipVanity(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthVanity } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if hasFields[0]&uint64(0x00000001) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Int") } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipVanity(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthVanity } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipVanity(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthVanity = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowVanity = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("vanity.proto", fileDescriptorVanity) } var fileDescriptorVanity = []byte{ // 109 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x29, 0x4b, 0xcc, 0xcb, 0x2c, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0xf0, 0x94, 0xac, 0xb9, 0x18, 0x1d, 0x85, 0xe4, 0xb8, 0xd8, 0x83, 0x4b, 0x8a, 0x32, 0xf3, 0xd2, 0x8b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x38, 0x9d, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0x09, 0x0a, 0x89, 0x71, 0x31, 0x7b, 0xe6, 0x95, 0x48, 0x30, 0x29, 0x30, 0x69, 0x30, 0x43, 0xe5, 0x40, 0x02, 0x4e, 0x02, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x56, 0x0d, 0x52, 0xbb, 0x65, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/test/gofast/000077500000000000000000000000001317075173200211215ustar00rootroot00000000000000golang-gogoprotobuf-0.5/vanity/test/gofast/.gitignore000066400000000000000000000000071317075173200231060ustar00rootroot00000000000000*.pb.gogolang-gogoprotobuf-0.5/vanity/test/gogovanity.proto000066400000000000000000000032261317075173200231140ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 vanity; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; message B { optional string String = 1 [(gogoproto.nullable) = true]; optional int64 Int64 = 2; optional int32 Int32 = 3 [default = 1234]; } golang-gogoprotobuf-0.5/vanity/test/proto3.proto000066400000000000000000000027611317075173200221570ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 = "proto3"; package vanity; message Aproto3 { string B = 1; } golang-gogoprotobuf-0.5/vanity/test/slick/000077500000000000000000000000001317075173200207435ustar00rootroot00000000000000golang-gogoprotobuf-0.5/vanity/test/slick/gogovanity.pb.go000066400000000000000000000253371317075173200240720ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: gogovanity.proto /* Package vanity is a generated protocol buffer package. It is generated from these files: gogovanity.proto It has these top-level messages: B */ package vanity import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/gogo/protobuf/gogoproto" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type B struct { String_ *string `protobuf:"bytes,1,opt,name=String" json:"String,omitempty"` Int64 int64 `protobuf:"varint,2,opt,name=Int64" json:"Int64"` Int32 *int32 `protobuf:"varint,3,opt,name=Int32,def=1234" json:"Int32,omitempty"` } func (m *B) Reset() { *m = B{} } func (*B) ProtoMessage() {} func (*B) Descriptor() ([]byte, []int) { return fileDescriptorGogovanity, []int{0} } const Default_B_Int32 int32 = 1234 func (m *B) GetString_() string { if m != nil && m.String_ != nil { return *m.String_ } return "" } func (m *B) GetInt64() int64 { if m != nil { return m.Int64 } return 0 } func (m *B) GetInt32() int32 { if m != nil && m.Int32 != nil { return *m.Int32 } return Default_B_Int32 } func init() { proto.RegisterType((*B)(nil), "vanity.B") } func (this *B) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*B) if !ok { that2, ok := that.(B) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.String_ != nil && that1.String_ != nil { if *this.String_ != *that1.String_ { return false } } else if this.String_ != nil { return false } else if that1.String_ != nil { return false } if this.Int64 != that1.Int64 { return false } if this.Int32 != nil && that1.Int32 != nil { if *this.Int32 != *that1.Int32 { return false } } else if this.Int32 != nil { return false } else if that1.Int32 != nil { return false } return true } func (this *B) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 7) s = append(s, "&vanity.B{") if this.String_ != nil { s = append(s, "String_: "+valueToGoStringGogovanity(this.String_, "string")+",\n") } s = append(s, "Int64: "+fmt.Sprintf("%#v", this.Int64)+",\n") if this.Int32 != nil { s = append(s, "Int32: "+valueToGoStringGogovanity(this.Int32, "int32")+",\n") } s = append(s, "}") return strings.Join(s, "") } func valueToGoStringGogovanity(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *B) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *B) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if m.String_ != nil { dAtA[i] = 0xa i++ i = encodeVarintGogovanity(dAtA, i, uint64(len(*m.String_))) i += copy(dAtA[i:], *m.String_) } dAtA[i] = 0x10 i++ i = encodeVarintGogovanity(dAtA, i, uint64(m.Int64)) if m.Int32 != nil { dAtA[i] = 0x18 i++ i = encodeVarintGogovanity(dAtA, i, uint64(*m.Int32)) } return i, nil } func encodeVarintGogovanity(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *B) Size() (n int) { var l int _ = l if m.String_ != nil { l = len(*m.String_) n += 1 + l + sovGogovanity(uint64(l)) } n += 1 + sovGogovanity(uint64(m.Int64)) if m.Int32 != nil { n += 1 + sovGogovanity(uint64(*m.Int32)) } return n } func sovGogovanity(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozGogovanity(x uint64) (n int) { return sovGogovanity(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *B) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&B{`, `String_:` + valueToStringGogovanity(this.String_) + `,`, `Int64:` + fmt.Sprintf("%v", this.Int64) + `,`, `Int32:` + valueToStringGogovanity(this.Int32) + `,`, `}`, }, "") return s } func valueToStringGogovanity(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *B) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: B: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: B: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field String_", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthGogovanity } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } s := string(dAtA[iNdEx:postIndex]) m.String_ = &s iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int64", wireType) } m.Int64 = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Int64 |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } case 3: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int32", wireType) } var v int32 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowGogovanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ v |= (int32(b) & 0x7F) << shift if b < 0x80 { break } } m.Int32 = &v default: iNdEx = preIndex skippy, err := skipGogovanity(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthGogovanity } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipGogovanity(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthGogovanity } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowGogovanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipGogovanity(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthGogovanity = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGogovanity = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("gogovanity.proto", fileDescriptorGogovanity) } var fileDescriptorGogovanity = []byte{ // 192 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x48, 0xcf, 0x4f, 0xcf, 0x2f, 0x4b, 0xcc, 0xcb, 0x2c, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0xf0, 0xa4, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x41, 0x8a, 0xf4, 0xc1, 0xd2, 0x49, 0xa5, 0x69, 0x60, 0x1e, 0x98, 0x03, 0x66, 0x41, 0xb4, 0x29, 0x45, 0x72, 0x31, 0x3a, 0x09, 0xc9, 0x70, 0xb1, 0x05, 0x97, 0x14, 0x65, 0xe6, 0xa5, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x3a, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x18, 0x04, 0x15, 0x13, 0x92, 0xe2, 0x62, 0xf5, 0xcc, 0x2b, 0x31, 0x33, 0x91, 0x60, 0x52, 0x60, 0xd4, 0x60, 0x06, 0x4b, 0x32, 0x04, 0x41, 0x84, 0xa0, 0x72, 0xc6, 0x46, 0x12, 0xcc, 0x0a, 0x8c, 0x1a, 0xac, 0x56, 0x2c, 0x86, 0x46, 0xc6, 0x26, 0x41, 0x10, 0x21, 0x27, 0x9d, 0x0b, 0x0f, 0xe5, 0x18, 0x6e, 0x3c, 0x94, 0x63, 0xf8, 0xf0, 0x50, 0x8e, 0xb1, 0xe1, 0x91, 0x1c, 0xe3, 0x8a, 0x47, 0x72, 0x8c, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x8b, 0x47, 0x72, 0x0c, 0x1f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x00, 0x08, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x7e, 0xee, 0xf2, 0xd2, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/test/slick/proto3.pb.go000066400000000000000000000176741317075173200231370ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: proto3.proto /* Package vanity is a generated protocol buffer package. It is generated from these files: proto3.proto It has these top-level messages: Aproto3 */ package vanity import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import strings "strings" import reflect "reflect" import io "io" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type Aproto3 struct { B string `protobuf:"bytes,1,opt,name=B,proto3" json:"B,omitempty"` } func (m *Aproto3) Reset() { *m = Aproto3{} } func (*Aproto3) ProtoMessage() {} func (*Aproto3) Descriptor() ([]byte, []int) { return fileDescriptorProto3, []int{0} } func (m *Aproto3) GetB() string { if m != nil { return m.B } return "" } func init() { proto.RegisterType((*Aproto3)(nil), "vanity.Aproto3") } func (this *Aproto3) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*Aproto3) if !ok { that2, ok := that.(Aproto3) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.B != that1.B { return false } return true } func (this *Aproto3) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 5) s = append(s, "&vanity.Aproto3{") s = append(s, "B: "+fmt.Sprintf("%#v", this.B)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringProto3(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *Aproto3) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *Aproto3) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l if len(m.B) > 0 { dAtA[i] = 0xa i++ i = encodeVarintProto3(dAtA, i, uint64(len(m.B))) i += copy(dAtA[i:], m.B) } return i, nil } func encodeVarintProto3(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *Aproto3) Size() (n int) { var l int _ = l l = len(m.B) if l > 0 { n += 1 + l + sovProto3(uint64(l)) } return n } func sovProto3(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozProto3(x uint64) (n int) { return sovProto3(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *Aproto3) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&Aproto3{`, `B:` + fmt.Sprintf("%v", this.B) + `,`, `}`, }, "") return s } func valueToStringProto3(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *Aproto3) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: Aproto3: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: Aproto3: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field B", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProto3 } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthProto3 } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.B = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipProto3(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthProto3 } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipProto3(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthProto3 } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowProto3 } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipProto3(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthProto3 = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowProto3 = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("proto3.proto", fileDescriptorProto3) } var fileDescriptorProto3 = []byte{ // 116 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x29, 0x28, 0xca, 0x2f, 0xc9, 0x37, 0xd6, 0x03, 0x53, 0x42, 0x6c, 0x65, 0x89, 0x79, 0x99, 0x25, 0x95, 0x4a, 0xe2, 0x5c, 0xec, 0x8e, 0x10, 0x09, 0x21, 0x1e, 0x2e, 0x46, 0x27, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x46, 0x27, 0x27, 0x9d, 0x0b, 0x0f, 0xe5, 0x18, 0x6e, 0x3c, 0x94, 0x63, 0xf8, 0xf0, 0x50, 0x8e, 0xb1, 0xe1, 0x91, 0x1c, 0xe3, 0x8a, 0x47, 0x72, 0x8c, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x8b, 0x47, 0x72, 0x0c, 0x1f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x90, 0xc4, 0x06, 0x31, 0x03, 0x10, 0x00, 0x00, 0xff, 0xff, 0xb1, 0xa0, 0x15, 0x6b, 0x65, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/test/slick/vanity.pb.go000066400000000000000000000217661317075173200232200ustar00rootroot00000000000000// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: vanity.proto /* Package vanity is a generated protocol buffer package. It is generated from these files: vanity.proto It has these top-level messages: A */ package vanity import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" import strings "strings" import reflect "reflect" import io "io" import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package type A struct { Strings string `protobuf:"bytes,1,opt,name=Strings" json:"Strings"` Int int64 `protobuf:"varint,2,req,name=Int" json:"Int"` } func (m *A) Reset() { *m = A{} } func (*A) ProtoMessage() {} func (*A) Descriptor() ([]byte, []int) { return fileDescriptorVanity, []int{0} } func (m *A) GetStrings() string { if m != nil { return m.Strings } return "" } func (m *A) GetInt() int64 { if m != nil { return m.Int } return 0 } func init() { proto.RegisterType((*A)(nil), "vanity.A") } func (this *A) Equal(that interface{}) bool { if that == nil { if this == nil { return true } return false } that1, ok := that.(*A) if !ok { that2, ok := that.(A) if ok { that1 = &that2 } else { return false } } if that1 == nil { if this == nil { return true } return false } else if this == nil { return false } if this.Strings != that1.Strings { return false } if this.Int != that1.Int { return false } return true } func (this *A) GoString() string { if this == nil { return "nil" } s := make([]string, 0, 6) s = append(s, "&vanity.A{") s = append(s, "Strings: "+fmt.Sprintf("%#v", this.Strings)+",\n") s = append(s, "Int: "+fmt.Sprintf("%#v", this.Int)+",\n") s = append(s, "}") return strings.Join(s, "") } func valueToGoStringVanity(v interface{}, typ string) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("func(v %v) *%v { return &v } ( %#v )", typ, typ, pv) } func (m *A) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) if err != nil { return nil, err } return dAtA[:n], nil } func (m *A) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l dAtA[i] = 0xa i++ i = encodeVarintVanity(dAtA, i, uint64(len(m.Strings))) i += copy(dAtA[i:], m.Strings) dAtA[i] = 0x10 i++ i = encodeVarintVanity(dAtA, i, uint64(m.Int)) return i, nil } func encodeVarintVanity(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return offset + 1 } func (m *A) Size() (n int) { var l int _ = l l = len(m.Strings) n += 1 + l + sovVanity(uint64(l)) n += 1 + sovVanity(uint64(m.Int)) return n } func sovVanity(x uint64) (n int) { for { n++ x >>= 7 if x == 0 { break } } return n } func sozVanity(x uint64) (n int) { return sovVanity(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *A) String() string { if this == nil { return "nil" } s := strings.Join([]string{`&A{`, `Strings:` + fmt.Sprintf("%v", this.Strings) + `,`, `Int:` + fmt.Sprintf("%v", this.Int) + `,`, `}`, }, "") return s } func valueToStringVanity(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" } pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } func (m *A) Unmarshal(dAtA []byte) error { var hasFields [1]uint64 l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowVanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: A: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: A: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Strings", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowVanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthVanity } postIndex := iNdEx + intStringLen if postIndex > l { return io.ErrUnexpectedEOF } m.Strings = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Int", wireType) } m.Int = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowVanity } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ m.Int |= (int64(b) & 0x7F) << shift if b < 0x80 { break } } hasFields[0] |= uint64(0x00000001) default: iNdEx = preIndex skippy, err := skipVanity(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { return ErrInvalidLengthVanity } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if hasFields[0]&uint64(0x00000001) == 0 { return github_com_gogo_protobuf_proto.NewRequiredNotSetError("Int") } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipVanity(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } return iNdEx, nil case 1: iNdEx += 8 return iNdEx, nil case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } iNdEx += length if length < 0 { return 0, ErrInvalidLengthVanity } return iNdEx, nil case 3: for { var innerWire uint64 var start int = iNdEx for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowVanity } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ innerWire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } innerWireType := int(innerWire & 0x7) if innerWireType == 4 { break } next, err := skipVanity(dAtA[start:]) if err != nil { return 0, err } iNdEx = start + next } return iNdEx, nil case 4: return iNdEx, nil case 5: iNdEx += 4 return iNdEx, nil default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } } panic("unreachable") } var ( ErrInvalidLengthVanity = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowVanity = fmt.Errorf("proto: integer overflow") ) func init() { proto.RegisterFile("vanity.proto", fileDescriptorVanity) } var fileDescriptorVanity = []byte{ // 138 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x29, 0x4b, 0xcc, 0xcb, 0x2c, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0xf0, 0x94, 0xac, 0xb9, 0x18, 0x1d, 0x85, 0xe4, 0xb8, 0xd8, 0x83, 0x4b, 0x8a, 0x32, 0xf3, 0xd2, 0x8b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x38, 0x9d, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0x09, 0x0a, 0x89, 0x71, 0x31, 0x7b, 0xe6, 0x95, 0x48, 0x30, 0x29, 0x30, 0x69, 0x30, 0x43, 0xe5, 0x40, 0x02, 0x4e, 0x3a, 0x17, 0x1e, 0xca, 0x31, 0xdc, 0x78, 0x28, 0xc7, 0xf0, 0xe1, 0xa1, 0x1c, 0x63, 0xc3, 0x23, 0x39, 0xc6, 0x15, 0x8f, 0xe4, 0x18, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x17, 0x8f, 0xe4, 0x18, 0x3e, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0x01, 0x10, 0x00, 0x00, 0xff, 0xff, 0x4d, 0xd9, 0xba, 0x18, 0x81, 0x00, 0x00, 0x00, } golang-gogoprotobuf-0.5/vanity/test/vanity.proto000066400000000000000000000030221317075173200222320ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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 vanity; message A { optional string Strings = 1; required int64 Int = 2; } golang-gogoprotobuf-0.5/vanity/test/vanity_test.go000066400000000000000000000054171317075173200225450ustar00rootroot00000000000000// Protocol Buffers for Go with Gadgets // // Copyright (c) 2015, 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. package test import ( fast "github.com/gogo/protobuf/vanity/test/fast" faster "github.com/gogo/protobuf/vanity/test/faster" slick "github.com/gogo/protobuf/vanity/test/slick" "testing" ) func TestFast(t *testing.T) { _ = (&fast.A{}).Marshal _ = (&fast.A{}).MarshalTo _ = (&fast.A{}).Unmarshal _ = (&fast.A{}).Size _ = (&fast.B{}).Marshal _ = (&fast.B{}).MarshalTo _ = (&fast.B{}).Unmarshal _ = (&fast.B{}).Size } func TestFaster(t *testing.T) { _ = (&faster.A{}).Marshal _ = (&faster.A{}).MarshalTo _ = (&faster.A{}).Unmarshal _ = (&faster.A{}).Size _ = (&faster.A{}).Strings == "" _ = (&faster.B{}).Marshal _ = (&faster.B{}).MarshalTo _ = (&faster.B{}).Unmarshal _ = (&faster.B{}).Size _ = (&faster.B{}).String_ == nil _ = (&faster.B{}).Int64 == 0 _ = (&faster.B{}).Int32 == nil if (&faster.B{}).GetInt32() != 1234 { t.Fatalf("expected default") } } func TestSlick(t *testing.T) { _ = (&slick.A{}).Marshal _ = (&slick.A{}).MarshalTo _ = (&slick.A{}).Unmarshal _ = (&slick.A{}).Size _ = (&slick.A{}).Strings == "" _ = (&slick.A{}).GoString _ = (&slick.A{}).String _ = (&slick.B{}).Marshal _ = (&slick.B{}).MarshalTo _ = (&slick.B{}).Unmarshal _ = (&slick.B{}).Size _ = (&slick.B{}).String_ == nil _ = (&slick.B{}).Int64 == 0 _ = (&slick.B{}).Int32 == nil if (&slick.B{}).GetInt32() != 1234 { t.Fatalf("expected default") } } golang-gogoprotobuf-0.5/version/000077500000000000000000000000001317075173200170325ustar00rootroot00000000000000golang-gogoprotobuf-0.5/version/version.go000066400000000000000000000046161317075173200210550ustar00rootroot00000000000000// 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. package version import ( "fmt" "os/exec" "strconv" "strings" ) func Get() string { versionBytes, _ := exec.Command("protoc", "--version").CombinedOutput() version := strings.TrimSpace(string(versionBytes)) versions := strings.Split(version, " ") if len(versions) != 2 { panic("version string returned from protoc is seperated with a space: " + version) } return versions[1] } func parseVersion(version string) (int, error) { versions := strings.Split(version, ".") if len(versions) != 3 { return 0, fmt.Errorf("version does not have 3 numbers seperated by dots: %s", version) } n := 0 for _, v := range versions { i, err := strconv.Atoi(v) if err != nil { return 0, err } n = n*10 + i } return n, nil } func less(this, that string) bool { thisNum, err := parseVersion(this) if err != nil { panic(err) } thatNum, err := parseVersion(that) if err != nil { panic(err) } return thisNum <= thatNum } func AtLeast(v string) bool { return less(v, Get()) }